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.
 
 
 

64638 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. }
  2367. //species
  2368. function getSpeciesInfo(speciesList) {
  2369. let result = new Set();
  2370. speciesList.flatMap(getSpeciesInfoHelper).forEach(entry => {
  2371. result.add(entry)
  2372. });
  2373. return Array.from(result);
  2374. };
  2375. function getSpeciesInfoHelper(species) {
  2376. if (!speciesData[species]) {
  2377. console.warn(species + " doesn't exist");
  2378. return [];
  2379. }
  2380. if (speciesData[species].parents) {
  2381. return [species].concat(speciesData[species].parents.flatMap(parent => getSpeciesInfoHelper(parent)));
  2382. } else {
  2383. return [species];
  2384. }
  2385. }
  2386. characterMakers.push(() => makeCharacter(
  2387. {
  2388. name: "Fen",
  2389. species: ["crux"],
  2390. description: {
  2391. title: "Bio",
  2392. text: "Very furry. Sheds on everything."
  2393. },
  2394. tags: [
  2395. "anthro",
  2396. "goo"
  2397. ]
  2398. },
  2399. {
  2400. front: {
  2401. height: math.unit(12, "feet"),
  2402. weight: math.unit(2400, "lb"),
  2403. preyCapacity: math.unit(1, "people"),
  2404. name: "Front",
  2405. image: {
  2406. source: "./media/characters/fen/front.svg",
  2407. extra: 1804/1562,
  2408. bottom: 205/2009
  2409. },
  2410. extraAttributes: {
  2411. pawSize: {
  2412. name: "Paw Size",
  2413. power: 2,
  2414. type: "area",
  2415. base: math.unit(0.35, "m^2")
  2416. }
  2417. }
  2418. },
  2419. diving: {
  2420. height: math.unit(4.9, "meters"),
  2421. weight: math.unit(2400, "lb"),
  2422. name: "Diving",
  2423. image: {
  2424. source: "./media/characters/fen/diving.svg"
  2425. }
  2426. },
  2427. sleeby: {
  2428. height: math.unit(3.45, "meters"),
  2429. weight: math.unit(2400, "lb"),
  2430. name: "Sleeby",
  2431. image: {
  2432. source: "./media/characters/fen/sleeby.svg"
  2433. }
  2434. },
  2435. goo: {
  2436. height: math.unit(12, "feet"),
  2437. weight: math.unit(3600, "lb"),
  2438. volume: math.unit(1000, "liters"),
  2439. preyCapacity: math.unit(6, "people"),
  2440. name: "Goo",
  2441. image: {
  2442. source: "./media/characters/fen/goo.svg",
  2443. extra: 1307/1071,
  2444. bottom: 134/1441
  2445. }
  2446. },
  2447. horror: {
  2448. height: math.unit(13.6, "feet"),
  2449. weight: math.unit(2400, "lb"),
  2450. preyCapacity: math.unit(1, "people"),
  2451. name: "Horror",
  2452. image: {
  2453. source: "./media/characters/fen/horror.svg",
  2454. extra: 893/797,
  2455. bottom: 0/893
  2456. }
  2457. },
  2458. gooNsfw: {
  2459. height: math.unit(12, "feet"),
  2460. weight: math.unit(3750, "lb"),
  2461. volume: math.unit(1000, "liters"),
  2462. preyCapacity: math.unit(6, "people"),
  2463. name: "Goo (NSFW)",
  2464. image: {
  2465. source: "./media/characters/fen/goo-nsfw.svg",
  2466. extra: 1875/1734,
  2467. bottom: 122/1997
  2468. }
  2469. },
  2470. maw: {
  2471. height: math.unit(5.03, "feet"),
  2472. name: "Maw",
  2473. image: {
  2474. source: "./media/characters/fen/maw.svg"
  2475. }
  2476. },
  2477. gooCeiling: {
  2478. height: math.unit(6.6, "feet"),
  2479. weight: math.unit(3000, "lb"),
  2480. volume: math.unit(1000, "liters"),
  2481. preyCapacity: math.unit(6, "people"),
  2482. name: "Maw (Goo)",
  2483. image: {
  2484. source: "./media/characters/fen/goo-maw.svg"
  2485. }
  2486. },
  2487. paw: {
  2488. height: math.unit(3.77, "feet"),
  2489. name: "Paw",
  2490. image: {
  2491. source: "./media/characters/fen/paw.svg"
  2492. },
  2493. extraAttributes: {
  2494. "toeSize": {
  2495. name: "Toe Size",
  2496. power: 2,
  2497. type: "area",
  2498. base: math.unit(0.02875, "m^2")
  2499. },
  2500. "pawSize": {
  2501. name: "Paw Size",
  2502. power: 2,
  2503. type: "area",
  2504. base: math.unit(0.378, "m^2")
  2505. },
  2506. }
  2507. },
  2508. tail: {
  2509. height: math.unit(12.1, "feet"),
  2510. name: "Tail",
  2511. image: {
  2512. source: "./media/characters/fen/tail.svg"
  2513. }
  2514. },
  2515. tailFull: {
  2516. height: math.unit(12.1, "feet"),
  2517. name: "Full Tail",
  2518. image: {
  2519. source: "./media/characters/fen/tail-full.svg"
  2520. }
  2521. },
  2522. back: {
  2523. height: math.unit(12, "feet"),
  2524. weight: math.unit(2400, "lb"),
  2525. name: "Back",
  2526. image: {
  2527. source: "./media/characters/fen/back.svg",
  2528. },
  2529. info: {
  2530. description: {
  2531. mode: "append",
  2532. text: "\n\nHe is not currently looking at you."
  2533. }
  2534. }
  2535. },
  2536. full: {
  2537. height: math.unit(1.85, "meter"),
  2538. weight: math.unit(3200, "lb"),
  2539. preyCapacity: math.unit(3, "people"),
  2540. name: "Full",
  2541. image: {
  2542. source: "./media/characters/fen/full.svg",
  2543. extra: 1133/859,
  2544. bottom: 145/1278
  2545. },
  2546. info: {
  2547. description: {
  2548. mode: "append",
  2549. text: "\n\nMunch."
  2550. }
  2551. }
  2552. },
  2553. gooLounging: {
  2554. height: math.unit(4.53, "feet"),
  2555. weight: math.unit(3000, "lb"),
  2556. preyCapacity: math.unit(6, "people"),
  2557. name: "Goo (Lounging)",
  2558. image: {
  2559. source: "./media/characters/fen/goo-lounging.svg",
  2560. bottom: 116 / 613
  2561. }
  2562. },
  2563. lounging: {
  2564. height: math.unit(10.52, "feet"),
  2565. weight: math.unit(2400, "lb"),
  2566. name: "Lounging",
  2567. image: {
  2568. source: "./media/characters/fen/lounging.svg"
  2569. }
  2570. },
  2571. },
  2572. [
  2573. {
  2574. name: "Small",
  2575. height: math.unit(2.2428, "meter")
  2576. },
  2577. {
  2578. name: "Normal",
  2579. height: math.unit(12, "feet"),
  2580. default: true,
  2581. },
  2582. {
  2583. name: "Big",
  2584. height: math.unit(20, "feet")
  2585. },
  2586. {
  2587. name: "Minimacro",
  2588. height: math.unit(40, "feet"),
  2589. info: {
  2590. description: {
  2591. mode: "append",
  2592. text: "\n\nTOO DAMN BIG"
  2593. }
  2594. }
  2595. },
  2596. {
  2597. name: "Macro",
  2598. height: math.unit(100, "feet"),
  2599. info: {
  2600. description: {
  2601. mode: "append",
  2602. text: "\n\nTOO DAMN BIG"
  2603. }
  2604. }
  2605. },
  2606. {
  2607. name: "Megamacro",
  2608. height: math.unit(2, "miles")
  2609. },
  2610. {
  2611. name: "Gigamacro",
  2612. height: math.unit(10, "earths")
  2613. },
  2614. ]
  2615. ))
  2616. characterMakers.push(() => makeCharacter(
  2617. { name: "Sofia Fluttertail", species: ["rough-collie"], tags: ["anthro"] },
  2618. {
  2619. front: {
  2620. height: math.unit(183, "cm"),
  2621. weight: math.unit(80, "kg"),
  2622. name: "Front",
  2623. image: {
  2624. source: "./media/characters/sofia-fluttertail/front.svg",
  2625. bottom: 0.01,
  2626. extra: 2154 / 2081
  2627. }
  2628. },
  2629. frontAlt: {
  2630. height: math.unit(183, "cm"),
  2631. weight: math.unit(80, "kg"),
  2632. name: "Front (alt)",
  2633. image: {
  2634. source: "./media/characters/sofia-fluttertail/front-alt.svg"
  2635. }
  2636. },
  2637. back: {
  2638. height: math.unit(183, "cm"),
  2639. weight: math.unit(80, "kg"),
  2640. name: "Back",
  2641. image: {
  2642. source: "./media/characters/sofia-fluttertail/back.svg"
  2643. }
  2644. },
  2645. kneeling: {
  2646. height: math.unit(125, "cm"),
  2647. weight: math.unit(80, "kg"),
  2648. name: "Kneeling",
  2649. image: {
  2650. source: "./media/characters/sofia-fluttertail/kneeling.svg",
  2651. extra: 1033 / 977,
  2652. bottom: 23.7 / 1057
  2653. }
  2654. },
  2655. maw: {
  2656. height: math.unit(183 / 5, "cm"),
  2657. name: "Maw",
  2658. image: {
  2659. source: "./media/characters/sofia-fluttertail/maw.svg"
  2660. }
  2661. },
  2662. mawcloseup: {
  2663. height: math.unit(183 / 5 * 0.41, "cm"),
  2664. name: "Maw (Closeup)",
  2665. image: {
  2666. source: "./media/characters/sofia-fluttertail/maw-closeup.svg"
  2667. }
  2668. },
  2669. paws: {
  2670. height: math.unit(1.17, "feet"),
  2671. name: "Paws",
  2672. image: {
  2673. source: "./media/characters/sofia-fluttertail/paws.svg",
  2674. extra: 851 / 851,
  2675. bottom: 17 / 868
  2676. }
  2677. },
  2678. },
  2679. [
  2680. {
  2681. name: "Normal",
  2682. height: math.unit(1.83, "meter")
  2683. },
  2684. {
  2685. name: "Size Thief",
  2686. height: math.unit(18, "feet")
  2687. },
  2688. {
  2689. name: "50 Foot Collie",
  2690. height: math.unit(50, "feet")
  2691. },
  2692. {
  2693. name: "Macro",
  2694. height: math.unit(96, "feet"),
  2695. default: true
  2696. },
  2697. {
  2698. name: "Megamerger",
  2699. height: math.unit(650, "feet")
  2700. },
  2701. ]
  2702. ))
  2703. characterMakers.push(() => makeCharacter(
  2704. { name: "March", species: ["dragon"], tags: ["anthro"] },
  2705. {
  2706. front: {
  2707. height: math.unit(7, "feet"),
  2708. weight: math.unit(100, "kg"),
  2709. name: "Front",
  2710. image: {
  2711. source: "./media/characters/march/front.svg",
  2712. extra: 1992/1851,
  2713. bottom: 39/2031
  2714. }
  2715. },
  2716. foot: {
  2717. height: math.unit(0.9, "feet"),
  2718. name: "Foot",
  2719. image: {
  2720. source: "./media/characters/march/foot.svg"
  2721. }
  2722. },
  2723. },
  2724. [
  2725. {
  2726. name: "Normal",
  2727. height: math.unit(7.9, "feet")
  2728. },
  2729. {
  2730. name: "Macro",
  2731. height: math.unit(220, "meters")
  2732. },
  2733. {
  2734. name: "Megamacro",
  2735. height: math.unit(2.98, "km"),
  2736. default: true
  2737. },
  2738. {
  2739. name: "Gigamacro",
  2740. height: math.unit(15963, "km")
  2741. },
  2742. {
  2743. name: "Teramacro",
  2744. height: math.unit(2980000000, "km")
  2745. },
  2746. {
  2747. name: "Examacro",
  2748. height: math.unit(250, "parsecs")
  2749. },
  2750. ]
  2751. ))
  2752. characterMakers.push(() => makeCharacter(
  2753. { name: "Noir", species: ["woodpecker"], tags: ["anthro"] },
  2754. {
  2755. front: {
  2756. height: math.unit(6, "feet"),
  2757. weight: math.unit(60, "kg"),
  2758. name: "Front",
  2759. image: {
  2760. source: "./media/characters/noir/front.svg",
  2761. extra: 1,
  2762. bottom: 0.032
  2763. }
  2764. },
  2765. },
  2766. [
  2767. {
  2768. name: "Normal",
  2769. height: math.unit(6.6, "feet")
  2770. },
  2771. {
  2772. name: "Macro",
  2773. height: math.unit(500, "feet")
  2774. },
  2775. {
  2776. name: "Megamacro",
  2777. height: math.unit(2.5, "km"),
  2778. default: true
  2779. },
  2780. {
  2781. name: "Gigamacro",
  2782. height: math.unit(22500, "km")
  2783. },
  2784. {
  2785. name: "Teramacro",
  2786. height: math.unit(2500000000, "km")
  2787. },
  2788. {
  2789. name: "Examacro",
  2790. height: math.unit(200, "parsecs")
  2791. },
  2792. ]
  2793. ))
  2794. characterMakers.push(() => makeCharacter(
  2795. { name: "Okuri", species: ["sabresune"], tags: ["anthro"] },
  2796. {
  2797. front: {
  2798. height: math.unit(7, "feet"),
  2799. weight: math.unit(100, "kg"),
  2800. name: "Front",
  2801. image: {
  2802. source: "./media/characters/okuri/front.svg",
  2803. extra: 739/665,
  2804. bottom: 39/778
  2805. }
  2806. },
  2807. back: {
  2808. height: math.unit(7, "feet"),
  2809. weight: math.unit(100, "kg"),
  2810. name: "Back",
  2811. image: {
  2812. source: "./media/characters/okuri/back.svg",
  2813. extra: 734/653,
  2814. bottom: 13/747
  2815. }
  2816. },
  2817. sitting: {
  2818. height: math.unit(2.95, "feet"),
  2819. weight: math.unit(100, "kg"),
  2820. name: "Sitting",
  2821. image: {
  2822. source: "./media/characters/okuri/sitting.svg",
  2823. extra: 370/318,
  2824. bottom: 99/469
  2825. }
  2826. },
  2827. },
  2828. [
  2829. {
  2830. name: "Smallest",
  2831. height: math.unit(5 + 2/12, "feet")
  2832. },
  2833. {
  2834. name: "Smaller",
  2835. height: math.unit(300, "feet")
  2836. },
  2837. {
  2838. name: "Small",
  2839. height: math.unit(1000, "feet")
  2840. },
  2841. {
  2842. name: "Macro",
  2843. height: math.unit(1, "mile")
  2844. },
  2845. {
  2846. name: "Mega Macro (Small)",
  2847. height: math.unit(20, "km")
  2848. },
  2849. {
  2850. name: "Mega Macro (Large)",
  2851. height: math.unit(600, "km")
  2852. },
  2853. {
  2854. name: "Giga Macro",
  2855. height: math.unit(10000, "km")
  2856. },
  2857. {
  2858. name: "Normal",
  2859. height: math.unit(577560, "km"),
  2860. default: true
  2861. },
  2862. {
  2863. name: "Large",
  2864. height: math.unit(4, "galaxies")
  2865. },
  2866. {
  2867. name: "Largest",
  2868. height: math.unit(15, "multiverses")
  2869. },
  2870. ]
  2871. ))
  2872. characterMakers.push(() => makeCharacter(
  2873. { name: "Manny", species: ["manectric"], tags: ["anthro"] },
  2874. {
  2875. front: {
  2876. height: math.unit(7, "feet"),
  2877. weight: math.unit(100, "kg"),
  2878. name: "Front",
  2879. image: {
  2880. source: "./media/characters/manny/front.svg",
  2881. extra: 1,
  2882. bottom: 0.06
  2883. }
  2884. },
  2885. back: {
  2886. height: math.unit(7, "feet"),
  2887. weight: math.unit(100, "kg"),
  2888. name: "Back",
  2889. image: {
  2890. source: "./media/characters/manny/back.svg",
  2891. extra: 1,
  2892. bottom: 0.014
  2893. }
  2894. },
  2895. },
  2896. [
  2897. {
  2898. name: "Normal",
  2899. height: math.unit(7, "feet"),
  2900. },
  2901. {
  2902. name: "Macro",
  2903. height: math.unit(78, "feet"),
  2904. default: true
  2905. },
  2906. {
  2907. name: "Macro+",
  2908. height: math.unit(300, "meters")
  2909. },
  2910. {
  2911. name: "Macro++",
  2912. height: math.unit(2400, "meters")
  2913. },
  2914. {
  2915. name: "Megamacro",
  2916. height: math.unit(5167, "meters")
  2917. },
  2918. {
  2919. name: "Gigamacro",
  2920. height: math.unit(41769, "miles")
  2921. },
  2922. ]
  2923. ))
  2924. characterMakers.push(() => makeCharacter(
  2925. { name: "Adake", species: ["tiger"], tags: ["anthro"] },
  2926. {
  2927. front: {
  2928. height: math.unit(7, "feet"),
  2929. weight: math.unit(100, "kg"),
  2930. name: "Front",
  2931. image: {
  2932. source: "./media/characters/adake/front-1.svg"
  2933. }
  2934. },
  2935. frontAlt: {
  2936. height: math.unit(7, "feet"),
  2937. weight: math.unit(100, "kg"),
  2938. name: "Front (Alt)",
  2939. image: {
  2940. source: "./media/characters/adake/front-2.svg",
  2941. extra: 1,
  2942. bottom: 0.01
  2943. }
  2944. },
  2945. back: {
  2946. height: math.unit(7, "feet"),
  2947. weight: math.unit(100, "kg"),
  2948. name: "Back",
  2949. image: {
  2950. source: "./media/characters/adake/back.svg",
  2951. }
  2952. },
  2953. kneel: {
  2954. height: math.unit(5.385, "feet"),
  2955. weight: math.unit(100, "kg"),
  2956. name: "Kneeling",
  2957. image: {
  2958. source: "./media/characters/adake/kneel.svg",
  2959. bottom: 0.052
  2960. }
  2961. },
  2962. },
  2963. [
  2964. {
  2965. name: "Normal",
  2966. height: math.unit(7, "feet"),
  2967. },
  2968. {
  2969. name: "Macro",
  2970. height: math.unit(78, "feet"),
  2971. default: true
  2972. },
  2973. {
  2974. name: "Macro+",
  2975. height: math.unit(300, "meters")
  2976. },
  2977. {
  2978. name: "Macro++",
  2979. height: math.unit(2400, "meters")
  2980. },
  2981. {
  2982. name: "Megamacro",
  2983. height: math.unit(5167, "meters")
  2984. },
  2985. {
  2986. name: "Gigamacro",
  2987. height: math.unit(41769, "miles")
  2988. },
  2989. ]
  2990. ))
  2991. characterMakers.push(() => makeCharacter(
  2992. { name: "Elijah", species: ["blue-jay"], tags: ["anthro"] },
  2993. {
  2994. front: {
  2995. height: math.unit(1.65, "meters"),
  2996. weight: math.unit(50, "kg"),
  2997. name: "Front",
  2998. image: {
  2999. source: "./media/characters/elijah/front.svg",
  3000. extra: 858 / 830,
  3001. bottom: 95.5 / 953.8559
  3002. }
  3003. },
  3004. back: {
  3005. height: math.unit(1.65, "meters"),
  3006. weight: math.unit(50, "kg"),
  3007. name: "Back",
  3008. image: {
  3009. source: "./media/characters/elijah/back.svg",
  3010. extra: 895 / 850,
  3011. bottom: 5.3 / 897.956
  3012. }
  3013. },
  3014. frontNsfw: {
  3015. height: math.unit(1.65, "meters"),
  3016. weight: math.unit(50, "kg"),
  3017. name: "Front (NSFW)",
  3018. image: {
  3019. source: "./media/characters/elijah/front-nsfw.svg",
  3020. extra: 858 / 830,
  3021. bottom: 95.5 / 953.8559
  3022. }
  3023. },
  3024. backNsfw: {
  3025. height: math.unit(1.65, "meters"),
  3026. weight: math.unit(50, "kg"),
  3027. name: "Back (NSFW)",
  3028. image: {
  3029. source: "./media/characters/elijah/back-nsfw.svg",
  3030. extra: 895 / 850,
  3031. bottom: 5.3 / 897.956
  3032. }
  3033. },
  3034. dick: {
  3035. height: math.unit(1, "feet"),
  3036. name: "Dick",
  3037. image: {
  3038. source: "./media/characters/elijah/dick.svg"
  3039. }
  3040. },
  3041. beakOpen: {
  3042. height: math.unit(1.25, "feet"),
  3043. name: "Beak (Open)",
  3044. image: {
  3045. source: "./media/characters/elijah/beak-open.svg"
  3046. }
  3047. },
  3048. beakShut: {
  3049. height: math.unit(1.25, "feet"),
  3050. name: "Beak (Shut)",
  3051. image: {
  3052. source: "./media/characters/elijah/beak-shut.svg"
  3053. }
  3054. },
  3055. footFlexing: {
  3056. height: math.unit(1.61, "feet"),
  3057. name: "Foot (Flexing)",
  3058. image: {
  3059. source: "./media/characters/elijah/foot-flexing.svg"
  3060. }
  3061. },
  3062. footStepping: {
  3063. height: math.unit(1.44, "feet"),
  3064. name: "Foot (Stepping)",
  3065. image: {
  3066. source: "./media/characters/elijah/foot-stepping.svg"
  3067. }
  3068. },
  3069. plantigradeLeg: {
  3070. height: math.unit(2.34, "feet"),
  3071. name: "Plantigrade Leg",
  3072. image: {
  3073. source: "./media/characters/elijah/plantigrade-leg.svg"
  3074. }
  3075. },
  3076. plantigradeFootLeft: {
  3077. height: math.unit(0.9, "feet"),
  3078. name: "Plantigrade Foot (Left)",
  3079. image: {
  3080. source: "./media/characters/elijah/plantigrade-foot-left.svg"
  3081. }
  3082. },
  3083. plantigradeFootRight: {
  3084. height: math.unit(0.9, "feet"),
  3085. name: "Plantigrade Foot (Right)",
  3086. image: {
  3087. source: "./media/characters/elijah/plantigrade-foot-right.svg"
  3088. }
  3089. },
  3090. },
  3091. [
  3092. {
  3093. name: "Normal",
  3094. height: math.unit(1.65, "meters")
  3095. },
  3096. {
  3097. name: "Macro",
  3098. height: math.unit(55, "meters"),
  3099. default: true
  3100. },
  3101. {
  3102. name: "Macro+",
  3103. height: math.unit(105, "meters")
  3104. },
  3105. ]
  3106. ))
  3107. characterMakers.push(() => makeCharacter(
  3108. { name: "Rai", species: ["wolf"], tags: ["anthro"] },
  3109. {
  3110. front: {
  3111. height: math.unit(7 + 2/12, "feet"),
  3112. weight: math.unit(320, "kg"),
  3113. preyCapacity: math.unit(0.276549935, "people"),
  3114. name: "Front",
  3115. image: {
  3116. source: "./media/characters/rai/front.svg",
  3117. extra: 1802/1696,
  3118. bottom: 68/1870
  3119. },
  3120. form: "anthro",
  3121. default: true
  3122. },
  3123. frontDressed: {
  3124. height: math.unit(7 + 2/12, "feet"),
  3125. weight: math.unit(320, "kg"),
  3126. preyCapacity: math.unit(0.276549935, "people"),
  3127. name: "Front (Dressed)",
  3128. image: {
  3129. source: "./media/characters/rai/front-dressed.svg",
  3130. extra: 1802/1696,
  3131. bottom: 68/1870
  3132. },
  3133. form: "anthro"
  3134. },
  3135. side: {
  3136. height: math.unit(7 + 2/12, "feet"),
  3137. weight: math.unit(320, "kg"),
  3138. preyCapacity: math.unit(0.276549935, "people"),
  3139. name: "Side",
  3140. image: {
  3141. source: "./media/characters/rai/side.svg",
  3142. extra: 1789/1710,
  3143. bottom: 115/1904
  3144. },
  3145. form: "anthro"
  3146. },
  3147. back: {
  3148. height: math.unit(7 + 2/12, "feet"),
  3149. weight: math.unit(320, "kg"),
  3150. preyCapacity: math.unit(0.276549935, "people"),
  3151. name: "Back",
  3152. image: {
  3153. source: "./media/characters/rai/back.svg",
  3154. extra: 1770/1707,
  3155. bottom: 28/1798
  3156. },
  3157. form: "anthro"
  3158. },
  3159. feral: {
  3160. height: math.unit(9.5, "feet"),
  3161. weight: math.unit(640, "kg"),
  3162. preyCapacity: math.unit(4, "people"),
  3163. name: "Feral",
  3164. image: {
  3165. source: "./media/characters/rai/feral.svg",
  3166. extra: 945/553,
  3167. bottom: 176/1121
  3168. },
  3169. form: "feral",
  3170. default: true
  3171. },
  3172. dragon: {
  3173. height: math.unit(23, "feet"),
  3174. weight: math.unit(50000, "lb"),
  3175. name: "Dragon",
  3176. image: {
  3177. source: "./media/characters/rai/dragon.svg",
  3178. extra: 2498 / 2030,
  3179. bottom: 85.2 / 2584
  3180. },
  3181. form: "dragon",
  3182. default: true
  3183. },
  3184. maw: {
  3185. height: math.unit(1.69, "feet"),
  3186. name: "Maw",
  3187. image: {
  3188. source: "./media/characters/rai/maw.svg"
  3189. },
  3190. form: "anthro"
  3191. },
  3192. },
  3193. [
  3194. {
  3195. name: "Normal",
  3196. height: math.unit(7 + 2/12, "feet"),
  3197. form: "anthro"
  3198. },
  3199. {
  3200. name: "Big",
  3201. height: math.unit(11, "feet"),
  3202. form: "anthro"
  3203. },
  3204. {
  3205. name: "Minimacro",
  3206. height: math.unit(77, "feet"),
  3207. form: "anthro"
  3208. },
  3209. {
  3210. name: "Macro",
  3211. height: math.unit(302, "feet"),
  3212. default: true,
  3213. form: "anthro"
  3214. },
  3215. {
  3216. name: "Normal",
  3217. height: math.unit(9.5, "feet"),
  3218. form: "feral",
  3219. default: true
  3220. },
  3221. {
  3222. name: "Normal",
  3223. height: math.unit(23, "feet"),
  3224. form: "dragon",
  3225. default: true
  3226. }
  3227. ],
  3228. {
  3229. "anthro": {
  3230. name: "Anthro",
  3231. default: true
  3232. },
  3233. "feral": {
  3234. name: "Feral",
  3235. },
  3236. "dragon": {
  3237. name: "Dragon",
  3238. },
  3239. }
  3240. ))
  3241. characterMakers.push(() => makeCharacter(
  3242. { name: "Jazzy", species: ["coyote", "wolf"], tags: ["anthro"] },
  3243. {
  3244. frontDressed: {
  3245. height: math.unit(216, "feet"),
  3246. weight: math.unit(7000000, "lb"),
  3247. preyCapacity: math.unit(1321, "people"),
  3248. name: "Front (Dressed)",
  3249. image: {
  3250. source: "./media/characters/jazzy/front-dressed.svg",
  3251. extra: 2738 / 2651,
  3252. bottom: 41.8 / 2786
  3253. }
  3254. },
  3255. backDressed: {
  3256. height: math.unit(216, "feet"),
  3257. weight: math.unit(7000000, "lb"),
  3258. preyCapacity: math.unit(1321, "people"),
  3259. name: "Back (Dressed)",
  3260. image: {
  3261. source: "./media/characters/jazzy/back-dressed.svg",
  3262. extra: 2775 / 2673,
  3263. bottom: 36.8 / 2817
  3264. }
  3265. },
  3266. front: {
  3267. height: math.unit(216, "feet"),
  3268. weight: math.unit(7000000, "lb"),
  3269. preyCapacity: math.unit(1321, "people"),
  3270. name: "Front",
  3271. image: {
  3272. source: "./media/characters/jazzy/front.svg",
  3273. extra: 2738 / 2651,
  3274. bottom: 41.8 / 2786
  3275. }
  3276. },
  3277. back: {
  3278. height: math.unit(216, "feet"),
  3279. weight: math.unit(7000000, "lb"),
  3280. preyCapacity: math.unit(1321, "people"),
  3281. name: "Back",
  3282. image: {
  3283. source: "./media/characters/jazzy/back.svg",
  3284. extra: 2775 / 2673,
  3285. bottom: 36.8 / 2817
  3286. }
  3287. },
  3288. maw: {
  3289. height: math.unit(20, "feet"),
  3290. name: "Maw",
  3291. image: {
  3292. source: "./media/characters/jazzy/maw.svg"
  3293. }
  3294. },
  3295. paws: {
  3296. height: math.unit(27.5, "feet"),
  3297. name: "Paws",
  3298. image: {
  3299. source: "./media/characters/jazzy/paws.svg"
  3300. }
  3301. },
  3302. eye: {
  3303. height: math.unit(4.4, "feet"),
  3304. name: "Eye",
  3305. image: {
  3306. source: "./media/characters/jazzy/eye.svg"
  3307. }
  3308. },
  3309. droneOffense: {
  3310. height: math.unit(9.5, "inches"),
  3311. name: "Drone (Offense)",
  3312. image: {
  3313. source: "./media/characters/jazzy/drone-offense.svg"
  3314. }
  3315. },
  3316. droneRecon: {
  3317. height: math.unit(9.5, "inches"),
  3318. name: "Drone (Recon)",
  3319. image: {
  3320. source: "./media/characters/jazzy/drone-recon.svg"
  3321. }
  3322. },
  3323. droneDefense: {
  3324. height: math.unit(9.5, "inches"),
  3325. name: "Drone (Defense)",
  3326. image: {
  3327. source: "./media/characters/jazzy/drone-defense.svg"
  3328. }
  3329. },
  3330. },
  3331. [
  3332. {
  3333. name: "Macro",
  3334. height: math.unit(216, "feet"),
  3335. default: true
  3336. },
  3337. ]
  3338. ))
  3339. characterMakers.push(() => makeCharacter(
  3340. { name: "Flamm", species: ["cat"], tags: ["anthro"] },
  3341. {
  3342. front: {
  3343. height: math.unit(9 + 6/12, "feet"),
  3344. weight: math.unit(700, "lb"),
  3345. name: "Front",
  3346. image: {
  3347. source: "./media/characters/flamm/front.svg",
  3348. extra: 1736/1596,
  3349. bottom: 93/1829
  3350. }
  3351. },
  3352. buff: {
  3353. height: math.unit(9 + 6/12, "feet"),
  3354. weight: math.unit(950, "lb"),
  3355. name: "Buff",
  3356. image: {
  3357. source: "./media/characters/flamm/buff.svg",
  3358. extra: 3018/2874,
  3359. bottom: 221/3239
  3360. }
  3361. },
  3362. },
  3363. [
  3364. {
  3365. name: "Normal",
  3366. height: math.unit(9.5, "feet")
  3367. },
  3368. {
  3369. name: "Macro",
  3370. height: math.unit(200, "feet"),
  3371. default: true
  3372. },
  3373. ]
  3374. ))
  3375. characterMakers.push(() => makeCharacter(
  3376. { name: "Zephiro", species: ["raccoon"], tags: ["anthro"] },
  3377. {
  3378. front: {
  3379. height: math.unit(5 + 3/12, "feet"),
  3380. weight: math.unit(60, "kg"),
  3381. name: "Front",
  3382. image: {
  3383. source: "./media/characters/zephiro/front.svg",
  3384. extra: 1873/1761,
  3385. bottom: 147/2020
  3386. }
  3387. },
  3388. side: {
  3389. height: math.unit(5 + 3/12, "feet"),
  3390. weight: math.unit(60, "kg"),
  3391. name: "Side",
  3392. image: {
  3393. source: "./media/characters/zephiro/side.svg",
  3394. extra: 1929/1827,
  3395. bottom: 65/1994
  3396. }
  3397. },
  3398. back: {
  3399. height: math.unit(5 + 3/12, "feet"),
  3400. weight: math.unit(60, "kg"),
  3401. name: "Back",
  3402. image: {
  3403. source: "./media/characters/zephiro/back.svg",
  3404. extra: 1926/1816,
  3405. bottom: 41/1967
  3406. }
  3407. },
  3408. hand: {
  3409. height: math.unit(0.68, "feet"),
  3410. name: "Hand",
  3411. image: {
  3412. source: "./media/characters/zephiro/hand.svg"
  3413. }
  3414. },
  3415. paw: {
  3416. height: math.unit(1, "feet"),
  3417. name: "Paw",
  3418. image: {
  3419. source: "./media/characters/zephiro/paw.svg"
  3420. }
  3421. },
  3422. beans: {
  3423. height: math.unit(0.93, "feet"),
  3424. name: "Beans",
  3425. image: {
  3426. source: "./media/characters/zephiro/beans.svg"
  3427. }
  3428. },
  3429. },
  3430. [
  3431. {
  3432. name: "Micro",
  3433. height: math.unit(3, "inches")
  3434. },
  3435. {
  3436. name: "Normal",
  3437. height: math.unit(5 + 3 / 12, "feet"),
  3438. default: true
  3439. },
  3440. {
  3441. name: "Macro",
  3442. height: math.unit(118, "feet")
  3443. },
  3444. ]
  3445. ))
  3446. characterMakers.push(() => makeCharacter(
  3447. { name: "Fory", species: ["weasel", "rabbit"], tags: ["anthro"] },
  3448. {
  3449. front: {
  3450. height: math.unit(5, "feet"),
  3451. weight: math.unit(90, "kg"),
  3452. preyCapacity: math.unit(14, "people"),
  3453. name: "Front",
  3454. image: {
  3455. source: "./media/characters/fory/front.svg",
  3456. extra: 2862 / 2674,
  3457. bottom: 180 / 3043.8
  3458. },
  3459. form: "weaselbun",
  3460. default: true,
  3461. extraAttributes: {
  3462. "pawSize": {
  3463. name: "Paw Size",
  3464. power: 2,
  3465. type: "area",
  3466. base: math.unit(0.1596, "m^2")
  3467. },
  3468. "pawLength": {
  3469. name: "Paw Length",
  3470. power: 1,
  3471. type: "length",
  3472. base: math.unit(0.7, "m")
  3473. }
  3474. }
  3475. },
  3476. back: {
  3477. height: math.unit(5, "feet"),
  3478. weight: math.unit(90, "kg"),
  3479. preyCapacity: math.unit(14, "people"),
  3480. name: "Back",
  3481. image: {
  3482. source: "./media/characters/fory/back.svg",
  3483. extra: 1790/1672,
  3484. bottom: 84/1874
  3485. },
  3486. form: "weaselbun",
  3487. extraAttributes: {
  3488. "pawSize": {
  3489. name: "Paw Size",
  3490. power: 2,
  3491. type: "area",
  3492. base: math.unit(0.1596, "m^2")
  3493. },
  3494. "pawLength": {
  3495. name: "Paw Length",
  3496. power: 1,
  3497. type: "length",
  3498. base: math.unit(0.7, "m")
  3499. }
  3500. }
  3501. },
  3502. paw: {
  3503. height: math.unit(2.14, "feet"),
  3504. name: "Paw",
  3505. image: {
  3506. source: "./media/characters/fory/paw.svg"
  3507. },
  3508. form: "weaselbun",
  3509. extraAttributes: {
  3510. "pawSize": {
  3511. name: "Paw Size",
  3512. power: 2,
  3513. type: "area",
  3514. base: math.unit(0.1596, "m^2")
  3515. },
  3516. "pawLength": {
  3517. name: "Paw Length",
  3518. power: 1,
  3519. type: "length",
  3520. base: math.unit(0.48, "m")
  3521. }
  3522. }
  3523. },
  3524. bunBack: {
  3525. height: math.unit(3, "feet"),
  3526. weight: math.unit(20, "kg"),
  3527. preyCapacity: math.unit(3, "people"),
  3528. name: "Back",
  3529. image: {
  3530. source: "./media/characters/fory/bun-back.svg",
  3531. extra: 1749/1564,
  3532. bottom: 246/1995
  3533. },
  3534. form: "bun",
  3535. default: true,
  3536. extraAttributes: {
  3537. "pawSize": {
  3538. name: "Paw Size",
  3539. power: 2,
  3540. type: "area",
  3541. base: math.unit(0.072, "m^2")
  3542. },
  3543. "pawLength": {
  3544. name: "Paw Length",
  3545. power: 1,
  3546. type: "length",
  3547. base: math.unit(0.45, "m")
  3548. }
  3549. }
  3550. },
  3551. },
  3552. [
  3553. {
  3554. name: "Normal",
  3555. height: math.unit(5, "feet"),
  3556. form: "weaselbun"
  3557. },
  3558. {
  3559. name: "Macro",
  3560. height: math.unit(50, "feet"),
  3561. default: true,
  3562. form: "weaselbun"
  3563. },
  3564. {
  3565. name: "Megamacro",
  3566. height: math.unit(10, "miles"),
  3567. form: "weaselbun"
  3568. },
  3569. {
  3570. name: "Gigamacro",
  3571. height: math.unit(5, "earths"),
  3572. form: "weaselbun"
  3573. },
  3574. {
  3575. name: "Normal",
  3576. height: math.unit(3, "feet"),
  3577. default: true,
  3578. form: "bun"
  3579. },
  3580. {
  3581. name: "Fun-Size",
  3582. height: math.unit(12, "feet"),
  3583. form: "bun"
  3584. },
  3585. {
  3586. name: "Macro",
  3587. height: math.unit(100, "feet"),
  3588. form: "bun"
  3589. },
  3590. {
  3591. name: "Planetary",
  3592. height: math.unit(3, "earths"),
  3593. form: "bun"
  3594. },
  3595. ],
  3596. {
  3597. "weaselbun": {
  3598. name: "Weaselbun",
  3599. default: true
  3600. },
  3601. "bun": {
  3602. name: "Bun",
  3603. },
  3604. }
  3605. ))
  3606. characterMakers.push(() => makeCharacter(
  3607. { name: "Kurrikage", species: ["dragon"], tags: ["anthro"] },
  3608. {
  3609. front: {
  3610. height: math.unit(7, "feet"),
  3611. weight: math.unit(90, "kg"),
  3612. name: "Front",
  3613. image: {
  3614. source: "./media/characters/kurrikage/front.svg",
  3615. extra: 1845/1733,
  3616. bottom: 119/1964
  3617. }
  3618. },
  3619. back: {
  3620. height: math.unit(7, "feet"),
  3621. weight: math.unit(90, "kg"),
  3622. name: "Back",
  3623. image: {
  3624. source: "./media/characters/kurrikage/back.svg",
  3625. extra: 1790/1677,
  3626. bottom: 61/1851
  3627. }
  3628. },
  3629. dressed: {
  3630. height: math.unit(7, "feet"),
  3631. weight: math.unit(90, "kg"),
  3632. name: "Dressed",
  3633. image: {
  3634. source: "./media/characters/kurrikage/dressed.svg",
  3635. extra: 1845/1733,
  3636. bottom: 119/1964
  3637. }
  3638. },
  3639. foot: {
  3640. height: math.unit(1.5, "feet"),
  3641. name: "Foot",
  3642. image: {
  3643. source: "./media/characters/kurrikage/foot.svg"
  3644. }
  3645. },
  3646. staff: {
  3647. height: math.unit(6.7, "feet"),
  3648. name: "Staff",
  3649. image: {
  3650. source: "./media/characters/kurrikage/staff.svg"
  3651. }
  3652. },
  3653. peek: {
  3654. height: math.unit(1.05, "feet"),
  3655. name: "Peeking",
  3656. image: {
  3657. source: "./media/characters/kurrikage/peek.svg",
  3658. bottom: 0.08
  3659. }
  3660. },
  3661. },
  3662. [
  3663. {
  3664. name: "Normal",
  3665. height: math.unit(12, "feet"),
  3666. default: true
  3667. },
  3668. {
  3669. name: "Big",
  3670. height: math.unit(20, "feet")
  3671. },
  3672. {
  3673. name: "Macro",
  3674. height: math.unit(500, "feet")
  3675. },
  3676. {
  3677. name: "Megamacro",
  3678. height: math.unit(20, "miles")
  3679. },
  3680. ]
  3681. ))
  3682. characterMakers.push(() => makeCharacter(
  3683. { name: "Shingo", species: ["red-panda"], tags: ["anthro"] },
  3684. {
  3685. front: {
  3686. height: math.unit(6, "feet"),
  3687. weight: math.unit(75, "kg"),
  3688. name: "Front",
  3689. image: {
  3690. source: "./media/characters/shingo/front.svg",
  3691. extra: 1900/1825,
  3692. bottom: 82/1982
  3693. }
  3694. },
  3695. side: {
  3696. height: math.unit(6, "feet"),
  3697. weight: math.unit(75, "kg"),
  3698. name: "Side",
  3699. image: {
  3700. source: "./media/characters/shingo/side.svg",
  3701. extra: 1930/1865,
  3702. bottom: 16/1946
  3703. }
  3704. },
  3705. back: {
  3706. height: math.unit(6, "feet"),
  3707. weight: math.unit(75, "kg"),
  3708. name: "Back",
  3709. image: {
  3710. source: "./media/characters/shingo/back.svg",
  3711. extra: 1922/1852,
  3712. bottom: 16/1938
  3713. }
  3714. },
  3715. frontDressed: {
  3716. height: math.unit(6, "feet"),
  3717. weight: math.unit(150, "lb"),
  3718. name: "Front-dressed",
  3719. image: {
  3720. source: "./media/characters/shingo/front-dressed.svg",
  3721. extra: 1900/1825,
  3722. bottom: 82/1982
  3723. }
  3724. },
  3725. paw: {
  3726. height: math.unit(1.29, "feet"),
  3727. name: "Paw",
  3728. image: {
  3729. source: "./media/characters/shingo/paw.svg"
  3730. }
  3731. },
  3732. hand: {
  3733. height: math.unit(1.07, "feet"),
  3734. name: "Hand",
  3735. image: {
  3736. source: "./media/characters/shingo/hand.svg"
  3737. }
  3738. },
  3739. frontAlt: {
  3740. height: math.unit(6, "feet"),
  3741. weight: math.unit(75, "kg"),
  3742. name: "Front (Alt)",
  3743. image: {
  3744. source: "./media/characters/shingo/front-alt.svg",
  3745. extra: 3511 / 3338,
  3746. bottom: 0.005
  3747. }
  3748. },
  3749. frontAlt2: {
  3750. height: math.unit(6, "feet"),
  3751. weight: math.unit(75, "kg"),
  3752. name: "Front (Alt 2)",
  3753. image: {
  3754. source: "./media/characters/shingo/front-alt-2.svg",
  3755. extra: 706/681,
  3756. bottom: 11/717
  3757. }
  3758. },
  3759. pawAlt: {
  3760. height: math.unit(1, "feet"),
  3761. name: "Paw (Alt)",
  3762. image: {
  3763. source: "./media/characters/shingo/paw-alt.svg"
  3764. }
  3765. },
  3766. },
  3767. [
  3768. {
  3769. name: "Micro",
  3770. height: math.unit(4, "inches")
  3771. },
  3772. {
  3773. name: "Normal",
  3774. height: math.unit(6, "feet"),
  3775. default: true
  3776. },
  3777. {
  3778. name: "Macro",
  3779. height: math.unit(108, "feet")
  3780. },
  3781. {
  3782. name: "Macro+",
  3783. height: math.unit(1500, "feet")
  3784. },
  3785. ]
  3786. ))
  3787. characterMakers.push(() => makeCharacter(
  3788. { name: "Aigey", species: ["wolf", "dolphin"], tags: ["anthro"] },
  3789. {
  3790. side: {
  3791. height: math.unit(6, "feet"),
  3792. weight: math.unit(75, "kg"),
  3793. name: "Side",
  3794. image: {
  3795. source: "./media/characters/aigey/side.svg"
  3796. }
  3797. },
  3798. },
  3799. [
  3800. {
  3801. name: "Macro",
  3802. height: math.unit(200, "feet"),
  3803. default: true
  3804. },
  3805. {
  3806. name: "Megamacro",
  3807. height: math.unit(100, "miles")
  3808. },
  3809. ]
  3810. )
  3811. )
  3812. characterMakers.push(() => makeCharacter(
  3813. { name: "Natasha", species: ["african-wild-dog"], tags: ["anthro"] },
  3814. {
  3815. front: {
  3816. height: math.unit(5 + 5 / 12, "feet"),
  3817. weight: math.unit(75, "kg"),
  3818. name: "Front",
  3819. image: {
  3820. source: "./media/characters/natasha/front.svg",
  3821. extra: 859 / 824,
  3822. bottom: 23 / 879.6
  3823. }
  3824. },
  3825. frontNsfw: {
  3826. height: math.unit(5 + 5 / 12, "feet"),
  3827. weight: math.unit(75, "kg"),
  3828. name: "Front (NSFW)",
  3829. image: {
  3830. source: "./media/characters/natasha/front-nsfw.svg",
  3831. extra: 859 / 824,
  3832. bottom: 23 / 879.6
  3833. }
  3834. },
  3835. frontErect: {
  3836. height: math.unit(5 + 5 / 12, "feet"),
  3837. weight: math.unit(75, "kg"),
  3838. name: "Front (Erect)",
  3839. image: {
  3840. source: "./media/characters/natasha/front-erect.svg",
  3841. extra: 859 / 824,
  3842. bottom: 23 / 879.6
  3843. }
  3844. },
  3845. back: {
  3846. height: math.unit(5 + 5 / 12, "feet"),
  3847. weight: math.unit(75, "kg"),
  3848. name: "Back",
  3849. image: {
  3850. source: "./media/characters/natasha/back.svg",
  3851. extra: 887.9 / 852.6,
  3852. bottom: 9.7 / 896.4
  3853. }
  3854. },
  3855. backAlt: {
  3856. height: math.unit(5 + 5 / 12, "feet"),
  3857. weight: math.unit(75, "kg"),
  3858. name: "Back (Alt)",
  3859. image: {
  3860. source: "./media/characters/natasha/back-alt.svg",
  3861. extra: 1236.7 / 1192,
  3862. bottom: 22.3 / 1258.2
  3863. }
  3864. },
  3865. dick: {
  3866. height: math.unit(1.772, "feet"),
  3867. name: "Dick",
  3868. image: {
  3869. source: "./media/characters/natasha/dick.svg"
  3870. }
  3871. },
  3872. paw: {
  3873. height: math.unit(0.250, "meters"),
  3874. name: "Paw",
  3875. image: {
  3876. source: "./media/characters/natasha/paw.svg"
  3877. },
  3878. extraAttributes: {
  3879. "toeSize": {
  3880. name: "Toe Size",
  3881. power: 2,
  3882. type: "area",
  3883. base: math.unit(0.0024, "m^2")
  3884. },
  3885. "padSize": {
  3886. name: "Pad Size",
  3887. power: 2,
  3888. type: "area",
  3889. base: math.unit(0.00889, "m^2")
  3890. },
  3891. "pawSize": {
  3892. name: "Paw Size",
  3893. power: 2,
  3894. type: "area",
  3895. base: math.unit(0.023667, "m^2")
  3896. },
  3897. }
  3898. },
  3899. },
  3900. [
  3901. {
  3902. name: "Shortstack",
  3903. height: math.unit(3, "feet"),
  3904. default: true
  3905. },
  3906. {
  3907. name: "Normal",
  3908. height: math.unit(5 + 5 / 12, "feet")
  3909. },
  3910. {
  3911. name: "Large",
  3912. height: math.unit(12, "feet")
  3913. },
  3914. {
  3915. name: "Macro",
  3916. height: math.unit(100, "feet")
  3917. },
  3918. {
  3919. name: "Macro+",
  3920. height: math.unit(260, "feet")
  3921. },
  3922. {
  3923. name: "Macro++",
  3924. height: math.unit(1, "mile")
  3925. },
  3926. ]
  3927. ))
  3928. characterMakers.push(() => makeCharacter(
  3929. { name: "Malik", species: ["hyena"], tags: ["anthro"] },
  3930. {
  3931. front: {
  3932. height: math.unit(6, "feet"),
  3933. weight: math.unit(75, "kg"),
  3934. name: "Front",
  3935. image: {
  3936. source: "./media/characters/malik/front.svg",
  3937. extra: 1750/1561,
  3938. bottom: 80/1830
  3939. },
  3940. extraAttributes: {
  3941. "toeSize": {
  3942. name: "Toe Size",
  3943. power: 2,
  3944. type: "area",
  3945. base: math.unit(0.0159, "m^2")
  3946. },
  3947. "pawSize": {
  3948. name: "Paw Size",
  3949. power: 2,
  3950. type: "area",
  3951. base: math.unit(0.09834, "m^2")
  3952. },
  3953. }
  3954. },
  3955. side: {
  3956. height: math.unit(6, "feet"),
  3957. weight: math.unit(75, "kg"),
  3958. name: "Side",
  3959. image: {
  3960. source: "./media/characters/malik/side.svg",
  3961. extra: 1802/1685,
  3962. bottom: 42/1844
  3963. },
  3964. extraAttributes: {
  3965. "toeSize": {
  3966. name: "Toe Size",
  3967. power: 2,
  3968. type: "area",
  3969. base: math.unit(0.0159, "m^2")
  3970. },
  3971. "pawSize": {
  3972. name: "Paw Size",
  3973. power: 2,
  3974. type: "area",
  3975. base: math.unit(0.09834, "m^2")
  3976. },
  3977. }
  3978. },
  3979. back: {
  3980. height: math.unit(6, "feet"),
  3981. weight: math.unit(75, "kg"),
  3982. name: "Back",
  3983. image: {
  3984. source: "./media/characters/malik/back.svg",
  3985. extra: 1803/1607,
  3986. bottom: 33/1836
  3987. },
  3988. extraAttributes: {
  3989. "toeSize": {
  3990. name: "Toe Size",
  3991. power: 2,
  3992. type: "area",
  3993. base: math.unit(0.0159, "m^2")
  3994. },
  3995. "pawSize": {
  3996. name: "Paw Size",
  3997. power: 2,
  3998. type: "area",
  3999. base: math.unit(0.09834, "m^2")
  4000. },
  4001. }
  4002. },
  4003. },
  4004. [
  4005. {
  4006. name: "Macro",
  4007. height: math.unit(156, "feet"),
  4008. default: true
  4009. },
  4010. {
  4011. name: "Macro+",
  4012. height: math.unit(1188, "feet")
  4013. },
  4014. ]
  4015. ))
  4016. characterMakers.push(() => makeCharacter(
  4017. { name: "Sefer", species: ["carbuncle"], tags: ["anthro"] },
  4018. {
  4019. front: {
  4020. height: math.unit(6, "feet"),
  4021. weight: math.unit(75, "kg"),
  4022. name: "Front",
  4023. image: {
  4024. source: "./media/characters/sefer/front.svg",
  4025. extra: 848 / 659,
  4026. bottom: 28.3 / 876.442
  4027. }
  4028. },
  4029. back: {
  4030. height: math.unit(6, "feet"),
  4031. weight: math.unit(75, "kg"),
  4032. name: "Back",
  4033. image: {
  4034. source: "./media/characters/sefer/back.svg",
  4035. extra: 864 / 695,
  4036. bottom: 10 / 871
  4037. }
  4038. },
  4039. frontDressed: {
  4040. height: math.unit(6, "feet"),
  4041. weight: math.unit(75, "kg"),
  4042. name: "Dressed",
  4043. image: {
  4044. source: "./media/characters/sefer/dressed.svg",
  4045. extra: 839 / 653,
  4046. bottom: 37.6 / 878
  4047. }
  4048. },
  4049. },
  4050. [
  4051. {
  4052. name: "Normal",
  4053. height: math.unit(6, "feet"),
  4054. default: true
  4055. },
  4056. {
  4057. name: "Big",
  4058. height: math.unit(8, "meters")
  4059. },
  4060. ]
  4061. ))
  4062. characterMakers.push(() => makeCharacter(
  4063. { name: "North", species: ["leaf-nosed-bat"], tags: ["anthro"] },
  4064. {
  4065. body: {
  4066. height: math.unit(2.2428, "meter"),
  4067. weight: math.unit(124.738, "kg"),
  4068. name: "Body",
  4069. image: {
  4070. extra: 1225 / 1050,
  4071. source: "./media/characters/north/front.svg"
  4072. }
  4073. }
  4074. },
  4075. [
  4076. {
  4077. name: "Micro",
  4078. height: math.unit(4, "inches")
  4079. },
  4080. {
  4081. name: "Macro",
  4082. height: math.unit(63, "meters")
  4083. },
  4084. {
  4085. name: "Megamacro",
  4086. height: math.unit(101, "miles"),
  4087. default: true
  4088. }
  4089. ]
  4090. ))
  4091. characterMakers.push(() => makeCharacter(
  4092. { name: "Talan", species: ["dragon", "fish"], tags: ["anthro"] },
  4093. {
  4094. angled: {
  4095. height: math.unit(4, "meter"),
  4096. weight: math.unit(150, "kg"),
  4097. name: "Angled",
  4098. image: {
  4099. source: "./media/characters/talan/angled-sfw.svg",
  4100. bottom: 29 / 3734
  4101. }
  4102. },
  4103. angledNsfw: {
  4104. height: math.unit(4, "meter"),
  4105. weight: math.unit(150, "kg"),
  4106. name: "Angled (NSFW)",
  4107. image: {
  4108. source: "./media/characters/talan/angled-nsfw.svg",
  4109. bottom: 29 / 3734
  4110. }
  4111. },
  4112. frontNsfw: {
  4113. height: math.unit(4, "meter"),
  4114. weight: math.unit(150, "kg"),
  4115. name: "Front (NSFW)",
  4116. image: {
  4117. source: "./media/characters/talan/front-nsfw.svg",
  4118. bottom: 29 / 3734
  4119. }
  4120. },
  4121. sideNsfw: {
  4122. height: math.unit(4, "meter"),
  4123. weight: math.unit(150, "kg"),
  4124. name: "Side (NSFW)",
  4125. image: {
  4126. source: "./media/characters/talan/side-nsfw.svg",
  4127. bottom: 29 / 3734
  4128. }
  4129. },
  4130. back: {
  4131. height: math.unit(4, "meter"),
  4132. weight: math.unit(150, "kg"),
  4133. name: "Back",
  4134. image: {
  4135. source: "./media/characters/talan/back.svg"
  4136. }
  4137. },
  4138. dickBottom: {
  4139. height: math.unit(0.621, "meter"),
  4140. name: "Dick (Bottom)",
  4141. image: {
  4142. source: "./media/characters/talan/dick-bottom.svg"
  4143. }
  4144. },
  4145. dickTop: {
  4146. height: math.unit(0.621, "meter"),
  4147. name: "Dick (Top)",
  4148. image: {
  4149. source: "./media/characters/talan/dick-top.svg"
  4150. }
  4151. },
  4152. dickSide: {
  4153. height: math.unit(0.305, "meter"),
  4154. name: "Dick (Side)",
  4155. image: {
  4156. source: "./media/characters/talan/dick-side.svg"
  4157. }
  4158. },
  4159. dickFront: {
  4160. height: math.unit(0.305, "meter"),
  4161. name: "Dick (Front)",
  4162. image: {
  4163. source: "./media/characters/talan/dick-front.svg"
  4164. }
  4165. },
  4166. },
  4167. [
  4168. {
  4169. name: "Normal",
  4170. height: math.unit(4, "meters")
  4171. },
  4172. {
  4173. name: "Macro",
  4174. height: math.unit(100, "meters")
  4175. },
  4176. {
  4177. name: "Megamacro",
  4178. height: math.unit(2, "miles"),
  4179. default: true
  4180. },
  4181. {
  4182. name: "Gigamacro",
  4183. height: math.unit(5000, "miles")
  4184. },
  4185. {
  4186. name: "Teramacro",
  4187. height: math.unit(100, "parsecs")
  4188. }
  4189. ]
  4190. ))
  4191. characterMakers.push(() => makeCharacter(
  4192. { name: "Gael'Rathus", species: ["ram", "demon"], tags: ["anthro"] },
  4193. {
  4194. front: {
  4195. height: math.unit(2, "meter"),
  4196. weight: math.unit(90, "kg"),
  4197. name: "Front",
  4198. image: {
  4199. source: "./media/characters/gael'rathus/front.svg"
  4200. }
  4201. },
  4202. frontAlt: {
  4203. height: math.unit(2, "meter"),
  4204. weight: math.unit(90, "kg"),
  4205. name: "Front (alt)",
  4206. image: {
  4207. source: "./media/characters/gael'rathus/front-alt.svg"
  4208. }
  4209. },
  4210. frontAlt2: {
  4211. height: math.unit(2, "meter"),
  4212. weight: math.unit(90, "kg"),
  4213. name: "Front (alt 2)",
  4214. image: {
  4215. source: "./media/characters/gael'rathus/front-alt-2.svg"
  4216. }
  4217. }
  4218. },
  4219. [
  4220. {
  4221. name: "Normal",
  4222. height: math.unit(9, "feet"),
  4223. default: true
  4224. },
  4225. {
  4226. name: "Large",
  4227. height: math.unit(25, "feet")
  4228. },
  4229. {
  4230. name: "Macro",
  4231. height: math.unit(0.25, "miles")
  4232. },
  4233. {
  4234. name: "Megamacro",
  4235. height: math.unit(10, "miles")
  4236. }
  4237. ]
  4238. ))
  4239. characterMakers.push(() => makeCharacter(
  4240. { name: "Sosha", species: ["cougar"], tags: ["feral"] },
  4241. {
  4242. side: {
  4243. height: math.unit(2, "meter"),
  4244. weight: math.unit(140, "kg"),
  4245. name: "Side",
  4246. image: {
  4247. source: "./media/characters/sosha/side.svg",
  4248. extra: 1170/1006,
  4249. bottom: 94/1264
  4250. }
  4251. },
  4252. maw: {
  4253. height: math.unit(2.87, "feet"),
  4254. name: "Maw",
  4255. image: {
  4256. source: "./media/characters/sosha/maw.svg",
  4257. extra: 966/865,
  4258. bottom: 0/966
  4259. }
  4260. },
  4261. cooch: {
  4262. height: math.unit(5.6, "feet"),
  4263. name: "Cooch",
  4264. image: {
  4265. source: "./media/characters/sosha/cooch.svg"
  4266. }
  4267. },
  4268. },
  4269. [
  4270. {
  4271. name: "Normal",
  4272. height: math.unit(12, "feet"),
  4273. default: true
  4274. }
  4275. ]
  4276. ))
  4277. characterMakers.push(() => makeCharacter(
  4278. { name: "RuNNoLa", species: ["wolf"], tags: ["feral"] },
  4279. {
  4280. side: {
  4281. height: math.unit(5 + 5 / 12, "feet"),
  4282. weight: math.unit(170, "kg"),
  4283. name: "Side",
  4284. image: {
  4285. source: "./media/characters/runnola/side.svg",
  4286. extra: 741 / 448,
  4287. bottom: 0.05
  4288. }
  4289. },
  4290. },
  4291. [
  4292. {
  4293. name: "Small",
  4294. height: math.unit(3, "feet")
  4295. },
  4296. {
  4297. name: "Normal",
  4298. height: math.unit(5 + 5 / 12, "feet"),
  4299. default: true
  4300. },
  4301. {
  4302. name: "Big",
  4303. height: math.unit(10, "feet")
  4304. },
  4305. ]
  4306. ))
  4307. characterMakers.push(() => makeCharacter(
  4308. { name: "Kurribird", species: ["avian"], tags: ["anthro"] },
  4309. {
  4310. front: {
  4311. height: math.unit(2, "meter"),
  4312. weight: math.unit(50, "kg"),
  4313. name: "Front",
  4314. image: {
  4315. source: "./media/characters/kurribird/front.svg",
  4316. bottom: 0.015
  4317. }
  4318. },
  4319. frontAlt: {
  4320. height: math.unit(1.5, "meter"),
  4321. weight: math.unit(50, "kg"),
  4322. name: "Front (Alt)",
  4323. image: {
  4324. source: "./media/characters/kurribird/front-alt.svg",
  4325. extra: 1.45
  4326. }
  4327. },
  4328. },
  4329. [
  4330. {
  4331. name: "Normal",
  4332. height: math.unit(7, "feet")
  4333. },
  4334. {
  4335. name: "Big",
  4336. height: math.unit(12, "feet"),
  4337. default: true
  4338. },
  4339. {
  4340. name: "Macro",
  4341. height: math.unit(1500, "feet")
  4342. },
  4343. {
  4344. name: "Megamacro",
  4345. height: math.unit(2, "miles")
  4346. }
  4347. ]
  4348. ))
  4349. characterMakers.push(() => makeCharacter(
  4350. { name: "Elbial", species: ["goat", "lion", "demon", "deity"], tags: ["anthro"] },
  4351. {
  4352. front: {
  4353. height: math.unit(2, "meter"),
  4354. weight: math.unit(80, "kg"),
  4355. name: "Front",
  4356. image: {
  4357. source: "./media/characters/elbial/front.svg",
  4358. extra: 1643 / 1556,
  4359. bottom: 60.2 / 1696
  4360. }
  4361. },
  4362. side: {
  4363. height: math.unit(2, "meter"),
  4364. weight: math.unit(80, "kg"),
  4365. name: "Side",
  4366. image: {
  4367. source: "./media/characters/elbial/side.svg",
  4368. extra: 1601/1528,
  4369. bottom: 97/1698
  4370. }
  4371. },
  4372. back: {
  4373. height: math.unit(2, "meter"),
  4374. weight: math.unit(80, "kg"),
  4375. name: "Back",
  4376. image: {
  4377. source: "./media/characters/elbial/back.svg",
  4378. extra: 1653/1569,
  4379. bottom: 20/1673
  4380. }
  4381. },
  4382. frontDressed: {
  4383. height: math.unit(2, "meter"),
  4384. weight: math.unit(80, "kg"),
  4385. name: "Front (Dressed)",
  4386. image: {
  4387. source: "./media/characters/elbial/front-dressed.svg",
  4388. extra: 1638/1569,
  4389. bottom: 70/1708
  4390. }
  4391. },
  4392. genitals: {
  4393. height: math.unit(2 / 3.367, "meter"),
  4394. name: "Genitals",
  4395. image: {
  4396. source: "./media/characters/elbial/genitals.svg"
  4397. }
  4398. },
  4399. },
  4400. [
  4401. {
  4402. name: "Large",
  4403. height: math.unit(100, "feet")
  4404. },
  4405. {
  4406. name: "Macro",
  4407. height: math.unit(500, "feet"),
  4408. default: true
  4409. },
  4410. {
  4411. name: "Megamacro",
  4412. height: math.unit(10, "miles")
  4413. },
  4414. {
  4415. name: "Gigamacro",
  4416. height: math.unit(25000, "miles")
  4417. },
  4418. {
  4419. name: "Full-Size",
  4420. height: math.unit(8000000, "gigaparsecs")
  4421. }
  4422. ]
  4423. ))
  4424. characterMakers.push(() => makeCharacter(
  4425. { name: "Noah", species: ["harpy-eagle"], tags: ["anthro"] },
  4426. {
  4427. front: {
  4428. height: math.unit(2, "meter"),
  4429. weight: math.unit(60, "kg"),
  4430. name: "Front",
  4431. image: {
  4432. source: "./media/characters/noah/front.svg",
  4433. extra: 1383/1313,
  4434. bottom: 104/1487
  4435. }
  4436. },
  4437. hand: {
  4438. height: math.unit(0.6, "feet"),
  4439. name: "Hand",
  4440. image: {
  4441. source: "./media/characters/noah/hand.svg"
  4442. }
  4443. },
  4444. talons: {
  4445. height: math.unit(1.385, "feet"),
  4446. name: "Talons",
  4447. image: {
  4448. source: "./media/characters/noah/talons.svg"
  4449. }
  4450. },
  4451. beak: {
  4452. height: math.unit(0.43, "feet"),
  4453. name: "Beak",
  4454. image: {
  4455. source: "./media/characters/noah/beak.svg"
  4456. }
  4457. },
  4458. collar: {
  4459. height: math.unit(0.88, "feet"),
  4460. name: "Collar",
  4461. image: {
  4462. source: "./media/characters/noah/collar.svg"
  4463. }
  4464. },
  4465. eyeNarrow: {
  4466. height: math.unit(0.18, "feet"),
  4467. name: "Eye (Narrow)",
  4468. image: {
  4469. source: "./media/characters/noah/eye-narrow.svg"
  4470. }
  4471. },
  4472. eyeNormal: {
  4473. height: math.unit(0.18, "feet"),
  4474. name: "Eye (Normal)",
  4475. image: {
  4476. source: "./media/characters/noah/eye-normal.svg"
  4477. }
  4478. },
  4479. eyeWide: {
  4480. height: math.unit(0.18, "feet"),
  4481. name: "Eye (Wide)",
  4482. image: {
  4483. source: "./media/characters/noah/eye-wide.svg"
  4484. }
  4485. },
  4486. ear: {
  4487. height: math.unit(0.64, "feet"),
  4488. name: "Ear",
  4489. image: {
  4490. source: "./media/characters/noah/ear.svg"
  4491. }
  4492. },
  4493. },
  4494. [
  4495. {
  4496. name: "Large",
  4497. height: math.unit(50, "feet")
  4498. },
  4499. {
  4500. name: "Macro",
  4501. height: math.unit(750, "feet"),
  4502. default: true
  4503. },
  4504. {
  4505. name: "Megamacro",
  4506. height: math.unit(50, "miles")
  4507. },
  4508. {
  4509. name: "Gigamacro",
  4510. height: math.unit(100000, "miles")
  4511. },
  4512. {
  4513. name: "Full-Size",
  4514. height: math.unit(3000000000, "miles")
  4515. }
  4516. ]
  4517. ))
  4518. characterMakers.push(() => makeCharacter(
  4519. { name: "Natalya", species: ["wolf"], tags: ["anthro"] },
  4520. {
  4521. front: {
  4522. height: math.unit(2, "meter"),
  4523. weight: math.unit(80, "kg"),
  4524. name: "Front",
  4525. image: {
  4526. source: "./media/characters/natalya/front.svg"
  4527. }
  4528. },
  4529. back: {
  4530. height: math.unit(2, "meter"),
  4531. weight: math.unit(80, "kg"),
  4532. name: "Back",
  4533. image: {
  4534. source: "./media/characters/natalya/back.svg"
  4535. }
  4536. }
  4537. },
  4538. [
  4539. {
  4540. name: "Normal",
  4541. height: math.unit(150, "feet"),
  4542. default: true
  4543. },
  4544. {
  4545. name: "Megamacro",
  4546. height: math.unit(5, "miles")
  4547. },
  4548. {
  4549. name: "Full-Size",
  4550. height: math.unit(600, "kiloparsecs")
  4551. }
  4552. ]
  4553. ))
  4554. characterMakers.push(() => makeCharacter(
  4555. { name: "Erestrebah", species: ["avian", "deer"], tags: ["anthro"] },
  4556. {
  4557. front: {
  4558. height: math.unit(2, "meter"),
  4559. weight: math.unit(50, "kg"),
  4560. name: "Front",
  4561. image: {
  4562. source: "./media/characters/erestrebah/front.svg",
  4563. extra: 1262/1162,
  4564. bottom: 96/1358
  4565. }
  4566. },
  4567. back: {
  4568. height: math.unit(2, "meter"),
  4569. weight: math.unit(50, "kg"),
  4570. name: "Back",
  4571. image: {
  4572. source: "./media/characters/erestrebah/back.svg",
  4573. extra: 1257/1139,
  4574. bottom: 13/1270
  4575. }
  4576. },
  4577. wing: {
  4578. height: math.unit(2, "meter"),
  4579. weight: math.unit(50, "kg"),
  4580. name: "Wing",
  4581. image: {
  4582. source: "./media/characters/erestrebah/wing.svg",
  4583. extra: 1262/1162,
  4584. bottom: 96/1358
  4585. }
  4586. },
  4587. mouth: {
  4588. height: math.unit(0.39, "feet"),
  4589. name: "Mouth",
  4590. image: {
  4591. source: "./media/characters/erestrebah/mouth.svg"
  4592. }
  4593. }
  4594. },
  4595. [
  4596. {
  4597. name: "Normal",
  4598. height: math.unit(10, "feet")
  4599. },
  4600. {
  4601. name: "Large",
  4602. height: math.unit(50, "feet"),
  4603. default: true
  4604. },
  4605. {
  4606. name: "Macro",
  4607. height: math.unit(300, "feet")
  4608. },
  4609. {
  4610. name: "Macro+",
  4611. height: math.unit(750, "feet")
  4612. },
  4613. {
  4614. name: "Megamacro",
  4615. height: math.unit(3, "miles")
  4616. }
  4617. ]
  4618. ))
  4619. characterMakers.push(() => makeCharacter(
  4620. { name: "Jennifer", species: ["rat", "demon"], tags: ["anthro"] },
  4621. {
  4622. front: {
  4623. height: math.unit(2, "meter"),
  4624. weight: math.unit(80, "kg"),
  4625. name: "Front",
  4626. image: {
  4627. source: "./media/characters/jennifer/front.svg",
  4628. bottom: 0.11,
  4629. extra: 1.16
  4630. }
  4631. },
  4632. frontAlt: {
  4633. height: math.unit(2, "meter"),
  4634. weight: math.unit(80, "kg"),
  4635. name: "Front (Alt)",
  4636. image: {
  4637. source: "./media/characters/jennifer/front-alt.svg"
  4638. }
  4639. }
  4640. },
  4641. [
  4642. {
  4643. name: "Canon Height",
  4644. height: math.unit(120, "feet"),
  4645. default: true
  4646. },
  4647. {
  4648. name: "Macro+",
  4649. height: math.unit(300, "feet")
  4650. },
  4651. {
  4652. name: "Megamacro",
  4653. height: math.unit(20000, "feet")
  4654. }
  4655. ]
  4656. ))
  4657. characterMakers.push(() => makeCharacter(
  4658. { name: "Kalista", species: ["phoenix"], tags: ["anthro"] },
  4659. {
  4660. front: {
  4661. height: math.unit(2, "meter"),
  4662. weight: math.unit(50, "kg"),
  4663. name: "Front",
  4664. image: {
  4665. source: "./media/characters/kalista/front.svg",
  4666. extra: 1314/1145,
  4667. bottom: 101/1415
  4668. }
  4669. },
  4670. back: {
  4671. height: math.unit(2, "meter"),
  4672. weight: math.unit(50, "kg"),
  4673. name: "Back",
  4674. image: {
  4675. source: "./media/characters/kalista/back.svg",
  4676. extra: 1366 / 1156,
  4677. bottom: 33.9 / 1362.78
  4678. }
  4679. }
  4680. },
  4681. [
  4682. {
  4683. name: "Uncomfortably Small",
  4684. height: math.unit(10, "feet")
  4685. },
  4686. {
  4687. name: "Small",
  4688. height: math.unit(30, "feet")
  4689. },
  4690. {
  4691. name: "Macro",
  4692. height: math.unit(100, "feet"),
  4693. default: true
  4694. },
  4695. {
  4696. name: "Macro+",
  4697. height: math.unit(2000, "feet")
  4698. },
  4699. {
  4700. name: "True Form",
  4701. height: math.unit(8924, "miles")
  4702. }
  4703. ]
  4704. ))
  4705. characterMakers.push(() => makeCharacter(
  4706. { name: "GiantGrowingVixen", species: ["fox"], tags: ["anthro"] },
  4707. {
  4708. front: {
  4709. height: math.unit(2, "meter"),
  4710. weight: math.unit(120, "kg"),
  4711. name: "Front",
  4712. image: {
  4713. source: "./media/characters/ggv/front.svg"
  4714. }
  4715. },
  4716. side: {
  4717. height: math.unit(2, "meter"),
  4718. weight: math.unit(120, "kg"),
  4719. name: "Side",
  4720. image: {
  4721. source: "./media/characters/ggv/side.svg"
  4722. }
  4723. }
  4724. },
  4725. [
  4726. {
  4727. name: "Extremely Puny",
  4728. height: math.unit(9 + 5 / 12, "feet")
  4729. },
  4730. {
  4731. name: "Horribly Small",
  4732. height: math.unit(47.7, "miles"),
  4733. default: true
  4734. },
  4735. {
  4736. name: "Reasonably Sized",
  4737. height: math.unit(25000, "parsecs")
  4738. },
  4739. {
  4740. name: "Slightly Uncompressed",
  4741. height: math.unit(7.77e31, "parsecs")
  4742. },
  4743. {
  4744. name: "Omniversal",
  4745. height: math.unit(1e300, "meters")
  4746. },
  4747. ]
  4748. ))
  4749. characterMakers.push(() => makeCharacter(
  4750. { name: "Napalm", species: ["aeromorph"], tags: ["anthro"] },
  4751. {
  4752. front: {
  4753. height: math.unit(2, "meter"),
  4754. weight: math.unit(75, "lb"),
  4755. name: "Front",
  4756. image: {
  4757. source: "./media/characters/napalm/front.svg"
  4758. }
  4759. },
  4760. back: {
  4761. height: math.unit(2, "meter"),
  4762. weight: math.unit(75, "lb"),
  4763. name: "Back",
  4764. image: {
  4765. source: "./media/characters/napalm/back.svg"
  4766. }
  4767. }
  4768. },
  4769. [
  4770. {
  4771. name: "Standard",
  4772. height: math.unit(55, "feet"),
  4773. default: true
  4774. }
  4775. ]
  4776. ))
  4777. characterMakers.push(() => makeCharacter(
  4778. { name: "Asana", species: ["android", "jackal"], tags: ["anthro"] },
  4779. {
  4780. front: {
  4781. height: math.unit(7 + 5 / 6, "feet"),
  4782. weight: math.unit(325, "lb"),
  4783. name: "Front",
  4784. image: {
  4785. source: "./media/characters/asana/front.svg",
  4786. extra: 1133 / 1060,
  4787. bottom: 15.2 / 1148.6
  4788. }
  4789. },
  4790. back: {
  4791. height: math.unit(7 + 5 / 6, "feet"),
  4792. weight: math.unit(325, "lb"),
  4793. name: "Back",
  4794. image: {
  4795. source: "./media/characters/asana/back.svg",
  4796. extra: 1114 / 1043,
  4797. bottom: 5 / 1120
  4798. }
  4799. },
  4800. dressedDark: {
  4801. height: math.unit(7 + 5 / 6, "feet"),
  4802. weight: math.unit(325, "lb"),
  4803. name: "Dressed (Dark)",
  4804. image: {
  4805. source: "./media/characters/asana/dressed-dark.svg",
  4806. extra: 1133 / 1060,
  4807. bottom: 15.2 / 1148.6
  4808. }
  4809. },
  4810. dressedLight: {
  4811. height: math.unit(7 + 5 / 6, "feet"),
  4812. weight: math.unit(325, "lb"),
  4813. name: "Dressed (Light)",
  4814. image: {
  4815. source: "./media/characters/asana/dressed-light.svg",
  4816. extra: 1133 / 1060,
  4817. bottom: 15.2 / 1148.6
  4818. }
  4819. },
  4820. },
  4821. [
  4822. {
  4823. name: "Standard",
  4824. height: math.unit(7 + 5 / 6, "feet"),
  4825. default: true
  4826. },
  4827. {
  4828. name: "Large",
  4829. height: math.unit(10, "meters")
  4830. },
  4831. {
  4832. name: "Macro",
  4833. height: math.unit(2500, "meters")
  4834. },
  4835. {
  4836. name: "Megamacro",
  4837. height: math.unit(5e6, "meters")
  4838. },
  4839. {
  4840. name: "Examacro",
  4841. height: math.unit(5e12, "lightyears")
  4842. },
  4843. {
  4844. name: "Max Size",
  4845. height: math.unit(1e31, "lightyears")
  4846. }
  4847. ]
  4848. ))
  4849. characterMakers.push(() => makeCharacter(
  4850. { name: "Ebony", species: ["hoshiko-beast"], tags: ["anthro"] },
  4851. {
  4852. front: {
  4853. height: math.unit(2, "meter"),
  4854. weight: math.unit(60, "kg"),
  4855. name: "Front",
  4856. image: {
  4857. source: "./media/characters/ebony/front.svg",
  4858. bottom: 0.03,
  4859. extra: 1045 / 810 + 0.03
  4860. }
  4861. },
  4862. side: {
  4863. height: math.unit(2, "meter"),
  4864. weight: math.unit(60, "kg"),
  4865. name: "Side",
  4866. image: {
  4867. source: "./media/characters/ebony/side.svg",
  4868. bottom: 0.03,
  4869. extra: 1045 / 810 + 0.03
  4870. }
  4871. },
  4872. back: {
  4873. height: math.unit(2, "meter"),
  4874. weight: math.unit(60, "kg"),
  4875. name: "Back",
  4876. image: {
  4877. source: "./media/characters/ebony/back.svg",
  4878. bottom: 0.01,
  4879. extra: 1045 / 810 + 0.01
  4880. }
  4881. },
  4882. },
  4883. [
  4884. // TODO check why I did this lol
  4885. {
  4886. name: "Standard",
  4887. height: math.unit(9 / 8 * (7 + 5 / 12), "feet"),
  4888. default: true
  4889. },
  4890. {
  4891. name: "Macro",
  4892. height: math.unit(200, "feet")
  4893. },
  4894. {
  4895. name: "Gigamacro",
  4896. height: math.unit(13000, "km")
  4897. }
  4898. ]
  4899. ))
  4900. characterMakers.push(() => makeCharacter(
  4901. { name: "Mountain", species: ["snow-jugani"], tags: ["anthro"] },
  4902. {
  4903. front: {
  4904. height: math.unit(6, "feet"),
  4905. weight: math.unit(175, "lb"),
  4906. name: "Front",
  4907. image: {
  4908. source: "./media/characters/mountain/front.svg",
  4909. extra: 972 / 955,
  4910. bottom: 64 / 1036.6
  4911. }
  4912. },
  4913. back: {
  4914. height: math.unit(6, "feet"),
  4915. weight: math.unit(175, "lb"),
  4916. name: "Back",
  4917. image: {
  4918. source: "./media/characters/mountain/back.svg",
  4919. extra: 970 / 950,
  4920. bottom: 28.25 / 999
  4921. }
  4922. },
  4923. },
  4924. [
  4925. {
  4926. name: "Large",
  4927. height: math.unit(20, "meters")
  4928. },
  4929. {
  4930. name: "Macro",
  4931. height: math.unit(300, "meters")
  4932. },
  4933. {
  4934. name: "Gigamacro",
  4935. height: math.unit(10000, "km"),
  4936. default: true
  4937. },
  4938. {
  4939. name: "Examacro",
  4940. height: math.unit(10e9, "lightyears")
  4941. }
  4942. ]
  4943. ))
  4944. characterMakers.push(() => makeCharacter(
  4945. { name: "Rick", species: ["lion"], tags: ["anthro"] },
  4946. {
  4947. front: {
  4948. height: math.unit(8, "feet"),
  4949. weight: math.unit(500, "lb"),
  4950. name: "Front",
  4951. image: {
  4952. source: "./media/characters/rick/front.svg"
  4953. }
  4954. }
  4955. },
  4956. [
  4957. {
  4958. name: "Normal",
  4959. height: math.unit(8, "feet"),
  4960. default: true
  4961. },
  4962. {
  4963. name: "Macro",
  4964. height: math.unit(5, "km")
  4965. }
  4966. ]
  4967. ))
  4968. characterMakers.push(() => makeCharacter(
  4969. { name: "Ona", species: ["raven"], tags: ["anthro"] },
  4970. {
  4971. front: {
  4972. height: math.unit(8, "feet"),
  4973. weight: math.unit(120, "lb"),
  4974. name: "Front",
  4975. image: {
  4976. source: "./media/characters/ona/front.svg"
  4977. }
  4978. },
  4979. frontAlt: {
  4980. height: math.unit(8, "feet"),
  4981. weight: math.unit(120, "lb"),
  4982. name: "Front (Alt)",
  4983. image: {
  4984. source: "./media/characters/ona/front-alt.svg"
  4985. }
  4986. },
  4987. back: {
  4988. height: math.unit(8, "feet"),
  4989. weight: math.unit(120, "lb"),
  4990. name: "Back",
  4991. image: {
  4992. source: "./media/characters/ona/back.svg"
  4993. }
  4994. },
  4995. foot: {
  4996. height: math.unit(1.1, "feet"),
  4997. name: "Foot",
  4998. image: {
  4999. source: "./media/characters/ona/foot.svg"
  5000. }
  5001. }
  5002. },
  5003. [
  5004. {
  5005. name: "Megamacro",
  5006. height: math.unit(70, "km"),
  5007. default: true
  5008. },
  5009. {
  5010. name: "Gigamacro",
  5011. height: math.unit(681818, "miles")
  5012. },
  5013. {
  5014. name: "Examacro",
  5015. height: math.unit(3800000, "lightyears")
  5016. },
  5017. ]
  5018. ))
  5019. characterMakers.push(() => makeCharacter(
  5020. { name: "Mech", species: ["dragon"], tags: ["anthro"] },
  5021. {
  5022. front: {
  5023. height: math.unit(12, "feet"),
  5024. weight: math.unit(3000, "lb"),
  5025. name: "Front",
  5026. image: {
  5027. source: "./media/characters/mech/front.svg",
  5028. extra: 2900 / 2770,
  5029. bottom: 110 / 3010
  5030. }
  5031. },
  5032. back: {
  5033. height: math.unit(12, "feet"),
  5034. weight: math.unit(3000, "lb"),
  5035. name: "Back",
  5036. image: {
  5037. source: "./media/characters/mech/back.svg",
  5038. extra: 3011 / 2890,
  5039. bottom: 94 / 3105
  5040. }
  5041. },
  5042. maw: {
  5043. height: math.unit(3.07, "feet"),
  5044. name: "Maw",
  5045. image: {
  5046. source: "./media/characters/mech/maw.svg"
  5047. }
  5048. },
  5049. head: {
  5050. height: math.unit(3.07, "feet"),
  5051. name: "Head",
  5052. image: {
  5053. source: "./media/characters/mech/head.svg"
  5054. }
  5055. },
  5056. dick: {
  5057. height: math.unit(1.43, "feet"),
  5058. name: "Dick",
  5059. image: {
  5060. source: "./media/characters/mech/dick.svg"
  5061. }
  5062. },
  5063. },
  5064. [
  5065. {
  5066. name: "Normal",
  5067. height: math.unit(12, "feet")
  5068. },
  5069. {
  5070. name: "Macro",
  5071. height: math.unit(300, "feet"),
  5072. default: true
  5073. },
  5074. {
  5075. name: "Macro+",
  5076. height: math.unit(1500, "feet")
  5077. },
  5078. ]
  5079. ))
  5080. characterMakers.push(() => makeCharacter(
  5081. { name: "Gregory", species: ["goat"], tags: ["anthro"] },
  5082. {
  5083. front: {
  5084. height: math.unit(1.3, "meter"),
  5085. weight: math.unit(30, "kg"),
  5086. name: "Front",
  5087. image: {
  5088. source: "./media/characters/gregory/front.svg",
  5089. }
  5090. }
  5091. },
  5092. [
  5093. {
  5094. name: "Normal",
  5095. height: math.unit(1.3, "meter"),
  5096. default: true
  5097. },
  5098. {
  5099. name: "Macro",
  5100. height: math.unit(20, "meter")
  5101. }
  5102. ]
  5103. ))
  5104. characterMakers.push(() => makeCharacter(
  5105. { name: "Elory", species: ["goat"], tags: ["anthro"] },
  5106. {
  5107. front: {
  5108. height: math.unit(2.8, "meter"),
  5109. weight: math.unit(200, "kg"),
  5110. name: "Front",
  5111. image: {
  5112. source: "./media/characters/elory/front.svg",
  5113. }
  5114. }
  5115. },
  5116. [
  5117. {
  5118. name: "Normal",
  5119. height: math.unit(2.8, "meter"),
  5120. default: true
  5121. },
  5122. {
  5123. name: "Macro",
  5124. height: math.unit(38, "meter")
  5125. }
  5126. ]
  5127. ))
  5128. characterMakers.push(() => makeCharacter(
  5129. { name: "Angelpatamon", species: ["patamon", "deity"], tags: ["anthro"] },
  5130. {
  5131. front: {
  5132. height: math.unit(470, "feet"),
  5133. weight: math.unit(924, "tons"),
  5134. name: "Front",
  5135. image: {
  5136. source: "./media/characters/angelpatamon/front.svg",
  5137. }
  5138. }
  5139. },
  5140. [
  5141. {
  5142. name: "Normal",
  5143. height: math.unit(470, "feet"),
  5144. default: true
  5145. },
  5146. {
  5147. name: "Deity Size I",
  5148. height: math.unit(28651.2, "km")
  5149. },
  5150. {
  5151. name: "Deity Size II",
  5152. height: math.unit(171907.2, "km")
  5153. }
  5154. ]
  5155. ))
  5156. characterMakers.push(() => makeCharacter(
  5157. { name: "Cryae", species: ["dragon"], tags: ["feral"] },
  5158. {
  5159. side: {
  5160. height: math.unit(7.2, "meter"),
  5161. weight: math.unit(8.2, "tons"),
  5162. name: "Side",
  5163. image: {
  5164. source: "./media/characters/cryae/side.svg",
  5165. extra: 3500 / 1500
  5166. }
  5167. }
  5168. },
  5169. [
  5170. {
  5171. name: "Normal",
  5172. height: math.unit(7.2, "meter"),
  5173. default: true
  5174. }
  5175. ]
  5176. ))
  5177. characterMakers.push(() => makeCharacter(
  5178. { name: "Xera", species: ["jugani"], tags: ["anthro"] },
  5179. {
  5180. front: {
  5181. height: math.unit(6, "feet"),
  5182. weight: math.unit(175, "lb"),
  5183. name: "Front",
  5184. image: {
  5185. source: "./media/characters/xera/front.svg",
  5186. extra: 2377 / 1972,
  5187. bottom: 75.5 / 2452
  5188. }
  5189. },
  5190. side: {
  5191. height: math.unit(6, "feet"),
  5192. weight: math.unit(175, "lb"),
  5193. name: "Side",
  5194. image: {
  5195. source: "./media/characters/xera/side.svg",
  5196. extra: 2345 / 2019,
  5197. bottom: 39.7 / 2384
  5198. }
  5199. },
  5200. back: {
  5201. height: math.unit(6, "feet"),
  5202. weight: math.unit(175, "lb"),
  5203. name: "Back",
  5204. image: {
  5205. source: "./media/characters/xera/back.svg",
  5206. extra: 2095 / 1984,
  5207. bottom: 67 / 2166
  5208. }
  5209. },
  5210. },
  5211. [
  5212. {
  5213. name: "Small",
  5214. height: math.unit(10, "feet")
  5215. },
  5216. {
  5217. name: "Macro",
  5218. height: math.unit(500, "meters"),
  5219. default: true
  5220. },
  5221. {
  5222. name: "Macro+",
  5223. height: math.unit(10, "km")
  5224. },
  5225. {
  5226. name: "Gigamacro",
  5227. height: math.unit(25000, "km")
  5228. },
  5229. {
  5230. name: "Teramacro",
  5231. height: math.unit(3e6, "km")
  5232. }
  5233. ]
  5234. ))
  5235. characterMakers.push(() => makeCharacter(
  5236. { name: "Nebula", species: ["dragon", "wolf"], tags: ["anthro"] },
  5237. {
  5238. front: {
  5239. height: math.unit(6, "feet"),
  5240. weight: math.unit(175, "lb"),
  5241. name: "Front",
  5242. image: {
  5243. source: "./media/characters/nebula/front.svg",
  5244. extra: 2566 / 2362,
  5245. bottom: 81 / 2644
  5246. }
  5247. }
  5248. },
  5249. [
  5250. {
  5251. name: "Small",
  5252. height: math.unit(4.5, "meters")
  5253. },
  5254. {
  5255. name: "Macro",
  5256. height: math.unit(1500, "meters"),
  5257. default: true
  5258. },
  5259. {
  5260. name: "Megamacro",
  5261. height: math.unit(150, "km")
  5262. },
  5263. {
  5264. name: "Gigamacro",
  5265. height: math.unit(27000, "km")
  5266. }
  5267. ]
  5268. ))
  5269. characterMakers.push(() => makeCharacter(
  5270. { name: "Abysgar", species: ["raptor"], tags: ["anthro"] },
  5271. {
  5272. front: {
  5273. height: math.unit(6, "feet"),
  5274. weight: math.unit(225, "lb"),
  5275. name: "Front",
  5276. image: {
  5277. source: "./media/characters/abysgar/front.svg",
  5278. extra: 1739/1614,
  5279. bottom: 71/1810
  5280. }
  5281. },
  5282. frontNsfw: {
  5283. height: math.unit(6, "feet"),
  5284. weight: math.unit(225, "lb"),
  5285. name: "Front (NSFW)",
  5286. image: {
  5287. source: "./media/characters/abysgar/front-nsfw.svg",
  5288. extra: 1739/1614,
  5289. bottom: 71/1810
  5290. }
  5291. },
  5292. back: {
  5293. height: math.unit(4.6, "feet"),
  5294. weight: math.unit(225, "lb"),
  5295. name: "Back",
  5296. image: {
  5297. source: "./media/characters/abysgar/back.svg",
  5298. extra: 1384/1327,
  5299. bottom: 0/1384
  5300. }
  5301. },
  5302. head: {
  5303. height: math.unit(1.25, "feet"),
  5304. name: "Head",
  5305. image: {
  5306. source: "./media/characters/abysgar/head.svg",
  5307. extra: 669/569,
  5308. bottom: 0/669
  5309. }
  5310. },
  5311. },
  5312. [
  5313. {
  5314. name: "Small",
  5315. height: math.unit(4.5, "meters")
  5316. },
  5317. {
  5318. name: "Macro",
  5319. height: math.unit(1250, "meters"),
  5320. default: true
  5321. },
  5322. {
  5323. name: "Megamacro",
  5324. height: math.unit(125, "km")
  5325. },
  5326. {
  5327. name: "Gigamacro",
  5328. height: math.unit(26000, "km")
  5329. }
  5330. ]
  5331. ))
  5332. characterMakers.push(() => makeCharacter(
  5333. { name: "Yakuz", species: ["wolf"], tags: ["anthro"] },
  5334. {
  5335. front: {
  5336. height: math.unit(6, "feet"),
  5337. weight: math.unit(180, "lb"),
  5338. name: "Front",
  5339. image: {
  5340. source: "./media/characters/yakuz/front.svg"
  5341. }
  5342. }
  5343. },
  5344. [
  5345. {
  5346. name: "Small",
  5347. height: math.unit(5, "meters")
  5348. },
  5349. {
  5350. name: "Macro",
  5351. height: math.unit(1500, "meters"),
  5352. default: true
  5353. },
  5354. {
  5355. name: "Megamacro",
  5356. height: math.unit(200, "km")
  5357. },
  5358. {
  5359. name: "Gigamacro",
  5360. height: math.unit(100000, "km")
  5361. }
  5362. ]
  5363. ))
  5364. characterMakers.push(() => makeCharacter(
  5365. { name: "Mirova", species: ["luxray", "shark"], tags: ["anthro"] },
  5366. {
  5367. front: {
  5368. height: math.unit(6, "feet"),
  5369. weight: math.unit(175, "lb"),
  5370. name: "Front",
  5371. image: {
  5372. source: "./media/characters/mirova/front.svg",
  5373. extra: 3334 / 3071,
  5374. bottom: 42 / 3375.6
  5375. }
  5376. }
  5377. },
  5378. [
  5379. {
  5380. name: "Small",
  5381. height: math.unit(5, "meters")
  5382. },
  5383. {
  5384. name: "Macro",
  5385. height: math.unit(900, "meters"),
  5386. default: true
  5387. },
  5388. {
  5389. name: "Megamacro",
  5390. height: math.unit(135, "km")
  5391. },
  5392. {
  5393. name: "Gigamacro",
  5394. height: math.unit(20000, "km")
  5395. }
  5396. ]
  5397. ))
  5398. characterMakers.push(() => makeCharacter(
  5399. { name: "Asana (Mech)", species: ["zoid"], tags: ["feral"] },
  5400. {
  5401. side: {
  5402. height: math.unit(28.35, "feet"),
  5403. weight: math.unit(99.75, "tons"),
  5404. name: "Side",
  5405. image: {
  5406. source: "./media/characters/asana-mech/side.svg",
  5407. extra: 923 / 699,
  5408. bottom: 50 / 975
  5409. }
  5410. },
  5411. chaingun: {
  5412. height: math.unit(7, "feet"),
  5413. weight: math.unit(2400, "lb"),
  5414. name: "Chaingun",
  5415. image: {
  5416. source: "./media/characters/asana-mech/chaingun.svg"
  5417. }
  5418. },
  5419. laser: {
  5420. height: math.unit(7.12, "feet"),
  5421. weight: math.unit(2000, "lb"),
  5422. name: "Laser",
  5423. image: {
  5424. source: "./media/characters/asana-mech/laser.svg"
  5425. }
  5426. },
  5427. },
  5428. [
  5429. {
  5430. name: "Normal",
  5431. height: math.unit(28.35, "feet"),
  5432. default: true
  5433. },
  5434. {
  5435. name: "Macro",
  5436. height: math.unit(2500, "feet")
  5437. },
  5438. {
  5439. name: "Megamacro",
  5440. height: math.unit(25, "miles")
  5441. },
  5442. {
  5443. name: "Examacro",
  5444. height: math.unit(6e8, "lightyears")
  5445. },
  5446. ]
  5447. ))
  5448. characterMakers.push(() => makeCharacter(
  5449. { name: "Asche", species: ["fox", "dragon", "lion"], tags: ["anthro"] },
  5450. {
  5451. front: {
  5452. height: math.unit(5, "meters"),
  5453. weight: math.unit(1000, "kg"),
  5454. name: "Front",
  5455. image: {
  5456. source: "./media/characters/asche/front.svg",
  5457. extra: 1258 / 1190,
  5458. bottom: 47 / 1305
  5459. }
  5460. },
  5461. frontUnderwear: {
  5462. height: math.unit(5, "meters"),
  5463. weight: math.unit(1000, "kg"),
  5464. name: "Front (Underwear)",
  5465. image: {
  5466. source: "./media/characters/asche/front-underwear.svg",
  5467. extra: 1258 / 1190,
  5468. bottom: 47 / 1305
  5469. }
  5470. },
  5471. frontDressed: {
  5472. height: math.unit(5, "meters"),
  5473. weight: math.unit(1000, "kg"),
  5474. name: "Front (Dressed)",
  5475. image: {
  5476. source: "./media/characters/asche/front-dressed.svg",
  5477. extra: 1258 / 1190,
  5478. bottom: 47 / 1305
  5479. }
  5480. },
  5481. frontArmor: {
  5482. height: math.unit(5, "meters"),
  5483. weight: math.unit(1000, "kg"),
  5484. name: "Front (Armored)",
  5485. image: {
  5486. source: "./media/characters/asche/front-armored.svg",
  5487. extra: 1374 / 1308,
  5488. bottom: 23 / 1397
  5489. }
  5490. },
  5491. mp724: {
  5492. height: math.unit(0.96, "meters"),
  5493. weight: math.unit(38, "kg"),
  5494. name: "H&K MP724",
  5495. image: {
  5496. source: "./media/characters/asche/h&k-mp724.svg"
  5497. }
  5498. },
  5499. side: {
  5500. height: math.unit(5, "meters"),
  5501. weight: math.unit(1000, "kg"),
  5502. name: "Side",
  5503. image: {
  5504. source: "./media/characters/asche/side.svg",
  5505. extra: 1717 / 1609,
  5506. bottom: 0.005
  5507. }
  5508. },
  5509. back: {
  5510. height: math.unit(5, "meters"),
  5511. weight: math.unit(1000, "kg"),
  5512. name: "Back",
  5513. image: {
  5514. source: "./media/characters/asche/back.svg",
  5515. extra: 1570 / 1501
  5516. }
  5517. },
  5518. },
  5519. [
  5520. {
  5521. name: "DEFCON 5",
  5522. height: math.unit(5, "meters")
  5523. },
  5524. {
  5525. name: "DEFCON 4",
  5526. height: math.unit(500, "meters"),
  5527. default: true
  5528. },
  5529. {
  5530. name: "DEFCON 3",
  5531. height: math.unit(5, "km")
  5532. },
  5533. {
  5534. name: "DEFCON 2",
  5535. height: math.unit(500, "km")
  5536. },
  5537. {
  5538. name: "DEFCON 1",
  5539. height: math.unit(500000, "km")
  5540. },
  5541. {
  5542. name: "DEFCON 0",
  5543. height: math.unit(3, "gigaparsecs")
  5544. },
  5545. ]
  5546. ))
  5547. characterMakers.push(() => makeCharacter(
  5548. { name: "Gale", species: ["monster"], tags: ["anthro"] },
  5549. {
  5550. front: {
  5551. height: math.unit(7, "feet"),
  5552. weight: math.unit(92.7, "kg"),
  5553. name: "Front",
  5554. image: {
  5555. source: "./media/characters/gale/front.svg",
  5556. extra: 977/919,
  5557. bottom: 105/1082
  5558. }
  5559. },
  5560. side: {
  5561. height: math.unit(6.7, "feet"),
  5562. weight: math.unit(92.7, "kg"),
  5563. name: "Side",
  5564. image: {
  5565. source: "./media/characters/gale/side.svg",
  5566. extra: 978/922,
  5567. bottom: 140/1118
  5568. }
  5569. },
  5570. back: {
  5571. height: math.unit(7, "feet"),
  5572. weight: math.unit(92.7, "kg"),
  5573. name: "Back",
  5574. image: {
  5575. source: "./media/characters/gale/back.svg",
  5576. extra: 966/920,
  5577. bottom: 61/1027
  5578. }
  5579. },
  5580. maw: {
  5581. height: math.unit(2.23, "feet"),
  5582. name: "Maw",
  5583. image: {
  5584. source: "./media/characters/gale/maw.svg"
  5585. }
  5586. },
  5587. foot: {
  5588. height: math.unit(2.1, "feet"),
  5589. name: "Foot",
  5590. image: {
  5591. source: "./media/characters/gale/foot.svg"
  5592. }
  5593. },
  5594. },
  5595. [
  5596. {
  5597. name: "Normal",
  5598. height: math.unit(7, "feet")
  5599. },
  5600. {
  5601. name: "Macro",
  5602. height: math.unit(150, "feet"),
  5603. default: true
  5604. },
  5605. {
  5606. name: "Macro+",
  5607. height: math.unit(300, "feet")
  5608. },
  5609. ]
  5610. ))
  5611. characterMakers.push(() => makeCharacter(
  5612. { name: "Draylen", species: ["coyote"], tags: ["anthro"] },
  5613. {
  5614. front: {
  5615. height: math.unit(5 + 10/12, "feet"),
  5616. weight: math.unit(67, "kg"),
  5617. name: "Front",
  5618. image: {
  5619. source: "./media/characters/draylen/front.svg",
  5620. extra: 832/777,
  5621. bottom: 85/917
  5622. }
  5623. }
  5624. },
  5625. [
  5626. {
  5627. name: "Normal",
  5628. height: math.unit(5 + 10/12, "feet")
  5629. },
  5630. {
  5631. name: "Macro",
  5632. height: math.unit(150, "feet"),
  5633. default: true
  5634. }
  5635. ]
  5636. ))
  5637. characterMakers.push(() => makeCharacter(
  5638. { name: "Chez", species: ["foo-dog"], tags: ["anthro"] },
  5639. {
  5640. front: {
  5641. height: math.unit(7 + 9 / 12, "feet"),
  5642. weight: math.unit(379, "lbs"),
  5643. name: "Front",
  5644. image: {
  5645. source: "./media/characters/chez/front.svg"
  5646. }
  5647. },
  5648. side: {
  5649. height: math.unit(7 + 9 / 12, "feet"),
  5650. weight: math.unit(379, "lbs"),
  5651. name: "Side",
  5652. image: {
  5653. source: "./media/characters/chez/side.svg"
  5654. }
  5655. }
  5656. },
  5657. [
  5658. {
  5659. name: "Normal",
  5660. height: math.unit(7 + 9 / 12, "feet"),
  5661. default: true
  5662. },
  5663. {
  5664. name: "God King",
  5665. height: math.unit(9750000, "meters")
  5666. }
  5667. ]
  5668. ))
  5669. characterMakers.push(() => makeCharacter(
  5670. { name: "Kaylum", species: ["dragon", "shark"], tags: ["anthro"] },
  5671. {
  5672. front: {
  5673. height: math.unit(6, "feet"),
  5674. weight: math.unit(275, "lbs"),
  5675. name: "Front",
  5676. image: {
  5677. source: "./media/characters/kaylum/front.svg",
  5678. bottom: 0.01,
  5679. extra: 1166 / 1031
  5680. }
  5681. },
  5682. frontWingless: {
  5683. height: math.unit(6, "feet"),
  5684. weight: math.unit(275, "lbs"),
  5685. name: "Front (Wingless)",
  5686. image: {
  5687. source: "./media/characters/kaylum/front-wingless.svg",
  5688. bottom: 0.01,
  5689. extra: 1117 / 1031
  5690. }
  5691. }
  5692. },
  5693. [
  5694. {
  5695. name: "Normal",
  5696. height: math.unit(3.05, "meters")
  5697. },
  5698. {
  5699. name: "Master",
  5700. height: math.unit(5.5, "meters")
  5701. },
  5702. {
  5703. name: "Rampage",
  5704. height: math.unit(19, "meters")
  5705. },
  5706. {
  5707. name: "Macro Lite",
  5708. height: math.unit(37, "meters")
  5709. },
  5710. {
  5711. name: "Hyper Predator",
  5712. height: math.unit(61, "meters")
  5713. },
  5714. {
  5715. name: "Macro",
  5716. height: math.unit(138, "meters"),
  5717. default: true
  5718. }
  5719. ]
  5720. ))
  5721. characterMakers.push(() => makeCharacter(
  5722. { name: "Geta", species: ["fox"], tags: ["anthro"] },
  5723. {
  5724. front: {
  5725. height: math.unit(5 + 5 / 12, "feet"),
  5726. weight: math.unit(120, "lbs"),
  5727. name: "Front",
  5728. image: {
  5729. source: "./media/characters/geta/front.svg",
  5730. extra: 1003/933,
  5731. bottom: 21/1024
  5732. }
  5733. },
  5734. paw: {
  5735. height: math.unit(0.35, "feet"),
  5736. name: "Paw",
  5737. image: {
  5738. source: "./media/characters/geta/paw.svg"
  5739. }
  5740. },
  5741. },
  5742. [
  5743. {
  5744. name: "Micro",
  5745. height: math.unit(3, "inches"),
  5746. default: true
  5747. },
  5748. {
  5749. name: "Normal",
  5750. height: math.unit(5 + 5 / 12, "feet")
  5751. }
  5752. ]
  5753. ))
  5754. characterMakers.push(() => makeCharacter(
  5755. { name: "Tyrnn", species: ["dragon"], tags: ["anthro"] },
  5756. {
  5757. front: {
  5758. height: math.unit(6, "feet"),
  5759. weight: math.unit(300, "lbs"),
  5760. name: "Front",
  5761. image: {
  5762. source: "./media/characters/tyrnn/front.svg"
  5763. }
  5764. }
  5765. },
  5766. [
  5767. {
  5768. name: "Main Height",
  5769. height: math.unit(355, "feet"),
  5770. default: true
  5771. },
  5772. {
  5773. name: "Fave. Height",
  5774. height: math.unit(2400, "feet")
  5775. }
  5776. ]
  5777. ))
  5778. characterMakers.push(() => makeCharacter(
  5779. { name: "Apple", species: ["elephant"], tags: ["anthro"] },
  5780. {
  5781. front: {
  5782. height: math.unit(6, "feet"),
  5783. weight: math.unit(300, "lbs"),
  5784. name: "Front",
  5785. image: {
  5786. source: "./media/characters/appledectomy/front.svg"
  5787. }
  5788. }
  5789. },
  5790. [
  5791. {
  5792. name: "Macro",
  5793. height: math.unit(2500, "feet")
  5794. },
  5795. {
  5796. name: "Megamacro",
  5797. height: math.unit(50, "miles"),
  5798. default: true
  5799. },
  5800. {
  5801. name: "Gigamacro",
  5802. height: math.unit(5000, "miles")
  5803. },
  5804. {
  5805. name: "Teramacro",
  5806. height: math.unit(250000, "miles")
  5807. },
  5808. ]
  5809. ))
  5810. characterMakers.push(() => makeCharacter(
  5811. { name: "Vulpes", species: ["fox"], tags: ["anthro"] },
  5812. {
  5813. front: {
  5814. height: math.unit(6, "feet"),
  5815. weight: math.unit(200, "lbs"),
  5816. name: "Front",
  5817. image: {
  5818. source: "./media/characters/vulpes/front.svg",
  5819. extra: 573 / 543,
  5820. bottom: 0.033
  5821. }
  5822. },
  5823. side: {
  5824. height: math.unit(6, "feet"),
  5825. weight: math.unit(200, "lbs"),
  5826. name: "Side",
  5827. image: {
  5828. source: "./media/characters/vulpes/side.svg",
  5829. extra: 577 / 549,
  5830. bottom: 11 / 588
  5831. }
  5832. },
  5833. back: {
  5834. height: math.unit(6, "feet"),
  5835. weight: math.unit(200, "lbs"),
  5836. name: "Back",
  5837. image: {
  5838. source: "./media/characters/vulpes/back.svg",
  5839. extra: 573 / 549,
  5840. bottom: 20 / 593
  5841. }
  5842. },
  5843. feet: {
  5844. height: math.unit(1.276, "feet"),
  5845. name: "Feet",
  5846. image: {
  5847. source: "./media/characters/vulpes/feet.svg"
  5848. }
  5849. },
  5850. maw: {
  5851. height: math.unit(1.18, "feet"),
  5852. name: "Maw",
  5853. image: {
  5854. source: "./media/characters/vulpes/maw.svg"
  5855. }
  5856. },
  5857. },
  5858. [
  5859. {
  5860. name: "Micro",
  5861. height: math.unit(2, "inches")
  5862. },
  5863. {
  5864. name: "Normal",
  5865. height: math.unit(6.3, "feet")
  5866. },
  5867. {
  5868. name: "Macro",
  5869. height: math.unit(850, "feet")
  5870. },
  5871. {
  5872. name: "Megamacro",
  5873. height: math.unit(7500, "feet"),
  5874. default: true
  5875. },
  5876. {
  5877. name: "Gigamacro",
  5878. height: math.unit(570000, "miles")
  5879. }
  5880. ]
  5881. ))
  5882. characterMakers.push(() => makeCharacter(
  5883. { name: "Rain Fallen", species: ["wolf", "demon"], tags: ["anthro", "feral"] },
  5884. {
  5885. front: {
  5886. height: math.unit(6, "feet"),
  5887. weight: math.unit(210, "lbs"),
  5888. name: "Front",
  5889. image: {
  5890. source: "./media/characters/rain-fallen/front.svg"
  5891. }
  5892. },
  5893. side: {
  5894. height: math.unit(6, "feet"),
  5895. weight: math.unit(210, "lbs"),
  5896. name: "Side",
  5897. image: {
  5898. source: "./media/characters/rain-fallen/side.svg"
  5899. }
  5900. },
  5901. back: {
  5902. height: math.unit(6, "feet"),
  5903. weight: math.unit(210, "lbs"),
  5904. name: "Back",
  5905. image: {
  5906. source: "./media/characters/rain-fallen/back.svg"
  5907. }
  5908. },
  5909. feral: {
  5910. height: math.unit(9, "feet"),
  5911. weight: math.unit(700, "lbs"),
  5912. name: "Feral",
  5913. image: {
  5914. source: "./media/characters/rain-fallen/feral.svg"
  5915. }
  5916. },
  5917. },
  5918. [
  5919. {
  5920. name: "Meddling with Mortals",
  5921. height: math.unit(8 + 8/12, "feet")
  5922. },
  5923. {
  5924. name: "Normal",
  5925. height: math.unit(5, "meter")
  5926. },
  5927. {
  5928. name: "Macro",
  5929. height: math.unit(150, "meter"),
  5930. default: true
  5931. },
  5932. {
  5933. name: "Megamacro",
  5934. height: math.unit(278e6, "meter")
  5935. },
  5936. {
  5937. name: "Gigamacro",
  5938. height: math.unit(2e9, "meter")
  5939. },
  5940. {
  5941. name: "Teramacro",
  5942. height: math.unit(8e12, "meter")
  5943. },
  5944. {
  5945. name: "Devourer",
  5946. height: math.unit(14, "zettameters")
  5947. },
  5948. {
  5949. name: "Scarlet King",
  5950. height: math.unit(18, "yottameters")
  5951. },
  5952. {
  5953. name: "Void",
  5954. height: math.unit(1e88, "yottameters")
  5955. }
  5956. ]
  5957. ))
  5958. characterMakers.push(() => makeCharacter(
  5959. { name: "Zaakira", species: ["wolf"], tags: ["anthro"] },
  5960. {
  5961. standing: {
  5962. height: math.unit(6, "feet"),
  5963. weight: math.unit(180, "lbs"),
  5964. name: "Standing",
  5965. image: {
  5966. source: "./media/characters/zaakira/standing.svg",
  5967. extra: 1599/1504,
  5968. bottom: 39/1638
  5969. }
  5970. },
  5971. laying: {
  5972. height: math.unit(3.3, "feet"),
  5973. weight: math.unit(180, "lbs"),
  5974. name: "Laying",
  5975. image: {
  5976. source: "./media/characters/zaakira/laying.svg"
  5977. }
  5978. },
  5979. },
  5980. [
  5981. {
  5982. name: "Normal",
  5983. height: math.unit(12, "feet")
  5984. },
  5985. {
  5986. name: "Macro",
  5987. height: math.unit(279, "feet"),
  5988. default: true
  5989. }
  5990. ]
  5991. ))
  5992. characterMakers.push(() => makeCharacter(
  5993. { name: "Sigvald", species: ["dragon"], tags: ["anthro"] },
  5994. {
  5995. femSfw: {
  5996. height: math.unit(8, "feet"),
  5997. weight: math.unit(350, "lb"),
  5998. name: "Fem",
  5999. image: {
  6000. source: "./media/characters/sigvald/fem-sfw.svg",
  6001. extra: 182 / 164,
  6002. bottom: 8.7 / 190.5
  6003. }
  6004. },
  6005. femNsfw: {
  6006. height: math.unit(8, "feet"),
  6007. weight: math.unit(350, "lb"),
  6008. name: "Fem (NSFW)",
  6009. image: {
  6010. source: "./media/characters/sigvald/fem-nsfw.svg",
  6011. extra: 182 / 164,
  6012. bottom: 8.7 / 190.5
  6013. }
  6014. },
  6015. maleNsfw: {
  6016. height: math.unit(8, "feet"),
  6017. weight: math.unit(350, "lb"),
  6018. name: "Male (NSFW)",
  6019. image: {
  6020. source: "./media/characters/sigvald/male-nsfw.svg",
  6021. extra: 182 / 164,
  6022. bottom: 8.7 / 190.5
  6023. }
  6024. },
  6025. hermNsfw: {
  6026. height: math.unit(8, "feet"),
  6027. weight: math.unit(350, "lb"),
  6028. name: "Herm (NSFW)",
  6029. image: {
  6030. source: "./media/characters/sigvald/herm-nsfw.svg",
  6031. extra: 182 / 164,
  6032. bottom: 8.7 / 190.5
  6033. }
  6034. },
  6035. dick: {
  6036. height: math.unit(2.36, "feet"),
  6037. name: "Dick",
  6038. image: {
  6039. source: "./media/characters/sigvald/dick.svg"
  6040. }
  6041. },
  6042. eye: {
  6043. height: math.unit(0.31, "feet"),
  6044. name: "Eye",
  6045. image: {
  6046. source: "./media/characters/sigvald/eye.svg"
  6047. }
  6048. },
  6049. mouth: {
  6050. height: math.unit(0.92, "feet"),
  6051. name: "Mouth",
  6052. image: {
  6053. source: "./media/characters/sigvald/mouth.svg"
  6054. }
  6055. },
  6056. paws: {
  6057. height: math.unit(2.2, "feet"),
  6058. name: "Paws",
  6059. image: {
  6060. source: "./media/characters/sigvald/paws.svg"
  6061. }
  6062. }
  6063. },
  6064. [
  6065. {
  6066. name: "Normal",
  6067. height: math.unit(8, "feet")
  6068. },
  6069. {
  6070. name: "Large",
  6071. height: math.unit(12, "feet")
  6072. },
  6073. {
  6074. name: "Larger",
  6075. height: math.unit(20, "feet")
  6076. },
  6077. {
  6078. name: "Macro",
  6079. height: math.unit(150, "feet")
  6080. },
  6081. {
  6082. name: "Macro+",
  6083. height: math.unit(200, "feet"),
  6084. default: true
  6085. },
  6086. ]
  6087. ))
  6088. characterMakers.push(() => makeCharacter(
  6089. { name: "Scott", species: ["fox"], tags: ["taur"] },
  6090. {
  6091. side: {
  6092. height: math.unit(12, "feet"),
  6093. weight: math.unit(2000, "kg"),
  6094. name: "Side",
  6095. image: {
  6096. source: "./media/characters/scott/side.svg",
  6097. extra: 754 / 724,
  6098. bottom: 0.069
  6099. }
  6100. },
  6101. upright: {
  6102. height: math.unit(12, "feet"),
  6103. weight: math.unit(2000, "kg"),
  6104. name: "Upright",
  6105. image: {
  6106. source: "./media/characters/scott/upright.svg",
  6107. extra: 3881 / 3722,
  6108. bottom: 0.05
  6109. }
  6110. },
  6111. },
  6112. [
  6113. {
  6114. name: "Normal",
  6115. height: math.unit(12, "feet"),
  6116. default: true
  6117. },
  6118. ]
  6119. ))
  6120. characterMakers.push(() => makeCharacter(
  6121. { name: "Tobias", species: ["dragon"], tags: ["feral"] },
  6122. {
  6123. side: {
  6124. height: math.unit(8, "meters"),
  6125. weight: math.unit(84755, "lbs"),
  6126. name: "Side",
  6127. image: {
  6128. source: "./media/characters/tobias/side.svg",
  6129. extra: 1474 / 1096,
  6130. bottom: 38.9 / 1513.1235
  6131. }
  6132. },
  6133. maw: {
  6134. height: math.unit(2.3, "meters"),
  6135. name: "Maw",
  6136. image: {
  6137. source: "./media/characters/tobias/maw.svg"
  6138. }
  6139. },
  6140. burp: {
  6141. height: math.unit(2.85, "meters"),
  6142. name: "Burp",
  6143. image: {
  6144. source: "./media/characters/tobias/burp.svg"
  6145. }
  6146. },
  6147. },
  6148. [
  6149. {
  6150. name: "Normal",
  6151. height: math.unit(8, "meters"),
  6152. default: true
  6153. },
  6154. ]
  6155. ))
  6156. characterMakers.push(() => makeCharacter(
  6157. { name: "Kieran", species: ["wolf"], tags: ["taur"] },
  6158. {
  6159. front: {
  6160. height: math.unit(5.5, "feet"),
  6161. weight: math.unit(400, "lbs"),
  6162. name: "Front",
  6163. image: {
  6164. source: "./media/characters/kieran/front.svg",
  6165. extra: 2694 / 2364,
  6166. bottom: 217 / 2908
  6167. }
  6168. },
  6169. side: {
  6170. height: math.unit(5.5, "feet"),
  6171. weight: math.unit(400, "lbs"),
  6172. name: "Side",
  6173. image: {
  6174. source: "./media/characters/kieran/side.svg",
  6175. extra: 875 / 777,
  6176. bottom: 84.6 / 959
  6177. }
  6178. },
  6179. },
  6180. [
  6181. {
  6182. name: "Normal",
  6183. height: math.unit(5.5, "feet"),
  6184. default: true
  6185. },
  6186. ]
  6187. ))
  6188. characterMakers.push(() => makeCharacter(
  6189. { name: "Sanya", species: ["eagle"], tags: ["anthro"] },
  6190. {
  6191. side: {
  6192. height: math.unit(2, "meters"),
  6193. weight: math.unit(70, "kg"),
  6194. name: "Side",
  6195. image: {
  6196. source: "./media/characters/sanya/side.svg",
  6197. bottom: 0.02,
  6198. extra: 1.02
  6199. }
  6200. },
  6201. },
  6202. [
  6203. {
  6204. name: "Small",
  6205. height: math.unit(2, "meters")
  6206. },
  6207. {
  6208. name: "Normal",
  6209. height: math.unit(3, "meters")
  6210. },
  6211. {
  6212. name: "Macro",
  6213. height: math.unit(16, "meters"),
  6214. default: true
  6215. },
  6216. ]
  6217. ))
  6218. characterMakers.push(() => makeCharacter(
  6219. { name: "Miranda", species: ["dragon"], tags: ["anthro"] },
  6220. {
  6221. front: {
  6222. height: math.unit(2, "meters"),
  6223. weight: math.unit(120, "kg"),
  6224. name: "Front",
  6225. image: {
  6226. source: "./media/characters/miranda/front.svg",
  6227. extra: 195 / 185,
  6228. bottom: 10.9 / 206.5
  6229. }
  6230. },
  6231. back: {
  6232. height: math.unit(2, "meters"),
  6233. weight: math.unit(120, "kg"),
  6234. name: "Back",
  6235. image: {
  6236. source: "./media/characters/miranda/back.svg",
  6237. extra: 201 / 193,
  6238. bottom: 2.3 / 203.7
  6239. }
  6240. },
  6241. },
  6242. [
  6243. {
  6244. name: "Normal",
  6245. height: math.unit(10, "feet"),
  6246. default: true
  6247. }
  6248. ]
  6249. ))
  6250. characterMakers.push(() => makeCharacter(
  6251. { name: "James", species: ["deer"], tags: ["anthro"] },
  6252. {
  6253. side: {
  6254. height: math.unit(2, "meters"),
  6255. weight: math.unit(100, "kg"),
  6256. name: "Front",
  6257. image: {
  6258. source: "./media/characters/james/front.svg",
  6259. extra: 10 / 8.5
  6260. }
  6261. },
  6262. },
  6263. [
  6264. {
  6265. name: "Normal",
  6266. height: math.unit(8.5, "feet"),
  6267. default: true
  6268. }
  6269. ]
  6270. ))
  6271. characterMakers.push(() => makeCharacter(
  6272. { name: "Heather", species: ["cow"], tags: ["taur"] },
  6273. {
  6274. side: {
  6275. height: math.unit(9.5, "feet"),
  6276. weight: math.unit(2500, "lbs"),
  6277. name: "Side",
  6278. image: {
  6279. source: "./media/characters/heather/side.svg"
  6280. }
  6281. },
  6282. },
  6283. [
  6284. {
  6285. name: "Normal",
  6286. height: math.unit(9.5, "feet"),
  6287. default: true
  6288. }
  6289. ]
  6290. ))
  6291. characterMakers.push(() => makeCharacter(
  6292. { name: "Lukas", species: ["dog"], tags: ["feral"] },
  6293. {
  6294. side: {
  6295. height: math.unit(6.5, "feet"),
  6296. weight: math.unit(400, "lbs"),
  6297. name: "Side",
  6298. image: {
  6299. source: "./media/characters/lukas/side.svg",
  6300. extra: 7.25 / 6.5
  6301. }
  6302. },
  6303. },
  6304. [
  6305. {
  6306. name: "Normal",
  6307. height: math.unit(6.5, "feet"),
  6308. default: true
  6309. }
  6310. ]
  6311. ))
  6312. characterMakers.push(() => makeCharacter(
  6313. { name: "Louise", species: ["crocodile"], tags: ["feral"] },
  6314. {
  6315. side: {
  6316. height: math.unit(5, "feet"),
  6317. weight: math.unit(3000, "lbs"),
  6318. name: "Side",
  6319. image: {
  6320. source: "./media/characters/louise/side.svg"
  6321. }
  6322. },
  6323. },
  6324. [
  6325. {
  6326. name: "Normal",
  6327. height: math.unit(5, "feet"),
  6328. default: true
  6329. }
  6330. ]
  6331. ))
  6332. characterMakers.push(() => makeCharacter(
  6333. { name: "Ramona", species: ["borzoi"], tags: ["anthro"] },
  6334. {
  6335. side: {
  6336. height: math.unit(6, "feet"),
  6337. weight: math.unit(150, "lbs"),
  6338. name: "Side",
  6339. image: {
  6340. source: "./media/characters/ramona/side.svg",
  6341. extra: 871/854,
  6342. bottom: 41/912
  6343. }
  6344. },
  6345. },
  6346. [
  6347. {
  6348. name: "Normal",
  6349. height: math.unit(6 + 4/12, "feet")
  6350. },
  6351. {
  6352. name: "Minimacro",
  6353. height: math.unit(5.3, "meters"),
  6354. default: true
  6355. },
  6356. {
  6357. name: "Macro",
  6358. height: math.unit(20, "stories")
  6359. },
  6360. {
  6361. name: "Macro+",
  6362. height: math.unit(50, "stories")
  6363. },
  6364. ]
  6365. ))
  6366. characterMakers.push(() => makeCharacter(
  6367. { name: "Deerpuff", species: ["deer"], tags: ["anthro"] },
  6368. {
  6369. standing: {
  6370. height: math.unit(5.75, "feet"),
  6371. weight: math.unit(160, "lbs"),
  6372. name: "Standing",
  6373. image: {
  6374. source: "./media/characters/deerpuff/standing.svg",
  6375. extra: 682 / 624
  6376. }
  6377. },
  6378. sitting: {
  6379. height: math.unit(5.75 / 1.79, "feet"),
  6380. weight: math.unit(160, "lbs"),
  6381. name: "Sitting",
  6382. image: {
  6383. source: "./media/characters/deerpuff/sitting.svg",
  6384. bottom: 44 / 400,
  6385. extra: 1
  6386. }
  6387. },
  6388. taurLaying: {
  6389. height: math.unit(6, "feet"),
  6390. weight: math.unit(400, "lbs"),
  6391. name: "Taur (Laying)",
  6392. image: {
  6393. source: "./media/characters/deerpuff/taur-laying.svg"
  6394. }
  6395. },
  6396. },
  6397. [
  6398. {
  6399. name: "Puffball",
  6400. height: math.unit(6, "inches")
  6401. },
  6402. {
  6403. name: "Normalpuff",
  6404. height: math.unit(5.75, "feet")
  6405. },
  6406. {
  6407. name: "Macropuff",
  6408. height: math.unit(1500, "feet"),
  6409. default: true
  6410. },
  6411. {
  6412. name: "Megapuff",
  6413. height: math.unit(500, "miles")
  6414. },
  6415. {
  6416. name: "Gigapuff",
  6417. height: math.unit(250000, "miles")
  6418. },
  6419. {
  6420. name: "Omegapuff",
  6421. height: math.unit(1000, "lightyears")
  6422. },
  6423. ]
  6424. ))
  6425. characterMakers.push(() => makeCharacter(
  6426. { name: "Vivian", species: ["wolf"], tags: ["anthro"] },
  6427. {
  6428. stomping: {
  6429. height: math.unit(6, "feet"),
  6430. weight: math.unit(170, "lbs"),
  6431. name: "Stomping",
  6432. image: {
  6433. source: "./media/characters/vivian/stomping.svg"
  6434. }
  6435. },
  6436. sitting: {
  6437. height: math.unit(6 / 1.75, "feet"),
  6438. weight: math.unit(170, "lbs"),
  6439. name: "Sitting",
  6440. image: {
  6441. source: "./media/characters/vivian/sitting.svg",
  6442. bottom: 1 / 6.4,
  6443. extra: 1,
  6444. }
  6445. },
  6446. },
  6447. [
  6448. {
  6449. name: "Normal",
  6450. height: math.unit(7, "feet"),
  6451. default: true
  6452. },
  6453. {
  6454. name: "Macro",
  6455. height: math.unit(10, "stories")
  6456. },
  6457. {
  6458. name: "Macro+",
  6459. height: math.unit(30, "stories")
  6460. },
  6461. {
  6462. name: "Megamacro",
  6463. height: math.unit(10, "miles")
  6464. },
  6465. {
  6466. name: "Megamacro+",
  6467. height: math.unit(2750000, "meters")
  6468. },
  6469. ]
  6470. ))
  6471. characterMakers.push(() => makeCharacter(
  6472. { name: "Prince", species: ["deer"], tags: ["anthro"] },
  6473. {
  6474. front: {
  6475. height: math.unit(6, "feet"),
  6476. weight: math.unit(160, "lbs"),
  6477. name: "Front",
  6478. image: {
  6479. source: "./media/characters/prince/front.svg",
  6480. extra: 1938/1682,
  6481. bottom: 45/1983
  6482. }
  6483. },
  6484. back: {
  6485. height: math.unit(6, "feet"),
  6486. weight: math.unit(160, "lbs"),
  6487. name: "Back",
  6488. image: {
  6489. source: "./media/characters/prince/back.svg",
  6490. extra: 1955/1726,
  6491. bottom: 6/1961
  6492. }
  6493. },
  6494. },
  6495. [
  6496. {
  6497. name: "Normal",
  6498. height: math.unit(7.75, "feet"),
  6499. default: true
  6500. },
  6501. {
  6502. name: "Not cute",
  6503. height: math.unit(17, "feet")
  6504. },
  6505. {
  6506. name: "I said NOT",
  6507. height: math.unit(91, "feet")
  6508. },
  6509. {
  6510. name: "Please stop",
  6511. height: math.unit(560, "feet")
  6512. },
  6513. {
  6514. name: "What have you done",
  6515. height: math.unit(2200, "feet")
  6516. },
  6517. {
  6518. name: "Deer God",
  6519. height: math.unit(3.6, "miles")
  6520. },
  6521. ]
  6522. ))
  6523. characterMakers.push(() => makeCharacter(
  6524. { name: "Psymon", species: ["horned-bush-viper", "cobra"], tags: ["anthro", "feral"] },
  6525. {
  6526. standing: {
  6527. height: math.unit(6, "feet"),
  6528. weight: math.unit(300, "lbs"),
  6529. name: "Standing",
  6530. image: {
  6531. source: "./media/characters/psymon/standing.svg",
  6532. extra: 1888 / 1810,
  6533. bottom: 0.05
  6534. }
  6535. },
  6536. slithering: {
  6537. height: math.unit(6, "feet"),
  6538. weight: math.unit(300, "lbs"),
  6539. name: "Slithering",
  6540. image: {
  6541. source: "./media/characters/psymon/slithering.svg",
  6542. extra: 1330 / 1224
  6543. }
  6544. },
  6545. slitheringAlt: {
  6546. height: math.unit(6, "feet"),
  6547. weight: math.unit(300, "lbs"),
  6548. name: "Slithering (Alt)",
  6549. image: {
  6550. source: "./media/characters/psymon/slithering-alt.svg",
  6551. extra: 1330 / 1224
  6552. }
  6553. },
  6554. },
  6555. [
  6556. {
  6557. name: "Normal",
  6558. height: math.unit(11.25, "feet"),
  6559. default: true
  6560. },
  6561. {
  6562. name: "Large",
  6563. height: math.unit(27, "feet")
  6564. },
  6565. {
  6566. name: "Giant",
  6567. height: math.unit(87, "feet")
  6568. },
  6569. {
  6570. name: "Macro",
  6571. height: math.unit(365, "feet")
  6572. },
  6573. {
  6574. name: "Megamacro",
  6575. height: math.unit(3, "miles")
  6576. },
  6577. {
  6578. name: "World Serpent",
  6579. height: math.unit(8000, "miles")
  6580. },
  6581. ]
  6582. ))
  6583. characterMakers.push(() => makeCharacter(
  6584. { name: "Daimos", species: ["veilhound"], tags: ["anthro"] },
  6585. {
  6586. front: {
  6587. height: math.unit(6, "feet"),
  6588. weight: math.unit(180, "lbs"),
  6589. name: "Front",
  6590. image: {
  6591. source: "./media/characters/daimos/front.svg",
  6592. extra: 4160 / 3897,
  6593. bottom: 0.021
  6594. }
  6595. }
  6596. },
  6597. [
  6598. {
  6599. name: "Normal",
  6600. height: math.unit(8, "feet"),
  6601. default: true
  6602. },
  6603. {
  6604. name: "Big Dog",
  6605. height: math.unit(22, "feet")
  6606. },
  6607. {
  6608. name: "Macro",
  6609. height: math.unit(127, "feet")
  6610. },
  6611. {
  6612. name: "Megamacro",
  6613. height: math.unit(3600, "feet")
  6614. },
  6615. ]
  6616. ))
  6617. characterMakers.push(() => makeCharacter(
  6618. { name: "Blake", species: ["raptor"], tags: ["feral"] },
  6619. {
  6620. side: {
  6621. height: math.unit(6, "feet"),
  6622. weight: math.unit(180, "lbs"),
  6623. name: "Side",
  6624. image: {
  6625. source: "./media/characters/blake/side.svg",
  6626. extra: 1212 / 1120,
  6627. bottom: 0.05
  6628. }
  6629. },
  6630. crouched: {
  6631. height: math.unit(6 * 0.57, "feet"),
  6632. weight: math.unit(180, "lbs"),
  6633. name: "Crouched",
  6634. image: {
  6635. source: "./media/characters/blake/crouched.svg",
  6636. extra: 840 / 587,
  6637. bottom: 0.04
  6638. }
  6639. },
  6640. bent: {
  6641. height: math.unit(6 * 0.75, "feet"),
  6642. weight: math.unit(180, "lbs"),
  6643. name: "Bent",
  6644. image: {
  6645. source: "./media/characters/blake/bent.svg",
  6646. extra: 592 / 544,
  6647. bottom: 0.035
  6648. }
  6649. },
  6650. },
  6651. [
  6652. {
  6653. name: "Normal",
  6654. height: math.unit(8 + 1 / 6, "feet"),
  6655. default: true
  6656. },
  6657. {
  6658. name: "Big Backside",
  6659. height: math.unit(37, "feet")
  6660. },
  6661. {
  6662. name: "Subway Shredder",
  6663. height: math.unit(72, "feet")
  6664. },
  6665. {
  6666. name: "City Carver",
  6667. height: math.unit(1675, "feet")
  6668. },
  6669. {
  6670. name: "Tectonic Tweaker",
  6671. height: math.unit(2300, "miles")
  6672. },
  6673. ]
  6674. ))
  6675. characterMakers.push(() => makeCharacter(
  6676. { name: "Guisetto", species: ["beetle", "moth"], tags: ["anthro"] },
  6677. {
  6678. front: {
  6679. height: math.unit(6, "feet"),
  6680. weight: math.unit(180, "lbs"),
  6681. name: "Front",
  6682. image: {
  6683. source: "./media/characters/guisetto/front.svg",
  6684. extra: 856 / 817,
  6685. bottom: 0.06
  6686. }
  6687. },
  6688. airborne: {
  6689. height: math.unit(6, "feet"),
  6690. weight: math.unit(180, "lbs"),
  6691. name: "Airborne",
  6692. image: {
  6693. source: "./media/characters/guisetto/airborne.svg",
  6694. extra: 584 / 525
  6695. }
  6696. },
  6697. },
  6698. [
  6699. {
  6700. name: "Normal",
  6701. height: math.unit(10 + 11 / 12, "feet"),
  6702. default: true
  6703. },
  6704. {
  6705. name: "Large",
  6706. height: math.unit(35, "feet")
  6707. },
  6708. {
  6709. name: "Macro",
  6710. height: math.unit(475, "feet")
  6711. },
  6712. ]
  6713. ))
  6714. characterMakers.push(() => makeCharacter(
  6715. { name: "Luxor", species: ["moth"], tags: ["anthro"] },
  6716. {
  6717. front: {
  6718. height: math.unit(6, "feet"),
  6719. weight: math.unit(180, "lbs"),
  6720. name: "Front",
  6721. image: {
  6722. source: "./media/characters/luxor/front.svg",
  6723. extra: 2940 / 2152
  6724. }
  6725. },
  6726. back: {
  6727. height: math.unit(6, "feet"),
  6728. weight: math.unit(180, "lbs"),
  6729. name: "Back",
  6730. image: {
  6731. source: "./media/characters/luxor/back.svg",
  6732. extra: 1083 / 960
  6733. }
  6734. },
  6735. },
  6736. [
  6737. {
  6738. name: "Normal",
  6739. height: math.unit(5 + 5 / 6, "feet"),
  6740. default: true
  6741. },
  6742. {
  6743. name: "Lamp",
  6744. height: math.unit(50, "feet")
  6745. },
  6746. {
  6747. name: "Lämp",
  6748. height: math.unit(300, "feet")
  6749. },
  6750. {
  6751. name: "The sun is a lamp",
  6752. height: math.unit(250000, "miles")
  6753. },
  6754. ]
  6755. ))
  6756. characterMakers.push(() => makeCharacter(
  6757. { name: "Huoyan", species: ["eastern-dragon"], tags: ["feral"] },
  6758. {
  6759. front: {
  6760. height: math.unit(6, "feet"),
  6761. weight: math.unit(50, "lbs"),
  6762. name: "Front",
  6763. image: {
  6764. source: "./media/characters/huoyan/front.svg"
  6765. }
  6766. },
  6767. side: {
  6768. height: math.unit(6, "feet"),
  6769. weight: math.unit(180, "lbs"),
  6770. name: "Side",
  6771. image: {
  6772. source: "./media/characters/huoyan/side.svg"
  6773. }
  6774. },
  6775. },
  6776. [
  6777. {
  6778. name: "Chef",
  6779. height: math.unit(9, "feet")
  6780. },
  6781. {
  6782. name: "Normal",
  6783. height: math.unit(65, "feet"),
  6784. default: true
  6785. },
  6786. {
  6787. name: "Macro",
  6788. height: math.unit(780, "feet")
  6789. },
  6790. {
  6791. name: "Flaming Mountain",
  6792. height: math.unit(4.8, "miles")
  6793. },
  6794. {
  6795. name: "Celestial",
  6796. height: math.unit(765000, "miles")
  6797. },
  6798. ]
  6799. ))
  6800. characterMakers.push(() => makeCharacter(
  6801. { name: "Tails", species: ["coyote"], tags: ["anthro"] },
  6802. {
  6803. front: {
  6804. height: math.unit(5 + 3 / 4, "feet"),
  6805. weight: math.unit(120, "lbs"),
  6806. name: "Front",
  6807. image: {
  6808. source: "./media/characters/tails/front.svg"
  6809. }
  6810. }
  6811. },
  6812. [
  6813. {
  6814. name: "Normal",
  6815. height: math.unit(5 + 3 / 4, "feet"),
  6816. default: true
  6817. }
  6818. ]
  6819. ))
  6820. characterMakers.push(() => makeCharacter(
  6821. { name: "Rainy", species: ["jaguar"], tags: ["anthro"] },
  6822. {
  6823. front: {
  6824. height: math.unit(4, "feet"),
  6825. weight: math.unit(50, "lbs"),
  6826. name: "Front",
  6827. image: {
  6828. source: "./media/characters/rainy/front.svg"
  6829. }
  6830. }
  6831. },
  6832. [
  6833. {
  6834. name: "Macro",
  6835. height: math.unit(800, "feet"),
  6836. default: true
  6837. }
  6838. ]
  6839. ))
  6840. characterMakers.push(() => makeCharacter(
  6841. { name: "Rainier", species: ["snow-leopard"], tags: ["anthro"] },
  6842. {
  6843. front: {
  6844. height: math.unit(6, "feet"),
  6845. weight: math.unit(150, "lbs"),
  6846. name: "Front",
  6847. image: {
  6848. source: "./media/characters/rainier/front.svg"
  6849. }
  6850. }
  6851. },
  6852. [
  6853. {
  6854. name: "Micro",
  6855. height: math.unit(2, "mm"),
  6856. default: true
  6857. }
  6858. ]
  6859. ))
  6860. characterMakers.push(() => makeCharacter(
  6861. { name: "Andy Renard", species: ["fox"], tags: ["anthro"] },
  6862. {
  6863. front: {
  6864. height: math.unit(8 + 4/12, "feet"),
  6865. weight: math.unit(450, "kilograms"),
  6866. name: "Front",
  6867. image: {
  6868. source: "./media/characters/andy-renard/front.svg",
  6869. extra: 862/809,
  6870. bottom: 85/947
  6871. },
  6872. extraAttributes: {
  6873. "pawSize": {
  6874. name: "Paw Size",
  6875. power: 2,
  6876. type: "area",
  6877. base: math.unit(0.45*0.3, "meters^2")
  6878. },
  6879. "handSize": {
  6880. name: "Hand Size",
  6881. power: 2,
  6882. type: "area",
  6883. base: math.unit(0.4 * 0.3, "meters^2")
  6884. },
  6885. "cockSize": {
  6886. name: "Cock Length",
  6887. power: 1,
  6888. type: "length",
  6889. base: math.unit(0.75, "meters")
  6890. },
  6891. "ballDiameter": {
  6892. name: "Ball Diameter",
  6893. power: 1,
  6894. type: "length",
  6895. base: math.unit(0.3, "meters")
  6896. },
  6897. "ballVolume": {
  6898. name: "Ball Volume",
  6899. power: 3,
  6900. type: "volume",
  6901. base: math.unit(0.01413716694, "meters^3")
  6902. },
  6903. }
  6904. },
  6905. back: {
  6906. height: math.unit(8 + 4/12, "feet"),
  6907. weight: math.unit(450, "kilograms"),
  6908. name: "Back",
  6909. image: {
  6910. source: "./media/characters/andy-renard/back.svg",
  6911. extra: 1112/1033,
  6912. bottom: 64/1176
  6913. },
  6914. extraAttributes: {
  6915. "pawSize": {
  6916. name: "Paw Size",
  6917. power: 2,
  6918. type: "area",
  6919. base: math.unit(0.45*0.3, "meters^2")
  6920. },
  6921. "handSize": {
  6922. name: "Hand Size",
  6923. power: 2,
  6924. type: "area",
  6925. base: math.unit(0.4 * 0.3, "meters^2")
  6926. },
  6927. "cockSize": {
  6928. name: "Cock Length",
  6929. power: 1,
  6930. type: "length",
  6931. base: math.unit(0.75, "meters")
  6932. },
  6933. "ballDiameter": {
  6934. name: "Ball Diameter",
  6935. power: 1,
  6936. type: "length",
  6937. base: math.unit(0.3, "meters")
  6938. },
  6939. "ballVolume": {
  6940. name: "Ball Volume",
  6941. power: 3,
  6942. type: "volume",
  6943. base: math.unit(0.01413716694, "meters^3")
  6944. },
  6945. }
  6946. },
  6947. },
  6948. [
  6949. {
  6950. name: "Tall",
  6951. height: math.unit(6 + 8/12, "feet")
  6952. },
  6953. {
  6954. name: "Very Tall",
  6955. height: math.unit(8 + 4/12, "feet")
  6956. },
  6957. {
  6958. name: "Mini Macro",
  6959. height: math.unit(15, "feet"),
  6960. default: true
  6961. },
  6962. {
  6963. name: "Giant",
  6964. height: math.unit(50, "feet")
  6965. },
  6966. {
  6967. name: "Nice",
  6968. height: math.unit(69, "feet")
  6969. },
  6970. {
  6971. name: "Macro",
  6972. height: math.unit(100, "feet")
  6973. },
  6974. {
  6975. name: "Enormous",
  6976. height: math.unit(500, "feet")
  6977. },
  6978. {
  6979. name: "Gargantuan",
  6980. height: math.unit(1000, "feet")
  6981. },
  6982. {
  6983. name: "Mega",
  6984. height: math.unit(1, "mile")
  6985. },
  6986. {
  6987. name: "Giga",
  6988. height: math.unit(50, "miles")
  6989. },
  6990. {
  6991. name: "Tera",
  6992. height: math.unit(1000, "miles")
  6993. },
  6994. {
  6995. name: "Cosmic",
  6996. height: math.unit(1.5, "galaxies")
  6997. },
  6998. {
  6999. name: "God",
  7000. height: math.unit(1.5, "universes")
  7001. },
  7002. {
  7003. name: "Chief Execute God",
  7004. height: math.unit(1.5, "multiverses")
  7005. },
  7006. ]
  7007. ))
  7008. characterMakers.push(() => makeCharacter(
  7009. { name: "Cimmaron", species: ["horse"], tags: ["anthro"] },
  7010. {
  7011. front: {
  7012. height: math.unit(6, "feet"),
  7013. weight: math.unit(210, "lbs"),
  7014. name: "Front",
  7015. image: {
  7016. source: "./media/characters/cimmaron/front-sfw.svg",
  7017. extra: 701 / 676,
  7018. bottom: 0.046
  7019. }
  7020. },
  7021. back: {
  7022. height: math.unit(6, "feet"),
  7023. weight: math.unit(210, "lbs"),
  7024. name: "Back",
  7025. image: {
  7026. source: "./media/characters/cimmaron/back-sfw.svg",
  7027. extra: 701 / 676,
  7028. bottom: 0.046
  7029. }
  7030. },
  7031. frontNsfw: {
  7032. height: math.unit(6, "feet"),
  7033. weight: math.unit(210, "lbs"),
  7034. name: "Front (NSFW)",
  7035. image: {
  7036. source: "./media/characters/cimmaron/front-nsfw.svg",
  7037. extra: 701 / 676,
  7038. bottom: 0.046
  7039. }
  7040. },
  7041. backNsfw: {
  7042. height: math.unit(6, "feet"),
  7043. weight: math.unit(210, "lbs"),
  7044. name: "Back (NSFW)",
  7045. image: {
  7046. source: "./media/characters/cimmaron/back-nsfw.svg",
  7047. extra: 701 / 676,
  7048. bottom: 0.046
  7049. }
  7050. },
  7051. dick: {
  7052. height: math.unit(1.714, "feet"),
  7053. name: "Dick",
  7054. image: {
  7055. source: "./media/characters/cimmaron/dick.svg"
  7056. }
  7057. },
  7058. },
  7059. [
  7060. {
  7061. name: "Normal",
  7062. height: math.unit(6, "feet"),
  7063. default: true
  7064. },
  7065. {
  7066. name: "Macro Mayor",
  7067. height: math.unit(350, "meters")
  7068. },
  7069. ]
  7070. ))
  7071. characterMakers.push(() => makeCharacter(
  7072. { name: "Akari Kaen", species: ["sergal"], tags: ["anthro"] },
  7073. {
  7074. front: {
  7075. height: math.unit(6, "feet"),
  7076. weight: math.unit(200, "lbs"),
  7077. name: "Front",
  7078. image: {
  7079. source: "./media/characters/akari/front.svg",
  7080. extra: 962 / 901,
  7081. bottom: 0.04
  7082. }
  7083. }
  7084. },
  7085. [
  7086. {
  7087. name: "Micro",
  7088. height: math.unit(5, "inches"),
  7089. default: true
  7090. },
  7091. {
  7092. name: "Normal",
  7093. height: math.unit(7, "feet")
  7094. },
  7095. ]
  7096. ))
  7097. characterMakers.push(() => makeCharacter(
  7098. { name: "Cynosura", species: ["gryphon"], tags: ["anthro"] },
  7099. {
  7100. front: {
  7101. height: math.unit(6, "feet"),
  7102. weight: math.unit(140, "lbs"),
  7103. name: "Front",
  7104. image: {
  7105. source: "./media/characters/cynosura/front.svg",
  7106. extra: 437/410,
  7107. bottom: 9/446
  7108. }
  7109. },
  7110. back: {
  7111. height: math.unit(6, "feet"),
  7112. weight: math.unit(140, "lbs"),
  7113. name: "Back",
  7114. image: {
  7115. source: "./media/characters/cynosura/back.svg",
  7116. extra: 1304/1160,
  7117. bottom: 71/1375
  7118. }
  7119. },
  7120. },
  7121. [
  7122. {
  7123. name: "Micro",
  7124. height: math.unit(4, "inches")
  7125. },
  7126. {
  7127. name: "Normal",
  7128. height: math.unit(5.75, "feet"),
  7129. default: true
  7130. },
  7131. {
  7132. name: "Tall",
  7133. height: math.unit(10, "feet")
  7134. },
  7135. {
  7136. name: "Big",
  7137. height: math.unit(20, "feet")
  7138. },
  7139. {
  7140. name: "Macro",
  7141. height: math.unit(50, "feet")
  7142. },
  7143. ]
  7144. ))
  7145. characterMakers.push(() => makeCharacter(
  7146. { name: "Gin", species: ["dragon"], tags: ["anthro"] },
  7147. {
  7148. front: {
  7149. height: math.unit(13 + 2/12, "feet"),
  7150. weight: math.unit(800, "kg"),
  7151. name: "Front",
  7152. image: {
  7153. source: "./media/characters/gin/front.svg",
  7154. extra: 1312/1191,
  7155. bottom: 45/1357
  7156. }
  7157. },
  7158. mouth: {
  7159. height: math.unit(2.39 * 1.8, "feet"),
  7160. name: "Mouth",
  7161. image: {
  7162. source: "./media/characters/gin/mouth.svg"
  7163. }
  7164. },
  7165. hand: {
  7166. height: math.unit(1.57 * 2.19, "feet"),
  7167. name: "Hand",
  7168. image: {
  7169. source: "./media/characters/gin/hand.svg"
  7170. }
  7171. },
  7172. foot: {
  7173. height: math.unit(6 / 4.25 * 2.19, "feet"),
  7174. name: "Foot",
  7175. image: {
  7176. source: "./media/characters/gin/foot.svg"
  7177. }
  7178. },
  7179. sole: {
  7180. height: math.unit(6 / 4.40 * 2.19, "feet"),
  7181. name: "Sole",
  7182. image: {
  7183. source: "./media/characters/gin/sole.svg"
  7184. }
  7185. },
  7186. },
  7187. [
  7188. {
  7189. name: "Very Small",
  7190. height: math.unit(13 + 2 / 12, "feet")
  7191. },
  7192. {
  7193. name: "Micro",
  7194. height: math.unit(600, "miles")
  7195. },
  7196. {
  7197. name: "Regular",
  7198. height: math.unit(20, "earths"),
  7199. default: true
  7200. },
  7201. {
  7202. name: "Macro",
  7203. height: math.unit(2.2, "solarradii")
  7204. },
  7205. {
  7206. name: "Teramacro",
  7207. height: math.unit(1.2, "galaxies")
  7208. },
  7209. {
  7210. name: "Omegamacro",
  7211. height: math.unit(200, "universes")
  7212. },
  7213. ]
  7214. ))
  7215. characterMakers.push(() => makeCharacter(
  7216. { name: "Guy", species: ["bat"], tags: ["anthro"] },
  7217. {
  7218. front: {
  7219. height: math.unit(6 + 1 / 6, "feet"),
  7220. weight: math.unit(178, "lbs"),
  7221. name: "Front",
  7222. image: {
  7223. source: "./media/characters/guy/front.svg"
  7224. }
  7225. }
  7226. },
  7227. [
  7228. {
  7229. name: "Normal",
  7230. height: math.unit(6 + 1 / 6, "feet"),
  7231. default: true
  7232. },
  7233. {
  7234. name: "Large",
  7235. height: math.unit(25 + 7 / 12, "feet")
  7236. },
  7237. {
  7238. name: "Macro",
  7239. height: math.unit(60 + 9 / 12, "feet")
  7240. },
  7241. {
  7242. name: "Macro+",
  7243. height: math.unit(246, "feet")
  7244. },
  7245. {
  7246. name: "Macro++",
  7247. height: math.unit(878, "feet")
  7248. }
  7249. ]
  7250. ))
  7251. characterMakers.push(() => makeCharacter(
  7252. { name: "Tiberius", species: ["jackal", "robot"], tags: ["anthro"] },
  7253. {
  7254. front: {
  7255. height: math.unit(9, "feet"),
  7256. weight: math.unit(800, "lbs"),
  7257. name: "Front",
  7258. image: {
  7259. source: "./media/characters/tiberius/front.svg",
  7260. extra: 2295 / 2071
  7261. }
  7262. },
  7263. back: {
  7264. height: math.unit(9, "feet"),
  7265. weight: math.unit(800, "lbs"),
  7266. name: "Back",
  7267. image: {
  7268. source: "./media/characters/tiberius/back.svg",
  7269. extra: 2373 / 2160
  7270. }
  7271. },
  7272. },
  7273. [
  7274. {
  7275. name: "Normal",
  7276. height: math.unit(9, "feet"),
  7277. default: true
  7278. }
  7279. ]
  7280. ))
  7281. characterMakers.push(() => makeCharacter(
  7282. { name: "Surgo", species: ["medihound"], tags: ["feral"] },
  7283. {
  7284. front: {
  7285. height: math.unit(6, "feet"),
  7286. weight: math.unit(600, "lbs"),
  7287. name: "Front",
  7288. image: {
  7289. source: "./media/characters/surgo/front.svg",
  7290. extra: 3591 / 2227
  7291. }
  7292. },
  7293. back: {
  7294. height: math.unit(6, "feet"),
  7295. weight: math.unit(600, "lbs"),
  7296. name: "Back",
  7297. image: {
  7298. source: "./media/characters/surgo/back.svg",
  7299. extra: 3557 / 2228
  7300. }
  7301. },
  7302. laying: {
  7303. height: math.unit(6 * 0.85, "feet"),
  7304. weight: math.unit(600, "lbs"),
  7305. name: "Laying",
  7306. image: {
  7307. source: "./media/characters/surgo/laying.svg"
  7308. }
  7309. },
  7310. },
  7311. [
  7312. {
  7313. name: "Normal",
  7314. height: math.unit(6, "feet"),
  7315. default: true
  7316. }
  7317. ]
  7318. ))
  7319. characterMakers.push(() => makeCharacter(
  7320. { name: "Cibus", species: ["dragon"], tags: ["feral"] },
  7321. {
  7322. side: {
  7323. height: math.unit(6, "feet"),
  7324. weight: math.unit(150, "lbs"),
  7325. name: "Side",
  7326. image: {
  7327. source: "./media/characters/cibus/side.svg",
  7328. extra: 800 / 400
  7329. }
  7330. },
  7331. },
  7332. [
  7333. {
  7334. name: "Normal",
  7335. height: math.unit(6, "feet"),
  7336. default: true
  7337. }
  7338. ]
  7339. ))
  7340. characterMakers.push(() => makeCharacter(
  7341. { name: "Nibbles", species: ["shark", "android"], tags: ["anthro"] },
  7342. {
  7343. front: {
  7344. height: math.unit(6, "feet"),
  7345. weight: math.unit(240, "lbs"),
  7346. name: "Front",
  7347. image: {
  7348. source: "./media/characters/nibbles/front.svg"
  7349. }
  7350. },
  7351. side: {
  7352. height: math.unit(6, "feet"),
  7353. weight: math.unit(240, "lbs"),
  7354. name: "Side",
  7355. image: {
  7356. source: "./media/characters/nibbles/side.svg"
  7357. }
  7358. },
  7359. },
  7360. [
  7361. {
  7362. name: "Normal",
  7363. height: math.unit(9, "feet"),
  7364. default: true
  7365. }
  7366. ]
  7367. ))
  7368. characterMakers.push(() => makeCharacter(
  7369. { name: "Rikky", species: ["coyote"], tags: ["anthro"] },
  7370. {
  7371. side: {
  7372. height: math.unit(5 + 1 / 6, "feet"),
  7373. weight: math.unit(130, "lbs"),
  7374. name: "Side",
  7375. image: {
  7376. source: "./media/characters/rikky/side.svg",
  7377. extra: 851 / 801
  7378. }
  7379. },
  7380. },
  7381. [
  7382. {
  7383. name: "Normal",
  7384. height: math.unit(5 + 1 / 6, "feet")
  7385. },
  7386. {
  7387. name: "Macro",
  7388. height: math.unit(152, "feet"),
  7389. default: true
  7390. },
  7391. {
  7392. name: "Megamacro",
  7393. height: math.unit(7, "miles")
  7394. }
  7395. ]
  7396. ))
  7397. characterMakers.push(() => makeCharacter(
  7398. { name: "Malfressa", species: ["dragon"], tags: ["anthro", "feral"] },
  7399. {
  7400. side: {
  7401. height: math.unit(370, "cm"),
  7402. weight: math.unit(350, "lbs"),
  7403. name: "Side",
  7404. image: {
  7405. source: "./media/characters/malfressa/side.svg"
  7406. }
  7407. },
  7408. walking: {
  7409. height: math.unit(370, "cm"),
  7410. weight: math.unit(350, "lbs"),
  7411. name: "Walking",
  7412. image: {
  7413. source: "./media/characters/malfressa/walking.svg"
  7414. }
  7415. },
  7416. feral: {
  7417. height: math.unit(2500, "cm"),
  7418. weight: math.unit(100000, "lbs"),
  7419. name: "Feral",
  7420. image: {
  7421. source: "./media/characters/malfressa/feral.svg",
  7422. extra: 2108 / 837,
  7423. bottom: 0.02
  7424. }
  7425. },
  7426. },
  7427. [
  7428. {
  7429. name: "Normal",
  7430. height: math.unit(370, "cm")
  7431. },
  7432. {
  7433. name: "Macro",
  7434. height: math.unit(300, "meters"),
  7435. default: true
  7436. }
  7437. ]
  7438. ))
  7439. characterMakers.push(() => makeCharacter(
  7440. { name: "Jaro", species: ["dragon"], tags: ["anthro"] },
  7441. {
  7442. front: {
  7443. height: math.unit(6, "feet"),
  7444. weight: math.unit(60, "kg"),
  7445. name: "Front",
  7446. image: {
  7447. source: "./media/characters/jaro/front.svg",
  7448. extra: 845/817,
  7449. bottom: 45/890
  7450. }
  7451. },
  7452. back: {
  7453. height: math.unit(6, "feet"),
  7454. weight: math.unit(60, "kg"),
  7455. name: "Back",
  7456. image: {
  7457. source: "./media/characters/jaro/back.svg",
  7458. extra: 847/817,
  7459. bottom: 34/881
  7460. }
  7461. },
  7462. },
  7463. [
  7464. {
  7465. name: "Micro",
  7466. height: math.unit(7, "inches")
  7467. },
  7468. {
  7469. name: "Normal",
  7470. height: math.unit(5.5, "feet"),
  7471. default: true
  7472. },
  7473. {
  7474. name: "Minimacro",
  7475. height: math.unit(20, "feet")
  7476. },
  7477. {
  7478. name: "Macro",
  7479. height: math.unit(200, "meters")
  7480. }
  7481. ]
  7482. ))
  7483. characterMakers.push(() => makeCharacter(
  7484. { name: "Rogue", species: ["wolf"], tags: ["anthro"] },
  7485. {
  7486. front: {
  7487. height: math.unit(6, "feet"),
  7488. weight: math.unit(195, "lb"),
  7489. name: "Front",
  7490. image: {
  7491. source: "./media/characters/rogue/front.svg"
  7492. }
  7493. },
  7494. },
  7495. [
  7496. {
  7497. name: "Macro",
  7498. height: math.unit(90, "feet"),
  7499. default: true
  7500. },
  7501. ]
  7502. ))
  7503. characterMakers.push(() => makeCharacter(
  7504. { name: "Piper", species: ["deer"], tags: ["anthro"] },
  7505. {
  7506. standing: {
  7507. height: math.unit(5 + 8 / 12, "feet"),
  7508. weight: math.unit(140, "lb"),
  7509. name: "Standing",
  7510. image: {
  7511. source: "./media/characters/piper/standing.svg",
  7512. extra: 1440/1284,
  7513. bottom: 66/1506
  7514. }
  7515. },
  7516. running: {
  7517. height: math.unit(5 + 8 / 12, "feet"),
  7518. weight: math.unit(140, "lb"),
  7519. name: "Running",
  7520. image: {
  7521. source: "./media/characters/piper/running.svg",
  7522. extra: 3948/3655,
  7523. bottom: 0/3948
  7524. }
  7525. },
  7526. sole: {
  7527. height: math.unit(0.81, "feet"),
  7528. weight: math.unit(2, "kg"),
  7529. name: "Sole",
  7530. image: {
  7531. source: "./media/characters/piper/sole.svg"
  7532. }
  7533. },
  7534. nipple: {
  7535. height: math.unit(0.25, "feet"),
  7536. weight: math.unit(1.5, "lb"),
  7537. name: "Nipple",
  7538. image: {
  7539. source: "./media/characters/piper/nipple.svg"
  7540. }
  7541. },
  7542. head: {
  7543. height: math.unit(1.1, "feet"),
  7544. name: "Head",
  7545. image: {
  7546. source: "./media/characters/piper/head.svg"
  7547. }
  7548. },
  7549. },
  7550. [
  7551. {
  7552. name: "Micro",
  7553. height: math.unit(2, "inches")
  7554. },
  7555. {
  7556. name: "Normal",
  7557. height: math.unit(5 + 8 / 12, "feet")
  7558. },
  7559. {
  7560. name: "Macro",
  7561. height: math.unit(250, "feet"),
  7562. default: true
  7563. },
  7564. {
  7565. name: "Megamacro",
  7566. height: math.unit(7, "miles")
  7567. },
  7568. ]
  7569. ))
  7570. characterMakers.push(() => makeCharacter(
  7571. { name: "Gemini", species: ["mouse"], tags: ["anthro"] },
  7572. {
  7573. front: {
  7574. height: math.unit(6, "feet"),
  7575. weight: math.unit(220, "lb"),
  7576. name: "Front",
  7577. image: {
  7578. source: "./media/characters/gemini/front.svg"
  7579. }
  7580. },
  7581. back: {
  7582. height: math.unit(6, "feet"),
  7583. weight: math.unit(220, "lb"),
  7584. name: "Back",
  7585. image: {
  7586. source: "./media/characters/gemini/back.svg"
  7587. }
  7588. },
  7589. kneeling: {
  7590. height: math.unit(6 / 1.5, "feet"),
  7591. weight: math.unit(220, "lb"),
  7592. name: "Kneeling",
  7593. image: {
  7594. source: "./media/characters/gemini/kneeling.svg",
  7595. bottom: 0.02
  7596. }
  7597. },
  7598. },
  7599. [
  7600. {
  7601. name: "Macro",
  7602. height: math.unit(300, "meters"),
  7603. default: true
  7604. },
  7605. {
  7606. name: "Megamacro",
  7607. height: math.unit(6900, "meters")
  7608. },
  7609. ]
  7610. ))
  7611. characterMakers.push(() => makeCharacter(
  7612. { name: "Alicia", species: ["dragon", "cat", "canine"], tags: ["anthro"] },
  7613. {
  7614. anthro: {
  7615. height: math.unit(2.35, "meters"),
  7616. weight: math.unit(73, "kg"),
  7617. name: "Anthro",
  7618. image: {
  7619. source: "./media/characters/alicia/anthro.svg",
  7620. extra: 2571 / 2385,
  7621. bottom: 75 / 2648
  7622. }
  7623. },
  7624. paw: {
  7625. height: math.unit(1.32, "feet"),
  7626. name: "Paw",
  7627. image: {
  7628. source: "./media/characters/alicia/paw.svg"
  7629. }
  7630. },
  7631. feral: {
  7632. height: math.unit(1.69, "meters"),
  7633. weight: math.unit(73, "kg"),
  7634. name: "Feral",
  7635. image: {
  7636. source: "./media/characters/alicia/feral.svg",
  7637. extra: 2123 / 1715,
  7638. bottom: 222 / 2349
  7639. }
  7640. },
  7641. },
  7642. [
  7643. {
  7644. name: "Normal",
  7645. height: math.unit(2.35, "meters")
  7646. },
  7647. {
  7648. name: "Macro",
  7649. height: math.unit(60, "meters"),
  7650. default: true
  7651. },
  7652. {
  7653. name: "Megamacro",
  7654. height: math.unit(10000, "kilometers")
  7655. },
  7656. ]
  7657. ))
  7658. characterMakers.push(() => makeCharacter(
  7659. { name: "Archy", species: ["snow-leopard"], tags: ["anthro"] },
  7660. {
  7661. front: {
  7662. height: math.unit(7, "feet"),
  7663. weight: math.unit(250, "lbs"),
  7664. name: "Front",
  7665. image: {
  7666. source: "./media/characters/archy/front.svg"
  7667. }
  7668. }
  7669. },
  7670. [
  7671. {
  7672. name: "Micro",
  7673. height: math.unit(1, "inch")
  7674. },
  7675. {
  7676. name: "Shorty",
  7677. height: math.unit(5, "feet")
  7678. },
  7679. {
  7680. name: "Normal",
  7681. height: math.unit(7, "feet")
  7682. },
  7683. {
  7684. name: "Macro",
  7685. height: math.unit(600, "meters"),
  7686. default: true
  7687. },
  7688. {
  7689. name: "Megamacro",
  7690. height: math.unit(1, "mile")
  7691. },
  7692. ]
  7693. ))
  7694. characterMakers.push(() => makeCharacter(
  7695. { name: "Berri", species: ["rabbit"], tags: ["anthro"] },
  7696. {
  7697. front: {
  7698. height: math.unit(1.65, "meters"),
  7699. weight: math.unit(74, "kg"),
  7700. name: "Front",
  7701. image: {
  7702. source: "./media/characters/berri/front.svg",
  7703. extra: 857 / 837,
  7704. bottom: 18 / 877
  7705. }
  7706. },
  7707. bum: {
  7708. height: math.unit(1.46, "feet"),
  7709. name: "Bum",
  7710. image: {
  7711. source: "./media/characters/berri/bum.svg"
  7712. }
  7713. },
  7714. mouth: {
  7715. height: math.unit(0.44, "feet"),
  7716. name: "Mouth",
  7717. image: {
  7718. source: "./media/characters/berri/mouth.svg"
  7719. }
  7720. },
  7721. paw: {
  7722. height: math.unit(0.826, "feet"),
  7723. name: "Paw",
  7724. image: {
  7725. source: "./media/characters/berri/paw.svg"
  7726. }
  7727. },
  7728. },
  7729. [
  7730. {
  7731. name: "Normal",
  7732. height: math.unit(1.65, "meters")
  7733. },
  7734. {
  7735. name: "Macro",
  7736. height: math.unit(60, "m"),
  7737. default: true
  7738. },
  7739. {
  7740. name: "Megamacro",
  7741. height: math.unit(9.213, "km")
  7742. },
  7743. {
  7744. name: "Planet Eater",
  7745. height: math.unit(489, "megameters")
  7746. },
  7747. {
  7748. name: "Teramacro",
  7749. height: math.unit(2471635000000, "meters")
  7750. },
  7751. {
  7752. name: "Examacro",
  7753. height: math.unit(8.0624e+26, "meters")
  7754. }
  7755. ]
  7756. ))
  7757. characterMakers.push(() => makeCharacter(
  7758. { name: "Lexi", species: ["fennec-fox"], tags: ["anthro"] },
  7759. {
  7760. front: {
  7761. height: math.unit(1.72, "meters"),
  7762. weight: math.unit(68, "kg"),
  7763. name: "Front",
  7764. image: {
  7765. source: "./media/characters/lexi/front.svg"
  7766. }
  7767. }
  7768. },
  7769. [
  7770. {
  7771. name: "Very Smol",
  7772. height: math.unit(10, "mm")
  7773. },
  7774. {
  7775. name: "Micro",
  7776. height: math.unit(6.8, "cm"),
  7777. default: true
  7778. },
  7779. {
  7780. name: "Normal",
  7781. height: math.unit(1.72, "m")
  7782. }
  7783. ]
  7784. ))
  7785. characterMakers.push(() => makeCharacter(
  7786. { name: "Martin", species: ["azodian"], tags: ["anthro"] },
  7787. {
  7788. front: {
  7789. height: math.unit(1.69, "meters"),
  7790. weight: math.unit(68, "kg"),
  7791. name: "Front",
  7792. image: {
  7793. source: "./media/characters/martin/front.svg",
  7794. extra: 596 / 581
  7795. }
  7796. }
  7797. },
  7798. [
  7799. {
  7800. name: "Micro",
  7801. height: math.unit(6.85, "cm"),
  7802. default: true
  7803. },
  7804. {
  7805. name: "Normal",
  7806. height: math.unit(1.69, "m")
  7807. }
  7808. ]
  7809. ))
  7810. characterMakers.push(() => makeCharacter(
  7811. { name: "Juno", species: ["shiba-inu", "deity"], tags: ["anthro"] },
  7812. {
  7813. front: {
  7814. height: math.unit(1.69, "meters"),
  7815. weight: math.unit(68, "kg"),
  7816. name: "Front",
  7817. image: {
  7818. source: "./media/characters/juno/front.svg"
  7819. }
  7820. }
  7821. },
  7822. [
  7823. {
  7824. name: "Micro",
  7825. height: math.unit(7, "cm")
  7826. },
  7827. {
  7828. name: "Normal",
  7829. height: math.unit(1.89, "m")
  7830. },
  7831. {
  7832. name: "Macro",
  7833. height: math.unit(353, "meters"),
  7834. default: true
  7835. }
  7836. ]
  7837. ))
  7838. characterMakers.push(() => makeCharacter(
  7839. { name: "Samantha", species: ["canine", "deity"], tags: ["anthro"] },
  7840. {
  7841. front: {
  7842. height: math.unit(1.93, "meters"),
  7843. weight: math.unit(83, "kg"),
  7844. name: "Front",
  7845. image: {
  7846. source: "./media/characters/samantha/front.svg"
  7847. }
  7848. },
  7849. frontClothed: {
  7850. height: math.unit(1.93, "meters"),
  7851. weight: math.unit(83, "kg"),
  7852. name: "Front (Clothed)",
  7853. image: {
  7854. source: "./media/characters/samantha/front-clothed.svg"
  7855. }
  7856. },
  7857. back: {
  7858. height: math.unit(1.93, "meters"),
  7859. weight: math.unit(83, "kg"),
  7860. name: "Back",
  7861. image: {
  7862. source: "./media/characters/samantha/back.svg"
  7863. }
  7864. },
  7865. },
  7866. [
  7867. {
  7868. name: "Normal",
  7869. height: math.unit(1.93, "m")
  7870. },
  7871. {
  7872. name: "Macro",
  7873. height: math.unit(74, "meters"),
  7874. default: true
  7875. },
  7876. {
  7877. name: "Macro+",
  7878. height: math.unit(223, "meters"),
  7879. },
  7880. {
  7881. name: "Megamacro",
  7882. height: math.unit(8381, "meters"),
  7883. },
  7884. {
  7885. name: "Megamacro+",
  7886. height: math.unit(12000, "kilometers")
  7887. },
  7888. ]
  7889. ))
  7890. characterMakers.push(() => makeCharacter(
  7891. { name: "Dr. Clay", species: ["canine"], tags: ["anthro"] },
  7892. {
  7893. front: {
  7894. height: math.unit(1.92, "meters"),
  7895. weight: math.unit(80, "kg"),
  7896. name: "Front",
  7897. image: {
  7898. source: "./media/characters/dr-clay/front.svg"
  7899. }
  7900. },
  7901. frontClothed: {
  7902. height: math.unit(1.92, "meters"),
  7903. weight: math.unit(80, "kg"),
  7904. name: "Front (Clothed)",
  7905. image: {
  7906. source: "./media/characters/dr-clay/front-clothed.svg"
  7907. }
  7908. }
  7909. },
  7910. [
  7911. {
  7912. name: "Normal",
  7913. height: math.unit(1.92, "m")
  7914. },
  7915. {
  7916. name: "Macro",
  7917. height: math.unit(214, "meters"),
  7918. default: true
  7919. },
  7920. {
  7921. name: "Macro+",
  7922. height: math.unit(12.237, "meters"),
  7923. },
  7924. {
  7925. name: "Megamacro",
  7926. height: math.unit(557, "megameters"),
  7927. },
  7928. {
  7929. name: "Unimaginable",
  7930. height: math.unit(120e9, "lightyears")
  7931. },
  7932. ]
  7933. ))
  7934. characterMakers.push(() => makeCharacter(
  7935. { name: "Wyvrn Ripsnarl", species: ["dragon", "wolf"], tags: ["anthro"] },
  7936. {
  7937. front: {
  7938. height: math.unit(2, "meters"),
  7939. weight: math.unit(80, "kg"),
  7940. name: "Front",
  7941. image: {
  7942. source: "./media/characters/wyvrn-ripsnarl/front.svg"
  7943. }
  7944. }
  7945. },
  7946. [
  7947. {
  7948. name: "Teramacro",
  7949. height: math.unit(500000, "lightyears"),
  7950. default: true
  7951. },
  7952. ]
  7953. ))
  7954. characterMakers.push(() => makeCharacter(
  7955. { name: "Vemus", species: ["crux", "skunk", "tanuki"], tags: ["anthro", "goo"] },
  7956. {
  7957. crux: {
  7958. height: math.unit(2, "meters"),
  7959. weight: math.unit(150, "kg"),
  7960. name: "Crux",
  7961. image: {
  7962. source: "./media/characters/vemus/crux.svg",
  7963. extra: 1074/936,
  7964. bottom: 23/1097
  7965. }
  7966. },
  7967. skunkTanuki: {
  7968. height: math.unit(2, "meters"),
  7969. weight: math.unit(150, "kg"),
  7970. name: "Skunk-Tanuki",
  7971. image: {
  7972. source: "./media/characters/vemus/skunk-tanuki.svg",
  7973. extra: 926/893,
  7974. bottom: 20/946
  7975. }
  7976. },
  7977. },
  7978. [
  7979. {
  7980. name: "Normal",
  7981. height: math.unit(4, "meters"),
  7982. default: true
  7983. },
  7984. {
  7985. name: "Big",
  7986. height: math.unit(8, "meters")
  7987. },
  7988. {
  7989. name: "Macro",
  7990. height: math.unit(100, "meters")
  7991. },
  7992. {
  7993. name: "Macro+",
  7994. height: math.unit(1500, "meters")
  7995. },
  7996. {
  7997. name: "Stellar",
  7998. height: math.unit(14e8, "meters")
  7999. },
  8000. ]
  8001. ))
  8002. characterMakers.push(() => makeCharacter(
  8003. { name: "Beherit", species: ["monster"], tags: ["anthro"] },
  8004. {
  8005. front: {
  8006. height: math.unit(2, "meters"),
  8007. weight: math.unit(70, "kg"),
  8008. name: "Front",
  8009. image: {
  8010. source: "./media/characters/beherit/front.svg",
  8011. extra: 1234/1109,
  8012. bottom: 55/1289
  8013. }
  8014. }
  8015. },
  8016. [
  8017. {
  8018. name: "Normal",
  8019. height: math.unit(6, "feet")
  8020. },
  8021. {
  8022. name: "Lorg",
  8023. height: math.unit(25, "feet"),
  8024. default: true
  8025. },
  8026. {
  8027. name: "Lorger",
  8028. height: math.unit(75, "feet")
  8029. },
  8030. {
  8031. name: "Macro",
  8032. height: math.unit(200, "meters")
  8033. },
  8034. ]
  8035. ))
  8036. characterMakers.push(() => makeCharacter(
  8037. { name: "Everett", species: ["dragon"], tags: ["anthro"] },
  8038. {
  8039. front: {
  8040. height: math.unit(2, "meters"),
  8041. weight: math.unit(150, "kg"),
  8042. name: "Front",
  8043. image: {
  8044. source: "./media/characters/everett/front.svg",
  8045. extra: 1017/866,
  8046. bottom: 86/1103
  8047. }
  8048. },
  8049. paw: {
  8050. height: math.unit(2 / 3.6, "meters"),
  8051. name: "Paw",
  8052. image: {
  8053. source: "./media/characters/everett/paw.svg"
  8054. }
  8055. },
  8056. },
  8057. [
  8058. {
  8059. name: "Normal",
  8060. height: math.unit(15, "feet"),
  8061. default: true
  8062. },
  8063. {
  8064. name: "Lorg",
  8065. height: math.unit(70, "feet"),
  8066. default: true
  8067. },
  8068. {
  8069. name: "Lorger",
  8070. height: math.unit(250, "feet")
  8071. },
  8072. {
  8073. name: "Macro",
  8074. height: math.unit(500, "meters")
  8075. },
  8076. ]
  8077. ))
  8078. characterMakers.push(() => makeCharacter(
  8079. { name: "Rose", species: ["lion", "mouse", "plush"], tags: ["anthro"] },
  8080. {
  8081. front: {
  8082. height: math.unit(2, "meters"),
  8083. weight: math.unit(86, "kg"),
  8084. name: "Front",
  8085. image: {
  8086. source: "./media/characters/rose/front.svg",
  8087. extra: 1785/1636,
  8088. bottom: 30/1815
  8089. },
  8090. form: "liom",
  8091. default: true
  8092. },
  8093. frontSporty: {
  8094. height: math.unit(2, "meters"),
  8095. weight: math.unit(86, "kg"),
  8096. name: "Front (Sporty)",
  8097. image: {
  8098. source: "./media/characters/rose/front-sporty.svg",
  8099. extra: 350/335,
  8100. bottom: 10/360
  8101. },
  8102. form: "liom"
  8103. },
  8104. frontAlt: {
  8105. height: math.unit(1.6, "meters"),
  8106. weight: math.unit(86, "kg"),
  8107. name: "Front (Alt)",
  8108. image: {
  8109. source: "./media/characters/rose/front-alt.svg",
  8110. extra: 299/283,
  8111. bottom: 3/302
  8112. },
  8113. form: "liom"
  8114. },
  8115. plush: {
  8116. height: math.unit(2, "meters"),
  8117. weight: math.unit(86/3, "kg"),
  8118. name: "Plush",
  8119. image: {
  8120. source: "./media/characters/rose/plush.svg",
  8121. extra: 361/337,
  8122. bottom: 11/372
  8123. },
  8124. form: "plush",
  8125. default: true
  8126. },
  8127. faeStanding: {
  8128. height: math.unit(10, "cm"),
  8129. weight: math.unit(10, "grams"),
  8130. name: "Standing",
  8131. image: {
  8132. source: "./media/characters/rose/fae-standing.svg",
  8133. extra: 1189/1060,
  8134. bottom: 27/1216
  8135. },
  8136. form: "fae",
  8137. default: true
  8138. },
  8139. faeSitting: {
  8140. height: math.unit(5, "cm"),
  8141. weight: math.unit(10, "grams"),
  8142. name: "Sitting",
  8143. image: {
  8144. source: "./media/characters/rose/fae-sitting.svg",
  8145. extra: 737/577,
  8146. bottom: 356/1093
  8147. },
  8148. form: "fae"
  8149. },
  8150. faePaw: {
  8151. height: math.unit(1.35, "cm"),
  8152. name: "Paw",
  8153. image: {
  8154. source: "./media/characters/rose/fae-paw.svg"
  8155. },
  8156. form: "fae"
  8157. },
  8158. },
  8159. [
  8160. {
  8161. name: "True Micro",
  8162. height: math.unit(9, "cm"),
  8163. form: "liom"
  8164. },
  8165. {
  8166. name: "Micro",
  8167. height: math.unit(16, "cm"),
  8168. form: "liom"
  8169. },
  8170. {
  8171. name: "Normal",
  8172. height: math.unit(1.85, "meters"),
  8173. default: true,
  8174. form: "liom"
  8175. },
  8176. {
  8177. name: "Mini-Macro",
  8178. height: math.unit(5, "meters"),
  8179. form: "liom"
  8180. },
  8181. {
  8182. name: "Macro",
  8183. height: math.unit(15, "meters"),
  8184. form: "liom"
  8185. },
  8186. {
  8187. name: "True Macro",
  8188. height: math.unit(40, "meters"),
  8189. form: "liom"
  8190. },
  8191. {
  8192. name: "City Scale",
  8193. height: math.unit(1, "km"),
  8194. form: "liom"
  8195. },
  8196. {
  8197. name: "Plushie",
  8198. height: math.unit(9, "cm"),
  8199. form: "plush",
  8200. default: true
  8201. },
  8202. {
  8203. name: "Fae",
  8204. height: math.unit(10, "cm"),
  8205. form: "fae",
  8206. default: true
  8207. },
  8208. ],
  8209. {
  8210. "liom": {
  8211. name: "Liom"
  8212. },
  8213. "plush": {
  8214. name: "Plush"
  8215. },
  8216. "fae": {
  8217. name: "Fae Fox",
  8218. default: true
  8219. }
  8220. }
  8221. ))
  8222. characterMakers.push(() => makeCharacter(
  8223. { name: "Regal", species: ["changeling"], tags: ["anthro"] },
  8224. {
  8225. front: {
  8226. height: math.unit(2, "meters"),
  8227. weight: math.unit(350, "lbs"),
  8228. name: "Front",
  8229. image: {
  8230. source: "./media/characters/regal/front.svg"
  8231. }
  8232. },
  8233. back: {
  8234. height: math.unit(2, "meters"),
  8235. weight: math.unit(350, "lbs"),
  8236. name: "Back",
  8237. image: {
  8238. source: "./media/characters/regal/back.svg"
  8239. }
  8240. },
  8241. },
  8242. [
  8243. {
  8244. name: "Macro",
  8245. height: math.unit(350, "feet"),
  8246. default: true
  8247. }
  8248. ]
  8249. ))
  8250. characterMakers.push(() => makeCharacter(
  8251. { name: "Opal", species: ["rabbit", "deity"], tags: ["anthro"] },
  8252. {
  8253. standing: {
  8254. height: math.unit(4 + 11/12, "feet"),
  8255. weight: math.unit(100, "lb"),
  8256. name: "Standing",
  8257. image: {
  8258. source: "./media/characters/opal/standing.svg",
  8259. extra: 1588/1513,
  8260. bottom: 23/1611
  8261. }
  8262. },
  8263. sitting: {
  8264. height: math.unit(2.3, "feet"),
  8265. weight: math.unit(100, "lb"),
  8266. name: "Sitting",
  8267. image: {
  8268. source: "./media/characters/opal/sitting.svg",
  8269. extra: 1031/892,
  8270. bottom: 142/1173
  8271. }
  8272. },
  8273. hand: {
  8274. height: math.unit(0.59, "feet"),
  8275. name: "Hand",
  8276. image: {
  8277. source: "./media/characters/opal/hand.svg"
  8278. }
  8279. },
  8280. foot: {
  8281. height: math.unit(0.61, "feet"),
  8282. name: "Foot",
  8283. image: {
  8284. source: "./media/characters/opal/foot.svg"
  8285. }
  8286. },
  8287. },
  8288. [
  8289. {
  8290. name: "Small",
  8291. height: math.unit(4 + 11 / 12, "feet")
  8292. },
  8293. {
  8294. name: "Normal",
  8295. height: math.unit(20, "feet"),
  8296. default: true
  8297. },
  8298. {
  8299. name: "Macro",
  8300. height: math.unit(120, "feet")
  8301. },
  8302. {
  8303. name: "Megamacro",
  8304. height: math.unit(80, "miles")
  8305. },
  8306. {
  8307. name: "True Size",
  8308. height: math.unit(100000, "lightyears")
  8309. },
  8310. ]
  8311. ))
  8312. characterMakers.push(() => makeCharacter(
  8313. { name: "Vector Wuff", species: ["wolf"], tags: ["anthro"] },
  8314. {
  8315. front: {
  8316. height: math.unit(6, "feet"),
  8317. weight: math.unit(200, "lbs"),
  8318. name: "Front",
  8319. image: {
  8320. source: "./media/characters/vector-wuff/front.svg"
  8321. }
  8322. }
  8323. },
  8324. [
  8325. {
  8326. name: "Normal",
  8327. height: math.unit(2.8, "meters")
  8328. },
  8329. {
  8330. name: "Macro",
  8331. height: math.unit(450, "meters"),
  8332. default: true
  8333. },
  8334. {
  8335. name: "Megamacro",
  8336. height: math.unit(15, "kilometers")
  8337. }
  8338. ]
  8339. ))
  8340. characterMakers.push(() => makeCharacter(
  8341. { name: "Dannik", species: ["gryphon"], tags: ["anthro"] },
  8342. {
  8343. front: {
  8344. height: math.unit(6, "feet"),
  8345. weight: math.unit(256, "lbs"),
  8346. name: "Front",
  8347. image: {
  8348. source: "./media/characters/dannik/front.svg"
  8349. }
  8350. }
  8351. },
  8352. [
  8353. {
  8354. name: "Macro",
  8355. height: math.unit(69.57, "meters"),
  8356. default: true
  8357. },
  8358. ]
  8359. ))
  8360. characterMakers.push(() => makeCharacter(
  8361. { name: "Azura Saharah", species: ["cheetah"], tags: ["anthro"] },
  8362. {
  8363. front: {
  8364. height: math.unit(6, "feet"),
  8365. weight: math.unit(120, "lbs"),
  8366. name: "Front",
  8367. image: {
  8368. source: "./media/characters/azura-saharah/front.svg"
  8369. }
  8370. },
  8371. back: {
  8372. height: math.unit(6, "feet"),
  8373. weight: math.unit(120, "lbs"),
  8374. name: "Back",
  8375. image: {
  8376. source: "./media/characters/azura-saharah/back.svg"
  8377. }
  8378. },
  8379. },
  8380. [
  8381. {
  8382. name: "Macro",
  8383. height: math.unit(100, "feet"),
  8384. default: true
  8385. },
  8386. ]
  8387. ))
  8388. characterMakers.push(() => makeCharacter(
  8389. { name: "Kennedy", species: ["dog"], tags: ["anthro"] },
  8390. {
  8391. side: {
  8392. height: math.unit(5 + 4 / 12, "feet"),
  8393. weight: math.unit(163, "lbs"),
  8394. name: "Side",
  8395. image: {
  8396. source: "./media/characters/kennedy/side.svg"
  8397. }
  8398. }
  8399. },
  8400. [
  8401. {
  8402. name: "Standard Doggo",
  8403. height: math.unit(5 + 4 / 12, "feet")
  8404. },
  8405. {
  8406. name: "Big Doggo",
  8407. height: math.unit(25 + 3 / 12, "feet"),
  8408. default: true
  8409. },
  8410. ]
  8411. ))
  8412. characterMakers.push(() => makeCharacter(
  8413. { name: "Odios De Lunar", species: ["golden-jackal"], tags: ["anthro"] },
  8414. {
  8415. front: {
  8416. height: math.unit(5 + 5/12, "feet"),
  8417. weight: math.unit(100, "lbs"),
  8418. name: "Front",
  8419. image: {
  8420. source: "./media/characters/odios-de-lunar/front.svg",
  8421. extra: 1468/1323,
  8422. bottom: 22/1490
  8423. }
  8424. }
  8425. },
  8426. [
  8427. {
  8428. name: "Micro",
  8429. height: math.unit(3, "inches")
  8430. },
  8431. {
  8432. name: "Normal",
  8433. height: math.unit(5.5, "feet"),
  8434. default: true
  8435. },
  8436. {
  8437. name: "Macro",
  8438. height: math.unit(100, "feet")
  8439. },
  8440. ]
  8441. ))
  8442. characterMakers.push(() => makeCharacter(
  8443. { name: "Mandake", species: ["manectric", "tiger"], tags: ["anthro"] },
  8444. {
  8445. back: {
  8446. height: math.unit(6, "feet"),
  8447. weight: math.unit(220, "lbs"),
  8448. name: "Back",
  8449. image: {
  8450. source: "./media/characters/mandake/back.svg"
  8451. }
  8452. }
  8453. },
  8454. [
  8455. {
  8456. name: "Normal",
  8457. height: math.unit(7, "feet"),
  8458. default: true
  8459. },
  8460. {
  8461. name: "Macro",
  8462. height: math.unit(78, "feet")
  8463. },
  8464. {
  8465. name: "Macro+",
  8466. height: math.unit(300, "meters")
  8467. },
  8468. {
  8469. name: "Macro++",
  8470. height: math.unit(2400, "feet")
  8471. },
  8472. {
  8473. name: "Megamacro",
  8474. height: math.unit(5167, "meters")
  8475. },
  8476. {
  8477. name: "Gigamacro",
  8478. height: math.unit(41769, "miles")
  8479. },
  8480. ]
  8481. ))
  8482. characterMakers.push(() => makeCharacter(
  8483. { name: "Yozey", species: ["rat"], tags: ["anthro"] },
  8484. {
  8485. front: {
  8486. height: math.unit(6, "feet"),
  8487. weight: math.unit(120, "lbs"),
  8488. name: "Front",
  8489. image: {
  8490. source: "./media/characters/yozey/front.svg"
  8491. }
  8492. },
  8493. frontAlt: {
  8494. height: math.unit(6, "feet"),
  8495. weight: math.unit(120, "lbs"),
  8496. name: "Front (Alt)",
  8497. image: {
  8498. source: "./media/characters/yozey/front-alt.svg"
  8499. }
  8500. },
  8501. side: {
  8502. height: math.unit(6, "feet"),
  8503. weight: math.unit(120, "lbs"),
  8504. name: "Side",
  8505. image: {
  8506. source: "./media/characters/yozey/side.svg"
  8507. }
  8508. },
  8509. },
  8510. [
  8511. {
  8512. name: "Micro",
  8513. height: math.unit(3, "inches"),
  8514. default: true
  8515. },
  8516. {
  8517. name: "Normal",
  8518. height: math.unit(6, "feet")
  8519. }
  8520. ]
  8521. ))
  8522. characterMakers.push(() => makeCharacter(
  8523. { name: "Valeska Voss", species: ["fox"], tags: ["anthro"] },
  8524. {
  8525. front: {
  8526. height: math.unit(6, "feet"),
  8527. weight: math.unit(103, "lbs"),
  8528. name: "Front",
  8529. image: {
  8530. source: "./media/characters/valeska-voss/front.svg"
  8531. }
  8532. }
  8533. },
  8534. [
  8535. {
  8536. name: "Mini-Sized Sub",
  8537. height: math.unit(3.1, "inches")
  8538. },
  8539. {
  8540. name: "Mid-Sized Sub",
  8541. height: math.unit(6.2, "inches")
  8542. },
  8543. {
  8544. name: "Full-Sized Sub",
  8545. height: math.unit(9.3, "inches")
  8546. },
  8547. {
  8548. name: "Normal",
  8549. height: math.unit(5 + 2 / 12, "foot"),
  8550. default: true
  8551. },
  8552. ]
  8553. ))
  8554. characterMakers.push(() => makeCharacter(
  8555. { name: "Gene Zeta", species: ["raptor"], tags: ["anthro"] },
  8556. {
  8557. front: {
  8558. height: math.unit(6, "feet"),
  8559. weight: math.unit(160, "lbs"),
  8560. name: "Front",
  8561. image: {
  8562. source: "./media/characters/gene-zeta/front.svg",
  8563. extra: 3006 / 2826,
  8564. bottom: 182 / 3188
  8565. }
  8566. }
  8567. },
  8568. [
  8569. {
  8570. name: "Micro",
  8571. height: math.unit(6, "inches")
  8572. },
  8573. {
  8574. name: "Normal",
  8575. height: math.unit(5 + 11 / 12, "foot"),
  8576. default: true
  8577. },
  8578. {
  8579. name: "Macro",
  8580. height: math.unit(140, "feet")
  8581. },
  8582. {
  8583. name: "Supercharged",
  8584. height: math.unit(2500, "feet")
  8585. },
  8586. ]
  8587. ))
  8588. characterMakers.push(() => makeCharacter(
  8589. { name: "Razinox", species: ["dragon"], tags: ["anthro"] },
  8590. {
  8591. front: {
  8592. height: math.unit(6, "feet"),
  8593. weight: math.unit(350, "lbs"),
  8594. name: "Front",
  8595. image: {
  8596. source: "./media/characters/razinox/front.svg",
  8597. extra: 1686 / 1548,
  8598. bottom: 28.2 / 1868
  8599. }
  8600. },
  8601. back: {
  8602. height: math.unit(6, "feet"),
  8603. weight: math.unit(350, "lbs"),
  8604. name: "Back",
  8605. image: {
  8606. source: "./media/characters/razinox/back.svg",
  8607. extra: 1660 / 1590,
  8608. bottom: 15 / 1665
  8609. }
  8610. },
  8611. },
  8612. [
  8613. {
  8614. name: "Normal",
  8615. height: math.unit(10 + 8 / 12, "foot")
  8616. },
  8617. {
  8618. name: "Minimacro",
  8619. height: math.unit(15, "foot")
  8620. },
  8621. {
  8622. name: "Macro",
  8623. height: math.unit(60, "foot"),
  8624. default: true
  8625. },
  8626. {
  8627. name: "Megamacro",
  8628. height: math.unit(5, "miles")
  8629. },
  8630. {
  8631. name: "Gigamacro",
  8632. height: math.unit(6000, "miles")
  8633. },
  8634. ]
  8635. ))
  8636. characterMakers.push(() => makeCharacter(
  8637. { name: "Cobalt", species: ["cat", "weasel"], tags: ["anthro"] },
  8638. {
  8639. front: {
  8640. height: math.unit(6, "feet"),
  8641. weight: math.unit(150, "lbs"),
  8642. name: "Front",
  8643. image: {
  8644. source: "./media/characters/cobalt/front.svg"
  8645. }
  8646. }
  8647. },
  8648. [
  8649. {
  8650. name: "Normal",
  8651. height: math.unit(8 + 1 / 12, "foot")
  8652. },
  8653. {
  8654. name: "Macro",
  8655. height: math.unit(111, "foot"),
  8656. default: true
  8657. },
  8658. {
  8659. name: "Supracosmic",
  8660. height: math.unit(1e42, "feet")
  8661. },
  8662. ]
  8663. ))
  8664. characterMakers.push(() => makeCharacter(
  8665. { name: "Amanda", species: ["mouse"], tags: ["anthro"] },
  8666. {
  8667. front: {
  8668. height: math.unit(5, "inches"),
  8669. name: "Front",
  8670. image: {
  8671. source: "./media/characters/amanda/front.svg",
  8672. extra: 926/791,
  8673. bottom: 38/964
  8674. }
  8675. },
  8676. back: {
  8677. height: math.unit(5, "inches"),
  8678. name: "Back",
  8679. image: {
  8680. source: "./media/characters/amanda/back.svg",
  8681. extra: 909/805,
  8682. bottom: 43/952
  8683. }
  8684. },
  8685. },
  8686. [
  8687. {
  8688. name: "Micro",
  8689. height: math.unit(5, "inches"),
  8690. default: true
  8691. },
  8692. ]
  8693. ))
  8694. characterMakers.push(() => makeCharacter(
  8695. { name: "Teal", species: ["octocoon"], tags: ["anthro"] },
  8696. {
  8697. front: {
  8698. height: math.unit(2.75, "meters"),
  8699. weight: math.unit(1200, "lb"),
  8700. name: "Front",
  8701. image: {
  8702. source: "./media/characters/teal/front.svg",
  8703. extra: 2463 / 2320,
  8704. bottom: 166 / 2629
  8705. }
  8706. },
  8707. back: {
  8708. height: math.unit(2.75, "meters"),
  8709. weight: math.unit(1200, "lb"),
  8710. name: "Back",
  8711. image: {
  8712. source: "./media/characters/teal/back.svg",
  8713. extra: 2580 / 2489,
  8714. bottom: 151 / 2731
  8715. }
  8716. },
  8717. sitting: {
  8718. height: math.unit(1.9, "meters"),
  8719. weight: math.unit(1200, "lb"),
  8720. name: "Sitting",
  8721. image: {
  8722. source: "./media/characters/teal/sitting.svg",
  8723. extra: 623 / 590,
  8724. bottom: 121 / 744
  8725. }
  8726. },
  8727. standing: {
  8728. height: math.unit(2.75, "meters"),
  8729. weight: math.unit(1200, "lb"),
  8730. name: "Standing",
  8731. image: {
  8732. source: "./media/characters/teal/standing.svg",
  8733. extra: 923 / 893,
  8734. bottom: 60 / 983
  8735. }
  8736. },
  8737. stretching: {
  8738. height: math.unit(3.65, "meters"),
  8739. weight: math.unit(1200, "lb"),
  8740. name: "Stretching",
  8741. image: {
  8742. source: "./media/characters/teal/stretching.svg",
  8743. extra: 1276 / 1244,
  8744. bottom: 0 / 1276
  8745. }
  8746. },
  8747. legged: {
  8748. height: math.unit(1.3, "meters"),
  8749. weight: math.unit(100, "lb"),
  8750. name: "Legged",
  8751. image: {
  8752. source: "./media/characters/teal/legged.svg",
  8753. extra: 462 / 437,
  8754. bottom: 24 / 486
  8755. }
  8756. },
  8757. naga: {
  8758. height: math.unit(5.4, "meters"),
  8759. weight: math.unit(4000, "lb"),
  8760. name: "Naga",
  8761. image: {
  8762. source: "./media/characters/teal/naga.svg",
  8763. extra: 1902 / 1858,
  8764. bottom: 0 / 1902
  8765. }
  8766. },
  8767. hand: {
  8768. height: math.unit(0.52, "meters"),
  8769. name: "Hand",
  8770. image: {
  8771. source: "./media/characters/teal/hand.svg"
  8772. }
  8773. },
  8774. maw: {
  8775. height: math.unit(0.43, "meters"),
  8776. name: "Maw",
  8777. image: {
  8778. source: "./media/characters/teal/maw.svg"
  8779. }
  8780. },
  8781. slit: {
  8782. height: math.unit(0.25, "meters"),
  8783. name: "Slit",
  8784. image: {
  8785. source: "./media/characters/teal/slit.svg"
  8786. }
  8787. },
  8788. },
  8789. [
  8790. {
  8791. name: "Normal",
  8792. height: math.unit(2.75, "meters"),
  8793. default: true
  8794. },
  8795. {
  8796. name: "Macro",
  8797. height: math.unit(300, "feet")
  8798. },
  8799. {
  8800. name: "Macro+",
  8801. height: math.unit(2000, "feet")
  8802. },
  8803. ]
  8804. ))
  8805. characterMakers.push(() => makeCharacter(
  8806. { name: "Ravin Amulet", species: ["cat", "werewolf"], tags: ["anthro"] },
  8807. {
  8808. frontCat: {
  8809. height: math.unit(6, "feet"),
  8810. weight: math.unit(180, "lbs"),
  8811. name: "Front (Cat)",
  8812. image: {
  8813. source: "./media/characters/ravin-amulet/front-cat.svg"
  8814. }
  8815. },
  8816. frontCatAlt: {
  8817. height: math.unit(6, "feet"),
  8818. weight: math.unit(180, "lbs"),
  8819. name: "Front (Alt, Cat)",
  8820. image: {
  8821. source: "./media/characters/ravin-amulet/front-cat-alt.svg"
  8822. }
  8823. },
  8824. frontWerewolf: {
  8825. height: math.unit(6 * 1.2, "feet"),
  8826. weight: math.unit(225, "lbs"),
  8827. name: "Front (Werewolf)",
  8828. image: {
  8829. source: "./media/characters/ravin-amulet/front-werewolf.svg"
  8830. }
  8831. },
  8832. backWerewolf: {
  8833. height: math.unit(6 * 1.2, "feet"),
  8834. weight: math.unit(225, "lbs"),
  8835. name: "Back (Werewolf)",
  8836. image: {
  8837. source: "./media/characters/ravin-amulet/back-werewolf.svg"
  8838. }
  8839. },
  8840. },
  8841. [
  8842. {
  8843. name: "Nano",
  8844. height: math.unit(1, "micrometer")
  8845. },
  8846. {
  8847. name: "Micro",
  8848. height: math.unit(1, "inch")
  8849. },
  8850. {
  8851. name: "Normal",
  8852. height: math.unit(6, "feet"),
  8853. default: true
  8854. },
  8855. {
  8856. name: "Macro",
  8857. height: math.unit(60, "feet")
  8858. }
  8859. ]
  8860. ))
  8861. characterMakers.push(() => makeCharacter(
  8862. { name: "Fluoresce", species: ["snow-leopard"], tags: ["anthro"] },
  8863. {
  8864. front: {
  8865. height: math.unit(6, "feet"),
  8866. weight: math.unit(165, "lbs"),
  8867. name: "Front",
  8868. image: {
  8869. source: "./media/characters/fluoresce/front.svg"
  8870. }
  8871. }
  8872. },
  8873. [
  8874. {
  8875. name: "Micro",
  8876. height: math.unit(6, "cm")
  8877. },
  8878. {
  8879. name: "Normal",
  8880. height: math.unit(5 + 7 / 12, "feet"),
  8881. default: true
  8882. },
  8883. {
  8884. name: "Macro",
  8885. height: math.unit(56, "feet")
  8886. },
  8887. {
  8888. name: "Megamacro",
  8889. height: math.unit(1.9, "miles")
  8890. },
  8891. ]
  8892. ))
  8893. characterMakers.push(() => makeCharacter(
  8894. { name: "Aurora", species: ["dragon"], tags: ["anthro"] },
  8895. {
  8896. front: {
  8897. height: math.unit(9 + 6 / 12, "feet"),
  8898. weight: math.unit(523, "lbs"),
  8899. name: "Side",
  8900. image: {
  8901. source: "./media/characters/aurora/side.svg",
  8902. extra: 474/393,
  8903. bottom: 5/479
  8904. }
  8905. }
  8906. },
  8907. [
  8908. {
  8909. name: "Normal",
  8910. height: math.unit(9 + 6 / 12, "feet")
  8911. },
  8912. {
  8913. name: "Macro",
  8914. height: math.unit(96, "feet"),
  8915. default: true
  8916. },
  8917. {
  8918. name: "Macro+",
  8919. height: math.unit(243, "feet")
  8920. },
  8921. ]
  8922. ))
  8923. characterMakers.push(() => makeCharacter(
  8924. { name: "Ranek", species: ["meerkat"], tags: ["anthro"] },
  8925. {
  8926. front: {
  8927. height: math.unit(194, "cm"),
  8928. weight: math.unit(90, "kg"),
  8929. name: "Front",
  8930. image: {
  8931. source: "./media/characters/ranek/front.svg",
  8932. extra: 1862/1791,
  8933. bottom: 80/1942
  8934. }
  8935. },
  8936. back: {
  8937. height: math.unit(194, "cm"),
  8938. weight: math.unit(90, "kg"),
  8939. name: "Back",
  8940. image: {
  8941. source: "./media/characters/ranek/back.svg",
  8942. extra: 1853/1787,
  8943. bottom: 74/1927
  8944. }
  8945. },
  8946. feral: {
  8947. height: math.unit(30, "cm"),
  8948. weight: math.unit(1.6, "lbs"),
  8949. name: "Feral",
  8950. image: {
  8951. source: "./media/characters/ranek/feral.svg",
  8952. extra: 990/631,
  8953. bottom: 29/1019
  8954. }
  8955. },
  8956. },
  8957. [
  8958. {
  8959. name: "Normal",
  8960. height: math.unit(194, "cm"),
  8961. default: true
  8962. },
  8963. {
  8964. name: "Macro",
  8965. height: math.unit(100, "meters")
  8966. },
  8967. ]
  8968. ))
  8969. characterMakers.push(() => makeCharacter(
  8970. { name: "Andrew Cooper", species: ["human"], tags: ["anthro"] },
  8971. {
  8972. front: {
  8973. height: math.unit(5 + 6 / 12, "feet"),
  8974. weight: math.unit(153, "lbs"),
  8975. name: "Front",
  8976. image: {
  8977. source: "./media/characters/andrew-cooper/front.svg"
  8978. }
  8979. },
  8980. },
  8981. [
  8982. {
  8983. name: "Nano",
  8984. height: math.unit(1, "mm")
  8985. },
  8986. {
  8987. name: "Micro",
  8988. height: math.unit(2, "inches")
  8989. },
  8990. {
  8991. name: "Normal",
  8992. height: math.unit(5 + 6 / 12, "feet"),
  8993. default: true
  8994. }
  8995. ]
  8996. ))
  8997. characterMakers.push(() => makeCharacter(
  8998. { name: "Akane Sato", species: ["wolf", "dragon"], tags: ["anthro"] },
  8999. {
  9000. front: {
  9001. height: math.unit(6, "feet"),
  9002. weight: math.unit(180, "lbs"),
  9003. name: "Front",
  9004. image: {
  9005. source: "./media/characters/akane-sato/front.svg",
  9006. extra: 1219 / 1140
  9007. }
  9008. },
  9009. back: {
  9010. height: math.unit(6, "feet"),
  9011. weight: math.unit(180, "lbs"),
  9012. name: "Back",
  9013. image: {
  9014. source: "./media/characters/akane-sato/back.svg",
  9015. extra: 1219 / 1170
  9016. }
  9017. },
  9018. },
  9019. [
  9020. {
  9021. name: "Normal",
  9022. height: math.unit(2.5, "meters")
  9023. },
  9024. {
  9025. name: "Macro",
  9026. height: math.unit(250, "meters"),
  9027. default: true
  9028. },
  9029. {
  9030. name: "Megamacro",
  9031. height: math.unit(25, "km")
  9032. },
  9033. ]
  9034. ))
  9035. characterMakers.push(() => makeCharacter(
  9036. { name: "Rook", species: ["corvid"], tags: ["anthro"] },
  9037. {
  9038. front: {
  9039. height: math.unit(6, "feet"),
  9040. weight: math.unit(65, "kg"),
  9041. name: "Front",
  9042. image: {
  9043. source: "./media/characters/rook/front.svg",
  9044. extra: 960 / 950
  9045. }
  9046. }
  9047. },
  9048. [
  9049. {
  9050. name: "Normal",
  9051. height: math.unit(8.8, "feet")
  9052. },
  9053. {
  9054. name: "Macro",
  9055. height: math.unit(88, "feet"),
  9056. default: true
  9057. },
  9058. {
  9059. name: "Megamacro",
  9060. height: math.unit(8, "miles")
  9061. },
  9062. ]
  9063. ))
  9064. characterMakers.push(() => makeCharacter(
  9065. { name: "Prodigy", species: ["geth"], tags: ["anthro"] },
  9066. {
  9067. front: {
  9068. height: math.unit(12 + 2 / 12, "feet"),
  9069. weight: math.unit(808, "lbs"),
  9070. name: "Front",
  9071. image: {
  9072. source: "./media/characters/prodigy/front.svg"
  9073. }
  9074. }
  9075. },
  9076. [
  9077. {
  9078. name: "Normal",
  9079. height: math.unit(12 + 2 / 12, "feet"),
  9080. default: true
  9081. },
  9082. {
  9083. name: "Macro",
  9084. height: math.unit(143, "feet")
  9085. },
  9086. {
  9087. name: "Macro+",
  9088. height: math.unit(400, "feet")
  9089. },
  9090. ]
  9091. ))
  9092. characterMakers.push(() => makeCharacter(
  9093. { name: "Daniel", species: ["husky"], tags: ["anthro"] },
  9094. {
  9095. front: {
  9096. height: math.unit(6, "feet"),
  9097. weight: math.unit(225, "lbs"),
  9098. name: "Front",
  9099. image: {
  9100. source: "./media/characters/daniel/front.svg"
  9101. }
  9102. },
  9103. leaning: {
  9104. height: math.unit(6, "feet"),
  9105. weight: math.unit(225, "lbs"),
  9106. name: "Leaning",
  9107. image: {
  9108. source: "./media/characters/daniel/leaning.svg"
  9109. }
  9110. },
  9111. },
  9112. [
  9113. {
  9114. name: "Macro",
  9115. height: math.unit(1000, "feet"),
  9116. default: true
  9117. },
  9118. ]
  9119. ))
  9120. characterMakers.push(() => makeCharacter(
  9121. { name: "Chiros", species: ["long-eared-bat"], tags: ["anthro"] },
  9122. {
  9123. front: {
  9124. height: math.unit(6, "feet"),
  9125. weight: math.unit(88, "lbs"),
  9126. name: "Front",
  9127. image: {
  9128. source: "./media/characters/chiros/front.svg",
  9129. extra: 306 / 226
  9130. }
  9131. },
  9132. side: {
  9133. height: math.unit(6, "feet"),
  9134. weight: math.unit(88, "lbs"),
  9135. name: "Side",
  9136. image: {
  9137. source: "./media/characters/chiros/side.svg",
  9138. extra: 306 / 226
  9139. }
  9140. },
  9141. },
  9142. [
  9143. {
  9144. name: "Normal",
  9145. height: math.unit(6, "cm"),
  9146. default: true
  9147. },
  9148. ]
  9149. ))
  9150. characterMakers.push(() => makeCharacter(
  9151. { name: "Selka", species: ["snake"], tags: ["naga"] },
  9152. {
  9153. front: {
  9154. height: math.unit(6, "feet"),
  9155. weight: math.unit(100, "lbs"),
  9156. name: "Front",
  9157. image: {
  9158. source: "./media/characters/selka/front.svg",
  9159. extra: 947 / 887
  9160. }
  9161. }
  9162. },
  9163. [
  9164. {
  9165. name: "Normal",
  9166. height: math.unit(5, "cm"),
  9167. default: true
  9168. },
  9169. ]
  9170. ))
  9171. characterMakers.push(() => makeCharacter(
  9172. { name: "Verin", species: ["dragon"], tags: ["anthro"] },
  9173. {
  9174. front: {
  9175. height: math.unit(8 + 3 / 12, "feet"),
  9176. weight: math.unit(424, "lbs"),
  9177. name: "Front",
  9178. image: {
  9179. source: "./media/characters/verin/front.svg",
  9180. extra: 1845 / 1550
  9181. }
  9182. },
  9183. frontArmored: {
  9184. height: math.unit(8 + 3 / 12, "feet"),
  9185. weight: math.unit(424, "lbs"),
  9186. name: "Front (Armored)",
  9187. image: {
  9188. source: "./media/characters/verin/front-armor.svg",
  9189. extra: 1845 / 1550,
  9190. bottom: 0.01
  9191. }
  9192. },
  9193. back: {
  9194. height: math.unit(8 + 3 / 12, "feet"),
  9195. weight: math.unit(424, "lbs"),
  9196. name: "Back",
  9197. image: {
  9198. source: "./media/characters/verin/back.svg",
  9199. bottom: 0.1,
  9200. extra: 1
  9201. }
  9202. },
  9203. foot: {
  9204. height: math.unit((8 + 3 / 12) / 4.7, "feet"),
  9205. name: "Foot",
  9206. image: {
  9207. source: "./media/characters/verin/foot.svg"
  9208. }
  9209. },
  9210. },
  9211. [
  9212. {
  9213. name: "Normal",
  9214. height: math.unit(8 + 3 / 12, "feet")
  9215. },
  9216. {
  9217. name: "Minimacro",
  9218. height: math.unit(21, "feet"),
  9219. default: true
  9220. },
  9221. {
  9222. name: "Macro",
  9223. height: math.unit(626, "feet")
  9224. },
  9225. ]
  9226. ))
  9227. characterMakers.push(() => makeCharacter(
  9228. { name: "Sovrim Terraquian", species: ["salamander", "chameleon"], tags: ["anthro"] },
  9229. {
  9230. front: {
  9231. height: math.unit(2.718, "meters"),
  9232. weight: math.unit(150, "lbs"),
  9233. name: "Front",
  9234. image: {
  9235. source: "./media/characters/sovrim-terraquian/front.svg",
  9236. extra: 1752/1689,
  9237. bottom: 36/1788
  9238. }
  9239. },
  9240. back: {
  9241. height: math.unit(2.718, "meters"),
  9242. weight: math.unit(150, "lbs"),
  9243. name: "Back",
  9244. image: {
  9245. source: "./media/characters/sovrim-terraquian/back.svg",
  9246. extra: 1698/1657,
  9247. bottom: 58/1756
  9248. }
  9249. },
  9250. tongue: {
  9251. height: math.unit(2.865, "feet"),
  9252. name: "Tongue",
  9253. image: {
  9254. source: "./media/characters/sovrim-terraquian/tongue.svg"
  9255. }
  9256. },
  9257. hand: {
  9258. height: math.unit(1.61, "feet"),
  9259. name: "Hand",
  9260. image: {
  9261. source: "./media/characters/sovrim-terraquian/hand.svg"
  9262. }
  9263. },
  9264. foot: {
  9265. height: math.unit(1.05, "feet"),
  9266. name: "Foot",
  9267. image: {
  9268. source: "./media/characters/sovrim-terraquian/foot.svg"
  9269. }
  9270. },
  9271. footAlt: {
  9272. height: math.unit(0.88, "feet"),
  9273. name: "Foot (Alt)",
  9274. image: {
  9275. source: "./media/characters/sovrim-terraquian/foot-alt.svg"
  9276. }
  9277. },
  9278. },
  9279. [
  9280. {
  9281. name: "Micro",
  9282. height: math.unit(2, "inches")
  9283. },
  9284. {
  9285. name: "Small",
  9286. height: math.unit(1, "meter")
  9287. },
  9288. {
  9289. name: "Normal",
  9290. height: math.unit(Math.E, "meters"),
  9291. default: true
  9292. },
  9293. {
  9294. name: "Macro",
  9295. height: math.unit(20, "meters")
  9296. },
  9297. {
  9298. name: "Macro+",
  9299. height: math.unit(400, "meters")
  9300. },
  9301. ]
  9302. ))
  9303. characterMakers.push(() => makeCharacter(
  9304. { name: "Reece Silvermane", species: ["horse"], tags: ["anthro"] },
  9305. {
  9306. front: {
  9307. height: math.unit(7, "feet"),
  9308. weight: math.unit(489, "lbs"),
  9309. name: "Front",
  9310. image: {
  9311. source: "./media/characters/reece-silvermane/front.svg",
  9312. bottom: 0.02,
  9313. extra: 1
  9314. }
  9315. },
  9316. },
  9317. [
  9318. {
  9319. name: "Macro",
  9320. height: math.unit(1.5, "miles"),
  9321. default: true
  9322. },
  9323. ]
  9324. ))
  9325. characterMakers.push(() => makeCharacter(
  9326. { name: "Kane", species: ["demon", "wolf"], tags: ["anthro"] },
  9327. {
  9328. front: {
  9329. height: math.unit(6, "feet"),
  9330. weight: math.unit(78, "kg"),
  9331. name: "Front",
  9332. image: {
  9333. source: "./media/characters/kane/front.svg",
  9334. extra: 978 / 899
  9335. }
  9336. },
  9337. back: {
  9338. height: math.unit(6, "feet"),
  9339. weight: math.unit(78, "kg"),
  9340. name: "Back",
  9341. image: {
  9342. source: "./media/characters/kane/back.svg",
  9343. extra: 1966/1800,
  9344. bottom: 0/1966
  9345. }
  9346. },
  9347. head: {
  9348. height: math.unit(1.4, "feet"),
  9349. name: "Head",
  9350. image: {
  9351. source: "./media/characters/kane/head.svg"
  9352. }
  9353. },
  9354. },
  9355. [
  9356. {
  9357. name: "Normal",
  9358. height: math.unit(2.1, "m"),
  9359. },
  9360. {
  9361. name: "Macro",
  9362. height: math.unit(1, "km"),
  9363. default: true
  9364. },
  9365. ]
  9366. ))
  9367. characterMakers.push(() => makeCharacter(
  9368. { name: "Tegon", species: ["dragon"], tags: ["anthro"] },
  9369. {
  9370. front: {
  9371. height: math.unit(6, "feet"),
  9372. weight: math.unit(200, "kg"),
  9373. name: "Front",
  9374. image: {
  9375. source: "./media/characters/tegon/front.svg",
  9376. bottom: 0.01,
  9377. extra: 1
  9378. }
  9379. },
  9380. },
  9381. [
  9382. {
  9383. name: "Micro",
  9384. height: math.unit(1, "inch")
  9385. },
  9386. {
  9387. name: "Normal",
  9388. height: math.unit(6 + 3 / 12, "feet"),
  9389. default: true
  9390. },
  9391. {
  9392. name: "Macro",
  9393. height: math.unit(300, "feet")
  9394. },
  9395. {
  9396. name: "Megamacro",
  9397. height: math.unit(69, "miles")
  9398. },
  9399. ]
  9400. ))
  9401. characterMakers.push(() => makeCharacter(
  9402. { name: "Arcturax", species: ["bat", "gryphon"], tags: ["anthro"] },
  9403. {
  9404. side: {
  9405. height: math.unit(6, "feet"),
  9406. weight: math.unit(2304, "lbs"),
  9407. name: "Side",
  9408. image: {
  9409. source: "./media/characters/arcturax/side.svg",
  9410. extra: 790 / 376,
  9411. bottom: 0.01
  9412. }
  9413. },
  9414. },
  9415. [
  9416. {
  9417. name: "Micro",
  9418. height: math.unit(2, "inch")
  9419. },
  9420. {
  9421. name: "Normal",
  9422. height: math.unit(6, "feet")
  9423. },
  9424. {
  9425. name: "Macro",
  9426. height: math.unit(39, "feet"),
  9427. default: true
  9428. },
  9429. {
  9430. name: "Megamacro",
  9431. height: math.unit(7, "miles")
  9432. },
  9433. ]
  9434. ))
  9435. characterMakers.push(() => makeCharacter(
  9436. { name: "Sentri", species: ["eagle"], tags: ["anthro"] },
  9437. {
  9438. front: {
  9439. height: math.unit(6, "feet"),
  9440. weight: math.unit(50, "lbs"),
  9441. name: "Front",
  9442. image: {
  9443. source: "./media/characters/sentri/front.svg",
  9444. extra: 1750 / 1570,
  9445. bottom: 0.025
  9446. }
  9447. },
  9448. frontAlt: {
  9449. height: math.unit(6, "feet"),
  9450. weight: math.unit(50, "lbs"),
  9451. name: "Front (Alt)",
  9452. image: {
  9453. source: "./media/characters/sentri/front-alt.svg",
  9454. extra: 1750 / 1570,
  9455. bottom: 0.025
  9456. }
  9457. },
  9458. },
  9459. [
  9460. {
  9461. name: "Normal",
  9462. height: math.unit(15, "feet"),
  9463. default: true
  9464. },
  9465. {
  9466. name: "Macro",
  9467. height: math.unit(2500, "feet")
  9468. }
  9469. ]
  9470. ))
  9471. characterMakers.push(() => makeCharacter(
  9472. { name: "Corvin", species: ["gecko"], tags: ["anthro"] },
  9473. {
  9474. front: {
  9475. height: math.unit(5 + 8 / 12, "feet"),
  9476. weight: math.unit(130, "lbs"),
  9477. name: "Front",
  9478. image: {
  9479. source: "./media/characters/corvin/front.svg",
  9480. extra: 1803 / 1629
  9481. }
  9482. },
  9483. frontShirt: {
  9484. height: math.unit(5 + 8 / 12, "feet"),
  9485. weight: math.unit(130, "lbs"),
  9486. name: "Front (Shirt)",
  9487. image: {
  9488. source: "./media/characters/corvin/front-shirt.svg",
  9489. extra: 1803 / 1629
  9490. }
  9491. },
  9492. frontPoncho: {
  9493. height: math.unit(5 + 8 / 12, "feet"),
  9494. weight: math.unit(130, "lbs"),
  9495. name: "Front (Poncho)",
  9496. image: {
  9497. source: "./media/characters/corvin/front-poncho.svg",
  9498. extra: 1803 / 1629
  9499. }
  9500. },
  9501. side: {
  9502. height: math.unit(5 + 8 / 12, "feet"),
  9503. weight: math.unit(130, "lbs"),
  9504. name: "Side",
  9505. image: {
  9506. source: "./media/characters/corvin/side.svg",
  9507. extra: 1012 / 945
  9508. }
  9509. },
  9510. back: {
  9511. height: math.unit(5 + 8 / 12, "feet"),
  9512. weight: math.unit(130, "lbs"),
  9513. name: "Back",
  9514. image: {
  9515. source: "./media/characters/corvin/back.svg",
  9516. extra: 1803 / 1629
  9517. }
  9518. },
  9519. },
  9520. [
  9521. {
  9522. name: "Micro",
  9523. height: math.unit(3, "inches")
  9524. },
  9525. {
  9526. name: "Normal",
  9527. height: math.unit(5 + 8 / 12, "feet")
  9528. },
  9529. {
  9530. name: "Macro",
  9531. height: math.unit(300, "feet"),
  9532. default: true
  9533. },
  9534. {
  9535. name: "Megamacro",
  9536. height: math.unit(500, "miles")
  9537. }
  9538. ]
  9539. ))
  9540. characterMakers.push(() => makeCharacter(
  9541. { name: "Q", species: ["wolf"], tags: ["anthro"] },
  9542. {
  9543. front: {
  9544. height: math.unit(6, "feet"),
  9545. weight: math.unit(135, "lbs"),
  9546. name: "Front",
  9547. image: {
  9548. source: "./media/characters/q/front.svg",
  9549. extra: 854 / 752,
  9550. bottom: 0.005
  9551. }
  9552. },
  9553. back: {
  9554. height: math.unit(6, "feet"),
  9555. weight: math.unit(130, "lbs"),
  9556. name: "Back",
  9557. image: {
  9558. source: "./media/characters/q/back.svg",
  9559. extra: 854 / 752
  9560. }
  9561. },
  9562. },
  9563. [
  9564. {
  9565. name: "Macro",
  9566. height: math.unit(90, "feet"),
  9567. default: true
  9568. },
  9569. {
  9570. name: "Extra Macro",
  9571. height: math.unit(300, "feet"),
  9572. },
  9573. {
  9574. name: "BIG WALF",
  9575. height: math.unit(750, "feet"),
  9576. },
  9577. ]
  9578. ))
  9579. characterMakers.push(() => makeCharacter(
  9580. { name: "Citrine", species: ["kobold"], tags: ["anthro"] },
  9581. {
  9582. front: {
  9583. height: math.unit(3, "feet"),
  9584. weight: math.unit(28, "lbs"),
  9585. name: "Front",
  9586. image: {
  9587. source: "./media/characters/citrine/front.svg"
  9588. }
  9589. }
  9590. },
  9591. [
  9592. {
  9593. name: "Normal",
  9594. height: math.unit(3, "feet"),
  9595. default: true
  9596. }
  9597. ]
  9598. ))
  9599. characterMakers.push(() => makeCharacter(
  9600. { name: "Aura Starwind", species: ["fox"], tags: ["anthro", "taur"] },
  9601. {
  9602. front: {
  9603. height: math.unit(14, "feet"),
  9604. weight: math.unit(1450, "kg"),
  9605. preyCapacity: math.unit(15, "people"),
  9606. name: "Front",
  9607. image: {
  9608. source: "./media/characters/aura-starwind/front.svg",
  9609. extra: 1440/1327,
  9610. bottom: 11/1451
  9611. }
  9612. },
  9613. side: {
  9614. height: math.unit(14, "feet"),
  9615. weight: math.unit(1450, "kg"),
  9616. preyCapacity: math.unit(15, "people"),
  9617. name: "Side",
  9618. image: {
  9619. source: "./media/characters/aura-starwind/side.svg",
  9620. extra: 1654 / 1497
  9621. }
  9622. },
  9623. taur: {
  9624. height: math.unit(18, "feet"),
  9625. weight: math.unit(5500, "kg"),
  9626. preyCapacity: math.unit(50, "people"),
  9627. name: "Taur",
  9628. image: {
  9629. source: "./media/characters/aura-starwind/taur.svg",
  9630. extra: 1760 / 1650
  9631. }
  9632. },
  9633. feral: {
  9634. height: math.unit(46, "feet"),
  9635. weight: math.unit(25000, "kg"),
  9636. preyCapacity: math.unit(120, "people"),
  9637. name: "Feral",
  9638. image: {
  9639. source: "./media/characters/aura-starwind/feral.svg"
  9640. }
  9641. },
  9642. },
  9643. [
  9644. {
  9645. name: "Normal",
  9646. height: math.unit(14, "feet"),
  9647. default: true
  9648. },
  9649. {
  9650. name: "Macro",
  9651. height: math.unit(50, "meters")
  9652. },
  9653. {
  9654. name: "Megamacro",
  9655. height: math.unit(5000, "meters")
  9656. },
  9657. {
  9658. name: "Gigamacro",
  9659. height: math.unit(100000, "kilometers")
  9660. },
  9661. ]
  9662. ))
  9663. characterMakers.push(() => makeCharacter(
  9664. { name: "Rivet", species: ["kobold"], tags: ["anthro"] },
  9665. {
  9666. front: {
  9667. height: math.unit(2 + 7 / 12, "feet"),
  9668. weight: math.unit(32, "lbs"),
  9669. name: "Front",
  9670. image: {
  9671. source: "./media/characters/rivet/front.svg",
  9672. extra: 1716 / 1658,
  9673. bottom: 0.03
  9674. }
  9675. },
  9676. foot: {
  9677. height: math.unit(0.551, "feet"),
  9678. name: "Rivet's Foot",
  9679. image: {
  9680. source: "./media/characters/rivet/foot.svg"
  9681. },
  9682. rename: true
  9683. }
  9684. },
  9685. [
  9686. {
  9687. name: "Micro",
  9688. height: math.unit(1.5, "inches"),
  9689. },
  9690. {
  9691. name: "Normal",
  9692. height: math.unit(2 + 7 / 12, "feet"),
  9693. default: true
  9694. },
  9695. {
  9696. name: "Macro",
  9697. height: math.unit(85, "feet")
  9698. },
  9699. {
  9700. name: "Megamacro",
  9701. height: math.unit(2.2, "km")
  9702. }
  9703. ]
  9704. ))
  9705. characterMakers.push(() => makeCharacter(
  9706. { name: "Coffee", species: ["dog"], tags: ["anthro"] },
  9707. {
  9708. front: {
  9709. height: math.unit(5 + 9 / 12, "feet"),
  9710. weight: math.unit(150, "lbs"),
  9711. name: "Front",
  9712. image: {
  9713. source: "./media/characters/coffee/front.svg",
  9714. extra: 946/880,
  9715. bottom: 66/1012
  9716. }
  9717. },
  9718. foot: {
  9719. height: math.unit(1.29, "feet"),
  9720. name: "Foot",
  9721. image: {
  9722. source: "./media/characters/coffee/foot.svg"
  9723. }
  9724. },
  9725. },
  9726. [
  9727. {
  9728. name: "Micro",
  9729. height: math.unit(2, "inches"),
  9730. },
  9731. {
  9732. name: "Normal",
  9733. height: math.unit(5 + 9 / 12, "feet"),
  9734. default: true
  9735. },
  9736. {
  9737. name: "Macro",
  9738. height: math.unit(800, "feet")
  9739. },
  9740. {
  9741. name: "Megamacro",
  9742. height: math.unit(25, "miles")
  9743. }
  9744. ]
  9745. ))
  9746. characterMakers.push(() => makeCharacter(
  9747. { name: "Chari-Gal", species: ["charizard"], tags: ["anthro"] },
  9748. {
  9749. front: {
  9750. height: math.unit(6, "feet"),
  9751. weight: math.unit(200, "lbs"),
  9752. name: "Front",
  9753. image: {
  9754. source: "./media/characters/chari-gal/front.svg",
  9755. extra: 735/649,
  9756. bottom: 55/790
  9757. },
  9758. form: "normal",
  9759. default: true
  9760. },
  9761. back: {
  9762. height: math.unit(6, "feet"),
  9763. weight: math.unit(200, "lb"),
  9764. name: "Back",
  9765. image: {
  9766. source: "./media/characters/chari-gal/back.svg",
  9767. extra: 762/666,
  9768. bottom: 31/793
  9769. },
  9770. form: "normal"
  9771. },
  9772. mouth: {
  9773. height: math.unit(1.35, "feet"),
  9774. name: "Mouth",
  9775. image: {
  9776. source: "./media/characters/chari-gal/mouth.svg"
  9777. },
  9778. form: "normal"
  9779. },
  9780. gigantamax: {
  9781. height: math.unit(6 * 16, "feet"),
  9782. weight: math.unit(200 * 16 * 16 * 16, "lbs"),
  9783. name: "Gigantamax",
  9784. image: {
  9785. source: "./media/characters/chari-gal/gigantamax-front.svg",
  9786. extra: 1507/1149,
  9787. bottom: 254/1761
  9788. },
  9789. form: "gigantamax",
  9790. default: true
  9791. },
  9792. },
  9793. [
  9794. {
  9795. name: "Normal",
  9796. height: math.unit(5 + 7 / 12, "feet"),
  9797. form: "normal",
  9798. },
  9799. {
  9800. name: "Macro",
  9801. height: math.unit(200, "feet"),
  9802. default: true,
  9803. form: "normal"
  9804. },
  9805. {
  9806. name: "Normal",
  9807. height: math.unit(16 * (5 + 7 / 12), "feet"),
  9808. form: "gigantamax",
  9809. },
  9810. {
  9811. name: "Macro",
  9812. height: math.unit(16 * 200, "feet"),
  9813. default: true,
  9814. form: "gigantamax"
  9815. },
  9816. ],
  9817. {
  9818. "normal": {
  9819. name: "Normal",
  9820. default: true
  9821. },
  9822. "gigantamax": {
  9823. name: "Gigantamax",
  9824. },
  9825. }
  9826. ))
  9827. characterMakers.push(() => makeCharacter(
  9828. { name: "Nova", species: ["wolf"], tags: ["anthro"] },
  9829. {
  9830. front: {
  9831. height: math.unit(6, "feet"),
  9832. weight: math.unit(150, "lbs"),
  9833. name: "Front",
  9834. image: {
  9835. source: "./media/characters/nova/front.svg",
  9836. extra: 5000 / 4722,
  9837. bottom: 0.02
  9838. }
  9839. }
  9840. },
  9841. [
  9842. {
  9843. name: "Micro-",
  9844. height: math.unit(0.8, "inches")
  9845. },
  9846. {
  9847. name: "Micro",
  9848. height: math.unit(2, "inches"),
  9849. default: true
  9850. },
  9851. ]
  9852. ))
  9853. characterMakers.push(() => makeCharacter(
  9854. { name: "Argent", species: ["kobold"], tags: ["anthro"] },
  9855. {
  9856. koboldFront: {
  9857. height: math.unit(3 + 1 / 12, "feet"),
  9858. weight: math.unit(21.7, "lbs"),
  9859. name: "Front",
  9860. image: {
  9861. source: "./media/characters/argent/kobold-front.svg",
  9862. extra: 1471 / 1331,
  9863. bottom: 100.8 / 1575.5
  9864. },
  9865. form: "kobold",
  9866. default: true
  9867. },
  9868. dragonFront: {
  9869. height: math.unit(75, "inches"),
  9870. name: "Front",
  9871. image: {
  9872. source: "./media/characters/argent/dragon-front.svg",
  9873. extra: 1389/1248,
  9874. bottom: 54/1443
  9875. },
  9876. form: "dragon",
  9877. },
  9878. dragonBack: {
  9879. height: math.unit(75, "inches"),
  9880. name: "Back",
  9881. image: {
  9882. source: "./media/characters/argent/dragon-back.svg",
  9883. extra: 1399/1271,
  9884. bottom: 23/1422
  9885. },
  9886. form: "dragon",
  9887. },
  9888. dragonDressed: {
  9889. height: math.unit(75, "inches"),
  9890. name: "Dressed",
  9891. image: {
  9892. source: "./media/characters/argent/dragon-dressed.svg",
  9893. extra: 1350/1215,
  9894. bottom: 26/1376
  9895. },
  9896. form: "dragon"
  9897. },
  9898. dragonHead: {
  9899. height: math.unit(23.5, "inches"),
  9900. name: "Head",
  9901. image: {
  9902. source: "./media/characters/argent/dragon-head.svg"
  9903. },
  9904. form: "dragon",
  9905. },
  9906. },
  9907. [
  9908. {
  9909. name: "Micro",
  9910. height: math.unit(2, "inches"),
  9911. form: "kobold",
  9912. },
  9913. {
  9914. name: "Normal",
  9915. height: math.unit(3 + 1 / 12, "feet"),
  9916. form: "kobold",
  9917. default: true
  9918. },
  9919. {
  9920. name: "Macro",
  9921. height: math.unit(120, "feet"),
  9922. form: "kobold",
  9923. },
  9924. {
  9925. name: "Speck",
  9926. height: math.unit(1, "mm"),
  9927. form: "dragon",
  9928. },
  9929. {
  9930. name: "Tiny",
  9931. height: math.unit(1, "cm"),
  9932. form: "dragon",
  9933. },
  9934. {
  9935. name: "Micro",
  9936. height: math.unit(5, "cm"),
  9937. form: "dragon",
  9938. },
  9939. {
  9940. name: "Normal",
  9941. height: math.unit(75, "inches"),
  9942. form: "dragon",
  9943. default: true
  9944. },
  9945. {
  9946. name: "Extra Tall",
  9947. height: math.unit(9, "feet"),
  9948. form: "dragon",
  9949. },
  9950. {
  9951. name: "Inconvenient",
  9952. height: math.unit(5, "meters"),
  9953. form: "dragon",
  9954. },
  9955. {
  9956. name: "Macro",
  9957. height: math.unit(70, "meters"),
  9958. form: "dragon",
  9959. },
  9960. {
  9961. name: "Macro+",
  9962. height: math.unit(250, "meters"),
  9963. form: "dragon",
  9964. },
  9965. {
  9966. name: "Megamacro",
  9967. height: math.unit(20, "km"),
  9968. form: "dragon",
  9969. },
  9970. {
  9971. name: "Mountainous",
  9972. height: math.unit(100, "km"),
  9973. form: "dragon",
  9974. },
  9975. {
  9976. name: "Continental",
  9977. height: math.unit(2, "megameters"),
  9978. form: "dragon",
  9979. },
  9980. {
  9981. name: "Too Big",
  9982. height: math.unit(900, "megameters"),
  9983. form: "dragon",
  9984. },
  9985. ],
  9986. {
  9987. "kobold": {
  9988. name: "Kobold",
  9989. default: true
  9990. },
  9991. "dragon": {
  9992. name: "Dragon",
  9993. },
  9994. }
  9995. ))
  9996. characterMakers.push(() => makeCharacter(
  9997. { name: "Mira al-Cul", species: ["snake"], tags: ["naga"] },
  9998. {
  9999. lamp: {
  10000. height: math.unit(7 * 1559 / 989, "feet"),
  10001. name: "Magic Lamp",
  10002. image: {
  10003. source: "./media/characters/mira-al-cul/lamp.svg",
  10004. extra: 1617 / 1559
  10005. }
  10006. },
  10007. front: {
  10008. height: math.unit(7, "feet"),
  10009. name: "Front",
  10010. image: {
  10011. source: "./media/characters/mira-al-cul/front.svg",
  10012. extra: 1044 / 990
  10013. }
  10014. },
  10015. },
  10016. [
  10017. {
  10018. name: "Heavily Restricted",
  10019. height: math.unit(7 * 1559 / 989, "feet")
  10020. },
  10021. {
  10022. name: "Freshly Freed",
  10023. height: math.unit(50 * 1559 / 989, "feet")
  10024. },
  10025. {
  10026. name: "World Encompassing",
  10027. height: math.unit(10000 * 1559 / 989, "miles")
  10028. },
  10029. {
  10030. name: "Galactic",
  10031. height: math.unit(1.433 * 1559 / 989, "zettameters")
  10032. },
  10033. {
  10034. name: "Palmed Universe",
  10035. height: math.unit(6000 * 1559 / 989, "yottameters"),
  10036. default: true
  10037. },
  10038. {
  10039. name: "Multiversal Matriarch",
  10040. height: math.unit(8.87e10, "yottameters")
  10041. },
  10042. {
  10043. name: "Void Mother",
  10044. height: math.unit(3.14e110, "yottaparsecs")
  10045. },
  10046. {
  10047. name: "Toying with Transcendence",
  10048. height: math.unit(1e307, "meters")
  10049. },
  10050. ]
  10051. ))
  10052. characterMakers.push(() => makeCharacter(
  10053. { name: "Kuro-shi Uchū", species: ["lugia"], tags: ["feral"] },
  10054. {
  10055. front: {
  10056. height: math.unit(17 + 1 / 12, "feet"),
  10057. weight: math.unit(476.2 * 5, "lbs"),
  10058. name: "Front",
  10059. image: {
  10060. source: "./media/characters/kuro-shi-uchū/front.svg",
  10061. extra: 2329 / 1835,
  10062. bottom: 0.02
  10063. }
  10064. },
  10065. },
  10066. [
  10067. {
  10068. name: "Micro",
  10069. height: math.unit(2, "inches")
  10070. },
  10071. {
  10072. name: "Normal",
  10073. height: math.unit(12, "meters")
  10074. },
  10075. {
  10076. name: "Planetary",
  10077. height: math.unit(0.00929, "AU"),
  10078. default: true
  10079. },
  10080. {
  10081. name: "Universal",
  10082. height: math.unit(20, "gigaparsecs")
  10083. },
  10084. ]
  10085. ))
  10086. characterMakers.push(() => makeCharacter(
  10087. { name: "Katherine", species: ["fox"], tags: ["anthro"] },
  10088. {
  10089. front: {
  10090. height: math.unit(5 + 2 / 12, "feet"),
  10091. weight: math.unit(120, "lbs"),
  10092. name: "Front",
  10093. image: {
  10094. source: "./media/characters/katherine/front.svg",
  10095. extra: 2075 / 1969
  10096. }
  10097. },
  10098. dress: {
  10099. height: math.unit(5 + 2 / 12, "feet"),
  10100. weight: math.unit(120, "lbs"),
  10101. name: "Dress",
  10102. image: {
  10103. source: "./media/characters/katherine/dress.svg",
  10104. extra: 2258 / 2064
  10105. }
  10106. },
  10107. },
  10108. [
  10109. {
  10110. name: "Micro",
  10111. height: math.unit(1, "inches"),
  10112. default: true
  10113. },
  10114. {
  10115. name: "Normal",
  10116. height: math.unit(5 + 2 / 12, "feet")
  10117. },
  10118. {
  10119. name: "Macro",
  10120. height: math.unit(100, "meters")
  10121. },
  10122. {
  10123. name: "Megamacro",
  10124. height: math.unit(80, "miles")
  10125. },
  10126. ]
  10127. ))
  10128. characterMakers.push(() => makeCharacter(
  10129. { name: "Yevis", species: ["cerberus"], tags: ["anthro"] },
  10130. {
  10131. front: {
  10132. height: math.unit(7 + 8 / 12, "feet"),
  10133. weight: math.unit(250, "lbs"),
  10134. name: "Front",
  10135. image: {
  10136. source: "./media/characters/yevis/front.svg",
  10137. extra: 1938 / 1755
  10138. }
  10139. }
  10140. },
  10141. [
  10142. {
  10143. name: "Mortal",
  10144. height: math.unit(7 + 8 / 12, "feet")
  10145. },
  10146. {
  10147. name: "Battle",
  10148. height: math.unit(25 + 11 / 12, "feet")
  10149. },
  10150. {
  10151. name: "Wrath",
  10152. height: math.unit(1654 + 11 / 12, "feet")
  10153. },
  10154. {
  10155. name: "Planet Destroyer",
  10156. height: math.unit(12000, "miles")
  10157. },
  10158. {
  10159. name: "Galaxy Conqueror",
  10160. height: math.unit(1.45, "zettameters"),
  10161. default: true
  10162. },
  10163. {
  10164. name: "Universal War",
  10165. height: math.unit(184, "gigaparsecs")
  10166. },
  10167. {
  10168. name: "Eternity War",
  10169. height: math.unit(1.98e55, "yottaparsecs")
  10170. },
  10171. ]
  10172. ))
  10173. characterMakers.push(() => makeCharacter(
  10174. { name: "Xavier", species: ["fox"], tags: ["anthro"] },
  10175. {
  10176. front: {
  10177. height: math.unit(5 + 8 / 12, "feet"),
  10178. weight: math.unit(63, "kg"),
  10179. name: "Front",
  10180. image: {
  10181. source: "./media/characters/xavier/front.svg",
  10182. extra: 944 / 883
  10183. }
  10184. },
  10185. frontStretch: {
  10186. height: math.unit(5 + 8 / 12, "feet"),
  10187. weight: math.unit(63, "kg"),
  10188. name: "Stretching",
  10189. image: {
  10190. source: "./media/characters/xavier/front-stretch.svg",
  10191. extra: 962 / 820
  10192. }
  10193. },
  10194. },
  10195. [
  10196. {
  10197. name: "Normal",
  10198. height: math.unit(5 + 8 / 12, "feet")
  10199. },
  10200. {
  10201. name: "Macro",
  10202. height: math.unit(100, "meters"),
  10203. default: true
  10204. },
  10205. {
  10206. name: "McLargeHuge",
  10207. height: math.unit(10, "miles")
  10208. },
  10209. ]
  10210. ))
  10211. characterMakers.push(() => makeCharacter(
  10212. { name: "Joshii", species: ["cat", "rabbit", "demon"], tags: ["anthro"] },
  10213. {
  10214. front: {
  10215. height: math.unit(5 + 5 / 12, "feet"),
  10216. weight: math.unit(150, "lb"),
  10217. name: "Front",
  10218. image: {
  10219. source: "./media/characters/joshii/front.svg",
  10220. extra: 765 / 653,
  10221. bottom: 51 / 816
  10222. }
  10223. },
  10224. foot: {
  10225. height: math.unit((5 + 5 / 12) * 0.1676, "feet"),
  10226. name: "Foot",
  10227. image: {
  10228. source: "./media/characters/joshii/foot.svg"
  10229. }
  10230. },
  10231. },
  10232. [
  10233. {
  10234. name: "Micro",
  10235. height: math.unit(2, "inches")
  10236. },
  10237. {
  10238. name: "Normal",
  10239. height: math.unit(5 + 5 / 12, "feet")
  10240. },
  10241. {
  10242. name: "Macro",
  10243. height: math.unit(785, "feet"),
  10244. default: true
  10245. },
  10246. {
  10247. name: "Megamacro",
  10248. height: math.unit(24.5, "miles")
  10249. },
  10250. ]
  10251. ))
  10252. characterMakers.push(() => makeCharacter(
  10253. { name: "Goddess Elizabeth", species: ["wolf", "deity"], tags: ["anthro"] },
  10254. {
  10255. front: {
  10256. height: math.unit(6, "feet"),
  10257. weight: math.unit(150, "lb"),
  10258. name: "Front",
  10259. image: {
  10260. source: "./media/characters/goddess-elizabeth/front.svg",
  10261. extra: 1800 / 1525,
  10262. bottom: 0.005
  10263. }
  10264. },
  10265. foot: {
  10266. height: math.unit(6 * 0.25436 * 1800 / 1525 / 2, "feet"),
  10267. name: "Foot",
  10268. image: {
  10269. source: "./media/characters/goddess-elizabeth/foot.svg"
  10270. }
  10271. },
  10272. mouth: {
  10273. height: math.unit(6, "feet"),
  10274. name: "Mouth",
  10275. image: {
  10276. source: "./media/characters/goddess-elizabeth/mouth.svg"
  10277. }
  10278. },
  10279. },
  10280. [
  10281. {
  10282. name: "Micro",
  10283. height: math.unit(12, "feet")
  10284. },
  10285. {
  10286. name: "Normal",
  10287. height: math.unit(80, "miles"),
  10288. default: true
  10289. },
  10290. {
  10291. name: "Macro",
  10292. height: math.unit(15000, "parsecs")
  10293. },
  10294. ]
  10295. ))
  10296. characterMakers.push(() => makeCharacter(
  10297. { name: "Kara", species: ["wolf"], tags: ["anthro"] },
  10298. {
  10299. front: {
  10300. height: math.unit(5 + 9 / 12, "feet"),
  10301. weight: math.unit(144, "lb"),
  10302. name: "Front",
  10303. image: {
  10304. source: "./media/characters/kara/front.svg"
  10305. }
  10306. },
  10307. feet: {
  10308. height: math.unit(6 / 6.765, "feet"),
  10309. name: "Kara's Feet",
  10310. rename: true,
  10311. image: {
  10312. source: "./media/characters/kara/feet.svg"
  10313. }
  10314. },
  10315. },
  10316. [
  10317. {
  10318. name: "Normal",
  10319. height: math.unit(5 + 9 / 12, "feet")
  10320. },
  10321. {
  10322. name: "Macro",
  10323. height: math.unit(174, "feet"),
  10324. default: true
  10325. },
  10326. ]
  10327. ))
  10328. characterMakers.push(() => makeCharacter(
  10329. { name: "Tyrone", species: ["tyrantrum"], tags: ["anthro"] },
  10330. {
  10331. front: {
  10332. height: math.unit(18, "feet"),
  10333. weight: math.unit(4050, "lb"),
  10334. name: "Front",
  10335. image: {
  10336. source: "./media/characters/tyrone/front.svg",
  10337. extra: 2405 / 2270,
  10338. bottom: 182 / 2587
  10339. }
  10340. },
  10341. },
  10342. [
  10343. {
  10344. name: "Normal",
  10345. height: math.unit(18, "feet"),
  10346. default: true
  10347. },
  10348. {
  10349. name: "Macro",
  10350. height: math.unit(300, "feet")
  10351. },
  10352. {
  10353. name: "Megamacro",
  10354. height: math.unit(15, "km")
  10355. },
  10356. {
  10357. name: "Gigamacro",
  10358. height: math.unit(500, "km")
  10359. },
  10360. {
  10361. name: "Teramacro",
  10362. height: math.unit(0.5, "gigameters")
  10363. },
  10364. {
  10365. name: "Omnimacro",
  10366. height: math.unit(1e252, "yottauniverse")
  10367. },
  10368. ]
  10369. ))
  10370. characterMakers.push(() => makeCharacter(
  10371. { name: "Danny", species: ["gryphon"], tags: ["anthro"] },
  10372. {
  10373. front: {
  10374. height: math.unit(7 + 8 / 12, "feet"),
  10375. weight: math.unit(120, "lb"),
  10376. name: "Front",
  10377. image: {
  10378. source: "./media/characters/danny/front.svg",
  10379. extra: 1490 / 1350
  10380. }
  10381. },
  10382. back: {
  10383. height: math.unit(7 + 8 / 12, "feet"),
  10384. weight: math.unit(120, "lb"),
  10385. name: "Back",
  10386. image: {
  10387. source: "./media/characters/danny/back.svg",
  10388. extra: 1490 / 1350
  10389. }
  10390. },
  10391. },
  10392. [
  10393. {
  10394. name: "Normal",
  10395. height: math.unit(7 + 8 / 12, "feet"),
  10396. default: true
  10397. },
  10398. ]
  10399. ))
  10400. characterMakers.push(() => makeCharacter(
  10401. { name: "Mallow", species: ["mouse"], tags: ["anthro"] },
  10402. {
  10403. front: {
  10404. height: math.unit(3.5, "inches"),
  10405. weight: math.unit(19, "grams"),
  10406. name: "Front",
  10407. image: {
  10408. source: "./media/characters/mallow/front.svg",
  10409. extra: 471 / 431
  10410. }
  10411. },
  10412. back: {
  10413. height: math.unit(3.5, "inches"),
  10414. weight: math.unit(19, "grams"),
  10415. name: "Back",
  10416. image: {
  10417. source: "./media/characters/mallow/back.svg",
  10418. extra: 471 / 431
  10419. }
  10420. },
  10421. },
  10422. [
  10423. {
  10424. name: "Normal",
  10425. height: math.unit(3.5, "inches"),
  10426. default: true
  10427. },
  10428. ]
  10429. ))
  10430. characterMakers.push(() => makeCharacter(
  10431. { name: "Starry Aqua", species: ["fennec-fox"], tags: ["anthro"] },
  10432. {
  10433. front: {
  10434. height: math.unit(9, "feet"),
  10435. weight: math.unit(230, "kg"),
  10436. name: "Front",
  10437. image: {
  10438. source: "./media/characters/starry-aqua/front.svg"
  10439. }
  10440. },
  10441. back: {
  10442. height: math.unit(9, "feet"),
  10443. weight: math.unit(230, "kg"),
  10444. name: "Back",
  10445. image: {
  10446. source: "./media/characters/starry-aqua/back.svg"
  10447. }
  10448. },
  10449. hand: {
  10450. height: math.unit(9 * 0.1168, "feet"),
  10451. name: "Hand",
  10452. image: {
  10453. source: "./media/characters/starry-aqua/hand.svg"
  10454. }
  10455. },
  10456. foot: {
  10457. height: math.unit(9 * 0.18, "feet"),
  10458. name: "Foot",
  10459. image: {
  10460. source: "./media/characters/starry-aqua/foot.svg"
  10461. }
  10462. }
  10463. },
  10464. [
  10465. {
  10466. name: "Micro",
  10467. height: math.unit(3, "inches")
  10468. },
  10469. {
  10470. name: "Normal",
  10471. height: math.unit(9, "feet")
  10472. },
  10473. {
  10474. name: "Macro",
  10475. height: math.unit(300, "feet"),
  10476. default: true
  10477. },
  10478. {
  10479. name: "Megamacro",
  10480. height: math.unit(3200, "feet")
  10481. }
  10482. ]
  10483. ))
  10484. characterMakers.push(() => makeCharacter(
  10485. { name: "Luka Towers", species: ["kangaroo"], tags: ["anthro"] },
  10486. {
  10487. front: {
  10488. height: math.unit(15, "feet"),
  10489. weight: math.unit(5026, "lb"),
  10490. name: "Front",
  10491. image: {
  10492. source: "./media/characters/luka-towers/front.svg",
  10493. extra: 1269/1133,
  10494. bottom: 51/1320
  10495. }
  10496. },
  10497. },
  10498. [
  10499. {
  10500. name: "Normal",
  10501. height: math.unit(15, "feet"),
  10502. default: true
  10503. },
  10504. {
  10505. name: "Minimacro",
  10506. height: math.unit(25, "feet")
  10507. },
  10508. {
  10509. name: "Macro",
  10510. height: math.unit(320, "feet")
  10511. },
  10512. {
  10513. name: "Megamacro",
  10514. height: math.unit(35000, "feet")
  10515. },
  10516. {
  10517. name: "Gigamacro",
  10518. height: math.unit(4000, "miles")
  10519. },
  10520. {
  10521. name: "Teramacro",
  10522. height: math.unit(15000, "miles")
  10523. },
  10524. ]
  10525. ))
  10526. characterMakers.push(() => makeCharacter(
  10527. { name: "Natalie Nightring", species: ["lemur"], tags: ["anthro"] },
  10528. {
  10529. front: {
  10530. height: math.unit(6, "feet"),
  10531. weight: math.unit(150, "lb"),
  10532. name: "Front",
  10533. image: {
  10534. source: "./media/characters/natalie-nightring/front.svg",
  10535. extra: 1,
  10536. bottom: 0.06
  10537. }
  10538. },
  10539. },
  10540. [
  10541. {
  10542. name: "Uh Oh",
  10543. height: math.unit(0.1, "mm")
  10544. },
  10545. {
  10546. name: "Small",
  10547. height: math.unit(3, "inches")
  10548. },
  10549. {
  10550. name: "Human Scale",
  10551. height: math.unit(6, "feet")
  10552. },
  10553. {
  10554. name: "Librarian",
  10555. height: math.unit(50, "feet"),
  10556. default: true
  10557. },
  10558. {
  10559. name: "Immense",
  10560. height: math.unit(200, "miles")
  10561. },
  10562. ]
  10563. ))
  10564. characterMakers.push(() => makeCharacter(
  10565. { name: "Danni Rosie", species: ["fox"], tags: ["anthro"] },
  10566. {
  10567. front: {
  10568. height: math.unit(6, "feet"),
  10569. weight: math.unit(180, "lbs"),
  10570. name: "Front",
  10571. image: {
  10572. source: "./media/characters/danni-rosie/front.svg",
  10573. extra: 1260 / 1128,
  10574. bottom: 0.022
  10575. }
  10576. },
  10577. },
  10578. [
  10579. {
  10580. name: "Micro",
  10581. height: math.unit(2, "inches"),
  10582. default: true
  10583. },
  10584. ]
  10585. ))
  10586. characterMakers.push(() => makeCharacter(
  10587. { name: "Samantha Kruse", species: ["human"], tags: ["anthro"] },
  10588. {
  10589. front: {
  10590. height: math.unit(5 + 9 / 12, "feet"),
  10591. weight: math.unit(220, "lb"),
  10592. name: "Front",
  10593. image: {
  10594. source: "./media/characters/samantha-kruse/front.svg",
  10595. extra: (985 / 935),
  10596. bottom: 0.03
  10597. }
  10598. },
  10599. frontUndressed: {
  10600. height: math.unit(5 + 9 / 12, "feet"),
  10601. weight: math.unit(220, "lb"),
  10602. name: "Front (Undressed)",
  10603. image: {
  10604. source: "./media/characters/samantha-kruse/front-undressed.svg",
  10605. extra: (973 / 923),
  10606. bottom: 0.025
  10607. }
  10608. },
  10609. fat: {
  10610. height: math.unit(5 + 9 / 12, "feet"),
  10611. weight: math.unit(900, "lb"),
  10612. name: "Front (Fat)",
  10613. image: {
  10614. source: "./media/characters/samantha-kruse/fat.svg",
  10615. extra: 2688 / 2561
  10616. }
  10617. },
  10618. },
  10619. [
  10620. {
  10621. name: "Normal",
  10622. height: math.unit(5 + 9 / 12, "feet"),
  10623. default: true
  10624. }
  10625. ]
  10626. ))
  10627. characterMakers.push(() => makeCharacter(
  10628. { name: "Amelia Rosie", species: ["human"], tags: ["anthro"] },
  10629. {
  10630. back: {
  10631. height: math.unit(5 + 4 / 12, "feet"),
  10632. weight: math.unit(4963, "lb"),
  10633. name: "Back",
  10634. image: {
  10635. source: "./media/characters/amelia-rosie/back.svg",
  10636. extra: 1113 / 963,
  10637. bottom: 0.01
  10638. }
  10639. },
  10640. },
  10641. [
  10642. {
  10643. name: "Level 0",
  10644. height: math.unit(5 + 4 / 12, "feet")
  10645. },
  10646. {
  10647. name: "Level 1",
  10648. height: math.unit(164597, "feet"),
  10649. default: true
  10650. },
  10651. {
  10652. name: "Level 2",
  10653. height: math.unit(956243, "miles")
  10654. },
  10655. {
  10656. name: "Level 3",
  10657. height: math.unit(29421709423, "miles")
  10658. },
  10659. {
  10660. name: "Level 4",
  10661. height: math.unit(154, "lightyears")
  10662. },
  10663. {
  10664. name: "Level 5",
  10665. height: math.unit(4738272, "lightyears")
  10666. },
  10667. {
  10668. name: "Level 6",
  10669. height: math.unit(145787152896, "lightyears")
  10670. },
  10671. ]
  10672. ))
  10673. characterMakers.push(() => makeCharacter(
  10674. { name: "Rook Kitara", species: ["raskatox"], tags: ["anthro"] },
  10675. {
  10676. front: {
  10677. height: math.unit(5 + 11 / 12, "feet"),
  10678. weight: math.unit(65, "kg"),
  10679. name: "Front",
  10680. image: {
  10681. source: "./media/characters/rook-kitara/front.svg",
  10682. extra: 1347 / 1274,
  10683. bottom: 0.005
  10684. }
  10685. },
  10686. },
  10687. [
  10688. {
  10689. name: "Totally Unfair",
  10690. height: math.unit(1.8, "mm")
  10691. },
  10692. {
  10693. name: "Lap Rookie",
  10694. height: math.unit(1.4, "feet")
  10695. },
  10696. {
  10697. name: "Normal",
  10698. height: math.unit(5 + 11 / 12, "feet"),
  10699. default: true
  10700. },
  10701. {
  10702. name: "How Did This Happen",
  10703. height: math.unit(80, "miles")
  10704. }
  10705. ]
  10706. ))
  10707. characterMakers.push(() => makeCharacter(
  10708. { name: "Pisces", species: ["kelpie"], tags: ["anthro"] },
  10709. {
  10710. front: {
  10711. height: math.unit(7, "feet"),
  10712. weight: math.unit(300, "lb"),
  10713. name: "Front",
  10714. image: {
  10715. source: "./media/characters/pisces/front.svg",
  10716. extra: 2255 / 2115,
  10717. bottom: 0.03
  10718. }
  10719. },
  10720. back: {
  10721. height: math.unit(7, "feet"),
  10722. weight: math.unit(300, "lb"),
  10723. name: "Back",
  10724. image: {
  10725. source: "./media/characters/pisces/back.svg",
  10726. extra: 2146 / 2055,
  10727. bottom: 0.04
  10728. }
  10729. },
  10730. },
  10731. [
  10732. {
  10733. name: "Normal",
  10734. height: math.unit(7, "feet"),
  10735. default: true
  10736. },
  10737. {
  10738. name: "Swimming Pool",
  10739. height: math.unit(12.2, "meters")
  10740. },
  10741. {
  10742. name: "Olympic Swimming Pool",
  10743. height: math.unit(56.3, "meters")
  10744. },
  10745. {
  10746. name: "Lake Superior",
  10747. height: math.unit(93900, "meters")
  10748. },
  10749. {
  10750. name: "Mediterranean Sea",
  10751. height: math.unit(644457, "meters")
  10752. },
  10753. {
  10754. name: "World's Oceans",
  10755. height: math.unit(4567491, "meters")
  10756. },
  10757. ]
  10758. ))
  10759. characterMakers.push(() => makeCharacter(
  10760. { name: "Zelas", species: ["rabbit", "demon"], tags: ["anthro"] },
  10761. {
  10762. front: {
  10763. height: math.unit(2.3, "meters"),
  10764. weight: math.unit(120, "kg"),
  10765. name: "Front",
  10766. image: {
  10767. source: "./media/characters/zelas/front.svg"
  10768. }
  10769. },
  10770. side: {
  10771. height: math.unit(2.3, "meters"),
  10772. weight: math.unit(120, "kg"),
  10773. name: "Side",
  10774. image: {
  10775. source: "./media/characters/zelas/side.svg"
  10776. }
  10777. },
  10778. back: {
  10779. height: math.unit(2.3, "meters"),
  10780. weight: math.unit(120, "kg"),
  10781. name: "Back",
  10782. image: {
  10783. source: "./media/characters/zelas/back.svg"
  10784. }
  10785. },
  10786. foot: {
  10787. height: math.unit(1.116, "feet"),
  10788. name: "Foot",
  10789. image: {
  10790. source: "./media/characters/zelas/foot.svg"
  10791. }
  10792. },
  10793. },
  10794. [
  10795. {
  10796. name: "Normal",
  10797. height: math.unit(2.3, "meters")
  10798. },
  10799. {
  10800. name: "Macro",
  10801. height: math.unit(30, "meters"),
  10802. default: true
  10803. },
  10804. ]
  10805. ))
  10806. characterMakers.push(() => makeCharacter(
  10807. { name: "Talbot", species: ["husky", "labrador"], tags: ["anthro"] },
  10808. {
  10809. front: {
  10810. height: math.unit(1, "inch"),
  10811. weight: math.unit(0.21, "grams"),
  10812. name: "Front",
  10813. image: {
  10814. source: "./media/characters/talbot/front.svg",
  10815. extra: 594 / 544
  10816. }
  10817. },
  10818. },
  10819. [
  10820. {
  10821. name: "Micro",
  10822. height: math.unit(1, "inch"),
  10823. default: true
  10824. },
  10825. ]
  10826. ))
  10827. characterMakers.push(() => makeCharacter(
  10828. { name: "Fliss", species: ["sylveon"], tags: ["feral"] },
  10829. {
  10830. front: {
  10831. height: math.unit(3 + 3 / 12, "feet"),
  10832. weight: math.unit(51.8, "lb"),
  10833. name: "Front",
  10834. image: {
  10835. source: "./media/characters/fliss/front.svg",
  10836. extra: 840 / 640
  10837. }
  10838. },
  10839. },
  10840. [
  10841. {
  10842. name: "Teeny Tiny",
  10843. height: math.unit(1, "mm")
  10844. },
  10845. {
  10846. name: "Small",
  10847. height: math.unit(1, "inch"),
  10848. default: true
  10849. },
  10850. {
  10851. name: "Standard Sylveon",
  10852. height: math.unit(3 + 3 / 12, "feet")
  10853. },
  10854. {
  10855. name: "Large Nuisance",
  10856. height: math.unit(33, "feet")
  10857. },
  10858. {
  10859. name: "City Filler",
  10860. height: math.unit(3000, "feet")
  10861. },
  10862. {
  10863. name: "New Horizon",
  10864. height: math.unit(6000, "miles")
  10865. },
  10866. ]
  10867. ))
  10868. characterMakers.push(() => makeCharacter(
  10869. { name: "Fleta", species: ["lion"], tags: ["anthro"] },
  10870. {
  10871. front: {
  10872. height: math.unit(5, "cm"),
  10873. weight: math.unit(1.94, "g"),
  10874. name: "Front",
  10875. image: {
  10876. source: "./media/characters/fleta/front.svg",
  10877. extra: 835 / 803
  10878. }
  10879. },
  10880. back: {
  10881. height: math.unit(5, "cm"),
  10882. weight: math.unit(1.94, "g"),
  10883. name: "Back",
  10884. image: {
  10885. source: "./media/characters/fleta/back.svg",
  10886. extra: 835 / 803
  10887. }
  10888. },
  10889. },
  10890. [
  10891. {
  10892. name: "Micro",
  10893. height: math.unit(5, "cm"),
  10894. default: true
  10895. },
  10896. ]
  10897. ))
  10898. characterMakers.push(() => makeCharacter(
  10899. { name: "Dominic", species: ["dragon"], tags: ["anthro"] },
  10900. {
  10901. front: {
  10902. height: math.unit(6, "feet"),
  10903. weight: math.unit(225, "lb"),
  10904. name: "Front",
  10905. image: {
  10906. source: "./media/characters/dominic/front.svg",
  10907. extra: 1770 / 1620,
  10908. bottom: 0.025
  10909. }
  10910. },
  10911. back: {
  10912. height: math.unit(6, "feet"),
  10913. weight: math.unit(225, "lb"),
  10914. name: "Back",
  10915. image: {
  10916. source: "./media/characters/dominic/back.svg",
  10917. extra: 1745 / 1620,
  10918. bottom: 0.065
  10919. }
  10920. },
  10921. },
  10922. [
  10923. {
  10924. name: "Nano",
  10925. height: math.unit(0.1, "mm")
  10926. },
  10927. {
  10928. name: "Micro-",
  10929. height: math.unit(1, "mm")
  10930. },
  10931. {
  10932. name: "Micro",
  10933. height: math.unit(4, "inches")
  10934. },
  10935. {
  10936. name: "Normal",
  10937. height: math.unit(6 + 4 / 12, "feet"),
  10938. default: true
  10939. },
  10940. {
  10941. name: "Macro",
  10942. height: math.unit(115, "feet")
  10943. },
  10944. {
  10945. name: "Macro+",
  10946. height: math.unit(955, "feet")
  10947. },
  10948. {
  10949. name: "Megamacro",
  10950. height: math.unit(8990, "feet")
  10951. },
  10952. {
  10953. name: "Gigmacro",
  10954. height: math.unit(9310, "miles")
  10955. },
  10956. {
  10957. name: "Teramacro",
  10958. height: math.unit(1567005010, "miles")
  10959. },
  10960. {
  10961. name: "Examacro",
  10962. height: math.unit(1425, "parsecs")
  10963. },
  10964. ]
  10965. ))
  10966. characterMakers.push(() => makeCharacter(
  10967. { name: "Major Colonel", species: ["polar-bear"], tags: ["anthro"] },
  10968. {
  10969. front: {
  10970. height: math.unit(400, "feet"),
  10971. weight: math.unit(44444444, "lb"),
  10972. name: "Front",
  10973. image: {
  10974. source: "./media/characters/major-colonel/front.svg"
  10975. }
  10976. },
  10977. back: {
  10978. height: math.unit(400, "feet"),
  10979. weight: math.unit(44444444, "lb"),
  10980. name: "Back",
  10981. image: {
  10982. source: "./media/characters/major-colonel/back.svg"
  10983. }
  10984. },
  10985. },
  10986. [
  10987. {
  10988. name: "Macro",
  10989. height: math.unit(400, "feet"),
  10990. default: true
  10991. },
  10992. ]
  10993. ))
  10994. characterMakers.push(() => makeCharacter(
  10995. { name: "Axel Lycan", species: ["cat", "wolf"], tags: ["anthro"] },
  10996. {
  10997. catFront: {
  10998. height: math.unit(6, "feet"),
  10999. weight: math.unit(120, "lb"),
  11000. name: "Front (Cat Side)",
  11001. image: {
  11002. source: "./media/characters/axel-lycan/cat-front.svg",
  11003. extra: 430 / 402,
  11004. bottom: 43 / 472.35
  11005. }
  11006. },
  11007. catBack: {
  11008. height: math.unit(6, "feet"),
  11009. weight: math.unit(120, "lb"),
  11010. name: "Back (Cat Side)",
  11011. image: {
  11012. source: "./media/characters/axel-lycan/cat-back.svg",
  11013. extra: 447 / 419,
  11014. bottom: 23.3 / 469
  11015. }
  11016. },
  11017. wolfFront: {
  11018. height: math.unit(6, "feet"),
  11019. weight: math.unit(120, "lb"),
  11020. name: "Front (Wolf Side)",
  11021. image: {
  11022. source: "./media/characters/axel-lycan/wolf-front.svg",
  11023. extra: 485 / 456,
  11024. bottom: 19 / 504
  11025. }
  11026. },
  11027. wolfBack: {
  11028. height: math.unit(6, "feet"),
  11029. weight: math.unit(120, "lb"),
  11030. name: "Back (Wolf Side)",
  11031. image: {
  11032. source: "./media/characters/axel-lycan/wolf-back.svg",
  11033. extra: 475 / 438,
  11034. bottom: 39.2 / 514
  11035. }
  11036. },
  11037. },
  11038. [
  11039. {
  11040. name: "Macro",
  11041. height: math.unit(1, "km"),
  11042. default: true
  11043. },
  11044. ]
  11045. ))
  11046. characterMakers.push(() => makeCharacter(
  11047. { name: "Vanrel (Hyena)", species: ["hyena"], tags: ["anthro"] },
  11048. {
  11049. front: {
  11050. height: math.unit(5 + 9 / 12, "feet"),
  11051. weight: math.unit(175, "lb"),
  11052. name: "Front",
  11053. image: {
  11054. source: "./media/characters/vanrel-hyena/front.svg",
  11055. extra: 1086 / 1010,
  11056. bottom: 0.04
  11057. }
  11058. },
  11059. },
  11060. [
  11061. {
  11062. name: "Normal",
  11063. height: math.unit(5 + 9 / 12, "feet"),
  11064. default: true
  11065. },
  11066. ]
  11067. ))
  11068. characterMakers.push(() => makeCharacter(
  11069. { name: "Abbott Absol", species: ["absol"], tags: ["anthro"] },
  11070. {
  11071. front: {
  11072. height: math.unit(6, "feet"),
  11073. weight: math.unit(103, "lb"),
  11074. name: "Front",
  11075. image: {
  11076. source: "./media/characters/abbott-absol/front.svg",
  11077. extra: 765/694,
  11078. bottom: 47/812
  11079. }
  11080. },
  11081. },
  11082. [
  11083. {
  11084. name: "Megamicro",
  11085. height: math.unit(0.1, "mm")
  11086. },
  11087. {
  11088. name: "Micro",
  11089. height: math.unit(1, "inch")
  11090. },
  11091. {
  11092. name: "Normal",
  11093. height: math.unit(6, "feet"),
  11094. default: true
  11095. },
  11096. ]
  11097. ))
  11098. characterMakers.push(() => makeCharacter(
  11099. { name: "Hector", species: ["werewolf"], tags: ["anthro"] },
  11100. {
  11101. front: {
  11102. height: math.unit(6, "feet"),
  11103. weight: math.unit(264, "lb"),
  11104. name: "Front",
  11105. image: {
  11106. source: "./media/characters/hector/front.svg",
  11107. extra: 2280 / 2130,
  11108. bottom: 0.07
  11109. }
  11110. },
  11111. },
  11112. [
  11113. {
  11114. name: "Normal",
  11115. height: math.unit(12.25, "foot"),
  11116. default: true
  11117. },
  11118. {
  11119. name: "Macro",
  11120. height: math.unit(160, "feet")
  11121. },
  11122. ]
  11123. ))
  11124. characterMakers.push(() => makeCharacter(
  11125. { name: "Sal", species: ["deer"], tags: ["anthro"] },
  11126. {
  11127. front: {
  11128. height: math.unit(6, "feet"),
  11129. weight: math.unit(150, "lb"),
  11130. name: "Front",
  11131. image: {
  11132. source: "./media/characters/sal/front.svg",
  11133. extra: 1846 / 1699,
  11134. bottom: 0.04
  11135. }
  11136. },
  11137. },
  11138. [
  11139. {
  11140. name: "Megamacro",
  11141. height: math.unit(10, "miles"),
  11142. default: true
  11143. },
  11144. ]
  11145. ))
  11146. characterMakers.push(() => makeCharacter(
  11147. { name: "Ranger", species: ["dragon"], tags: ["feral"] },
  11148. {
  11149. front: {
  11150. height: math.unit(3, "meters"),
  11151. weight: math.unit(450, "kg"),
  11152. name: "front",
  11153. image: {
  11154. source: "./media/characters/ranger/front.svg",
  11155. extra: 2401 / 2243,
  11156. bottom: 0.05
  11157. }
  11158. },
  11159. },
  11160. [
  11161. {
  11162. name: "Normal",
  11163. height: math.unit(3, "meters"),
  11164. default: true
  11165. },
  11166. ]
  11167. ))
  11168. characterMakers.push(() => makeCharacter(
  11169. { name: "Theresa", species: ["sergal"], tags: ["anthro"] },
  11170. {
  11171. front: {
  11172. height: math.unit(14, "feet"),
  11173. weight: math.unit(800, "kg"),
  11174. name: "Front",
  11175. image: {
  11176. source: "./media/characters/theresa/front.svg",
  11177. extra: 3575 / 3346,
  11178. bottom: 0.03
  11179. }
  11180. },
  11181. },
  11182. [
  11183. {
  11184. name: "Normal",
  11185. height: math.unit(14, "feet"),
  11186. default: true
  11187. },
  11188. ]
  11189. ))
  11190. characterMakers.push(() => makeCharacter(
  11191. { name: "Ine", species: ["wolver"], tags: ["feral"] },
  11192. {
  11193. front: {
  11194. height: math.unit(6, "feet"),
  11195. weight: math.unit(3, "kg"),
  11196. name: "Front",
  11197. image: {
  11198. source: "./media/characters/ine/front.svg",
  11199. extra: 678 / 539,
  11200. bottom: 0.023
  11201. }
  11202. },
  11203. },
  11204. [
  11205. {
  11206. name: "Normal",
  11207. height: math.unit(2.265, "feet"),
  11208. default: true
  11209. },
  11210. ]
  11211. ))
  11212. characterMakers.push(() => makeCharacter(
  11213. { name: "Vial", species: ["crux"], tags: ["anthro"] },
  11214. {
  11215. front: {
  11216. height: math.unit(5, "feet"),
  11217. weight: math.unit(30, "kg"),
  11218. name: "Front",
  11219. image: {
  11220. source: "./media/characters/vial/front.svg",
  11221. extra: 1365 / 1277,
  11222. bottom: 0.04
  11223. }
  11224. },
  11225. },
  11226. [
  11227. {
  11228. name: "Normal",
  11229. height: math.unit(5, "feet"),
  11230. default: true
  11231. },
  11232. ]
  11233. ))
  11234. characterMakers.push(() => makeCharacter(
  11235. { name: "Rovoska", species: ["gryphon"], tags: ["feral"] },
  11236. {
  11237. side: {
  11238. height: math.unit(3.4, "meters"),
  11239. weight: math.unit(1000, "lb"),
  11240. name: "Side",
  11241. image: {
  11242. source: "./media/characters/rovoska/side.svg",
  11243. extra: 4403 / 1515
  11244. }
  11245. },
  11246. },
  11247. [
  11248. {
  11249. name: "Normal",
  11250. height: math.unit(3.4, "meters"),
  11251. default: true
  11252. },
  11253. ]
  11254. ))
  11255. characterMakers.push(() => makeCharacter(
  11256. { name: "Gunner Rotthbauer", species: ["rottweiler"], tags: ["anthro"] },
  11257. {
  11258. front: {
  11259. height: math.unit(8, "feet"),
  11260. weight: math.unit(315, "lb"),
  11261. name: "Front",
  11262. image: {
  11263. source: "./media/characters/gunner-rotthbauer/front.svg"
  11264. }
  11265. },
  11266. back: {
  11267. height: math.unit(8, "feet"),
  11268. weight: math.unit(315, "lb"),
  11269. name: "Back",
  11270. image: {
  11271. source: "./media/characters/gunner-rotthbauer/back.svg"
  11272. }
  11273. },
  11274. },
  11275. [
  11276. {
  11277. name: "Micro",
  11278. height: math.unit(3.5, "inches")
  11279. },
  11280. {
  11281. name: "Normal",
  11282. height: math.unit(8, "feet"),
  11283. default: true
  11284. },
  11285. {
  11286. name: "Macro",
  11287. height: math.unit(250, "feet")
  11288. },
  11289. {
  11290. name: "Megamacro",
  11291. height: math.unit(1, "AU")
  11292. },
  11293. ]
  11294. ))
  11295. characterMakers.push(() => makeCharacter(
  11296. { name: "Allatia", species: ["tiger"], tags: ["anthro"] },
  11297. {
  11298. front: {
  11299. height: math.unit(5 + 5 / 12, "feet"),
  11300. weight: math.unit(140, "lb"),
  11301. name: "Front",
  11302. image: {
  11303. source: "./media/characters/allatia/front.svg",
  11304. extra: 1227 / 1180,
  11305. bottom: 0.027
  11306. }
  11307. },
  11308. },
  11309. [
  11310. {
  11311. name: "Normal",
  11312. height: math.unit(5 + 5 / 12, "feet")
  11313. },
  11314. {
  11315. name: "Macro",
  11316. height: math.unit(250, "feet"),
  11317. default: true
  11318. },
  11319. {
  11320. name: "Megamacro",
  11321. height: math.unit(8, "miles")
  11322. }
  11323. ]
  11324. ))
  11325. characterMakers.push(() => makeCharacter(
  11326. { name: "Tene", species: ["dragon", "fox"], tags: ["anthro"] },
  11327. {
  11328. front: {
  11329. height: math.unit(6, "feet"),
  11330. weight: math.unit(120, "lb"),
  11331. name: "Front",
  11332. image: {
  11333. source: "./media/characters/tene/front.svg",
  11334. extra: 814/750,
  11335. bottom: 36/850
  11336. }
  11337. },
  11338. stomping: {
  11339. height: math.unit(2.025, "meters"),
  11340. weight: math.unit(120, "lb"),
  11341. name: "Stomping",
  11342. image: {
  11343. source: "./media/characters/tene/stomping.svg",
  11344. extra: 885/821,
  11345. bottom: 15/900
  11346. }
  11347. },
  11348. sitting: {
  11349. height: math.unit(1, "meter"),
  11350. weight: math.unit(120, "lb"),
  11351. name: "Sitting",
  11352. image: {
  11353. source: "./media/characters/tene/sitting.svg",
  11354. extra: 396/366,
  11355. bottom: 79/475
  11356. }
  11357. },
  11358. smiling: {
  11359. height: math.unit(1.2, "feet"),
  11360. name: "Smiling",
  11361. image: {
  11362. source: "./media/characters/tene/smiling.svg",
  11363. extra: 1364/1071,
  11364. bottom: 0/1364
  11365. }
  11366. },
  11367. smug: {
  11368. height: math.unit(1.3, "feet"),
  11369. name: "Smug",
  11370. image: {
  11371. source: "./media/characters/tene/smug.svg",
  11372. extra: 1323/1082,
  11373. bottom: 0/1323
  11374. }
  11375. },
  11376. feral: {
  11377. height: math.unit(3.9, "feet"),
  11378. weight: math.unit(250, "lb"),
  11379. name: "Feral",
  11380. image: {
  11381. source: "./media/characters/tene/feral.svg",
  11382. extra: 717 / 458,
  11383. bottom: 0.179
  11384. }
  11385. },
  11386. },
  11387. [
  11388. {
  11389. name: "Normal",
  11390. height: math.unit(6, "feet")
  11391. },
  11392. {
  11393. name: "Macro",
  11394. height: math.unit(300, "feet"),
  11395. default: true
  11396. },
  11397. {
  11398. name: "Megamacro",
  11399. height: math.unit(5, "miles")
  11400. },
  11401. ]
  11402. ))
  11403. characterMakers.push(() => makeCharacter(
  11404. { name: "Evander", species: ["gryphon"], tags: ["feral"] },
  11405. {
  11406. side: {
  11407. height: math.unit(6, "feet"),
  11408. name: "Side",
  11409. image: {
  11410. source: "./media/characters/evander/side.svg",
  11411. extra: 877 / 477
  11412. }
  11413. },
  11414. },
  11415. [
  11416. {
  11417. name: "Normal",
  11418. height: math.unit(0.83, "meters"),
  11419. default: true
  11420. },
  11421. ]
  11422. ))
  11423. characterMakers.push(() => makeCharacter(
  11424. { name: "Ka'Tamra \"Spaz\" Ci'Karan", species: ["dragon"], tags: ["anthro"] },
  11425. {
  11426. front: {
  11427. height: math.unit(12, "feet"),
  11428. weight: math.unit(1000, "lb"),
  11429. name: "Front",
  11430. image: {
  11431. source: "./media/characters/ka'tamra-spaz-ci'karan/front.svg",
  11432. extra: 1762 / 1611
  11433. }
  11434. },
  11435. back: {
  11436. height: math.unit(12, "feet"),
  11437. weight: math.unit(1000, "lb"),
  11438. name: "Back",
  11439. image: {
  11440. source: "./media/characters/ka'tamra-spaz-ci'karan/back.svg",
  11441. extra: 1762 / 1611
  11442. }
  11443. },
  11444. },
  11445. [
  11446. {
  11447. name: "Normal",
  11448. height: math.unit(12, "feet"),
  11449. default: true
  11450. },
  11451. {
  11452. name: "Kaiju",
  11453. height: math.unit(150, "feet")
  11454. },
  11455. ]
  11456. ))
  11457. characterMakers.push(() => makeCharacter(
  11458. { name: "Zero Alurus", species: ["zebra"], tags: ["anthro"] },
  11459. {
  11460. front: {
  11461. height: math.unit(6, "feet"),
  11462. weight: math.unit(150, "lb"),
  11463. name: "Front",
  11464. image: {
  11465. source: "./media/characters/zero-alurus/front.svg"
  11466. }
  11467. },
  11468. back: {
  11469. height: math.unit(6, "feet"),
  11470. weight: math.unit(150, "lb"),
  11471. name: "Back",
  11472. image: {
  11473. source: "./media/characters/zero-alurus/back.svg"
  11474. }
  11475. },
  11476. },
  11477. [
  11478. {
  11479. name: "Normal",
  11480. height: math.unit(5 + 10 / 12, "feet")
  11481. },
  11482. {
  11483. name: "Macro",
  11484. height: math.unit(60, "feet"),
  11485. default: true
  11486. },
  11487. {
  11488. name: "Macro+",
  11489. height: math.unit(450, "feet")
  11490. },
  11491. ]
  11492. ))
  11493. characterMakers.push(() => makeCharacter(
  11494. { name: "Mega Shi", species: ["yoshi"], tags: ["anthro"] },
  11495. {
  11496. front: {
  11497. height: math.unit(6, "feet"),
  11498. weight: math.unit(200, "lb"),
  11499. name: "Front",
  11500. image: {
  11501. source: "./media/characters/mega-shi/front.svg",
  11502. extra: 1279 / 1250,
  11503. bottom: 0.02
  11504. }
  11505. },
  11506. back: {
  11507. height: math.unit(6, "feet"),
  11508. weight: math.unit(200, "lb"),
  11509. name: "Back",
  11510. image: {
  11511. source: "./media/characters/mega-shi/back.svg",
  11512. extra: 1279 / 1250,
  11513. bottom: 0.02
  11514. }
  11515. },
  11516. },
  11517. [
  11518. {
  11519. name: "Micro",
  11520. height: math.unit(16 + 6 / 12, "feet")
  11521. },
  11522. {
  11523. name: "Third Dimension",
  11524. height: math.unit(40, "meters")
  11525. },
  11526. {
  11527. name: "Normal",
  11528. height: math.unit(660, "feet"),
  11529. default: true
  11530. },
  11531. {
  11532. name: "Megamacro",
  11533. height: math.unit(10, "miles")
  11534. },
  11535. {
  11536. name: "Planetary Launch",
  11537. height: math.unit(500, "miles")
  11538. },
  11539. {
  11540. name: "Interstellar",
  11541. height: math.unit(1e9, "miles")
  11542. },
  11543. {
  11544. name: "Leaving the Universe",
  11545. height: math.unit(1, "gigaparsec")
  11546. },
  11547. {
  11548. name: "Travelling Universes",
  11549. height: math.unit(30e15, "parsecs")
  11550. },
  11551. ]
  11552. ))
  11553. characterMakers.push(() => makeCharacter(
  11554. { name: "Odyssey", species: ["lynx"], tags: ["anthro"] },
  11555. {
  11556. front: {
  11557. height: math.unit(5 + 4/12, "feet"),
  11558. weight: math.unit(120, "lb"),
  11559. name: "Front",
  11560. image: {
  11561. source: "./media/characters/odyssey/front.svg",
  11562. extra: 1747/1571,
  11563. bottom: 47/1794
  11564. }
  11565. },
  11566. side: {
  11567. height: math.unit(5.1, "feet"),
  11568. weight: math.unit(120, "lb"),
  11569. name: "Side",
  11570. image: {
  11571. source: "./media/characters/odyssey/side.svg",
  11572. extra: 1847/1619,
  11573. bottom: 47/1894
  11574. }
  11575. },
  11576. lounging: {
  11577. height: math.unit(1.464, "feet"),
  11578. weight: math.unit(120, "lb"),
  11579. name: "Lounging",
  11580. image: {
  11581. source: "./media/characters/odyssey/lounging.svg",
  11582. extra: 1235/837,
  11583. bottom: 551/1786
  11584. }
  11585. },
  11586. },
  11587. [
  11588. {
  11589. name: "Normal",
  11590. height: math.unit(5 + 4 / 12, "feet")
  11591. },
  11592. {
  11593. name: "Macro",
  11594. height: math.unit(1, "km")
  11595. },
  11596. {
  11597. name: "Megamacro",
  11598. height: math.unit(3000, "km")
  11599. },
  11600. {
  11601. name: "Gigamacro",
  11602. height: math.unit(1, "AU"),
  11603. default: true
  11604. },
  11605. {
  11606. name: "Omniversal",
  11607. height: math.unit(100e14, "lightyears")
  11608. },
  11609. ]
  11610. ))
  11611. characterMakers.push(() => makeCharacter(
  11612. { name: "Mekuto", species: ["red-panda", "kitsune"], tags: ["anthro"] },
  11613. {
  11614. front: {
  11615. height: math.unit(5 + 10/12, "feet"),
  11616. name: "Front",
  11617. image: {
  11618. source: "./media/characters/mekuto/front.svg",
  11619. extra: 875/835,
  11620. bottom: 46/921
  11621. }
  11622. },
  11623. },
  11624. [
  11625. {
  11626. name: "Minimicro",
  11627. height: math.unit(0.2, "inches")
  11628. },
  11629. {
  11630. name: "Micro",
  11631. height: math.unit(1.5, "inches")
  11632. },
  11633. {
  11634. name: "Normal",
  11635. height: math.unit(5 + 10 / 12, "feet"),
  11636. default: true
  11637. },
  11638. {
  11639. name: "Minimacro",
  11640. height: math.unit(17 + 9 / 12, "feet")
  11641. },
  11642. {
  11643. name: "Macro",
  11644. height: math.unit(177.5, "feet")
  11645. },
  11646. {
  11647. name: "Megamacro",
  11648. height: math.unit(152, "miles")
  11649. },
  11650. ]
  11651. ))
  11652. characterMakers.push(() => makeCharacter(
  11653. { name: "Dafydd Tomos", species: ["mikromare"], tags: ["anthro"] },
  11654. {
  11655. front: {
  11656. height: math.unit(6.5, "inches"),
  11657. weight: math.unit(13, "oz"),
  11658. name: "Front",
  11659. image: {
  11660. source: "./media/characters/dafydd-tomos/front.svg",
  11661. extra: 2990 / 2603,
  11662. bottom: 0.03
  11663. }
  11664. },
  11665. },
  11666. [
  11667. {
  11668. name: "Micro",
  11669. height: math.unit(6.5, "inches"),
  11670. default: true
  11671. },
  11672. ]
  11673. ))
  11674. characterMakers.push(() => makeCharacter(
  11675. { name: "Splinter", species: ["thylacine"], tags: ["anthro"] },
  11676. {
  11677. front: {
  11678. height: math.unit(6, "feet"),
  11679. weight: math.unit(150, "lb"),
  11680. name: "Front",
  11681. image: {
  11682. source: "./media/characters/splinter/front.svg",
  11683. extra: 2990 / 2882,
  11684. bottom: 0.04
  11685. }
  11686. },
  11687. back: {
  11688. height: math.unit(6, "feet"),
  11689. weight: math.unit(150, "lb"),
  11690. name: "Back",
  11691. image: {
  11692. source: "./media/characters/splinter/back.svg",
  11693. extra: 2990 / 2882,
  11694. bottom: 0.04
  11695. }
  11696. },
  11697. },
  11698. [
  11699. {
  11700. name: "Normal",
  11701. height: math.unit(6, "feet")
  11702. },
  11703. {
  11704. name: "Macro",
  11705. height: math.unit(230, "meters"),
  11706. default: true
  11707. },
  11708. ]
  11709. ))
  11710. characterMakers.push(() => makeCharacter(
  11711. { name: "SnowGabumon", species: ["gabumon"], tags: ["anthro"] },
  11712. {
  11713. front: {
  11714. height: math.unit(4 + 10 / 12, "feet"),
  11715. weight: math.unit(480, "lb"),
  11716. name: "Front",
  11717. image: {
  11718. source: "./media/characters/snow-gabumon/front.svg",
  11719. extra: 1140 / 963,
  11720. bottom: 0.058
  11721. }
  11722. },
  11723. back: {
  11724. height: math.unit(4 + 10 / 12, "feet"),
  11725. weight: math.unit(480, "lb"),
  11726. name: "Back",
  11727. image: {
  11728. source: "./media/characters/snow-gabumon/back.svg",
  11729. extra: 1115 / 962,
  11730. bottom: 0.041
  11731. }
  11732. },
  11733. frontUndresed: {
  11734. height: math.unit(4 + 10 / 12, "feet"),
  11735. weight: math.unit(480, "lb"),
  11736. name: "Front (Undressed)",
  11737. image: {
  11738. source: "./media/characters/snow-gabumon/front-undressed.svg",
  11739. extra: 1061 / 960,
  11740. bottom: 0.045
  11741. }
  11742. },
  11743. },
  11744. [
  11745. {
  11746. name: "Micro",
  11747. height: math.unit(1, "inch")
  11748. },
  11749. {
  11750. name: "Normal",
  11751. height: math.unit(4 + 10 / 12, "feet"),
  11752. default: true
  11753. },
  11754. {
  11755. name: "Macro",
  11756. height: math.unit(200, "feet")
  11757. },
  11758. {
  11759. name: "Megamacro",
  11760. height: math.unit(120, "miles")
  11761. },
  11762. {
  11763. name: "Gigamacro",
  11764. height: math.unit(9800, "miles")
  11765. },
  11766. ]
  11767. ))
  11768. characterMakers.push(() => makeCharacter(
  11769. { name: "Moody", species: ["dog"], tags: ["anthro"] },
  11770. {
  11771. front: {
  11772. height: math.unit(1.7, "meters"),
  11773. weight: math.unit(140, "lb"),
  11774. name: "Front",
  11775. image: {
  11776. source: "./media/characters/moody/front.svg",
  11777. extra: 3226 / 3007,
  11778. bottom: 0.087
  11779. }
  11780. },
  11781. },
  11782. [
  11783. {
  11784. name: "Micro",
  11785. height: math.unit(1, "mm")
  11786. },
  11787. {
  11788. name: "Normal",
  11789. height: math.unit(1.7, "meters"),
  11790. default: true
  11791. },
  11792. {
  11793. name: "Macro",
  11794. height: math.unit(80, "meters")
  11795. },
  11796. {
  11797. name: "Macro+",
  11798. height: math.unit(500, "meters")
  11799. },
  11800. ]
  11801. ))
  11802. characterMakers.push(() => makeCharacter(
  11803. { name: "Zyas", species: ["lion", "tiger"], tags: ["anthro"] },
  11804. {
  11805. front: {
  11806. height: math.unit(6, "feet"),
  11807. weight: math.unit(150, "lb"),
  11808. name: "Front",
  11809. image: {
  11810. source: "./media/characters/zyas/front.svg",
  11811. extra: 1180 / 1120,
  11812. bottom: 0.045
  11813. }
  11814. },
  11815. },
  11816. [
  11817. {
  11818. name: "Normal",
  11819. height: math.unit(10, "feet"),
  11820. default: true
  11821. },
  11822. {
  11823. name: "Macro",
  11824. height: math.unit(500, "feet")
  11825. },
  11826. {
  11827. name: "Megamacro",
  11828. height: math.unit(5, "miles")
  11829. },
  11830. {
  11831. name: "Teramacro",
  11832. height: math.unit(150000, "miles")
  11833. },
  11834. ]
  11835. ))
  11836. characterMakers.push(() => makeCharacter(
  11837. { name: "Cuon", species: ["border-collie"], tags: ["anthro"] },
  11838. {
  11839. front: {
  11840. height: math.unit(6, "feet"),
  11841. weight: math.unit(150, "lb"),
  11842. name: "Front",
  11843. image: {
  11844. source: "./media/characters/cuon/front.svg",
  11845. extra: 1390 / 1320,
  11846. bottom: 0.008
  11847. }
  11848. },
  11849. },
  11850. [
  11851. {
  11852. name: "Micro",
  11853. height: math.unit(3, "inches")
  11854. },
  11855. {
  11856. name: "Normal",
  11857. height: math.unit(18 + 9 / 12, "feet"),
  11858. default: true
  11859. },
  11860. {
  11861. name: "Macro",
  11862. height: math.unit(360, "feet")
  11863. },
  11864. {
  11865. name: "Megamacro",
  11866. height: math.unit(360, "miles")
  11867. },
  11868. ]
  11869. ))
  11870. characterMakers.push(() => makeCharacter(
  11871. { name: "Nyanuxk", species: ["dragon"], tags: ["anthro"] },
  11872. {
  11873. front: {
  11874. height: math.unit(2.4, "meters"),
  11875. weight: math.unit(70, "kg"),
  11876. name: "Front",
  11877. image: {
  11878. source: "./media/characters/nyanuxk/front.svg",
  11879. extra: 1172 / 1084,
  11880. bottom: 0.065
  11881. }
  11882. },
  11883. side: {
  11884. height: math.unit(2.4, "meters"),
  11885. weight: math.unit(70, "kg"),
  11886. name: "Side",
  11887. image: {
  11888. source: "./media/characters/nyanuxk/side.svg",
  11889. extra: 1190 / 1132,
  11890. bottom: 0.007
  11891. }
  11892. },
  11893. back: {
  11894. height: math.unit(2.4, "meters"),
  11895. weight: math.unit(70, "kg"),
  11896. name: "Back",
  11897. image: {
  11898. source: "./media/characters/nyanuxk/back.svg",
  11899. extra: 1200 / 1141,
  11900. bottom: 0.015
  11901. }
  11902. },
  11903. foot: {
  11904. height: math.unit(0.52, "meters"),
  11905. name: "Foot",
  11906. image: {
  11907. source: "./media/characters/nyanuxk/foot.svg"
  11908. }
  11909. },
  11910. },
  11911. [
  11912. {
  11913. name: "Micro",
  11914. height: math.unit(2, "cm")
  11915. },
  11916. {
  11917. name: "Normal",
  11918. height: math.unit(2.4, "meters"),
  11919. default: true
  11920. },
  11921. {
  11922. name: "Smaller Macro",
  11923. height: math.unit(120, "meters")
  11924. },
  11925. {
  11926. name: "Bigger Macro",
  11927. height: math.unit(1.2, "km")
  11928. },
  11929. {
  11930. name: "Megamacro",
  11931. height: math.unit(15, "kilometers")
  11932. },
  11933. {
  11934. name: "Gigamacro",
  11935. height: math.unit(2000, "km")
  11936. },
  11937. {
  11938. name: "Teramacro",
  11939. height: math.unit(500000, "km")
  11940. },
  11941. ]
  11942. ))
  11943. characterMakers.push(() => makeCharacter(
  11944. { name: "Ailbhe", species: ["gryphon"], tags: ["feral"] },
  11945. {
  11946. side: {
  11947. height: math.unit(6, "feet"),
  11948. name: "Side",
  11949. image: {
  11950. source: "./media/characters/ailbhe/side.svg",
  11951. extra: 757 / 464,
  11952. bottom: 0.041
  11953. }
  11954. },
  11955. },
  11956. [
  11957. {
  11958. name: "Normal",
  11959. height: math.unit(1.07, "meters"),
  11960. default: true
  11961. },
  11962. ]
  11963. ))
  11964. characterMakers.push(() => makeCharacter(
  11965. { name: "Zevulfius", species: ["werewolf"], tags: ["anthro"] },
  11966. {
  11967. front: {
  11968. height: math.unit(6, "feet"),
  11969. weight: math.unit(120, "kg"),
  11970. name: "Front",
  11971. image: {
  11972. source: "./media/characters/zevulfius/front.svg",
  11973. extra: 965 / 903
  11974. }
  11975. },
  11976. side: {
  11977. height: math.unit(6, "feet"),
  11978. weight: math.unit(120, "kg"),
  11979. name: "Side",
  11980. image: {
  11981. source: "./media/characters/zevulfius/side.svg",
  11982. extra: 939 / 900
  11983. }
  11984. },
  11985. back: {
  11986. height: math.unit(6, "feet"),
  11987. weight: math.unit(120, "kg"),
  11988. name: "Back",
  11989. image: {
  11990. source: "./media/characters/zevulfius/back.svg",
  11991. extra: 918 / 854,
  11992. bottom: 0.005
  11993. }
  11994. },
  11995. foot: {
  11996. height: math.unit(6 / 3.72, "feet"),
  11997. name: "Foot",
  11998. image: {
  11999. source: "./media/characters/zevulfius/foot.svg"
  12000. }
  12001. },
  12002. },
  12003. [
  12004. {
  12005. name: "Macro",
  12006. height: math.unit(750, "meters")
  12007. },
  12008. {
  12009. name: "Megamacro",
  12010. height: math.unit(20, "km"),
  12011. default: true
  12012. },
  12013. {
  12014. name: "Gigamacro",
  12015. height: math.unit(2000, "km")
  12016. },
  12017. {
  12018. name: "Teramacro",
  12019. height: math.unit(250000, "km")
  12020. },
  12021. ]
  12022. ))
  12023. characterMakers.push(() => makeCharacter(
  12024. { name: "Rikes", species: ["german-shepherd"], tags: ["anthro"] },
  12025. {
  12026. front: {
  12027. height: math.unit(100, "feet"),
  12028. weight: math.unit(350, "kg"),
  12029. name: "Front",
  12030. image: {
  12031. source: "./media/characters/rikes/front.svg",
  12032. extra: 1565 / 1483,
  12033. bottom: 0.017
  12034. }
  12035. },
  12036. },
  12037. [
  12038. {
  12039. name: "Macro",
  12040. height: math.unit(100, "feet"),
  12041. default: true
  12042. },
  12043. ]
  12044. ))
  12045. characterMakers.push(() => makeCharacter(
  12046. { name: "Adam Silver-Mane", species: ["horse"], tags: ["anthro"] },
  12047. {
  12048. front: {
  12049. height: math.unit(8, "feet"),
  12050. weight: math.unit(356, "lb"),
  12051. name: "Front",
  12052. image: {
  12053. source: "./media/characters/adam-silver-mane/front.svg",
  12054. extra: 1036/937,
  12055. bottom: 63/1099
  12056. }
  12057. },
  12058. side: {
  12059. height: math.unit(8, "feet"),
  12060. weight: math.unit(356, "lb"),
  12061. name: "Side",
  12062. image: {
  12063. source: "./media/characters/adam-silver-mane/side.svg",
  12064. extra: 997/901,
  12065. bottom: 59/1056
  12066. }
  12067. },
  12068. frontNsfw: {
  12069. height: math.unit(8, "feet"),
  12070. weight: math.unit(356, "lb"),
  12071. name: "Front (NSFW)",
  12072. image: {
  12073. source: "./media/characters/adam-silver-mane/front-nsfw.svg",
  12074. extra: 1036/937,
  12075. bottom: 63/1099
  12076. }
  12077. },
  12078. sideNsfw: {
  12079. height: math.unit(8, "feet"),
  12080. weight: math.unit(356, "lb"),
  12081. name: "Side (NSFW)",
  12082. image: {
  12083. source: "./media/characters/adam-silver-mane/side-nsfw.svg",
  12084. extra: 997/901,
  12085. bottom: 59/1056
  12086. }
  12087. },
  12088. dick: {
  12089. height: math.unit(2.1, "feet"),
  12090. name: "Dick",
  12091. image: {
  12092. source: "./media/characters/adam-silver-mane/dick.svg"
  12093. }
  12094. },
  12095. taur: {
  12096. height: math.unit(16, "feet"),
  12097. weight: math.unit(1500, "kg"),
  12098. name: "Taur",
  12099. image: {
  12100. source: "./media/characters/adam-silver-mane/taur.svg",
  12101. extra: 1713 / 1571,
  12102. bottom: 0.01
  12103. }
  12104. },
  12105. },
  12106. [
  12107. {
  12108. name: "Normal",
  12109. height: math.unit(8, "feet")
  12110. },
  12111. {
  12112. name: "Minimacro",
  12113. height: math.unit(80, "feet")
  12114. },
  12115. {
  12116. name: "MDA",
  12117. height: math.unit(80, "meters")
  12118. },
  12119. {
  12120. name: "Macro",
  12121. height: math.unit(800, "feet"),
  12122. default: true
  12123. },
  12124. {
  12125. name: "Megamacro",
  12126. height: math.unit(8000, "feet")
  12127. },
  12128. {
  12129. name: "Gigamacro",
  12130. height: math.unit(800, "miles")
  12131. },
  12132. {
  12133. name: "Teramacro",
  12134. height: math.unit(80000, "miles")
  12135. },
  12136. {
  12137. name: "Celestial",
  12138. height: math.unit(8e6, "miles")
  12139. },
  12140. {
  12141. name: "Star Dragon",
  12142. height: math.unit(800000, "parsecs")
  12143. },
  12144. {
  12145. name: "Godly",
  12146. height: math.unit(800, "teraparsecs")
  12147. },
  12148. ]
  12149. ))
  12150. characterMakers.push(() => makeCharacter(
  12151. { name: "Ky'owin", species: ["dragon", "cat"], tags: ["anthro"] },
  12152. {
  12153. front: {
  12154. height: math.unit(6, "feet"),
  12155. weight: math.unit(150, "lb"),
  12156. name: "Front",
  12157. image: {
  12158. source: "./media/characters/ky'owin/front.svg",
  12159. extra: 3862/3053,
  12160. bottom: 74/3936
  12161. }
  12162. },
  12163. },
  12164. [
  12165. {
  12166. name: "Normal",
  12167. height: math.unit(6 + 8 / 12, "feet")
  12168. },
  12169. {
  12170. name: "Large",
  12171. height: math.unit(68, "feet")
  12172. },
  12173. {
  12174. name: "Macro",
  12175. height: math.unit(132, "feet")
  12176. },
  12177. {
  12178. name: "Macro+",
  12179. height: math.unit(340, "feet")
  12180. },
  12181. {
  12182. name: "Macro++",
  12183. height: math.unit(680, "feet"),
  12184. default: true
  12185. },
  12186. {
  12187. name: "Megamacro",
  12188. height: math.unit(1, "mile")
  12189. },
  12190. {
  12191. name: "Megamacro+",
  12192. height: math.unit(10, "miles")
  12193. },
  12194. ]
  12195. ))
  12196. characterMakers.push(() => makeCharacter(
  12197. { name: "Mal", species: ["imp"], tags: ["anthro"] },
  12198. {
  12199. front: {
  12200. height: math.unit(4, "feet"),
  12201. weight: math.unit(50, "lb"),
  12202. name: "Front",
  12203. image: {
  12204. source: "./media/characters/mal/front.svg",
  12205. extra: 785 / 724,
  12206. bottom: 0.07
  12207. }
  12208. },
  12209. },
  12210. [
  12211. {
  12212. name: "Micro",
  12213. height: math.unit(4, "inches")
  12214. },
  12215. {
  12216. name: "Normal",
  12217. height: math.unit(4, "feet"),
  12218. default: true
  12219. },
  12220. {
  12221. name: "Macro",
  12222. height: math.unit(200, "feet")
  12223. },
  12224. ]
  12225. ))
  12226. characterMakers.push(() => makeCharacter(
  12227. { name: "Jordan Deware", species: ["otter"], tags: ["anthro"] },
  12228. {
  12229. front: {
  12230. height: math.unit(6, "feet"),
  12231. weight: math.unit(150, "lb"),
  12232. name: "Front",
  12233. image: {
  12234. source: "./media/characters/jordan-deware/front.svg",
  12235. extra: 1191 / 1012
  12236. }
  12237. },
  12238. },
  12239. [
  12240. {
  12241. name: "Nano",
  12242. height: math.unit(0.01, "mm")
  12243. },
  12244. {
  12245. name: "Minimicro",
  12246. height: math.unit(1, "mm")
  12247. },
  12248. {
  12249. name: "Micro",
  12250. height: math.unit(0.5, "inches")
  12251. },
  12252. {
  12253. name: "Normal",
  12254. height: math.unit(4, "feet"),
  12255. default: true
  12256. },
  12257. {
  12258. name: "Minimacro",
  12259. height: math.unit(40, "meters")
  12260. },
  12261. {
  12262. name: "Small Macro",
  12263. height: math.unit(400, "meters")
  12264. },
  12265. {
  12266. name: "Macro",
  12267. height: math.unit(4, "miles")
  12268. },
  12269. {
  12270. name: "Megamacro",
  12271. height: math.unit(40, "miles")
  12272. },
  12273. {
  12274. name: "Megamacro+",
  12275. height: math.unit(400, "miles")
  12276. },
  12277. {
  12278. name: "Gigamacro",
  12279. height: math.unit(400000, "miles")
  12280. },
  12281. ]
  12282. ))
  12283. characterMakers.push(() => makeCharacter(
  12284. { name: "Kimiko", species: ["eastern-dragon"], tags: ["anthro"] },
  12285. {
  12286. side: {
  12287. height: math.unit(6, "feet"),
  12288. weight: math.unit(150, "lb"),
  12289. name: "Side",
  12290. image: {
  12291. source: "./media/characters/kimiko/side.svg",
  12292. extra: 600 / 358
  12293. }
  12294. },
  12295. },
  12296. [
  12297. {
  12298. name: "Normal",
  12299. height: math.unit(15, "feet"),
  12300. default: true
  12301. },
  12302. {
  12303. name: "Macro",
  12304. height: math.unit(220, "feet")
  12305. },
  12306. {
  12307. name: "Macro+",
  12308. height: math.unit(1450, "feet")
  12309. },
  12310. {
  12311. name: "Megamacro",
  12312. height: math.unit(11500, "feet")
  12313. },
  12314. {
  12315. name: "Gigamacro",
  12316. height: math.unit(9500, "miles")
  12317. },
  12318. {
  12319. name: "Teramacro",
  12320. height: math.unit(2208005005, "miles")
  12321. },
  12322. {
  12323. name: "Examacro",
  12324. height: math.unit(2750, "parsecs")
  12325. },
  12326. {
  12327. name: "Zettamacro",
  12328. height: math.unit(101500, "parsecs")
  12329. },
  12330. ]
  12331. ))
  12332. characterMakers.push(() => makeCharacter(
  12333. { name: "Andrew Sleepy", species: ["human"], tags: ["anthro"] },
  12334. {
  12335. front: {
  12336. height: math.unit(6, "feet"),
  12337. weight: math.unit(70, "kg"),
  12338. name: "Front",
  12339. image: {
  12340. source: "./media/characters/andrew-sleepy/front.svg"
  12341. }
  12342. },
  12343. side: {
  12344. height: math.unit(6, "feet"),
  12345. weight: math.unit(70, "kg"),
  12346. name: "Side",
  12347. image: {
  12348. source: "./media/characters/andrew-sleepy/side.svg"
  12349. }
  12350. },
  12351. },
  12352. [
  12353. {
  12354. name: "Micro",
  12355. height: math.unit(1, "mm"),
  12356. default: true
  12357. },
  12358. ]
  12359. ))
  12360. characterMakers.push(() => makeCharacter(
  12361. { name: "Judio", species: ["rabbit"], tags: ["anthro"] },
  12362. {
  12363. front: {
  12364. height: math.unit(6, "feet"),
  12365. weight: math.unit(150, "lb"),
  12366. name: "Front",
  12367. image: {
  12368. source: "./media/characters/judio/front.svg",
  12369. extra: 1258 / 1110
  12370. }
  12371. },
  12372. },
  12373. [
  12374. {
  12375. name: "Normal",
  12376. height: math.unit(5 + 6 / 12, "feet")
  12377. },
  12378. {
  12379. name: "Macro",
  12380. height: math.unit(1000, "feet"),
  12381. default: true
  12382. },
  12383. {
  12384. name: "Megamacro",
  12385. height: math.unit(10, "miles")
  12386. },
  12387. ]
  12388. ))
  12389. characterMakers.push(() => makeCharacter(
  12390. { name: "Nomaxice", species: ["lynx", "raccoon"], tags: ["anthro"] },
  12391. {
  12392. frontDressed: {
  12393. height: math.unit(6, "feet"),
  12394. weight: math.unit(68, "kg"),
  12395. name: "Front (Dressed)",
  12396. image: {
  12397. source: "./media/characters/nomaxice/front-dressed.svg",
  12398. extra: 1137/824,
  12399. bottom: 74/1211
  12400. }
  12401. },
  12402. frontShorts: {
  12403. height: math.unit(6, "feet"),
  12404. weight: math.unit(68, "kg"),
  12405. name: "Front (Shorts)",
  12406. image: {
  12407. source: "./media/characters/nomaxice/front-shorts.svg",
  12408. extra: 1137/824,
  12409. bottom: 74/1211
  12410. }
  12411. },
  12412. back: {
  12413. height: math.unit(6, "feet"),
  12414. weight: math.unit(68, "kg"),
  12415. name: "Back",
  12416. image: {
  12417. source: "./media/characters/nomaxice/back.svg",
  12418. extra: 822/786,
  12419. bottom: 39/861
  12420. }
  12421. },
  12422. hand: {
  12423. height: math.unit(0.565, "feet"),
  12424. name: "Hand",
  12425. image: {
  12426. source: "./media/characters/nomaxice/hand.svg"
  12427. }
  12428. },
  12429. foot: {
  12430. height: math.unit(1, "feet"),
  12431. name: "Foot",
  12432. image: {
  12433. source: "./media/characters/nomaxice/foot.svg"
  12434. }
  12435. },
  12436. },
  12437. [
  12438. {
  12439. name: "Micro",
  12440. height: math.unit(8, "cm")
  12441. },
  12442. {
  12443. name: "Norm",
  12444. height: math.unit(1.82, "m")
  12445. },
  12446. {
  12447. name: "Norm+",
  12448. height: math.unit(8.8, "feet"),
  12449. default: true
  12450. },
  12451. {
  12452. name: "Big",
  12453. height: math.unit(8, "meters")
  12454. },
  12455. {
  12456. name: "Macro",
  12457. height: math.unit(18, "meters")
  12458. },
  12459. {
  12460. name: "Macro+",
  12461. height: math.unit(88, "meters")
  12462. },
  12463. ]
  12464. ))
  12465. characterMakers.push(() => makeCharacter(
  12466. { name: "Dydros", species: ["dragon"], tags: ["anthro"] },
  12467. {
  12468. front: {
  12469. height: math.unit(12, "feet"),
  12470. weight: math.unit(1.5, "tons"),
  12471. name: "Front",
  12472. image: {
  12473. source: "./media/characters/dydros/front.svg",
  12474. extra: 863 / 800,
  12475. bottom: 0.015
  12476. }
  12477. },
  12478. back: {
  12479. height: math.unit(12, "feet"),
  12480. weight: math.unit(1.5, "tons"),
  12481. name: "Back",
  12482. image: {
  12483. source: "./media/characters/dydros/back.svg",
  12484. extra: 900 / 843,
  12485. bottom: 0.005
  12486. }
  12487. },
  12488. },
  12489. [
  12490. {
  12491. name: "Normal",
  12492. height: math.unit(12, "feet"),
  12493. default: true
  12494. },
  12495. ]
  12496. ))
  12497. characterMakers.push(() => makeCharacter(
  12498. { name: "Riggi", species: ["tiger", "wolf"], tags: ["anthro"] },
  12499. {
  12500. front: {
  12501. height: math.unit(6, "feet"),
  12502. weight: math.unit(100, "kg"),
  12503. name: "Front",
  12504. image: {
  12505. source: "./media/characters/riggi/front.svg",
  12506. extra: 5787 / 5303
  12507. }
  12508. },
  12509. hyper: {
  12510. height: math.unit(6 * 5 / 3, "feet"),
  12511. weight: math.unit(400 * 5 / 3 * 5 / 3 * 5 / 3, "kg"),
  12512. name: "Hyper",
  12513. image: {
  12514. source: "./media/characters/riggi/hyper.svg",
  12515. extra: 3595 / 3485
  12516. }
  12517. },
  12518. },
  12519. [
  12520. {
  12521. name: "Small Macro",
  12522. height: math.unit(50, "feet")
  12523. },
  12524. {
  12525. name: "Default",
  12526. height: math.unit(200, "feet"),
  12527. default: true
  12528. },
  12529. {
  12530. name: "Loom",
  12531. height: math.unit(10000, "feet")
  12532. },
  12533. {
  12534. name: "Cruising Altitude",
  12535. height: math.unit(30000, "feet")
  12536. },
  12537. {
  12538. name: "Megamacro",
  12539. height: math.unit(100, "miles")
  12540. },
  12541. {
  12542. name: "Continent Sized",
  12543. height: math.unit(2800, "miles")
  12544. },
  12545. {
  12546. name: "Earth Sized",
  12547. height: math.unit(8000, "miles")
  12548. },
  12549. ]
  12550. ))
  12551. characterMakers.push(() => makeCharacter(
  12552. { name: "Alexi", species: ["werewolf"], tags: ["anthro"] },
  12553. {
  12554. front: {
  12555. height: math.unit(6, "feet"),
  12556. weight: math.unit(250, "lb"),
  12557. name: "Front",
  12558. image: {
  12559. source: "./media/characters/alexi/front.svg",
  12560. extra: 3483 / 3291,
  12561. bottom: 0.04
  12562. }
  12563. },
  12564. back: {
  12565. height: math.unit(6, "feet"),
  12566. weight: math.unit(250, "lb"),
  12567. name: "Back",
  12568. image: {
  12569. source: "./media/characters/alexi/back.svg",
  12570. extra: 3533 / 3356,
  12571. bottom: 0.021
  12572. }
  12573. },
  12574. frontTransforming: {
  12575. height: math.unit(8.58, "feet"),
  12576. weight: math.unit(1300, "lb"),
  12577. name: "Transforming",
  12578. image: {
  12579. source: "./media/characters/alexi/front-transforming.svg",
  12580. extra: 437 / 409,
  12581. bottom: 19 / 458.66
  12582. }
  12583. },
  12584. frontTransformed: {
  12585. height: math.unit(12.5, "feet"),
  12586. weight: math.unit(4000, "lb"),
  12587. name: "Transformed",
  12588. image: {
  12589. source: "./media/characters/alexi/front-transformed.svg",
  12590. extra: 639 / 614,
  12591. bottom: 30.55 / 671
  12592. }
  12593. },
  12594. },
  12595. [
  12596. {
  12597. name: "Normal",
  12598. height: math.unit(14, "feet"),
  12599. default: true
  12600. },
  12601. {
  12602. name: "Minimacro",
  12603. height: math.unit(30, "meters")
  12604. },
  12605. {
  12606. name: "Macro",
  12607. height: math.unit(500, "meters")
  12608. },
  12609. {
  12610. name: "Megamacro",
  12611. height: math.unit(9000, "km")
  12612. },
  12613. {
  12614. name: "Teramacro",
  12615. height: math.unit(384000, "km")
  12616. },
  12617. ]
  12618. ))
  12619. characterMakers.push(() => makeCharacter(
  12620. { name: "Kayroo", species: ["kangaroo"], tags: ["anthro"] },
  12621. {
  12622. front: {
  12623. height: math.unit(6, "feet"),
  12624. weight: math.unit(150, "lb"),
  12625. name: "Front",
  12626. image: {
  12627. source: "./media/characters/kayroo/front.svg",
  12628. extra: 1153 / 1038,
  12629. bottom: 0.06
  12630. }
  12631. },
  12632. foot: {
  12633. height: math.unit(6, "feet"),
  12634. weight: math.unit(150, "lb"),
  12635. name: "Foot",
  12636. image: {
  12637. source: "./media/characters/kayroo/foot.svg"
  12638. }
  12639. },
  12640. },
  12641. [
  12642. {
  12643. name: "Normal",
  12644. height: math.unit(8, "feet"),
  12645. default: true
  12646. },
  12647. {
  12648. name: "Minimacro",
  12649. height: math.unit(250, "feet")
  12650. },
  12651. {
  12652. name: "Macro",
  12653. height: math.unit(2800, "feet")
  12654. },
  12655. {
  12656. name: "Megamacro",
  12657. height: math.unit(5200, "feet")
  12658. },
  12659. {
  12660. name: "Gigamacro",
  12661. height: math.unit(27000, "feet")
  12662. },
  12663. {
  12664. name: "Omega",
  12665. height: math.unit(45000, "feet")
  12666. },
  12667. ]
  12668. ))
  12669. characterMakers.push(() => makeCharacter(
  12670. { name: "Rhys", species: ["renamon"], tags: ["anthro"] },
  12671. {
  12672. front: {
  12673. height: math.unit(18, "feet"),
  12674. weight: math.unit(5800, "lb"),
  12675. name: "Front",
  12676. image: {
  12677. source: "./media/characters/rhys/front.svg",
  12678. extra: 3386 / 3090,
  12679. bottom: 0.07
  12680. }
  12681. },
  12682. },
  12683. [
  12684. {
  12685. name: "Normal",
  12686. height: math.unit(18, "feet"),
  12687. default: true
  12688. },
  12689. {
  12690. name: "Working Size",
  12691. height: math.unit(200, "feet")
  12692. },
  12693. {
  12694. name: "Demolition Size",
  12695. height: math.unit(2000, "feet")
  12696. },
  12697. {
  12698. name: "Maximum Licensed Size",
  12699. height: math.unit(5, "miles")
  12700. },
  12701. {
  12702. name: "Maximum Observed Size",
  12703. height: math.unit(10, "yottameters")
  12704. },
  12705. ]
  12706. ))
  12707. characterMakers.push(() => makeCharacter(
  12708. { name: "Toto", species: ["dragon"], tags: ["anthro"] },
  12709. {
  12710. front: {
  12711. height: math.unit(6, "feet"),
  12712. weight: math.unit(250, "lb"),
  12713. name: "Front",
  12714. image: {
  12715. source: "./media/characters/toto/front.svg",
  12716. extra: 527 / 479,
  12717. bottom: 0.05
  12718. }
  12719. },
  12720. },
  12721. [
  12722. {
  12723. name: "Micro",
  12724. height: math.unit(3, "feet")
  12725. },
  12726. {
  12727. name: "Normal",
  12728. height: math.unit(10, "feet")
  12729. },
  12730. {
  12731. name: "Macro",
  12732. height: math.unit(150, "feet"),
  12733. default: true
  12734. },
  12735. {
  12736. name: "Megamacro",
  12737. height: math.unit(1200, "feet")
  12738. },
  12739. ]
  12740. ))
  12741. characterMakers.push(() => makeCharacter(
  12742. { name: "King", species: ["lion"], tags: ["anthro"] },
  12743. {
  12744. back: {
  12745. height: math.unit(6, "feet"),
  12746. weight: math.unit(150, "lb"),
  12747. name: "Back",
  12748. image: {
  12749. source: "./media/characters/king/back.svg"
  12750. }
  12751. },
  12752. },
  12753. [
  12754. {
  12755. name: "Micro",
  12756. height: math.unit(2, "inches")
  12757. },
  12758. {
  12759. name: "Normal",
  12760. height: math.unit(8, "feet")
  12761. },
  12762. {
  12763. name: "Macro",
  12764. height: math.unit(200, "feet"),
  12765. default: true
  12766. },
  12767. {
  12768. name: "Megamacro",
  12769. height: math.unit(50, "miles")
  12770. },
  12771. ]
  12772. ))
  12773. characterMakers.push(() => makeCharacter(
  12774. { name: "Cordite", species: ["candy-orca-dragon"], tags: ["anthro"] },
  12775. {
  12776. front: {
  12777. height: math.unit(11, "feet"),
  12778. weight: math.unit(1400, "lb"),
  12779. name: "Front",
  12780. image: {
  12781. source: "./media/characters/cordite/front.svg",
  12782. extra: 1919/1827,
  12783. bottom: 40/1959
  12784. }
  12785. },
  12786. side: {
  12787. height: math.unit(11, "feet"),
  12788. weight: math.unit(1400, "lb"),
  12789. name: "Side",
  12790. image: {
  12791. source: "./media/characters/cordite/side.svg",
  12792. extra: 1908/1793,
  12793. bottom: 38/1946
  12794. }
  12795. },
  12796. back: {
  12797. height: math.unit(11, "feet"),
  12798. weight: math.unit(1400, "lb"),
  12799. name: "Back",
  12800. image: {
  12801. source: "./media/characters/cordite/back.svg",
  12802. extra: 1938/1837,
  12803. bottom: 10/1948
  12804. }
  12805. },
  12806. feral: {
  12807. height: math.unit(2, "feet"),
  12808. weight: math.unit(90, "lb"),
  12809. name: "Feral",
  12810. image: {
  12811. source: "./media/characters/cordite/feral.svg",
  12812. extra: 1260 / 755,
  12813. bottom: 0.05
  12814. }
  12815. },
  12816. },
  12817. [
  12818. {
  12819. name: "Normal",
  12820. height: math.unit(11, "feet"),
  12821. default: true
  12822. },
  12823. ]
  12824. ))
  12825. characterMakers.push(() => makeCharacter(
  12826. { name: "Pianostrong", species: ["husky"], tags: ["anthro"] },
  12827. {
  12828. front: {
  12829. height: math.unit(6, "feet"),
  12830. weight: math.unit(150, "lb"),
  12831. name: "Front",
  12832. image: {
  12833. source: "./media/characters/pianostrong/front.svg",
  12834. extra: 6577 / 6254,
  12835. bottom: 0.02
  12836. }
  12837. },
  12838. side: {
  12839. height: math.unit(6, "feet"),
  12840. weight: math.unit(150, "lb"),
  12841. name: "Side",
  12842. image: {
  12843. source: "./media/characters/pianostrong/side.svg",
  12844. extra: 6106 / 5730
  12845. }
  12846. },
  12847. back: {
  12848. height: math.unit(6, "feet"),
  12849. weight: math.unit(150, "lb"),
  12850. name: "Back",
  12851. image: {
  12852. source: "./media/characters/pianostrong/back.svg",
  12853. extra: 6085 / 5733,
  12854. bottom: 0.01
  12855. }
  12856. },
  12857. },
  12858. [
  12859. {
  12860. name: "Macro",
  12861. height: math.unit(100, "feet")
  12862. },
  12863. {
  12864. name: "Macro+",
  12865. height: math.unit(300, "feet"),
  12866. default: true
  12867. },
  12868. {
  12869. name: "Macro++",
  12870. height: math.unit(1000, "feet")
  12871. },
  12872. ]
  12873. ))
  12874. characterMakers.push(() => makeCharacter(
  12875. { name: "Kona", species: ["deer"], tags: ["anthro"] },
  12876. {
  12877. front: {
  12878. height: math.unit(6, "feet"),
  12879. weight: math.unit(150, "lb"),
  12880. name: "Front",
  12881. image: {
  12882. source: "./media/characters/kona/front.svg",
  12883. extra: 2960 / 2629,
  12884. bottom: 0.005
  12885. }
  12886. },
  12887. },
  12888. [
  12889. {
  12890. name: "Normal",
  12891. height: math.unit(11 + 8 / 12, "feet")
  12892. },
  12893. {
  12894. name: "Macro",
  12895. height: math.unit(850, "feet"),
  12896. default: true
  12897. },
  12898. {
  12899. name: "Macro+",
  12900. height: math.unit(1.5, "km"),
  12901. default: true
  12902. },
  12903. {
  12904. name: "Megamacro",
  12905. height: math.unit(80, "miles")
  12906. },
  12907. {
  12908. name: "Gigamacro",
  12909. height: math.unit(3500, "miles")
  12910. },
  12911. ]
  12912. ))
  12913. characterMakers.push(() => makeCharacter(
  12914. { name: "Levi", species: ["dragon"], tags: ["anthro"] },
  12915. {
  12916. side: {
  12917. height: math.unit(1.9, "meters"),
  12918. weight: math.unit(326, "kg"),
  12919. name: "Side",
  12920. image: {
  12921. source: "./media/characters/levi/side.svg",
  12922. extra: 1704 / 1334,
  12923. bottom: 0.02
  12924. }
  12925. },
  12926. },
  12927. [
  12928. {
  12929. name: "Normal",
  12930. height: math.unit(1.9, "meters"),
  12931. default: true
  12932. },
  12933. {
  12934. name: "Macro",
  12935. height: math.unit(20, "meters")
  12936. },
  12937. {
  12938. name: "Macro+",
  12939. height: math.unit(200, "meters")
  12940. },
  12941. {
  12942. name: "Megamacro",
  12943. height: math.unit(2, "km")
  12944. },
  12945. {
  12946. name: "Megamacro+",
  12947. height: math.unit(20, "km")
  12948. },
  12949. {
  12950. name: "Gigamacro",
  12951. height: math.unit(2500, "km")
  12952. },
  12953. {
  12954. name: "Gigamacro+",
  12955. height: math.unit(120000, "km")
  12956. },
  12957. {
  12958. name: "Teramacro",
  12959. height: math.unit(7.77e6, "km")
  12960. },
  12961. ]
  12962. ))
  12963. characterMakers.push(() => makeCharacter(
  12964. { name: "BMC", species: ["sabertooth-tiger", "cougar"], tags: ["anthro"] },
  12965. {
  12966. front: {
  12967. height: math.unit(6 + 4/12, "feet"),
  12968. weight: math.unit(190, "lb"),
  12969. name: "Front",
  12970. image: {
  12971. source: "./media/characters/bmc/front.svg",
  12972. extra: 1626/1472,
  12973. bottom: 79/1705
  12974. }
  12975. },
  12976. back: {
  12977. height: math.unit(6 + 4/12, "feet"),
  12978. weight: math.unit(190, "lb"),
  12979. name: "Back",
  12980. image: {
  12981. source: "./media/characters/bmc/back.svg",
  12982. extra: 1640/1479,
  12983. bottom: 45/1685
  12984. }
  12985. },
  12986. frontArmor: {
  12987. height: math.unit(6 + 4/12, "feet"),
  12988. weight: math.unit(190, "lb"),
  12989. name: "Front-armor",
  12990. image: {
  12991. source: "./media/characters/bmc/front-armor.svg",
  12992. extra: 1538/1468,
  12993. bottom: 79/1617
  12994. }
  12995. },
  12996. },
  12997. [
  12998. {
  12999. name: "Human-sized",
  13000. height: math.unit(6 + 4 / 12, "feet")
  13001. },
  13002. {
  13003. name: "Interactive Size",
  13004. height: math.unit(25, "feet")
  13005. },
  13006. {
  13007. name: "Small",
  13008. height: math.unit(250, "feet")
  13009. },
  13010. {
  13011. name: "Normal",
  13012. height: math.unit(1250, "feet"),
  13013. default: true
  13014. },
  13015. {
  13016. name: "Good Day",
  13017. height: math.unit(88, "miles")
  13018. },
  13019. {
  13020. name: "Largest Measured Size",
  13021. height: math.unit(105.960, "galaxies")
  13022. },
  13023. ]
  13024. ))
  13025. characterMakers.push(() => makeCharacter(
  13026. { name: "Sven the Kaiju", species: ["monster", "fairy"], tags: ["anthro"] },
  13027. {
  13028. front: {
  13029. height: math.unit(20, "feet"),
  13030. weight: math.unit(2016, "kg"),
  13031. name: "Front",
  13032. image: {
  13033. source: "./media/characters/sven-the-kaiju/front.svg",
  13034. extra: 1277/1250,
  13035. bottom: 35/1312
  13036. }
  13037. },
  13038. mouth: {
  13039. height: math.unit(1.85, "feet"),
  13040. name: "Mouth",
  13041. image: {
  13042. source: "./media/characters/sven-the-kaiju/mouth.svg"
  13043. }
  13044. },
  13045. },
  13046. [
  13047. {
  13048. name: "Fairy",
  13049. height: math.unit(6, "inches")
  13050. },
  13051. {
  13052. name: "Normal",
  13053. height: math.unit(20, "feet"),
  13054. default: true
  13055. },
  13056. {
  13057. name: "Rampage",
  13058. height: math.unit(200, "feet")
  13059. },
  13060. {
  13061. name: "Archfey Forest Guardian",
  13062. height: math.unit(1, "mile")
  13063. },
  13064. ]
  13065. ))
  13066. characterMakers.push(() => makeCharacter(
  13067. { name: "Marik", species: ["dragon"], tags: ["anthro"] },
  13068. {
  13069. front: {
  13070. height: math.unit(4, "meters"),
  13071. weight: math.unit(2, "tons"),
  13072. name: "Front",
  13073. image: {
  13074. source: "./media/characters/marik/front.svg",
  13075. extra: 1057 / 1003,
  13076. bottom: 0.08
  13077. }
  13078. },
  13079. },
  13080. [
  13081. {
  13082. name: "Normal",
  13083. height: math.unit(4, "meters"),
  13084. default: true
  13085. },
  13086. {
  13087. name: "Macro",
  13088. height: math.unit(20, "meters")
  13089. },
  13090. {
  13091. name: "Megamacro",
  13092. height: math.unit(50, "km")
  13093. },
  13094. {
  13095. name: "Gigamacro",
  13096. height: math.unit(100, "km")
  13097. },
  13098. {
  13099. name: "Alpha Macro",
  13100. height: math.unit(7.88e7, "yottameters")
  13101. },
  13102. ]
  13103. ))
  13104. characterMakers.push(() => makeCharacter(
  13105. { name: "Mel", species: ["human", "moth"], tags: ["anthro"] },
  13106. {
  13107. front: {
  13108. height: math.unit(6, "feet"),
  13109. weight: math.unit(110, "lb"),
  13110. name: "Front",
  13111. image: {
  13112. source: "./media/characters/mel/front.svg",
  13113. extra: 736 / 617,
  13114. bottom: 0.017
  13115. }
  13116. },
  13117. },
  13118. [
  13119. {
  13120. name: "Pico",
  13121. height: math.unit(3, "pm")
  13122. },
  13123. {
  13124. name: "Nano",
  13125. height: math.unit(3, "nm")
  13126. },
  13127. {
  13128. name: "Micro",
  13129. height: math.unit(0.3, "mm"),
  13130. default: true
  13131. },
  13132. {
  13133. name: "Micro+",
  13134. height: math.unit(3, "mm")
  13135. },
  13136. {
  13137. name: "Normal",
  13138. height: math.unit(5 + 10.5 / 12, "feet")
  13139. },
  13140. ]
  13141. ))
  13142. characterMakers.push(() => makeCharacter(
  13143. { name: "Lykonous", species: ["monster"], tags: ["anthro"] },
  13144. {
  13145. kaiju: {
  13146. height: math.unit(1.75, "meters"),
  13147. weight: math.unit(55, "kg"),
  13148. name: "Kaiju",
  13149. image: {
  13150. source: "./media/characters/lykonous/kaiju.svg",
  13151. extra: 1055 / 946,
  13152. bottom: 0.135
  13153. }
  13154. },
  13155. },
  13156. [
  13157. {
  13158. name: "Normal",
  13159. height: math.unit(2.5, "meters"),
  13160. default: true
  13161. },
  13162. {
  13163. name: "Kaiju Dragon",
  13164. height: math.unit(60, "meters")
  13165. },
  13166. {
  13167. name: "Mega Kaiju",
  13168. height: math.unit(120, "km")
  13169. },
  13170. {
  13171. name: "Giga Kaiju",
  13172. height: math.unit(200, "megameters")
  13173. },
  13174. {
  13175. name: "Terra Kaiju",
  13176. height: math.unit(400, "gigameters")
  13177. },
  13178. {
  13179. name: "Kaiju Dragon God",
  13180. height: math.unit(13000, "exaparsecs")
  13181. },
  13182. ]
  13183. ))
  13184. characterMakers.push(() => makeCharacter(
  13185. { name: "Blü", species: ["dragon"], tags: ["anthro"] },
  13186. {
  13187. front: {
  13188. height: math.unit(6, "feet"),
  13189. weight: math.unit(150, "lb"),
  13190. name: "Front",
  13191. image: {
  13192. source: "./media/characters/blü/front.svg",
  13193. extra: 1883 / 1564,
  13194. bottom: 0.031
  13195. }
  13196. },
  13197. },
  13198. [
  13199. {
  13200. name: "Normal",
  13201. height: math.unit(13, "feet"),
  13202. default: true
  13203. },
  13204. {
  13205. name: "Big Boi",
  13206. height: math.unit(150, "meters")
  13207. },
  13208. {
  13209. name: "Mini Stomper",
  13210. height: math.unit(300, "meters")
  13211. },
  13212. {
  13213. name: "Macro",
  13214. height: math.unit(1000, "meters")
  13215. },
  13216. {
  13217. name: "Megamacro",
  13218. height: math.unit(11000, "meters")
  13219. },
  13220. {
  13221. name: "Gigamacro",
  13222. height: math.unit(11000, "km")
  13223. },
  13224. {
  13225. name: "Teramacro",
  13226. height: math.unit(420000, "km")
  13227. },
  13228. {
  13229. name: "Examacro",
  13230. height: math.unit(120, "parsecs")
  13231. },
  13232. {
  13233. name: "God Tho",
  13234. height: math.unit(98000000000, "parsecs")
  13235. },
  13236. ]
  13237. ))
  13238. characterMakers.push(() => makeCharacter(
  13239. { name: "Scales", species: ["dragon"], tags: ["taur"] },
  13240. {
  13241. taurFront: {
  13242. height: math.unit(6, "feet"),
  13243. weight: math.unit(200, "lb"),
  13244. name: "Taur (Front)",
  13245. image: {
  13246. source: "./media/characters/scales/taur-front.svg",
  13247. extra: 1,
  13248. bottom: 0.05
  13249. }
  13250. },
  13251. taurBack: {
  13252. height: math.unit(6, "feet"),
  13253. weight: math.unit(200, "lb"),
  13254. name: "Taur (Back)",
  13255. image: {
  13256. source: "./media/characters/scales/taur-back.svg",
  13257. extra: 1,
  13258. bottom: 0.08
  13259. }
  13260. },
  13261. anthro: {
  13262. height: math.unit(6 * 7 / 12, "feet"),
  13263. weight: math.unit(100, "lb"),
  13264. name: "Anthro",
  13265. image: {
  13266. source: "./media/characters/scales/anthro.svg",
  13267. extra: 1,
  13268. bottom: 0.06
  13269. }
  13270. },
  13271. },
  13272. [
  13273. {
  13274. name: "Normal",
  13275. height: math.unit(12, "feet"),
  13276. default: true
  13277. },
  13278. ]
  13279. ))
  13280. characterMakers.push(() => makeCharacter(
  13281. { name: "Koragos", species: ["lizard"], tags: ["anthro"] },
  13282. {
  13283. front: {
  13284. height: math.unit(6, "feet"),
  13285. weight: math.unit(150, "lb"),
  13286. name: "Front",
  13287. image: {
  13288. source: "./media/characters/koragos/front.svg",
  13289. extra: 841 / 794,
  13290. bottom: 0.035
  13291. }
  13292. },
  13293. back: {
  13294. height: math.unit(6, "feet"),
  13295. weight: math.unit(150, "lb"),
  13296. name: "Back",
  13297. image: {
  13298. source: "./media/characters/koragos/back.svg",
  13299. extra: 841 / 810,
  13300. bottom: 0.022
  13301. }
  13302. },
  13303. },
  13304. [
  13305. {
  13306. name: "Normal",
  13307. height: math.unit(6 + 11 / 12, "feet"),
  13308. default: true
  13309. },
  13310. {
  13311. name: "Macro",
  13312. height: math.unit(490, "feet")
  13313. },
  13314. {
  13315. name: "Megamacro",
  13316. height: math.unit(10, "miles")
  13317. },
  13318. {
  13319. name: "Gigamacro",
  13320. height: math.unit(50, "miles")
  13321. },
  13322. ]
  13323. ))
  13324. characterMakers.push(() => makeCharacter(
  13325. { name: "Xylrem", species: ["dragon"], tags: ["anthro"] },
  13326. {
  13327. front: {
  13328. height: math.unit(6, "feet"),
  13329. weight: math.unit(250, "lb"),
  13330. name: "Front",
  13331. image: {
  13332. source: "./media/characters/xylrem/front.svg",
  13333. extra: 3323 / 3050,
  13334. bottom: 0.065
  13335. }
  13336. },
  13337. },
  13338. [
  13339. {
  13340. name: "Micro",
  13341. height: math.unit(4, "feet")
  13342. },
  13343. {
  13344. name: "Normal",
  13345. height: math.unit(16, "feet"),
  13346. default: true
  13347. },
  13348. {
  13349. name: "Macro",
  13350. height: math.unit(2720, "feet")
  13351. },
  13352. {
  13353. name: "Megamacro",
  13354. height: math.unit(25000, "miles")
  13355. },
  13356. ]
  13357. ))
  13358. characterMakers.push(() => makeCharacter(
  13359. { name: "Ikideru", species: ["german-shepherd"], tags: ["anthro"] },
  13360. {
  13361. front: {
  13362. height: math.unit(8, "feet"),
  13363. weight: math.unit(250, "kg"),
  13364. name: "Front",
  13365. image: {
  13366. source: "./media/characters/ikideru/front.svg",
  13367. extra: 930 / 870,
  13368. bottom: 0.087
  13369. }
  13370. },
  13371. back: {
  13372. height: math.unit(8, "feet"),
  13373. weight: math.unit(250, "kg"),
  13374. name: "Back",
  13375. image: {
  13376. source: "./media/characters/ikideru/back.svg",
  13377. extra: 919 / 852,
  13378. bottom: 0.055
  13379. }
  13380. },
  13381. },
  13382. [
  13383. {
  13384. name: "Rare",
  13385. height: math.unit(8, "feet"),
  13386. default: true
  13387. },
  13388. {
  13389. name: "Playful Loom",
  13390. height: math.unit(80, "feet")
  13391. },
  13392. {
  13393. name: "City Leaner",
  13394. height: math.unit(230, "feet")
  13395. },
  13396. {
  13397. name: "Megamacro",
  13398. height: math.unit(2500, "feet")
  13399. },
  13400. {
  13401. name: "Gigamacro",
  13402. height: math.unit(26400, "feet")
  13403. },
  13404. {
  13405. name: "Tectonic Shifter",
  13406. height: math.unit(1.7, "megameters")
  13407. },
  13408. {
  13409. name: "Planet Carer",
  13410. height: math.unit(21, "megameters")
  13411. },
  13412. {
  13413. name: "God",
  13414. height: math.unit(11157.22, "parsecs")
  13415. },
  13416. ]
  13417. ))
  13418. characterMakers.push(() => makeCharacter(
  13419. { name: "Neo", species: ["dragon"], tags: ["anthro"] },
  13420. {
  13421. front: {
  13422. height: math.unit(6, "feet"),
  13423. weight: math.unit(120, "lb"),
  13424. name: "Front",
  13425. image: {
  13426. source: "./media/characters/neo/front.svg"
  13427. }
  13428. },
  13429. },
  13430. [
  13431. {
  13432. name: "Micro",
  13433. height: math.unit(2, "inches"),
  13434. default: true
  13435. },
  13436. {
  13437. name: "Human Size",
  13438. height: math.unit(5 + 8 / 12, "feet")
  13439. },
  13440. ]
  13441. ))
  13442. characterMakers.push(() => makeCharacter(
  13443. { name: "Chauncey (Chantz)", species: ["dragon"], tags: ["anthro"] },
  13444. {
  13445. front: {
  13446. height: math.unit(13 + 10 / 12, "feet"),
  13447. weight: math.unit(5320, "lb"),
  13448. name: "Front",
  13449. image: {
  13450. source: "./media/characters/chauncey-chantz/front.svg",
  13451. extra: 1587 / 1435,
  13452. bottom: 0.02
  13453. }
  13454. },
  13455. },
  13456. [
  13457. {
  13458. name: "Normal",
  13459. height: math.unit(13 + 10 / 12, "feet"),
  13460. default: true
  13461. },
  13462. {
  13463. name: "Macro",
  13464. height: math.unit(45, "feet")
  13465. },
  13466. {
  13467. name: "Megamacro",
  13468. height: math.unit(250, "miles")
  13469. },
  13470. {
  13471. name: "Planetary",
  13472. height: math.unit(10000, "miles")
  13473. },
  13474. {
  13475. name: "Galactic",
  13476. height: math.unit(40000, "parsecs")
  13477. },
  13478. {
  13479. name: "Universal",
  13480. height: math.unit(1, "yottameter")
  13481. },
  13482. ]
  13483. ))
  13484. characterMakers.push(() => makeCharacter(
  13485. { name: "Epifox", species: ["snake", "fox"], tags: ["naga"] },
  13486. {
  13487. front: {
  13488. height: math.unit(6, "feet"),
  13489. weight: math.unit(150, "lb"),
  13490. name: "Front",
  13491. image: {
  13492. source: "./media/characters/epifox/front.svg",
  13493. extra: 1,
  13494. bottom: 0.075
  13495. }
  13496. },
  13497. },
  13498. [
  13499. {
  13500. name: "Micro",
  13501. height: math.unit(6, "inches")
  13502. },
  13503. {
  13504. name: "Normal",
  13505. height: math.unit(12, "feet"),
  13506. default: true
  13507. },
  13508. {
  13509. name: "Macro",
  13510. height: math.unit(3810, "feet")
  13511. },
  13512. {
  13513. name: "Megamacro",
  13514. height: math.unit(500, "miles")
  13515. },
  13516. ]
  13517. ))
  13518. characterMakers.push(() => makeCharacter(
  13519. { name: "Colin T.", species: ["dragon"], tags: ["anthro"] },
  13520. {
  13521. front: {
  13522. height: math.unit(1.8796, "m"),
  13523. weight: math.unit(230, "lb"),
  13524. name: "Front",
  13525. image: {
  13526. source: "./media/characters/colin-t/front.svg",
  13527. extra: 1272 / 1193,
  13528. bottom: 0.07
  13529. }
  13530. },
  13531. },
  13532. [
  13533. {
  13534. name: "Micro",
  13535. height: math.unit(0.571, "meters")
  13536. },
  13537. {
  13538. name: "Normal",
  13539. height: math.unit(1.8796, "meters"),
  13540. default: true
  13541. },
  13542. {
  13543. name: "Tall",
  13544. height: math.unit(4, "meters")
  13545. },
  13546. {
  13547. name: "Macro",
  13548. height: math.unit(67.241, "meters")
  13549. },
  13550. {
  13551. name: "Megamacro",
  13552. height: math.unit(371.856, "meters")
  13553. },
  13554. {
  13555. name: "Planetary",
  13556. height: math.unit(12631.5689, "km")
  13557. },
  13558. ]
  13559. ))
  13560. characterMakers.push(() => makeCharacter(
  13561. { name: "Matvei", species: ["shark"], tags: ["anthro"] },
  13562. {
  13563. front: {
  13564. height: math.unit(1.85, "meters"),
  13565. weight: math.unit(80, "kg"),
  13566. name: "Front",
  13567. image: {
  13568. source: "./media/characters/matvei/front.svg",
  13569. extra: 456/447,
  13570. bottom: 8/464
  13571. }
  13572. },
  13573. back: {
  13574. height: math.unit(1.85, "meters"),
  13575. weight: math.unit(80, "kg"),
  13576. name: "Back",
  13577. image: {
  13578. source: "./media/characters/matvei/back.svg",
  13579. extra: 434/427,
  13580. bottom: 11/445
  13581. }
  13582. },
  13583. },
  13584. [
  13585. {
  13586. name: "Normal",
  13587. height: math.unit(1.85, "meters"),
  13588. default: true
  13589. },
  13590. ]
  13591. ))
  13592. characterMakers.push(() => makeCharacter(
  13593. { name: "Quincy", species: ["phoenix"], tags: ["anthro"] },
  13594. {
  13595. front: {
  13596. height: math.unit(5 + 9 / 12, "feet"),
  13597. weight: math.unit(70, "lb"),
  13598. name: "Front",
  13599. image: {
  13600. source: "./media/characters/quincy/front.svg",
  13601. extra: 3041 / 2751
  13602. }
  13603. },
  13604. back: {
  13605. height: math.unit(5 + 9 / 12, "feet"),
  13606. weight: math.unit(70, "lb"),
  13607. name: "Back",
  13608. image: {
  13609. source: "./media/characters/quincy/back.svg",
  13610. extra: 3041 / 2751
  13611. }
  13612. },
  13613. flying: {
  13614. height: math.unit(5 + 4 / 12, "feet"),
  13615. weight: math.unit(70, "lb"),
  13616. name: "Flying",
  13617. image: {
  13618. source: "./media/characters/quincy/flying.svg",
  13619. extra: 1044 / 930
  13620. }
  13621. },
  13622. },
  13623. [
  13624. {
  13625. name: "Micro",
  13626. height: math.unit(3, "cm")
  13627. },
  13628. {
  13629. name: "Normal",
  13630. height: math.unit(5 + 9 / 12, "feet")
  13631. },
  13632. {
  13633. name: "Macro",
  13634. height: math.unit(200, "meters"),
  13635. default: true
  13636. },
  13637. {
  13638. name: "Megamacro",
  13639. height: math.unit(1000, "meters")
  13640. },
  13641. ]
  13642. ))
  13643. characterMakers.push(() => makeCharacter(
  13644. { name: "Vanrel", species: ["fennec-fox"], tags: ["anthro"] },
  13645. {
  13646. front: {
  13647. height: math.unit(3 + 11/12, "feet"),
  13648. weight: math.unit(50, "lb"),
  13649. name: "Front",
  13650. image: {
  13651. source: "./media/characters/vanrel/front.svg",
  13652. extra: 1104/949,
  13653. bottom: 52/1156
  13654. }
  13655. },
  13656. back: {
  13657. height: math.unit(3 + 11/12, "feet"),
  13658. weight: math.unit(50, "lb"),
  13659. name: "Back",
  13660. image: {
  13661. source: "./media/characters/vanrel/back.svg",
  13662. extra: 1119/976,
  13663. bottom: 37/1156
  13664. }
  13665. },
  13666. tome: {
  13667. height: math.unit(1.35, "feet"),
  13668. weight: math.unit(10, "lb"),
  13669. name: "Vanrel's Tome",
  13670. rename: true,
  13671. image: {
  13672. source: "./media/characters/vanrel/tome.svg"
  13673. }
  13674. },
  13675. beans: {
  13676. height: math.unit(0.89, "feet"),
  13677. name: "Beans",
  13678. image: {
  13679. source: "./media/characters/vanrel/beans.svg"
  13680. }
  13681. },
  13682. },
  13683. [
  13684. {
  13685. name: "Normal",
  13686. height: math.unit(3 + 11/12, "feet"),
  13687. default: true
  13688. },
  13689. ]
  13690. ))
  13691. characterMakers.push(() => makeCharacter(
  13692. { name: "Kuiper Vanrel", species: ["elemental", "meerkat"], tags: ["anthro"] },
  13693. {
  13694. front: {
  13695. height: math.unit(7 + 5 / 12, "feet"),
  13696. name: "Front",
  13697. image: {
  13698. source: "./media/characters/kuiper-vanrel/front.svg",
  13699. extra: 1219/1169,
  13700. bottom: 69/1288
  13701. }
  13702. },
  13703. back: {
  13704. height: math.unit(7 + 5 / 12, "feet"),
  13705. name: "Back",
  13706. image: {
  13707. source: "./media/characters/kuiper-vanrel/back.svg",
  13708. extra: 1236/1193,
  13709. bottom: 27/1263
  13710. }
  13711. },
  13712. foot: {
  13713. height: math.unit(0.55, "meters"),
  13714. name: "Foot",
  13715. image: {
  13716. source: "./media/characters/kuiper-vanrel/foot.svg",
  13717. }
  13718. },
  13719. battle: {
  13720. height: math.unit(6.824, "feet"),
  13721. name: "Battle",
  13722. image: {
  13723. source: "./media/characters/kuiper-vanrel/battle.svg",
  13724. extra: 1466 / 1327,
  13725. bottom: 29 / 1492.5
  13726. }
  13727. },
  13728. meerkui: {
  13729. height: math.unit(18, "inches"),
  13730. name: "Meerkui",
  13731. image: {
  13732. source: "./media/characters/kuiper-vanrel/meerkui.svg",
  13733. extra: 1354/1289,
  13734. bottom: 69/1423
  13735. }
  13736. },
  13737. },
  13738. [
  13739. {
  13740. name: "Normal",
  13741. height: math.unit(7 + 5 / 12, "feet"),
  13742. default: true
  13743. },
  13744. ]
  13745. ))
  13746. characterMakers.push(() => makeCharacter(
  13747. { name: "Keset Vanrel", species: ["elemental", "hyena"], tags: ["anthro"] },
  13748. {
  13749. front: {
  13750. height: math.unit(8 + 5 / 12, "feet"),
  13751. name: "Front",
  13752. image: {
  13753. source: "./media/characters/keset-vanrel/front.svg",
  13754. extra: 1231/1148,
  13755. bottom: 82/1313
  13756. }
  13757. },
  13758. back: {
  13759. height: math.unit(8 + 5 / 12, "feet"),
  13760. name: "Back",
  13761. image: {
  13762. source: "./media/characters/keset-vanrel/back.svg",
  13763. extra: 1240/1174,
  13764. bottom: 33/1273
  13765. }
  13766. },
  13767. hand: {
  13768. height: math.unit(0.6, "meters"),
  13769. name: "Hand",
  13770. image: {
  13771. source: "./media/characters/keset-vanrel/hand.svg"
  13772. }
  13773. },
  13774. foot: {
  13775. height: math.unit(0.94978, "meters"),
  13776. name: "Foot",
  13777. image: {
  13778. source: "./media/characters/keset-vanrel/foot.svg"
  13779. }
  13780. },
  13781. battle: {
  13782. height: math.unit(7.408, "feet"),
  13783. name: "Battle",
  13784. image: {
  13785. source: "./media/characters/keset-vanrel/battle.svg",
  13786. extra: 1890 / 1386,
  13787. bottom: 73.28 / 1970
  13788. }
  13789. },
  13790. },
  13791. [
  13792. {
  13793. name: "Normal",
  13794. height: math.unit(8 + 5 / 12, "feet"),
  13795. default: true
  13796. },
  13797. ]
  13798. ))
  13799. characterMakers.push(() => makeCharacter(
  13800. { name: "Neos", species: ["mew"], tags: ["anthro"] },
  13801. {
  13802. front: {
  13803. height: math.unit(6, "feet"),
  13804. weight: math.unit(150, "lb"),
  13805. name: "Front",
  13806. image: {
  13807. source: "./media/characters/neos/front.svg",
  13808. extra: 1696 / 992,
  13809. bottom: 0.14
  13810. }
  13811. },
  13812. },
  13813. [
  13814. {
  13815. name: "Normal",
  13816. height: math.unit(54, "cm"),
  13817. default: true
  13818. },
  13819. {
  13820. name: "Macro",
  13821. height: math.unit(100, "m")
  13822. },
  13823. {
  13824. name: "Megamacro",
  13825. height: math.unit(10, "km")
  13826. },
  13827. {
  13828. name: "Megamacro+",
  13829. height: math.unit(100, "km")
  13830. },
  13831. {
  13832. name: "Gigamacro",
  13833. height: math.unit(100, "Mm")
  13834. },
  13835. {
  13836. name: "Teramacro",
  13837. height: math.unit(100, "Gm")
  13838. },
  13839. {
  13840. name: "Examacro",
  13841. height: math.unit(100, "Em")
  13842. },
  13843. {
  13844. name: "Godly",
  13845. height: math.unit(10000, "Ym")
  13846. },
  13847. {
  13848. name: "Beyond Godly",
  13849. height: math.unit(25, "multiverses")
  13850. },
  13851. ]
  13852. ))
  13853. characterMakers.push(() => makeCharacter(
  13854. { name: "Sammy Mouse", species: ["mouse"], tags: ["anthro"] },
  13855. {
  13856. feminine: {
  13857. height: math.unit(5, "feet"),
  13858. weight: math.unit(100, "lb"),
  13859. name: "Feminine",
  13860. image: {
  13861. source: "./media/characters/sammy-mouse/feminine.svg",
  13862. extra: 2526 / 2425,
  13863. bottom: 0.123
  13864. }
  13865. },
  13866. masculine: {
  13867. height: math.unit(5, "feet"),
  13868. weight: math.unit(100, "lb"),
  13869. name: "Masculine",
  13870. image: {
  13871. source: "./media/characters/sammy-mouse/masculine.svg",
  13872. extra: 2526 / 2425,
  13873. bottom: 0.123
  13874. }
  13875. },
  13876. },
  13877. [
  13878. {
  13879. name: "Micro",
  13880. height: math.unit(5, "inches")
  13881. },
  13882. {
  13883. name: "Normal",
  13884. height: math.unit(5, "feet"),
  13885. default: true
  13886. },
  13887. {
  13888. name: "Macro",
  13889. height: math.unit(60, "feet")
  13890. },
  13891. ]
  13892. ))
  13893. characterMakers.push(() => makeCharacter(
  13894. { name: "Kole", species: ["kobold"], tags: ["anthro"] },
  13895. {
  13896. front: {
  13897. height: math.unit(4, "feet"),
  13898. weight: math.unit(50, "lb"),
  13899. name: "Front",
  13900. image: {
  13901. source: "./media/characters/kole/front.svg",
  13902. extra: 1423 / 1303,
  13903. bottom: 0.025
  13904. }
  13905. },
  13906. back: {
  13907. height: math.unit(4, "feet"),
  13908. weight: math.unit(50, "lb"),
  13909. name: "Back",
  13910. image: {
  13911. source: "./media/characters/kole/back.svg",
  13912. extra: 1426 / 1280,
  13913. bottom: 0.02
  13914. }
  13915. },
  13916. },
  13917. [
  13918. {
  13919. name: "Normal",
  13920. height: math.unit(4, "feet"),
  13921. default: true
  13922. },
  13923. ]
  13924. ))
  13925. characterMakers.push(() => makeCharacter(
  13926. { name: "Rufran", species: ["moth", "avian", "kobold"], tags: ["anthro"] },
  13927. {
  13928. front: {
  13929. height: math.unit(2.5, "feet"),
  13930. weight: math.unit(32, "lb"),
  13931. name: "Front",
  13932. image: {
  13933. source: "./media/characters/rufran/front.svg",
  13934. extra: 1313/885,
  13935. bottom: 94/1407
  13936. }
  13937. },
  13938. side: {
  13939. height: math.unit(2.5, "feet"),
  13940. weight: math.unit(32, "lb"),
  13941. name: "Side",
  13942. image: {
  13943. source: "./media/characters/rufran/side.svg",
  13944. extra: 1109/852,
  13945. bottom: 118/1227
  13946. }
  13947. },
  13948. back: {
  13949. height: math.unit(2.5, "feet"),
  13950. weight: math.unit(32, "lb"),
  13951. name: "Back",
  13952. image: {
  13953. source: "./media/characters/rufran/back.svg",
  13954. extra: 1280/878,
  13955. bottom: 131/1411
  13956. }
  13957. },
  13958. mouth: {
  13959. height: math.unit(1.13, "feet"),
  13960. name: "Mouth",
  13961. image: {
  13962. source: "./media/characters/rufran/mouth.svg"
  13963. }
  13964. },
  13965. foot: {
  13966. height: math.unit(1.33, "feet"),
  13967. name: "Foot",
  13968. image: {
  13969. source: "./media/characters/rufran/foot.svg"
  13970. }
  13971. },
  13972. koboldFront: {
  13973. height: math.unit(2 + 6 / 12, "feet"),
  13974. weight: math.unit(20, "lb"),
  13975. name: "Front (Kobold)",
  13976. image: {
  13977. source: "./media/characters/rufran/kobold-front.svg",
  13978. extra: 2041 / 1839,
  13979. bottom: 0.055
  13980. }
  13981. },
  13982. koboldBack: {
  13983. height: math.unit(2 + 6 / 12, "feet"),
  13984. weight: math.unit(20, "lb"),
  13985. name: "Back (Kobold)",
  13986. image: {
  13987. source: "./media/characters/rufran/kobold-back.svg",
  13988. extra: 2054 / 1839,
  13989. bottom: 0.01
  13990. }
  13991. },
  13992. koboldHand: {
  13993. height: math.unit(0.2166, "meters"),
  13994. name: "Hand (Kobold)",
  13995. image: {
  13996. source: "./media/characters/rufran/kobold-hand.svg"
  13997. }
  13998. },
  13999. koboldFoot: {
  14000. height: math.unit(0.185, "meters"),
  14001. name: "Foot (Kobold)",
  14002. image: {
  14003. source: "./media/characters/rufran/kobold-foot.svg"
  14004. }
  14005. },
  14006. },
  14007. [
  14008. {
  14009. name: "Micro",
  14010. height: math.unit(1, "inch")
  14011. },
  14012. {
  14013. name: "Normal",
  14014. height: math.unit(2 + 6 / 12, "feet"),
  14015. default: true
  14016. },
  14017. {
  14018. name: "Big",
  14019. height: math.unit(60, "feet")
  14020. },
  14021. {
  14022. name: "Macro",
  14023. height: math.unit(325, "feet")
  14024. },
  14025. ]
  14026. ))
  14027. characterMakers.push(() => makeCharacter(
  14028. { name: "Chip", species: ["espurr"], tags: ["anthro"] },
  14029. {
  14030. front: {
  14031. height: math.unit(0.3, "meters"),
  14032. weight: math.unit(3.5, "kg"),
  14033. name: "Front",
  14034. image: {
  14035. source: "./media/characters/chip/front.svg",
  14036. extra: 748 / 674
  14037. }
  14038. },
  14039. },
  14040. [
  14041. {
  14042. name: "Micro",
  14043. height: math.unit(1, "inch"),
  14044. default: true
  14045. },
  14046. ]
  14047. ))
  14048. characterMakers.push(() => makeCharacter(
  14049. { name: "Torvid", species: ["gryphon"], tags: ["feral"] },
  14050. {
  14051. side: {
  14052. height: math.unit(2.3, "meters"),
  14053. weight: math.unit(3500, "lb"),
  14054. name: "Side",
  14055. image: {
  14056. source: "./media/characters/torvid/side.svg",
  14057. extra: 1972 / 722,
  14058. bottom: 0.035
  14059. }
  14060. },
  14061. },
  14062. [
  14063. {
  14064. name: "Normal",
  14065. height: math.unit(2.3, "meters"),
  14066. default: true
  14067. },
  14068. ]
  14069. ))
  14070. characterMakers.push(() => makeCharacter(
  14071. { name: "Susan", species: ["goodra"], tags: ["anthro"] },
  14072. {
  14073. front: {
  14074. height: math.unit(2, "meters"),
  14075. weight: math.unit(150.5, "kg"),
  14076. name: "Front",
  14077. image: {
  14078. source: "./media/characters/susan/front.svg",
  14079. extra: 693 / 635,
  14080. bottom: 0.05
  14081. }
  14082. },
  14083. },
  14084. [
  14085. {
  14086. name: "Megamacro",
  14087. height: math.unit(505, "miles"),
  14088. default: true
  14089. },
  14090. ]
  14091. ))
  14092. characterMakers.push(() => makeCharacter(
  14093. { name: "Raindrops", species: ["fox"], tags: ["anthro"] },
  14094. {
  14095. front: {
  14096. height: math.unit(6, "feet"),
  14097. weight: math.unit(150, "lb"),
  14098. name: "Front",
  14099. image: {
  14100. source: "./media/characters/raindrops/front.svg",
  14101. extra: 2655 / 2461,
  14102. bottom: 49 / 2705
  14103. }
  14104. },
  14105. back: {
  14106. height: math.unit(6, "feet"),
  14107. weight: math.unit(150, "lb"),
  14108. name: "Back",
  14109. image: {
  14110. source: "./media/characters/raindrops/back.svg",
  14111. extra: 2574 / 2400,
  14112. bottom: 65 / 2634
  14113. }
  14114. },
  14115. },
  14116. [
  14117. {
  14118. name: "Micro",
  14119. height: math.unit(6, "inches")
  14120. },
  14121. {
  14122. name: "Normal",
  14123. height: math.unit(6 + 2 / 12, "feet")
  14124. },
  14125. {
  14126. name: "Macro",
  14127. height: math.unit(131, "feet"),
  14128. default: true
  14129. },
  14130. {
  14131. name: "Megamacro",
  14132. height: math.unit(15, "miles")
  14133. },
  14134. {
  14135. name: "Gigamacro",
  14136. height: math.unit(4000, "miles")
  14137. },
  14138. {
  14139. name: "Teramacro",
  14140. height: math.unit(315000, "miles")
  14141. },
  14142. ]
  14143. ))
  14144. characterMakers.push(() => makeCharacter(
  14145. { name: "Tezwa", species: ["lion"], tags: ["anthro"] },
  14146. {
  14147. front: {
  14148. height: math.unit(2.794, "meters"),
  14149. weight: math.unit(325, "kg"),
  14150. name: "Front",
  14151. image: {
  14152. source: "./media/characters/tezwa/front.svg",
  14153. extra: 2083 / 1906,
  14154. bottom: 0.031
  14155. }
  14156. },
  14157. foot: {
  14158. height: math.unit(0.687, "meters"),
  14159. name: "Foot",
  14160. image: {
  14161. source: "./media/characters/tezwa/foot.svg"
  14162. }
  14163. },
  14164. },
  14165. [
  14166. {
  14167. name: "Normal",
  14168. height: math.unit(9 + 2 / 12, "feet"),
  14169. default: true
  14170. },
  14171. ]
  14172. ))
  14173. characterMakers.push(() => makeCharacter(
  14174. { name: "Typhus", species: ["typhlosion", "demon"], tags: ["anthro"] },
  14175. {
  14176. front: {
  14177. height: math.unit(58, "feet"),
  14178. weight: math.unit(89000, "lb"),
  14179. name: "Front",
  14180. image: {
  14181. source: "./media/characters/typhus/front.svg",
  14182. extra: 816 / 800,
  14183. bottom: 0.065
  14184. }
  14185. },
  14186. },
  14187. [
  14188. {
  14189. name: "Macro",
  14190. height: math.unit(58, "feet"),
  14191. default: true
  14192. },
  14193. ]
  14194. ))
  14195. characterMakers.push(() => makeCharacter(
  14196. { name: "Lyra Von Wulf", species: ["snake"], tags: ["anthro"] },
  14197. {
  14198. front: {
  14199. height: math.unit(12, "feet"),
  14200. weight: math.unit(6, "tonnes"),
  14201. name: "Front",
  14202. image: {
  14203. source: "./media/characters/lyra-von-wulf/front.svg",
  14204. extra: 1,
  14205. bottom: 0.10
  14206. }
  14207. },
  14208. frontMecha: {
  14209. height: math.unit(12, "feet"),
  14210. weight: math.unit(12, "tonnes"),
  14211. name: "Front (Mecha)",
  14212. image: {
  14213. source: "./media/characters/lyra-von-wulf/front-mecha.svg",
  14214. extra: 1,
  14215. bottom: 0.042
  14216. }
  14217. },
  14218. maw: {
  14219. height: math.unit(2.2, "feet"),
  14220. name: "Maw",
  14221. image: {
  14222. source: "./media/characters/lyra-von-wulf/maw.svg"
  14223. }
  14224. },
  14225. },
  14226. [
  14227. {
  14228. name: "Normal",
  14229. height: math.unit(12, "feet"),
  14230. default: true
  14231. },
  14232. {
  14233. name: "Classic",
  14234. height: math.unit(50, "feet")
  14235. },
  14236. {
  14237. name: "Macro",
  14238. height: math.unit(500, "feet")
  14239. },
  14240. {
  14241. name: "Megamacro",
  14242. height: math.unit(1, "mile")
  14243. },
  14244. {
  14245. name: "Gigamacro",
  14246. height: math.unit(400, "miles")
  14247. },
  14248. {
  14249. name: "Teramacro",
  14250. height: math.unit(22000, "miles")
  14251. },
  14252. {
  14253. name: "Solarmacro",
  14254. height: math.unit(8600000, "miles")
  14255. },
  14256. {
  14257. name: "Galactic",
  14258. height: math.unit(1057000, "lightyears")
  14259. },
  14260. ]
  14261. ))
  14262. characterMakers.push(() => makeCharacter(
  14263. { name: "Dixon", species: ["canine"], tags: ["anthro"] },
  14264. {
  14265. front: {
  14266. height: math.unit(6 + 10 / 12, "feet"),
  14267. weight: math.unit(150, "lb"),
  14268. name: "Front",
  14269. image: {
  14270. source: "./media/characters/dixon/front.svg",
  14271. extra: 3361 / 3209,
  14272. bottom: 0.01
  14273. }
  14274. },
  14275. },
  14276. [
  14277. {
  14278. name: "Normal",
  14279. height: math.unit(6 + 10 / 12, "feet"),
  14280. default: true
  14281. },
  14282. {
  14283. name: "Big",
  14284. height: math.unit(12, "meters")
  14285. },
  14286. {
  14287. name: "Macro",
  14288. height: math.unit(500, "meters")
  14289. },
  14290. {
  14291. name: "Megamacro",
  14292. height: math.unit(2, "km")
  14293. },
  14294. ]
  14295. ))
  14296. characterMakers.push(() => makeCharacter(
  14297. { name: "Kauko", species: ["cheetah"], tags: ["anthro"] },
  14298. {
  14299. front: {
  14300. height: math.unit(185, "cm"),
  14301. weight: math.unit(68, "kg"),
  14302. name: "Front",
  14303. image: {
  14304. source: "./media/characters/kauko/front.svg",
  14305. extra: 1455 / 1421,
  14306. bottom: 0.03
  14307. }
  14308. },
  14309. back: {
  14310. height: math.unit(185, "cm"),
  14311. weight: math.unit(68, "kg"),
  14312. name: "Back",
  14313. image: {
  14314. source: "./media/characters/kauko/back.svg",
  14315. extra: 1455 / 1421,
  14316. bottom: 0.004
  14317. }
  14318. },
  14319. },
  14320. [
  14321. {
  14322. name: "Normal",
  14323. height: math.unit(185, "cm"),
  14324. default: true
  14325. },
  14326. ]
  14327. ))
  14328. characterMakers.push(() => makeCharacter(
  14329. { name: "Varg", species: ["dragon"], tags: ["anthro"] },
  14330. {
  14331. frontSfw: {
  14332. height: math.unit(5, "meters"),
  14333. weight: math.unit(4250, "lb"),
  14334. name: "Front",
  14335. image: {
  14336. source: "./media/characters/varg/front-sfw.svg",
  14337. extra: 1103/1010,
  14338. bottom: 50/1153
  14339. },
  14340. form: "anthro",
  14341. default: true
  14342. },
  14343. backSfw: {
  14344. height: math.unit(5, "meters"),
  14345. weight: math.unit(4250, "lb"),
  14346. name: "Back",
  14347. image: {
  14348. source: "./media/characters/varg/back-sfw.svg",
  14349. extra: 1038/1022,
  14350. bottom: 36/1074
  14351. },
  14352. form: "anthro"
  14353. },
  14354. frontNsfw: {
  14355. height: math.unit(5, "meters"),
  14356. weight: math.unit(4250, "lb"),
  14357. name: "Front (NSFW)",
  14358. image: {
  14359. source: "./media/characters/varg/front-nsfw.svg",
  14360. extra: 1103/1010,
  14361. bottom: 50/1153
  14362. },
  14363. form: "anthro"
  14364. },
  14365. sheath: {
  14366. height: math.unit(3.8, "feet"),
  14367. weight: math.unit(90, "kilograms"),
  14368. name: "Sheath",
  14369. image: {
  14370. source: "./media/characters/varg/sheath.svg"
  14371. },
  14372. form: "anthro"
  14373. },
  14374. dick: {
  14375. height: math.unit(4.6, "feet"),
  14376. weight: math.unit(451, "kilograms"),
  14377. name: "Dick",
  14378. image: {
  14379. source: "./media/characters/varg/dick.svg"
  14380. },
  14381. form: "anthro"
  14382. },
  14383. feralSfw: {
  14384. height: math.unit(5, "meters"),
  14385. weight: math.unit(100000, "lb"),
  14386. name: "Side",
  14387. image: {
  14388. source: "./media/characters/varg/feral-sfw.svg",
  14389. extra: 1065/511,
  14390. bottom: 211/1276
  14391. },
  14392. form: "feral",
  14393. default: true
  14394. },
  14395. feralNsfw: {
  14396. height: math.unit(5, "meters"),
  14397. weight: math.unit(100000, "lb"),
  14398. name: "Side (NSFW)",
  14399. image: {
  14400. source: "./media/characters/varg/feral-nsfw.svg",
  14401. extra: 1065/511,
  14402. bottom: 211/1276
  14403. },
  14404. form: "feral",
  14405. },
  14406. feralSheath: {
  14407. height: math.unit(9.8, "feet"),
  14408. weight: math.unit(2000, "kilograms"),
  14409. name: "Sheath",
  14410. image: {
  14411. source: "./media/characters/varg/sheath.svg"
  14412. },
  14413. form: "feral"
  14414. },
  14415. feralDick: {
  14416. height: math.unit(13.11, "feet"),
  14417. weight: math.unit(10440, "kilograms"),
  14418. name: "Dick",
  14419. image: {
  14420. source: "./media/characters/varg/dick.svg"
  14421. },
  14422. form: "feral"
  14423. },
  14424. },
  14425. [
  14426. {
  14427. name: "Normal",
  14428. height: math.unit(5, "meters"),
  14429. form: "anthro"
  14430. },
  14431. {
  14432. name: "Macro",
  14433. height: math.unit(200, "meters"),
  14434. form: "anthro"
  14435. },
  14436. {
  14437. name: "Megamacro",
  14438. height: math.unit(20, "kilometers"),
  14439. form: "anthro"
  14440. },
  14441. {
  14442. name: "True Size",
  14443. height: math.unit(211, "km"),
  14444. form: "anthro",
  14445. default: true
  14446. },
  14447. {
  14448. name: "Gigamacro",
  14449. height: math.unit(1000, "km"),
  14450. form: "anthro"
  14451. },
  14452. {
  14453. name: "Gigamacro+",
  14454. height: math.unit(8000, "km"),
  14455. form: "anthro"
  14456. },
  14457. {
  14458. name: "Teramacro",
  14459. height: math.unit(1000000, "km"),
  14460. form: "anthro"
  14461. },
  14462. {
  14463. name: "Normal",
  14464. height: math.unit(5, "meters"),
  14465. form: "feral"
  14466. },
  14467. {
  14468. name: "Macro",
  14469. height: math.unit(200, "meters"),
  14470. form: "feral"
  14471. },
  14472. {
  14473. name: "Megamacro",
  14474. height: math.unit(20, "kilometers"),
  14475. form: "feral"
  14476. },
  14477. {
  14478. name: "True Size",
  14479. height: math.unit(211, "km"),
  14480. form: "feral",
  14481. default: true
  14482. },
  14483. {
  14484. name: "Gigamacro",
  14485. height: math.unit(1000, "km"),
  14486. form: "feral"
  14487. },
  14488. {
  14489. name: "Gigamacro+",
  14490. height: math.unit(8000, "km"),
  14491. form: "feral"
  14492. },
  14493. {
  14494. name: "Teramacro",
  14495. height: math.unit(1000000, "km"),
  14496. form: "feral"
  14497. },
  14498. ],
  14499. {
  14500. "anthro": {
  14501. name: "Anthro",
  14502. default: true
  14503. },
  14504. "feral": {
  14505. name: "Feral",
  14506. },
  14507. }
  14508. ))
  14509. characterMakers.push(() => makeCharacter(
  14510. { name: "Dayza", species: ["sergal"], tags: ["anthro"] },
  14511. {
  14512. front: {
  14513. height: math.unit(7 + 7 / 12, "feet"),
  14514. weight: math.unit(267, "lb"),
  14515. name: "Front",
  14516. image: {
  14517. source: "./media/characters/dayza/front.svg",
  14518. extra: 1262 / 1200,
  14519. bottom: 0.035
  14520. }
  14521. },
  14522. side: {
  14523. height: math.unit(7 + 7 / 12, "feet"),
  14524. weight: math.unit(267, "lb"),
  14525. name: "Side",
  14526. image: {
  14527. source: "./media/characters/dayza/side.svg",
  14528. extra: 1295 / 1245,
  14529. bottom: 0.05
  14530. }
  14531. },
  14532. back: {
  14533. height: math.unit(7 + 7 / 12, "feet"),
  14534. weight: math.unit(267, "lb"),
  14535. name: "Back",
  14536. image: {
  14537. source: "./media/characters/dayza/back.svg",
  14538. extra: 1241 / 1170
  14539. }
  14540. },
  14541. },
  14542. [
  14543. {
  14544. name: "Normal",
  14545. height: math.unit(7 + 7 / 12, "feet"),
  14546. default: true
  14547. },
  14548. {
  14549. name: "Macro",
  14550. height: math.unit(155, "feet")
  14551. },
  14552. ]
  14553. ))
  14554. characterMakers.push(() => makeCharacter(
  14555. { name: "Xanthos", species: ["xenomorph"], tags: ["anthro"] },
  14556. {
  14557. front: {
  14558. height: math.unit(6 + 5 / 12, "feet"),
  14559. weight: math.unit(160, "lb"),
  14560. name: "Front",
  14561. image: {
  14562. source: "./media/characters/xanthos/front.svg",
  14563. extra: 1,
  14564. bottom: 0.04
  14565. }
  14566. },
  14567. back: {
  14568. height: math.unit(6 + 5 / 12, "feet"),
  14569. weight: math.unit(160, "lb"),
  14570. name: "Back",
  14571. image: {
  14572. source: "./media/characters/xanthos/back.svg",
  14573. extra: 1,
  14574. bottom: 0.03
  14575. }
  14576. },
  14577. hand: {
  14578. height: math.unit(0.928, "feet"),
  14579. name: "Hand",
  14580. image: {
  14581. source: "./media/characters/xanthos/hand.svg"
  14582. }
  14583. },
  14584. foot: {
  14585. height: math.unit(1.286, "feet"),
  14586. name: "Foot",
  14587. image: {
  14588. source: "./media/characters/xanthos/foot.svg"
  14589. }
  14590. },
  14591. },
  14592. [
  14593. {
  14594. name: "Normal",
  14595. height: math.unit(6 + 5 / 12, "feet"),
  14596. default: true
  14597. },
  14598. {
  14599. name: "Normal+",
  14600. height: math.unit(6, "meters")
  14601. },
  14602. {
  14603. name: "Macro",
  14604. height: math.unit(40, "feet")
  14605. },
  14606. {
  14607. name: "Macro+",
  14608. height: math.unit(200, "meters")
  14609. },
  14610. {
  14611. name: "Megamacro",
  14612. height: math.unit(20, "km")
  14613. },
  14614. {
  14615. name: "Megamacro+",
  14616. height: math.unit(100, "km")
  14617. },
  14618. {
  14619. name: "Gigamacro",
  14620. height: math.unit(200, "megameters")
  14621. },
  14622. {
  14623. name: "Gigamacro+",
  14624. height: math.unit(1.5, "gigameters")
  14625. },
  14626. ]
  14627. ))
  14628. characterMakers.push(() => makeCharacter(
  14629. { name: "Grynn", species: ["charr"], tags: ["anthro"] },
  14630. {
  14631. front: {
  14632. height: math.unit(6 + 3 / 12, "feet"),
  14633. weight: math.unit(215, "lb"),
  14634. name: "Front",
  14635. image: {
  14636. source: "./media/characters/grynn/front.svg",
  14637. extra: 4627 / 4209,
  14638. bottom: 0.047
  14639. }
  14640. },
  14641. },
  14642. [
  14643. {
  14644. name: "Micro",
  14645. height: math.unit(6, "inches")
  14646. },
  14647. {
  14648. name: "Normal",
  14649. height: math.unit(6 + 3 / 12, "feet"),
  14650. default: true
  14651. },
  14652. {
  14653. name: "Big",
  14654. height: math.unit(104, "feet")
  14655. },
  14656. {
  14657. name: "Macro",
  14658. height: math.unit(944, "feet")
  14659. },
  14660. {
  14661. name: "Macro+",
  14662. height: math.unit(9480, "feet")
  14663. },
  14664. {
  14665. name: "Megamacro",
  14666. height: math.unit(78752, "feet")
  14667. },
  14668. {
  14669. name: "Megamacro+",
  14670. height: math.unit(630128, "feet")
  14671. },
  14672. {
  14673. name: "Megamacro++",
  14674. height: math.unit(3150695, "feet")
  14675. },
  14676. ]
  14677. ))
  14678. characterMakers.push(() => makeCharacter(
  14679. { name: "Mocha Aura", species: ["siberian-husky"], tags: ["anthro"] },
  14680. {
  14681. front: {
  14682. height: math.unit(7 + 5 / 12, "feet"),
  14683. weight: math.unit(450, "lb"),
  14684. name: "Front",
  14685. image: {
  14686. source: "./media/characters/mocha-aura/front.svg",
  14687. extra: 1907 / 1817,
  14688. bottom: 0.04
  14689. }
  14690. },
  14691. back: {
  14692. height: math.unit(7 + 5 / 12, "feet"),
  14693. weight: math.unit(450, "lb"),
  14694. name: "Back",
  14695. image: {
  14696. source: "./media/characters/mocha-aura/back.svg",
  14697. extra: 1900 / 1825,
  14698. bottom: 0.045
  14699. }
  14700. },
  14701. },
  14702. [
  14703. {
  14704. name: "Nano",
  14705. height: math.unit(1, "nm")
  14706. },
  14707. {
  14708. name: "Megamicro",
  14709. height: math.unit(1, "mm")
  14710. },
  14711. {
  14712. name: "Micro",
  14713. height: math.unit(3, "inches")
  14714. },
  14715. {
  14716. name: "Normal",
  14717. height: math.unit(7 + 5 / 12, "feet"),
  14718. default: true
  14719. },
  14720. {
  14721. name: "Macro",
  14722. height: math.unit(30, "feet")
  14723. },
  14724. {
  14725. name: "Megamacro",
  14726. height: math.unit(3500, "feet")
  14727. },
  14728. {
  14729. name: "Teramacro",
  14730. height: math.unit(500000, "miles")
  14731. },
  14732. {
  14733. name: "Petamacro",
  14734. height: math.unit(50000000000000000, "parsecs")
  14735. },
  14736. ]
  14737. ))
  14738. characterMakers.push(() => makeCharacter(
  14739. { name: "Ilisha Devya", species: ["alligator", "cobra", "deity"], tags: ["anthro"] },
  14740. {
  14741. front: {
  14742. height: math.unit(6, "feet"),
  14743. weight: math.unit(150, "lb"),
  14744. name: "Front",
  14745. image: {
  14746. source: "./media/characters/ilisha-devya/front.svg",
  14747. extra: 1053/1049,
  14748. bottom: 270/1323
  14749. }
  14750. },
  14751. back: {
  14752. height: math.unit(6, "feet"),
  14753. weight: math.unit(150, "lb"),
  14754. name: "Back",
  14755. image: {
  14756. source: "./media/characters/ilisha-devya/back.svg",
  14757. extra: 1131/1128,
  14758. bottom: 39/1170
  14759. }
  14760. },
  14761. },
  14762. [
  14763. {
  14764. name: "Macro",
  14765. height: math.unit(500, "feet"),
  14766. default: true
  14767. },
  14768. {
  14769. name: "Megamacro",
  14770. height: math.unit(10, "miles")
  14771. },
  14772. {
  14773. name: "Gigamacro",
  14774. height: math.unit(100000, "miles")
  14775. },
  14776. {
  14777. name: "Examacro",
  14778. height: math.unit(1e9, "lightyears")
  14779. },
  14780. {
  14781. name: "Omniversal",
  14782. height: math.unit(1e33, "lightyears")
  14783. },
  14784. {
  14785. name: "Beyond Infinite",
  14786. height: math.unit(1e100, "lightyears")
  14787. },
  14788. ]
  14789. ))
  14790. characterMakers.push(() => makeCharacter(
  14791. { name: "Mira", species: ["dragon"], tags: ["anthro"] },
  14792. {
  14793. Side: {
  14794. height: math.unit(6, "feet"),
  14795. weight: math.unit(150, "lb"),
  14796. name: "Side",
  14797. image: {
  14798. source: "./media/characters/mira/side.svg",
  14799. extra: 900 / 799,
  14800. bottom: 0.02
  14801. }
  14802. },
  14803. },
  14804. [
  14805. {
  14806. name: "Human Size",
  14807. height: math.unit(6, "feet")
  14808. },
  14809. {
  14810. name: "Macro",
  14811. height: math.unit(100, "feet"),
  14812. default: true
  14813. },
  14814. {
  14815. name: "Megamacro",
  14816. height: math.unit(10, "miles")
  14817. },
  14818. {
  14819. name: "Gigamacro",
  14820. height: math.unit(25000, "miles")
  14821. },
  14822. {
  14823. name: "Teramacro",
  14824. height: math.unit(300, "AU")
  14825. },
  14826. {
  14827. name: "Full Size",
  14828. height: math.unit(4.5e10, "lightyears")
  14829. },
  14830. ]
  14831. ))
  14832. characterMakers.push(() => makeCharacter(
  14833. { name: "Holly", species: ["hyena"], tags: ["anthro"] },
  14834. {
  14835. front: {
  14836. height: math.unit(6, "feet"),
  14837. weight: math.unit(150, "lb"),
  14838. name: "Front",
  14839. image: {
  14840. source: "./media/characters/holly/front.svg",
  14841. extra: 639 / 606
  14842. }
  14843. },
  14844. back: {
  14845. height: math.unit(6, "feet"),
  14846. weight: math.unit(150, "lb"),
  14847. name: "Back",
  14848. image: {
  14849. source: "./media/characters/holly/back.svg",
  14850. extra: 623 / 598
  14851. }
  14852. },
  14853. frontWorking: {
  14854. height: math.unit(6, "feet"),
  14855. weight: math.unit(150, "lb"),
  14856. name: "Front (Working)",
  14857. image: {
  14858. source: "./media/characters/holly/front-working.svg",
  14859. extra: 607 / 577,
  14860. bottom: 0.048
  14861. }
  14862. },
  14863. },
  14864. [
  14865. {
  14866. name: "Normal",
  14867. height: math.unit(12 + 3 / 12, "feet"),
  14868. default: true
  14869. },
  14870. ]
  14871. ))
  14872. characterMakers.push(() => makeCharacter(
  14873. { name: "Porter", species: ["bernese-mountain-dog"], tags: ["anthro"] },
  14874. {
  14875. front: {
  14876. height: math.unit(6, "feet"),
  14877. weight: math.unit(150, "lb"),
  14878. name: "Front",
  14879. image: {
  14880. source: "./media/characters/porter/front.svg",
  14881. extra: 1,
  14882. bottom: 0.01
  14883. }
  14884. },
  14885. frontRobes: {
  14886. height: math.unit(6, "feet"),
  14887. weight: math.unit(150, "lb"),
  14888. name: "Front (Robes)",
  14889. image: {
  14890. source: "./media/characters/porter/front-robes.svg",
  14891. extra: 1.01,
  14892. bottom: 0.01
  14893. }
  14894. },
  14895. },
  14896. [
  14897. {
  14898. name: "Normal",
  14899. height: math.unit(11 + 9 / 12, "feet"),
  14900. default: true
  14901. },
  14902. ]
  14903. ))
  14904. characterMakers.push(() => makeCharacter(
  14905. { name: "Lucy", species: ["reshiram"], tags: ["anthro"] },
  14906. {
  14907. legendary: {
  14908. height: math.unit(6, "feet"),
  14909. weight: math.unit(150, "lb"),
  14910. name: "Legendary",
  14911. image: {
  14912. source: "./media/characters/lucy/legendary.svg",
  14913. extra: 1355 / 1100,
  14914. bottom: 0.045
  14915. }
  14916. },
  14917. },
  14918. [
  14919. {
  14920. name: "Legendary",
  14921. height: math.unit(86882 * 2, "miles"),
  14922. default: true
  14923. },
  14924. ]
  14925. ))
  14926. characterMakers.push(() => makeCharacter(
  14927. { name: "Drusilla", species: ["grizzly-bear", "fox"], tags: ["anthro"] },
  14928. {
  14929. front: {
  14930. height: math.unit(6, "feet"),
  14931. weight: math.unit(150, "lb"),
  14932. name: "Front",
  14933. image: {
  14934. source: "./media/characters/drusilla/front.svg",
  14935. extra: 678 / 635,
  14936. bottom: 0.03
  14937. }
  14938. },
  14939. back: {
  14940. height: math.unit(6, "feet"),
  14941. weight: math.unit(150, "lb"),
  14942. name: "Back",
  14943. image: {
  14944. source: "./media/characters/drusilla/back.svg",
  14945. extra: 678 / 635,
  14946. bottom: 0.005
  14947. }
  14948. },
  14949. },
  14950. [
  14951. {
  14952. name: "Macro",
  14953. height: math.unit(100, "feet")
  14954. },
  14955. {
  14956. name: "Canon Height",
  14957. height: math.unit(2000, "feet"),
  14958. default: true
  14959. },
  14960. ]
  14961. ))
  14962. characterMakers.push(() => makeCharacter(
  14963. { name: "Renard Thatch", species: ["fox"], tags: ["anthro"] },
  14964. {
  14965. front: {
  14966. height: math.unit(6, "feet"),
  14967. weight: math.unit(180, "lb"),
  14968. name: "Front",
  14969. image: {
  14970. source: "./media/characters/renard-thatch/front.svg",
  14971. extra: 2411 / 2275,
  14972. bottom: 0.01
  14973. }
  14974. },
  14975. frontPosing: {
  14976. height: math.unit(6, "feet"),
  14977. weight: math.unit(180, "lb"),
  14978. name: "Front (Posing)",
  14979. image: {
  14980. source: "./media/characters/renard-thatch/front-posing.svg",
  14981. extra: 2381 / 2261,
  14982. bottom: 0.01
  14983. }
  14984. },
  14985. back: {
  14986. height: math.unit(6, "feet"),
  14987. weight: math.unit(180, "lb"),
  14988. name: "Back",
  14989. image: {
  14990. source: "./media/characters/renard-thatch/back.svg",
  14991. extra: 2428 / 2288
  14992. }
  14993. },
  14994. },
  14995. [
  14996. {
  14997. name: "Micro",
  14998. height: math.unit(3, "inches")
  14999. },
  15000. {
  15001. name: "Default",
  15002. height: math.unit(6, "feet"),
  15003. default: true
  15004. },
  15005. {
  15006. name: "Macro",
  15007. height: math.unit(75, "feet")
  15008. },
  15009. ]
  15010. ))
  15011. characterMakers.push(() => makeCharacter(
  15012. { name: "Sekvra", species: ["water-monitor"], tags: ["anthro"] },
  15013. {
  15014. front: {
  15015. height: math.unit(1450, "feet"),
  15016. weight: math.unit(1.21e6, "tons"),
  15017. name: "Front",
  15018. image: {
  15019. source: "./media/characters/sekvra/front.svg",
  15020. extra: 1193/1190,
  15021. bottom: 78/1271
  15022. }
  15023. },
  15024. side: {
  15025. height: math.unit(1450, "feet"),
  15026. weight: math.unit(1.21e6, "tons"),
  15027. name: "Side",
  15028. image: {
  15029. source: "./media/characters/sekvra/side.svg",
  15030. extra: 1193/1190,
  15031. bottom: 52/1245
  15032. }
  15033. },
  15034. back: {
  15035. height: math.unit(1450, "feet"),
  15036. weight: math.unit(1.21e6, "tons"),
  15037. name: "Back",
  15038. image: {
  15039. source: "./media/characters/sekvra/back.svg",
  15040. extra: 1219/1216,
  15041. bottom: 21/1240
  15042. }
  15043. },
  15044. frontClothed: {
  15045. height: math.unit(1450, "feet"),
  15046. weight: math.unit(1.21e6, "tons"),
  15047. name: "Front (Clothed)",
  15048. image: {
  15049. source: "./media/characters/sekvra/front-clothed.svg",
  15050. extra: 1192/1189,
  15051. bottom: 79/1271
  15052. }
  15053. },
  15054. },
  15055. [
  15056. {
  15057. name: "Macro",
  15058. height: math.unit(1450, "feet"),
  15059. default: true
  15060. },
  15061. {
  15062. name: "Megamacro",
  15063. height: math.unit(15000, "feet")
  15064. },
  15065. ]
  15066. ))
  15067. characterMakers.push(() => makeCharacter(
  15068. { name: "Carmine", species: ["otter"], tags: ["anthro"] },
  15069. {
  15070. front: {
  15071. height: math.unit(6, "feet"),
  15072. weight: math.unit(150, "lb"),
  15073. name: "Front",
  15074. image: {
  15075. source: "./media/characters/carmine/front.svg",
  15076. extra: 1557/1538,
  15077. bottom: 68/1625
  15078. }
  15079. },
  15080. frontArmor: {
  15081. height: math.unit(6, "feet"),
  15082. weight: math.unit(150, "lb"),
  15083. name: "Front (Armor)",
  15084. image: {
  15085. source: "./media/characters/carmine/front-armor.svg",
  15086. extra: 1549/1530,
  15087. bottom: 82/1631
  15088. }
  15089. },
  15090. mouth: {
  15091. height: math.unit(0.55, "feet"),
  15092. name: "Mouth",
  15093. image: {
  15094. source: "./media/characters/carmine/mouth.svg"
  15095. }
  15096. },
  15097. hand: {
  15098. height: math.unit(1.05, "feet"),
  15099. name: "Hand",
  15100. image: {
  15101. source: "./media/characters/carmine/hand.svg"
  15102. }
  15103. },
  15104. foot: {
  15105. height: math.unit(0.6, "feet"),
  15106. name: "Foot",
  15107. image: {
  15108. source: "./media/characters/carmine/foot.svg"
  15109. }
  15110. },
  15111. },
  15112. [
  15113. {
  15114. name: "Large",
  15115. height: math.unit(1, "mile")
  15116. },
  15117. {
  15118. name: "Huge",
  15119. height: math.unit(40, "miles"),
  15120. default: true
  15121. },
  15122. {
  15123. name: "Colossal",
  15124. height: math.unit(2500, "miles")
  15125. },
  15126. ]
  15127. ))
  15128. characterMakers.push(() => makeCharacter(
  15129. { name: "Elyssia", species: ["banchofossa"], tags: ["anthro"] },
  15130. {
  15131. front: {
  15132. height: math.unit(6, "feet"),
  15133. weight: math.unit(150, "lb"),
  15134. name: "Front",
  15135. image: {
  15136. source: "./media/characters/elyssia/front.svg",
  15137. extra: 2201 / 2035,
  15138. bottom: 0.05
  15139. }
  15140. },
  15141. frontClothed: {
  15142. height: math.unit(6, "feet"),
  15143. weight: math.unit(150, "lb"),
  15144. name: "Front (Clothed)",
  15145. image: {
  15146. source: "./media/characters/elyssia/front-clothed.svg",
  15147. extra: 2201 / 2035,
  15148. bottom: 0.05
  15149. }
  15150. },
  15151. back: {
  15152. height: math.unit(6, "feet"),
  15153. weight: math.unit(150, "lb"),
  15154. name: "Back",
  15155. image: {
  15156. source: "./media/characters/elyssia/back.svg",
  15157. extra: 2201 / 2035,
  15158. bottom: 0.013
  15159. }
  15160. },
  15161. },
  15162. [
  15163. {
  15164. name: "Smaller",
  15165. height: math.unit(150, "feet")
  15166. },
  15167. {
  15168. name: "Standard",
  15169. height: math.unit(1400, "feet"),
  15170. default: true
  15171. },
  15172. {
  15173. name: "Distracted",
  15174. height: math.unit(15000, "feet")
  15175. },
  15176. ]
  15177. ))
  15178. characterMakers.push(() => makeCharacter(
  15179. { name: "Geno Maxwell", species: ["kirin"], tags: ["anthro"] },
  15180. {
  15181. front: {
  15182. height: math.unit(7 + 4/12, "feet"),
  15183. weight: math.unit(690, "lb"),
  15184. name: "Front",
  15185. image: {
  15186. source: "./media/characters/geno-maxwell/front.svg",
  15187. extra: 984/856,
  15188. bottom: 87/1071
  15189. }
  15190. },
  15191. back: {
  15192. height: math.unit(7 + 4/12, "feet"),
  15193. weight: math.unit(690, "lb"),
  15194. name: "Back",
  15195. image: {
  15196. source: "./media/characters/geno-maxwell/back.svg",
  15197. extra: 981/854,
  15198. bottom: 57/1038
  15199. }
  15200. },
  15201. frontCostume: {
  15202. height: math.unit(7 + 4/12, "feet"),
  15203. weight: math.unit(690, "lb"),
  15204. name: "Front (Costume)",
  15205. image: {
  15206. source: "./media/characters/geno-maxwell/front-costume.svg",
  15207. extra: 984/856,
  15208. bottom: 87/1071
  15209. }
  15210. },
  15211. backcostume: {
  15212. height: math.unit(7 + 4/12, "feet"),
  15213. weight: math.unit(690, "lb"),
  15214. name: "Back (Costume)",
  15215. image: {
  15216. source: "./media/characters/geno-maxwell/back-costume.svg",
  15217. extra: 981/854,
  15218. bottom: 57/1038
  15219. }
  15220. },
  15221. },
  15222. [
  15223. {
  15224. name: "Micro",
  15225. height: math.unit(3, "inches")
  15226. },
  15227. {
  15228. name: "Normal",
  15229. height: math.unit(7 + 4 / 12, "feet"),
  15230. default: true
  15231. },
  15232. {
  15233. name: "Macro",
  15234. height: math.unit(220, "feet")
  15235. },
  15236. {
  15237. name: "Megamacro",
  15238. height: math.unit(11, "miles")
  15239. },
  15240. ]
  15241. ))
  15242. characterMakers.push(() => makeCharacter(
  15243. { name: "Regena Maxwell", species: ["kirin"], tags: ["anthro"] },
  15244. {
  15245. front: {
  15246. height: math.unit(7 + 4/12, "feet"),
  15247. weight: math.unit(750, "lb"),
  15248. name: "Front",
  15249. image: {
  15250. source: "./media/characters/regena-maxwell/front.svg",
  15251. extra: 984/856,
  15252. bottom: 87/1071
  15253. }
  15254. },
  15255. back: {
  15256. height: math.unit(7 + 4/12, "feet"),
  15257. weight: math.unit(750, "lb"),
  15258. name: "Back",
  15259. image: {
  15260. source: "./media/characters/regena-maxwell/back.svg",
  15261. extra: 981/854,
  15262. bottom: 57/1038
  15263. }
  15264. },
  15265. frontCostume: {
  15266. height: math.unit(7 + 4/12, "feet"),
  15267. weight: math.unit(750, "lb"),
  15268. name: "Front (Costume)",
  15269. image: {
  15270. source: "./media/characters/regena-maxwell/front-costume.svg",
  15271. extra: 984/856,
  15272. bottom: 87/1071
  15273. }
  15274. },
  15275. backcostume: {
  15276. height: math.unit(7 + 4/12, "feet"),
  15277. weight: math.unit(750, "lb"),
  15278. name: "Back (Costume)",
  15279. image: {
  15280. source: "./media/characters/regena-maxwell/back-costume.svg",
  15281. extra: 981/854,
  15282. bottom: 57/1038
  15283. }
  15284. },
  15285. },
  15286. [
  15287. {
  15288. name: "Normal",
  15289. height: math.unit(7 + 4 / 12, "feet"),
  15290. default: true
  15291. },
  15292. {
  15293. name: "Macro",
  15294. height: math.unit(220, "feet")
  15295. },
  15296. {
  15297. name: "Megamacro",
  15298. height: math.unit(11, "miles")
  15299. },
  15300. ]
  15301. ))
  15302. characterMakers.push(() => makeCharacter(
  15303. { name: "XGlidingDragonX", species: ["arcanine", "dragon", "phoenix"], tags: ["anthro"] },
  15304. {
  15305. front: {
  15306. height: math.unit(6, "feet"),
  15307. weight: math.unit(150, "lb"),
  15308. name: "Front",
  15309. image: {
  15310. source: "./media/characters/x-gliding-dragon-x/front.svg",
  15311. extra: 860 / 690,
  15312. bottom: 0.03
  15313. }
  15314. },
  15315. },
  15316. [
  15317. {
  15318. name: "Normal",
  15319. height: math.unit(1.7, "meters"),
  15320. default: true
  15321. },
  15322. ]
  15323. ))
  15324. characterMakers.push(() => makeCharacter(
  15325. { name: "Quilly", species: ["quilava"], tags: ["anthro"] },
  15326. {
  15327. front: {
  15328. height: math.unit(6, "feet"),
  15329. weight: math.unit(150, "lb"),
  15330. name: "Front",
  15331. image: {
  15332. source: "./media/characters/quilly/front.svg",
  15333. extra: 890 / 776
  15334. }
  15335. },
  15336. },
  15337. [
  15338. {
  15339. name: "Gigamacro",
  15340. height: math.unit(404090, "miles"),
  15341. default: true
  15342. },
  15343. ]
  15344. ))
  15345. characterMakers.push(() => makeCharacter(
  15346. { name: "Tempest", species: ["lugia"], tags: ["anthro"] },
  15347. {
  15348. front: {
  15349. height: math.unit(7 + 8 / 12, "feet"),
  15350. weight: math.unit(350, "lb"),
  15351. name: "Front",
  15352. image: {
  15353. source: "./media/characters/tempest/front.svg",
  15354. extra: 1175 / 1086,
  15355. bottom: 0.02
  15356. }
  15357. },
  15358. },
  15359. [
  15360. {
  15361. name: "Normal",
  15362. height: math.unit(7 + 8 / 12, "feet"),
  15363. default: true
  15364. },
  15365. ]
  15366. ))
  15367. characterMakers.push(() => makeCharacter(
  15368. { name: "Rodger", species: ["mouse"], tags: ["anthro"] },
  15369. {
  15370. side: {
  15371. height: math.unit(4 + 5 / 12, "feet"),
  15372. weight: math.unit(80, "lb"),
  15373. name: "Side",
  15374. image: {
  15375. source: "./media/characters/rodger/side.svg",
  15376. extra: 1235 / 1118
  15377. }
  15378. },
  15379. },
  15380. [
  15381. {
  15382. name: "Micro",
  15383. height: math.unit(1, "inch")
  15384. },
  15385. {
  15386. name: "Normal",
  15387. height: math.unit(4 + 5 / 12, "feet"),
  15388. default: true
  15389. },
  15390. {
  15391. name: "Macro",
  15392. height: math.unit(120, "feet")
  15393. },
  15394. ]
  15395. ))
  15396. characterMakers.push(() => makeCharacter(
  15397. { name: "Danyel", species: ["dragon"], tags: ["anthro"] },
  15398. {
  15399. front: {
  15400. height: math.unit(6, "feet"),
  15401. weight: math.unit(150, "lb"),
  15402. name: "Front",
  15403. image: {
  15404. source: "./media/characters/danyel/front.svg",
  15405. extra: 1185 / 1123,
  15406. bottom: 0.05
  15407. }
  15408. },
  15409. },
  15410. [
  15411. {
  15412. name: "Shrunken",
  15413. height: math.unit(0.5, "mm")
  15414. },
  15415. {
  15416. name: "Micro",
  15417. height: math.unit(1, "mm"),
  15418. default: true
  15419. },
  15420. {
  15421. name: "Upsized",
  15422. height: math.unit(5 + 5 / 12, "feet")
  15423. },
  15424. ]
  15425. ))
  15426. characterMakers.push(() => makeCharacter(
  15427. { name: "Vivian Bijoux", species: ["seviper"], tags: ["anthro"] },
  15428. {
  15429. front: {
  15430. height: math.unit(5 + 6 / 12, "feet"),
  15431. weight: math.unit(200, "lb"),
  15432. name: "Front",
  15433. image: {
  15434. source: "./media/characters/vivian-bijoux/front.svg",
  15435. extra: 1217/1209,
  15436. bottom: 76/1293
  15437. }
  15438. },
  15439. back: {
  15440. height: math.unit(5 + 6 / 12, "feet"),
  15441. weight: math.unit(200, "lb"),
  15442. name: "Back",
  15443. image: {
  15444. source: "./media/characters/vivian-bijoux/back.svg",
  15445. extra: 1214/1208,
  15446. bottom: 51/1265
  15447. }
  15448. },
  15449. dressed: {
  15450. height: math.unit(5 + 6 / 12, "feet"),
  15451. weight: math.unit(200, "lb"),
  15452. name: "Dressed",
  15453. image: {
  15454. source: "./media/characters/vivian-bijoux/dressed.svg",
  15455. extra: 1217/1209,
  15456. bottom: 76/1293
  15457. }
  15458. },
  15459. },
  15460. [
  15461. {
  15462. name: "Normal",
  15463. height: math.unit(5 + 6 / 12, "feet"),
  15464. default: true
  15465. },
  15466. {
  15467. name: "Bad Dream",
  15468. height: math.unit(500, "feet")
  15469. },
  15470. {
  15471. name: "Nightmare",
  15472. height: math.unit(500, "miles")
  15473. },
  15474. ]
  15475. ))
  15476. characterMakers.push(() => makeCharacter(
  15477. { name: "Zeta", species: ["bear", "otter"], tags: ["anthro"] },
  15478. {
  15479. front: {
  15480. height: math.unit(6 + 1 / 12, "feet"),
  15481. weight: math.unit(260, "lb"),
  15482. name: "Front",
  15483. image: {
  15484. source: "./media/characters/zeta/front.svg",
  15485. extra: 1968 / 1889,
  15486. bottom: 0.06
  15487. }
  15488. },
  15489. back: {
  15490. height: math.unit(6 + 1 / 12, "feet"),
  15491. weight: math.unit(260, "lb"),
  15492. name: "Back",
  15493. image: {
  15494. source: "./media/characters/zeta/back.svg",
  15495. extra: 1944 / 1858,
  15496. bottom: 0.03
  15497. }
  15498. },
  15499. hand: {
  15500. height: math.unit(1.112, "feet"),
  15501. name: "Hand",
  15502. image: {
  15503. source: "./media/characters/zeta/hand.svg"
  15504. }
  15505. },
  15506. foot: {
  15507. height: math.unit(1.48, "feet"),
  15508. name: "Foot",
  15509. image: {
  15510. source: "./media/characters/zeta/foot.svg"
  15511. }
  15512. },
  15513. },
  15514. [
  15515. {
  15516. name: "Micro",
  15517. height: math.unit(6, "inches")
  15518. },
  15519. {
  15520. name: "Normal",
  15521. height: math.unit(6 + 1 / 12, "feet"),
  15522. default: true
  15523. },
  15524. {
  15525. name: "Macro",
  15526. height: math.unit(20, "feet")
  15527. },
  15528. ]
  15529. ))
  15530. characterMakers.push(() => makeCharacter(
  15531. { name: "Jamie Larsen", species: ["rabbit"], tags: ["anthro"] },
  15532. {
  15533. front: {
  15534. height: math.unit(6, "feet"),
  15535. weight: math.unit(150, "lb"),
  15536. name: "Front",
  15537. image: {
  15538. source: "./media/characters/jamie-larsen/front.svg",
  15539. extra: 962 / 933,
  15540. bottom: 0.02
  15541. }
  15542. },
  15543. back: {
  15544. height: math.unit(6, "feet"),
  15545. weight: math.unit(150, "lb"),
  15546. name: "Back",
  15547. image: {
  15548. source: "./media/characters/jamie-larsen/back.svg",
  15549. extra: 997 / 946
  15550. }
  15551. },
  15552. },
  15553. [
  15554. {
  15555. name: "Macro",
  15556. height: math.unit(28 + 7 / 12, "feet"),
  15557. default: true
  15558. },
  15559. {
  15560. name: "Macro+",
  15561. height: math.unit(180, "feet")
  15562. },
  15563. {
  15564. name: "Megamacro",
  15565. height: math.unit(10, "miles")
  15566. },
  15567. {
  15568. name: "Gigamacro",
  15569. height: math.unit(200000, "miles")
  15570. },
  15571. ]
  15572. ))
  15573. characterMakers.push(() => makeCharacter(
  15574. { name: "Vance", species: ["flying-fox"], tags: ["anthro"] },
  15575. {
  15576. front: {
  15577. height: math.unit(6, "feet"),
  15578. weight: math.unit(120, "lb"),
  15579. name: "Front",
  15580. image: {
  15581. source: "./media/characters/vance/front.svg",
  15582. extra: 1980 / 1890,
  15583. bottom: 0.09
  15584. }
  15585. },
  15586. back: {
  15587. height: math.unit(6, "feet"),
  15588. weight: math.unit(120, "lb"),
  15589. name: "Back",
  15590. image: {
  15591. source: "./media/characters/vance/back.svg",
  15592. extra: 2081 / 1994,
  15593. bottom: 0.014
  15594. }
  15595. },
  15596. hand: {
  15597. height: math.unit(0.88, "feet"),
  15598. name: "Hand",
  15599. image: {
  15600. source: "./media/characters/vance/hand.svg"
  15601. }
  15602. },
  15603. foot: {
  15604. height: math.unit(0.64, "feet"),
  15605. name: "Foot",
  15606. image: {
  15607. source: "./media/characters/vance/foot.svg"
  15608. }
  15609. },
  15610. },
  15611. [
  15612. {
  15613. name: "Small",
  15614. height: math.unit(90, "feet"),
  15615. default: true
  15616. },
  15617. {
  15618. name: "Macro",
  15619. height: math.unit(100, "meters")
  15620. },
  15621. {
  15622. name: "Megamacro",
  15623. height: math.unit(15, "miles")
  15624. },
  15625. ]
  15626. ))
  15627. characterMakers.push(() => makeCharacter(
  15628. { name: "Xochitl", species: ["jaguar"], tags: ["anthro"] },
  15629. {
  15630. front: {
  15631. height: math.unit(6, "feet"),
  15632. weight: math.unit(180, "lb"),
  15633. name: "Front",
  15634. image: {
  15635. source: "./media/characters/xochitl/front.svg",
  15636. extra: 2297 / 2261,
  15637. bottom: 0.065
  15638. }
  15639. },
  15640. back: {
  15641. height: math.unit(6, "feet"),
  15642. weight: math.unit(180, "lb"),
  15643. name: "Back",
  15644. image: {
  15645. source: "./media/characters/xochitl/back.svg",
  15646. extra: 2386 / 2354,
  15647. bottom: 0.01
  15648. }
  15649. },
  15650. foot: {
  15651. height: math.unit(6 / 5 * 1.15, "feet"),
  15652. weight: math.unit(150, "lb"),
  15653. name: "Foot",
  15654. image: {
  15655. source: "./media/characters/xochitl/foot.svg"
  15656. }
  15657. },
  15658. },
  15659. [
  15660. {
  15661. name: "Macro",
  15662. height: math.unit(80, "feet")
  15663. },
  15664. {
  15665. name: "Macro+",
  15666. height: math.unit(400, "feet"),
  15667. default: true
  15668. },
  15669. {
  15670. name: "Gigamacro",
  15671. height: math.unit(80000, "miles")
  15672. },
  15673. {
  15674. name: "Gigamacro+",
  15675. height: math.unit(400000, "miles")
  15676. },
  15677. {
  15678. name: "Teramacro",
  15679. height: math.unit(300, "AU")
  15680. },
  15681. ]
  15682. ))
  15683. characterMakers.push(() => makeCharacter(
  15684. { name: "Vincent", species: ["egyptian-vulture"], tags: ["anthro"] },
  15685. {
  15686. front: {
  15687. height: math.unit(6, "feet"),
  15688. weight: math.unit(150, "lb"),
  15689. name: "Front",
  15690. image: {
  15691. source: "./media/characters/vincent/front.svg",
  15692. extra: 1130 / 1080,
  15693. bottom: 0.055
  15694. }
  15695. },
  15696. beak: {
  15697. height: math.unit(6 * 0.1, "feet"),
  15698. name: "Beak",
  15699. image: {
  15700. source: "./media/characters/vincent/beak.svg"
  15701. }
  15702. },
  15703. hand: {
  15704. height: math.unit(6 * 0.85, "feet"),
  15705. weight: math.unit(150, "lb"),
  15706. name: "Hand",
  15707. image: {
  15708. source: "./media/characters/vincent/hand.svg"
  15709. }
  15710. },
  15711. foot: {
  15712. height: math.unit(6 * 0.19, "feet"),
  15713. weight: math.unit(150, "lb"),
  15714. name: "Foot",
  15715. image: {
  15716. source: "./media/characters/vincent/foot.svg"
  15717. }
  15718. },
  15719. },
  15720. [
  15721. {
  15722. name: "Base",
  15723. height: math.unit(6 + 5 / 12, "feet"),
  15724. default: true
  15725. },
  15726. {
  15727. name: "Macro",
  15728. height: math.unit(300, "feet")
  15729. },
  15730. {
  15731. name: "Megamacro",
  15732. height: math.unit(2, "miles")
  15733. },
  15734. {
  15735. name: "Gigamacro",
  15736. height: math.unit(1000, "miles")
  15737. },
  15738. ]
  15739. ))
  15740. characterMakers.push(() => makeCharacter(
  15741. { name: "Coatl", species: ["dragon"], tags: ["anthro"] },
  15742. {
  15743. front: {
  15744. height: math.unit(2, "meters"),
  15745. weight: math.unit(500, "kg"),
  15746. name: "Front",
  15747. image: {
  15748. source: "./media/characters/coatl/front.svg",
  15749. extra: 3948 / 3500,
  15750. bottom: 0.082
  15751. }
  15752. },
  15753. },
  15754. [
  15755. {
  15756. name: "Normal",
  15757. height: math.unit(4, "meters")
  15758. },
  15759. {
  15760. name: "Macro",
  15761. height: math.unit(100, "meters"),
  15762. default: true
  15763. },
  15764. {
  15765. name: "Macro+",
  15766. height: math.unit(300, "meters")
  15767. },
  15768. {
  15769. name: "Megamacro",
  15770. height: math.unit(3, "gigameters")
  15771. },
  15772. {
  15773. name: "Megamacro+",
  15774. height: math.unit(300, "terameters")
  15775. },
  15776. {
  15777. name: "Megamacro++",
  15778. height: math.unit(3, "lightyears")
  15779. },
  15780. ]
  15781. ))
  15782. characterMakers.push(() => makeCharacter(
  15783. { name: "Shiroryu", species: ["dragon", "deity"], tags: ["anthro"] },
  15784. {
  15785. front: {
  15786. height: math.unit(6, "feet"),
  15787. weight: math.unit(50, "kg"),
  15788. name: "front",
  15789. image: {
  15790. source: "./media/characters/shiroryu/front.svg",
  15791. extra: 1990 / 1935
  15792. }
  15793. },
  15794. },
  15795. [
  15796. {
  15797. name: "Mortal Mingling",
  15798. height: math.unit(3, "meters")
  15799. },
  15800. {
  15801. name: "Kaiju-ish",
  15802. height: math.unit(250, "meters")
  15803. },
  15804. {
  15805. name: "Somewhat Godly",
  15806. height: math.unit(400, "km"),
  15807. default: true
  15808. },
  15809. {
  15810. name: "Planetary",
  15811. height: math.unit(300, "megameters")
  15812. },
  15813. {
  15814. name: "Galaxy-dwarfing",
  15815. height: math.unit(450, "kiloparsecs")
  15816. },
  15817. {
  15818. name: "Universe Eater",
  15819. height: math.unit(150, "gigaparsecs")
  15820. },
  15821. {
  15822. name: "Almost Immeasurable",
  15823. height: math.unit(1.3e266, "yottaparsecs")
  15824. },
  15825. ]
  15826. ))
  15827. characterMakers.push(() => makeCharacter(
  15828. { name: "Umeko", species: ["eastern-dragon"], tags: ["anthro"] },
  15829. {
  15830. front: {
  15831. height: math.unit(6, "feet"),
  15832. weight: math.unit(150, "lb"),
  15833. name: "Front",
  15834. image: {
  15835. source: "./media/characters/umeko/front.svg",
  15836. extra: 1,
  15837. bottom: 0.019
  15838. }
  15839. },
  15840. frontArmored: {
  15841. height: math.unit(6, "feet"),
  15842. weight: math.unit(150, "lb"),
  15843. name: "Front (Armored)",
  15844. image: {
  15845. source: "./media/characters/umeko/front-armored.svg",
  15846. extra: 1,
  15847. bottom: 0.021
  15848. }
  15849. },
  15850. },
  15851. [
  15852. {
  15853. name: "Macro",
  15854. height: math.unit(220, "feet"),
  15855. default: true
  15856. },
  15857. {
  15858. name: "Guardian Dragon",
  15859. height: math.unit(50, "miles")
  15860. },
  15861. {
  15862. name: "Cosmic",
  15863. height: math.unit(800000, "miles")
  15864. },
  15865. ]
  15866. ))
  15867. characterMakers.push(() => makeCharacter(
  15868. { name: "Cassidy", species: ["leopard-seal"], tags: ["anthro"] },
  15869. {
  15870. front: {
  15871. height: math.unit(6, "feet"),
  15872. weight: math.unit(150, "lb"),
  15873. name: "Front",
  15874. image: {
  15875. source: "./media/characters/cassidy/front.svg",
  15876. extra: 810/808,
  15877. bottom: 41/851
  15878. }
  15879. },
  15880. },
  15881. [
  15882. {
  15883. name: "Canon Height",
  15884. height: math.unit(120, "feet"),
  15885. default: true
  15886. },
  15887. {
  15888. name: "Macro+",
  15889. height: math.unit(400, "feet")
  15890. },
  15891. {
  15892. name: "Macro++",
  15893. height: math.unit(4000, "feet")
  15894. },
  15895. {
  15896. name: "Megamacro",
  15897. height: math.unit(3, "miles")
  15898. },
  15899. ]
  15900. ))
  15901. characterMakers.push(() => makeCharacter(
  15902. { name: "Isaac", species: ["moose"], tags: ["anthro"] },
  15903. {
  15904. front: {
  15905. height: math.unit(6, "feet"),
  15906. weight: math.unit(150, "lb"),
  15907. name: "Front",
  15908. image: {
  15909. source: "./media/characters/isaac/front.svg",
  15910. extra: 896 / 815,
  15911. bottom: 0.11
  15912. }
  15913. },
  15914. },
  15915. [
  15916. {
  15917. name: "Human Size",
  15918. height: math.unit(8, "feet"),
  15919. default: true
  15920. },
  15921. {
  15922. name: "Macro",
  15923. height: math.unit(400, "feet")
  15924. },
  15925. {
  15926. name: "Megamacro",
  15927. height: math.unit(50, "miles")
  15928. },
  15929. {
  15930. name: "Canon Height",
  15931. height: math.unit(200, "AU")
  15932. },
  15933. ]
  15934. ))
  15935. characterMakers.push(() => makeCharacter(
  15936. { name: "Sleekit", species: ["rat"], tags: ["anthro"] },
  15937. {
  15938. front: {
  15939. height: math.unit(6, "feet"),
  15940. weight: math.unit(72, "kg"),
  15941. name: "Front",
  15942. image: {
  15943. source: "./media/characters/sleekit/front.svg",
  15944. extra: 4693 / 4487,
  15945. bottom: 0.012
  15946. }
  15947. },
  15948. },
  15949. [
  15950. {
  15951. name: "Minimum Height",
  15952. height: math.unit(10, "meters")
  15953. },
  15954. {
  15955. name: "Smaller",
  15956. height: math.unit(25, "meters")
  15957. },
  15958. {
  15959. name: "Larger",
  15960. height: math.unit(38, "meters"),
  15961. default: true
  15962. },
  15963. {
  15964. name: "Maximum height",
  15965. height: math.unit(100, "meters")
  15966. },
  15967. ]
  15968. ))
  15969. characterMakers.push(() => makeCharacter(
  15970. { name: "Nillia", species: ["caracal"], tags: ["anthro"] },
  15971. {
  15972. front: {
  15973. height: math.unit(6, "feet"),
  15974. weight: math.unit(150, "lb"),
  15975. name: "Front",
  15976. image: {
  15977. source: "./media/characters/nillia/front.svg",
  15978. extra: 719/665,
  15979. bottom: 6/725
  15980. }
  15981. },
  15982. back: {
  15983. height: math.unit(6, "feet"),
  15984. weight: math.unit(150, "lb"),
  15985. name: "Back",
  15986. image: {
  15987. source: "./media/characters/nillia/back.svg",
  15988. extra: 705/651,
  15989. bottom: 5/710
  15990. }
  15991. },
  15992. },
  15993. [
  15994. {
  15995. name: "Canon Height",
  15996. height: math.unit(489, "feet"),
  15997. default: true
  15998. }
  15999. ]
  16000. ))
  16001. characterMakers.push(() => makeCharacter(
  16002. { name: "Mesmyriza", species: ["shark", "dragon", "robot", "deity"], tags: ["anthro"] },
  16003. {
  16004. front: {
  16005. height: math.unit(6, "feet"),
  16006. weight: math.unit(150, "lb"),
  16007. name: "Front",
  16008. image: {
  16009. source: "./media/characters/mesmyriza/front.svg",
  16010. extra: 1541/1291,
  16011. bottom: 87/1628
  16012. }
  16013. },
  16014. foot: {
  16015. height: math.unit(6 / (250 / 35), "feet"),
  16016. name: "Foot",
  16017. image: {
  16018. source: "./media/characters/mesmyriza/foot.svg"
  16019. }
  16020. },
  16021. },
  16022. [
  16023. {
  16024. name: "Macro",
  16025. height: math.unit(457, "meters"),
  16026. default: true
  16027. },
  16028. {
  16029. name: "Megamacro",
  16030. height: math.unit(8, "megameters")
  16031. },
  16032. ]
  16033. ))
  16034. characterMakers.push(() => makeCharacter(
  16035. { name: "Saudade", species: ["goat"], tags: ["anthro"] },
  16036. {
  16037. front: {
  16038. height: math.unit(6, "feet"),
  16039. weight: math.unit(250, "lb"),
  16040. name: "Front",
  16041. image: {
  16042. source: "./media/characters/saudade/front.svg",
  16043. extra: 1172 / 1139,
  16044. bottom: 0.035
  16045. }
  16046. },
  16047. },
  16048. [
  16049. {
  16050. name: "Micro",
  16051. height: math.unit(3, "inches")
  16052. },
  16053. {
  16054. name: "Normal",
  16055. height: math.unit(6, "feet"),
  16056. default: true
  16057. },
  16058. {
  16059. name: "Macro",
  16060. height: math.unit(50, "feet")
  16061. },
  16062. {
  16063. name: "Megamacro",
  16064. height: math.unit(2800, "feet")
  16065. },
  16066. ]
  16067. ))
  16068. characterMakers.push(() => makeCharacter(
  16069. { name: "Keireer", species: ["keynain"], tags: ["anthro"] },
  16070. {
  16071. front: {
  16072. height: math.unit(5 + 4 / 12, "feet"),
  16073. weight: math.unit(100, "lb"),
  16074. name: "Front",
  16075. image: {
  16076. source: "./media/characters/keireer/front.svg",
  16077. extra: 716 / 666,
  16078. bottom: 0.05
  16079. }
  16080. },
  16081. },
  16082. [
  16083. {
  16084. name: "Normal",
  16085. height: math.unit(5 + 4 / 12, "feet"),
  16086. default: true
  16087. },
  16088. ]
  16089. ))
  16090. characterMakers.push(() => makeCharacter(
  16091. { name: "Mirja", species: ["dragon"], tags: ["anthro"] },
  16092. {
  16093. front: {
  16094. height: math.unit(5.5, "feet"),
  16095. weight: math.unit(90, "kg"),
  16096. name: "Front",
  16097. image: {
  16098. source: "./media/characters/mirja/front.svg",
  16099. extra: 1452/1262,
  16100. bottom: 67/1519
  16101. }
  16102. },
  16103. frontDressed: {
  16104. height: math.unit(5.5, "feet"),
  16105. weight: math.unit(90, "lb"),
  16106. name: "Front (Dressed)",
  16107. image: {
  16108. source: "./media/characters/mirja/dressed.svg",
  16109. extra: 1452/1262,
  16110. bottom: 67/1519
  16111. }
  16112. },
  16113. back: {
  16114. height: math.unit(6, "feet"),
  16115. weight: math.unit(90, "lb"),
  16116. name: "Back",
  16117. image: {
  16118. source: "./media/characters/mirja/back.svg",
  16119. extra: 1892/1795,
  16120. bottom: 48/1940
  16121. }
  16122. },
  16123. maw: {
  16124. height: math.unit(1.312, "feet"),
  16125. name: "Maw",
  16126. image: {
  16127. source: "./media/characters/mirja/maw.svg"
  16128. }
  16129. },
  16130. paw: {
  16131. height: math.unit(1.15, "feet"),
  16132. name: "Paw",
  16133. image: {
  16134. source: "./media/characters/mirja/paw.svg"
  16135. }
  16136. },
  16137. },
  16138. [
  16139. {
  16140. name: "\"Incognito\"",
  16141. height: math.unit(3, "meters")
  16142. },
  16143. {
  16144. name: "Strolling Size",
  16145. height: math.unit(15, "km")
  16146. },
  16147. {
  16148. name: "Larger Strolling Size",
  16149. height: math.unit(400, "km")
  16150. },
  16151. {
  16152. name: "Preferred Size",
  16153. height: math.unit(5000, "km"),
  16154. default: true
  16155. },
  16156. {
  16157. name: "True Size",
  16158. height: math.unit(30657809462086840000000000000000, "parsecs"),
  16159. },
  16160. ]
  16161. ))
  16162. characterMakers.push(() => makeCharacter(
  16163. { name: "Nightraver", species: ["dragon"], tags: ["anthro"] },
  16164. {
  16165. front: {
  16166. height: math.unit(15, "feet"),
  16167. weight: math.unit(880, "kg"),
  16168. name: "Front",
  16169. image: {
  16170. source: "./media/characters/nightraver/front.svg",
  16171. extra: 2444 / 2160,
  16172. bottom: 0.027
  16173. }
  16174. },
  16175. back: {
  16176. height: math.unit(15, "feet"),
  16177. weight: math.unit(880, "kg"),
  16178. name: "Back",
  16179. image: {
  16180. source: "./media/characters/nightraver/back.svg",
  16181. extra: 2309 / 2180,
  16182. bottom: 0.005
  16183. }
  16184. },
  16185. sole: {
  16186. height: math.unit(2.878, "feet"),
  16187. name: "Sole",
  16188. image: {
  16189. source: "./media/characters/nightraver/sole.svg"
  16190. }
  16191. },
  16192. foot: {
  16193. height: math.unit(2.285, "feet"),
  16194. name: "Foot",
  16195. image: {
  16196. source: "./media/characters/nightraver/foot.svg"
  16197. }
  16198. },
  16199. maw: {
  16200. height: math.unit(2.67, "feet"),
  16201. name: "Maw",
  16202. image: {
  16203. source: "./media/characters/nightraver/maw.svg"
  16204. }
  16205. },
  16206. },
  16207. [
  16208. {
  16209. name: "Micro",
  16210. height: math.unit(1, "cm")
  16211. },
  16212. {
  16213. name: "Normal",
  16214. height: math.unit(15, "feet"),
  16215. default: true
  16216. },
  16217. {
  16218. name: "Macro",
  16219. height: math.unit(300, "feet")
  16220. },
  16221. {
  16222. name: "Megamacro",
  16223. height: math.unit(300, "miles")
  16224. },
  16225. {
  16226. name: "Gigamacro",
  16227. height: math.unit(10000, "miles")
  16228. },
  16229. ]
  16230. ))
  16231. characterMakers.push(() => makeCharacter(
  16232. { name: "Arc", species: ["raptor"], tags: ["anthro"] },
  16233. {
  16234. side: {
  16235. height: math.unit(2, "inches"),
  16236. weight: math.unit(5, "grams"),
  16237. name: "Side",
  16238. image: {
  16239. source: "./media/characters/arc/side.svg"
  16240. }
  16241. },
  16242. },
  16243. [
  16244. {
  16245. name: "Micro",
  16246. height: math.unit(2, "inches"),
  16247. default: true
  16248. },
  16249. ]
  16250. ))
  16251. characterMakers.push(() => makeCharacter(
  16252. { name: "Nebula Shahar", species: ["lucario"], tags: ["anthro"] },
  16253. {
  16254. front: {
  16255. height: math.unit(1.1938, "meters"),
  16256. weight: math.unit(54, "kg"),
  16257. name: "Front",
  16258. image: {
  16259. source: "./media/characters/nebula-shahar/front.svg",
  16260. extra: 1642 / 1436,
  16261. bottom: 0.06
  16262. }
  16263. },
  16264. },
  16265. [
  16266. {
  16267. name: "Megamicro",
  16268. height: math.unit(0.3, "mm")
  16269. },
  16270. {
  16271. name: "Micro",
  16272. height: math.unit(3, "cm")
  16273. },
  16274. {
  16275. name: "Normal",
  16276. height: math.unit(138, "cm"),
  16277. default: true
  16278. },
  16279. {
  16280. name: "Macro",
  16281. height: math.unit(30, "m")
  16282. },
  16283. ]
  16284. ))
  16285. characterMakers.push(() => makeCharacter(
  16286. { name: "Shayla", species: ["otter"], tags: ["anthro"] },
  16287. {
  16288. front: {
  16289. height: math.unit(5.24, "feet"),
  16290. weight: math.unit(150, "lb"),
  16291. name: "Front",
  16292. image: {
  16293. source: "./media/characters/shayla/front.svg",
  16294. extra: 1512 / 1414,
  16295. bottom: 0.01
  16296. }
  16297. },
  16298. back: {
  16299. height: math.unit(5.24, "feet"),
  16300. weight: math.unit(150, "lb"),
  16301. name: "Back",
  16302. image: {
  16303. source: "./media/characters/shayla/back.svg",
  16304. extra: 1512 / 1414
  16305. }
  16306. },
  16307. hand: {
  16308. height: math.unit(0.7781496062992126, "feet"),
  16309. name: "Hand",
  16310. image: {
  16311. source: "./media/characters/shayla/hand.svg"
  16312. }
  16313. },
  16314. foot: {
  16315. height: math.unit(1.4206036745406823, "feet"),
  16316. name: "Foot",
  16317. image: {
  16318. source: "./media/characters/shayla/foot.svg"
  16319. }
  16320. },
  16321. },
  16322. [
  16323. {
  16324. name: "Micro",
  16325. height: math.unit(0.32, "feet")
  16326. },
  16327. {
  16328. name: "Normal",
  16329. height: math.unit(5.24, "feet"),
  16330. default: true
  16331. },
  16332. {
  16333. name: "Macro",
  16334. height: math.unit(492.12, "feet")
  16335. },
  16336. {
  16337. name: "Megamacro",
  16338. height: math.unit(186.41, "miles")
  16339. },
  16340. ]
  16341. ))
  16342. characterMakers.push(() => makeCharacter(
  16343. { name: "Pia Jr.", species: ["ziralkia"], tags: ["anthro"] },
  16344. {
  16345. front: {
  16346. height: math.unit(2.2, "m"),
  16347. weight: math.unit(120, "kg"),
  16348. name: "Front",
  16349. image: {
  16350. source: "./media/characters/pia-jr/front.svg",
  16351. extra: 1000 / 970,
  16352. bottom: 0.035
  16353. }
  16354. },
  16355. hand: {
  16356. height: math.unit(0.759 * 7.21 / 6, "feet"),
  16357. name: "Hand",
  16358. image: {
  16359. source: "./media/characters/pia-jr/hand.svg"
  16360. }
  16361. },
  16362. paw: {
  16363. height: math.unit(1.185 * 7.21 / 6, "feet"),
  16364. name: "Paw",
  16365. image: {
  16366. source: "./media/characters/pia-jr/paw.svg"
  16367. }
  16368. },
  16369. },
  16370. [
  16371. {
  16372. name: "Micro",
  16373. height: math.unit(1.2, "cm")
  16374. },
  16375. {
  16376. name: "Normal",
  16377. height: math.unit(2.2, "m"),
  16378. default: true
  16379. },
  16380. {
  16381. name: "Macro",
  16382. height: math.unit(180, "m")
  16383. },
  16384. {
  16385. name: "Megamacro",
  16386. height: math.unit(420, "km")
  16387. },
  16388. ]
  16389. ))
  16390. characterMakers.push(() => makeCharacter(
  16391. { name: "Pia Sr.", species: ["ziralkia"], tags: ["anthro"] },
  16392. {
  16393. front: {
  16394. height: math.unit(2, "m"),
  16395. weight: math.unit(115, "kg"),
  16396. name: "Front",
  16397. image: {
  16398. source: "./media/characters/pia-sr/front.svg",
  16399. extra: 760 / 730,
  16400. bottom: 0.015
  16401. }
  16402. },
  16403. back: {
  16404. height: math.unit(2, "m"),
  16405. weight: math.unit(115, "kg"),
  16406. name: "Back",
  16407. image: {
  16408. source: "./media/characters/pia-sr/back.svg",
  16409. extra: 760 / 730,
  16410. bottom: 0.01
  16411. }
  16412. },
  16413. hand: {
  16414. height: math.unit(0.89 * 6.56 / 6, "feet"),
  16415. name: "Hand",
  16416. image: {
  16417. source: "./media/characters/pia-sr/hand.svg"
  16418. }
  16419. },
  16420. foot: {
  16421. height: math.unit(1.83, "feet"),
  16422. name: "Foot",
  16423. image: {
  16424. source: "./media/characters/pia-sr/foot.svg"
  16425. }
  16426. },
  16427. },
  16428. [
  16429. {
  16430. name: "Micro",
  16431. height: math.unit(88, "mm")
  16432. },
  16433. {
  16434. name: "Normal",
  16435. height: math.unit(2, "m"),
  16436. default: true
  16437. },
  16438. {
  16439. name: "Macro",
  16440. height: math.unit(200, "m")
  16441. },
  16442. {
  16443. name: "Megamacro",
  16444. height: math.unit(420, "km")
  16445. },
  16446. ]
  16447. ))
  16448. characterMakers.push(() => makeCharacter(
  16449. { name: "KIBIBYTE", species: ["bat", "demon"], tags: ["anthro"] },
  16450. {
  16451. front: {
  16452. height: math.unit(8 + 2 / 12, "feet"),
  16453. weight: math.unit(300, "lb"),
  16454. name: "Front",
  16455. image: {
  16456. source: "./media/characters/kibibyte/front.svg",
  16457. extra: 2221 / 2098,
  16458. bottom: 0.04
  16459. }
  16460. },
  16461. },
  16462. [
  16463. {
  16464. name: "Normal",
  16465. height: math.unit(8 + 2 / 12, "feet"),
  16466. default: true
  16467. },
  16468. {
  16469. name: "Socialable Macro",
  16470. height: math.unit(50, "feet")
  16471. },
  16472. {
  16473. name: "Macro",
  16474. height: math.unit(300, "feet")
  16475. },
  16476. {
  16477. name: "Megamacro",
  16478. height: math.unit(500, "miles")
  16479. },
  16480. ]
  16481. ))
  16482. characterMakers.push(() => makeCharacter(
  16483. { name: "Felix", species: ["siamese-cat"], tags: ["anthro"] },
  16484. {
  16485. front: {
  16486. height: math.unit(6, "feet"),
  16487. weight: math.unit(150, "lb"),
  16488. name: "Front",
  16489. image: {
  16490. source: "./media/characters/felix/front.svg",
  16491. extra: 762 / 722,
  16492. bottom: 0.02
  16493. }
  16494. },
  16495. frontClothed: {
  16496. height: math.unit(6, "feet"),
  16497. weight: math.unit(150, "lb"),
  16498. name: "Front (Clothed)",
  16499. image: {
  16500. source: "./media/characters/felix/front-clothed.svg",
  16501. extra: 762 / 722,
  16502. bottom: 0.02
  16503. }
  16504. },
  16505. },
  16506. [
  16507. {
  16508. name: "Normal",
  16509. height: math.unit(6 + 8 / 12, "feet"),
  16510. default: true
  16511. },
  16512. {
  16513. name: "Macro",
  16514. height: math.unit(2600, "feet")
  16515. },
  16516. {
  16517. name: "Megamacro",
  16518. height: math.unit(450, "miles")
  16519. },
  16520. ]
  16521. ))
  16522. characterMakers.push(() => makeCharacter(
  16523. { name: "Tobo", species: ["mouse"], tags: ["anthro"] },
  16524. {
  16525. front: {
  16526. height: math.unit(6 + 1 / 12, "feet"),
  16527. weight: math.unit(250, "lb"),
  16528. name: "Front",
  16529. image: {
  16530. source: "./media/characters/tobo/front.svg",
  16531. extra: 608 / 586,
  16532. bottom: 0.023
  16533. }
  16534. },
  16535. back: {
  16536. height: math.unit(6 + 1 / 12, "feet"),
  16537. weight: math.unit(250, "lb"),
  16538. name: "Back",
  16539. image: {
  16540. source: "./media/characters/tobo/back.svg",
  16541. extra: 608 / 586
  16542. }
  16543. },
  16544. },
  16545. [
  16546. {
  16547. name: "Nano",
  16548. height: math.unit(2, "nm")
  16549. },
  16550. {
  16551. name: "Megamicro",
  16552. height: math.unit(0.1, "mm")
  16553. },
  16554. {
  16555. name: "Micro",
  16556. height: math.unit(1, "inch"),
  16557. default: true
  16558. },
  16559. {
  16560. name: "Human-sized",
  16561. height: math.unit(6 + 1 / 12, "feet")
  16562. },
  16563. {
  16564. name: "Macro",
  16565. height: math.unit(250, "feet")
  16566. },
  16567. {
  16568. name: "Megamacro",
  16569. height: math.unit(75, "miles")
  16570. },
  16571. {
  16572. name: "Texas-sized",
  16573. height: math.unit(750, "miles")
  16574. },
  16575. {
  16576. name: "Teramacro",
  16577. height: math.unit(50000, "miles")
  16578. },
  16579. ]
  16580. ))
  16581. characterMakers.push(() => makeCharacter(
  16582. { name: "Danny Kapowsky", species: ["husky"], tags: ["anthro"] },
  16583. {
  16584. front: {
  16585. height: math.unit(6, "feet"),
  16586. weight: math.unit(269, "lb"),
  16587. name: "Front",
  16588. image: {
  16589. source: "./media/characters/danny-kapowsky/front.svg",
  16590. extra: 766 / 736,
  16591. bottom: 0.044
  16592. }
  16593. },
  16594. back: {
  16595. height: math.unit(6, "feet"),
  16596. weight: math.unit(269, "lb"),
  16597. name: "Back",
  16598. image: {
  16599. source: "./media/characters/danny-kapowsky/back.svg",
  16600. extra: 797 / 760,
  16601. bottom: 0.025
  16602. }
  16603. },
  16604. },
  16605. [
  16606. {
  16607. name: "Macro",
  16608. height: math.unit(150, "feet"),
  16609. default: true
  16610. },
  16611. {
  16612. name: "Macro+",
  16613. height: math.unit(200, "feet")
  16614. },
  16615. {
  16616. name: "Macro++",
  16617. height: math.unit(300, "feet")
  16618. },
  16619. {
  16620. name: "Macro+++",
  16621. height: math.unit(400, "feet")
  16622. },
  16623. ]
  16624. ))
  16625. characterMakers.push(() => makeCharacter(
  16626. { name: "Finn", species: ["fennec-fox"], tags: ["anthro"] },
  16627. {
  16628. side: {
  16629. height: math.unit(6, "feet"),
  16630. weight: math.unit(170, "lb"),
  16631. name: "Side",
  16632. image: {
  16633. source: "./media/characters/finn/side.svg",
  16634. extra: 1953 / 1807,
  16635. bottom: 0.057
  16636. }
  16637. },
  16638. },
  16639. [
  16640. {
  16641. name: "Megamacro",
  16642. height: math.unit(14445, "feet"),
  16643. default: true
  16644. },
  16645. ]
  16646. ))
  16647. characterMakers.push(() => makeCharacter(
  16648. { name: "Roy", species: ["chameleon"], tags: ["anthro"] },
  16649. {
  16650. front: {
  16651. height: math.unit(5 + 6 / 12, "feet"),
  16652. weight: math.unit(125, "lb"),
  16653. name: "Front",
  16654. image: {
  16655. source: "./media/characters/roy/front.svg",
  16656. extra: 1,
  16657. bottom: 0.11
  16658. }
  16659. },
  16660. },
  16661. [
  16662. {
  16663. name: "Micro",
  16664. height: math.unit(3, "inches"),
  16665. default: true
  16666. },
  16667. {
  16668. name: "Normal",
  16669. height: math.unit(5 + 6 / 12, "feet")
  16670. },
  16671. {
  16672. name: "Lesser Macro",
  16673. height: math.unit(60, "feet")
  16674. },
  16675. {
  16676. name: "Greater Macro",
  16677. height: math.unit(120, "feet")
  16678. },
  16679. ]
  16680. ))
  16681. characterMakers.push(() => makeCharacter(
  16682. { name: "Aevsivs", species: ["spider"], tags: ["anthro"] },
  16683. {
  16684. front: {
  16685. height: math.unit(6, "feet"),
  16686. weight: math.unit(100, "lb"),
  16687. name: "Front",
  16688. image: {
  16689. source: "./media/characters/aevsivs/front.svg",
  16690. extra: 1,
  16691. bottom: 0.03
  16692. }
  16693. },
  16694. back: {
  16695. height: math.unit(6, "feet"),
  16696. weight: math.unit(100, "lb"),
  16697. name: "Back",
  16698. image: {
  16699. source: "./media/characters/aevsivs/back.svg"
  16700. }
  16701. },
  16702. },
  16703. [
  16704. {
  16705. name: "Micro",
  16706. height: math.unit(2, "inches"),
  16707. default: true
  16708. },
  16709. {
  16710. name: "Normal",
  16711. height: math.unit(5, "feet")
  16712. },
  16713. ]
  16714. ))
  16715. characterMakers.push(() => makeCharacter(
  16716. { name: "Hildegard", species: ["lucario"], tags: ["anthro"] },
  16717. {
  16718. front: {
  16719. height: math.unit(5 + 7 / 12, "feet"),
  16720. weight: math.unit(159, "lb"),
  16721. name: "Front",
  16722. image: {
  16723. source: "./media/characters/hildegard/front.svg",
  16724. extra: 289 / 269,
  16725. bottom: 7.63 / 297.8
  16726. }
  16727. },
  16728. back: {
  16729. height: math.unit(5 + 7 / 12, "feet"),
  16730. weight: math.unit(159, "lb"),
  16731. name: "Back",
  16732. image: {
  16733. source: "./media/characters/hildegard/back.svg",
  16734. extra: 280 / 260,
  16735. bottom: 2.3 / 282
  16736. }
  16737. },
  16738. },
  16739. [
  16740. {
  16741. name: "Normal",
  16742. height: math.unit(5 + 7 / 12, "feet"),
  16743. default: true
  16744. },
  16745. ]
  16746. ))
  16747. characterMakers.push(() => makeCharacter(
  16748. { name: "Bernard & Wilder", species: ["lycanroc"], tags: ["anthro", "feral"] },
  16749. {
  16750. bernard: {
  16751. height: math.unit(2 + 7 / 12, "feet"),
  16752. weight: math.unit(66, "lb"),
  16753. name: "Bernard",
  16754. rename: true,
  16755. image: {
  16756. source: "./media/characters/bernard-wilder/bernard.svg",
  16757. extra: 192 / 128,
  16758. bottom: 0.05
  16759. }
  16760. },
  16761. wilder: {
  16762. height: math.unit(5 + 8 / 12, "feet"),
  16763. weight: math.unit(143, "lb"),
  16764. name: "Wilder",
  16765. rename: true,
  16766. image: {
  16767. source: "./media/characters/bernard-wilder/wilder.svg",
  16768. extra: 361 / 312,
  16769. bottom: 0.02
  16770. }
  16771. },
  16772. },
  16773. [
  16774. {
  16775. name: "Normal",
  16776. height: math.unit(2 + 7 / 12, "feet"),
  16777. default: true
  16778. },
  16779. ]
  16780. ))
  16781. characterMakers.push(() => makeCharacter(
  16782. { name: "Hearth", species: ["houndoom"], tags: ["anthro"] },
  16783. {
  16784. anthro: {
  16785. height: math.unit(6 + 1 / 12, "feet"),
  16786. weight: math.unit(155, "lb"),
  16787. name: "Anthro",
  16788. image: {
  16789. source: "./media/characters/hearth/anthro.svg",
  16790. extra: 1178/1136,
  16791. bottom: 28/1206
  16792. }
  16793. },
  16794. feral: {
  16795. height: math.unit(3.78, "feet"),
  16796. weight: math.unit(35, "kg"),
  16797. name: "Feral",
  16798. image: {
  16799. source: "./media/characters/hearth/feral.svg",
  16800. extra: 153 / 135,
  16801. bottom: 0.03
  16802. }
  16803. },
  16804. },
  16805. [
  16806. {
  16807. name: "Normal",
  16808. height: math.unit(6 + 1 / 12, "feet"),
  16809. default: true
  16810. },
  16811. ]
  16812. ))
  16813. characterMakers.push(() => makeCharacter(
  16814. { name: "Ingrid", species: ["delphox"], tags: ["anthro"] },
  16815. {
  16816. front: {
  16817. height: math.unit(6, "feet"),
  16818. weight: math.unit(182, "lb"),
  16819. name: "Front",
  16820. image: {
  16821. source: "./media/characters/ingrid/front.svg",
  16822. extra: 294 / 268,
  16823. bottom: 0.027
  16824. }
  16825. },
  16826. },
  16827. [
  16828. {
  16829. name: "Normal",
  16830. height: math.unit(6, "feet"),
  16831. default: true
  16832. },
  16833. ]
  16834. ))
  16835. characterMakers.push(() => makeCharacter(
  16836. { name: "Malgam", species: ["eevee"], tags: ["anthro"] },
  16837. {
  16838. eevee: {
  16839. height: math.unit(2 + 10 / 12, "feet"),
  16840. weight: math.unit(86, "lb"),
  16841. name: "Malgam",
  16842. image: {
  16843. source: "./media/characters/malgam/eevee.svg",
  16844. extra: 952/784,
  16845. bottom: 38/990
  16846. }
  16847. },
  16848. sylveon: {
  16849. height: math.unit(4, "feet"),
  16850. weight: math.unit(101, "lb"),
  16851. name: "Future Malgam",
  16852. rename: true,
  16853. image: {
  16854. source: "./media/characters/malgam/sylveon.svg",
  16855. extra: 371 / 325,
  16856. bottom: 0.015
  16857. }
  16858. },
  16859. gigantamax: {
  16860. height: math.unit(50, "feet"),
  16861. name: "Gigantamax Malgam",
  16862. rename: true,
  16863. image: {
  16864. source: "./media/characters/malgam/gigantamax.svg"
  16865. }
  16866. },
  16867. },
  16868. [
  16869. {
  16870. name: "Normal",
  16871. height: math.unit(2 + 10 / 12, "feet"),
  16872. default: true
  16873. },
  16874. ]
  16875. ))
  16876. characterMakers.push(() => makeCharacter(
  16877. { name: "Fleur", species: ["lopunny"], tags: ["anthro"] },
  16878. {
  16879. front: {
  16880. height: math.unit(5 + 11 / 12, "feet"),
  16881. weight: math.unit(188, "lb"),
  16882. name: "Front",
  16883. image: {
  16884. source: "./media/characters/fleur/front.svg",
  16885. extra: 309 / 283,
  16886. bottom: 0.007
  16887. }
  16888. },
  16889. },
  16890. [
  16891. {
  16892. name: "Normal",
  16893. height: math.unit(5 + 11 / 12, "feet"),
  16894. default: true
  16895. },
  16896. ]
  16897. ))
  16898. characterMakers.push(() => makeCharacter(
  16899. { name: "Jude", species: ["absol"], tags: ["anthro"] },
  16900. {
  16901. front: {
  16902. height: math.unit(5 + 4 / 12, "feet"),
  16903. weight: math.unit(122, "lb"),
  16904. name: "Front",
  16905. image: {
  16906. source: "./media/characters/jude/front.svg",
  16907. extra: 288 / 273,
  16908. bottom: 0.03
  16909. }
  16910. },
  16911. },
  16912. [
  16913. {
  16914. name: "Normal",
  16915. height: math.unit(5 + 4 / 12, "feet"),
  16916. default: true
  16917. },
  16918. ]
  16919. ))
  16920. characterMakers.push(() => makeCharacter(
  16921. { name: "Seara", species: ["salazzle"], tags: ["anthro"] },
  16922. {
  16923. front: {
  16924. height: math.unit(5 + 11 / 12, "feet"),
  16925. weight: math.unit(190, "lb"),
  16926. name: "Front",
  16927. image: {
  16928. source: "./media/characters/seara/front.svg",
  16929. extra: 1,
  16930. bottom: 0.05
  16931. }
  16932. },
  16933. },
  16934. [
  16935. {
  16936. name: "Normal",
  16937. height: math.unit(5 + 11 / 12, "feet"),
  16938. default: true
  16939. },
  16940. ]
  16941. ))
  16942. characterMakers.push(() => makeCharacter(
  16943. { name: "Caspian (Lugia)", species: ["lugia"], tags: ["anthro"] },
  16944. {
  16945. front: {
  16946. height: math.unit(16 + 5 / 12, "feet"),
  16947. weight: math.unit(524, "lb"),
  16948. name: "Front",
  16949. image: {
  16950. source: "./media/characters/caspian-lugia/front.svg",
  16951. extra: 1,
  16952. bottom: 0.04
  16953. }
  16954. },
  16955. },
  16956. [
  16957. {
  16958. name: "Normal",
  16959. height: math.unit(16 + 5 / 12, "feet"),
  16960. default: true
  16961. },
  16962. ]
  16963. ))
  16964. characterMakers.push(() => makeCharacter(
  16965. { name: "Mika", species: ["rabbit"], tags: ["anthro"] },
  16966. {
  16967. front: {
  16968. height: math.unit(5 + 7 / 12, "feet"),
  16969. weight: math.unit(170, "lb"),
  16970. name: "Front",
  16971. image: {
  16972. source: "./media/characters/mika/front.svg",
  16973. extra: 1,
  16974. bottom: 0.016
  16975. }
  16976. },
  16977. },
  16978. [
  16979. {
  16980. name: "Normal",
  16981. height: math.unit(5 + 7 / 12, "feet"),
  16982. default: true
  16983. },
  16984. ]
  16985. ))
  16986. characterMakers.push(() => makeCharacter(
  16987. { name: "Sol", species: ["grovyle"], tags: ["anthro"] },
  16988. {
  16989. front: {
  16990. height: math.unit(6 + 2 / 12, "feet"),
  16991. weight: math.unit(268, "lb"),
  16992. name: "Front",
  16993. image: {
  16994. source: "./media/characters/sol/front.svg",
  16995. extra: 247 / 231,
  16996. bottom: 0.05
  16997. }
  16998. },
  16999. },
  17000. [
  17001. {
  17002. name: "Normal",
  17003. height: math.unit(6 + 2 / 12, "feet"),
  17004. default: true
  17005. },
  17006. ]
  17007. ))
  17008. characterMakers.push(() => makeCharacter(
  17009. { name: "Umiko", species: ["buizel", "floatzel"], tags: ["anthro"] },
  17010. {
  17011. buizel: {
  17012. height: math.unit(2 + 5 / 12, "feet"),
  17013. weight: math.unit(87, "lb"),
  17014. name: "Front",
  17015. image: {
  17016. source: "./media/characters/umiko/buizel.svg",
  17017. extra: 172 / 157,
  17018. bottom: 0.01
  17019. },
  17020. form: "buizel",
  17021. default: true
  17022. },
  17023. floatzel: {
  17024. height: math.unit(5 + 9 / 12, "feet"),
  17025. weight: math.unit(250, "lb"),
  17026. name: "Front",
  17027. image: {
  17028. source: "./media/characters/umiko/floatzel.svg",
  17029. extra: 1076/1006,
  17030. bottom: 15/1091
  17031. },
  17032. form: "floatzel",
  17033. default: true
  17034. },
  17035. },
  17036. [
  17037. {
  17038. name: "Normal",
  17039. height: math.unit(2 + 5 / 12, "feet"),
  17040. form: "buizel",
  17041. default: true
  17042. },
  17043. {
  17044. name: "Normal",
  17045. height: math.unit(5 + 9 / 12, "feet"),
  17046. form: "floatzel",
  17047. default: true
  17048. },
  17049. ],
  17050. {
  17051. "buizel": {
  17052. name: "Buizel"
  17053. },
  17054. "floatzel": {
  17055. name: "Floatzel",
  17056. default: true
  17057. }
  17058. }
  17059. ))
  17060. characterMakers.push(() => makeCharacter(
  17061. { name: "Iliac", species: ["inteleon"], tags: ["anthro"] },
  17062. {
  17063. front: {
  17064. height: math.unit(6 + 2 / 12, "feet"),
  17065. weight: math.unit(146, "lb"),
  17066. name: "Front",
  17067. image: {
  17068. source: "./media/characters/iliac/front.svg",
  17069. extra: 389 / 365,
  17070. bottom: 0.035
  17071. }
  17072. },
  17073. },
  17074. [
  17075. {
  17076. name: "Normal",
  17077. height: math.unit(6 + 2 / 12, "feet"),
  17078. default: true
  17079. },
  17080. ]
  17081. ))
  17082. characterMakers.push(() => makeCharacter(
  17083. { name: "Topaz", species: ["blaziken"], tags: ["anthro"] },
  17084. {
  17085. front: {
  17086. height: math.unit(6, "feet"),
  17087. weight: math.unit(170, "lb"),
  17088. name: "Front",
  17089. image: {
  17090. source: "./media/characters/topaz/front.svg",
  17091. extra: 317 / 303,
  17092. bottom: 0.055
  17093. }
  17094. },
  17095. },
  17096. [
  17097. {
  17098. name: "Normal",
  17099. height: math.unit(6, "feet"),
  17100. default: true
  17101. },
  17102. ]
  17103. ))
  17104. characterMakers.push(() => makeCharacter(
  17105. { name: "Gabriel", species: ["lucario"], tags: ["anthro"] },
  17106. {
  17107. front: {
  17108. height: math.unit(5 + 11 / 12, "feet"),
  17109. weight: math.unit(144, "lb"),
  17110. name: "Front",
  17111. image: {
  17112. source: "./media/characters/gabriel/front.svg",
  17113. extra: 285 / 262,
  17114. bottom: 0.004
  17115. }
  17116. },
  17117. },
  17118. [
  17119. {
  17120. name: "Normal",
  17121. height: math.unit(5 + 11 / 12, "feet"),
  17122. default: true
  17123. },
  17124. ]
  17125. ))
  17126. characterMakers.push(() => makeCharacter(
  17127. { name: "Tempest (Suicune)", species: ["suicune"], tags: ["anthro"] },
  17128. {
  17129. side: {
  17130. height: math.unit(6 + 5 / 12, "feet"),
  17131. weight: math.unit(300, "lb"),
  17132. name: "Side",
  17133. image: {
  17134. source: "./media/characters/tempest-suicune/side.svg",
  17135. extra: 195 / 154,
  17136. bottom: 0.04
  17137. }
  17138. },
  17139. },
  17140. [
  17141. {
  17142. name: "Normal",
  17143. height: math.unit(6 + 5 / 12, "feet"),
  17144. default: true
  17145. },
  17146. ]
  17147. ))
  17148. characterMakers.push(() => makeCharacter(
  17149. { name: "Vulcan", species: ["charizard"], tags: ["anthro"] },
  17150. {
  17151. front: {
  17152. height: math.unit(7 + 2 / 12, "feet"),
  17153. weight: math.unit(322, "lb"),
  17154. name: "Front",
  17155. image: {
  17156. source: "./media/characters/vulcan/front.svg",
  17157. extra: 154 / 147,
  17158. bottom: 0.04
  17159. }
  17160. },
  17161. },
  17162. [
  17163. {
  17164. name: "Normal",
  17165. height: math.unit(7 + 2 / 12, "feet"),
  17166. default: true
  17167. },
  17168. ]
  17169. ))
  17170. characterMakers.push(() => makeCharacter(
  17171. { name: "Gault", species: ["feraligatr"], tags: ["anthro"] },
  17172. {
  17173. front: {
  17174. height: math.unit(5 + 10 / 12, "feet"),
  17175. weight: math.unit(264, "lb"),
  17176. name: "Front",
  17177. image: {
  17178. source: "./media/characters/gault/front.svg",
  17179. extra: 161 / 140,
  17180. bottom: 0.028
  17181. }
  17182. },
  17183. },
  17184. [
  17185. {
  17186. name: "Normal",
  17187. height: math.unit(5 + 10 / 12, "feet"),
  17188. default: true
  17189. },
  17190. ]
  17191. ))
  17192. characterMakers.push(() => makeCharacter(
  17193. { name: "Shard", species: ["weavile"], tags: ["anthro"] },
  17194. {
  17195. front: {
  17196. height: math.unit(6, "feet"),
  17197. weight: math.unit(150, "lb"),
  17198. name: "Front",
  17199. image: {
  17200. source: "./media/characters/shard/front.svg",
  17201. extra: 273 / 238,
  17202. bottom: 0.02
  17203. }
  17204. },
  17205. },
  17206. [
  17207. {
  17208. name: "Normal",
  17209. height: math.unit(3 + 6 / 12, "feet"),
  17210. default: true
  17211. },
  17212. ]
  17213. ))
  17214. characterMakers.push(() => makeCharacter(
  17215. { name: "Ashe", species: ["cat"], tags: ["anthro"] },
  17216. {
  17217. front: {
  17218. height: math.unit(5 + 11 / 12, "feet"),
  17219. weight: math.unit(146, "lb"),
  17220. name: "Front",
  17221. image: {
  17222. source: "./media/characters/ashe/front.svg",
  17223. extra: 400 / 373,
  17224. bottom: 0.01
  17225. }
  17226. },
  17227. },
  17228. [
  17229. {
  17230. name: "Normal",
  17231. height: math.unit(5 + 11 / 12, "feet"),
  17232. default: true
  17233. },
  17234. ]
  17235. ))
  17236. characterMakers.push(() => makeCharacter(
  17237. { name: "Beatrix", species: ["coyote"], tags: ["anthro"] },
  17238. {
  17239. front: {
  17240. height: math.unit(5 + 5 / 12, "feet"),
  17241. weight: math.unit(135, "lb"),
  17242. name: "Front",
  17243. image: {
  17244. source: "./media/characters/beatrix/front.svg",
  17245. extra: 392 / 379,
  17246. bottom: 0.01
  17247. }
  17248. },
  17249. },
  17250. [
  17251. {
  17252. name: "Normal",
  17253. height: math.unit(6, "feet"),
  17254. default: true
  17255. },
  17256. ]
  17257. ))
  17258. characterMakers.push(() => makeCharacter(
  17259. { name: "Ignatius", species: ["delphox"], tags: ["anthro"] },
  17260. {
  17261. front: {
  17262. height: math.unit(6 + 2/12, "feet"),
  17263. weight: math.unit(135, "lb"),
  17264. name: "Front",
  17265. image: {
  17266. source: "./media/characters/ignatius/front.svg",
  17267. extra: 1380/1259,
  17268. bottom: 27/1407
  17269. }
  17270. },
  17271. },
  17272. [
  17273. {
  17274. name: "Normal",
  17275. height: math.unit(6 + 2/12, "feet"),
  17276. default: true
  17277. },
  17278. ]
  17279. ))
  17280. characterMakers.push(() => makeCharacter(
  17281. { name: "Mei Li", species: ["mienshao"], tags: ["anthro"] },
  17282. {
  17283. front: {
  17284. height: math.unit(6 + 2 / 12, "feet"),
  17285. weight: math.unit(138, "lb"),
  17286. name: "Front",
  17287. image: {
  17288. source: "./media/characters/mei-li/front.svg",
  17289. extra: 237 / 229,
  17290. bottom: 0.03
  17291. }
  17292. },
  17293. },
  17294. [
  17295. {
  17296. name: "Normal",
  17297. height: math.unit(6 + 2 / 12, "feet"),
  17298. default: true
  17299. },
  17300. ]
  17301. ))
  17302. characterMakers.push(() => makeCharacter(
  17303. { name: "Puru", species: ["azumarill"], tags: ["anthro"] },
  17304. {
  17305. front: {
  17306. height: math.unit(2 + 4 / 12, "feet"),
  17307. weight: math.unit(62, "lb"),
  17308. name: "Front",
  17309. image: {
  17310. source: "./media/characters/puru/front.svg",
  17311. extra: 206 / 149,
  17312. bottom: 0.06
  17313. }
  17314. },
  17315. },
  17316. [
  17317. {
  17318. name: "Normal",
  17319. height: math.unit(2 + 4 / 12, "feet"),
  17320. default: true
  17321. },
  17322. ]
  17323. ))
  17324. characterMakers.push(() => makeCharacter(
  17325. { name: "Kee", species: ["aardwolf"], tags: ["anthro", "taur"] },
  17326. {
  17327. anthro: {
  17328. height: math.unit(5 + 8/12, "feet"),
  17329. weight: math.unit(200, "lb"),
  17330. energyNeed: math.unit(2000, "kcal"),
  17331. name: "Anthro",
  17332. image: {
  17333. source: "./media/characters/kee/anthro.svg",
  17334. extra: 3251/3184,
  17335. bottom: 250/3501
  17336. }
  17337. },
  17338. taur: {
  17339. height: math.unit(11, "feet"),
  17340. weight: math.unit(500, "lb"),
  17341. energyNeed: math.unit(5000, "kcal"),
  17342. name: "Taur",
  17343. image: {
  17344. source: "./media/characters/kee/taur.svg",
  17345. extra: 1362/1320,
  17346. bottom: 83/1445
  17347. }
  17348. },
  17349. },
  17350. [
  17351. {
  17352. name: "Normal",
  17353. height: math.unit(5 + 8/12, "feet"),
  17354. default: true
  17355. },
  17356. {
  17357. name: "Macro",
  17358. height: math.unit(35, "feet")
  17359. },
  17360. ]
  17361. ))
  17362. characterMakers.push(() => makeCharacter(
  17363. { name: "Cobalt (Dracha)", species: ["dracha"], tags: ["anthro"] },
  17364. {
  17365. anthro: {
  17366. height: math.unit(7, "feet"),
  17367. weight: math.unit(190, "lb"),
  17368. name: "Anthro",
  17369. image: {
  17370. source: "./media/characters/cobalt-dracha/anthro.svg",
  17371. extra: 231 / 225,
  17372. bottom: 0.04
  17373. }
  17374. },
  17375. feral: {
  17376. height: math.unit(9 + 7 / 12, "feet"),
  17377. weight: math.unit(294, "lb"),
  17378. name: "Feral",
  17379. image: {
  17380. source: "./media/characters/cobalt-dracha/feral.svg",
  17381. extra: 692 / 633,
  17382. bottom: 0.05
  17383. }
  17384. },
  17385. },
  17386. [
  17387. {
  17388. name: "Normal",
  17389. height: math.unit(7, "feet"),
  17390. default: true
  17391. },
  17392. ]
  17393. ))
  17394. characterMakers.push(() => makeCharacter(
  17395. { name: "Java", species: ["snake", "deity"], tags: ["naga"] },
  17396. {
  17397. fallen: {
  17398. height: math.unit(11 + 8 / 12, "feet"),
  17399. weight: math.unit(485, "lb"),
  17400. name: "Java (Fallen)",
  17401. rename: true,
  17402. image: {
  17403. source: "./media/characters/java/fallen.svg",
  17404. extra: 226 / 208,
  17405. bottom: 0.005
  17406. }
  17407. },
  17408. godkin: {
  17409. height: math.unit(10 + 6 / 12, "feet"),
  17410. weight: math.unit(328, "lb"),
  17411. name: "Java (Godkin)",
  17412. rename: true,
  17413. image: {
  17414. source: "./media/characters/java/godkin.svg",
  17415. extra: 1104/1068,
  17416. bottom: 36/1140
  17417. }
  17418. },
  17419. },
  17420. [
  17421. {
  17422. name: "Normal",
  17423. height: math.unit(11 + 8 / 12, "feet"),
  17424. default: true
  17425. },
  17426. ]
  17427. ))
  17428. characterMakers.push(() => makeCharacter(
  17429. { name: "Purna", species: ["panther"], tags: ["anthro"] },
  17430. {
  17431. front: {
  17432. height: math.unit(5 + 9 / 12, "feet"),
  17433. weight: math.unit(170, "lb"),
  17434. name: "Front",
  17435. image: {
  17436. source: "./media/characters/purna/front.svg",
  17437. extra: 239 / 229,
  17438. bottom: 0.01
  17439. }
  17440. },
  17441. },
  17442. [
  17443. {
  17444. name: "Normal",
  17445. height: math.unit(5 + 9 / 12, "feet"),
  17446. default: true
  17447. },
  17448. ]
  17449. ))
  17450. characterMakers.push(() => makeCharacter(
  17451. { name: "Kuva", species: ["cheetah"], tags: ["anthro"] },
  17452. {
  17453. front: {
  17454. height: math.unit(5 + 9 / 12, "feet"),
  17455. weight: math.unit(142, "lb"),
  17456. name: "Front",
  17457. image: {
  17458. source: "./media/characters/kuva/front.svg",
  17459. extra: 281 / 271,
  17460. bottom: 0.006
  17461. }
  17462. },
  17463. },
  17464. [
  17465. {
  17466. name: "Normal",
  17467. height: math.unit(5 + 9 / 12, "feet"),
  17468. default: true
  17469. },
  17470. ]
  17471. ))
  17472. characterMakers.push(() => makeCharacter(
  17473. { name: "Embra", species: ["dracha"], tags: ["anthro"] },
  17474. {
  17475. anthro: {
  17476. height: math.unit(9 + 2 / 12, "feet"),
  17477. weight: math.unit(270, "lb"),
  17478. name: "Anthro",
  17479. image: {
  17480. source: "./media/characters/embra/anthro.svg",
  17481. extra: 200 / 187,
  17482. bottom: 0.02
  17483. }
  17484. },
  17485. feral: {
  17486. height: math.unit(18 + 8 / 12, "feet"),
  17487. weight: math.unit(576, "lb"),
  17488. name: "Feral",
  17489. image: {
  17490. source: "./media/characters/embra/feral.svg",
  17491. extra: 152 / 137,
  17492. bottom: 0.037
  17493. }
  17494. },
  17495. },
  17496. [
  17497. {
  17498. name: "Normal",
  17499. height: math.unit(9 + 2 / 12, "feet"),
  17500. default: true
  17501. },
  17502. ]
  17503. ))
  17504. characterMakers.push(() => makeCharacter(
  17505. { name: "Grottos", species: ["dracha"], tags: ["anthro"] },
  17506. {
  17507. anthro: {
  17508. height: math.unit(10 + 9 / 12, "feet"),
  17509. weight: math.unit(224, "lb"),
  17510. name: "Anthro",
  17511. image: {
  17512. source: "./media/characters/grottos/anthro.svg",
  17513. extra: 350 / 332,
  17514. bottom: 0.045
  17515. }
  17516. },
  17517. feral: {
  17518. height: math.unit(20 + 7 / 12, "feet"),
  17519. weight: math.unit(629, "lb"),
  17520. name: "Feral",
  17521. image: {
  17522. source: "./media/characters/grottos/feral.svg",
  17523. extra: 207 / 190,
  17524. bottom: 0.05
  17525. }
  17526. },
  17527. },
  17528. [
  17529. {
  17530. name: "Normal",
  17531. height: math.unit(10 + 9 / 12, "feet"),
  17532. default: true
  17533. },
  17534. ]
  17535. ))
  17536. characterMakers.push(() => makeCharacter(
  17537. { name: "Frifna", species: ["dracha"], tags: ["anthro"] },
  17538. {
  17539. anthro: {
  17540. height: math.unit(9 + 6 / 12, "feet"),
  17541. weight: math.unit(298, "lb"),
  17542. name: "Anthro",
  17543. image: {
  17544. source: "./media/characters/frifna/anthro.svg",
  17545. extra: 282 / 269,
  17546. bottom: 0.015
  17547. }
  17548. },
  17549. feral: {
  17550. height: math.unit(16 + 2 / 12, "feet"),
  17551. weight: math.unit(624, "lb"),
  17552. name: "Feral",
  17553. image: {
  17554. source: "./media/characters/frifna/feral.svg"
  17555. }
  17556. },
  17557. },
  17558. [
  17559. {
  17560. name: "Normal",
  17561. height: math.unit(9 + 6 / 12, "feet"),
  17562. default: true
  17563. },
  17564. ]
  17565. ))
  17566. characterMakers.push(() => makeCharacter(
  17567. { name: "Elise", species: ["mongoose"], tags: ["anthro"] },
  17568. {
  17569. front: {
  17570. height: math.unit(6 + 2 / 12, "feet"),
  17571. weight: math.unit(168, "lb"),
  17572. name: "Front",
  17573. image: {
  17574. source: "./media/characters/elise/front.svg",
  17575. extra: 276 / 271
  17576. }
  17577. },
  17578. },
  17579. [
  17580. {
  17581. name: "Normal",
  17582. height: math.unit(6 + 2 / 12, "feet"),
  17583. default: true
  17584. },
  17585. ]
  17586. ))
  17587. characterMakers.push(() => makeCharacter(
  17588. { name: "Glade", species: ["wolf"], tags: ["anthro"] },
  17589. {
  17590. front: {
  17591. height: math.unit(5 + 10 / 12, "feet"),
  17592. weight: math.unit(210, "lb"),
  17593. name: "Front",
  17594. image: {
  17595. source: "./media/characters/glade/front.svg",
  17596. extra: 258 / 247,
  17597. bottom: 0.008
  17598. }
  17599. },
  17600. },
  17601. [
  17602. {
  17603. name: "Normal",
  17604. height: math.unit(5 + 10 / 12, "feet"),
  17605. default: true
  17606. },
  17607. ]
  17608. ))
  17609. characterMakers.push(() => makeCharacter(
  17610. { name: "Rina", species: ["fox"], tags: ["anthro"] },
  17611. {
  17612. front: {
  17613. height: math.unit(5 + 10 / 12, "feet"),
  17614. weight: math.unit(129, "lb"),
  17615. name: "Front",
  17616. image: {
  17617. source: "./media/characters/rina/front.svg",
  17618. extra: 266 / 255,
  17619. bottom: 0.005
  17620. }
  17621. },
  17622. },
  17623. [
  17624. {
  17625. name: "Normal",
  17626. height: math.unit(5 + 10 / 12, "feet"),
  17627. default: true
  17628. },
  17629. ]
  17630. ))
  17631. characterMakers.push(() => makeCharacter(
  17632. { name: "Veronica", species: ["fox", "synth"], tags: ["anthro"] },
  17633. {
  17634. front: {
  17635. height: math.unit(6 + 1 / 12, "feet"),
  17636. weight: math.unit(192, "lb"),
  17637. name: "Front",
  17638. image: {
  17639. source: "./media/characters/veronica/front.svg",
  17640. extra: 319 / 309,
  17641. bottom: 0.005
  17642. }
  17643. },
  17644. },
  17645. [
  17646. {
  17647. name: "Normal",
  17648. height: math.unit(6 + 1 / 12, "feet"),
  17649. default: true
  17650. },
  17651. ]
  17652. ))
  17653. characterMakers.push(() => makeCharacter(
  17654. { name: "Braxton", species: ["great-dane"], tags: ["anthro"] },
  17655. {
  17656. front: {
  17657. height: math.unit(9 + 3 / 12, "feet"),
  17658. weight: math.unit(1100, "lb"),
  17659. name: "Front",
  17660. image: {
  17661. source: "./media/characters/braxton/front.svg",
  17662. extra: 1057 / 984,
  17663. bottom: 0.05
  17664. }
  17665. },
  17666. },
  17667. [
  17668. {
  17669. name: "Normal",
  17670. height: math.unit(9 + 3 / 12, "feet")
  17671. },
  17672. {
  17673. name: "Giant",
  17674. height: math.unit(300, "feet"),
  17675. default: true
  17676. },
  17677. {
  17678. name: "Macro",
  17679. height: math.unit(700, "feet")
  17680. },
  17681. {
  17682. name: "Megamacro",
  17683. height: math.unit(6000, "feet")
  17684. },
  17685. ]
  17686. ))
  17687. characterMakers.push(() => makeCharacter(
  17688. { name: "Blue Feyonics", species: ["phoenix"], tags: ["anthro"] },
  17689. {
  17690. front: {
  17691. height: math.unit(6 + 7 / 12, "feet"),
  17692. weight: math.unit(150, "lb"),
  17693. name: "Front",
  17694. image: {
  17695. source: "./media/characters/blue-feyonics/front.svg",
  17696. extra: 1403 / 1306,
  17697. bottom: 0.047
  17698. }
  17699. },
  17700. },
  17701. [
  17702. {
  17703. name: "Normal",
  17704. height: math.unit(6 + 7 / 12, "feet"),
  17705. default: true
  17706. },
  17707. ]
  17708. ))
  17709. characterMakers.push(() => makeCharacter(
  17710. { name: "Maxwell", species: ["shiba-inu", "wolf"], tags: ["anthro"] },
  17711. {
  17712. front: {
  17713. height: math.unit(1.8, "meters"),
  17714. weight: math.unit(60, "kg"),
  17715. name: "Front",
  17716. image: {
  17717. source: "./media/characters/maxwell/front.svg",
  17718. extra: 2060 / 1873
  17719. }
  17720. },
  17721. },
  17722. [
  17723. {
  17724. name: "Micro",
  17725. height: math.unit(1, "mm")
  17726. },
  17727. {
  17728. name: "Normal",
  17729. height: math.unit(1.8, "meter"),
  17730. default: true
  17731. },
  17732. {
  17733. name: "Macro",
  17734. height: math.unit(30, "meters")
  17735. },
  17736. {
  17737. name: "Megamacro",
  17738. height: math.unit(10, "km")
  17739. },
  17740. ]
  17741. ))
  17742. characterMakers.push(() => makeCharacter(
  17743. { name: "Jack", species: ["wolf", "dragon"], tags: ["anthro"] },
  17744. {
  17745. front: {
  17746. height: math.unit(6, "feet"),
  17747. weight: math.unit(150, "lb"),
  17748. name: "Front",
  17749. image: {
  17750. source: "./media/characters/jack/front.svg",
  17751. extra: 1754 / 1640,
  17752. bottom: 0.01
  17753. }
  17754. },
  17755. },
  17756. [
  17757. {
  17758. name: "Normal",
  17759. height: math.unit(80000, "feet"),
  17760. default: true
  17761. },
  17762. {
  17763. name: "Max size",
  17764. height: math.unit(10, "lightyears")
  17765. },
  17766. ]
  17767. ))
  17768. characterMakers.push(() => makeCharacter(
  17769. { name: "Cafat", species: ["husky"], tags: ["taur"] },
  17770. {
  17771. urban: {
  17772. height: math.unit(5, "feet"),
  17773. weight: math.unit(240, "lb"),
  17774. name: "Urban",
  17775. image: {
  17776. source: "./media/characters/cafat/urban.svg",
  17777. extra: 1223/1126,
  17778. bottom: 205/1428
  17779. }
  17780. },
  17781. summer: {
  17782. height: math.unit(5, "feet"),
  17783. weight: math.unit(240, "lb"),
  17784. name: "Summer",
  17785. image: {
  17786. source: "./media/characters/cafat/summer.svg",
  17787. extra: 1223/1126,
  17788. bottom: 205/1428
  17789. }
  17790. },
  17791. winter: {
  17792. height: math.unit(5, "feet"),
  17793. weight: math.unit(240, "lb"),
  17794. name: "Winter",
  17795. image: {
  17796. source: "./media/characters/cafat/winter.svg",
  17797. extra: 1223/1126,
  17798. bottom: 205/1428
  17799. }
  17800. },
  17801. lingerie: {
  17802. height: math.unit(5, "feet"),
  17803. weight: math.unit(240, "lb"),
  17804. name: "Lingerie",
  17805. image: {
  17806. source: "./media/characters/cafat/lingerie.svg",
  17807. extra: 1223/1126,
  17808. bottom: 205/1428
  17809. }
  17810. },
  17811. upright: {
  17812. height: math.unit(6.3, "feet"),
  17813. weight: math.unit(240, "lb"),
  17814. name: "Upright",
  17815. image: {
  17816. source: "./media/characters/cafat/upright.svg",
  17817. bottom: 0.01
  17818. }
  17819. },
  17820. uprightFull: {
  17821. height: math.unit(6.3, "feet"),
  17822. weight: math.unit(240, "lb"),
  17823. name: "Upright (Full)",
  17824. image: {
  17825. source: "./media/characters/cafat/upright-full.svg",
  17826. bottom: 0.01
  17827. }
  17828. },
  17829. },
  17830. [
  17831. {
  17832. name: "Small",
  17833. height: math.unit(5, "feet"),
  17834. default: true
  17835. },
  17836. {
  17837. name: "Large",
  17838. height: math.unit(13, "feet")
  17839. },
  17840. ]
  17841. ))
  17842. characterMakers.push(() => makeCharacter(
  17843. { name: "Verin Raharra", species: ["sergal"], tags: ["anthro"] },
  17844. {
  17845. front: {
  17846. height: math.unit(6, "feet"),
  17847. weight: math.unit(150, "lb"),
  17848. name: "Front",
  17849. image: {
  17850. source: "./media/characters/verin-raharra/front.svg",
  17851. extra: 5019 / 4835,
  17852. bottom: 0.023
  17853. }
  17854. },
  17855. },
  17856. [
  17857. {
  17858. name: "Normal",
  17859. height: math.unit(7 + 5 / 12, "feet"),
  17860. default: true
  17861. },
  17862. {
  17863. name: "Upsized",
  17864. height: math.unit(20, "feet")
  17865. },
  17866. ]
  17867. ))
  17868. characterMakers.push(() => makeCharacter(
  17869. { name: "Nakata", species: ["hyena"], tags: ["anthro"] },
  17870. {
  17871. front: {
  17872. height: math.unit(7, "feet"),
  17873. weight: math.unit(230, "lb"),
  17874. name: "Front",
  17875. image: {
  17876. source: "./media/characters/nakata/front.svg",
  17877. extra: 1.005,
  17878. bottom: 0.01
  17879. }
  17880. },
  17881. },
  17882. [
  17883. {
  17884. name: "Normal",
  17885. height: math.unit(7, "feet"),
  17886. default: true
  17887. },
  17888. {
  17889. name: "Big",
  17890. height: math.unit(14, "feet")
  17891. },
  17892. {
  17893. name: "Macro",
  17894. height: math.unit(400, "feet")
  17895. },
  17896. ]
  17897. ))
  17898. characterMakers.push(() => makeCharacter(
  17899. { name: "Lily", species: ["ruppells-fox"], tags: ["anthro"] },
  17900. {
  17901. front: {
  17902. height: math.unit(4.91, "feet"),
  17903. weight: math.unit(100, "lb"),
  17904. name: "Front",
  17905. image: {
  17906. source: "./media/characters/lily/front.svg",
  17907. extra: 1585 / 1415,
  17908. bottom: 0.02
  17909. }
  17910. },
  17911. },
  17912. [
  17913. {
  17914. name: "Normal",
  17915. height: math.unit(4.91, "feet"),
  17916. default: true
  17917. },
  17918. ]
  17919. ))
  17920. characterMakers.push(() => makeCharacter(
  17921. { name: "Sheila", species: ["leopard-seal"], tags: ["anthro"] },
  17922. {
  17923. laying: {
  17924. height: math.unit(4 + 4 / 12, "feet"),
  17925. weight: math.unit(600, "lb"),
  17926. name: "Laying",
  17927. image: {
  17928. source: "./media/characters/sheila/laying.svg",
  17929. extra: 1333 / 1265,
  17930. bottom: 0.16
  17931. }
  17932. },
  17933. },
  17934. [
  17935. {
  17936. name: "Normal",
  17937. height: math.unit(4 + 4 / 12, "feet"),
  17938. default: true
  17939. },
  17940. ]
  17941. ))
  17942. characterMakers.push(() => makeCharacter(
  17943. { name: "Sax", species: ["argonian"], tags: ["anthro"] },
  17944. {
  17945. front: {
  17946. height: math.unit(6, "feet"),
  17947. weight: math.unit(190, "lb"),
  17948. name: "Front",
  17949. image: {
  17950. source: "./media/characters/sax/front.svg",
  17951. extra: 1187 / 973,
  17952. bottom: 0.042
  17953. }
  17954. },
  17955. },
  17956. [
  17957. {
  17958. name: "Micro",
  17959. height: math.unit(4, "inches"),
  17960. default: true
  17961. },
  17962. ]
  17963. ))
  17964. characterMakers.push(() => makeCharacter(
  17965. { name: "Pandora", species: ["fox"], tags: ["anthro"] },
  17966. {
  17967. front: {
  17968. height: math.unit(6, "feet"),
  17969. weight: math.unit(150, "lb"),
  17970. name: "Front",
  17971. image: {
  17972. source: "./media/characters/pandora/front.svg",
  17973. extra: 2720 / 2556,
  17974. bottom: 0.015
  17975. }
  17976. },
  17977. back: {
  17978. height: math.unit(6, "feet"),
  17979. weight: math.unit(150, "lb"),
  17980. name: "Back",
  17981. image: {
  17982. source: "./media/characters/pandora/back.svg",
  17983. extra: 2720 / 2556,
  17984. bottom: 0.01
  17985. }
  17986. },
  17987. beans: {
  17988. height: math.unit(6 / 8, "feet"),
  17989. name: "Beans",
  17990. image: {
  17991. source: "./media/characters/pandora/beans.svg"
  17992. }
  17993. },
  17994. collar: {
  17995. height: math.unit(0.31, "feet"),
  17996. name: "Collar",
  17997. image: {
  17998. source: "./media/characters/pandora/collar.svg"
  17999. }
  18000. },
  18001. skirt: {
  18002. height: math.unit(6, "feet"),
  18003. weight: math.unit(150, "lb"),
  18004. name: "Skirt",
  18005. image: {
  18006. source: "./media/characters/pandora/skirt.svg",
  18007. extra: 1622 / 1525,
  18008. bottom: 0.015
  18009. }
  18010. },
  18011. hoodie: {
  18012. height: math.unit(6, "feet"),
  18013. weight: math.unit(150, "lb"),
  18014. name: "Hoodie",
  18015. image: {
  18016. source: "./media/characters/pandora/hoodie.svg",
  18017. extra: 1622 / 1525,
  18018. bottom: 0.015
  18019. }
  18020. },
  18021. casual: {
  18022. height: math.unit(6, "feet"),
  18023. weight: math.unit(150, "lb"),
  18024. name: "Casual",
  18025. image: {
  18026. source: "./media/characters/pandora/casual.svg",
  18027. extra: 1622 / 1525,
  18028. bottom: 0.015
  18029. }
  18030. },
  18031. },
  18032. [
  18033. {
  18034. name: "Normal",
  18035. height: math.unit(6, "feet")
  18036. },
  18037. {
  18038. name: "Big Steppy",
  18039. height: math.unit(1, "km"),
  18040. default: true
  18041. },
  18042. {
  18043. name: "Galactic Steppy",
  18044. height: math.unit(2, "gigameters")
  18045. },
  18046. ]
  18047. ))
  18048. characterMakers.push(() => makeCharacter(
  18049. { name: "Venio Darcony", species: ["hyena"], tags: ["anthro"] },
  18050. {
  18051. side: {
  18052. height: math.unit(10, "feet"),
  18053. weight: math.unit(800, "kg"),
  18054. name: "Side",
  18055. image: {
  18056. source: "./media/characters/venio-darcony/side.svg",
  18057. extra: 1373 / 1003,
  18058. bottom: 0.037
  18059. }
  18060. },
  18061. front: {
  18062. height: math.unit(19, "feet"),
  18063. weight: math.unit(800, "kg"),
  18064. name: "Front",
  18065. image: {
  18066. source: "./media/characters/venio-darcony/front.svg"
  18067. }
  18068. },
  18069. back: {
  18070. height: math.unit(19, "feet"),
  18071. weight: math.unit(800, "kg"),
  18072. name: "Back",
  18073. image: {
  18074. source: "./media/characters/venio-darcony/back.svg"
  18075. }
  18076. },
  18077. sideNsfw: {
  18078. height: math.unit(10, "feet"),
  18079. weight: math.unit(800, "kg"),
  18080. name: "Side (NSFW)",
  18081. image: {
  18082. source: "./media/characters/venio-darcony/side-nsfw.svg",
  18083. extra: 1373 / 1003,
  18084. bottom: 0.037
  18085. }
  18086. },
  18087. frontNsfw: {
  18088. height: math.unit(19, "feet"),
  18089. weight: math.unit(800, "kg"),
  18090. name: "Front (NSFW)",
  18091. image: {
  18092. source: "./media/characters/venio-darcony/front-nsfw.svg"
  18093. }
  18094. },
  18095. backNsfw: {
  18096. height: math.unit(19, "feet"),
  18097. weight: math.unit(800, "kg"),
  18098. name: "Back (NSFW)",
  18099. image: {
  18100. source: "./media/characters/venio-darcony/back-nsfw.svg"
  18101. }
  18102. },
  18103. sideArmored: {
  18104. height: math.unit(10, "feet"),
  18105. weight: math.unit(800, "kg"),
  18106. name: "Side (Armored)",
  18107. image: {
  18108. source: "./media/characters/venio-darcony/side-armored.svg",
  18109. extra: 1373 / 1003,
  18110. bottom: 0.037
  18111. }
  18112. },
  18113. frontArmored: {
  18114. height: math.unit(19, "feet"),
  18115. weight: math.unit(900, "kg"),
  18116. name: "Front (Armored)",
  18117. image: {
  18118. source: "./media/characters/venio-darcony/front-armored.svg"
  18119. }
  18120. },
  18121. backArmored: {
  18122. height: math.unit(19, "feet"),
  18123. weight: math.unit(900, "kg"),
  18124. name: "Back (Armored)",
  18125. image: {
  18126. source: "./media/characters/venio-darcony/back-armored.svg"
  18127. }
  18128. },
  18129. sword: {
  18130. height: math.unit(10, "feet"),
  18131. weight: math.unit(50, "lb"),
  18132. name: "Sword",
  18133. image: {
  18134. source: "./media/characters/venio-darcony/sword.svg"
  18135. }
  18136. },
  18137. },
  18138. [
  18139. {
  18140. name: "Normal",
  18141. height: math.unit(10, "feet")
  18142. },
  18143. {
  18144. name: "Macro",
  18145. height: math.unit(130, "feet"),
  18146. default: true
  18147. },
  18148. {
  18149. name: "Macro+",
  18150. height: math.unit(240, "feet")
  18151. },
  18152. ]
  18153. ))
  18154. characterMakers.push(() => makeCharacter(
  18155. { name: "Veski", species: ["shark"], tags: ["anthro"] },
  18156. {
  18157. front: {
  18158. height: math.unit(6, "feet"),
  18159. weight: math.unit(150, "lb"),
  18160. name: "Front",
  18161. image: {
  18162. source: "./media/characters/veski/front.svg",
  18163. extra: 1299 / 1225,
  18164. bottom: 0.04
  18165. }
  18166. },
  18167. back: {
  18168. height: math.unit(6, "feet"),
  18169. weight: math.unit(150, "lb"),
  18170. name: "Back",
  18171. image: {
  18172. source: "./media/characters/veski/back.svg",
  18173. extra: 1299 / 1225,
  18174. bottom: 0.008
  18175. }
  18176. },
  18177. maw: {
  18178. height: math.unit(1.5 * 1.21, "feet"),
  18179. name: "Maw",
  18180. image: {
  18181. source: "./media/characters/veski/maw.svg"
  18182. }
  18183. },
  18184. },
  18185. [
  18186. {
  18187. name: "Macro",
  18188. height: math.unit(2, "km"),
  18189. default: true
  18190. },
  18191. ]
  18192. ))
  18193. characterMakers.push(() => makeCharacter(
  18194. { name: "Isabelle", species: ["wolf"], tags: ["anthro"] },
  18195. {
  18196. front: {
  18197. height: math.unit(5 + 7 / 12, "feet"),
  18198. name: "Front",
  18199. image: {
  18200. source: "./media/characters/isabelle/front.svg",
  18201. extra: 2130 / 1976,
  18202. bottom: 0.05
  18203. }
  18204. },
  18205. },
  18206. [
  18207. {
  18208. name: "Supermicro",
  18209. height: math.unit(10, "micrometers")
  18210. },
  18211. {
  18212. name: "Micro",
  18213. height: math.unit(1, "inch")
  18214. },
  18215. {
  18216. name: "Tiny",
  18217. height: math.unit(5, "inches")
  18218. },
  18219. {
  18220. name: "Standard",
  18221. height: math.unit(5 + 7 / 12, "inches")
  18222. },
  18223. {
  18224. name: "Macro",
  18225. height: math.unit(80, "meters"),
  18226. default: true
  18227. },
  18228. {
  18229. name: "Megamacro",
  18230. height: math.unit(250, "meters")
  18231. },
  18232. {
  18233. name: "Gigamacro",
  18234. height: math.unit(5, "km")
  18235. },
  18236. {
  18237. name: "Cosmic",
  18238. height: math.unit(2.5e6, "miles")
  18239. },
  18240. ]
  18241. ))
  18242. characterMakers.push(() => makeCharacter(
  18243. { name: "Hanzo", species: ["greninja"], tags: ["anthro"] },
  18244. {
  18245. front: {
  18246. height: math.unit(6, "feet"),
  18247. weight: math.unit(150, "lb"),
  18248. name: "Front",
  18249. image: {
  18250. source: "./media/characters/hanzo/front.svg",
  18251. extra: 374 / 344,
  18252. bottom: 0.02
  18253. }
  18254. },
  18255. },
  18256. [
  18257. {
  18258. name: "Normal",
  18259. height: math.unit(8, "feet"),
  18260. default: true
  18261. },
  18262. ]
  18263. ))
  18264. characterMakers.push(() => makeCharacter(
  18265. { name: "Anna", species: ["greninja"], tags: ["anthro"] },
  18266. {
  18267. front: {
  18268. height: math.unit(7, "feet"),
  18269. weight: math.unit(130, "lb"),
  18270. name: "Front",
  18271. image: {
  18272. source: "./media/characters/anna/front.svg",
  18273. extra: 169 / 145,
  18274. bottom: 0.06
  18275. }
  18276. },
  18277. full: {
  18278. height: math.unit(4.96, "feet"),
  18279. weight: math.unit(220, "lb"),
  18280. name: "Full",
  18281. image: {
  18282. source: "./media/characters/anna/full.svg",
  18283. extra: 138 / 114,
  18284. bottom: 0.15
  18285. }
  18286. },
  18287. tongue: {
  18288. height: math.unit(2.53, "feet"),
  18289. name: "Tongue",
  18290. image: {
  18291. source: "./media/characters/anna/tongue.svg"
  18292. }
  18293. },
  18294. },
  18295. [
  18296. {
  18297. name: "Normal",
  18298. height: math.unit(7, "feet"),
  18299. default: true
  18300. },
  18301. ]
  18302. ))
  18303. characterMakers.push(() => makeCharacter(
  18304. { name: "Ian Corvid", species: ["crow"], tags: ["anthro"] },
  18305. {
  18306. front: {
  18307. height: math.unit(7, "feet"),
  18308. weight: math.unit(150, "lb"),
  18309. name: "Front",
  18310. image: {
  18311. source: "./media/characters/ian-corvid/front.svg",
  18312. extra: 150 / 142,
  18313. bottom: 0.02
  18314. }
  18315. },
  18316. back: {
  18317. height: math.unit(7, "feet"),
  18318. weight: math.unit(150, "lb"),
  18319. name: "Back",
  18320. image: {
  18321. source: "./media/characters/ian-corvid/back.svg",
  18322. extra: 150 / 143,
  18323. bottom: 0.01
  18324. }
  18325. },
  18326. stomping: {
  18327. height: math.unit(7, "feet"),
  18328. weight: math.unit(150, "lb"),
  18329. name: "Stomping",
  18330. image: {
  18331. source: "./media/characters/ian-corvid/stomping.svg",
  18332. extra: 76 / 72
  18333. }
  18334. },
  18335. sitting: {
  18336. height: math.unit(7 / 1.8, "feet"),
  18337. weight: math.unit(150, "lb"),
  18338. name: "Sitting",
  18339. image: {
  18340. source: "./media/characters/ian-corvid/sitting.svg",
  18341. extra: 1400 / 1269,
  18342. bottom: 0.15
  18343. }
  18344. },
  18345. },
  18346. [
  18347. {
  18348. name: "Tiny Microw",
  18349. height: math.unit(1, "inch")
  18350. },
  18351. {
  18352. name: "Microw",
  18353. height: math.unit(6, "inches")
  18354. },
  18355. {
  18356. name: "Crow",
  18357. height: math.unit(7 + 1 / 12, "feet"),
  18358. default: true
  18359. },
  18360. {
  18361. name: "Macrow",
  18362. height: math.unit(176, "feet")
  18363. },
  18364. ]
  18365. ))
  18366. characterMakers.push(() => makeCharacter(
  18367. { name: "Natalie Kellon", species: ["fox"], tags: ["anthro"] },
  18368. {
  18369. front: {
  18370. height: math.unit(5 + 7 / 12, "feet"),
  18371. weight: math.unit(147, "lb"),
  18372. name: "Front",
  18373. image: {
  18374. source: "./media/characters/natalie-kellon/front.svg",
  18375. extra: 1214 / 1141,
  18376. bottom: 0.02
  18377. }
  18378. },
  18379. },
  18380. [
  18381. {
  18382. name: "Micro",
  18383. height: math.unit(1 / 16, "inch")
  18384. },
  18385. {
  18386. name: "Tiny",
  18387. height: math.unit(4, "inches")
  18388. },
  18389. {
  18390. name: "Normal",
  18391. height: math.unit(5 + 7 / 12, "feet"),
  18392. default: true
  18393. },
  18394. {
  18395. name: "Amazon",
  18396. height: math.unit(12, "feet")
  18397. },
  18398. {
  18399. name: "Giantess",
  18400. height: math.unit(160, "meters")
  18401. },
  18402. {
  18403. name: "Titaness",
  18404. height: math.unit(800, "meters")
  18405. },
  18406. ]
  18407. ))
  18408. characterMakers.push(() => makeCharacter(
  18409. { name: "Alluria", species: ["megalodon"], tags: ["anthro"] },
  18410. {
  18411. front: {
  18412. height: math.unit(6, "feet"),
  18413. weight: math.unit(150, "lb"),
  18414. name: "Front",
  18415. image: {
  18416. source: "./media/characters/alluria/front.svg",
  18417. extra: 806 / 738,
  18418. bottom: 0.01
  18419. }
  18420. },
  18421. side: {
  18422. height: math.unit(6, "feet"),
  18423. weight: math.unit(150, "lb"),
  18424. name: "Side",
  18425. image: {
  18426. source: "./media/characters/alluria/side.svg",
  18427. extra: 800 / 750,
  18428. }
  18429. },
  18430. back: {
  18431. height: math.unit(6, "feet"),
  18432. weight: math.unit(150, "lb"),
  18433. name: "Back",
  18434. image: {
  18435. source: "./media/characters/alluria/back.svg",
  18436. extra: 806 / 738,
  18437. }
  18438. },
  18439. frontMaid: {
  18440. height: math.unit(6, "feet"),
  18441. weight: math.unit(150, "lb"),
  18442. name: "Front (Maid)",
  18443. image: {
  18444. source: "./media/characters/alluria/front-maid.svg",
  18445. extra: 806 / 738,
  18446. bottom: 0.01
  18447. }
  18448. },
  18449. sideMaid: {
  18450. height: math.unit(6, "feet"),
  18451. weight: math.unit(150, "lb"),
  18452. name: "Side (Maid)",
  18453. image: {
  18454. source: "./media/characters/alluria/side-maid.svg",
  18455. extra: 800 / 750,
  18456. bottom: 0.005
  18457. }
  18458. },
  18459. backMaid: {
  18460. height: math.unit(6, "feet"),
  18461. weight: math.unit(150, "lb"),
  18462. name: "Back (Maid)",
  18463. image: {
  18464. source: "./media/characters/alluria/back-maid.svg",
  18465. extra: 806 / 738,
  18466. }
  18467. },
  18468. },
  18469. [
  18470. {
  18471. name: "Micro",
  18472. height: math.unit(6, "inches"),
  18473. default: true
  18474. },
  18475. ]
  18476. ))
  18477. characterMakers.push(() => makeCharacter(
  18478. { name: "Kyle", species: ["deer"], tags: ["anthro"] },
  18479. {
  18480. front: {
  18481. height: math.unit(6, "feet"),
  18482. weight: math.unit(150, "lb"),
  18483. name: "Front",
  18484. image: {
  18485. source: "./media/characters/kyle/front.svg",
  18486. extra: 1069 / 962,
  18487. bottom: 77.228 / 1727.45
  18488. }
  18489. },
  18490. },
  18491. [
  18492. {
  18493. name: "Macro",
  18494. height: math.unit(150, "feet"),
  18495. default: true
  18496. },
  18497. ]
  18498. ))
  18499. characterMakers.push(() => makeCharacter(
  18500. { name: "Duncan", species: ["kangaroo"], tags: ["anthro"] },
  18501. {
  18502. front: {
  18503. height: math.unit(6, "feet"),
  18504. weight: math.unit(300, "lb"),
  18505. name: "Front",
  18506. image: {
  18507. source: "./media/characters/duncan/front.svg",
  18508. extra: 1650 / 1482,
  18509. bottom: 0.05
  18510. }
  18511. },
  18512. },
  18513. [
  18514. {
  18515. name: "Macro",
  18516. height: math.unit(100, "feet"),
  18517. default: true
  18518. },
  18519. ]
  18520. ))
  18521. characterMakers.push(() => makeCharacter(
  18522. { name: "Memory", species: ["sugar-glider"], tags: ["anthro"] },
  18523. {
  18524. front: {
  18525. height: math.unit(5 + 4 / 12, "feet"),
  18526. weight: math.unit(220, "lb"),
  18527. name: "Front",
  18528. image: {
  18529. source: "./media/characters/memory/front.svg",
  18530. extra: 3641 / 3545,
  18531. bottom: 0.03
  18532. }
  18533. },
  18534. back: {
  18535. height: math.unit(5 + 4 / 12, "feet"),
  18536. weight: math.unit(220, "lb"),
  18537. name: "Back",
  18538. image: {
  18539. source: "./media/characters/memory/back.svg",
  18540. extra: 3641 / 3545,
  18541. bottom: 0.025
  18542. }
  18543. },
  18544. frontSkirt: {
  18545. height: math.unit(5 + 4 / 12, "feet"),
  18546. weight: math.unit(220, "lb"),
  18547. name: "Front (Skirt)",
  18548. image: {
  18549. source: "./media/characters/memory/front-skirt.svg",
  18550. extra: 3641 / 3545,
  18551. bottom: 0.03
  18552. }
  18553. },
  18554. frontDress: {
  18555. height: math.unit(5 + 4 / 12, "feet"),
  18556. weight: math.unit(220, "lb"),
  18557. name: "Front (Dress)",
  18558. image: {
  18559. source: "./media/characters/memory/front-dress.svg",
  18560. extra: 3641 / 3545,
  18561. bottom: 0.03
  18562. }
  18563. },
  18564. },
  18565. [
  18566. {
  18567. name: "Micro",
  18568. height: math.unit(6, "inches"),
  18569. default: true
  18570. },
  18571. {
  18572. name: "Normal",
  18573. height: math.unit(5 + 4 / 12, "feet")
  18574. },
  18575. ]
  18576. ))
  18577. characterMakers.push(() => makeCharacter(
  18578. { name: "Luno", species: ["rabbit"], tags: ["anthro"] },
  18579. {
  18580. front: {
  18581. height: math.unit(4 + 11 / 12, "feet"),
  18582. weight: math.unit(100, "lb"),
  18583. name: "Front",
  18584. image: {
  18585. source: "./media/characters/luno/front.svg",
  18586. extra: 1535 / 1487,
  18587. bottom: 0.03
  18588. }
  18589. },
  18590. },
  18591. [
  18592. {
  18593. name: "Micro",
  18594. height: math.unit(3, "inches")
  18595. },
  18596. {
  18597. name: "Normal",
  18598. height: math.unit(4 + 11 / 12, "feet"),
  18599. default: true
  18600. },
  18601. {
  18602. name: "Macro",
  18603. height: math.unit(300, "feet")
  18604. },
  18605. {
  18606. name: "Megamacro",
  18607. height: math.unit(700, "miles")
  18608. },
  18609. ]
  18610. ))
  18611. characterMakers.push(() => makeCharacter(
  18612. { name: "Jamesy", species: ["deer"], tags: ["anthro"] },
  18613. {
  18614. front: {
  18615. height: math.unit(6 + 2 / 12, "feet"),
  18616. weight: math.unit(170, "lb"),
  18617. name: "Front",
  18618. image: {
  18619. source: "./media/characters/jamesy/front.svg",
  18620. extra: 440 / 382,
  18621. bottom: 0.005
  18622. }
  18623. },
  18624. },
  18625. [
  18626. {
  18627. name: "Micro",
  18628. height: math.unit(3, "inches")
  18629. },
  18630. {
  18631. name: "Normal",
  18632. height: math.unit(6 + 2 / 12, "feet"),
  18633. default: true
  18634. },
  18635. {
  18636. name: "Macro",
  18637. height: math.unit(300, "feet")
  18638. },
  18639. {
  18640. name: "Megamacro",
  18641. height: math.unit(700, "miles")
  18642. },
  18643. ]
  18644. ))
  18645. characterMakers.push(() => makeCharacter(
  18646. { name: "Mark", species: ["fox"], tags: ["anthro"] },
  18647. {
  18648. front: {
  18649. height: math.unit(6, "feet"),
  18650. weight: math.unit(160, "lb"),
  18651. name: "Front",
  18652. image: {
  18653. source: "./media/characters/mark/front.svg",
  18654. extra: 3300 / 3100,
  18655. bottom: 136.42 / 3440.47
  18656. }
  18657. },
  18658. },
  18659. [
  18660. {
  18661. name: "Macro",
  18662. height: math.unit(120, "meters")
  18663. },
  18664. {
  18665. name: "Bigger Macro",
  18666. height: math.unit(350, "meters")
  18667. },
  18668. {
  18669. name: "Megamacro",
  18670. height: math.unit(8, "km"),
  18671. default: true
  18672. },
  18673. {
  18674. name: "Continental",
  18675. height: math.unit(4550, "km")
  18676. },
  18677. {
  18678. name: "Planetary",
  18679. height: math.unit(65000, "km")
  18680. },
  18681. ]
  18682. ))
  18683. characterMakers.push(() => makeCharacter(
  18684. { name: "Mac", species: ["t-rex"], tags: ["anthro"] },
  18685. {
  18686. front: {
  18687. height: math.unit(6, "feet"),
  18688. weight: math.unit(400, "lb"),
  18689. name: "Front",
  18690. image: {
  18691. source: "./media/characters/mac/front.svg",
  18692. extra: 1048 / 987.7,
  18693. bottom: 60 / 1107.6,
  18694. }
  18695. },
  18696. },
  18697. [
  18698. {
  18699. name: "Macro",
  18700. height: math.unit(500, "feet"),
  18701. default: true
  18702. },
  18703. ]
  18704. ))
  18705. characterMakers.push(() => makeCharacter(
  18706. { name: "Bari", species: ["ampharos"], tags: ["anthro"] },
  18707. {
  18708. front: {
  18709. height: math.unit(5 + 2 / 12, "feet"),
  18710. weight: math.unit(190, "lb"),
  18711. name: "Front",
  18712. image: {
  18713. source: "./media/characters/bari/front.svg",
  18714. extra: 3156 / 2880,
  18715. bottom: 0.03
  18716. }
  18717. },
  18718. back: {
  18719. height: math.unit(5 + 2 / 12, "feet"),
  18720. weight: math.unit(190, "lb"),
  18721. name: "Back",
  18722. image: {
  18723. source: "./media/characters/bari/back.svg",
  18724. extra: 3260 / 2834,
  18725. bottom: 0.025
  18726. }
  18727. },
  18728. frontPlush: {
  18729. height: math.unit(5 + 2 / 12, "feet"),
  18730. weight: math.unit(190, "lb"),
  18731. name: "Front (Plush)",
  18732. image: {
  18733. source: "./media/characters/bari/front-plush.svg",
  18734. extra: 1112 / 1061,
  18735. bottom: 0.002
  18736. }
  18737. },
  18738. },
  18739. [
  18740. {
  18741. name: "Micro",
  18742. height: math.unit(3, "inches")
  18743. },
  18744. {
  18745. name: "Normal",
  18746. height: math.unit(5 + 2 / 12, "feet"),
  18747. default: true
  18748. },
  18749. {
  18750. name: "Macro",
  18751. height: math.unit(20, "feet")
  18752. },
  18753. ]
  18754. ))
  18755. characterMakers.push(() => makeCharacter(
  18756. { name: "Hunter Misha Raven", species: ["saint-bernard"], tags: ["anthro"] },
  18757. {
  18758. front: {
  18759. height: math.unit(6 + 1 / 12, "feet"),
  18760. weight: math.unit(275, "lb"),
  18761. name: "Front",
  18762. image: {
  18763. source: "./media/characters/hunter-misha-raven/front.svg"
  18764. }
  18765. },
  18766. },
  18767. [
  18768. {
  18769. name: "Mortal",
  18770. height: math.unit(6 + 1 / 12, "feet")
  18771. },
  18772. {
  18773. name: "Divine",
  18774. height: math.unit(1.12134e34, "parsecs"),
  18775. default: true
  18776. },
  18777. ]
  18778. ))
  18779. characterMakers.push(() => makeCharacter(
  18780. { name: "Max Calore", species: ["typhlosion"], tags: ["anthro"] },
  18781. {
  18782. front: {
  18783. height: math.unit(6 + 3 / 12, "feet"),
  18784. weight: math.unit(220, "lb"),
  18785. name: "Front",
  18786. image: {
  18787. source: "./media/characters/max-calore/front.svg",
  18788. extra: 1700 / 1648,
  18789. bottom: 0.01
  18790. }
  18791. },
  18792. back: {
  18793. height: math.unit(6 + 3 / 12, "feet"),
  18794. weight: math.unit(220, "lb"),
  18795. name: "Back",
  18796. image: {
  18797. source: "./media/characters/max-calore/back.svg",
  18798. extra: 1700 / 1648,
  18799. bottom: 0.01
  18800. }
  18801. },
  18802. },
  18803. [
  18804. {
  18805. name: "Normal",
  18806. height: math.unit(6 + 3 / 12, "feet"),
  18807. default: true
  18808. },
  18809. ]
  18810. ))
  18811. characterMakers.push(() => makeCharacter(
  18812. { name: "Aspen", species: ["mexican-wolf"], tags: ["feral"] },
  18813. {
  18814. side: {
  18815. height: math.unit(2 + 8 / 12, "feet"),
  18816. weight: math.unit(99, "lb"),
  18817. name: "Side",
  18818. image: {
  18819. source: "./media/characters/aspen/side.svg",
  18820. extra: 152 / 138,
  18821. bottom: 0.032
  18822. }
  18823. },
  18824. },
  18825. [
  18826. {
  18827. name: "Normal",
  18828. height: math.unit(2 + 8 / 12, "feet"),
  18829. default: true
  18830. },
  18831. ]
  18832. ))
  18833. characterMakers.push(() => makeCharacter(
  18834. { name: "Sheila (Feral Wolf)", species: ["wolf"], tags: ["feral"] },
  18835. {
  18836. side: {
  18837. height: math.unit(3 + 2 / 12, "feet"),
  18838. weight: math.unit(224, "lb"),
  18839. name: "Side",
  18840. image: {
  18841. source: "./media/characters/sheila-feral-wolf/side.svg",
  18842. extra: 179 / 166,
  18843. bottom: 0.03
  18844. }
  18845. },
  18846. },
  18847. [
  18848. {
  18849. name: "Normal",
  18850. height: math.unit(3 + 2 / 12, "feet"),
  18851. default: true
  18852. },
  18853. ]
  18854. ))
  18855. characterMakers.push(() => makeCharacter(
  18856. { name: "Michelle", species: ["fox"], tags: ["feral"] },
  18857. {
  18858. side: {
  18859. height: math.unit(1 + 9 / 12, "feet"),
  18860. weight: math.unit(38, "lb"),
  18861. name: "Side",
  18862. image: {
  18863. source: "./media/characters/michelle/side.svg",
  18864. extra: 147 / 136.7,
  18865. bottom: 0.03
  18866. }
  18867. },
  18868. },
  18869. [
  18870. {
  18871. name: "Normal",
  18872. height: math.unit(1 + 9 / 12, "feet"),
  18873. default: true
  18874. },
  18875. ]
  18876. ))
  18877. characterMakers.push(() => makeCharacter(
  18878. { name: "Nino", species: ["stoat"], tags: ["anthro"] },
  18879. {
  18880. front: {
  18881. height: math.unit(1.54, "feet"),
  18882. weight: math.unit(50, "lb"),
  18883. name: "Front",
  18884. image: {
  18885. source: "./media/characters/nino/front.svg"
  18886. }
  18887. },
  18888. },
  18889. [
  18890. {
  18891. name: "Normal",
  18892. height: math.unit(1.54, "feet"),
  18893. default: true
  18894. },
  18895. ]
  18896. ))
  18897. characterMakers.push(() => makeCharacter(
  18898. { name: "Viola", species: ["stoat"], tags: ["anthro"] },
  18899. {
  18900. front: {
  18901. height: math.unit(1.49, "feet"),
  18902. weight: math.unit(45, "lb"),
  18903. name: "Front",
  18904. image: {
  18905. source: "./media/characters/viola/front.svg"
  18906. }
  18907. },
  18908. },
  18909. [
  18910. {
  18911. name: "Normal",
  18912. height: math.unit(1.49, "feet"),
  18913. default: true
  18914. },
  18915. ]
  18916. ))
  18917. characterMakers.push(() => makeCharacter(
  18918. { name: "Atlas", species: ["grizzly-bear"], tags: ["anthro"] },
  18919. {
  18920. front: {
  18921. height: math.unit(6 + 5 / 12, "feet"),
  18922. weight: math.unit(580, "lb"),
  18923. name: "Front",
  18924. image: {
  18925. source: "./media/characters/atlas/front.svg",
  18926. extra: 298.5 / 290,
  18927. bottom: 0.015
  18928. }
  18929. },
  18930. },
  18931. [
  18932. {
  18933. name: "Normal",
  18934. height: math.unit(6 + 5 / 12, "feet"),
  18935. default: true
  18936. },
  18937. ]
  18938. ))
  18939. characterMakers.push(() => makeCharacter(
  18940. { name: "Davy", species: ["cat"], tags: ["feral"] },
  18941. {
  18942. side: {
  18943. height: math.unit(15.6, "inches"),
  18944. weight: math.unit(10, "lb"),
  18945. name: "Side",
  18946. image: {
  18947. source: "./media/characters/davy/side.svg",
  18948. extra: 200 / 170,
  18949. bottom: 0.01
  18950. }
  18951. },
  18952. },
  18953. [
  18954. {
  18955. name: "Normal",
  18956. height: math.unit(15.6, "inches"),
  18957. default: true
  18958. },
  18959. ]
  18960. ))
  18961. characterMakers.push(() => makeCharacter(
  18962. { name: "Fiona", species: ["deer"], tags: ["feral"] },
  18963. {
  18964. side: {
  18965. height: math.unit(4 + 8 / 12, "feet"),
  18966. weight: math.unit(166, "lb"),
  18967. name: "Side",
  18968. image: {
  18969. source: "./media/characters/fiona/side.svg",
  18970. extra: 232 / 220,
  18971. bottom: 0.03
  18972. }
  18973. },
  18974. },
  18975. [
  18976. {
  18977. name: "Normal",
  18978. height: math.unit(4 + 8 / 12, "feet"),
  18979. default: true
  18980. },
  18981. ]
  18982. ))
  18983. characterMakers.push(() => makeCharacter(
  18984. { name: "Lyla", species: ["european-honey-buzzard"], tags: ["feral"] },
  18985. {
  18986. front: {
  18987. height: math.unit(26, "inches"),
  18988. weight: math.unit(35, "lb"),
  18989. name: "Front",
  18990. image: {
  18991. source: "./media/characters/lyla/front.svg",
  18992. bottom: 0.1
  18993. }
  18994. },
  18995. },
  18996. [
  18997. {
  18998. name: "Normal",
  18999. height: math.unit(3, "feet"),
  19000. default: true
  19001. },
  19002. ]
  19003. ))
  19004. characterMakers.push(() => makeCharacter(
  19005. { name: "Perseus", species: ["monitor-lizard"], tags: ["feral"] },
  19006. {
  19007. side: {
  19008. height: math.unit(1.8, "feet"),
  19009. weight: math.unit(44, "lb"),
  19010. name: "Side",
  19011. image: {
  19012. source: "./media/characters/perseus/side.svg",
  19013. bottom: 0.21
  19014. }
  19015. },
  19016. },
  19017. [
  19018. {
  19019. name: "Normal",
  19020. height: math.unit(1.8, "feet"),
  19021. default: true
  19022. },
  19023. ]
  19024. ))
  19025. characterMakers.push(() => makeCharacter(
  19026. { name: "Remus", species: ["great-blue-heron"], tags: ["feral"] },
  19027. {
  19028. side: {
  19029. height: math.unit(4 + 2 / 12, "feet"),
  19030. weight: math.unit(20, "lb"),
  19031. name: "Side",
  19032. image: {
  19033. source: "./media/characters/remus/side.svg"
  19034. }
  19035. },
  19036. },
  19037. [
  19038. {
  19039. name: "Normal",
  19040. height: math.unit(4 + 2 / 12, "feet"),
  19041. default: true
  19042. },
  19043. ]
  19044. ))
  19045. characterMakers.push(() => makeCharacter(
  19046. { name: "Raf", species: ["maned-wolf"], tags: ["anthro"] },
  19047. {
  19048. front: {
  19049. height: math.unit(4 + 11 / 12, "feet"),
  19050. weight: math.unit(114, "lb"),
  19051. name: "Front",
  19052. image: {
  19053. source: "./media/characters/raf/front.svg",
  19054. extra: 1504/1339,
  19055. bottom: 26/1530
  19056. }
  19057. },
  19058. side: {
  19059. height: math.unit(4 + 11 / 12, "feet"),
  19060. weight: math.unit(114, "lb"),
  19061. name: "Side",
  19062. image: {
  19063. source: "./media/characters/raf/side.svg",
  19064. extra: 1466/1316,
  19065. bottom: 29/1495
  19066. }
  19067. },
  19068. paw: {
  19069. height: math.unit(1.45, "feet"),
  19070. name: "Paw",
  19071. image: {
  19072. source: "./media/characters/raf/paw.svg"
  19073. },
  19074. extraAttributes: {
  19075. "toeSize": {
  19076. name: "Toe Size",
  19077. power: 2,
  19078. type: "area",
  19079. base: math.unit(0.004, "m^2")
  19080. },
  19081. "padSize": {
  19082. name: "Pad Size",
  19083. power: 2,
  19084. type: "area",
  19085. base: math.unit(0.04, "m^2")
  19086. },
  19087. "footSize": {
  19088. name: "Foot Size",
  19089. power: 2,
  19090. type: "area",
  19091. base: math.unit(0.08, "m^2")
  19092. },
  19093. }
  19094. },
  19095. },
  19096. [
  19097. {
  19098. name: "Micro",
  19099. height: math.unit(2, "inches")
  19100. },
  19101. {
  19102. name: "Normal",
  19103. height: math.unit(4 + 11 / 12, "feet"),
  19104. default: true
  19105. },
  19106. {
  19107. name: "Macro",
  19108. height: math.unit(70, "feet")
  19109. },
  19110. ]
  19111. ))
  19112. characterMakers.push(() => makeCharacter(
  19113. { name: "Liam Einarr", species: ["gray-wolf"], tags: ["anthro"] },
  19114. {
  19115. front: {
  19116. height: math.unit(1.5, "meters"),
  19117. weight: math.unit(68, "kg"),
  19118. name: "Front",
  19119. image: {
  19120. source: "./media/characters/liam-einarr/front.svg",
  19121. extra: 2822 / 2666
  19122. }
  19123. },
  19124. back: {
  19125. height: math.unit(1.5, "meters"),
  19126. weight: math.unit(68, "kg"),
  19127. name: "Back",
  19128. image: {
  19129. source: "./media/characters/liam-einarr/back.svg",
  19130. extra: 2822 / 2666,
  19131. bottom: 0.015
  19132. }
  19133. },
  19134. },
  19135. [
  19136. {
  19137. name: "Normal",
  19138. height: math.unit(1.5, "meters"),
  19139. default: true
  19140. },
  19141. {
  19142. name: "Macro",
  19143. height: math.unit(150, "meters")
  19144. },
  19145. {
  19146. name: "Megamacro",
  19147. height: math.unit(35, "km")
  19148. },
  19149. ]
  19150. ))
  19151. characterMakers.push(() => makeCharacter(
  19152. { name: "Linda", species: ["bull-terrier"], tags: ["anthro"] },
  19153. {
  19154. front: {
  19155. height: math.unit(6, "feet"),
  19156. weight: math.unit(75, "kg"),
  19157. name: "Front",
  19158. image: {
  19159. source: "./media/characters/linda/front.svg",
  19160. extra: 930 / 874,
  19161. bottom: 0.004
  19162. }
  19163. },
  19164. },
  19165. [
  19166. {
  19167. name: "Normal",
  19168. height: math.unit(6, "feet"),
  19169. default: true
  19170. },
  19171. ]
  19172. ))
  19173. characterMakers.push(() => makeCharacter(
  19174. { name: "Caylex", species: ["sergal"], tags: ["anthro"] },
  19175. {
  19176. front: {
  19177. height: math.unit(6 + 8 / 12, "feet"),
  19178. weight: math.unit(220, "lb"),
  19179. name: "Front",
  19180. image: {
  19181. source: "./media/characters/caylex/front.svg",
  19182. extra: 821 / 772,
  19183. bottom: 0.07
  19184. }
  19185. },
  19186. back: {
  19187. height: math.unit(6 + 8 / 12, "feet"),
  19188. weight: math.unit(220, "lb"),
  19189. name: "Back",
  19190. image: {
  19191. source: "./media/characters/caylex/back.svg",
  19192. extra: 821 / 772,
  19193. bottom: 0.022
  19194. }
  19195. },
  19196. hand: {
  19197. height: math.unit(1.25, "feet"),
  19198. name: "Hand",
  19199. image: {
  19200. source: "./media/characters/caylex/hand.svg"
  19201. }
  19202. },
  19203. foot: {
  19204. height: math.unit(1.6, "feet"),
  19205. name: "Foot",
  19206. image: {
  19207. source: "./media/characters/caylex/foot.svg"
  19208. }
  19209. },
  19210. armored: {
  19211. height: math.unit(6 + 8 / 12, "feet"),
  19212. weight: math.unit(250, "lb"),
  19213. name: "Armored",
  19214. image: {
  19215. source: "./media/characters/caylex/armored.svg",
  19216. extra: 1420 / 1310,
  19217. bottom: 0.045
  19218. }
  19219. },
  19220. },
  19221. [
  19222. {
  19223. name: "Normal",
  19224. height: math.unit(6 + 8 / 12, "feet"),
  19225. default: true
  19226. },
  19227. {
  19228. name: "Normal+",
  19229. height: math.unit(12, "feet")
  19230. },
  19231. ]
  19232. ))
  19233. characterMakers.push(() => makeCharacter(
  19234. { name: "Alana", species: ["wolf"], tags: ["anthro"] },
  19235. {
  19236. front: {
  19237. height: math.unit(7 + 6 / 12, "feet"),
  19238. weight: math.unit(288, "lb"),
  19239. name: "Front",
  19240. image: {
  19241. source: "./media/characters/alana/front.svg",
  19242. extra: 679 / 653,
  19243. bottom: 22.5 / 701
  19244. }
  19245. },
  19246. },
  19247. [
  19248. {
  19249. name: "Normal",
  19250. height: math.unit(7 + 6 / 12, "feet")
  19251. },
  19252. {
  19253. name: "Large",
  19254. height: math.unit(50, "feet")
  19255. },
  19256. {
  19257. name: "Macro",
  19258. height: math.unit(100, "feet"),
  19259. default: true
  19260. },
  19261. {
  19262. name: "Macro+",
  19263. height: math.unit(200, "feet")
  19264. },
  19265. ]
  19266. ))
  19267. characterMakers.push(() => makeCharacter(
  19268. { name: "Hasani", species: ["hyena"], tags: ["anthro"] },
  19269. {
  19270. front: {
  19271. height: math.unit(6 + 1 / 12, "feet"),
  19272. weight: math.unit(210, "lb"),
  19273. name: "Front",
  19274. image: {
  19275. source: "./media/characters/hasani/front.svg",
  19276. extra: 244 / 232,
  19277. bottom: 0.01
  19278. }
  19279. },
  19280. back: {
  19281. height: math.unit(6 + 1 / 12, "feet"),
  19282. weight: math.unit(210, "lb"),
  19283. name: "Back",
  19284. image: {
  19285. source: "./media/characters/hasani/back.svg",
  19286. extra: 244 / 232,
  19287. bottom: 0.01
  19288. }
  19289. },
  19290. },
  19291. [
  19292. {
  19293. name: "Normal",
  19294. height: math.unit(6 + 1 / 12, "feet")
  19295. },
  19296. {
  19297. name: "Macro",
  19298. height: math.unit(175, "feet"),
  19299. default: true
  19300. },
  19301. ]
  19302. ))
  19303. characterMakers.push(() => makeCharacter(
  19304. { name: "Nita", species: ["african-golden-cat"], tags: ["anthro"] },
  19305. {
  19306. front: {
  19307. height: math.unit(1.82, "meters"),
  19308. weight: math.unit(140, "lb"),
  19309. name: "Front",
  19310. image: {
  19311. source: "./media/characters/nita/front.svg",
  19312. extra: 2473 / 2363,
  19313. bottom: 0.01
  19314. }
  19315. },
  19316. },
  19317. [
  19318. {
  19319. name: "Normal",
  19320. height: math.unit(1.82, "m")
  19321. },
  19322. {
  19323. name: "Macro",
  19324. height: math.unit(300, "m")
  19325. },
  19326. {
  19327. name: "Mistake Canon",
  19328. height: math.unit(0.5, "miles"),
  19329. default: true
  19330. },
  19331. {
  19332. name: "Big Mistake",
  19333. height: math.unit(13, "miles")
  19334. },
  19335. {
  19336. name: "Playing God",
  19337. height: math.unit(2450, "miles")
  19338. },
  19339. ]
  19340. ))
  19341. characterMakers.push(() => makeCharacter(
  19342. { name: "Shiriko", species: ["kobold"], tags: ["anthro"] },
  19343. {
  19344. front: {
  19345. height: math.unit(4, "feet"),
  19346. weight: math.unit(120, "lb"),
  19347. name: "Front",
  19348. image: {
  19349. source: "./media/characters/shiriko/front.svg",
  19350. extra: 970/934,
  19351. bottom: 5/975
  19352. }
  19353. },
  19354. },
  19355. [
  19356. {
  19357. name: "Normal",
  19358. height: math.unit(4, "feet"),
  19359. default: true
  19360. },
  19361. ]
  19362. ))
  19363. characterMakers.push(() => makeCharacter(
  19364. { name: "Deja", species: ["kangaroo"], tags: ["anthro"] },
  19365. {
  19366. front: {
  19367. height: math.unit(6, "feet"),
  19368. name: "front",
  19369. image: {
  19370. source: "./media/characters/deja/front.svg",
  19371. extra: 926 / 840,
  19372. bottom: 0.07
  19373. }
  19374. },
  19375. },
  19376. [
  19377. {
  19378. name: "Planck Length",
  19379. height: math.unit(1.6e-35, "meters")
  19380. },
  19381. {
  19382. name: "Normal",
  19383. height: math.unit(30.48, "meters"),
  19384. default: true
  19385. },
  19386. {
  19387. name: "Universal",
  19388. height: math.unit(8.8e26, "meters")
  19389. },
  19390. ]
  19391. ))
  19392. characterMakers.push(() => makeCharacter(
  19393. { name: "Anima", species: ["black-panther"], tags: ["anthro"] },
  19394. {
  19395. side: {
  19396. height: math.unit(8, "feet"),
  19397. weight: math.unit(6300, "lb"),
  19398. name: "Side",
  19399. image: {
  19400. source: "./media/characters/anima/side.svg",
  19401. bottom: 0.035
  19402. }
  19403. },
  19404. },
  19405. [
  19406. {
  19407. name: "Normal",
  19408. height: math.unit(8, "feet"),
  19409. default: true
  19410. },
  19411. ]
  19412. ))
  19413. characterMakers.push(() => makeCharacter(
  19414. { name: "Bianca", species: ["cat", "rabbit"], tags: ["anthro"] },
  19415. {
  19416. front: {
  19417. height: math.unit(8, "feet"),
  19418. weight: math.unit(350, "lb"),
  19419. name: "Front",
  19420. image: {
  19421. source: "./media/characters/bianca/front.svg",
  19422. extra: 234 / 225,
  19423. bottom: 0.03
  19424. }
  19425. },
  19426. },
  19427. [
  19428. {
  19429. name: "Normal",
  19430. height: math.unit(8, "feet"),
  19431. default: true
  19432. },
  19433. ]
  19434. ))
  19435. characterMakers.push(() => makeCharacter(
  19436. { name: "Adinia", species: ["kelpie", "nykur"], tags: ["anthro"] },
  19437. {
  19438. front: {
  19439. height: math.unit(11 + 5/12, "feet"),
  19440. weight: math.unit(1200, "lb"),
  19441. name: "Front",
  19442. image: {
  19443. source: "./media/characters/adinia/front.svg",
  19444. extra: 1767/1641,
  19445. bottom: 44/1811
  19446. },
  19447. extraAttributes: {
  19448. "energyIntake": {
  19449. name: "Energy Intake",
  19450. power: 3,
  19451. type: "energy",
  19452. base: math.unit(2000 * 5 * 1200 / 150, "kcal")
  19453. },
  19454. }
  19455. },
  19456. back: {
  19457. height: math.unit(11 + 5/12, "feet"),
  19458. weight: math.unit(1200, "lb"),
  19459. name: "Back",
  19460. image: {
  19461. source: "./media/characters/adinia/back.svg",
  19462. extra: 1834/1684,
  19463. bottom: 14/1848
  19464. },
  19465. extraAttributes: {
  19466. "energyIntake": {
  19467. name: "Energy Intake",
  19468. power: 3,
  19469. type: "energy",
  19470. base: math.unit(2000 * 5 * 1200 / 150, "kcal")
  19471. },
  19472. }
  19473. },
  19474. maw: {
  19475. height: math.unit(3.79, "feet"),
  19476. name: "Maw",
  19477. image: {
  19478. source: "./media/characters/adinia/maw.svg"
  19479. }
  19480. },
  19481. rump: {
  19482. height: math.unit(4.6, "feet"),
  19483. name: "Rump",
  19484. image: {
  19485. source: "./media/characters/adinia/rump.svg"
  19486. }
  19487. },
  19488. },
  19489. [
  19490. {
  19491. name: "Normal",
  19492. height: math.unit(11 + 5 / 12, "feet"),
  19493. default: true
  19494. },
  19495. ]
  19496. ))
  19497. characterMakers.push(() => makeCharacter(
  19498. { name: "Lykasa", species: ["monster"], tags: ["anthro"] },
  19499. {
  19500. front: {
  19501. height: math.unit(3, "meters"),
  19502. weight: math.unit(200, "kg"),
  19503. name: "Front",
  19504. image: {
  19505. source: "./media/characters/lykasa/front.svg",
  19506. extra: 1076 / 976,
  19507. bottom: 0.06
  19508. }
  19509. },
  19510. },
  19511. [
  19512. {
  19513. name: "Normal",
  19514. height: math.unit(3, "meters")
  19515. },
  19516. {
  19517. name: "Kaiju",
  19518. height: math.unit(120, "meters"),
  19519. default: true
  19520. },
  19521. {
  19522. name: "Mega Kaiju",
  19523. height: math.unit(240, "km")
  19524. },
  19525. {
  19526. name: "Giga Kaiju",
  19527. height: math.unit(400, "megameters")
  19528. },
  19529. {
  19530. name: "Tera Kaiju",
  19531. height: math.unit(800, "gigameters")
  19532. },
  19533. {
  19534. name: "Kaiju Dragon Goddess",
  19535. height: math.unit(26, "zettaparsecs")
  19536. },
  19537. ]
  19538. ))
  19539. characterMakers.push(() => makeCharacter(
  19540. { name: "Malfaren", species: ["dragon"], tags: ["feral"] },
  19541. {
  19542. side: {
  19543. height: math.unit(283 / 124 * 6, "feet"),
  19544. weight: math.unit(35000, "lb"),
  19545. name: "Side",
  19546. image: {
  19547. source: "./media/characters/malfaren/side.svg",
  19548. extra: 1310/529,
  19549. bottom: 24/1334
  19550. }
  19551. },
  19552. front: {
  19553. height: math.unit(22.36, "feet"),
  19554. weight: math.unit(35000, "lb"),
  19555. name: "Front",
  19556. image: {
  19557. source: "./media/characters/malfaren/front.svg",
  19558. extra: 1237/1115,
  19559. bottom: 32/1269
  19560. }
  19561. },
  19562. maw: {
  19563. height: math.unit(6.9, "feet"),
  19564. name: "Maw",
  19565. image: {
  19566. source: "./media/characters/malfaren/maw.svg"
  19567. }
  19568. },
  19569. dick: {
  19570. height: math.unit(6.19, "feet"),
  19571. name: "Dick",
  19572. image: {
  19573. source: "./media/characters/malfaren/dick.svg"
  19574. }
  19575. },
  19576. eye: {
  19577. height: math.unit(0.69, "feet"),
  19578. name: "Eye",
  19579. image: {
  19580. source: "./media/characters/malfaren/eye.svg"
  19581. }
  19582. },
  19583. },
  19584. [
  19585. {
  19586. name: "Big",
  19587. height: math.unit(283 / 162 * 6, "feet"),
  19588. },
  19589. {
  19590. name: "Bigger",
  19591. height: math.unit(283 / 124 * 6, "feet")
  19592. },
  19593. {
  19594. name: "Massive",
  19595. height: math.unit(283 / 92 * 6, "feet"),
  19596. default: true
  19597. },
  19598. {
  19599. name: "👀💦",
  19600. height: math.unit(283 / 73 * 6, "feet"),
  19601. },
  19602. ]
  19603. ))
  19604. characterMakers.push(() => makeCharacter(
  19605. { name: "Kernel", species: ["wolf"], tags: ["anthro"] },
  19606. {
  19607. front: {
  19608. height: math.unit(1.7, "m"),
  19609. weight: math.unit(70, "kg"),
  19610. name: "Front",
  19611. image: {
  19612. source: "./media/characters/kernel/front.svg",
  19613. extra: 222 / 210,
  19614. bottom: 0.007
  19615. }
  19616. },
  19617. },
  19618. [
  19619. {
  19620. name: "Nano",
  19621. height: math.unit(17, "micrometers")
  19622. },
  19623. {
  19624. name: "Micro",
  19625. height: math.unit(1.7, "mm")
  19626. },
  19627. {
  19628. name: "Small",
  19629. height: math.unit(1.7, "cm")
  19630. },
  19631. {
  19632. name: "Normal",
  19633. height: math.unit(1.7, "m"),
  19634. default: true
  19635. },
  19636. ]
  19637. ))
  19638. characterMakers.push(() => makeCharacter(
  19639. { name: "Jayne Folest", species: ["fox"], tags: ["anthro"] },
  19640. {
  19641. front: {
  19642. height: math.unit(1.75, "meters"),
  19643. weight: math.unit(65, "kg"),
  19644. name: "Front",
  19645. image: {
  19646. source: "./media/characters/jayne-folest/front.svg",
  19647. extra: 2115 / 2007,
  19648. bottom: 0.02
  19649. }
  19650. },
  19651. back: {
  19652. height: math.unit(1.75, "meters"),
  19653. weight: math.unit(65, "kg"),
  19654. name: "Back",
  19655. image: {
  19656. source: "./media/characters/jayne-folest/back.svg",
  19657. extra: 2115 / 2007,
  19658. bottom: 0.005
  19659. }
  19660. },
  19661. frontClothed: {
  19662. height: math.unit(1.75, "meters"),
  19663. weight: math.unit(65, "kg"),
  19664. name: "Front (Clothed)",
  19665. image: {
  19666. source: "./media/characters/jayne-folest/front-clothed.svg",
  19667. extra: 2115 / 2007,
  19668. bottom: 0.035
  19669. }
  19670. },
  19671. hand: {
  19672. height: math.unit(1 / 1.260, "feet"),
  19673. name: "Hand",
  19674. image: {
  19675. source: "./media/characters/jayne-folest/hand.svg"
  19676. }
  19677. },
  19678. foot: {
  19679. height: math.unit(1 / 0.918, "feet"),
  19680. name: "Foot",
  19681. image: {
  19682. source: "./media/characters/jayne-folest/foot.svg"
  19683. }
  19684. },
  19685. },
  19686. [
  19687. {
  19688. name: "Micro",
  19689. height: math.unit(4, "cm")
  19690. },
  19691. {
  19692. name: "Normal",
  19693. height: math.unit(1.75, "meters")
  19694. },
  19695. {
  19696. name: "Macro",
  19697. height: math.unit(47.5, "meters"),
  19698. default: true
  19699. },
  19700. ]
  19701. ))
  19702. characterMakers.push(() => makeCharacter(
  19703. { name: "Algier", species: ["mouse"], tags: ["anthro"] },
  19704. {
  19705. front: {
  19706. height: math.unit(180, "cm"),
  19707. weight: math.unit(70, "kg"),
  19708. name: "Front",
  19709. image: {
  19710. source: "./media/characters/algier/front.svg",
  19711. extra: 596 / 572,
  19712. bottom: 0.04
  19713. }
  19714. },
  19715. back: {
  19716. height: math.unit(180, "cm"),
  19717. weight: math.unit(70, "kg"),
  19718. name: "Back",
  19719. image: {
  19720. source: "./media/characters/algier/back.svg",
  19721. extra: 596 / 572,
  19722. bottom: 0.025
  19723. }
  19724. },
  19725. frontdressed: {
  19726. height: math.unit(180, "cm"),
  19727. weight: math.unit(150, "kg"),
  19728. name: "Front-dressed",
  19729. image: {
  19730. source: "./media/characters/algier/front-dressed.svg",
  19731. extra: 596 / 572,
  19732. bottom: 0.038
  19733. }
  19734. },
  19735. },
  19736. [
  19737. {
  19738. name: "Micro",
  19739. height: math.unit(5, "cm")
  19740. },
  19741. {
  19742. name: "Normal",
  19743. height: math.unit(180, "cm"),
  19744. default: true
  19745. },
  19746. {
  19747. name: "Macro",
  19748. height: math.unit(64, "m")
  19749. },
  19750. ]
  19751. ))
  19752. characterMakers.push(() => makeCharacter(
  19753. { name: "Pretzel", species: ["synx"], tags: ["anthro"] },
  19754. {
  19755. upright: {
  19756. height: math.unit(7, "feet"),
  19757. weight: math.unit(300, "lb"),
  19758. name: "Upright",
  19759. image: {
  19760. source: "./media/characters/pretzel/upright.svg",
  19761. extra: 534 / 522,
  19762. bottom: 0.065
  19763. }
  19764. },
  19765. sprawling: {
  19766. height: math.unit(3.75, "feet"),
  19767. weight: math.unit(300, "lb"),
  19768. name: "Sprawling",
  19769. image: {
  19770. source: "./media/characters/pretzel/sprawling.svg",
  19771. extra: 314 / 281,
  19772. bottom: 0.1
  19773. }
  19774. },
  19775. tongue: {
  19776. height: math.unit(2, "feet"),
  19777. name: "Tongue",
  19778. image: {
  19779. source: "./media/characters/pretzel/tongue.svg"
  19780. }
  19781. },
  19782. },
  19783. [
  19784. {
  19785. name: "Normal",
  19786. height: math.unit(7, "feet"),
  19787. default: true
  19788. },
  19789. {
  19790. name: "Oversized",
  19791. height: math.unit(15, "feet")
  19792. },
  19793. {
  19794. name: "Huge",
  19795. height: math.unit(30, "feet")
  19796. },
  19797. {
  19798. name: "Macro",
  19799. height: math.unit(250, "feet")
  19800. },
  19801. ]
  19802. ))
  19803. characterMakers.push(() => makeCharacter(
  19804. { name: "Roxi", species: ["fox"], tags: ["anthro", "feral"] },
  19805. {
  19806. sideFront: {
  19807. height: math.unit(5 + 2 / 12, "feet"),
  19808. weight: math.unit(120, "lb"),
  19809. name: "Front Side",
  19810. image: {
  19811. source: "./media/characters/roxi/side-front.svg",
  19812. extra: 2924 / 2717,
  19813. bottom: 0.08
  19814. }
  19815. },
  19816. sideBack: {
  19817. height: math.unit(5 + 2 / 12, "feet"),
  19818. weight: math.unit(120, "lb"),
  19819. name: "Back Side",
  19820. image: {
  19821. source: "./media/characters/roxi/side-back.svg",
  19822. extra: 2904 / 2693,
  19823. bottom: 0.06
  19824. }
  19825. },
  19826. front: {
  19827. height: math.unit(5 + 2 / 12, "feet"),
  19828. weight: math.unit(120, "lb"),
  19829. name: "Front",
  19830. image: {
  19831. source: "./media/characters/roxi/front.svg",
  19832. extra: 2028 / 1907,
  19833. bottom: 0.01
  19834. }
  19835. },
  19836. frontAlt: {
  19837. height: math.unit(5 + 2 / 12, "feet"),
  19838. weight: math.unit(120, "lb"),
  19839. name: "Front (Alt)",
  19840. image: {
  19841. source: "./media/characters/roxi/front-alt.svg",
  19842. extra: 1828 / 1798,
  19843. bottom: 0.01
  19844. }
  19845. },
  19846. sitting: {
  19847. height: math.unit(2.8, "feet"),
  19848. weight: math.unit(120, "lb"),
  19849. name: "Sitting",
  19850. image: {
  19851. source: "./media/characters/roxi/sitting.svg",
  19852. extra: 2660 / 2462,
  19853. bottom: 0.1
  19854. }
  19855. },
  19856. },
  19857. [
  19858. {
  19859. name: "Normal",
  19860. height: math.unit(5 + 2 / 12, "feet"),
  19861. default: true
  19862. },
  19863. ]
  19864. ))
  19865. characterMakers.push(() => makeCharacter(
  19866. { name: "Shadow", species: ["dragon"], tags: ["feral"] },
  19867. {
  19868. side: {
  19869. height: math.unit(55, "feet"),
  19870. weight: math.unit(153, "tons"),
  19871. name: "Side",
  19872. image: {
  19873. source: "./media/characters/shadow/side.svg",
  19874. extra: 701 / 628,
  19875. bottom: 0.02
  19876. }
  19877. },
  19878. flying: {
  19879. height: math.unit(145, "feet"),
  19880. weight: math.unit(153, "tons"),
  19881. name: "Flying",
  19882. image: {
  19883. source: "./media/characters/shadow/flying.svg"
  19884. }
  19885. },
  19886. },
  19887. [
  19888. {
  19889. name: "Normal",
  19890. height: math.unit(55, "feet"),
  19891. default: true
  19892. },
  19893. ]
  19894. ))
  19895. characterMakers.push(() => makeCharacter(
  19896. { name: "Marcie", species: ["kangaroo"], tags: ["anthro"] },
  19897. {
  19898. front: {
  19899. height: math.unit(6, "feet"),
  19900. weight: math.unit(200, "lb"),
  19901. name: "Front",
  19902. image: {
  19903. source: "./media/characters/marcie/front.svg",
  19904. extra: 960 / 876,
  19905. bottom: 58 / 1017.87
  19906. }
  19907. },
  19908. },
  19909. [
  19910. {
  19911. name: "Macro",
  19912. height: math.unit(1, "mile"),
  19913. default: true
  19914. },
  19915. ]
  19916. ))
  19917. characterMakers.push(() => makeCharacter(
  19918. { name: "Kachina", species: ["wolf"], tags: ["anthro"] },
  19919. {
  19920. front: {
  19921. height: math.unit(7, "feet"),
  19922. weight: math.unit(200, "lb"),
  19923. name: "Front",
  19924. image: {
  19925. source: "./media/characters/kachina/front.svg",
  19926. extra: 1290.68 / 1119,
  19927. bottom: 36.5 / 1327.18
  19928. }
  19929. },
  19930. },
  19931. [
  19932. {
  19933. name: "Normal",
  19934. height: math.unit(7, "feet"),
  19935. default: true
  19936. },
  19937. ]
  19938. ))
  19939. characterMakers.push(() => makeCharacter(
  19940. { name: "Kash", species: ["canine"], tags: ["feral"] },
  19941. {
  19942. looking: {
  19943. height: math.unit(2, "meters"),
  19944. weight: math.unit(300, "kg"),
  19945. name: "Looking",
  19946. image: {
  19947. source: "./media/characters/kash/looking.svg",
  19948. extra: 474 / 344,
  19949. bottom: 0.03
  19950. }
  19951. },
  19952. side: {
  19953. height: math.unit(2, "meters"),
  19954. weight: math.unit(300, "kg"),
  19955. name: "Side",
  19956. image: {
  19957. source: "./media/characters/kash/side.svg",
  19958. extra: 302 / 251,
  19959. bottom: 0.03
  19960. }
  19961. },
  19962. front: {
  19963. height: math.unit(2, "meters"),
  19964. weight: math.unit(300, "kg"),
  19965. name: "Front",
  19966. image: {
  19967. source: "./media/characters/kash/front.svg",
  19968. extra: 495 / 360,
  19969. bottom: 0.015
  19970. }
  19971. },
  19972. },
  19973. [
  19974. {
  19975. name: "Normal",
  19976. height: math.unit(2, "meters"),
  19977. default: true
  19978. },
  19979. {
  19980. name: "Big",
  19981. height: math.unit(3, "meters")
  19982. },
  19983. {
  19984. name: "Large",
  19985. height: math.unit(5, "meters")
  19986. },
  19987. ]
  19988. ))
  19989. characterMakers.push(() => makeCharacter(
  19990. { name: "Lalim", species: ["dragon"], tags: ["feral"] },
  19991. {
  19992. feeding: {
  19993. height: math.unit(6.7, "feet"),
  19994. weight: math.unit(350, "lb"),
  19995. name: "Feeding",
  19996. image: {
  19997. source: "./media/characters/lalim/feeding.svg",
  19998. }
  19999. },
  20000. },
  20001. [
  20002. {
  20003. name: "Normal",
  20004. height: math.unit(6.7, "feet"),
  20005. default: true
  20006. },
  20007. ]
  20008. ))
  20009. characterMakers.push(() => makeCharacter(
  20010. { name: "De'Vout", species: ["dragon"], tags: ["anthro"] },
  20011. {
  20012. front: {
  20013. height: math.unit(9.5, "feet"),
  20014. weight: math.unit(600, "lb"),
  20015. name: "Front",
  20016. image: {
  20017. source: "./media/characters/de'vout/front.svg",
  20018. extra: 1443 / 1328,
  20019. bottom: 0.025
  20020. }
  20021. },
  20022. back: {
  20023. height: math.unit(9.5, "feet"),
  20024. weight: math.unit(600, "lb"),
  20025. name: "Back",
  20026. image: {
  20027. source: "./media/characters/de'vout/back.svg",
  20028. extra: 1443 / 1328
  20029. }
  20030. },
  20031. frontDressed: {
  20032. height: math.unit(9.5, "feet"),
  20033. weight: math.unit(600, "lb"),
  20034. name: "Front (Dressed",
  20035. image: {
  20036. source: "./media/characters/de'vout/front-dressed.svg",
  20037. extra: 1443 / 1328,
  20038. bottom: 0.025
  20039. }
  20040. },
  20041. backDressed: {
  20042. height: math.unit(9.5, "feet"),
  20043. weight: math.unit(600, "lb"),
  20044. name: "Back (Dressed",
  20045. image: {
  20046. source: "./media/characters/de'vout/back-dressed.svg",
  20047. extra: 1443 / 1328
  20048. }
  20049. },
  20050. },
  20051. [
  20052. {
  20053. name: "Normal",
  20054. height: math.unit(9.5, "feet"),
  20055. default: true
  20056. },
  20057. ]
  20058. ))
  20059. characterMakers.push(() => makeCharacter(
  20060. { name: "Talana", species: ["dragon"], tags: ["anthro"] },
  20061. {
  20062. front: {
  20063. height: math.unit(8, "feet"),
  20064. weight: math.unit(225, "lb"),
  20065. name: "Front",
  20066. image: {
  20067. source: "./media/characters/talana/front.svg",
  20068. extra: 1410 / 1300,
  20069. bottom: 0.015
  20070. }
  20071. },
  20072. frontDressed: {
  20073. height: math.unit(8, "feet"),
  20074. weight: math.unit(225, "lb"),
  20075. name: "Front (Dressed",
  20076. image: {
  20077. source: "./media/characters/talana/front-dressed.svg",
  20078. extra: 1410 / 1300,
  20079. bottom: 0.015
  20080. }
  20081. },
  20082. },
  20083. [
  20084. {
  20085. name: "Normal",
  20086. height: math.unit(8, "feet"),
  20087. default: true
  20088. },
  20089. ]
  20090. ))
  20091. characterMakers.push(() => makeCharacter(
  20092. { name: "Xeauvok", species: ["monster"], tags: ["anthro"] },
  20093. {
  20094. side: {
  20095. height: math.unit(7.2, "feet"),
  20096. weight: math.unit(150, "lb"),
  20097. name: "Side",
  20098. image: {
  20099. source: "./media/characters/xeauvok/side.svg",
  20100. extra: 1975 / 1523,
  20101. bottom: 0.07
  20102. }
  20103. },
  20104. },
  20105. [
  20106. {
  20107. name: "Normal",
  20108. height: math.unit(7.2, "feet"),
  20109. default: true
  20110. },
  20111. ]
  20112. ))
  20113. characterMakers.push(() => makeCharacter(
  20114. { name: "Zara", species: ["human", "horse"], tags: ["taur"] },
  20115. {
  20116. side: {
  20117. height: math.unit(4, "meters"),
  20118. weight: math.unit(2200, "kg"),
  20119. name: "Side",
  20120. image: {
  20121. source: "./media/characters/zara/side.svg",
  20122. extra: 765/744,
  20123. bottom: 156/921
  20124. }
  20125. },
  20126. },
  20127. [
  20128. {
  20129. name: "Normal",
  20130. height: math.unit(4, "meters"),
  20131. default: true
  20132. },
  20133. ]
  20134. ))
  20135. characterMakers.push(() => makeCharacter(
  20136. { name: "Richard (Dragon)", species: ["dragon"], tags: ["feral"] },
  20137. {
  20138. side: {
  20139. height: math.unit(6, "feet"),
  20140. weight: math.unit(150, "lb"),
  20141. name: "Side",
  20142. image: {
  20143. source: "./media/characters/richard-dragon/side.svg",
  20144. extra: 845 / 340,
  20145. bottom: 0.017
  20146. }
  20147. },
  20148. maw: {
  20149. height: math.unit(2.97, "feet"),
  20150. name: "Maw",
  20151. image: {
  20152. source: "./media/characters/richard-dragon/maw.svg"
  20153. }
  20154. },
  20155. },
  20156. [
  20157. ]
  20158. ))
  20159. characterMakers.push(() => makeCharacter(
  20160. { name: "Richard (Smeargle)", species: ["smeargle"], tags: ["anthro"] },
  20161. {
  20162. front: {
  20163. height: math.unit(4, "feet"),
  20164. weight: math.unit(100, "lb"),
  20165. name: "Front",
  20166. image: {
  20167. source: "./media/characters/richard-smeargle/front.svg",
  20168. extra: 2952 / 2820,
  20169. bottom: 0.028
  20170. }
  20171. },
  20172. },
  20173. [
  20174. {
  20175. name: "Normal",
  20176. height: math.unit(4, "feet"),
  20177. default: true
  20178. },
  20179. {
  20180. name: "Dynamax",
  20181. height: math.unit(20, "meters")
  20182. },
  20183. ]
  20184. ))
  20185. characterMakers.push(() => makeCharacter(
  20186. { name: "Klay", species: ["flying-fox"], tags: ["anthro"] },
  20187. {
  20188. front: {
  20189. height: math.unit(6, "feet"),
  20190. weight: math.unit(110, "lb"),
  20191. name: "Front",
  20192. image: {
  20193. source: "./media/characters/klay/front.svg",
  20194. extra: 962 / 883,
  20195. bottom: 0.04
  20196. }
  20197. },
  20198. back: {
  20199. height: math.unit(6, "feet"),
  20200. weight: math.unit(110, "lb"),
  20201. name: "Back",
  20202. image: {
  20203. source: "./media/characters/klay/back.svg",
  20204. extra: 962 / 883
  20205. }
  20206. },
  20207. beans: {
  20208. height: math.unit(1.15, "feet"),
  20209. name: "Beans",
  20210. image: {
  20211. source: "./media/characters/klay/beans.svg"
  20212. }
  20213. },
  20214. },
  20215. [
  20216. {
  20217. name: "Micro",
  20218. height: math.unit(6, "inches")
  20219. },
  20220. {
  20221. name: "Mini",
  20222. height: math.unit(3, "feet")
  20223. },
  20224. {
  20225. name: "Normal",
  20226. height: math.unit(6, "feet"),
  20227. default: true
  20228. },
  20229. {
  20230. name: "Big",
  20231. height: math.unit(25, "feet")
  20232. },
  20233. {
  20234. name: "Macro",
  20235. height: math.unit(100, "feet")
  20236. },
  20237. {
  20238. name: "Megamacro",
  20239. height: math.unit(400, "feet")
  20240. },
  20241. ]
  20242. ))
  20243. characterMakers.push(() => makeCharacter(
  20244. { name: "Marcus", species: ["skunk"], tags: ["anthro"] },
  20245. {
  20246. front: {
  20247. height: math.unit(6, "feet"),
  20248. weight: math.unit(160, "lb"),
  20249. name: "Front",
  20250. image: {
  20251. source: "./media/characters/marcus/front.svg",
  20252. extra: 734 / 676,
  20253. bottom: 0.03
  20254. }
  20255. },
  20256. },
  20257. [
  20258. {
  20259. name: "Little",
  20260. height: math.unit(6, "feet")
  20261. },
  20262. {
  20263. name: "Normal",
  20264. height: math.unit(110, "feet"),
  20265. default: true
  20266. },
  20267. {
  20268. name: "Macro",
  20269. height: math.unit(250, "feet")
  20270. },
  20271. {
  20272. name: "Megamacro",
  20273. height: math.unit(1000, "feet")
  20274. },
  20275. ]
  20276. ))
  20277. characterMakers.push(() => makeCharacter(
  20278. { name: "Claude DelRoute", species: ["goat"], tags: ["anthro"] },
  20279. {
  20280. front: {
  20281. height: math.unit(7, "feet"),
  20282. weight: math.unit(275, "lb"),
  20283. name: "Front",
  20284. image: {
  20285. source: "./media/characters/claude-delroute/front.svg",
  20286. extra: 902/827,
  20287. bottom: 26/928
  20288. }
  20289. },
  20290. side: {
  20291. height: math.unit(7, "feet"),
  20292. weight: math.unit(275, "lb"),
  20293. name: "Side",
  20294. image: {
  20295. source: "./media/characters/claude-delroute/side.svg",
  20296. extra: 908/853,
  20297. bottom: 16/924
  20298. }
  20299. },
  20300. back: {
  20301. height: math.unit(7, "feet"),
  20302. weight: math.unit(275, "lb"),
  20303. name: "Back",
  20304. image: {
  20305. source: "./media/characters/claude-delroute/back.svg",
  20306. extra: 911/829,
  20307. bottom: 18/929
  20308. }
  20309. },
  20310. maw: {
  20311. height: math.unit(0.6407, "meters"),
  20312. name: "Maw",
  20313. image: {
  20314. source: "./media/characters/claude-delroute/maw.svg"
  20315. }
  20316. },
  20317. },
  20318. [
  20319. {
  20320. name: "Normal",
  20321. height: math.unit(7, "feet"),
  20322. default: true
  20323. },
  20324. {
  20325. name: "Lorge",
  20326. height: math.unit(20, "feet")
  20327. },
  20328. ]
  20329. ))
  20330. characterMakers.push(() => makeCharacter(
  20331. { name: "Dragonien", species: ["dragon"], tags: ["anthro"] },
  20332. {
  20333. front: {
  20334. height: math.unit(8 + 4 / 12, "feet"),
  20335. weight: math.unit(600, "lb"),
  20336. name: "Front",
  20337. image: {
  20338. source: "./media/characters/dragonien/front.svg",
  20339. extra: 100 / 94,
  20340. bottom: 3.3 / 103.3445
  20341. }
  20342. },
  20343. back: {
  20344. height: math.unit(8 + 4 / 12, "feet"),
  20345. weight: math.unit(600, "lb"),
  20346. name: "Back",
  20347. image: {
  20348. source: "./media/characters/dragonien/back.svg",
  20349. extra: 776 / 746,
  20350. bottom: 6.4 / 782.0616
  20351. }
  20352. },
  20353. foot: {
  20354. height: math.unit(1.54, "feet"),
  20355. name: "Foot",
  20356. image: {
  20357. source: "./media/characters/dragonien/foot.svg",
  20358. }
  20359. },
  20360. },
  20361. [
  20362. {
  20363. name: "Normal",
  20364. height: math.unit(8 + 4 / 12, "feet"),
  20365. default: true
  20366. },
  20367. {
  20368. name: "Macro",
  20369. height: math.unit(200, "feet")
  20370. },
  20371. {
  20372. name: "Megamacro",
  20373. height: math.unit(1, "mile")
  20374. },
  20375. {
  20376. name: "Gigamacro",
  20377. height: math.unit(1000, "miles")
  20378. },
  20379. ]
  20380. ))
  20381. characterMakers.push(() => makeCharacter(
  20382. { name: "Desta", species: ["dratini"], tags: ["anthro"] },
  20383. {
  20384. front: {
  20385. height: math.unit(5 + 2 / 12, "feet"),
  20386. weight: math.unit(110, "lb"),
  20387. name: "Front",
  20388. image: {
  20389. source: "./media/characters/desta/front.svg",
  20390. extra: 767 / 726,
  20391. bottom: 11.7 / 779
  20392. }
  20393. },
  20394. back: {
  20395. height: math.unit(5 + 2 / 12, "feet"),
  20396. weight: math.unit(110, "lb"),
  20397. name: "Back",
  20398. image: {
  20399. source: "./media/characters/desta/back.svg",
  20400. extra: 777 / 728,
  20401. bottom: 6 / 784
  20402. }
  20403. },
  20404. frontAlt: {
  20405. height: math.unit(5 + 2 / 12, "feet"),
  20406. weight: math.unit(110, "lb"),
  20407. name: "Front",
  20408. image: {
  20409. source: "./media/characters/desta/front-alt.svg",
  20410. extra: 1482 / 1417
  20411. }
  20412. },
  20413. side: {
  20414. height: math.unit(5 + 2 / 12, "feet"),
  20415. weight: math.unit(110, "lb"),
  20416. name: "Side",
  20417. image: {
  20418. source: "./media/characters/desta/side.svg",
  20419. extra: 2579 / 2491,
  20420. bottom: 0.053
  20421. }
  20422. },
  20423. },
  20424. [
  20425. {
  20426. name: "Micro",
  20427. height: math.unit(6, "inches")
  20428. },
  20429. {
  20430. name: "Normal",
  20431. height: math.unit(5 + 2 / 12, "feet"),
  20432. default: true
  20433. },
  20434. {
  20435. name: "Macro",
  20436. height: math.unit(62, "feet")
  20437. },
  20438. {
  20439. name: "Megamacro",
  20440. height: math.unit(1800, "feet")
  20441. },
  20442. ]
  20443. ))
  20444. characterMakers.push(() => makeCharacter(
  20445. { name: "Storm Alystar", species: ["demon"], tags: ["anthro"] },
  20446. {
  20447. front: {
  20448. height: math.unit(10, "feet"),
  20449. weight: math.unit(700, "lb"),
  20450. name: "Front",
  20451. image: {
  20452. source: "./media/characters/storm-alystar/front.svg",
  20453. extra: 2112 / 1898,
  20454. bottom: 0.034
  20455. }
  20456. },
  20457. },
  20458. [
  20459. {
  20460. name: "Micro",
  20461. height: math.unit(3.5, "inches")
  20462. },
  20463. {
  20464. name: "Normal",
  20465. height: math.unit(10, "feet"),
  20466. default: true
  20467. },
  20468. {
  20469. name: "Macro",
  20470. height: math.unit(400, "feet")
  20471. },
  20472. {
  20473. name: "Deific",
  20474. height: math.unit(60, "miles")
  20475. },
  20476. ]
  20477. ))
  20478. characterMakers.push(() => makeCharacter(
  20479. { name: "Ilia", species: ["fox"], tags: ["anthro"] },
  20480. {
  20481. front: {
  20482. height: math.unit(2.35, "meters"),
  20483. weight: math.unit(119, "kg"),
  20484. name: "Front",
  20485. image: {
  20486. source: "./media/characters/ilia/front.svg",
  20487. extra: 1285 / 1255,
  20488. bottom: 0.06
  20489. }
  20490. },
  20491. },
  20492. [
  20493. {
  20494. name: "Normal",
  20495. height: math.unit(2.35, "meters")
  20496. },
  20497. {
  20498. name: "Macro",
  20499. height: math.unit(140, "meters"),
  20500. default: true
  20501. },
  20502. {
  20503. name: "Megamacro",
  20504. height: math.unit(100, "miles")
  20505. },
  20506. ]
  20507. ))
  20508. characterMakers.push(() => makeCharacter(
  20509. { name: "KingDead", species: ["wolf"], tags: ["anthro"] },
  20510. {
  20511. front: {
  20512. height: math.unit(6 + 5 / 12, "feet"),
  20513. weight: math.unit(190, "lb"),
  20514. name: "Front",
  20515. image: {
  20516. source: "./media/characters/kingdead/front.svg",
  20517. extra: 1228 / 1177
  20518. }
  20519. },
  20520. },
  20521. [
  20522. {
  20523. name: "Micro",
  20524. height: math.unit(7, "inches")
  20525. },
  20526. {
  20527. name: "Normal",
  20528. height: math.unit(6 + 5 / 12, "feet")
  20529. },
  20530. {
  20531. name: "Macro",
  20532. height: math.unit(150, "feet"),
  20533. default: true
  20534. },
  20535. {
  20536. name: "Megamacro",
  20537. height: math.unit(200, "miles")
  20538. },
  20539. ]
  20540. ))
  20541. characterMakers.push(() => makeCharacter(
  20542. { name: "Kyrehx", species: ["tigrex"], tags: ["anthro"] },
  20543. {
  20544. front: {
  20545. height: math.unit(8, "feet"),
  20546. weight: math.unit(600, "lb"),
  20547. name: "Front",
  20548. image: {
  20549. source: "./media/characters/kyrehx/front.svg",
  20550. extra: 1195 / 1095,
  20551. bottom: 0.034
  20552. }
  20553. },
  20554. },
  20555. [
  20556. {
  20557. name: "Micro",
  20558. height: math.unit(2, "inches")
  20559. },
  20560. {
  20561. name: "Normal",
  20562. height: math.unit(8, "feet"),
  20563. default: true
  20564. },
  20565. {
  20566. name: "Macro",
  20567. height: math.unit(255, "feet")
  20568. },
  20569. ]
  20570. ))
  20571. characterMakers.push(() => makeCharacter(
  20572. { name: "Xang", species: ["zangoose"], tags: ["anthro"] },
  20573. {
  20574. front: {
  20575. height: math.unit(0.935 * (6 + 8 / 12), "feet"),
  20576. weight: math.unit(184, "lb"),
  20577. name: "Front",
  20578. image: {
  20579. source: "./media/characters/xang/front.svg",
  20580. extra: 845 / 755
  20581. }
  20582. },
  20583. },
  20584. [
  20585. {
  20586. name: "Normal",
  20587. height: math.unit(0.935 * (6 + 8 / 12), "feet"),
  20588. default: true
  20589. },
  20590. {
  20591. name: "Macro",
  20592. height: math.unit(0.935 * 146, "feet")
  20593. },
  20594. {
  20595. name: "Megamacro",
  20596. height: math.unit(0.935 * 3, "miles")
  20597. },
  20598. ]
  20599. ))
  20600. characterMakers.push(() => makeCharacter(
  20601. { name: "Doc Weardno", species: ["fennec-fox"], tags: ["anthro"] },
  20602. {
  20603. frontDressed: {
  20604. height: math.unit(5 + 7 / 12, "feet"),
  20605. weight: math.unit(140, "lb"),
  20606. name: "Front (Dressed)",
  20607. image: {
  20608. source: "./media/characters/doc-weardno/front-dressed.svg",
  20609. extra: 263 / 234
  20610. }
  20611. },
  20612. backDressed: {
  20613. height: math.unit(5 + 7 / 12, "feet"),
  20614. weight: math.unit(140, "lb"),
  20615. name: "Back (Dressed)",
  20616. image: {
  20617. source: "./media/characters/doc-weardno/back-dressed.svg",
  20618. extra: 266 / 238
  20619. }
  20620. },
  20621. front: {
  20622. height: math.unit(5 + 7 / 12, "feet"),
  20623. weight: math.unit(140, "lb"),
  20624. name: "Front",
  20625. image: {
  20626. source: "./media/characters/doc-weardno/front.svg",
  20627. extra: 254 / 233
  20628. }
  20629. },
  20630. },
  20631. [
  20632. {
  20633. name: "Micro",
  20634. height: math.unit(3, "inches")
  20635. },
  20636. {
  20637. name: "Normal",
  20638. height: math.unit(5 + 7 / 12, "feet"),
  20639. default: true
  20640. },
  20641. {
  20642. name: "Macro",
  20643. height: math.unit(25, "feet")
  20644. },
  20645. {
  20646. name: "Megamacro",
  20647. height: math.unit(2, "miles")
  20648. },
  20649. ]
  20650. ))
  20651. characterMakers.push(() => makeCharacter(
  20652. { name: "Seth Whilst", species: ["snake"], tags: ["anthro"] },
  20653. {
  20654. front: {
  20655. height: math.unit(6 + 2 / 12, "feet"),
  20656. weight: math.unit(153, "lb"),
  20657. name: "Front",
  20658. image: {
  20659. source: "./media/characters/seth-whilst/front.svg",
  20660. bottom: 0.07
  20661. }
  20662. },
  20663. },
  20664. [
  20665. {
  20666. name: "Micro",
  20667. height: math.unit(5, "inches")
  20668. },
  20669. {
  20670. name: "Normal",
  20671. height: math.unit(6 + 2 / 12, "feet"),
  20672. default: true
  20673. },
  20674. ]
  20675. ))
  20676. characterMakers.push(() => makeCharacter(
  20677. { name: "Pocket Jabari", species: ["mouse"], tags: ["anthro"] },
  20678. {
  20679. front: {
  20680. height: math.unit(3, "inches"),
  20681. weight: math.unit(8, "grams"),
  20682. name: "Front",
  20683. image: {
  20684. source: "./media/characters/pocket-jabari/front.svg",
  20685. extra: 1024 / 974,
  20686. bottom: 0.039
  20687. }
  20688. },
  20689. },
  20690. [
  20691. {
  20692. name: "Minimicro",
  20693. height: math.unit(8, "mm")
  20694. },
  20695. {
  20696. name: "Micro",
  20697. height: math.unit(3, "inches"),
  20698. default: true
  20699. },
  20700. {
  20701. name: "Normal",
  20702. height: math.unit(3, "feet")
  20703. },
  20704. ]
  20705. ))
  20706. characterMakers.push(() => makeCharacter(
  20707. { name: "Sapphy", species: ["dragon"], tags: ["anthro"] },
  20708. {
  20709. frontDressed: {
  20710. height: math.unit(15, "feet"),
  20711. weight: math.unit(3280, "lb"),
  20712. name: "Front (Dressed)",
  20713. image: {
  20714. source: "./media/characters/sapphy/front-dressed.svg",
  20715. extra: 1951/1654,
  20716. bottom: 194/2145
  20717. },
  20718. form: "anthro",
  20719. default: true
  20720. },
  20721. backDressed: {
  20722. height: math.unit(15, "feet"),
  20723. weight: math.unit(3280, "lb"),
  20724. name: "Back (Dressed)",
  20725. image: {
  20726. source: "./media/characters/sapphy/back-dressed.svg",
  20727. extra: 2058/1918,
  20728. bottom: 125/2183
  20729. },
  20730. form: "anthro"
  20731. },
  20732. frontNude: {
  20733. height: math.unit(15, "feet"),
  20734. weight: math.unit(3280, "lb"),
  20735. name: "Front (Nude)",
  20736. image: {
  20737. source: "./media/characters/sapphy/front-nude.svg",
  20738. extra: 1951/1654,
  20739. bottom: 194/2145
  20740. },
  20741. form: "anthro"
  20742. },
  20743. backNude: {
  20744. height: math.unit(15, "feet"),
  20745. weight: math.unit(3280, "lb"),
  20746. name: "Back (Nude)",
  20747. image: {
  20748. source: "./media/characters/sapphy/back-nude.svg",
  20749. extra: 2058/1918,
  20750. bottom: 125/2183
  20751. },
  20752. form: "anthro"
  20753. },
  20754. full: {
  20755. height: math.unit(15, "feet"),
  20756. weight: math.unit(3280, "lb"),
  20757. name: "Full",
  20758. image: {
  20759. source: "./media/characters/sapphy/full.svg",
  20760. extra: 1396/1317,
  20761. bottom: 44/1440
  20762. },
  20763. form: "anthro"
  20764. },
  20765. dick: {
  20766. height: math.unit(3.8, "feet"),
  20767. name: "Dick",
  20768. image: {
  20769. source: "./media/characters/sapphy/dick.svg"
  20770. },
  20771. form: "anthro"
  20772. },
  20773. feral: {
  20774. height: math.unit(35, "feet"),
  20775. weight: math.unit(160, "tons"),
  20776. name: "Feral",
  20777. image: {
  20778. source: "./media/characters/sapphy/feral.svg",
  20779. extra: 1050/573,
  20780. bottom: 60/1110
  20781. },
  20782. form: "feral",
  20783. default: true
  20784. },
  20785. },
  20786. [
  20787. {
  20788. name: "Normal",
  20789. height: math.unit(15, "feet"),
  20790. form: "anthro"
  20791. },
  20792. {
  20793. name: "Casual Macro",
  20794. height: math.unit(120, "feet"),
  20795. form: "anthro"
  20796. },
  20797. {
  20798. name: "Macro",
  20799. height: math.unit(2150, "feet"),
  20800. default: true,
  20801. form: "anthro"
  20802. },
  20803. {
  20804. name: "Megamacro",
  20805. height: math.unit(8, "miles"),
  20806. form: "anthro"
  20807. },
  20808. {
  20809. name: "Galaxy Mom",
  20810. height: math.unit(6, "megalightyears"),
  20811. form: "anthro"
  20812. },
  20813. {
  20814. name: "Normal",
  20815. height: math.unit(35, "feet"),
  20816. form: "feral",
  20817. default: true
  20818. },
  20819. {
  20820. name: "Macro",
  20821. height: math.unit(300, "feet"),
  20822. form: "feral"
  20823. },
  20824. {
  20825. name: "Galaxy Mom",
  20826. height: math.unit(10, "megalightyears"),
  20827. form: "feral"
  20828. },
  20829. ],
  20830. {
  20831. "anthro": {
  20832. name: "Anthro",
  20833. default: true
  20834. },
  20835. "feral": {
  20836. name: "Feral"
  20837. }
  20838. }
  20839. ))
  20840. characterMakers.push(() => makeCharacter(
  20841. { name: "Kiro", species: ["folf", "hyena"], tags: ["anthro"] },
  20842. {
  20843. hyenaFront: {
  20844. height: math.unit(6, "feet"),
  20845. weight: math.unit(190, "lb"),
  20846. name: "Front",
  20847. image: {
  20848. source: "./media/characters/kiro/hyena-front.svg",
  20849. extra: 927/839,
  20850. bottom: 91/1018
  20851. },
  20852. form: "hyena",
  20853. default: true
  20854. },
  20855. front: {
  20856. height: math.unit(6, "feet"),
  20857. weight: math.unit(170, "lb"),
  20858. name: "Front",
  20859. image: {
  20860. source: "./media/characters/kiro/front.svg",
  20861. extra: 1064 / 1012,
  20862. bottom: 0.052
  20863. },
  20864. form: "folf",
  20865. default: true
  20866. },
  20867. },
  20868. [
  20869. {
  20870. name: "Micro",
  20871. height: math.unit(6, "inches"),
  20872. form: "folf"
  20873. },
  20874. {
  20875. name: "Normal",
  20876. height: math.unit(6, "feet"),
  20877. form: "folf",
  20878. default: true
  20879. },
  20880. {
  20881. name: "Macro",
  20882. height: math.unit(72, "feet"),
  20883. form: "folf"
  20884. },
  20885. {
  20886. name: "Micro",
  20887. height: math.unit(6, "inches"),
  20888. form: "hyena"
  20889. },
  20890. {
  20891. name: "Normal",
  20892. height: math.unit(6, "feet"),
  20893. form: "hyena",
  20894. default: true
  20895. },
  20896. {
  20897. name: "Macro",
  20898. height: math.unit(72, "feet"),
  20899. form: "hyena"
  20900. },
  20901. ],
  20902. {
  20903. "hyena": {
  20904. name: "Hyena",
  20905. default: true
  20906. },
  20907. "folf": {
  20908. name: "Folf",
  20909. },
  20910. }
  20911. ))
  20912. characterMakers.push(() => makeCharacter(
  20913. { name: "Irishfox", species: ["fox"], tags: ["anthro"] },
  20914. {
  20915. front: {
  20916. height: math.unit(5 + 9 / 12, "feet"),
  20917. weight: math.unit(175, "lb"),
  20918. name: "Front",
  20919. image: {
  20920. source: "./media/characters/irishfox/front.svg",
  20921. extra: 1912 / 1680,
  20922. bottom: 0.02
  20923. }
  20924. },
  20925. },
  20926. [
  20927. {
  20928. name: "Nano",
  20929. height: math.unit(1, "mm")
  20930. },
  20931. {
  20932. name: "Micro",
  20933. height: math.unit(2, "inches")
  20934. },
  20935. {
  20936. name: "Normal",
  20937. height: math.unit(5 + 9 / 12, "feet"),
  20938. default: true
  20939. },
  20940. {
  20941. name: "Macro",
  20942. height: math.unit(45, "feet")
  20943. },
  20944. ]
  20945. ))
  20946. characterMakers.push(() => makeCharacter(
  20947. { name: "Aronai Sieyes", species: ["cross-fox", "synth"], tags: ["anthro"] },
  20948. {
  20949. front: {
  20950. height: math.unit(6 + 1 / 12, "feet"),
  20951. weight: math.unit(75, "lb"),
  20952. name: "Front",
  20953. image: {
  20954. source: "./media/characters/aronai-sieyes/front.svg",
  20955. extra: 1532/1450,
  20956. bottom: 42/1574
  20957. }
  20958. },
  20959. side: {
  20960. height: math.unit(6 + 1 / 12, "feet"),
  20961. weight: math.unit(75, "lb"),
  20962. name: "Side",
  20963. image: {
  20964. source: "./media/characters/aronai-sieyes/side.svg",
  20965. extra: 1422/1365,
  20966. bottom: 148/1570
  20967. }
  20968. },
  20969. back: {
  20970. height: math.unit(6 + 1 / 12, "feet"),
  20971. weight: math.unit(75, "lb"),
  20972. name: "Back",
  20973. image: {
  20974. source: "./media/characters/aronai-sieyes/back.svg",
  20975. extra: 1526/1464,
  20976. bottom: 51/1577
  20977. }
  20978. },
  20979. dressed: {
  20980. height: math.unit(6 + 1 / 12, "feet"),
  20981. weight: math.unit(75, "lb"),
  20982. name: "Dressed",
  20983. image: {
  20984. source: "./media/characters/aronai-sieyes/dressed.svg",
  20985. extra: 1559/1483,
  20986. bottom: 39/1598
  20987. }
  20988. },
  20989. slit: {
  20990. height: math.unit(1.3, "feet"),
  20991. name: "Slit",
  20992. image: {
  20993. source: "./media/characters/aronai-sieyes/slit.svg"
  20994. }
  20995. },
  20996. slitSpread: {
  20997. height: math.unit(0.9, "feet"),
  20998. name: "Slit (Spread)",
  20999. image: {
  21000. source: "./media/characters/aronai-sieyes/slit-spread.svg"
  21001. }
  21002. },
  21003. rump: {
  21004. height: math.unit(1.3, "feet"),
  21005. name: "Rump",
  21006. image: {
  21007. source: "./media/characters/aronai-sieyes/rump.svg"
  21008. }
  21009. },
  21010. maw: {
  21011. height: math.unit(1.25, "feet"),
  21012. name: "Maw",
  21013. image: {
  21014. source: "./media/characters/aronai-sieyes/maw.svg"
  21015. }
  21016. },
  21017. feral: {
  21018. height: math.unit(18, "feet"),
  21019. weight: math.unit(75 * 3 * 3 * 3, "lb"),
  21020. name: "Feral",
  21021. image: {
  21022. source: "./media/characters/aronai-sieyes/feral.svg",
  21023. extra: 1530 / 1240,
  21024. bottom: 0.035
  21025. }
  21026. },
  21027. },
  21028. [
  21029. {
  21030. name: "Micro",
  21031. height: math.unit(2, "inches")
  21032. },
  21033. {
  21034. name: "Normal",
  21035. height: math.unit(6 + 1 / 12, "feet"),
  21036. default: true
  21037. }
  21038. ]
  21039. ))
  21040. characterMakers.push(() => makeCharacter(
  21041. { name: "Xuna", species: ["wickerbeast"], tags: ["anthro"] },
  21042. {
  21043. front: {
  21044. height: math.unit(12, "feet"),
  21045. weight: math.unit(410, "kg"),
  21046. name: "Front",
  21047. image: {
  21048. source: "./media/characters/xuna/front.svg",
  21049. extra: 2184 / 1980
  21050. }
  21051. },
  21052. side: {
  21053. height: math.unit(12, "feet"),
  21054. weight: math.unit(410, "kg"),
  21055. name: "Side",
  21056. image: {
  21057. source: "./media/characters/xuna/side.svg",
  21058. extra: 2184 / 1980
  21059. }
  21060. },
  21061. back: {
  21062. height: math.unit(12, "feet"),
  21063. weight: math.unit(410, "kg"),
  21064. name: "Back",
  21065. image: {
  21066. source: "./media/characters/xuna/back.svg",
  21067. extra: 2184 / 1980
  21068. }
  21069. },
  21070. },
  21071. [
  21072. {
  21073. name: "Nano glow",
  21074. height: math.unit(10, "nm")
  21075. },
  21076. {
  21077. name: "Micro floof",
  21078. height: math.unit(0.3, "m")
  21079. },
  21080. {
  21081. name: "Huggable softy boi",
  21082. height: math.unit(3.6576, "m"),
  21083. default: true
  21084. },
  21085. {
  21086. name: "Admirable floof",
  21087. height: math.unit(80, "meters")
  21088. },
  21089. {
  21090. name: "Gentle macro",
  21091. height: math.unit(300, "meters")
  21092. },
  21093. {
  21094. name: "Very careful floof",
  21095. height: math.unit(3200, "meters")
  21096. },
  21097. {
  21098. name: "The mega floof",
  21099. height: math.unit(36000, "meters")
  21100. },
  21101. {
  21102. name: "Giga-fur-Wicker",
  21103. height: math.unit(4800000, "meters")
  21104. },
  21105. {
  21106. name: "Licky world",
  21107. height: math.unit(20000000, "meters")
  21108. },
  21109. {
  21110. name: "Floofy cyan sun",
  21111. height: math.unit(1500000000, "meters")
  21112. },
  21113. {
  21114. name: "Milky Wicker",
  21115. height: math.unit(1000000000000000000000, "meters")
  21116. },
  21117. {
  21118. name: "The observing Wicker",
  21119. height: math.unit(999999999999999999999999999, "meters")
  21120. },
  21121. ]
  21122. ))
  21123. characterMakers.push(() => makeCharacter(
  21124. { name: "Arokha Sieyes", species: ["kitsune"], tags: ["anthro"] },
  21125. {
  21126. front: {
  21127. height: math.unit(5 + 9 / 12, "feet"),
  21128. weight: math.unit(150, "lb"),
  21129. name: "Front",
  21130. image: {
  21131. source: "./media/characters/arokha-sieyes/front.svg",
  21132. extra: 1425 / 1284,
  21133. bottom: 0.05
  21134. }
  21135. },
  21136. },
  21137. [
  21138. {
  21139. name: "Normal",
  21140. height: math.unit(5 + 9 / 12, "feet")
  21141. },
  21142. {
  21143. name: "Macro",
  21144. height: math.unit(30, "meters"),
  21145. default: true
  21146. },
  21147. ]
  21148. ))
  21149. characterMakers.push(() => makeCharacter(
  21150. { name: "Arokh Sieyes", species: ["kitsune"], tags: ["anthro"] },
  21151. {
  21152. front: {
  21153. height: math.unit(6, "feet"),
  21154. weight: math.unit(180, "lb"),
  21155. name: "Front",
  21156. image: {
  21157. source: "./media/characters/arokh-sieyes/front.svg",
  21158. extra: 1830 / 1769,
  21159. bottom: 0.01
  21160. }
  21161. },
  21162. },
  21163. [
  21164. {
  21165. name: "Normal",
  21166. height: math.unit(6, "feet")
  21167. },
  21168. {
  21169. name: "Macro",
  21170. height: math.unit(30, "meters"),
  21171. default: true
  21172. },
  21173. ]
  21174. ))
  21175. characterMakers.push(() => makeCharacter(
  21176. { name: "Goldeneye", species: ["gryphon"], tags: ["feral"] },
  21177. {
  21178. side: {
  21179. height: math.unit(13 + 1 / 12, "feet"),
  21180. weight: math.unit(8.5, "tonnes"),
  21181. preyCapacity: math.unit(36, "people"),
  21182. name: "Side",
  21183. image: {
  21184. source: "./media/characters/goldeneye/side.svg",
  21185. extra: 1139/741,
  21186. bottom: 98/1237
  21187. }
  21188. },
  21189. front: {
  21190. height: math.unit(5.1, "feet"),
  21191. weight: math.unit(8.5, "tonnes"),
  21192. preyCapacity: math.unit(36, "people"),
  21193. name: "Front",
  21194. image: {
  21195. source: "./media/characters/goldeneye/front.svg",
  21196. extra: 635/365,
  21197. bottom: 598/1233
  21198. }
  21199. },
  21200. maw: {
  21201. height: math.unit(6.6, "feet"),
  21202. name: "Maw",
  21203. image: {
  21204. source: "./media/characters/goldeneye/maw.svg"
  21205. }
  21206. },
  21207. headFront: {
  21208. height: math.unit(8, "feet"),
  21209. name: "Head (Front)",
  21210. image: {
  21211. source: "./media/characters/goldeneye/head-front.svg"
  21212. }
  21213. },
  21214. headSide: {
  21215. height: math.unit(6, "feet"),
  21216. name: "Head (Side)",
  21217. image: {
  21218. source: "./media/characters/goldeneye/head-side.svg"
  21219. }
  21220. },
  21221. headBack: {
  21222. height: math.unit(8, "feet"),
  21223. name: "Head (Back)",
  21224. image: {
  21225. source: "./media/characters/goldeneye/head-back.svg"
  21226. }
  21227. },
  21228. paw: {
  21229. height: math.unit(3.4, "feet"),
  21230. name: "Paw",
  21231. image: {
  21232. source: "./media/characters/goldeneye/paw.svg"
  21233. }
  21234. },
  21235. toering: {
  21236. height: math.unit(0.45, "feet"),
  21237. name: "Toering",
  21238. image: {
  21239. source: "./media/characters/goldeneye/toering.svg"
  21240. }
  21241. },
  21242. eyes: {
  21243. height: math.unit(0.5, "feet"),
  21244. name: "Eyes",
  21245. image: {
  21246. source: "./media/characters/goldeneye/eyes.svg"
  21247. }
  21248. },
  21249. },
  21250. [
  21251. {
  21252. name: "Normal",
  21253. height: math.unit(13 + 1 / 12, "feet"),
  21254. default: true
  21255. },
  21256. ]
  21257. ))
  21258. characterMakers.push(() => makeCharacter(
  21259. { name: "Leonardo Lycheborne", species: ["wolf", "dog", "barghest", "werebeast"], tags: ["anthro", "feral", "taur"] },
  21260. {
  21261. front: {
  21262. height: math.unit(6 + 1 / 12, "feet"),
  21263. weight: math.unit(210, "lb"),
  21264. name: "Front",
  21265. image: {
  21266. source: "./media/characters/leonardo-lycheborne/front.svg",
  21267. extra: 776/723,
  21268. bottom: 34/810
  21269. }
  21270. },
  21271. side: {
  21272. height: math.unit(6 + 1 / 12, "feet"),
  21273. weight: math.unit(210, "lb"),
  21274. name: "Side",
  21275. image: {
  21276. source: "./media/characters/leonardo-lycheborne/side.svg",
  21277. extra: 780/728,
  21278. bottom: 12/792
  21279. }
  21280. },
  21281. back: {
  21282. height: math.unit(6 + 1 / 12, "feet"),
  21283. weight: math.unit(210, "lb"),
  21284. name: "Back",
  21285. image: {
  21286. source: "./media/characters/leonardo-lycheborne/back.svg",
  21287. extra: 775/721,
  21288. bottom: 17/792
  21289. }
  21290. },
  21291. hand: {
  21292. height: math.unit(1.08, "feet"),
  21293. name: "Hand",
  21294. image: {
  21295. source: "./media/characters/leonardo-lycheborne/hand.svg"
  21296. }
  21297. },
  21298. foot: {
  21299. height: math.unit(1.32, "feet"),
  21300. name: "Foot",
  21301. image: {
  21302. source: "./media/characters/leonardo-lycheborne/foot.svg"
  21303. }
  21304. },
  21305. maw: {
  21306. height: math.unit(1, "feet"),
  21307. name: "Maw",
  21308. image: {
  21309. source: "./media/characters/leonardo-lycheborne/maw.svg"
  21310. }
  21311. },
  21312. were: {
  21313. height: math.unit(20, "feet"),
  21314. weight: math.unit(7800, "lb"),
  21315. name: "Were",
  21316. image: {
  21317. source: "./media/characters/leonardo-lycheborne/were.svg",
  21318. extra: 1224/1165,
  21319. bottom: 72/1296
  21320. }
  21321. },
  21322. feral: {
  21323. height: math.unit(7.5, "feet"),
  21324. weight: math.unit(600, "lb"),
  21325. name: "Feral",
  21326. image: {
  21327. source: "./media/characters/leonardo-lycheborne/feral.svg",
  21328. extra: 797/702,
  21329. bottom: 139/936
  21330. }
  21331. },
  21332. taur: {
  21333. height: math.unit(11, "feet"),
  21334. weight: math.unit(3300, "lb"),
  21335. name: "Taur",
  21336. image: {
  21337. source: "./media/characters/leonardo-lycheborne/taur.svg",
  21338. extra: 1271/1197,
  21339. bottom: 47/1318
  21340. }
  21341. },
  21342. barghest: {
  21343. height: math.unit(11, "feet"),
  21344. weight: math.unit(1300, "lb"),
  21345. name: "Barghest",
  21346. image: {
  21347. source: "./media/characters/leonardo-lycheborne/barghest.svg",
  21348. extra: 1291/1204,
  21349. bottom: 37/1328
  21350. }
  21351. },
  21352. dick: {
  21353. height: math.unit((6 + 1 / 12) / 4.09, "feet"),
  21354. name: "Dick",
  21355. image: {
  21356. source: "./media/characters/leonardo-lycheborne/dick.svg"
  21357. }
  21358. },
  21359. dickWere: {
  21360. height: math.unit((20) / 3.8, "feet"),
  21361. name: "Dick (Were)",
  21362. image: {
  21363. source: "./media/characters/leonardo-lycheborne/dick-were.svg"
  21364. }
  21365. },
  21366. },
  21367. [
  21368. {
  21369. name: "Normal",
  21370. height: math.unit(6 + 1 / 12, "feet"),
  21371. default: true
  21372. },
  21373. ]
  21374. ))
  21375. characterMakers.push(() => makeCharacter(
  21376. { name: "Jet", species: ["hyena"], tags: ["anthro"] },
  21377. {
  21378. front: {
  21379. height: math.unit(10, "feet"),
  21380. weight: math.unit(350, "lb"),
  21381. name: "Front",
  21382. image: {
  21383. source: "./media/characters/jet/front.svg",
  21384. extra: 2050 / 1980,
  21385. bottom: 0.013
  21386. }
  21387. },
  21388. back: {
  21389. height: math.unit(10, "feet"),
  21390. weight: math.unit(350, "lb"),
  21391. name: "Back",
  21392. image: {
  21393. source: "./media/characters/jet/back.svg",
  21394. extra: 2050 / 1980,
  21395. bottom: 0.013
  21396. }
  21397. },
  21398. },
  21399. [
  21400. {
  21401. name: "Micro",
  21402. height: math.unit(6, "inches")
  21403. },
  21404. {
  21405. name: "Normal",
  21406. height: math.unit(10, "feet"),
  21407. default: true
  21408. },
  21409. {
  21410. name: "Macro",
  21411. height: math.unit(100, "feet")
  21412. },
  21413. ]
  21414. ))
  21415. characterMakers.push(() => makeCharacter(
  21416. { name: "Tanarath", species: ["dragonoid"], tags: ["anthro"] },
  21417. {
  21418. front: {
  21419. height: math.unit(15, "feet"),
  21420. weight: math.unit(2800, "lb"),
  21421. name: "Front",
  21422. image: {
  21423. source: "./media/characters/tanarath/front.svg",
  21424. extra: 2392 / 2220,
  21425. bottom: 0.03
  21426. }
  21427. },
  21428. back: {
  21429. height: math.unit(15, "feet"),
  21430. weight: math.unit(2800, "lb"),
  21431. name: "Back",
  21432. image: {
  21433. source: "./media/characters/tanarath/back.svg",
  21434. extra: 2392 / 2220,
  21435. bottom: 0.03
  21436. }
  21437. },
  21438. },
  21439. [
  21440. {
  21441. name: "Normal",
  21442. height: math.unit(15, "feet"),
  21443. default: true
  21444. },
  21445. ]
  21446. ))
  21447. characterMakers.push(() => makeCharacter(
  21448. { name: "Patty CattyBatty", species: ["cat", "bat"], tags: ["anthro"] },
  21449. {
  21450. front: {
  21451. height: math.unit(7 + 1 / 12, "feet"),
  21452. weight: math.unit(175, "lb"),
  21453. name: "Front",
  21454. image: {
  21455. source: "./media/characters/patty-cattybatty/front.svg",
  21456. extra: 908 / 874,
  21457. bottom: 0.025
  21458. }
  21459. },
  21460. },
  21461. [
  21462. {
  21463. name: "Micro",
  21464. height: math.unit(1, "inch")
  21465. },
  21466. {
  21467. name: "Normal",
  21468. height: math.unit(7 + 1 / 12, "feet")
  21469. },
  21470. {
  21471. name: "Mini Macro",
  21472. height: math.unit(155, "feet")
  21473. },
  21474. {
  21475. name: "Macro",
  21476. height: math.unit(1077, "feet")
  21477. },
  21478. {
  21479. name: "Mega Macro",
  21480. height: math.unit(47650, "feet"),
  21481. default: true
  21482. },
  21483. {
  21484. name: "Giga Macro",
  21485. height: math.unit(440, "miles")
  21486. },
  21487. {
  21488. name: "Tera Macro",
  21489. height: math.unit(8700, "miles")
  21490. },
  21491. {
  21492. name: "Planetary Macro",
  21493. height: math.unit(32700, "miles")
  21494. },
  21495. {
  21496. name: "Solar Macro",
  21497. height: math.unit(550000, "miles")
  21498. },
  21499. {
  21500. name: "Celestial Macro",
  21501. height: math.unit(2.5, "AU")
  21502. },
  21503. ]
  21504. ))
  21505. characterMakers.push(() => makeCharacter(
  21506. { name: "Cappu", species: ["sheep"], tags: ["anthro"] },
  21507. {
  21508. front: {
  21509. height: math.unit(4 + 5 / 12, "feet"),
  21510. weight: math.unit(90, "lb"),
  21511. name: "Front",
  21512. image: {
  21513. source: "./media/characters/cappu/front.svg",
  21514. extra: 1247 / 1152,
  21515. bottom: 0.012
  21516. }
  21517. },
  21518. },
  21519. [
  21520. {
  21521. name: "Normal",
  21522. height: math.unit(4 + 5 / 12, "feet"),
  21523. default: true
  21524. },
  21525. ]
  21526. ))
  21527. characterMakers.push(() => makeCharacter(
  21528. { name: "Sebi", species: ["cat", "demon", "wolf"], tags: ["anthro"] },
  21529. {
  21530. frontDressed: {
  21531. height: math.unit(70, "cm"),
  21532. weight: math.unit(6, "kg"),
  21533. name: "Front (Dressed)",
  21534. image: {
  21535. source: "./media/characters/sebi/front-dressed.svg",
  21536. extra: 713.5 / 686.5,
  21537. bottom: 0.003
  21538. }
  21539. },
  21540. front: {
  21541. height: math.unit(70, "cm"),
  21542. weight: math.unit(5, "kg"),
  21543. name: "Front",
  21544. image: {
  21545. source: "./media/characters/sebi/front.svg",
  21546. extra: 713.5 / 686.5,
  21547. bottom: 0.003
  21548. }
  21549. }
  21550. },
  21551. [
  21552. {
  21553. name: "Normal",
  21554. height: math.unit(70, "cm"),
  21555. default: true
  21556. },
  21557. {
  21558. name: "Macro",
  21559. height: math.unit(8, "meters")
  21560. },
  21561. ]
  21562. ))
  21563. characterMakers.push(() => makeCharacter(
  21564. { name: "Typhek", species: ["t-rex"], tags: ["anthro"] },
  21565. {
  21566. front: {
  21567. height: math.unit(6, "feet"),
  21568. weight: math.unit(150, "lb"),
  21569. name: "Front",
  21570. image: {
  21571. source: "./media/characters/typhek/front.svg",
  21572. extra: 1948 / 1929,
  21573. bottom: 0.025
  21574. }
  21575. },
  21576. side: {
  21577. height: math.unit(6, "feet"),
  21578. weight: math.unit(150, "lb"),
  21579. name: "Side",
  21580. image: {
  21581. source: "./media/characters/typhek/side.svg",
  21582. extra: 2034 / 2010,
  21583. bottom: 0.003
  21584. }
  21585. },
  21586. back: {
  21587. height: math.unit(6, "feet"),
  21588. weight: math.unit(150, "lb"),
  21589. name: "Back",
  21590. image: {
  21591. source: "./media/characters/typhek/back.svg",
  21592. extra: 2005 / 1978,
  21593. bottom: 0.004
  21594. }
  21595. },
  21596. palm: {
  21597. height: math.unit(1.2, "feet"),
  21598. name: "Palm",
  21599. image: {
  21600. source: "./media/characters/typhek/palm.svg"
  21601. }
  21602. },
  21603. fist: {
  21604. height: math.unit(1.1, "feet"),
  21605. name: "Fist",
  21606. image: {
  21607. source: "./media/characters/typhek/fist.svg"
  21608. }
  21609. },
  21610. foot: {
  21611. height: math.unit(1.57, "feet"),
  21612. name: "Foot",
  21613. image: {
  21614. source: "./media/characters/typhek/foot.svg"
  21615. }
  21616. },
  21617. sole: {
  21618. height: math.unit(2.05, "feet"),
  21619. name: "Sole",
  21620. image: {
  21621. source: "./media/characters/typhek/sole.svg"
  21622. }
  21623. },
  21624. },
  21625. [
  21626. {
  21627. name: "Macro",
  21628. height: math.unit(40, "stories"),
  21629. default: true
  21630. },
  21631. {
  21632. name: "Megamacro",
  21633. height: math.unit(1, "mile")
  21634. },
  21635. {
  21636. name: "Gigamacro",
  21637. height: math.unit(4000, "solarradii")
  21638. },
  21639. {
  21640. name: "Universal",
  21641. height: math.unit(1.1, "universes")
  21642. }
  21643. ]
  21644. ))
  21645. characterMakers.push(() => makeCharacter(
  21646. { name: "Kassy", species: ["sheep"], tags: ["anthro"] },
  21647. {
  21648. side: {
  21649. height: math.unit(5 + 7 / 12, "feet"),
  21650. weight: math.unit(150, "lb"),
  21651. name: "Side",
  21652. image: {
  21653. source: "./media/characters/kassy/side.svg",
  21654. extra: 1280 / 1225,
  21655. bottom: 0.002
  21656. }
  21657. },
  21658. front: {
  21659. height: math.unit(5 + 7 / 12, "feet"),
  21660. weight: math.unit(150, "lb"),
  21661. name: "Front",
  21662. image: {
  21663. source: "./media/characters/kassy/front.svg",
  21664. extra: 1280 / 1225,
  21665. bottom: 0.025
  21666. }
  21667. },
  21668. back: {
  21669. height: math.unit(5 + 7 / 12, "feet"),
  21670. weight: math.unit(150, "lb"),
  21671. name: "Back",
  21672. image: {
  21673. source: "./media/characters/kassy/back.svg",
  21674. extra: 1280 / 1225,
  21675. bottom: 0.002
  21676. }
  21677. },
  21678. foot: {
  21679. height: math.unit(1.266, "feet"),
  21680. name: "Foot",
  21681. image: {
  21682. source: "./media/characters/kassy/foot.svg"
  21683. }
  21684. },
  21685. },
  21686. [
  21687. {
  21688. name: "Normal",
  21689. height: math.unit(5 + 7 / 12, "feet")
  21690. },
  21691. {
  21692. name: "Macro",
  21693. height: math.unit(137, "feet"),
  21694. default: true
  21695. },
  21696. {
  21697. name: "Megamacro",
  21698. height: math.unit(1, "mile")
  21699. },
  21700. ]
  21701. ))
  21702. characterMakers.push(() => makeCharacter(
  21703. { name: "Neil", species: ["deer"], tags: ["anthro"] },
  21704. {
  21705. front: {
  21706. height: math.unit(6 + 1 / 12, "feet"),
  21707. weight: math.unit(200, "lb"),
  21708. name: "Front",
  21709. image: {
  21710. source: "./media/characters/neil/front.svg",
  21711. extra: 1326 / 1250,
  21712. bottom: 0.023
  21713. }
  21714. },
  21715. },
  21716. [
  21717. {
  21718. name: "Normal",
  21719. height: math.unit(6 + 1 / 12, "feet"),
  21720. default: true
  21721. },
  21722. {
  21723. name: "Macro",
  21724. height: math.unit(200, "feet")
  21725. },
  21726. ]
  21727. ))
  21728. characterMakers.push(() => makeCharacter(
  21729. { name: "Atticus", species: ["pig"], tags: ["anthro"] },
  21730. {
  21731. front: {
  21732. height: math.unit(5 + 9 / 12, "feet"),
  21733. weight: math.unit(190, "lb"),
  21734. name: "Front",
  21735. image: {
  21736. source: "./media/characters/atticus/front.svg",
  21737. extra: 2934 / 2785,
  21738. bottom: 0.025
  21739. }
  21740. },
  21741. },
  21742. [
  21743. {
  21744. name: "Normal",
  21745. height: math.unit(5 + 9 / 12, "feet"),
  21746. default: true
  21747. },
  21748. {
  21749. name: "Macro",
  21750. height: math.unit(180, "feet")
  21751. },
  21752. ]
  21753. ))
  21754. characterMakers.push(() => makeCharacter(
  21755. { name: "Milo", species: ["scolipede"], tags: ["feral"] },
  21756. {
  21757. side: {
  21758. height: math.unit(9, "feet"),
  21759. weight: math.unit(650, "lb"),
  21760. name: "Side",
  21761. image: {
  21762. source: "./media/characters/milo/side.svg",
  21763. extra: 2644 / 2310,
  21764. bottom: 0.032
  21765. }
  21766. },
  21767. },
  21768. [
  21769. {
  21770. name: "Normal",
  21771. height: math.unit(9, "feet"),
  21772. default: true
  21773. },
  21774. {
  21775. name: "Macro",
  21776. height: math.unit(300, "feet")
  21777. },
  21778. ]
  21779. ))
  21780. characterMakers.push(() => makeCharacter(
  21781. { name: "Ijzer", species: ["dragon"], tags: ["anthro"] },
  21782. {
  21783. side: {
  21784. height: math.unit(8, "meters"),
  21785. weight: math.unit(90000, "kg"),
  21786. name: "Side",
  21787. image: {
  21788. source: "./media/characters/ijzer/side.svg",
  21789. extra: 2756 / 1600,
  21790. bottom: 0.01
  21791. }
  21792. },
  21793. },
  21794. [
  21795. {
  21796. name: "Small",
  21797. height: math.unit(3, "meters")
  21798. },
  21799. {
  21800. name: "Normal",
  21801. height: math.unit(8, "meters"),
  21802. default: true
  21803. },
  21804. {
  21805. name: "Normal+",
  21806. height: math.unit(10, "meters")
  21807. },
  21808. {
  21809. name: "Bigger",
  21810. height: math.unit(24, "meters")
  21811. },
  21812. {
  21813. name: "Huge",
  21814. height: math.unit(80, "meters")
  21815. },
  21816. ]
  21817. ))
  21818. characterMakers.push(() => makeCharacter(
  21819. { name: "Luca Cervicum", species: ["deer"], tags: ["anthro"] },
  21820. {
  21821. front: {
  21822. height: math.unit(6 + 2 / 12, "feet"),
  21823. weight: math.unit(153, "lb"),
  21824. name: "Front",
  21825. image: {
  21826. source: "./media/characters/luca-cervicum/front.svg",
  21827. extra: 370 / 327,
  21828. bottom: 0.015
  21829. }
  21830. },
  21831. back: {
  21832. height: math.unit(6 + 2 / 12, "feet"),
  21833. weight: math.unit(153, "lb"),
  21834. name: "Back",
  21835. image: {
  21836. source: "./media/characters/luca-cervicum/back.svg",
  21837. extra: 367 / 333,
  21838. bottom: 0.005
  21839. }
  21840. },
  21841. frontGear: {
  21842. height: math.unit(6 + 2 / 12, "feet"),
  21843. weight: math.unit(173, "lb"),
  21844. name: "Front (Gear)",
  21845. image: {
  21846. source: "./media/characters/luca-cervicum/front-gear.svg",
  21847. extra: 377 / 333,
  21848. bottom: 0.006
  21849. }
  21850. },
  21851. },
  21852. [
  21853. {
  21854. name: "Normal",
  21855. height: math.unit(6 + 2 / 12, "feet"),
  21856. default: true
  21857. },
  21858. ]
  21859. ))
  21860. characterMakers.push(() => makeCharacter(
  21861. { name: "Oliver", species: ["goodra"], tags: ["anthro"] },
  21862. {
  21863. front: {
  21864. height: math.unit(6 + 1 / 12, "feet"),
  21865. weight: math.unit(304, "lb"),
  21866. name: "Front",
  21867. image: {
  21868. source: "./media/characters/oliver/front.svg",
  21869. extra: 157 / 143,
  21870. bottom: 0.08
  21871. }
  21872. },
  21873. },
  21874. [
  21875. {
  21876. name: "Normal",
  21877. height: math.unit(6 + 1 / 12, "feet"),
  21878. default: true
  21879. },
  21880. ]
  21881. ))
  21882. characterMakers.push(() => makeCharacter(
  21883. { name: "Shane", species: ["gray-fox"], tags: ["anthro"] },
  21884. {
  21885. front: {
  21886. height: math.unit(5 + 7 / 12, "feet"),
  21887. weight: math.unit(140, "lb"),
  21888. name: "Front",
  21889. image: {
  21890. source: "./media/characters/shane/front.svg",
  21891. extra: 304 / 289,
  21892. bottom: 0.005
  21893. }
  21894. },
  21895. },
  21896. [
  21897. {
  21898. name: "Normal",
  21899. height: math.unit(5 + 7 / 12, "feet"),
  21900. default: true
  21901. },
  21902. ]
  21903. ))
  21904. characterMakers.push(() => makeCharacter(
  21905. { name: "Shin", species: ["rat"], tags: ["anthro"] },
  21906. {
  21907. front: {
  21908. height: math.unit(5 + 9 / 12, "feet"),
  21909. weight: math.unit(178, "lb"),
  21910. name: "Front",
  21911. image: {
  21912. source: "./media/characters/shin/front.svg",
  21913. extra: 159 / 151,
  21914. bottom: 0.015
  21915. }
  21916. },
  21917. },
  21918. [
  21919. {
  21920. name: "Normal",
  21921. height: math.unit(5 + 9 / 12, "feet"),
  21922. default: true
  21923. },
  21924. ]
  21925. ))
  21926. characterMakers.push(() => makeCharacter(
  21927. { name: "Xerxes", species: ["zoroark"], tags: ["anthro"] },
  21928. {
  21929. front: {
  21930. height: math.unit(5 + 10 / 12, "feet"),
  21931. weight: math.unit(168, "lb"),
  21932. name: "Front",
  21933. image: {
  21934. source: "./media/characters/xerxes/front.svg",
  21935. extra: 282 / 260,
  21936. bottom: 0.045
  21937. }
  21938. },
  21939. },
  21940. [
  21941. {
  21942. name: "Normal",
  21943. height: math.unit(5 + 10 / 12, "feet"),
  21944. default: true
  21945. },
  21946. ]
  21947. ))
  21948. characterMakers.push(() => makeCharacter(
  21949. { name: "Chaska", species: ["maned-wolf"], tags: ["anthro"] },
  21950. {
  21951. front: {
  21952. height: math.unit(6 + 7 / 12, "feet"),
  21953. weight: math.unit(208, "lb"),
  21954. name: "Front",
  21955. image: {
  21956. source: "./media/characters/chaska/front.svg",
  21957. extra: 332 / 319,
  21958. bottom: 0.015
  21959. }
  21960. },
  21961. },
  21962. [
  21963. {
  21964. name: "Normal",
  21965. height: math.unit(6 + 7 / 12, "feet"),
  21966. default: true
  21967. },
  21968. ]
  21969. ))
  21970. characterMakers.push(() => makeCharacter(
  21971. { name: "Enuk", species: ["black-backed-jackal"], tags: ["anthro"] },
  21972. {
  21973. front: {
  21974. height: math.unit(5 + 8 / 12, "feet"),
  21975. weight: math.unit(208, "lb"),
  21976. name: "Front",
  21977. image: {
  21978. source: "./media/characters/enuk/front.svg",
  21979. extra: 437 / 406,
  21980. bottom: 0.02
  21981. }
  21982. },
  21983. },
  21984. [
  21985. {
  21986. name: "Normal",
  21987. height: math.unit(5 + 8 / 12, "feet"),
  21988. default: true
  21989. },
  21990. ]
  21991. ))
  21992. characterMakers.push(() => makeCharacter(
  21993. { name: "Bruun", species: ["black-backed-jackal"], tags: ["anthro"] },
  21994. {
  21995. front: {
  21996. height: math.unit(5 + 10 / 12, "feet"),
  21997. weight: math.unit(252, "lb"),
  21998. name: "Front",
  21999. image: {
  22000. source: "./media/characters/bruun/front.svg",
  22001. extra: 197 / 187,
  22002. bottom: 0.012
  22003. }
  22004. },
  22005. },
  22006. [
  22007. {
  22008. name: "Normal",
  22009. height: math.unit(5 + 10 / 12, "feet"),
  22010. default: true
  22011. },
  22012. ]
  22013. ))
  22014. characterMakers.push(() => makeCharacter(
  22015. { name: "Alexeev", species: ["samurott"], tags: ["anthro"] },
  22016. {
  22017. front: {
  22018. height: math.unit(6 + 10 / 12, "feet"),
  22019. weight: math.unit(255, "lb"),
  22020. name: "Front",
  22021. image: {
  22022. source: "./media/characters/alexeev/front.svg",
  22023. extra: 213 / 200,
  22024. bottom: 0.05
  22025. }
  22026. },
  22027. },
  22028. [
  22029. {
  22030. name: "Normal",
  22031. height: math.unit(6 + 10 / 12, "feet"),
  22032. default: true
  22033. },
  22034. ]
  22035. ))
  22036. characterMakers.push(() => makeCharacter(
  22037. { name: "Evelyn", species: ["thylacine"], tags: ["anthro"] },
  22038. {
  22039. front: {
  22040. height: math.unit(2 + 8 / 12, "feet"),
  22041. weight: math.unit(22, "lb"),
  22042. name: "Front",
  22043. image: {
  22044. source: "./media/characters/evelyn/front.svg",
  22045. extra: 208 / 180
  22046. }
  22047. },
  22048. },
  22049. [
  22050. {
  22051. name: "Normal",
  22052. height: math.unit(2 + 8 / 12, "feet"),
  22053. default: true
  22054. },
  22055. ]
  22056. ))
  22057. characterMakers.push(() => makeCharacter(
  22058. { name: "Inca", species: ["gecko"], tags: ["anthro"] },
  22059. {
  22060. front: {
  22061. height: math.unit(5 + 9 / 12, "feet"),
  22062. weight: math.unit(139, "lb"),
  22063. name: "Front",
  22064. image: {
  22065. source: "./media/characters/inca/front.svg",
  22066. extra: 294 / 291,
  22067. bottom: 0.03
  22068. }
  22069. },
  22070. },
  22071. [
  22072. {
  22073. name: "Normal",
  22074. height: math.unit(5 + 9 / 12, "feet"),
  22075. default: true
  22076. },
  22077. ]
  22078. ))
  22079. characterMakers.push(() => makeCharacter(
  22080. { name: "Mera", species: ["flying-fox", "spectral-bat"], tags: ["anthro"] },
  22081. {
  22082. front: {
  22083. height: math.unit(6 + 3 / 12, "feet"),
  22084. weight: math.unit(185, "lb"),
  22085. name: "Front",
  22086. image: {
  22087. source: "./media/characters/mera/front.svg",
  22088. extra: 291 / 277,
  22089. bottom: 0.03
  22090. }
  22091. },
  22092. },
  22093. [
  22094. {
  22095. name: "Normal",
  22096. height: math.unit(6 + 3 / 12, "feet"),
  22097. default: true
  22098. },
  22099. ]
  22100. ))
  22101. characterMakers.push(() => makeCharacter(
  22102. { name: "Ceres", species: ["zoroark"], tags: ["anthro"] },
  22103. {
  22104. front: {
  22105. height: math.unit(6 + 7 / 12, "feet"),
  22106. weight: math.unit(160, "lb"),
  22107. name: "Front",
  22108. image: {
  22109. source: "./media/characters/ceres/front.svg",
  22110. extra: 1023 / 950,
  22111. bottom: 0.027
  22112. }
  22113. },
  22114. back: {
  22115. height: math.unit(6 + 7 / 12, "feet"),
  22116. weight: math.unit(160, "lb"),
  22117. name: "Back",
  22118. image: {
  22119. source: "./media/characters/ceres/back.svg",
  22120. extra: 1023 / 950
  22121. }
  22122. },
  22123. },
  22124. [
  22125. {
  22126. name: "Normal",
  22127. height: math.unit(6 + 7 / 12, "feet"),
  22128. default: true
  22129. },
  22130. ]
  22131. ))
  22132. characterMakers.push(() => makeCharacter(
  22133. { name: "Kris", species: ["ninetales"], tags: ["anthro"] },
  22134. {
  22135. front: {
  22136. height: math.unit(5 + 10 / 12, "feet"),
  22137. weight: math.unit(150, "lb"),
  22138. name: "Front",
  22139. image: {
  22140. source: "./media/characters/kris/front.svg",
  22141. extra: 885 / 803,
  22142. bottom: 0.03
  22143. }
  22144. },
  22145. },
  22146. [
  22147. {
  22148. name: "Normal",
  22149. height: math.unit(5 + 10 / 12, "feet"),
  22150. default: true
  22151. },
  22152. ]
  22153. ))
  22154. characterMakers.push(() => makeCharacter(
  22155. { name: "Taluthus", species: ["kitsune"], tags: ["anthro"] },
  22156. {
  22157. dragon_front: {
  22158. height: math.unit(5, "feet"),
  22159. name: "Front",
  22160. image: {
  22161. source: "./media/characters/taluthus/dragon-front.svg",
  22162. extra: 1203/1098,
  22163. bottom: 46/1249
  22164. },
  22165. form: "dragon",
  22166. default: true
  22167. },
  22168. dragon_maw: {
  22169. height: math.unit(2.35, "feet"),
  22170. name: "Maw",
  22171. image: {
  22172. source: "./media/characters/taluthus/dragon-maw.svg"
  22173. },
  22174. form: "dragon",
  22175. },
  22176. kitsune_front: {
  22177. height: math.unit(7, "feet"),
  22178. name: "Front",
  22179. image: {
  22180. source: "./media/characters/taluthus/kitsune-front.svg",
  22181. extra: 900/841,
  22182. bottom: 65/965
  22183. },
  22184. form: "kitsune",
  22185. default: true
  22186. },
  22187. },
  22188. [
  22189. {
  22190. name: "Normal",
  22191. height: math.unit(5, "feet"),
  22192. form: "dragon",
  22193. default: true,
  22194. },
  22195. {
  22196. name: "Normal",
  22197. height: math.unit(7, "feet"),
  22198. form: "kitsune",
  22199. default: true
  22200. },
  22201. {
  22202. name: "Macro",
  22203. height: math.unit(300, "feet"),
  22204. allForms: true
  22205. },
  22206. ],
  22207. {
  22208. "dragon": {
  22209. name: "Dragon",
  22210. default: true
  22211. },
  22212. "kitsune": {
  22213. name: "Kitsune",
  22214. },
  22215. }
  22216. ))
  22217. characterMakers.push(() => makeCharacter(
  22218. { name: "Dawn", species: ["luxray"], tags: ["anthro"] },
  22219. {
  22220. front: {
  22221. height: math.unit(5 + 9 / 12, "feet"),
  22222. weight: math.unit(145, "lb"),
  22223. name: "Front",
  22224. image: {
  22225. source: "./media/characters/dawn/front.svg",
  22226. extra: 2094 / 2016,
  22227. bottom: 0.025
  22228. }
  22229. },
  22230. back: {
  22231. height: math.unit(5 + 9 / 12, "feet"),
  22232. weight: math.unit(160, "lb"),
  22233. name: "Back",
  22234. image: {
  22235. source: "./media/characters/dawn/back.svg",
  22236. extra: 2112 / 2080,
  22237. bottom: 0.005
  22238. }
  22239. },
  22240. },
  22241. [
  22242. {
  22243. name: "Normal",
  22244. height: math.unit(6 + 7 / 12, "feet"),
  22245. default: true
  22246. },
  22247. ]
  22248. ))
  22249. characterMakers.push(() => makeCharacter(
  22250. { name: "Arador", species: ["water-dragon"], tags: ["anthro"] },
  22251. {
  22252. anthro: {
  22253. height: math.unit(8 + 3 / 12, "feet"),
  22254. weight: math.unit(450, "lb"),
  22255. name: "Anthro",
  22256. image: {
  22257. source: "./media/characters/arador/anthro.svg",
  22258. extra: 1835 / 1718,
  22259. bottom: 0.025
  22260. }
  22261. },
  22262. feral: {
  22263. height: math.unit(4, "feet"),
  22264. weight: math.unit(200, "lb"),
  22265. name: "Feral",
  22266. image: {
  22267. source: "./media/characters/arador/feral.svg",
  22268. extra: 1683 / 1514,
  22269. bottom: 0.07
  22270. }
  22271. },
  22272. },
  22273. [
  22274. {
  22275. name: "Normal",
  22276. height: math.unit(8 + 3 / 12, "feet")
  22277. },
  22278. {
  22279. name: "Macro",
  22280. height: math.unit(82.5, "feet"),
  22281. default: true
  22282. },
  22283. ]
  22284. ))
  22285. characterMakers.push(() => makeCharacter(
  22286. { name: "Dharsi", species: ["dragon"], tags: ["anthro"] },
  22287. {
  22288. front: {
  22289. height: math.unit(5 + 10 / 12, "feet"),
  22290. weight: math.unit(125, "lb"),
  22291. name: "Front",
  22292. image: {
  22293. source: "./media/characters/dharsi/front.svg",
  22294. extra: 716 / 630,
  22295. bottom: 0.035
  22296. }
  22297. },
  22298. },
  22299. [
  22300. {
  22301. name: "Nano",
  22302. height: math.unit(100, "nm")
  22303. },
  22304. {
  22305. name: "Micro",
  22306. height: math.unit(2, "inches")
  22307. },
  22308. {
  22309. name: "Normal",
  22310. height: math.unit(5 + 10 / 12, "feet"),
  22311. default: true
  22312. },
  22313. {
  22314. name: "Macro",
  22315. height: math.unit(1000, "feet")
  22316. },
  22317. {
  22318. name: "Megamacro",
  22319. height: math.unit(10, "miles")
  22320. },
  22321. {
  22322. name: "Gigamacro",
  22323. height: math.unit(3000, "miles")
  22324. },
  22325. {
  22326. name: "Teramacro",
  22327. height: math.unit(500000, "miles")
  22328. },
  22329. {
  22330. name: "Teramacro+",
  22331. height: math.unit(30, "galaxies")
  22332. },
  22333. ]
  22334. ))
  22335. characterMakers.push(() => makeCharacter(
  22336. { name: "Deathy", species: ["wolf"], tags: ["anthro"] },
  22337. {
  22338. front: {
  22339. height: math.unit(6, "feet"),
  22340. weight: math.unit(150, "lb"),
  22341. name: "Front",
  22342. image: {
  22343. source: "./media/characters/deathy/front.svg",
  22344. extra: 1552 / 1463,
  22345. bottom: 0.025
  22346. }
  22347. },
  22348. side: {
  22349. height: math.unit(6, "feet"),
  22350. weight: math.unit(150, "lb"),
  22351. name: "Side",
  22352. image: {
  22353. source: "./media/characters/deathy/side.svg",
  22354. extra: 1604 / 1455,
  22355. bottom: 0.025
  22356. }
  22357. },
  22358. back: {
  22359. height: math.unit(6, "feet"),
  22360. weight: math.unit(150, "lb"),
  22361. name: "Back",
  22362. image: {
  22363. source: "./media/characters/deathy/back.svg",
  22364. extra: 1580 / 1463,
  22365. bottom: 0.005
  22366. }
  22367. },
  22368. },
  22369. [
  22370. {
  22371. name: "Micro",
  22372. height: math.unit(5, "millimeters")
  22373. },
  22374. {
  22375. name: "Normal",
  22376. height: math.unit(6 + 5 / 12, "feet"),
  22377. default: true
  22378. },
  22379. ]
  22380. ))
  22381. characterMakers.push(() => makeCharacter(
  22382. { name: "Juniper", species: ["snake"], tags: ["naga", "goo"] },
  22383. {
  22384. front: {
  22385. height: math.unit(16, "feet"),
  22386. weight: math.unit(4000, "lb"),
  22387. name: "Front",
  22388. image: {
  22389. source: "./media/characters/juniper/front.svg",
  22390. bottom: 0.04
  22391. }
  22392. },
  22393. },
  22394. [
  22395. {
  22396. name: "Normal",
  22397. height: math.unit(16, "feet"),
  22398. default: true
  22399. },
  22400. ]
  22401. ))
  22402. characterMakers.push(() => makeCharacter(
  22403. { name: "Hipster", species: ["fox"], tags: ["anthro"] },
  22404. {
  22405. front: {
  22406. height: math.unit(6, "feet"),
  22407. weight: math.unit(150, "lb"),
  22408. name: "Front",
  22409. image: {
  22410. source: "./media/characters/hipster/front.svg",
  22411. extra: 1312 / 1209,
  22412. bottom: 0.025
  22413. }
  22414. },
  22415. back: {
  22416. height: math.unit(6, "feet"),
  22417. weight: math.unit(150, "lb"),
  22418. name: "Back",
  22419. image: {
  22420. source: "./media/characters/hipster/back.svg",
  22421. extra: 1281 / 1196,
  22422. bottom: 0.01
  22423. }
  22424. },
  22425. },
  22426. [
  22427. {
  22428. name: "Micro",
  22429. height: math.unit(1, "mm")
  22430. },
  22431. {
  22432. name: "Normal",
  22433. height: math.unit(4, "inches"),
  22434. default: true
  22435. },
  22436. {
  22437. name: "Macro",
  22438. height: math.unit(500, "feet")
  22439. },
  22440. {
  22441. name: "Megamacro",
  22442. height: math.unit(1000, "miles")
  22443. },
  22444. ]
  22445. ))
  22446. characterMakers.push(() => makeCharacter(
  22447. { name: "Tendirmuldr", species: ["cow"], tags: ["anthro"] },
  22448. {
  22449. front: {
  22450. height: math.unit(6, "feet"),
  22451. weight: math.unit(150, "lb"),
  22452. name: "Front",
  22453. image: {
  22454. source: "./media/characters/tendirmuldr/front.svg",
  22455. extra: 1878 / 1772,
  22456. bottom: 0.015
  22457. }
  22458. },
  22459. },
  22460. [
  22461. {
  22462. name: "Megamacro",
  22463. height: math.unit(1500, "miles"),
  22464. default: true
  22465. },
  22466. ]
  22467. ))
  22468. characterMakers.push(() => makeCharacter(
  22469. { name: "Mort", species: ["demon"], tags: ["feral"] },
  22470. {
  22471. front: {
  22472. height: math.unit(14, "feet"),
  22473. weight: math.unit(12000, "lb"),
  22474. name: "Front",
  22475. image: {
  22476. source: "./media/characters/mort/front.svg",
  22477. extra: 365 / 318,
  22478. bottom: 0.01
  22479. }
  22480. },
  22481. side: {
  22482. height: math.unit(14, "feet"),
  22483. weight: math.unit(12000, "lb"),
  22484. name: "Side",
  22485. image: {
  22486. source: "./media/characters/mort/side.svg",
  22487. extra: 365 / 318,
  22488. bottom: 0.052
  22489. },
  22490. default: true
  22491. },
  22492. back: {
  22493. height: math.unit(14, "feet"),
  22494. weight: math.unit(12000, "lb"),
  22495. name: "Back",
  22496. image: {
  22497. source: "./media/characters/mort/back.svg",
  22498. extra: 371 / 332,
  22499. bottom: 0.18
  22500. }
  22501. },
  22502. },
  22503. [
  22504. {
  22505. name: "Normal",
  22506. height: math.unit(14, "feet"),
  22507. default: true
  22508. },
  22509. ]
  22510. ))
  22511. characterMakers.push(() => makeCharacter(
  22512. { name: "Lycoa", species: ["sergal"], tags: ["anthro", "goo"] },
  22513. {
  22514. front: {
  22515. height: math.unit(8, "feet"),
  22516. weight: math.unit(1, "ton"),
  22517. name: "Front",
  22518. image: {
  22519. source: "./media/characters/lycoa/front.svg",
  22520. extra: 1836/1728,
  22521. bottom: 81/1917
  22522. }
  22523. },
  22524. back: {
  22525. height: math.unit(8, "feet"),
  22526. weight: math.unit(1, "ton"),
  22527. name: "Back",
  22528. image: {
  22529. source: "./media/characters/lycoa/back.svg",
  22530. extra: 1785/1720,
  22531. bottom: 91/1876
  22532. }
  22533. },
  22534. head: {
  22535. height: math.unit(1.6243, "feet"),
  22536. name: "Head",
  22537. image: {
  22538. source: "./media/characters/lycoa/head.svg",
  22539. extra: 1011/782,
  22540. bottom: 0/1011
  22541. }
  22542. },
  22543. tailmaw: {
  22544. height: math.unit(1.9, "feet"),
  22545. name: "Tailmaw",
  22546. image: {
  22547. source: "./media/characters/lycoa/tailmaw.svg"
  22548. }
  22549. },
  22550. tentacles: {
  22551. height: math.unit(2.1, "feet"),
  22552. name: "Tentacles",
  22553. image: {
  22554. source: "./media/characters/lycoa/tentacles.svg"
  22555. }
  22556. },
  22557. dick: {
  22558. height: math.unit(1.73, "feet"),
  22559. name: "Dick",
  22560. image: {
  22561. source: "./media/characters/lycoa/dick.svg"
  22562. }
  22563. },
  22564. },
  22565. [
  22566. {
  22567. name: "Normal",
  22568. height: math.unit(8, "feet"),
  22569. default: true
  22570. },
  22571. {
  22572. name: "Macro",
  22573. height: math.unit(30, "feet")
  22574. },
  22575. ]
  22576. ))
  22577. characterMakers.push(() => makeCharacter(
  22578. { name: "Naldara", species: ["jackalope"], tags: ["anthro", "naga"] },
  22579. {
  22580. front: {
  22581. height: math.unit(4 + 2 / 12, "feet"),
  22582. weight: math.unit(70, "lb"),
  22583. name: "Front",
  22584. image: {
  22585. source: "./media/characters/naldara/front.svg",
  22586. extra: 1664/1387,
  22587. bottom: 81/1745
  22588. },
  22589. form: "anthro",
  22590. default: true
  22591. },
  22592. naga: {
  22593. height: math.unit(20, "feet"),
  22594. weight: math.unit(15000, "kg"),
  22595. name: "Front",
  22596. image: {
  22597. source: "./media/characters/naldara/naga.svg",
  22598. extra: 1590/1396,
  22599. bottom: 285/1875
  22600. },
  22601. form: "naga",
  22602. default: true
  22603. },
  22604. },
  22605. [
  22606. {
  22607. name: "Normal",
  22608. height: math.unit(4 + 2 / 12, "feet"),
  22609. form: "anthro",
  22610. default: true
  22611. },
  22612. {
  22613. name: "Normal",
  22614. height: math.unit(20, "feet"),
  22615. form: "naga",
  22616. default: true
  22617. },
  22618. ],
  22619. {
  22620. "anthro": {
  22621. name: "Anthro",
  22622. default: true
  22623. },
  22624. "naga": {
  22625. name: "Naga"
  22626. }
  22627. }
  22628. ))
  22629. characterMakers.push(() => makeCharacter(
  22630. { name: "Briar", species: ["hyena"], tags: ["anthro"] },
  22631. {
  22632. front: {
  22633. height: math.unit(13 + 7 / 12, "feet"),
  22634. weight: math.unit(1500, "lb"),
  22635. name: "Front",
  22636. image: {
  22637. source: "./media/characters/briar/front.svg",
  22638. extra: 1223/1157,
  22639. bottom: 123/1346
  22640. }
  22641. },
  22642. },
  22643. [
  22644. {
  22645. name: "Normal",
  22646. height: math.unit(13 + 7 / 12, "feet"),
  22647. default: true
  22648. },
  22649. ]
  22650. ))
  22651. characterMakers.push(() => makeCharacter(
  22652. { name: "Vanguard", species: ["otter", "alligator"], tags: ["anthro"] },
  22653. {
  22654. side: {
  22655. height: math.unit(16, "feet"),
  22656. weight: math.unit(500, "lb"),
  22657. name: "Side",
  22658. image: {
  22659. source: "./media/characters/vanguard/side.svg",
  22660. extra: 1022/914,
  22661. bottom: 30/1052
  22662. }
  22663. },
  22664. sideAlt: {
  22665. height: math.unit(10, "feet"),
  22666. weight: math.unit(500, "lb"),
  22667. name: "Side (Alt)",
  22668. image: {
  22669. source: "./media/characters/vanguard/side-alt.svg",
  22670. extra: 502 / 425,
  22671. bottom: 0.087
  22672. }
  22673. },
  22674. },
  22675. [
  22676. {
  22677. name: "Normal",
  22678. height: math.unit(17.71, "feet"),
  22679. default: true
  22680. },
  22681. ]
  22682. ))
  22683. characterMakers.push(() => makeCharacter(
  22684. { name: "Artemis", species: ["renamon", "construct"], tags: ["anthro"] },
  22685. {
  22686. front: {
  22687. height: math.unit(7.5, "feet"),
  22688. weight: math.unit(2, "lb"),
  22689. name: "Front",
  22690. image: {
  22691. source: "./media/characters/artemis/work-safe-front.svg",
  22692. extra: 1192 / 1075,
  22693. bottom: 0.07
  22694. },
  22695. form: "work-safe",
  22696. default: true
  22697. },
  22698. frontNsfw: {
  22699. height: math.unit(7.5, "feet"),
  22700. weight: math.unit(2, "lb"),
  22701. name: "Front",
  22702. image: {
  22703. source: "./media/characters/artemis/calibrating-front.svg",
  22704. extra: 1192 / 1075,
  22705. bottom: 0.07
  22706. },
  22707. form: "calibrating",
  22708. default: true
  22709. },
  22710. frontNsfwer: {
  22711. height: math.unit(7.5, "feet"),
  22712. weight: math.unit(2, "lb"),
  22713. name: "Front",
  22714. image: {
  22715. source: "./media/characters/artemis/oversize-load-front.svg",
  22716. extra: 1192 / 1075,
  22717. bottom: 0.07
  22718. },
  22719. form: "oversize-load",
  22720. default: true
  22721. },
  22722. side: {
  22723. height: math.unit(7.5, "feet"),
  22724. weight: math.unit(2, "lb"),
  22725. name: "Side",
  22726. image: {
  22727. source: "./media/characters/artemis/work-safe-side.svg",
  22728. extra: 1192 / 1075,
  22729. bottom: 0.07
  22730. },
  22731. form: "work-safe"
  22732. },
  22733. sideNsfw: {
  22734. height: math.unit(7.5, "feet"),
  22735. weight: math.unit(2, "lb"),
  22736. name: "Side",
  22737. image: {
  22738. source: "./media/characters/artemis/calibrating-side.svg",
  22739. extra: 1192 / 1075,
  22740. bottom: 0.07
  22741. },
  22742. form: "calibrating"
  22743. },
  22744. sideNsfwer: {
  22745. height: math.unit(7.5, "feet"),
  22746. weight: math.unit(2, "lb"),
  22747. name: "Side",
  22748. image: {
  22749. source: "./media/characters/artemis/oversize-load-side.svg",
  22750. extra: 1192 / 1075,
  22751. bottom: 0.07
  22752. },
  22753. form: "oversize-load"
  22754. },
  22755. maw: {
  22756. height: math.unit(1.1, "feet"),
  22757. name: "Maw",
  22758. image: {
  22759. source: "./media/characters/artemis/maw.svg"
  22760. },
  22761. form: "work-safe"
  22762. },
  22763. stomach: {
  22764. height: math.unit(0.95, "feet"),
  22765. name: "Stomach",
  22766. image: {
  22767. source: "./media/characters/artemis/stomach.svg"
  22768. },
  22769. form: "work-safe"
  22770. },
  22771. dickCanine: {
  22772. height: math.unit(1, "feet"),
  22773. name: "Dick (Canine)",
  22774. image: {
  22775. source: "./media/characters/artemis/dick-canine.svg"
  22776. },
  22777. form: "calibrating"
  22778. },
  22779. dickEquine: {
  22780. height: math.unit(0.85, "feet"),
  22781. name: "Dick (Equine)",
  22782. image: {
  22783. source: "./media/characters/artemis/dick-equine.svg"
  22784. },
  22785. form: "calibrating"
  22786. },
  22787. dickExotic: {
  22788. height: math.unit(0.85, "feet"),
  22789. name: "Dick (Exotic)",
  22790. image: {
  22791. source: "./media/characters/artemis/dick-exotic.svg"
  22792. },
  22793. form: "calibrating"
  22794. },
  22795. dickCanineBigger: {
  22796. height: math.unit(1 * 1.33, "feet"),
  22797. name: "Dick (Canine)",
  22798. image: {
  22799. source: "./media/characters/artemis/dick-canine.svg"
  22800. },
  22801. form: "oversize-load"
  22802. },
  22803. dickEquineBigger: {
  22804. height: math.unit(0.85 * 1.33, "feet"),
  22805. name: "Dick (Equine)",
  22806. image: {
  22807. source: "./media/characters/artemis/dick-equine.svg"
  22808. },
  22809. form: "oversize-load"
  22810. },
  22811. dickExoticBigger: {
  22812. height: math.unit(0.85 * 1.33, "feet"),
  22813. name: "Dick (Exotic)",
  22814. image: {
  22815. source: "./media/characters/artemis/dick-exotic.svg"
  22816. },
  22817. form: "oversize-load"
  22818. },
  22819. },
  22820. [
  22821. {
  22822. name: "Normal",
  22823. height: math.unit(7.5, "feet"),
  22824. form: "work-safe",
  22825. default: true
  22826. },
  22827. {
  22828. name: "Normal",
  22829. height: math.unit(7.5, "feet"),
  22830. form: "calibrating",
  22831. default: true
  22832. },
  22833. {
  22834. name: "Normal",
  22835. height: math.unit(7.5, "feet"),
  22836. form: "oversize-load",
  22837. default: true
  22838. },
  22839. {
  22840. name: "Enlarged",
  22841. height: math.unit(12, "feet"),
  22842. form: "work-safe",
  22843. },
  22844. {
  22845. name: "Enlarged",
  22846. height: math.unit(12, "feet"),
  22847. form: "calibrating",
  22848. },
  22849. {
  22850. name: "Enlarged",
  22851. height: math.unit(12, "feet"),
  22852. form: "oversize-load",
  22853. },
  22854. ],
  22855. {
  22856. "work-safe": {
  22857. name: "Work-Safe",
  22858. default: true
  22859. },
  22860. "calibrating": {
  22861. name: "Calibrating"
  22862. },
  22863. "oversize-load": {
  22864. name: "Oversize Load"
  22865. }
  22866. }
  22867. ))
  22868. characterMakers.push(() => makeCharacter(
  22869. { name: "Kira", species: ["fluudrani"], tags: ["anthro"] },
  22870. {
  22871. front: {
  22872. height: math.unit(5 + 3 / 12, "feet"),
  22873. weight: math.unit(160, "lb"),
  22874. name: "Front",
  22875. image: {
  22876. source: "./media/characters/kira/front.svg",
  22877. extra: 906 / 786,
  22878. bottom: 0.01
  22879. }
  22880. },
  22881. back: {
  22882. height: math.unit(5 + 3 / 12, "feet"),
  22883. weight: math.unit(160, "lb"),
  22884. name: "Back",
  22885. image: {
  22886. source: "./media/characters/kira/back.svg",
  22887. extra: 882 / 757,
  22888. bottom: 0.005
  22889. }
  22890. },
  22891. frontDressed: {
  22892. height: math.unit(5 + 3 / 12, "feet"),
  22893. weight: math.unit(160, "lb"),
  22894. name: "Front (Dressed)",
  22895. image: {
  22896. source: "./media/characters/kira/front-dressed.svg",
  22897. extra: 906 / 786,
  22898. bottom: 0.01
  22899. }
  22900. },
  22901. beans: {
  22902. height: math.unit(0.92, "feet"),
  22903. name: "Beans",
  22904. image: {
  22905. source: "./media/characters/kira/beans.svg"
  22906. }
  22907. },
  22908. },
  22909. [
  22910. {
  22911. name: "Normal",
  22912. height: math.unit(5 + 3 / 12, "feet"),
  22913. default: true
  22914. },
  22915. ]
  22916. ))
  22917. characterMakers.push(() => makeCharacter(
  22918. { name: "Scramble", species: ["surkanu"], tags: ["anthro"] },
  22919. {
  22920. front: {
  22921. height: math.unit(5 + 4 / 12, "feet"),
  22922. weight: math.unit(145, "lb"),
  22923. name: "Front",
  22924. image: {
  22925. source: "./media/characters/scramble/front.svg",
  22926. extra: 763 / 727,
  22927. bottom: 0.05
  22928. }
  22929. },
  22930. back: {
  22931. height: math.unit(5 + 4 / 12, "feet"),
  22932. weight: math.unit(145, "lb"),
  22933. name: "Back",
  22934. image: {
  22935. source: "./media/characters/scramble/back.svg",
  22936. extra: 826 / 737,
  22937. bottom: 0.002
  22938. }
  22939. },
  22940. },
  22941. [
  22942. {
  22943. name: "Normal",
  22944. height: math.unit(5 + 4 / 12, "feet"),
  22945. default: true
  22946. },
  22947. ]
  22948. ))
  22949. characterMakers.push(() => makeCharacter(
  22950. { name: "Biscuit", species: ["surkanu"], tags: ["anthro"] },
  22951. {
  22952. side: {
  22953. height: math.unit(6 + 2 / 12, "feet"),
  22954. weight: math.unit(190, "lb"),
  22955. name: "Side",
  22956. image: {
  22957. source: "./media/characters/biscuit/side.svg",
  22958. extra: 858 / 791,
  22959. bottom: 0.044
  22960. }
  22961. },
  22962. },
  22963. [
  22964. {
  22965. name: "Normal",
  22966. height: math.unit(6 + 2 / 12, "feet"),
  22967. default: true
  22968. },
  22969. ]
  22970. ))
  22971. characterMakers.push(() => makeCharacter(
  22972. { name: "Poffin", species: ["kiiasi"], tags: ["anthro"] },
  22973. {
  22974. front: {
  22975. height: math.unit(5 + 2 / 12, "feet"),
  22976. weight: math.unit(120, "lb"),
  22977. name: "Front",
  22978. image: {
  22979. source: "./media/characters/poffin/front.svg",
  22980. extra: 786 / 680,
  22981. bottom: 0.005
  22982. }
  22983. },
  22984. },
  22985. [
  22986. {
  22987. name: "Normal",
  22988. height: math.unit(5 + 2 / 12, "feet"),
  22989. default: true
  22990. },
  22991. ]
  22992. ))
  22993. characterMakers.push(() => makeCharacter(
  22994. { name: "Dhari", species: ["werewolf", "fennec-fox"], tags: ["anthro"] },
  22995. {
  22996. front: {
  22997. height: math.unit(6 + 3 / 12, "feet"),
  22998. weight: math.unit(519, "lb"),
  22999. name: "Front",
  23000. image: {
  23001. source: "./media/characters/dhari/front.svg",
  23002. extra: 1048 / 946,
  23003. bottom: 0.015
  23004. }
  23005. },
  23006. back: {
  23007. height: math.unit(6 + 3 / 12, "feet"),
  23008. weight: math.unit(519, "lb"),
  23009. name: "Back",
  23010. image: {
  23011. source: "./media/characters/dhari/back.svg",
  23012. extra: 1048 / 931,
  23013. bottom: 0.005
  23014. }
  23015. },
  23016. frontDressed: {
  23017. height: math.unit(6 + 3 / 12, "feet"),
  23018. weight: math.unit(519, "lb"),
  23019. name: "Front (Dressed)",
  23020. image: {
  23021. source: "./media/characters/dhari/front-dressed.svg",
  23022. extra: 1713 / 1546,
  23023. bottom: 0.02
  23024. }
  23025. },
  23026. backDressed: {
  23027. height: math.unit(6 + 3 / 12, "feet"),
  23028. weight: math.unit(519, "lb"),
  23029. name: "Back (Dressed)",
  23030. image: {
  23031. source: "./media/characters/dhari/back-dressed.svg",
  23032. extra: 1699 / 1537,
  23033. bottom: 0.01
  23034. }
  23035. },
  23036. maw: {
  23037. height: math.unit(0.95, "feet"),
  23038. name: "Maw",
  23039. image: {
  23040. source: "./media/characters/dhari/maw.svg"
  23041. }
  23042. },
  23043. wereFront: {
  23044. height: math.unit(12 + 8 / 12, "feet"),
  23045. weight: math.unit(4000, "lb"),
  23046. name: "Front (Were)",
  23047. image: {
  23048. source: "./media/characters/dhari/were-front.svg",
  23049. extra: 1065 / 969,
  23050. bottom: 0.015
  23051. }
  23052. },
  23053. wereBack: {
  23054. height: math.unit(12 + 8 / 12, "feet"),
  23055. weight: math.unit(4000, "lb"),
  23056. name: "Back (Were)",
  23057. image: {
  23058. source: "./media/characters/dhari/were-back.svg",
  23059. extra: 1065 / 969,
  23060. bottom: 0.012
  23061. }
  23062. },
  23063. wereMaw: {
  23064. height: math.unit(0.625, "meters"),
  23065. name: "Maw (Were)",
  23066. image: {
  23067. source: "./media/characters/dhari/were-maw.svg"
  23068. }
  23069. },
  23070. },
  23071. [
  23072. {
  23073. name: "Normal",
  23074. height: math.unit(6 + 3 / 12, "feet"),
  23075. default: true
  23076. },
  23077. ]
  23078. ))
  23079. characterMakers.push(() => makeCharacter(
  23080. { name: "Rena Dyne", species: ["sabertooth-tiger"], tags: ["anthro"] },
  23081. {
  23082. anthro: {
  23083. height: math.unit(5 + 7 / 12, "feet"),
  23084. weight: math.unit(175, "lb"),
  23085. name: "Anthro",
  23086. image: {
  23087. source: "./media/characters/rena-dyne/anthro.svg",
  23088. extra: 1849 / 1785,
  23089. bottom: 0.005
  23090. }
  23091. },
  23092. taur: {
  23093. height: math.unit(15 + 6 / 12, "feet"),
  23094. weight: math.unit(8000, "lb"),
  23095. name: "Taur",
  23096. image: {
  23097. source: "./media/characters/rena-dyne/taur.svg",
  23098. extra: 2315 / 2234,
  23099. bottom: 0.033
  23100. }
  23101. },
  23102. },
  23103. [
  23104. {
  23105. name: "Normal",
  23106. height: math.unit(5 + 7 / 12, "feet"),
  23107. default: true
  23108. },
  23109. ]
  23110. ))
  23111. characterMakers.push(() => makeCharacter(
  23112. { name: "Weremeep", species: ["monster"], tags: ["anthro"] },
  23113. {
  23114. front: {
  23115. height: math.unit(8, "feet"),
  23116. weight: math.unit(600, "lb"),
  23117. name: "Front",
  23118. image: {
  23119. source: "./media/characters/weremeep/front.svg",
  23120. extra: 970/849,
  23121. bottom: 7/977
  23122. }
  23123. },
  23124. },
  23125. [
  23126. {
  23127. name: "Normal",
  23128. height: math.unit(8, "feet"),
  23129. default: true
  23130. },
  23131. {
  23132. name: "Lorg",
  23133. height: math.unit(12, "feet")
  23134. },
  23135. {
  23136. name: "Oh Lawd She Comin'",
  23137. height: math.unit(20, "feet")
  23138. },
  23139. ]
  23140. ))
  23141. characterMakers.push(() => makeCharacter(
  23142. { name: "Reza", species: ["cat", "dragon"], tags: ["anthro", "feral"] },
  23143. {
  23144. front: {
  23145. height: math.unit(4, "feet"),
  23146. weight: math.unit(90, "lb"),
  23147. name: "Front",
  23148. image: {
  23149. source: "./media/characters/reza/front.svg",
  23150. extra: 1183 / 1111,
  23151. bottom: 0.017
  23152. }
  23153. },
  23154. back: {
  23155. height: math.unit(4, "feet"),
  23156. weight: math.unit(90, "lb"),
  23157. name: "Back",
  23158. image: {
  23159. source: "./media/characters/reza/back.svg",
  23160. extra: 1183 / 1111,
  23161. bottom: 0.01
  23162. }
  23163. },
  23164. drake: {
  23165. height: math.unit(30, "feet"),
  23166. weight: math.unit(246960, "lb"),
  23167. name: "Drake",
  23168. image: {
  23169. source: "./media/characters/reza/drake.svg",
  23170. extra: 2350 / 2024,
  23171. bottom: 60.7 / 2403
  23172. }
  23173. },
  23174. },
  23175. [
  23176. {
  23177. name: "Normal",
  23178. height: math.unit(4, "feet"),
  23179. default: true
  23180. },
  23181. ]
  23182. ))
  23183. characterMakers.push(() => makeCharacter(
  23184. { name: "Athea", species: ["leopard"], tags: ["taur"] },
  23185. {
  23186. side: {
  23187. height: math.unit(15, "feet"),
  23188. weight: math.unit(14, "tons"),
  23189. name: "Side",
  23190. image: {
  23191. source: "./media/characters/athea/side.svg",
  23192. extra: 960 / 540,
  23193. bottom: 0.003
  23194. }
  23195. },
  23196. sitting: {
  23197. height: math.unit(6 * 2.85, "feet"),
  23198. weight: math.unit(14, "tons"),
  23199. name: "Sitting",
  23200. image: {
  23201. source: "./media/characters/athea/sitting.svg",
  23202. extra: 621 / 581,
  23203. bottom: 0.075
  23204. }
  23205. },
  23206. maw: {
  23207. height: math.unit(7.59498031496063, "feet"),
  23208. name: "Maw",
  23209. image: {
  23210. source: "./media/characters/athea/maw.svg"
  23211. }
  23212. },
  23213. },
  23214. [
  23215. {
  23216. name: "Lap Cat",
  23217. height: math.unit(2.5, "feet")
  23218. },
  23219. {
  23220. name: "Minimacro",
  23221. height: math.unit(15, "feet"),
  23222. default: true
  23223. },
  23224. {
  23225. name: "Macro",
  23226. height: math.unit(120, "feet")
  23227. },
  23228. {
  23229. name: "Macro+",
  23230. height: math.unit(640, "feet")
  23231. },
  23232. {
  23233. name: "Colossus",
  23234. height: math.unit(2.2, "miles")
  23235. },
  23236. ]
  23237. ))
  23238. characterMakers.push(() => makeCharacter(
  23239. { name: "Seroko", species: ["je-stoff-drachen"], tags: ["anthro"] },
  23240. {
  23241. front: {
  23242. height: math.unit(8 + 8 / 12, "feet"),
  23243. weight: math.unit(130, "kg"),
  23244. name: "Front",
  23245. image: {
  23246. source: "./media/characters/seroko/front.svg",
  23247. extra: 1385 / 1280,
  23248. bottom: 0.025
  23249. }
  23250. },
  23251. back: {
  23252. height: math.unit(8 + 8 / 12, "feet"),
  23253. weight: math.unit(130, "kg"),
  23254. name: "Back",
  23255. image: {
  23256. source: "./media/characters/seroko/back.svg",
  23257. extra: 1369 / 1238,
  23258. bottom: 0.018
  23259. }
  23260. },
  23261. frontDressed: {
  23262. height: math.unit(8 + 8 / 12, "feet"),
  23263. weight: math.unit(130, "kg"),
  23264. name: "Front (Dressed)",
  23265. image: {
  23266. source: "./media/characters/seroko/front-dressed.svg",
  23267. extra: 1366 / 1275,
  23268. bottom: 0.03
  23269. }
  23270. },
  23271. },
  23272. [
  23273. {
  23274. name: "Normal",
  23275. height: math.unit(8 + 8 / 12, "feet"),
  23276. default: true
  23277. },
  23278. ]
  23279. ))
  23280. characterMakers.push(() => makeCharacter(
  23281. { name: "Quatzi", species: ["river-snaptail"], tags: ["anthro"] },
  23282. {
  23283. front: {
  23284. height: math.unit(5.5, "feet"),
  23285. weight: math.unit(160, "lb"),
  23286. name: "Front",
  23287. image: {
  23288. source: "./media/characters/quatzi/front.svg",
  23289. extra: 2346 / 2242,
  23290. bottom: 0.015
  23291. }
  23292. },
  23293. },
  23294. [
  23295. {
  23296. name: "Normal",
  23297. height: math.unit(5.5, "feet"),
  23298. default: true
  23299. },
  23300. {
  23301. name: "Big",
  23302. height: math.unit(7.7, "feet")
  23303. },
  23304. ]
  23305. ))
  23306. characterMakers.push(() => makeCharacter(
  23307. { name: "Sen", species: ["red-panda"], tags: ["anthro"] },
  23308. {
  23309. front: {
  23310. height: math.unit(5 + 11 / 12, "feet"),
  23311. weight: math.unit(180, "lb"),
  23312. name: "Front",
  23313. image: {
  23314. source: "./media/characters/sen/front.svg",
  23315. extra: 1321 / 1254,
  23316. bottom: 0.015
  23317. }
  23318. },
  23319. side: {
  23320. height: math.unit(5 + 11 / 12, "feet"),
  23321. weight: math.unit(180, "lb"),
  23322. name: "Side",
  23323. image: {
  23324. source: "./media/characters/sen/side.svg",
  23325. extra: 1321 / 1254,
  23326. bottom: 0.007
  23327. }
  23328. },
  23329. back: {
  23330. height: math.unit(5 + 11 / 12, "feet"),
  23331. weight: math.unit(180, "lb"),
  23332. name: "Back",
  23333. image: {
  23334. source: "./media/characters/sen/back.svg",
  23335. extra: 1321 / 1254
  23336. }
  23337. },
  23338. },
  23339. [
  23340. {
  23341. name: "Normal",
  23342. height: math.unit(5 + 11 / 12, "feet"),
  23343. default: true
  23344. },
  23345. ]
  23346. ))
  23347. characterMakers.push(() => makeCharacter(
  23348. { name: "Fruity", species: ["sylveon"], tags: ["anthro"] },
  23349. {
  23350. front: {
  23351. height: math.unit(166.6, "cm"),
  23352. weight: math.unit(66.6, "kg"),
  23353. name: "Front",
  23354. image: {
  23355. source: "./media/characters/fruity/front.svg",
  23356. extra: 1510 / 1386,
  23357. bottom: 0.04
  23358. }
  23359. },
  23360. back: {
  23361. height: math.unit(166.6, "cm"),
  23362. weight: math.unit(66.6, "lb"),
  23363. name: "Back",
  23364. image: {
  23365. source: "./media/characters/fruity/back.svg",
  23366. extra: 1563 / 1435,
  23367. bottom: 0.005
  23368. }
  23369. },
  23370. },
  23371. [
  23372. {
  23373. name: "Normal",
  23374. height: math.unit(166.6, "cm"),
  23375. default: true
  23376. },
  23377. {
  23378. name: "Demonic",
  23379. height: math.unit(166.6, "feet")
  23380. },
  23381. ]
  23382. ))
  23383. characterMakers.push(() => makeCharacter(
  23384. { name: "Zost", species: ["monster"], tags: ["anthro"] },
  23385. {
  23386. side: {
  23387. height: math.unit(10, "feet"),
  23388. weight: math.unit(500, "lb"),
  23389. name: "Side",
  23390. image: {
  23391. source: "./media/characters/zost/side.svg",
  23392. extra: 2870/2533,
  23393. bottom: 252/3122
  23394. }
  23395. },
  23396. mawFront: {
  23397. height: math.unit(1.08, "meters"),
  23398. name: "Maw (Front)",
  23399. image: {
  23400. source: "./media/characters/zost/maw-front.svg"
  23401. }
  23402. },
  23403. mawSide: {
  23404. height: math.unit(2.66, "feet"),
  23405. name: "Maw (Side)",
  23406. image: {
  23407. source: "./media/characters/zost/maw-side.svg"
  23408. }
  23409. },
  23410. wingspan: {
  23411. height: math.unit(7.4, "feet"),
  23412. name: "Wingspan",
  23413. image: {
  23414. source: "./media/characters/zost/wingspan.svg"
  23415. }
  23416. },
  23417. },
  23418. [
  23419. {
  23420. name: "Normal",
  23421. height: math.unit(10, "feet"),
  23422. default: true
  23423. },
  23424. ]
  23425. ))
  23426. characterMakers.push(() => makeCharacter(
  23427. { name: "Luci", species: ["hellhound"], tags: ["anthro"] },
  23428. {
  23429. front: {
  23430. height: math.unit(5 + 4 / 12, "feet"),
  23431. weight: math.unit(120, "lb"),
  23432. name: "Front",
  23433. image: {
  23434. source: "./media/characters/luci/front.svg",
  23435. extra: 1985 / 1884,
  23436. bottom: 0.04
  23437. }
  23438. },
  23439. back: {
  23440. height: math.unit(5 + 4 / 12, "feet"),
  23441. weight: math.unit(120, "lb"),
  23442. name: "Back",
  23443. image: {
  23444. source: "./media/characters/luci/back.svg",
  23445. extra: 1892 / 1791,
  23446. bottom: 0.002
  23447. }
  23448. },
  23449. },
  23450. [
  23451. {
  23452. name: "Normal",
  23453. height: math.unit(5 + 4 / 12, "feet"),
  23454. default: true
  23455. },
  23456. ]
  23457. ))
  23458. characterMakers.push(() => makeCharacter(
  23459. { name: "2th", species: ["monster"], tags: ["anthro"] },
  23460. {
  23461. front: {
  23462. height: math.unit(1500, "feet"),
  23463. weight: math.unit(3.8e6, "tons"),
  23464. name: "Front",
  23465. image: {
  23466. source: "./media/characters/2th/front.svg",
  23467. extra: 3489 / 3350,
  23468. bottom: 0.1
  23469. }
  23470. },
  23471. foot: {
  23472. height: math.unit(461, "feet"),
  23473. name: "Foot",
  23474. image: {
  23475. source: "./media/characters/2th/foot.svg"
  23476. }
  23477. },
  23478. },
  23479. [
  23480. {
  23481. name: "\"Micro\"",
  23482. height: math.unit(15 + 7 / 12, "feet")
  23483. },
  23484. {
  23485. name: "Normal",
  23486. height: math.unit(1500, "feet"),
  23487. default: true
  23488. },
  23489. {
  23490. name: "Macro",
  23491. height: math.unit(5000, "feet")
  23492. },
  23493. {
  23494. name: "Megamacro",
  23495. height: math.unit(15, "miles")
  23496. },
  23497. {
  23498. name: "Gigamacro",
  23499. height: math.unit(4000, "miles")
  23500. },
  23501. {
  23502. name: "Galactic",
  23503. height: math.unit(50, "AU")
  23504. },
  23505. ]
  23506. ))
  23507. characterMakers.push(() => makeCharacter(
  23508. { name: "Amethyst", species: ["snow-leopard"], tags: ["anthro"] },
  23509. {
  23510. front: {
  23511. height: math.unit(5 + 6 / 12, "feet"),
  23512. weight: math.unit(220, "lb"),
  23513. name: "Front",
  23514. image: {
  23515. source: "./media/characters/amethyst/front.svg",
  23516. extra: 2078 / 2040,
  23517. bottom: 0.045
  23518. }
  23519. },
  23520. back: {
  23521. height: math.unit(5 + 6 / 12, "feet"),
  23522. weight: math.unit(220, "lb"),
  23523. name: "Back",
  23524. image: {
  23525. source: "./media/characters/amethyst/back.svg",
  23526. extra: 2021 / 1989,
  23527. bottom: 0.02
  23528. }
  23529. },
  23530. },
  23531. [
  23532. {
  23533. name: "Normal",
  23534. height: math.unit(5 + 6 / 12, "feet"),
  23535. default: true
  23536. },
  23537. ]
  23538. ))
  23539. characterMakers.push(() => makeCharacter(
  23540. { name: "Yumi Akiyama", species: ["border-collie"], tags: ["anthro"] },
  23541. {
  23542. front: {
  23543. height: math.unit(4 + 11 / 12, "feet"),
  23544. weight: math.unit(120, "lb"),
  23545. name: "Front",
  23546. image: {
  23547. source: "./media/characters/yumi-akiyama/front.svg",
  23548. extra: 1327 / 1235,
  23549. bottom: 0.02
  23550. }
  23551. },
  23552. back: {
  23553. height: math.unit(4 + 11 / 12, "feet"),
  23554. weight: math.unit(120, "lb"),
  23555. name: "Back",
  23556. image: {
  23557. source: "./media/characters/yumi-akiyama/back.svg",
  23558. extra: 1287 / 1245,
  23559. bottom: 0.002
  23560. }
  23561. },
  23562. },
  23563. [
  23564. {
  23565. name: "Galactic",
  23566. height: math.unit(50, "galaxies"),
  23567. default: true
  23568. },
  23569. {
  23570. name: "Universal",
  23571. height: math.unit(100, "universes")
  23572. },
  23573. ]
  23574. ))
  23575. characterMakers.push(() => makeCharacter(
  23576. { name: "Rifter Yrmori", species: ["vendeilen"], tags: ["anthro"] },
  23577. {
  23578. front: {
  23579. height: math.unit(8, "feet"),
  23580. weight: math.unit(500, "lb"),
  23581. name: "Front",
  23582. image: {
  23583. source: "./media/characters/rifter-yrmori/front.svg",
  23584. extra: 1180 / 1125,
  23585. bottom: 0.02
  23586. }
  23587. },
  23588. back: {
  23589. height: math.unit(8, "feet"),
  23590. weight: math.unit(500, "lb"),
  23591. name: "Back",
  23592. image: {
  23593. source: "./media/characters/rifter-yrmori/back.svg",
  23594. extra: 1190 / 1145,
  23595. bottom: 0.001
  23596. }
  23597. },
  23598. wings: {
  23599. height: math.unit(7.75, "feet"),
  23600. weight: math.unit(500, "lb"),
  23601. name: "Wings",
  23602. image: {
  23603. source: "./media/characters/rifter-yrmori/wings.svg",
  23604. extra: 1357 / 1285
  23605. }
  23606. },
  23607. maw: {
  23608. height: math.unit(0.8, "feet"),
  23609. name: "Maw",
  23610. image: {
  23611. source: "./media/characters/rifter-yrmori/maw.svg"
  23612. }
  23613. },
  23614. mawfront: {
  23615. height: math.unit(1.45, "feet"),
  23616. name: "Maw (Front)",
  23617. image: {
  23618. source: "./media/characters/rifter-yrmori/maw-front.svg"
  23619. }
  23620. },
  23621. },
  23622. [
  23623. {
  23624. name: "Normal",
  23625. height: math.unit(8, "feet"),
  23626. default: true
  23627. },
  23628. {
  23629. name: "Macro",
  23630. height: math.unit(42, "meters")
  23631. },
  23632. ]
  23633. ))
  23634. characterMakers.push(() => makeCharacter(
  23635. { name: "Tahajin", species: ["werebeast", "monster", "star-warrior", "fluudrani", "fish", "snake", "construct", "demi"], tags: ["anthro", "naga"] },
  23636. {
  23637. were: {
  23638. height: math.unit(25 + 6 / 12, "feet"),
  23639. weight: math.unit(10000, "lb"),
  23640. name: "Were",
  23641. image: {
  23642. source: "./media/characters/tahajin/were.svg",
  23643. extra: 801 / 770,
  23644. bottom: 0.042
  23645. }
  23646. },
  23647. aquatic: {
  23648. height: math.unit(6 + 4 / 12, "feet"),
  23649. weight: math.unit(160, "lb"),
  23650. name: "Aquatic",
  23651. image: {
  23652. source: "./media/characters/tahajin/aquatic.svg",
  23653. extra: 572 / 542,
  23654. bottom: 0.04
  23655. }
  23656. },
  23657. chow: {
  23658. height: math.unit(8 + 11 / 12, "feet"),
  23659. weight: math.unit(450, "lb"),
  23660. name: "Chow",
  23661. image: {
  23662. source: "./media/characters/tahajin/chow.svg",
  23663. extra: 660 / 640,
  23664. bottom: 0.015
  23665. }
  23666. },
  23667. demiNaga: {
  23668. height: math.unit(6 + 8 / 12, "feet"),
  23669. weight: math.unit(300, "lb"),
  23670. name: "Demi Naga",
  23671. image: {
  23672. source: "./media/characters/tahajin/demi-naga.svg",
  23673. extra: 643 / 615,
  23674. bottom: 0.1
  23675. }
  23676. },
  23677. data: {
  23678. height: math.unit(5, "inches"),
  23679. weight: math.unit(0.1, "lb"),
  23680. name: "Data",
  23681. image: {
  23682. source: "./media/characters/tahajin/data.svg"
  23683. }
  23684. },
  23685. fluu: {
  23686. height: math.unit(5 + 7 / 12, "feet"),
  23687. weight: math.unit(140, "lb"),
  23688. name: "Fluu",
  23689. image: {
  23690. source: "./media/characters/tahajin/fluu.svg",
  23691. extra: 628 / 592,
  23692. bottom: 0.02
  23693. }
  23694. },
  23695. starWarrior: {
  23696. height: math.unit(4 + 5 / 12, "feet"),
  23697. weight: math.unit(50, "lb"),
  23698. name: "Star Warrior",
  23699. image: {
  23700. source: "./media/characters/tahajin/star-warrior.svg"
  23701. }
  23702. },
  23703. },
  23704. [
  23705. {
  23706. name: "Normal",
  23707. height: math.unit(25 + 6 / 12, "feet"),
  23708. default: true
  23709. },
  23710. ]
  23711. ))
  23712. characterMakers.push(() => makeCharacter(
  23713. { name: "Gabira", species: ["weasel", "monster"], tags: ["anthro"] },
  23714. {
  23715. front: {
  23716. height: math.unit(8, "feet"),
  23717. weight: math.unit(350, "lb"),
  23718. name: "Front",
  23719. image: {
  23720. source: "./media/characters/gabira/front.svg",
  23721. extra: 1261/1154,
  23722. bottom: 51/1312
  23723. }
  23724. },
  23725. back: {
  23726. height: math.unit(8, "feet"),
  23727. weight: math.unit(350, "lb"),
  23728. name: "Back",
  23729. image: {
  23730. source: "./media/characters/gabira/back.svg",
  23731. extra: 1265/1163,
  23732. bottom: 46/1311
  23733. }
  23734. },
  23735. head: {
  23736. height: math.unit(2.85, "feet"),
  23737. name: "Head",
  23738. image: {
  23739. source: "./media/characters/gabira/head.svg"
  23740. }
  23741. },
  23742. },
  23743. [
  23744. {
  23745. name: "Normal",
  23746. height: math.unit(8, "feet"),
  23747. default: true
  23748. },
  23749. ]
  23750. ))
  23751. characterMakers.push(() => makeCharacter(
  23752. { name: "Sasha Katraine", species: ["clouded-leopard"], tags: ["anthro"] },
  23753. {
  23754. front: {
  23755. height: math.unit(5 + 3 / 12, "feet"),
  23756. weight: math.unit(137, "lb"),
  23757. name: "Front",
  23758. image: {
  23759. source: "./media/characters/sasha-katraine/front.svg",
  23760. extra: 1745/1694,
  23761. bottom: 37/1782
  23762. }
  23763. },
  23764. back: {
  23765. height: math.unit(5 + 3 / 12, "feet"),
  23766. weight: math.unit(137, "lb"),
  23767. name: "Back",
  23768. image: {
  23769. source: "./media/characters/sasha-katraine/back.svg",
  23770. extra: 1776/1699,
  23771. bottom: 26/1802
  23772. }
  23773. },
  23774. },
  23775. [
  23776. {
  23777. name: "Micro",
  23778. height: math.unit(5, "inches")
  23779. },
  23780. {
  23781. name: "Normal",
  23782. height: math.unit(5 + 3 / 12, "feet"),
  23783. default: true
  23784. },
  23785. ]
  23786. ))
  23787. characterMakers.push(() => makeCharacter(
  23788. { name: "Der", species: ["gryphon"], tags: ["anthro"] },
  23789. {
  23790. side: {
  23791. height: math.unit(4, "inches"),
  23792. weight: math.unit(200, "grams"),
  23793. name: "Side",
  23794. image: {
  23795. source: "./media/characters/der/side.svg",
  23796. extra: 719 / 400,
  23797. bottom: 30.6 / 749.9187
  23798. }
  23799. },
  23800. },
  23801. [
  23802. {
  23803. name: "Micro",
  23804. height: math.unit(4, "inches"),
  23805. default: true
  23806. },
  23807. ]
  23808. ))
  23809. characterMakers.push(() => makeCharacter(
  23810. { name: "Fixerdragon", species: ["dragon"], tags: ["feral"] },
  23811. {
  23812. side: {
  23813. height: math.unit(30, "meters"),
  23814. weight: math.unit(700, "tonnes"),
  23815. name: "Side",
  23816. image: {
  23817. source: "./media/characters/fixerdragon/side.svg",
  23818. extra: (1293.0514 - 116.03) / 1106.86,
  23819. bottom: 116.03 / 1293.0514
  23820. }
  23821. },
  23822. },
  23823. [
  23824. {
  23825. name: "Planck",
  23826. height: math.unit(1.6e-35, "meters")
  23827. },
  23828. {
  23829. name: "Micro",
  23830. height: math.unit(0.4, "meters")
  23831. },
  23832. {
  23833. name: "Normal",
  23834. height: math.unit(30, "meters"),
  23835. default: true
  23836. },
  23837. {
  23838. name: "Megamacro",
  23839. height: math.unit(1.2, "megameters")
  23840. },
  23841. {
  23842. name: "Teramacro",
  23843. height: math.unit(130, "terameters")
  23844. },
  23845. {
  23846. name: "Yottamacro",
  23847. height: math.unit(6200, "yottameters")
  23848. },
  23849. ]
  23850. ));
  23851. characterMakers.push(() => makeCharacter(
  23852. { name: "Kite", species: ["sergal"], tags: ["anthro"] },
  23853. {
  23854. front: {
  23855. height: math.unit(8, "feet"),
  23856. weight: math.unit(250, "lb"),
  23857. name: "Front",
  23858. image: {
  23859. source: "./media/characters/kite/front.svg",
  23860. extra: 2796 / 2659,
  23861. bottom: 0.002
  23862. }
  23863. },
  23864. },
  23865. [
  23866. {
  23867. name: "Normal",
  23868. height: math.unit(8, "feet"),
  23869. default: true
  23870. },
  23871. {
  23872. name: "Macro",
  23873. height: math.unit(360, "feet")
  23874. },
  23875. {
  23876. name: "Megamacro",
  23877. height: math.unit(1500, "feet")
  23878. },
  23879. ]
  23880. ))
  23881. characterMakers.push(() => makeCharacter(
  23882. { name: "Poojawa Vynar", species: ["sabresune"], tags: ["anthro"] },
  23883. {
  23884. anthro_front: {
  23885. height: math.unit(5 + 11/12, "feet"),
  23886. weight: math.unit(170, "lb"),
  23887. name: "Front",
  23888. image: {
  23889. source: "./media/characters/poojawa-vynar/anthro-front.svg",
  23890. extra: 1735/1585,
  23891. bottom: 96/1831
  23892. },
  23893. form: "anthro",
  23894. default: true
  23895. },
  23896. anthro_back: {
  23897. height: math.unit(5 + 11/12, "feet"),
  23898. weight: math.unit(170, "lb"),
  23899. name: "Back",
  23900. image: {
  23901. source: "./media/characters/poojawa-vynar/anthro-back.svg",
  23902. extra: 1749/1607,
  23903. bottom: 28/1777
  23904. },
  23905. form: "anthro"
  23906. },
  23907. anthro_male: {
  23908. height: math.unit(5 + 11/12, "feet"),
  23909. weight: math.unit(170, "lb"),
  23910. name: "Male",
  23911. image: {
  23912. source: "./media/characters/poojawa-vynar/anthro-front-male.svg",
  23913. extra: 1855/1713,
  23914. bottom: 63/1918
  23915. },
  23916. form: "anthro"
  23917. },
  23918. taur_front: {
  23919. height: math.unit(5 + 7/12, "feet"),
  23920. weight: math.unit(170, "lb"),
  23921. name: "Front",
  23922. image: {
  23923. source: "./media/characters/poojawa-vynar/taur-front.svg",
  23924. extra: 1151/1059,
  23925. bottom: 356/1507
  23926. },
  23927. form: "taur",
  23928. default: true
  23929. },
  23930. anthro_frontDressed: {
  23931. height: math.unit(5 + 11/12, "feet"),
  23932. weight: math.unit(170, "lb"),
  23933. name: "Front (Dressed)",
  23934. image: {
  23935. source: "./media/characters/poojawa-vynar/anthro-front-dressed.svg",
  23936. extra: 1735/1585,
  23937. bottom: 96/1831
  23938. },
  23939. form: "anthro"
  23940. },
  23941. anthro_backDressed: {
  23942. height: math.unit(5 + 11/12, "feet"),
  23943. weight: math.unit(170, "lb"),
  23944. name: "Back (Dressed)",
  23945. image: {
  23946. source: "./media/characters/poojawa-vynar/anthro-back-dressed.svg",
  23947. extra: 1749/1607,
  23948. bottom: 28/1777
  23949. },
  23950. form: "anthro"
  23951. },
  23952. anthro_maleDressed: {
  23953. height: math.unit(5 + 11/12, "feet"),
  23954. weight: math.unit(170, "lb"),
  23955. name: "Male (Dressed)",
  23956. image: {
  23957. source: "./media/characters/poojawa-vynar/anthro-front-male-dressed.svg",
  23958. extra: 1855/1713,
  23959. bottom: 63/1918
  23960. },
  23961. form: "anthro"
  23962. },
  23963. taur_frontDressed: {
  23964. height: math.unit(5 + 7/12, "feet"),
  23965. weight: math.unit(170, "lb"),
  23966. name: "Front (Dressed)",
  23967. image: {
  23968. source: "./media/characters/poojawa-vynar/taur-front-dressed.svg",
  23969. extra: 1151/1059,
  23970. bottom: 356/1507
  23971. },
  23972. form: "taur"
  23973. },
  23974. maw: {
  23975. height: math.unit(1.46, "feet"),
  23976. name: "Maw",
  23977. image: {
  23978. source: "./media/characters/poojawa-vynar/maw.svg"
  23979. },
  23980. allForms: true
  23981. },
  23982. head: {
  23983. height: math.unit(2.34, "feet"),
  23984. name: "Head",
  23985. image: {
  23986. source: "./media/characters/poojawa-vynar/head.svg"
  23987. },
  23988. allForms: true
  23989. },
  23990. leftPaw: {
  23991. height: math.unit(1.72, "feet"),
  23992. name: "Left Paw",
  23993. image: {
  23994. source: "./media/characters/poojawa-vynar/paw-left.svg"
  23995. },
  23996. allForms: true
  23997. },
  23998. rightPaw: {
  23999. height: math.unit(1.61, "feet"),
  24000. name: "Right Paw",
  24001. image: {
  24002. source: "./media/characters/poojawa-vynar/paw-right.svg"
  24003. },
  24004. allForms: true
  24005. },
  24006. toering: {
  24007. height: math.unit(2.9, "inches"),
  24008. name: "Toering",
  24009. image: {
  24010. source: "./media/characters/poojawa-vynar/toering.svg"
  24011. },
  24012. allForms: true
  24013. },
  24014. shaft: {
  24015. height: math.unit(0.625, "feet"),
  24016. name: "Shaft",
  24017. image: {
  24018. source: "./media/characters/poojawa-vynar/shaft.svg"
  24019. },
  24020. allForms: true
  24021. },
  24022. spade: {
  24023. height: math.unit(0.42, "feet"),
  24024. name: "Spade",
  24025. image: {
  24026. source: "./media/characters/poojawa-vynar/spade.svg"
  24027. },
  24028. allForms: true
  24029. },
  24030. },
  24031. [
  24032. {
  24033. name: "Shortstack",
  24034. height: math.unit(4, "feet"),
  24035. form: "anthro"
  24036. },
  24037. {
  24038. name: "Normal",
  24039. height: math.unit(5 + 11 / 12, "feet"),
  24040. form: "anthro",
  24041. default: true
  24042. },
  24043. {
  24044. name: "Tauric",
  24045. height: math.unit(4, "meters"),
  24046. form: "taur",
  24047. default: true
  24048. },
  24049. ],
  24050. {
  24051. "anthro": {
  24052. name: "Anthro",
  24053. default: true
  24054. },
  24055. "taur": {
  24056. name: "Taur",
  24057. },
  24058. }
  24059. ))
  24060. characterMakers.push(() => makeCharacter(
  24061. { name: "Violette", species: ["doberman"], tags: ["anthro"] },
  24062. {
  24063. front: {
  24064. height: math.unit(293, "meters"),
  24065. weight: math.unit(70400, "tons"),
  24066. name: "Front",
  24067. image: {
  24068. source: "./media/characters/violette/front.svg",
  24069. extra: 1227 / 1180,
  24070. bottom: 0.005
  24071. }
  24072. },
  24073. back: {
  24074. height: math.unit(293, "meters"),
  24075. weight: math.unit(70400, "tons"),
  24076. name: "Back",
  24077. image: {
  24078. source: "./media/characters/violette/back.svg",
  24079. extra: 1227 / 1180,
  24080. bottom: 0.005
  24081. }
  24082. },
  24083. },
  24084. [
  24085. {
  24086. name: "Macro",
  24087. height: math.unit(293, "meters"),
  24088. default: true
  24089. },
  24090. ]
  24091. ))
  24092. characterMakers.push(() => makeCharacter(
  24093. { name: "Alessandra", species: ["fox"], tags: ["anthro"] },
  24094. {
  24095. front: {
  24096. height: math.unit(1050, "feet"),
  24097. weight: math.unit(200000, "tons"),
  24098. name: "Front",
  24099. image: {
  24100. source: "./media/characters/alessandra/front.svg",
  24101. extra: 960 / 912,
  24102. bottom: 0.06
  24103. }
  24104. },
  24105. },
  24106. [
  24107. {
  24108. name: "Macro",
  24109. height: math.unit(1050, "feet")
  24110. },
  24111. {
  24112. name: "Macro+",
  24113. height: math.unit(900, "meters"),
  24114. default: true
  24115. },
  24116. ]
  24117. ))
  24118. characterMakers.push(() => makeCharacter(
  24119. { name: "Person", species: ["cat", "dragon"], tags: ["anthro"] },
  24120. {
  24121. front: {
  24122. height: math.unit(5, "feet"),
  24123. weight: math.unit(187, "lb"),
  24124. name: "Front",
  24125. image: {
  24126. source: "./media/characters/person/front.svg",
  24127. extra: 3087 / 2945,
  24128. bottom: 91 / 3181
  24129. }
  24130. },
  24131. },
  24132. [
  24133. {
  24134. name: "Micro",
  24135. height: math.unit(3, "inches")
  24136. },
  24137. {
  24138. name: "Normal",
  24139. height: math.unit(5, "feet"),
  24140. default: true
  24141. },
  24142. {
  24143. name: "Macro",
  24144. height: math.unit(90, "feet")
  24145. },
  24146. {
  24147. name: "Max Size",
  24148. height: math.unit(280, "feet")
  24149. },
  24150. ]
  24151. ))
  24152. characterMakers.push(() => makeCharacter(
  24153. { name: "Ty", species: ["fox"], tags: ["anthro"] },
  24154. {
  24155. front: {
  24156. height: math.unit(4.5, "meters"),
  24157. weight: math.unit(3200, "lb"),
  24158. name: "Front",
  24159. image: {
  24160. source: "./media/characters/ty/front.svg",
  24161. extra: 1038 / 960,
  24162. bottom: 31.156 / 1068
  24163. }
  24164. },
  24165. back: {
  24166. height: math.unit(4.5, "meters"),
  24167. weight: math.unit(3200, "lb"),
  24168. name: "Back",
  24169. image: {
  24170. source: "./media/characters/ty/back.svg",
  24171. extra: 1044 / 966,
  24172. bottom: 7.48 / 1049
  24173. }
  24174. },
  24175. },
  24176. [
  24177. {
  24178. name: "Normal",
  24179. height: math.unit(4.5, "meters"),
  24180. default: true
  24181. },
  24182. ]
  24183. ))
  24184. characterMakers.push(() => makeCharacter(
  24185. { name: "Rocky", species: ["kobold"], tags: ["anthro"] },
  24186. {
  24187. front: {
  24188. height: math.unit(5 + 4 / 12, "feet"),
  24189. weight: math.unit(115, "lb"),
  24190. name: "Front",
  24191. image: {
  24192. source: "./media/characters/rocky/front.svg",
  24193. extra: 1012 / 975,
  24194. bottom: 54 / 1066
  24195. }
  24196. },
  24197. },
  24198. [
  24199. {
  24200. name: "Normal",
  24201. height: math.unit(5 + 4 / 12, "feet"),
  24202. default: true
  24203. },
  24204. ]
  24205. ))
  24206. characterMakers.push(() => makeCharacter(
  24207. { name: "Ruin", species: ["sergal"], tags: ["anthro", "feral"] },
  24208. {
  24209. upright: {
  24210. height: math.unit(6, "meters"),
  24211. weight: math.unit(4000, "kg"),
  24212. name: "Upright",
  24213. image: {
  24214. source: "./media/characters/ruin/upright.svg",
  24215. extra: 668 / 661,
  24216. bottom: 42 / 799.8396
  24217. }
  24218. },
  24219. },
  24220. [
  24221. {
  24222. name: "Normal",
  24223. height: math.unit(6, "meters"),
  24224. default: true
  24225. },
  24226. ]
  24227. ))
  24228. characterMakers.push(() => makeCharacter(
  24229. { name: "Robin", species: ["coyote"], tags: ["anthro"] },
  24230. {
  24231. front: {
  24232. height: math.unit(5, "feet"),
  24233. weight: math.unit(106, "lb"),
  24234. name: "Front",
  24235. image: {
  24236. source: "./media/characters/robin/front.svg",
  24237. extra: 862 / 799,
  24238. bottom: 42.4 / 914.8856
  24239. }
  24240. },
  24241. },
  24242. [
  24243. {
  24244. name: "Normal",
  24245. height: math.unit(5, "feet"),
  24246. default: true
  24247. },
  24248. ]
  24249. ))
  24250. characterMakers.push(() => makeCharacter(
  24251. { name: "Saian", species: ["ventura"], tags: ["feral"] },
  24252. {
  24253. side: {
  24254. height: math.unit(3, "feet"),
  24255. weight: math.unit(225, "lb"),
  24256. name: "Side",
  24257. image: {
  24258. source: "./media/characters/saian/side.svg",
  24259. extra: 566 / 356,
  24260. bottom: 79.7 / 643
  24261. }
  24262. },
  24263. maw: {
  24264. height: math.unit(2.85, "feet"),
  24265. name: "Maw",
  24266. image: {
  24267. source: "./media/characters/saian/maw.svg"
  24268. }
  24269. },
  24270. },
  24271. [
  24272. {
  24273. name: "Normal",
  24274. height: math.unit(3, "feet"),
  24275. default: true
  24276. },
  24277. ]
  24278. ))
  24279. characterMakers.push(() => makeCharacter(
  24280. { name: "Equus Silvermane", species: ["horse"], tags: ["anthro"] },
  24281. {
  24282. side: {
  24283. height: math.unit(8, "feet"),
  24284. weight: math.unit(300, "lb"),
  24285. name: "Side",
  24286. image: {
  24287. source: "./media/characters/equus-silvermane/side.svg",
  24288. extra: 2176 / 2050,
  24289. bottom: 65.7 / 2245
  24290. }
  24291. },
  24292. front: {
  24293. height: math.unit(8, "feet"),
  24294. weight: math.unit(300, "lb"),
  24295. name: "Front",
  24296. image: {
  24297. source: "./media/characters/equus-silvermane/front.svg",
  24298. extra: 4633 / 4400,
  24299. bottom: 71.3 / 4706.915
  24300. }
  24301. },
  24302. sideStepping: {
  24303. height: math.unit(8, "feet"),
  24304. weight: math.unit(300, "lb"),
  24305. name: "Side (Stepping)",
  24306. image: {
  24307. source: "./media/characters/equus-silvermane/side-stepping.svg",
  24308. extra: 1968 / 1860,
  24309. bottom: 16.4 / 1989
  24310. }
  24311. },
  24312. },
  24313. [
  24314. {
  24315. name: "Normal",
  24316. height: math.unit(8, "feet")
  24317. },
  24318. {
  24319. name: "Minimacro",
  24320. height: math.unit(75, "feet"),
  24321. default: true
  24322. },
  24323. {
  24324. name: "Macro",
  24325. height: math.unit(150, "feet")
  24326. },
  24327. {
  24328. name: "Macro+",
  24329. height: math.unit(1000, "feet")
  24330. },
  24331. {
  24332. name: "Megamacro",
  24333. height: math.unit(1, "mile")
  24334. },
  24335. ]
  24336. ))
  24337. characterMakers.push(() => makeCharacter(
  24338. { name: "Windar", species: ["dragon"], tags: ["feral"] },
  24339. {
  24340. side: {
  24341. height: math.unit(20, "feet"),
  24342. weight: math.unit(30000, "kg"),
  24343. name: "Side",
  24344. image: {
  24345. source: "./media/characters/windar/side.svg",
  24346. extra: 1491 / 1248,
  24347. bottom: 82.56 / 1568
  24348. }
  24349. },
  24350. },
  24351. [
  24352. {
  24353. name: "Normal",
  24354. height: math.unit(20, "feet"),
  24355. default: true
  24356. },
  24357. ]
  24358. ))
  24359. characterMakers.push(() => makeCharacter(
  24360. { name: "Melody", species: ["dragon"], tags: ["feral"] },
  24361. {
  24362. side: {
  24363. height: math.unit(15.66, "feet"),
  24364. weight: math.unit(150, "lb"),
  24365. name: "Side",
  24366. image: {
  24367. source: "./media/characters/melody/side.svg",
  24368. extra: 1097 / 944,
  24369. bottom: 11.8 / 1109
  24370. }
  24371. },
  24372. sideOutfit: {
  24373. height: math.unit(15.66, "feet"),
  24374. weight: math.unit(150, "lb"),
  24375. name: "Side (Outfit)",
  24376. image: {
  24377. source: "./media/characters/melody/side-outfit.svg",
  24378. extra: 1097 / 944,
  24379. bottom: 11.8 / 1109
  24380. }
  24381. },
  24382. },
  24383. [
  24384. {
  24385. name: "Normal",
  24386. height: math.unit(15.66, "feet"),
  24387. default: true
  24388. },
  24389. ]
  24390. ))
  24391. characterMakers.push(() => makeCharacter(
  24392. { name: "Windera", species: ["dragon"], tags: ["anthro"] },
  24393. {
  24394. armoredFront: {
  24395. height: math.unit(8, "feet"),
  24396. weight: math.unit(325, "lb"),
  24397. name: "Front",
  24398. image: {
  24399. source: "./media/characters/windera/armored-front.svg",
  24400. extra: 1830/1598,
  24401. bottom: 151/1981
  24402. },
  24403. form: "armored",
  24404. default: true
  24405. },
  24406. macroFront: {
  24407. height: math.unit(70, "feet"),
  24408. weight: math.unit(315453, "lb"),
  24409. name: "Front",
  24410. image: {
  24411. source: "./media/characters/windera/macro-front.svg",
  24412. extra: 963/883,
  24413. bottom: 23/986
  24414. },
  24415. form: "macro",
  24416. default: true
  24417. },
  24418. },
  24419. [
  24420. {
  24421. name: "Normal",
  24422. height: math.unit(8, "feet"),
  24423. default: true,
  24424. form: "armored"
  24425. },
  24426. {
  24427. name: "Normal",
  24428. height: math.unit(70, "feet"),
  24429. default: true,
  24430. form: "macro"
  24431. },
  24432. ],
  24433. {
  24434. "armored": {
  24435. name: "Armored",
  24436. default: true
  24437. },
  24438. "macro": {
  24439. name: "Macro",
  24440. },
  24441. }
  24442. ))
  24443. characterMakers.push(() => makeCharacter(
  24444. { name: "Sonear", species: ["lugia"], tags: ["feral"] },
  24445. {
  24446. front: {
  24447. height: math.unit(28.75, "feet"),
  24448. weight: math.unit(2000, "kg"),
  24449. name: "Front",
  24450. image: {
  24451. source: "./media/characters/sonear/front.svg",
  24452. extra: 1041.1 / 964.9,
  24453. bottom: 53.7 / 1096.6
  24454. }
  24455. },
  24456. },
  24457. [
  24458. {
  24459. name: "Normal",
  24460. height: math.unit(28.75, "feet"),
  24461. default: true
  24462. },
  24463. ]
  24464. ))
  24465. characterMakers.push(() => makeCharacter(
  24466. { name: "Kanara", species: ["dinosaur"], tags: ["feral"] },
  24467. {
  24468. side: {
  24469. height: math.unit(25.5, "feet"),
  24470. weight: math.unit(23000, "kg"),
  24471. name: "Side",
  24472. image: {
  24473. source: "./media/characters/kanara/side.svg"
  24474. }
  24475. },
  24476. },
  24477. [
  24478. {
  24479. name: "Normal",
  24480. height: math.unit(25.5, "feet"),
  24481. default: true
  24482. },
  24483. ]
  24484. ))
  24485. characterMakers.push(() => makeCharacter(
  24486. { name: "Ereus", species: ["gryphon"], tags: ["feral"] },
  24487. {
  24488. side: {
  24489. height: math.unit(10, "feet"),
  24490. weight: math.unit(1000, "kg"),
  24491. name: "Side",
  24492. image: {
  24493. source: "./media/characters/ereus/side.svg",
  24494. extra: 1157 / 959,
  24495. bottom: 153 / 1312.5
  24496. }
  24497. },
  24498. },
  24499. [
  24500. {
  24501. name: "Normal",
  24502. height: math.unit(10, "feet"),
  24503. default: true
  24504. },
  24505. ]
  24506. ))
  24507. characterMakers.push(() => makeCharacter(
  24508. { name: "E-ter", species: ["wolf", "robot"], tags: ["feral"] },
  24509. {
  24510. side: {
  24511. height: math.unit(4.5, "feet"),
  24512. weight: math.unit(500, "lb"),
  24513. name: "Side",
  24514. image: {
  24515. source: "./media/characters/e-ter/side.svg",
  24516. extra: 1550 / 1248,
  24517. bottom: 146 / 1694
  24518. }
  24519. },
  24520. },
  24521. [
  24522. {
  24523. name: "Normal",
  24524. height: math.unit(4.5, "feet"),
  24525. default: true
  24526. },
  24527. ]
  24528. ))
  24529. characterMakers.push(() => makeCharacter(
  24530. { name: "Yamie", species: ["orca"], tags: ["feral"] },
  24531. {
  24532. side: {
  24533. height: math.unit(9.7, "feet"),
  24534. weight: math.unit(4000, "kg"),
  24535. name: "Side",
  24536. image: {
  24537. source: "./media/characters/yamie/side.svg"
  24538. }
  24539. },
  24540. },
  24541. [
  24542. {
  24543. name: "Normal",
  24544. height: math.unit(9.7, "feet"),
  24545. default: true
  24546. },
  24547. ]
  24548. ))
  24549. characterMakers.push(() => makeCharacter(
  24550. { name: "Anders", species: ["unicorn", "deity"], tags: ["anthro"] },
  24551. {
  24552. front: {
  24553. height: math.unit(50, "feet"),
  24554. weight: math.unit(50000, "kg"),
  24555. name: "Front",
  24556. image: {
  24557. source: "./media/characters/anders/front.svg",
  24558. extra: 570 / 539,
  24559. bottom: 14.7 / 586.7
  24560. }
  24561. },
  24562. },
  24563. [
  24564. {
  24565. name: "Large",
  24566. height: math.unit(50, "feet")
  24567. },
  24568. {
  24569. name: "Macro",
  24570. height: math.unit(2000, "feet"),
  24571. default: true
  24572. },
  24573. {
  24574. name: "Megamacro",
  24575. height: math.unit(12, "miles")
  24576. },
  24577. ]
  24578. ))
  24579. characterMakers.push(() => makeCharacter(
  24580. { name: "Reban", species: ["dragon"], tags: ["anthro"] },
  24581. {
  24582. front: {
  24583. height: math.unit(7 + 2 / 12, "feet"),
  24584. weight: math.unit(300, "lb"),
  24585. name: "Front",
  24586. image: {
  24587. source: "./media/characters/reban/front.svg",
  24588. extra: 1287/1212,
  24589. bottom: 148/1435
  24590. }
  24591. },
  24592. head: {
  24593. height: math.unit(1.95, "feet"),
  24594. name: "Head",
  24595. image: {
  24596. source: "./media/characters/reban/head.svg"
  24597. }
  24598. },
  24599. maw: {
  24600. height: math.unit(0.95, "feet"),
  24601. name: "Maw",
  24602. image: {
  24603. source: "./media/characters/reban/maw.svg"
  24604. }
  24605. },
  24606. foot: {
  24607. height: math.unit(1.65, "feet"),
  24608. name: "Foot",
  24609. image: {
  24610. source: "./media/characters/reban/foot.svg"
  24611. }
  24612. },
  24613. dick: {
  24614. height: math.unit(7 / 5, "feet"),
  24615. name: "Dick",
  24616. image: {
  24617. source: "./media/characters/reban/dick.svg"
  24618. }
  24619. },
  24620. },
  24621. [
  24622. {
  24623. name: "Natural Height",
  24624. height: math.unit(7 + 2 / 12, "feet")
  24625. },
  24626. {
  24627. name: "Macro",
  24628. height: math.unit(500, "feet"),
  24629. default: true
  24630. },
  24631. {
  24632. name: "Canon Height",
  24633. height: math.unit(50, "AU")
  24634. },
  24635. ]
  24636. ))
  24637. characterMakers.push(() => makeCharacter(
  24638. { name: "Terrance Keayes", species: ["vole"], tags: ["anthro"] },
  24639. {
  24640. front: {
  24641. height: math.unit(6, "feet"),
  24642. weight: math.unit(150, "lb"),
  24643. name: "Front",
  24644. image: {
  24645. source: "./media/characters/terrance-keayes/front.svg",
  24646. extra: 1.005,
  24647. bottom: 151 / 1615
  24648. }
  24649. },
  24650. side: {
  24651. height: math.unit(6, "feet"),
  24652. weight: math.unit(150, "lb"),
  24653. name: "Side",
  24654. image: {
  24655. source: "./media/characters/terrance-keayes/side.svg",
  24656. extra: 1.005,
  24657. bottom: 129.4 / 1544
  24658. }
  24659. },
  24660. back: {
  24661. height: math.unit(6, "feet"),
  24662. weight: math.unit(150, "lb"),
  24663. name: "Back",
  24664. image: {
  24665. source: "./media/characters/terrance-keayes/back.svg",
  24666. extra: 1.005,
  24667. bottom: 58.4 / 1557.3
  24668. }
  24669. },
  24670. dick: {
  24671. height: math.unit(6 * 0.208, "feet"),
  24672. name: "Dick",
  24673. image: {
  24674. source: "./media/characters/terrance-keayes/dick.svg"
  24675. }
  24676. },
  24677. },
  24678. [
  24679. {
  24680. name: "Canon Height",
  24681. height: math.unit(35, "miles"),
  24682. default: true
  24683. },
  24684. ]
  24685. ))
  24686. characterMakers.push(() => makeCharacter(
  24687. { name: "Ofelia", species: ["gigantosaurus"], tags: ["anthro"] },
  24688. {
  24689. front: {
  24690. height: math.unit(6, "feet"),
  24691. weight: math.unit(150, "lb"),
  24692. name: "Front",
  24693. image: {
  24694. source: "./media/characters/ofelia/front.svg",
  24695. extra: 1130/1117,
  24696. bottom: 91/1221
  24697. }
  24698. },
  24699. back: {
  24700. height: math.unit(6, "feet"),
  24701. weight: math.unit(150, "lb"),
  24702. name: "Back",
  24703. image: {
  24704. source: "./media/characters/ofelia/back.svg",
  24705. extra: 1172/1159,
  24706. bottom: 28/1200
  24707. }
  24708. },
  24709. maw: {
  24710. height: math.unit(1, "feet"),
  24711. name: "Maw",
  24712. image: {
  24713. source: "./media/characters/ofelia/maw.svg"
  24714. }
  24715. },
  24716. foot: {
  24717. height: math.unit(1.949, "feet"),
  24718. name: "Foot",
  24719. image: {
  24720. source: "./media/characters/ofelia/foot.svg"
  24721. }
  24722. },
  24723. },
  24724. [
  24725. {
  24726. name: "Canon Height",
  24727. height: math.unit(2000, "miles"),
  24728. default: true
  24729. },
  24730. ]
  24731. ))
  24732. characterMakers.push(() => makeCharacter(
  24733. { name: "Samuel", species: ["snow-leopard"], tags: ["anthro"] },
  24734. {
  24735. front: {
  24736. height: math.unit(6, "feet"),
  24737. weight: math.unit(150, "lb"),
  24738. name: "Front",
  24739. image: {
  24740. source: "./media/characters/samuel/front.svg",
  24741. extra: 265 / 258,
  24742. bottom: 2 / 266.1566
  24743. }
  24744. },
  24745. },
  24746. [
  24747. {
  24748. name: "Macro",
  24749. height: math.unit(100, "feet"),
  24750. default: true
  24751. },
  24752. {
  24753. name: "Full Size",
  24754. height: math.unit(1000, "miles")
  24755. },
  24756. ]
  24757. ))
  24758. characterMakers.push(() => makeCharacter(
  24759. { name: "Beishir Kiel", species: ["orca", "monster"], tags: ["anthro"] },
  24760. {
  24761. front: {
  24762. height: math.unit(6, "feet"),
  24763. weight: math.unit(300, "lb"),
  24764. name: "Front",
  24765. image: {
  24766. source: "./media/characters/beishir-kiel/front.svg",
  24767. extra: 569 / 547,
  24768. bottom: 41.9 / 609
  24769. }
  24770. },
  24771. maw: {
  24772. height: math.unit(6 * 0.202, "feet"),
  24773. name: "Maw",
  24774. image: {
  24775. source: "./media/characters/beishir-kiel/maw.svg"
  24776. }
  24777. },
  24778. },
  24779. [
  24780. {
  24781. name: "Macro",
  24782. height: math.unit(300, "feet"),
  24783. default: true
  24784. },
  24785. ]
  24786. ))
  24787. characterMakers.push(() => makeCharacter(
  24788. { name: "Logan Grey", species: ["fox"], tags: ["anthro"] },
  24789. {
  24790. front: {
  24791. height: math.unit(5 + 7/12, "feet"),
  24792. weight: math.unit(120, "lb"),
  24793. name: "Front",
  24794. image: {
  24795. source: "./media/characters/logan-grey/front.svg",
  24796. extra: 1836/1738,
  24797. bottom: 108/1944
  24798. }
  24799. },
  24800. back: {
  24801. height: math.unit(5 + 7/12, "feet"),
  24802. weight: math.unit(120, "lb"),
  24803. name: "Back",
  24804. image: {
  24805. source: "./media/characters/logan-grey/back.svg",
  24806. extra: 1880/1794,
  24807. bottom: 24/1904
  24808. }
  24809. },
  24810. frontSfw: {
  24811. height: math.unit(5 + 7/12, "feet"),
  24812. weight: math.unit(120, "lb"),
  24813. name: "Front (SFW)",
  24814. image: {
  24815. source: "./media/characters/logan-grey/front-sfw.svg",
  24816. extra: 1836/1738,
  24817. bottom: 108/1944
  24818. }
  24819. },
  24820. backSfw: {
  24821. height: math.unit(5 + 7/12, "feet"),
  24822. weight: math.unit(120, "lb"),
  24823. name: "Back (SFW)",
  24824. image: {
  24825. source: "./media/characters/logan-grey/back-sfw.svg",
  24826. extra: 1880/1794,
  24827. bottom: 24/1904
  24828. }
  24829. },
  24830. hands: {
  24831. height: math.unit(0.84, "feet"),
  24832. name: "Hands",
  24833. image: {
  24834. source: "./media/characters/logan-grey/hands.svg"
  24835. }
  24836. },
  24837. paws: {
  24838. height: math.unit(0.72, "feet"),
  24839. name: "Paws",
  24840. image: {
  24841. source: "./media/characters/logan-grey/paws.svg"
  24842. }
  24843. },
  24844. cock: {
  24845. height: math.unit(1.45, "feet"),
  24846. name: "Cock",
  24847. image: {
  24848. source: "./media/characters/logan-grey/cock.svg"
  24849. }
  24850. },
  24851. cockAlt: {
  24852. height: math.unit(1.437, "feet"),
  24853. name: "Cock (alt)",
  24854. image: {
  24855. source: "./media/characters/logan-grey/cock-alt.svg"
  24856. }
  24857. },
  24858. },
  24859. [
  24860. {
  24861. name: "Normal",
  24862. height: math.unit(5 + 8 / 12, "feet")
  24863. },
  24864. {
  24865. name: "The 500 Foot Femboy",
  24866. height: math.unit(500, "feet"),
  24867. default: true
  24868. },
  24869. {
  24870. name: "Megmacro",
  24871. height: math.unit(20, "miles")
  24872. },
  24873. ]
  24874. ))
  24875. characterMakers.push(() => makeCharacter(
  24876. { name: "Draganta", species: ["dragon"], tags: ["anthro"] },
  24877. {
  24878. front: {
  24879. height: math.unit(8 + 2 / 12, "feet"),
  24880. weight: math.unit(275, "lb"),
  24881. name: "Front",
  24882. image: {
  24883. source: "./media/characters/draganta/front.svg",
  24884. extra: 1177 / 1135,
  24885. bottom: 33.46 / 1212.1
  24886. }
  24887. },
  24888. },
  24889. [
  24890. {
  24891. name: "Normal",
  24892. height: math.unit(8 + 6 / 12, "feet"),
  24893. default: true
  24894. },
  24895. {
  24896. name: "Macro",
  24897. height: math.unit(150, "feet")
  24898. },
  24899. {
  24900. name: "Megamacro",
  24901. height: math.unit(1000, "miles")
  24902. },
  24903. ]
  24904. ))
  24905. characterMakers.push(() => makeCharacter(
  24906. { name: "Voski", species: ["corvid"], tags: ["anthro"] },
  24907. {
  24908. front: {
  24909. height: math.unit(1.72, "m"),
  24910. weight: math.unit(80, "lb"),
  24911. name: "Front",
  24912. image: {
  24913. source: "./media/characters/voski/front.svg",
  24914. extra: 2076.22 / 2022.4,
  24915. bottom: 102.7 / 2177.3866
  24916. }
  24917. },
  24918. frontFlaccid: {
  24919. height: math.unit(1.72, "m"),
  24920. weight: math.unit(80, "lb"),
  24921. name: "Front (Flaccid)",
  24922. image: {
  24923. source: "./media/characters/voski/front-flaccid.svg",
  24924. extra: 2076.22 / 2022.4,
  24925. bottom: 102.7 / 2177.3866
  24926. }
  24927. },
  24928. frontErect: {
  24929. height: math.unit(1.72, "m"),
  24930. weight: math.unit(80, "lb"),
  24931. name: "Front (Erect)",
  24932. image: {
  24933. source: "./media/characters/voski/front-erect.svg",
  24934. extra: 2076.22 / 2022.4,
  24935. bottom: 102.7 / 2177.3866
  24936. }
  24937. },
  24938. back: {
  24939. height: math.unit(1.72, "m"),
  24940. weight: math.unit(80, "lb"),
  24941. name: "Back",
  24942. image: {
  24943. source: "./media/characters/voski/back.svg",
  24944. extra: 2104 / 2051,
  24945. bottom: 10.45 / 2113.63
  24946. }
  24947. },
  24948. },
  24949. [
  24950. {
  24951. name: "Normal",
  24952. height: math.unit(1.72, "m")
  24953. },
  24954. {
  24955. name: "Macro",
  24956. height: math.unit(55, "m"),
  24957. default: true
  24958. },
  24959. {
  24960. name: "Macro+",
  24961. height: math.unit(300, "m")
  24962. },
  24963. {
  24964. name: "Macro++",
  24965. height: math.unit(700, "m")
  24966. },
  24967. {
  24968. name: "Macro+++",
  24969. height: math.unit(4500, "m")
  24970. },
  24971. {
  24972. name: "Macro++++",
  24973. height: math.unit(45, "km")
  24974. },
  24975. {
  24976. name: "Macro+++++",
  24977. height: math.unit(1220, "km")
  24978. },
  24979. ]
  24980. ))
  24981. characterMakers.push(() => makeCharacter(
  24982. { name: "Icowom Lee", species: ["wolf"], tags: ["anthro"] },
  24983. {
  24984. front: {
  24985. height: math.unit(2.3, "m"),
  24986. weight: math.unit(304, "kg"),
  24987. name: "Front",
  24988. image: {
  24989. source: "./media/characters/icowom-lee/front.svg",
  24990. extra: 985 / 955,
  24991. bottom: 25.4 / 1012
  24992. }
  24993. },
  24994. fronttentacles: {
  24995. height: math.unit(2.3, "m"),
  24996. weight: math.unit(304, "kg"),
  24997. name: "Front-tentacles",
  24998. image: {
  24999. source: "./media/characters/icowom-lee/front-tentacles.svg",
  25000. extra: 985 / 955,
  25001. bottom: 25.4 / 1012
  25002. }
  25003. },
  25004. back: {
  25005. height: math.unit(2.3, "m"),
  25006. weight: math.unit(304, "kg"),
  25007. name: "Back",
  25008. image: {
  25009. source: "./media/characters/icowom-lee/back.svg",
  25010. extra: 975 / 954,
  25011. bottom: 9.5 / 985
  25012. }
  25013. },
  25014. backtentacles: {
  25015. height: math.unit(2.3, "m"),
  25016. weight: math.unit(304, "kg"),
  25017. name: "Back-tentacles",
  25018. image: {
  25019. source: "./media/characters/icowom-lee/back-tentacles.svg",
  25020. extra: 975 / 954,
  25021. bottom: 9.5 / 985
  25022. }
  25023. },
  25024. frontDressed: {
  25025. height: math.unit(2.3, "m"),
  25026. weight: math.unit(304, "kg"),
  25027. name: "Front (Dressed)",
  25028. image: {
  25029. source: "./media/characters/icowom-lee/front-dressed.svg",
  25030. extra: 3076 / 2933,
  25031. bottom: 51.4 / 3125.1889
  25032. }
  25033. },
  25034. rump: {
  25035. height: math.unit(0.776, "meters"),
  25036. name: "Rump",
  25037. image: {
  25038. source: "./media/characters/icowom-lee/rump.svg"
  25039. }
  25040. },
  25041. genitals: {
  25042. height: math.unit(0.78, "meters"),
  25043. name: "Genitals",
  25044. image: {
  25045. source: "./media/characters/icowom-lee/genitals.svg"
  25046. }
  25047. },
  25048. },
  25049. [
  25050. {
  25051. name: "Normal",
  25052. height: math.unit(2.3, "meters"),
  25053. default: true
  25054. },
  25055. {
  25056. name: "Macro",
  25057. height: math.unit(94, "meters"),
  25058. default: true
  25059. },
  25060. ]
  25061. ))
  25062. characterMakers.push(() => makeCharacter(
  25063. { name: "Shock Diamond", species: ["pharaoh-hound", "aeromorph"], tags: ["anthro"] },
  25064. {
  25065. front: {
  25066. height: math.unit(22, "meters"),
  25067. weight: math.unit(21000, "kg"),
  25068. name: "Front",
  25069. image: {
  25070. source: "./media/characters/shock-diamond/front.svg",
  25071. extra: 2204 / 2053,
  25072. bottom: 65 / 2239.47
  25073. }
  25074. },
  25075. frontNude: {
  25076. height: math.unit(22, "meters"),
  25077. weight: math.unit(21000, "kg"),
  25078. name: "Front (Nude)",
  25079. image: {
  25080. source: "./media/characters/shock-diamond/front-nude.svg",
  25081. extra: 2514 / 2285,
  25082. bottom: 13 / 2527.56
  25083. }
  25084. },
  25085. },
  25086. [
  25087. {
  25088. name: "Normal",
  25089. height: math.unit(3, "meters")
  25090. },
  25091. {
  25092. name: "Macro",
  25093. height: math.unit(22, "meters"),
  25094. default: true
  25095. },
  25096. ]
  25097. ))
  25098. characterMakers.push(() => makeCharacter(
  25099. { name: "Rory", species: ["dog", "magical"], tags: ["anthro"] },
  25100. {
  25101. front: {
  25102. height: math.unit(5 + 4/12, "feet"),
  25103. weight: math.unit(125, "lb"),
  25104. name: "Front",
  25105. image: {
  25106. source: "./media/characters/rory/front.svg",
  25107. extra: 1790/1681,
  25108. bottom: 66/1856
  25109. },
  25110. form: "normal",
  25111. default: true
  25112. },
  25113. back: {
  25114. height: math.unit(5 + 4/12, "feet"),
  25115. weight: math.unit(125, "lb"),
  25116. name: "Back",
  25117. image: {
  25118. source: "./media/characters/rory/back.svg",
  25119. extra: 1805/1690,
  25120. bottom: 56/1861
  25121. },
  25122. form: "normal"
  25123. },
  25124. frontDressed: {
  25125. height: math.unit(5 + 4/12, "feet"),
  25126. weight: math.unit(125, "lb"),
  25127. name: "Front (Dressed)",
  25128. image: {
  25129. source: "./media/characters/rory/front-dressed.svg",
  25130. extra: 1790/1681,
  25131. bottom: 66/1856
  25132. },
  25133. form: "normal"
  25134. },
  25135. backDressed: {
  25136. height: math.unit(5 + 4/12, "feet"),
  25137. weight: math.unit(125, "lb"),
  25138. name: "Back (Dressed)",
  25139. image: {
  25140. source: "./media/characters/rory/back-dressed.svg",
  25141. extra: 1805/1690,
  25142. bottom: 56/1861
  25143. },
  25144. form: "normal"
  25145. },
  25146. frontNsfw: {
  25147. height: math.unit(5 + 4/12, "feet"),
  25148. weight: math.unit(125, "lb"),
  25149. name: "Front (NSFW)",
  25150. image: {
  25151. source: "./media/characters/rory/front-nsfw.svg",
  25152. extra: 1790/1681,
  25153. bottom: 66/1856
  25154. },
  25155. form: "normal"
  25156. },
  25157. backNsfw: {
  25158. height: math.unit(5 + 4/12, "feet"),
  25159. weight: math.unit(125, "lb"),
  25160. name: "Back (NSFW)",
  25161. image: {
  25162. source: "./media/characters/rory/back-nsfw.svg",
  25163. extra: 1805/1690,
  25164. bottom: 56/1861
  25165. },
  25166. form: "normal"
  25167. },
  25168. dick: {
  25169. height: math.unit(0.8, "feet"),
  25170. name: "Dick",
  25171. image: {
  25172. source: "./media/characters/rory/dick.svg"
  25173. },
  25174. form: "normal"
  25175. },
  25176. thicc_front: {
  25177. height: math.unit(5 + 4/12, "feet"),
  25178. weight: math.unit(195, "lb"),
  25179. name: "Front",
  25180. image: {
  25181. source: "./media/characters/rory/thicc-front.svg",
  25182. extra: 1220/1100,
  25183. bottom: 103/1323
  25184. },
  25185. form: "thicc",
  25186. default: true
  25187. },
  25188. thicc_back: {
  25189. height: math.unit(5 + 4/12, "feet"),
  25190. weight: math.unit(195, "lb"),
  25191. name: "Back",
  25192. image: {
  25193. source: "./media/characters/rory/thicc-back.svg",
  25194. extra: 1166/1086,
  25195. bottom: 35/1201
  25196. },
  25197. form: "thicc"
  25198. },
  25199. },
  25200. [
  25201. {
  25202. name: "Micro",
  25203. height: math.unit(3, "inches"),
  25204. allForms: true
  25205. },
  25206. {
  25207. name: "Normal",
  25208. height: math.unit(5 + 4/12, "feet"),
  25209. allForms: true,
  25210. default: true
  25211. },
  25212. {
  25213. name: "Macro",
  25214. height: math.unit(90, "feet"),
  25215. allForms: true
  25216. },
  25217. {
  25218. name: "Supercharged",
  25219. height: math.unit(270, "feet"),
  25220. allForms: true
  25221. },
  25222. ],
  25223. {
  25224. "normal": {
  25225. name: "Normal",
  25226. default: true
  25227. },
  25228. "thicc": {
  25229. name: "Thicc",
  25230. },
  25231. }
  25232. ))
  25233. characterMakers.push(() => makeCharacter(
  25234. { name: "Sprisk", species: ["dragon"], tags: ["anthro"] },
  25235. {
  25236. front: {
  25237. height: math.unit(5 + 9 / 12, "feet"),
  25238. weight: math.unit(190, "lb"),
  25239. name: "Front",
  25240. image: {
  25241. source: "./media/characters/sprisk/front.svg",
  25242. extra: 1225 / 1180,
  25243. bottom: 42.7 / 1266.4
  25244. }
  25245. },
  25246. frontNsfw: {
  25247. height: math.unit(5 + 9 / 12, "feet"),
  25248. weight: math.unit(190, "lb"),
  25249. name: "Front (NSFW)",
  25250. image: {
  25251. source: "./media/characters/sprisk/front-nsfw.svg",
  25252. extra: 1225 / 1180,
  25253. bottom: 42.7 / 1266.4
  25254. }
  25255. },
  25256. back: {
  25257. height: math.unit(5 + 9 / 12, "feet"),
  25258. weight: math.unit(190, "lb"),
  25259. name: "Back",
  25260. image: {
  25261. source: "./media/characters/sprisk/back.svg",
  25262. extra: 1247 / 1200,
  25263. bottom: 5.6 / 1253.04
  25264. }
  25265. },
  25266. },
  25267. [
  25268. {
  25269. name: "Tiny",
  25270. height: math.unit(2, "inches")
  25271. },
  25272. {
  25273. name: "Normal",
  25274. height: math.unit(5 + 9 / 12, "feet"),
  25275. default: true
  25276. },
  25277. {
  25278. name: "Mini Macro",
  25279. height: math.unit(18, "feet")
  25280. },
  25281. {
  25282. name: "Macro",
  25283. height: math.unit(100, "feet")
  25284. },
  25285. {
  25286. name: "MACRO",
  25287. height: math.unit(50, "miles")
  25288. },
  25289. {
  25290. name: "M A C R O",
  25291. height: math.unit(300, "miles")
  25292. },
  25293. ]
  25294. ))
  25295. characterMakers.push(() => makeCharacter(
  25296. { name: "Bunsen", species: ["dragon"], tags: ["feral"] },
  25297. {
  25298. side: {
  25299. height: math.unit(15.6, "meters"),
  25300. weight: math.unit(700000, "kg"),
  25301. name: "Side",
  25302. image: {
  25303. source: "./media/characters/bunsen/side.svg",
  25304. extra: 1644 / 358
  25305. }
  25306. },
  25307. foot: {
  25308. height: math.unit(1.611 * 1644 / 358, "meter"),
  25309. name: "Foot",
  25310. image: {
  25311. source: "./media/characters/bunsen/foot.svg"
  25312. }
  25313. },
  25314. },
  25315. [
  25316. {
  25317. name: "Small",
  25318. height: math.unit(10, "feet")
  25319. },
  25320. {
  25321. name: "Normal",
  25322. height: math.unit(15.6, "meters"),
  25323. default: true
  25324. },
  25325. ]
  25326. ))
  25327. characterMakers.push(() => makeCharacter(
  25328. { name: "Sesh", species: ["finnish-spitz-dog"], tags: ["anthro"] },
  25329. {
  25330. front: {
  25331. height: math.unit(4 + 11 / 12, "feet"),
  25332. weight: math.unit(140, "lb"),
  25333. name: "Front",
  25334. image: {
  25335. source: "./media/characters/sesh/front.svg",
  25336. extra: 3420 / 3231,
  25337. bottom: 72 / 3949.5
  25338. }
  25339. },
  25340. },
  25341. [
  25342. {
  25343. name: "Normal",
  25344. height: math.unit(4 + 11 / 12, "feet")
  25345. },
  25346. {
  25347. name: "Grown",
  25348. height: math.unit(15, "feet"),
  25349. default: true
  25350. },
  25351. {
  25352. name: "Macro",
  25353. height: math.unit(1500, "feet")
  25354. },
  25355. {
  25356. name: "Megamacro",
  25357. height: math.unit(30, "miles")
  25358. },
  25359. {
  25360. name: "Continental",
  25361. height: math.unit(3000, "miles")
  25362. },
  25363. {
  25364. name: "Gravity Mass",
  25365. height: math.unit(300000, "miles")
  25366. },
  25367. {
  25368. name: "Planet Buster",
  25369. height: math.unit(30000000, "miles")
  25370. },
  25371. {
  25372. name: "Big",
  25373. height: math.unit(3000000000, "miles")
  25374. },
  25375. ]
  25376. ))
  25377. characterMakers.push(() => makeCharacter(
  25378. { name: "Pepper", species: ["zorgoia"], tags: ["anthro"] },
  25379. {
  25380. front: {
  25381. height: math.unit(9, "feet"),
  25382. weight: math.unit(350, "lb"),
  25383. name: "Front",
  25384. image: {
  25385. source: "./media/characters/pepper/front.svg",
  25386. extra: 1448 / 1312,
  25387. bottom: 9.4 / 1457.88
  25388. }
  25389. },
  25390. back: {
  25391. height: math.unit(9, "feet"),
  25392. weight: math.unit(350, "lb"),
  25393. name: "Back",
  25394. image: {
  25395. source: "./media/characters/pepper/back.svg",
  25396. extra: 1423 / 1300,
  25397. bottom: 4.6 / 1429
  25398. }
  25399. },
  25400. maw: {
  25401. height: math.unit(0.932, "feet"),
  25402. name: "Maw",
  25403. image: {
  25404. source: "./media/characters/pepper/maw.svg"
  25405. }
  25406. },
  25407. },
  25408. [
  25409. {
  25410. name: "Normal",
  25411. height: math.unit(9, "feet"),
  25412. default: true
  25413. },
  25414. ]
  25415. ))
  25416. characterMakers.push(() => makeCharacter(
  25417. { name: "Maelstrom", species: ["monster"], tags: ["anthro"] },
  25418. {
  25419. front: {
  25420. height: math.unit(6, "feet"),
  25421. weight: math.unit(150, "lb"),
  25422. name: "Front",
  25423. image: {
  25424. source: "./media/characters/maelstrom/front.svg",
  25425. extra: 2100 / 1883,
  25426. bottom: 94 / 2196.7
  25427. }
  25428. },
  25429. },
  25430. [
  25431. {
  25432. name: "Less Kaiju",
  25433. height: math.unit(200, "feet")
  25434. },
  25435. {
  25436. name: "Kaiju",
  25437. height: math.unit(400, "feet"),
  25438. default: true
  25439. },
  25440. {
  25441. name: "Kaiju-er",
  25442. height: math.unit(600, "feet")
  25443. },
  25444. ]
  25445. ))
  25446. characterMakers.push(() => makeCharacter(
  25447. { name: "Lexir", species: ["sergal"], tags: ["anthro"] },
  25448. {
  25449. front: {
  25450. height: math.unit(6 + 5 / 12, "feet"),
  25451. weight: math.unit(180, "lb"),
  25452. name: "Front",
  25453. image: {
  25454. source: "./media/characters/lexir/front.svg",
  25455. extra: 180 / 172,
  25456. bottom: 12 / 192
  25457. }
  25458. },
  25459. back: {
  25460. height: math.unit(6 + 5 / 12, "feet"),
  25461. weight: math.unit(180, "lb"),
  25462. name: "Back",
  25463. image: {
  25464. source: "./media/characters/lexir/back.svg",
  25465. extra: 1273/1201,
  25466. bottom: 39/1312
  25467. }
  25468. },
  25469. },
  25470. [
  25471. {
  25472. name: "Very Smal",
  25473. height: math.unit(1, "nm")
  25474. },
  25475. {
  25476. name: "Normal",
  25477. height: math.unit(6 + 5 / 12, "feet"),
  25478. default: true
  25479. },
  25480. {
  25481. name: "Macro",
  25482. height: math.unit(1, "mile")
  25483. },
  25484. {
  25485. name: "Megamacro",
  25486. height: math.unit(50, "miles")
  25487. },
  25488. ]
  25489. ))
  25490. characterMakers.push(() => makeCharacter(
  25491. { name: "Maksio", species: ["lizard"], tags: ["anthro"] },
  25492. {
  25493. front: {
  25494. height: math.unit(1.5, "meters"),
  25495. weight: math.unit(100, "lb"),
  25496. name: "Front",
  25497. image: {
  25498. source: "./media/characters/maksio/front.svg",
  25499. extra: 1549 / 1531,
  25500. bottom: 123.7 / 1674.5429
  25501. }
  25502. },
  25503. back: {
  25504. height: math.unit(1.5, "meters"),
  25505. weight: math.unit(100, "lb"),
  25506. name: "Back",
  25507. image: {
  25508. source: "./media/characters/maksio/back.svg",
  25509. extra: 1541 / 1509,
  25510. bottom: 97 / 1639
  25511. }
  25512. },
  25513. hand: {
  25514. height: math.unit(0.621, "feet"),
  25515. name: "Hand",
  25516. image: {
  25517. source: "./media/characters/maksio/hand.svg"
  25518. }
  25519. },
  25520. foot: {
  25521. height: math.unit(1.611, "feet"),
  25522. name: "Foot",
  25523. image: {
  25524. source: "./media/characters/maksio/foot.svg"
  25525. }
  25526. },
  25527. },
  25528. [
  25529. {
  25530. name: "Shrunken",
  25531. height: math.unit(10, "cm")
  25532. },
  25533. {
  25534. name: "Normal",
  25535. height: math.unit(150, "cm"),
  25536. default: true
  25537. },
  25538. ]
  25539. ))
  25540. characterMakers.push(() => makeCharacter(
  25541. { name: "Erza Bear", species: ["human", "dragon"], tags: ["anthro"] },
  25542. {
  25543. front: {
  25544. height: math.unit(100, "feet"),
  25545. name: "Front",
  25546. image: {
  25547. source: "./media/characters/erza-bear/front.svg",
  25548. extra: 2449 / 2390,
  25549. bottom: 46 / 2494
  25550. }
  25551. },
  25552. back: {
  25553. height: math.unit(100, "feet"),
  25554. name: "Back",
  25555. image: {
  25556. source: "./media/characters/erza-bear/back.svg",
  25557. extra: 2489 / 2430,
  25558. bottom: 85.4 / 2480
  25559. }
  25560. },
  25561. tail: {
  25562. height: math.unit(42, "feet"),
  25563. name: "Tail",
  25564. image: {
  25565. source: "./media/characters/erza-bear/tail.svg"
  25566. }
  25567. },
  25568. tongue: {
  25569. height: math.unit(8, "feet"),
  25570. name: "Tongue",
  25571. image: {
  25572. source: "./media/characters/erza-bear/tongue.svg"
  25573. }
  25574. },
  25575. dick: {
  25576. height: math.unit(10.5, "feet"),
  25577. name: "Dick",
  25578. image: {
  25579. source: "./media/characters/erza-bear/dick.svg"
  25580. }
  25581. },
  25582. dickVertical: {
  25583. height: math.unit(16.9, "feet"),
  25584. name: "Dick (Vertical)",
  25585. image: {
  25586. source: "./media/characters/erza-bear/dick-vertical.svg"
  25587. }
  25588. },
  25589. },
  25590. [
  25591. {
  25592. name: "Macro",
  25593. height: math.unit(100, "feet"),
  25594. default: true
  25595. },
  25596. ]
  25597. ))
  25598. characterMakers.push(() => makeCharacter(
  25599. { name: "Violet Flor", species: ["skunk"], tags: ["anthro"] },
  25600. {
  25601. front: {
  25602. height: math.unit(172, "cm"),
  25603. weight: math.unit(73, "kg"),
  25604. name: "Front",
  25605. image: {
  25606. source: "./media/characters/violet-flor/front.svg",
  25607. extra: 1530 / 1442,
  25608. bottom: 61.9 / 1588.8
  25609. }
  25610. },
  25611. back: {
  25612. height: math.unit(180, "cm"),
  25613. weight: math.unit(73, "kg"),
  25614. name: "Back",
  25615. image: {
  25616. source: "./media/characters/violet-flor/back.svg",
  25617. extra: 1692 / 1630,
  25618. bottom: 20 / 1712
  25619. }
  25620. },
  25621. },
  25622. [
  25623. {
  25624. name: "Normal",
  25625. height: math.unit(172, "cm"),
  25626. default: true
  25627. },
  25628. ]
  25629. ))
  25630. characterMakers.push(() => makeCharacter(
  25631. { name: "Lynn Rhea", species: ["shark"], tags: ["anthro"] },
  25632. {
  25633. front: {
  25634. height: math.unit(6, "feet"),
  25635. weight: math.unit(220, "lb"),
  25636. name: "Front",
  25637. image: {
  25638. source: "./media/characters/lynn-rhea/front.svg",
  25639. extra: 310 / 273
  25640. }
  25641. },
  25642. back: {
  25643. height: math.unit(6, "feet"),
  25644. weight: math.unit(220, "lb"),
  25645. name: "Back",
  25646. image: {
  25647. source: "./media/characters/lynn-rhea/back.svg",
  25648. extra: 310 / 273
  25649. }
  25650. },
  25651. dicks: {
  25652. height: math.unit(0.9, "feet"),
  25653. name: "Dicks",
  25654. image: {
  25655. source: "./media/characters/lynn-rhea/dicks.svg"
  25656. }
  25657. },
  25658. slit: {
  25659. height: math.unit(0.4, "feet"),
  25660. name: "Slit",
  25661. image: {
  25662. source: "./media/characters/lynn-rhea/slit.svg"
  25663. }
  25664. },
  25665. },
  25666. [
  25667. {
  25668. name: "Micro",
  25669. height: math.unit(1, "inch")
  25670. },
  25671. {
  25672. name: "Macro",
  25673. height: math.unit(60, "feet"),
  25674. default: true
  25675. },
  25676. {
  25677. name: "Megamacro",
  25678. height: math.unit(2, "miles")
  25679. },
  25680. {
  25681. name: "Gigamacro",
  25682. height: math.unit(3, "earths")
  25683. },
  25684. {
  25685. name: "Galactic",
  25686. height: math.unit(0.8, "galaxies")
  25687. },
  25688. ]
  25689. ))
  25690. characterMakers.push(() => makeCharacter(
  25691. { name: "Valathos", species: ["sea-monster"], tags: ["naga"] },
  25692. {
  25693. front: {
  25694. height: math.unit(1600, "feet"),
  25695. weight: math.unit(85758785169, "kg"),
  25696. name: "Front",
  25697. image: {
  25698. source: "./media/characters/valathos/front.svg",
  25699. extra: 1451 / 1339
  25700. }
  25701. },
  25702. },
  25703. [
  25704. {
  25705. name: "Macro",
  25706. height: math.unit(1600, "feet"),
  25707. default: true
  25708. },
  25709. ]
  25710. ))
  25711. characterMakers.push(() => makeCharacter(
  25712. { name: "Azula", species: ["demon"], tags: ["anthro"] },
  25713. {
  25714. front: {
  25715. height: math.unit(7 + 5 / 12, "feet"),
  25716. weight: math.unit(300, "lb"),
  25717. name: "Front",
  25718. image: {
  25719. source: "./media/characters/azula/front.svg",
  25720. extra: 3208 / 2880,
  25721. bottom: 80.2 / 3277
  25722. }
  25723. },
  25724. back: {
  25725. height: math.unit(7 + 5 / 12, "feet"),
  25726. weight: math.unit(300, "lb"),
  25727. name: "Back",
  25728. image: {
  25729. source: "./media/characters/azula/back.svg",
  25730. extra: 3169 / 2822,
  25731. bottom: 150.6 / 3321
  25732. }
  25733. },
  25734. },
  25735. [
  25736. {
  25737. name: "Normal",
  25738. height: math.unit(7 + 5 / 12, "feet"),
  25739. default: true
  25740. },
  25741. {
  25742. name: "Big",
  25743. height: math.unit(20, "feet")
  25744. },
  25745. ]
  25746. ))
  25747. characterMakers.push(() => makeCharacter(
  25748. { name: "Rupert", species: ["shark"], tags: ["anthro"] },
  25749. {
  25750. front: {
  25751. height: math.unit(5 + 1 / 12, "feet"),
  25752. weight: math.unit(110, "lb"),
  25753. name: "Front",
  25754. image: {
  25755. source: "./media/characters/rupert/front.svg",
  25756. extra: 1549 / 1495,
  25757. bottom: 54.2 / 1604.4
  25758. }
  25759. },
  25760. },
  25761. [
  25762. {
  25763. name: "Normal",
  25764. height: math.unit(5 + 1 / 12, "feet"),
  25765. default: true
  25766. },
  25767. ]
  25768. ))
  25769. characterMakers.push(() => makeCharacter(
  25770. { name: "Sheera Castellar", species: ["dragon"], tags: ["anthro", "taur"] },
  25771. {
  25772. front: {
  25773. height: math.unit(8 + 4 / 12, "feet"),
  25774. weight: math.unit(350, "lb"),
  25775. name: "Front",
  25776. image: {
  25777. source: "./media/characters/sheera-castellar/front.svg",
  25778. extra: 1957 / 1894,
  25779. bottom: 26.97 / 1975.017
  25780. }
  25781. },
  25782. side: {
  25783. height: math.unit(8 + 4 / 12, "feet"),
  25784. weight: math.unit(350, "lb"),
  25785. name: "Side",
  25786. image: {
  25787. source: "./media/characters/sheera-castellar/side.svg",
  25788. extra: 1957 / 1894
  25789. }
  25790. },
  25791. back: {
  25792. height: math.unit(8 + 4 / 12, "feet"),
  25793. weight: math.unit(350, "lb"),
  25794. name: "Back",
  25795. image: {
  25796. source: "./media/characters/sheera-castellar/back.svg",
  25797. extra: 1957 / 1894
  25798. }
  25799. },
  25800. angled: {
  25801. height: math.unit((8 + 4 / 12) * (1 - 68 / 1875), "feet"),
  25802. weight: math.unit(350, "lb"),
  25803. name: "Angled",
  25804. image: {
  25805. source: "./media/characters/sheera-castellar/angled.svg",
  25806. extra: 1807 / 1707,
  25807. bottom: 68 / 1875
  25808. }
  25809. },
  25810. genitals: {
  25811. height: math.unit(2.2, "feet"),
  25812. name: "Genitals",
  25813. image: {
  25814. source: "./media/characters/sheera-castellar/genitals.svg"
  25815. }
  25816. },
  25817. taur: {
  25818. height: math.unit(10 + 6/12, "feet"),
  25819. name: "Taur",
  25820. image: {
  25821. source: "./media/characters/sheera-castellar/taur.svg",
  25822. extra: 2017/1909,
  25823. bottom: 185/2202
  25824. }
  25825. },
  25826. },
  25827. [
  25828. {
  25829. name: "Normal",
  25830. height: math.unit(8 + 4 / 12, "feet")
  25831. },
  25832. {
  25833. name: "Macro",
  25834. height: math.unit(150, "feet"),
  25835. default: true
  25836. },
  25837. {
  25838. name: "Macro+",
  25839. height: math.unit(800, "feet")
  25840. },
  25841. ]
  25842. ))
  25843. characterMakers.push(() => makeCharacter(
  25844. { name: "Jaipur", species: ["black-panther"], tags: ["anthro"] },
  25845. {
  25846. front: {
  25847. height: math.unit(6, "feet"),
  25848. weight: math.unit(150, "lb"),
  25849. name: "Front",
  25850. image: {
  25851. source: "./media/characters/jaipur/front.svg",
  25852. extra: 3860 / 3731,
  25853. bottom: 287 / 4140
  25854. }
  25855. },
  25856. back: {
  25857. height: math.unit(6, "feet"),
  25858. weight: math.unit(150, "lb"),
  25859. name: "Back",
  25860. image: {
  25861. source: "./media/characters/jaipur/back.svg",
  25862. extra: 1637/1561,
  25863. bottom: 154/1791
  25864. }
  25865. },
  25866. },
  25867. [
  25868. {
  25869. name: "Normal",
  25870. height: math.unit(1.85, "meters"),
  25871. default: true
  25872. },
  25873. {
  25874. name: "Macro",
  25875. height: math.unit(150, "meters")
  25876. },
  25877. {
  25878. name: "Macro+",
  25879. height: math.unit(0.5, "miles")
  25880. },
  25881. {
  25882. name: "Macro++",
  25883. height: math.unit(2.5, "miles")
  25884. },
  25885. {
  25886. name: "Macro+++",
  25887. height: math.unit(12, "miles")
  25888. },
  25889. {
  25890. name: "Macro++++",
  25891. height: math.unit(120, "miles")
  25892. },
  25893. {
  25894. name: "Macro+++++",
  25895. height: math.unit(1200, "miles")
  25896. },
  25897. ]
  25898. ))
  25899. characterMakers.push(() => makeCharacter(
  25900. { name: "Sheila (Wolf)", species: ["wolf"], tags: ["anthro"] },
  25901. {
  25902. front: {
  25903. height: math.unit(6, "feet"),
  25904. weight: math.unit(150, "lb"),
  25905. name: "Front",
  25906. image: {
  25907. source: "./media/characters/sheila-wolf/front.svg",
  25908. extra: 1931 / 1808,
  25909. bottom: 29.5 / 1960
  25910. }
  25911. },
  25912. dick: {
  25913. height: math.unit(1.464, "feet"),
  25914. name: "Dick",
  25915. image: {
  25916. source: "./media/characters/sheila-wolf/dick.svg"
  25917. }
  25918. },
  25919. muzzle: {
  25920. height: math.unit(0.513, "feet"),
  25921. name: "Muzzle",
  25922. image: {
  25923. source: "./media/characters/sheila-wolf/muzzle.svg"
  25924. }
  25925. },
  25926. },
  25927. [
  25928. {
  25929. name: "Macro",
  25930. height: math.unit(70, "feet"),
  25931. default: true
  25932. },
  25933. ]
  25934. ))
  25935. characterMakers.push(() => makeCharacter(
  25936. { name: "Almor", species: ["dragon"], tags: ["anthro"] },
  25937. {
  25938. front: {
  25939. height: math.unit(32, "meters"),
  25940. weight: math.unit(300000, "kg"),
  25941. name: "Front",
  25942. image: {
  25943. source: "./media/characters/almor/front.svg",
  25944. extra: 1408 / 1322,
  25945. bottom: 94.6 / 1506.5
  25946. }
  25947. },
  25948. },
  25949. [
  25950. {
  25951. name: "Macro",
  25952. height: math.unit(32, "meters"),
  25953. default: true
  25954. },
  25955. ]
  25956. ))
  25957. characterMakers.push(() => makeCharacter(
  25958. { name: "Silver", species: ["shark"], tags: ["anthro"] },
  25959. {
  25960. front: {
  25961. height: math.unit(7, "feet"),
  25962. weight: math.unit(200, "lb"),
  25963. name: "Front",
  25964. image: {
  25965. source: "./media/characters/silver/front.svg",
  25966. extra: 472.1 / 450.5,
  25967. bottom: 26.5 / 499.424
  25968. }
  25969. },
  25970. },
  25971. [
  25972. {
  25973. name: "Normal",
  25974. height: math.unit(7, "feet"),
  25975. default: true
  25976. },
  25977. {
  25978. name: "Macro",
  25979. height: math.unit(800, "feet")
  25980. },
  25981. {
  25982. name: "Megamacro",
  25983. height: math.unit(250, "miles")
  25984. },
  25985. ]
  25986. ))
  25987. characterMakers.push(() => makeCharacter(
  25988. { name: "Pliskin", species: ["cat"], tags: ["anthro"] },
  25989. {
  25990. front: {
  25991. height: math.unit(6, "feet"),
  25992. weight: math.unit(150, "lb"),
  25993. name: "Front",
  25994. image: {
  25995. source: "./media/characters/pliskin/front.svg",
  25996. extra: 1469 / 1359,
  25997. bottom: 70 / 1540
  25998. }
  25999. },
  26000. },
  26001. [
  26002. {
  26003. name: "Micro",
  26004. height: math.unit(3, "inches")
  26005. },
  26006. {
  26007. name: "Normal",
  26008. height: math.unit(5 + 11 / 12, "feet"),
  26009. default: true
  26010. },
  26011. {
  26012. name: "Macro",
  26013. height: math.unit(120, "feet")
  26014. },
  26015. ]
  26016. ))
  26017. characterMakers.push(() => makeCharacter(
  26018. { name: "Sammy", species: ["samurott"], tags: ["anthro"] },
  26019. {
  26020. front: {
  26021. height: math.unit(6, "feet"),
  26022. weight: math.unit(150, "lb"),
  26023. name: "Front",
  26024. image: {
  26025. source: "./media/characters/sammy/front.svg",
  26026. extra: 1193 / 1089,
  26027. bottom: 30.5 / 1226
  26028. }
  26029. },
  26030. },
  26031. [
  26032. {
  26033. name: "Macro",
  26034. height: math.unit(1700, "feet"),
  26035. default: true
  26036. },
  26037. {
  26038. name: "Examacro",
  26039. height: math.unit(2.5e9, "lightyears")
  26040. },
  26041. ]
  26042. ))
  26043. characterMakers.push(() => makeCharacter(
  26044. { name: "Kuru", species: ["umbra"], tags: ["anthro"] },
  26045. {
  26046. front: {
  26047. height: math.unit(21, "meters"),
  26048. weight: math.unit(12, "tonnes"),
  26049. name: "Front",
  26050. image: {
  26051. source: "./media/characters/kuru/front.svg",
  26052. extra: 4301 / 3785,
  26053. bottom: 371.3 / 4691
  26054. }
  26055. },
  26056. },
  26057. [
  26058. {
  26059. name: "Macro",
  26060. height: math.unit(21, "meters"),
  26061. default: true
  26062. },
  26063. ]
  26064. ))
  26065. characterMakers.push(() => makeCharacter(
  26066. { name: "Rakka", species: ["umbra"], tags: ["anthro"] },
  26067. {
  26068. front: {
  26069. height: math.unit(23, "meters"),
  26070. weight: math.unit(12.2, "tonnes"),
  26071. name: "Front",
  26072. image: {
  26073. source: "./media/characters/rakka/front.svg",
  26074. extra: 4670 / 4169,
  26075. bottom: 301 / 4968.7
  26076. }
  26077. },
  26078. },
  26079. [
  26080. {
  26081. name: "Macro",
  26082. height: math.unit(23, "meters"),
  26083. default: true
  26084. },
  26085. ]
  26086. ))
  26087. characterMakers.push(() => makeCharacter(
  26088. { name: "Rhys (Feline)", species: ["cat"], tags: ["anthro"] },
  26089. {
  26090. front: {
  26091. height: math.unit(6, "feet"),
  26092. weight: math.unit(150, "lb"),
  26093. name: "Front",
  26094. image: {
  26095. source: "./media/characters/rhys-feline/front.svg",
  26096. extra: 2488 / 2308,
  26097. bottom: 35.67 / 2519.19
  26098. }
  26099. },
  26100. },
  26101. [
  26102. {
  26103. name: "Really Small",
  26104. height: math.unit(1, "nm")
  26105. },
  26106. {
  26107. name: "Micro",
  26108. height: math.unit(4, "inches")
  26109. },
  26110. {
  26111. name: "Normal",
  26112. height: math.unit(4 + 10 / 12, "feet"),
  26113. default: true
  26114. },
  26115. {
  26116. name: "Macro",
  26117. height: math.unit(100, "feet")
  26118. },
  26119. {
  26120. name: "Megamacto",
  26121. height: math.unit(50, "miles")
  26122. },
  26123. ]
  26124. ))
  26125. characterMakers.push(() => makeCharacter(
  26126. { name: "Alydar", species: ["raven", "snow-leopard"], tags: ["feral"] },
  26127. {
  26128. side: {
  26129. height: math.unit(30, "feet"),
  26130. weight: math.unit(35000, "kg"),
  26131. name: "Side",
  26132. image: {
  26133. source: "./media/characters/alydar/side.svg",
  26134. extra: 234 / 222,
  26135. bottom: 6.5 / 241
  26136. }
  26137. },
  26138. front: {
  26139. height: math.unit(30, "feet"),
  26140. weight: math.unit(35000, "kg"),
  26141. name: "Front",
  26142. image: {
  26143. source: "./media/characters/alydar/front.svg",
  26144. extra: 223.37 / 210.2,
  26145. bottom: 22.3 / 246.76
  26146. }
  26147. },
  26148. top: {
  26149. height: math.unit(64.54, "feet"),
  26150. weight: math.unit(35000, "kg"),
  26151. name: "Top",
  26152. image: {
  26153. source: "./media/characters/alydar/top.svg"
  26154. }
  26155. },
  26156. anthro: {
  26157. height: math.unit(30, "feet"),
  26158. weight: math.unit(9000, "kg"),
  26159. name: "Anthro",
  26160. image: {
  26161. source: "./media/characters/alydar/anthro.svg",
  26162. extra: 432 / 421,
  26163. bottom: 7.18 / 440
  26164. }
  26165. },
  26166. maw: {
  26167. height: math.unit(11.693, "feet"),
  26168. name: "Maw",
  26169. image: {
  26170. source: "./media/characters/alydar/maw.svg"
  26171. }
  26172. },
  26173. head: {
  26174. height: math.unit(11.693, "feet"),
  26175. name: "Head",
  26176. image: {
  26177. source: "./media/characters/alydar/head.svg"
  26178. }
  26179. },
  26180. headAlt: {
  26181. height: math.unit(12.861, "feet"),
  26182. name: "Head (Alt)",
  26183. image: {
  26184. source: "./media/characters/alydar/head-alt.svg"
  26185. }
  26186. },
  26187. wing: {
  26188. height: math.unit(20.712, "feet"),
  26189. name: "Wing",
  26190. image: {
  26191. source: "./media/characters/alydar/wing.svg"
  26192. }
  26193. },
  26194. wingFeather: {
  26195. height: math.unit(9.662, "feet"),
  26196. name: "Wing Feather",
  26197. image: {
  26198. source: "./media/characters/alydar/wing-feather.svg"
  26199. }
  26200. },
  26201. countourFeather: {
  26202. height: math.unit(4.154, "feet"),
  26203. name: "Contour Feather",
  26204. image: {
  26205. source: "./media/characters/alydar/contour-feather.svg"
  26206. }
  26207. },
  26208. },
  26209. [
  26210. {
  26211. name: "Diplomatic",
  26212. height: math.unit(13, "feet"),
  26213. default: true
  26214. },
  26215. {
  26216. name: "Small",
  26217. height: math.unit(30, "feet")
  26218. },
  26219. {
  26220. name: "Normal",
  26221. height: math.unit(95, "feet"),
  26222. default: true
  26223. },
  26224. {
  26225. name: "Large",
  26226. height: math.unit(285, "feet")
  26227. },
  26228. {
  26229. name: "Incomprehensible",
  26230. height: math.unit(450, "megameters")
  26231. },
  26232. ]
  26233. ))
  26234. characterMakers.push(() => makeCharacter(
  26235. { name: "Selicia", species: ["dragon"], tags: ["feral"] },
  26236. {
  26237. side: {
  26238. height: math.unit(11, "feet"),
  26239. weight: math.unit(1750, "kg"),
  26240. name: "Side",
  26241. image: {
  26242. source: "./media/characters/selicia/side.svg",
  26243. extra: 440 / 396,
  26244. bottom: 24.8 / 465.979
  26245. }
  26246. },
  26247. maw: {
  26248. height: math.unit(4.665, "feet"),
  26249. name: "Maw",
  26250. image: {
  26251. source: "./media/characters/selicia/maw.svg"
  26252. }
  26253. },
  26254. },
  26255. [
  26256. {
  26257. name: "Normal",
  26258. height: math.unit(11, "feet"),
  26259. default: true
  26260. },
  26261. ]
  26262. ))
  26263. characterMakers.push(() => makeCharacter(
  26264. { name: "Layla", species: ["zorua", "vulpix", "dragon"], tags: ["feral"] },
  26265. {
  26266. side: {
  26267. height: math.unit(2 + 6 / 12, "feet"),
  26268. weight: math.unit(30, "lb"),
  26269. name: "Side",
  26270. image: {
  26271. source: "./media/characters/layla/side.svg",
  26272. extra: 244 / 188,
  26273. bottom: 18.2 / 262.1
  26274. }
  26275. },
  26276. back: {
  26277. height: math.unit(2 + 6 / 12, "feet"),
  26278. weight: math.unit(30, "lb"),
  26279. name: "Back",
  26280. image: {
  26281. source: "./media/characters/layla/back.svg",
  26282. extra: 308 / 241.5,
  26283. bottom: 8.9 / 316.8
  26284. }
  26285. },
  26286. cumming: {
  26287. height: math.unit(2 + 6 / 12, "feet"),
  26288. weight: math.unit(30, "lb"),
  26289. name: "Cumming",
  26290. image: {
  26291. source: "./media/characters/layla/cumming.svg",
  26292. extra: 342 / 279,
  26293. bottom: 595 / 938
  26294. }
  26295. },
  26296. dickFlaccid: {
  26297. height: math.unit(2.595, "feet"),
  26298. name: "Flaccid Genitals",
  26299. image: {
  26300. source: "./media/characters/layla/dick-flaccid.svg"
  26301. }
  26302. },
  26303. dickErect: {
  26304. height: math.unit(2.359, "feet"),
  26305. name: "Erect Genitals",
  26306. image: {
  26307. source: "./media/characters/layla/dick-erect.svg"
  26308. }
  26309. },
  26310. dragon: {
  26311. height: math.unit(40, "feet"),
  26312. name: "Dragon",
  26313. image: {
  26314. source: "./media/characters/layla/dragon.svg",
  26315. extra: 610/535,
  26316. bottom: 367/977
  26317. }
  26318. },
  26319. taur: {
  26320. height: math.unit(30, "feet"),
  26321. name: "Taur",
  26322. image: {
  26323. source: "./media/characters/layla/taur.svg",
  26324. extra: 1268/1199,
  26325. bottom: 112/1380
  26326. }
  26327. },
  26328. },
  26329. [
  26330. {
  26331. name: "Micro",
  26332. height: math.unit(1, "inch")
  26333. },
  26334. {
  26335. name: "Small",
  26336. height: math.unit(1, "foot")
  26337. },
  26338. {
  26339. name: "Normal",
  26340. height: math.unit(2 + 6 / 12, "feet"),
  26341. default: true
  26342. },
  26343. {
  26344. name: "Macro",
  26345. height: math.unit(200, "feet")
  26346. },
  26347. {
  26348. name: "Megamacro",
  26349. height: math.unit(1000, "miles")
  26350. },
  26351. {
  26352. name: "Planetary",
  26353. height: math.unit(8000, "miles")
  26354. },
  26355. {
  26356. name: "True Layla",
  26357. height: math.unit(200000 * 7, "multiverses")
  26358. },
  26359. ]
  26360. ))
  26361. characterMakers.push(() => makeCharacter(
  26362. { name: "Knox", species: ["arcanine", "houndoom"], tags: ["feral"] },
  26363. {
  26364. back: {
  26365. height: math.unit(10.5, "feet"),
  26366. weight: math.unit(800, "lb"),
  26367. name: "Back",
  26368. image: {
  26369. source: "./media/characters/knox/back.svg",
  26370. extra: 1486 / 1089,
  26371. bottom: 107 / 1601.4
  26372. }
  26373. },
  26374. side: {
  26375. height: math.unit(10.5, "feet"),
  26376. weight: math.unit(800, "lb"),
  26377. name: "Side",
  26378. image: {
  26379. source: "./media/characters/knox/side.svg",
  26380. extra: 244 / 218,
  26381. bottom: 14 / 260
  26382. }
  26383. },
  26384. },
  26385. [
  26386. {
  26387. name: "Compact",
  26388. height: math.unit(10.5, "feet"),
  26389. default: true
  26390. },
  26391. {
  26392. name: "Dynamax",
  26393. height: math.unit(210, "feet")
  26394. },
  26395. {
  26396. name: "Full Macro",
  26397. height: math.unit(850, "feet")
  26398. },
  26399. ]
  26400. ))
  26401. characterMakers.push(() => makeCharacter(
  26402. { name: "Kayda", species: ["dragon"], tags: ["anthro"] },
  26403. {
  26404. front: {
  26405. height: math.unit(28, "feet"),
  26406. weight: math.unit(10500, "lb"),
  26407. name: "Front",
  26408. image: {
  26409. source: "./media/characters/kayda/front.svg",
  26410. extra: 1536 / 1428,
  26411. bottom: 68.7 / 1603
  26412. }
  26413. },
  26414. back: {
  26415. height: math.unit(28, "feet"),
  26416. weight: math.unit(10500, "lb"),
  26417. name: "Back",
  26418. image: {
  26419. source: "./media/characters/kayda/back.svg",
  26420. extra: 1557 / 1464,
  26421. bottom: 39.5 / 1597.49
  26422. }
  26423. },
  26424. dick: {
  26425. height: math.unit(3.858, "feet"),
  26426. name: "Dick",
  26427. image: {
  26428. source: "./media/characters/kayda/dick.svg"
  26429. }
  26430. },
  26431. },
  26432. [
  26433. {
  26434. name: "Macro",
  26435. height: math.unit(28, "feet"),
  26436. default: true
  26437. },
  26438. ]
  26439. ))
  26440. characterMakers.push(() => makeCharacter(
  26441. { name: "Brian", species: ["barbary-lion"], tags: ["anthro"] },
  26442. {
  26443. front: {
  26444. height: math.unit(10 + 11 / 12, "feet"),
  26445. weight: math.unit(1400, "lb"),
  26446. name: "Front",
  26447. image: {
  26448. source: "./media/characters/brian/front.svg",
  26449. extra: 737 / 692,
  26450. bottom: 55.4 / 785
  26451. }
  26452. },
  26453. },
  26454. [
  26455. {
  26456. name: "Normal",
  26457. height: math.unit(10 + 11 / 12, "feet"),
  26458. default: true
  26459. },
  26460. ]
  26461. ))
  26462. characterMakers.push(() => makeCharacter(
  26463. { name: "Khemri", species: ["jackal"], tags: ["anthro"] },
  26464. {
  26465. front: {
  26466. height: math.unit(5 + 8 / 12, "feet"),
  26467. weight: math.unit(140, "lb"),
  26468. name: "Front",
  26469. image: {
  26470. source: "./media/characters/khemri/front.svg",
  26471. extra: 4780 / 4059,
  26472. bottom: 80.1 / 4859.25
  26473. }
  26474. },
  26475. },
  26476. [
  26477. {
  26478. name: "Micro",
  26479. height: math.unit(6, "inches")
  26480. },
  26481. {
  26482. name: "Normal",
  26483. height: math.unit(5 + 8 / 12, "feet"),
  26484. default: true
  26485. },
  26486. ]
  26487. ))
  26488. characterMakers.push(() => makeCharacter(
  26489. { name: "Felix Braveheart", species: ["cerberus", "wolf"], tags: ["anthro", "feral"] },
  26490. {
  26491. front: {
  26492. height: math.unit(13, "feet"),
  26493. weight: math.unit(1700, "lb"),
  26494. name: "Front",
  26495. image: {
  26496. source: "./media/characters/felix-braveheart/front.svg",
  26497. extra: 1222 / 1157,
  26498. bottom: 53.2 / 1280
  26499. }
  26500. },
  26501. back: {
  26502. height: math.unit(13, "feet"),
  26503. weight: math.unit(1700, "lb"),
  26504. name: "Back",
  26505. image: {
  26506. source: "./media/characters/felix-braveheart/back.svg",
  26507. extra: 1277 / 1203,
  26508. bottom: 50.2 / 1327
  26509. }
  26510. },
  26511. feral: {
  26512. height: math.unit(6, "feet"),
  26513. weight: math.unit(400, "lb"),
  26514. name: "Feral",
  26515. image: {
  26516. source: "./media/characters/felix-braveheart/feral.svg",
  26517. extra: 682 / 625,
  26518. bottom: 6.9 / 688
  26519. }
  26520. },
  26521. },
  26522. [
  26523. {
  26524. name: "Normal",
  26525. height: math.unit(13, "feet"),
  26526. default: true
  26527. },
  26528. ]
  26529. ))
  26530. characterMakers.push(() => makeCharacter(
  26531. { name: "Shadow Blade", species: ["horse"], tags: ["feral"] },
  26532. {
  26533. side: {
  26534. height: math.unit(5 + 11 / 12, "feet"),
  26535. weight: math.unit(1400, "lb"),
  26536. name: "Side",
  26537. image: {
  26538. source: "./media/characters/shadow-blade/side.svg",
  26539. extra: 1726 / 1267,
  26540. bottom: 58.4 / 1785
  26541. }
  26542. },
  26543. },
  26544. [
  26545. {
  26546. name: "Normal",
  26547. height: math.unit(5 + 11 / 12, "feet"),
  26548. default: true
  26549. },
  26550. ]
  26551. ))
  26552. characterMakers.push(() => makeCharacter(
  26553. { name: "Karla Halldor", species: ["nimbat"], tags: ["anthro"] },
  26554. {
  26555. front: {
  26556. height: math.unit(1 + 6 / 12, "feet"),
  26557. weight: math.unit(25, "lb"),
  26558. name: "Front",
  26559. image: {
  26560. source: "./media/characters/karla-halldor/front.svg",
  26561. extra: 1459 / 1383,
  26562. bottom: 12 / 1472
  26563. }
  26564. },
  26565. },
  26566. [
  26567. {
  26568. name: "Normal",
  26569. height: math.unit(1 + 6 / 12, "feet"),
  26570. default: true
  26571. },
  26572. ]
  26573. ))
  26574. characterMakers.push(() => makeCharacter(
  26575. { name: "Ariam", species: ["dragon"], tags: ["anthro"] },
  26576. {
  26577. front: {
  26578. height: math.unit(6 + 2 / 12, "feet"),
  26579. weight: math.unit(160, "lb"),
  26580. name: "Front",
  26581. image: {
  26582. source: "./media/characters/ariam/front.svg",
  26583. extra: 1073/976,
  26584. bottom: 52/1125
  26585. }
  26586. },
  26587. back: {
  26588. height: math.unit(6 + 2/12, "feet"),
  26589. weight: math.unit(160, "lb"),
  26590. name: "Back",
  26591. image: {
  26592. source: "./media/characters/ariam/back.svg",
  26593. extra: 1103/1023,
  26594. bottom: 9/1112
  26595. }
  26596. },
  26597. dressed: {
  26598. height: math.unit(6 + 2/12, "feet"),
  26599. weight: math.unit(160, "lb"),
  26600. name: "Dressed",
  26601. image: {
  26602. source: "./media/characters/ariam/dressed.svg",
  26603. extra: 1099/1009,
  26604. bottom: 25/1124
  26605. }
  26606. },
  26607. squatting: {
  26608. height: math.unit(4.1, "feet"),
  26609. weight: math.unit(160, "lb"),
  26610. name: "Squatting",
  26611. image: {
  26612. source: "./media/characters/ariam/squatting.svg",
  26613. extra: 2617 / 2112,
  26614. bottom: 61.2 / 2681,
  26615. }
  26616. },
  26617. },
  26618. [
  26619. {
  26620. name: "Normal",
  26621. height: math.unit(6 + 2 / 12, "feet"),
  26622. default: true
  26623. },
  26624. {
  26625. name: "Normal+",
  26626. height: math.unit(4, "meters")
  26627. },
  26628. {
  26629. name: "Macro",
  26630. height: math.unit(50, "meters")
  26631. },
  26632. {
  26633. name: "Macro+",
  26634. height: math.unit(100, "meters")
  26635. },
  26636. {
  26637. name: "Megamacro",
  26638. height: math.unit(20, "km")
  26639. },
  26640. {
  26641. name: "Caretaker",
  26642. height: math.unit(444, "megameters")
  26643. },
  26644. ]
  26645. ))
  26646. characterMakers.push(() => makeCharacter(
  26647. { name: "Qodri Class-of-'Fortwelve-Six", species: ["wolxi"], tags: ["anthro"] },
  26648. {
  26649. front: {
  26650. height: math.unit(1.67, "meters"),
  26651. weight: math.unit(140, "lb"),
  26652. name: "Front",
  26653. image: {
  26654. source: "./media/characters/qodri-class-of-'fortwelve-six/front.svg",
  26655. extra: 438 / 410,
  26656. bottom: 0.75 / 439
  26657. }
  26658. },
  26659. },
  26660. [
  26661. {
  26662. name: "Shrunken",
  26663. height: math.unit(7.6, "cm")
  26664. },
  26665. {
  26666. name: "Human Scale",
  26667. height: math.unit(1.67, "meters")
  26668. },
  26669. {
  26670. name: "Wolxi Scale",
  26671. height: math.unit(36.7, "meters"),
  26672. default: true
  26673. },
  26674. ]
  26675. ))
  26676. characterMakers.push(() => makeCharacter(
  26677. { name: "Izue Two-Mothers", species: ["wolxi"], tags: ["anthro"] },
  26678. {
  26679. front: {
  26680. height: math.unit(1.73, "meters"),
  26681. weight: math.unit(240, "lb"),
  26682. name: "Front",
  26683. image: {
  26684. source: "./media/characters/izue-two-mothers/front.svg",
  26685. extra: 469 / 437,
  26686. bottom: 1.24 / 470.6
  26687. }
  26688. },
  26689. },
  26690. [
  26691. {
  26692. name: "Shrunken",
  26693. height: math.unit(7.86, "cm")
  26694. },
  26695. {
  26696. name: "Human Scale",
  26697. height: math.unit(1.73, "meters")
  26698. },
  26699. {
  26700. name: "Wolxi Scale",
  26701. height: math.unit(38, "meters"),
  26702. default: true
  26703. },
  26704. ]
  26705. ))
  26706. characterMakers.push(() => makeCharacter(
  26707. { name: "Teeku Love-Shack", species: ["wolxi"], tags: ["anthro"] },
  26708. {
  26709. front: {
  26710. height: math.unit(1.55, "meters"),
  26711. weight: math.unit(120, "lb"),
  26712. name: "Front",
  26713. image: {
  26714. source: "./media/characters/teeku-love-shack/front.svg",
  26715. extra: 387 / 362,
  26716. bottom: 1.51 / 388
  26717. }
  26718. },
  26719. },
  26720. [
  26721. {
  26722. name: "Shrunken",
  26723. height: math.unit(7, "cm")
  26724. },
  26725. {
  26726. name: "Human Scale",
  26727. height: math.unit(1.55, "meters")
  26728. },
  26729. {
  26730. name: "Wolxi Scale",
  26731. height: math.unit(34.1, "meters"),
  26732. default: true
  26733. },
  26734. ]
  26735. ))
  26736. characterMakers.push(() => makeCharacter(
  26737. { name: "Dejma the Red", species: ["wolxi"], tags: ["anthro"] },
  26738. {
  26739. front: {
  26740. height: math.unit(1.83, "meters"),
  26741. weight: math.unit(135, "lb"),
  26742. name: "Front",
  26743. image: {
  26744. source: "./media/characters/dejma-the-red/front.svg",
  26745. extra: 480 / 458,
  26746. bottom: 1.8 / 482
  26747. }
  26748. },
  26749. },
  26750. [
  26751. {
  26752. name: "Shrunken",
  26753. height: math.unit(8.3, "cm")
  26754. },
  26755. {
  26756. name: "Human Scale",
  26757. height: math.unit(1.83, "meters")
  26758. },
  26759. {
  26760. name: "Wolxi Scale",
  26761. height: math.unit(40, "meters"),
  26762. default: true
  26763. },
  26764. ]
  26765. ))
  26766. characterMakers.push(() => makeCharacter(
  26767. { name: "Aki", species: ["deer"], tags: ["anthro"] },
  26768. {
  26769. front: {
  26770. height: math.unit(1.78, "meters"),
  26771. weight: math.unit(65, "kg"),
  26772. name: "Front",
  26773. image: {
  26774. source: "./media/characters/aki/front.svg",
  26775. extra: 452 / 415
  26776. }
  26777. },
  26778. frontNsfw: {
  26779. height: math.unit(1.78, "meters"),
  26780. weight: math.unit(65, "kg"),
  26781. name: "Front (NSFW)",
  26782. image: {
  26783. source: "./media/characters/aki/front-nsfw.svg",
  26784. extra: 452 / 415
  26785. }
  26786. },
  26787. back: {
  26788. height: math.unit(1.78, "meters"),
  26789. weight: math.unit(65, "kg"),
  26790. name: "Back",
  26791. image: {
  26792. source: "./media/characters/aki/back.svg",
  26793. extra: 452 / 415
  26794. }
  26795. },
  26796. rump: {
  26797. height: math.unit(2.05, "feet"),
  26798. name: "Rump",
  26799. image: {
  26800. source: "./media/characters/aki/rump.svg"
  26801. }
  26802. },
  26803. dick: {
  26804. height: math.unit(0.95, "feet"),
  26805. name: "Dick",
  26806. image: {
  26807. source: "./media/characters/aki/dick.svg"
  26808. }
  26809. },
  26810. },
  26811. [
  26812. {
  26813. name: "Micro",
  26814. height: math.unit(15, "cm")
  26815. },
  26816. {
  26817. name: "Normal",
  26818. height: math.unit(178, "cm"),
  26819. default: true
  26820. },
  26821. {
  26822. name: "Macro",
  26823. height: math.unit(214, "m")
  26824. },
  26825. {
  26826. name: "Macro+",
  26827. height: math.unit(534, "m")
  26828. },
  26829. ]
  26830. ))
  26831. characterMakers.push(() => makeCharacter(
  26832. { name: "Ari", species: ["catgirl"], tags: ["anthro"] },
  26833. {
  26834. front: {
  26835. height: math.unit(5 + 5 / 12, "feet"),
  26836. weight: math.unit(120, "lb"),
  26837. name: "Front",
  26838. image: {
  26839. source: "./media/characters/ari/front.svg",
  26840. extra: 1550/1471,
  26841. bottom: 39/1589
  26842. }
  26843. },
  26844. },
  26845. [
  26846. {
  26847. name: "Normal",
  26848. height: math.unit(5 + 5 / 12, "feet")
  26849. },
  26850. {
  26851. name: "Macro",
  26852. height: math.unit(100, "feet"),
  26853. default: true
  26854. },
  26855. {
  26856. name: "Megamacro",
  26857. height: math.unit(100, "miles")
  26858. },
  26859. {
  26860. name: "Gigamacro",
  26861. height: math.unit(80000, "miles")
  26862. },
  26863. ]
  26864. ))
  26865. characterMakers.push(() => makeCharacter(
  26866. { name: "Bolt", species: ["keldeo"], tags: ["feral"] },
  26867. {
  26868. side: {
  26869. height: math.unit(9, "feet"),
  26870. weight: math.unit(400, "kg"),
  26871. name: "Side",
  26872. image: {
  26873. source: "./media/characters/bolt/side.svg",
  26874. extra: 1126 / 896,
  26875. bottom: 60 / 1187.3,
  26876. }
  26877. },
  26878. },
  26879. [
  26880. {
  26881. name: "Micro",
  26882. height: math.unit(5, "inches")
  26883. },
  26884. {
  26885. name: "Normal",
  26886. height: math.unit(9, "feet"),
  26887. default: true
  26888. },
  26889. {
  26890. name: "Macro",
  26891. height: math.unit(700, "feet")
  26892. },
  26893. {
  26894. name: "Max Size",
  26895. height: math.unit(1.52e22, "yottameters")
  26896. },
  26897. ]
  26898. ))
  26899. characterMakers.push(() => makeCharacter(
  26900. { name: "Draekon Sylviar", species: ["dra'gal"], tags: ["anthro"] },
  26901. {
  26902. front: {
  26903. height: math.unit(4.3, "meters"),
  26904. weight: math.unit(3, "tons"),
  26905. name: "Front",
  26906. image: {
  26907. source: "./media/characters/draekon-sylviar/front.svg",
  26908. extra: 2072/1512,
  26909. bottom: 74/2146
  26910. }
  26911. },
  26912. back: {
  26913. height: math.unit(4.3, "meters"),
  26914. weight: math.unit(3, "tons"),
  26915. name: "Back",
  26916. image: {
  26917. source: "./media/characters/draekon-sylviar/back.svg",
  26918. extra: 1639/1483,
  26919. bottom: 41/1680
  26920. }
  26921. },
  26922. feral: {
  26923. height: math.unit(1.15, "meters"),
  26924. weight: math.unit(3, "tons"),
  26925. name: "Feral",
  26926. image: {
  26927. source: "./media/characters/draekon-sylviar/feral.svg",
  26928. extra: 1033/395,
  26929. bottom: 130/1163
  26930. }
  26931. },
  26932. maw: {
  26933. height: math.unit(1.3, "meters"),
  26934. name: "Maw",
  26935. image: {
  26936. source: "./media/characters/draekon-sylviar/maw.svg"
  26937. }
  26938. },
  26939. mawSeparated: {
  26940. height: math.unit(1.53, "meters"),
  26941. name: "Separated Maw",
  26942. image: {
  26943. source: "./media/characters/draekon-sylviar/maw-separated.svg"
  26944. }
  26945. },
  26946. tail: {
  26947. height: math.unit(1.15, "meters"),
  26948. name: "Tail",
  26949. image: {
  26950. source: "./media/characters/draekon-sylviar/tail.svg"
  26951. }
  26952. },
  26953. tailDick: {
  26954. height: math.unit(1.15, "meters"),
  26955. name: "Tail (Dick)",
  26956. image: {
  26957. source: "./media/characters/draekon-sylviar/tail-dick.svg"
  26958. }
  26959. },
  26960. tailDickSeparated: {
  26961. height: math.unit(1.19, "meters"),
  26962. name: "Tail (Separated Dick)",
  26963. image: {
  26964. source: "./media/characters/draekon-sylviar/tail-dick-separated.svg"
  26965. }
  26966. },
  26967. slit: {
  26968. height: math.unit(1, "meters"),
  26969. name: "Slit",
  26970. image: {
  26971. source: "./media/characters/draekon-sylviar/slit.svg"
  26972. }
  26973. },
  26974. dick: {
  26975. height: math.unit(1.15, "meters"),
  26976. name: "Dick",
  26977. image: {
  26978. source: "./media/characters/draekon-sylviar/dick.svg"
  26979. }
  26980. },
  26981. dickSeparated: {
  26982. height: math.unit(1.1, "meters"),
  26983. name: "Separated Dick",
  26984. image: {
  26985. source: "./media/characters/draekon-sylviar/dick-separated.svg"
  26986. }
  26987. },
  26988. sheath: {
  26989. height: math.unit(1.15, "meters"),
  26990. name: "Sheath",
  26991. image: {
  26992. source: "./media/characters/draekon-sylviar/sheath.svg"
  26993. }
  26994. },
  26995. },
  26996. [
  26997. {
  26998. name: "Small",
  26999. height: math.unit(4.53 / 2, "meters"),
  27000. default: true
  27001. },
  27002. {
  27003. name: "Normal",
  27004. height: math.unit(4.53, "meters"),
  27005. default: true
  27006. },
  27007. {
  27008. name: "Large",
  27009. height: math.unit(4.53 * 2, "meters"),
  27010. },
  27011. ]
  27012. ))
  27013. characterMakers.push(() => makeCharacter(
  27014. { name: "Brawler", species: ["german-shepherd"], tags: ["anthro"] },
  27015. {
  27016. front: {
  27017. height: math.unit(6 + 2 / 12, "feet"),
  27018. weight: math.unit(180, "lb"),
  27019. name: "Front",
  27020. image: {
  27021. source: "./media/characters/brawler/front.svg",
  27022. extra: 3301 / 3027,
  27023. bottom: 138 / 3439
  27024. }
  27025. },
  27026. },
  27027. [
  27028. {
  27029. name: "Normal",
  27030. height: math.unit(6 + 2 / 12, "feet"),
  27031. default: true
  27032. },
  27033. ]
  27034. ))
  27035. characterMakers.push(() => makeCharacter(
  27036. { name: "Alex", species: ["bayleef"], tags: ["anthro"] },
  27037. {
  27038. front: {
  27039. height: math.unit(11, "feet"),
  27040. weight: math.unit(1000, "lb"),
  27041. name: "Front",
  27042. image: {
  27043. source: "./media/characters/alex/front.svg",
  27044. bottom: 44.5 / 620
  27045. }
  27046. },
  27047. },
  27048. [
  27049. {
  27050. name: "Micro",
  27051. height: math.unit(5, "inches")
  27052. },
  27053. {
  27054. name: "Normal",
  27055. height: math.unit(11, "feet"),
  27056. default: true
  27057. },
  27058. {
  27059. name: "Macro",
  27060. height: math.unit(9.5e9, "feet")
  27061. },
  27062. {
  27063. name: "Max Size",
  27064. height: math.unit(1.4e283, "yottameters")
  27065. },
  27066. ]
  27067. ))
  27068. characterMakers.push(() => makeCharacter(
  27069. { name: "Zenari", species: ["zenari"], tags: ["anthro"] },
  27070. {
  27071. female: {
  27072. height: math.unit(29.9, "m"),
  27073. weight: math.unit(Math.pow((29.9 / 2), 3) * 80, "kg"),
  27074. name: "Female",
  27075. image: {
  27076. source: "./media/characters/zenari/female.svg",
  27077. extra: 3281.6 / 3217,
  27078. bottom: 72.2 / 3353
  27079. }
  27080. },
  27081. male: {
  27082. height: math.unit(27.7, "m"),
  27083. weight: math.unit(Math.pow((27.7 / 2), 3) * 80, "kg"),
  27084. name: "Male",
  27085. image: {
  27086. source: "./media/characters/zenari/male.svg",
  27087. extra: 3008 / 2991,
  27088. bottom: 54.6 / 3069
  27089. }
  27090. },
  27091. },
  27092. [
  27093. {
  27094. name: "Macro",
  27095. height: math.unit(29.7, "meters"),
  27096. default: true
  27097. },
  27098. ]
  27099. ))
  27100. characterMakers.push(() => makeCharacter(
  27101. { name: "Mactarian", species: ["mactarian"], tags: ["anthro"] },
  27102. {
  27103. female: {
  27104. height: math.unit(23.8, "m"),
  27105. weight: math.unit(Math.pow((23.8 / 2), 3) * 80, "kg"),
  27106. name: "Female",
  27107. image: {
  27108. source: "./media/characters/mactarian/female.svg",
  27109. extra: 2662 / 2569,
  27110. bottom: 73 / 2736
  27111. }
  27112. },
  27113. male: {
  27114. height: math.unit(23.8, "m"),
  27115. weight: math.unit(Math.pow((23.8 / 2), 3) * 80, "kg"),
  27116. name: "Male",
  27117. image: {
  27118. source: "./media/characters/mactarian/male.svg",
  27119. extra: 2673 / 2600,
  27120. bottom: 76 / 2750
  27121. }
  27122. },
  27123. },
  27124. [
  27125. {
  27126. name: "Macro",
  27127. height: math.unit(23.8, "meters"),
  27128. default: true
  27129. },
  27130. ]
  27131. ))
  27132. characterMakers.push(() => makeCharacter(
  27133. { name: "Umok", species: ["umok"], tags: ["anthro"] },
  27134. {
  27135. female: {
  27136. height: math.unit(19.3, "m"),
  27137. weight: math.unit(Math.pow((19.3 / 2), 3) * 60, "kg"),
  27138. name: "Female",
  27139. image: {
  27140. source: "./media/characters/umok/female.svg",
  27141. extra: 2186 / 2078,
  27142. bottom: 87 / 2277
  27143. }
  27144. },
  27145. male: {
  27146. height: math.unit(19.5, "m"),
  27147. weight: math.unit(Math.pow((19.5 / 2), 3) * 60, "kg"),
  27148. name: "Male",
  27149. image: {
  27150. source: "./media/characters/umok/male.svg",
  27151. extra: 2233 / 2140,
  27152. bottom: 24.4 / 2258
  27153. }
  27154. },
  27155. },
  27156. [
  27157. {
  27158. name: "Macro",
  27159. height: math.unit(19.3, "meters"),
  27160. default: true
  27161. },
  27162. ]
  27163. ))
  27164. characterMakers.push(() => makeCharacter(
  27165. { name: "Joraxian", species: ["joraxian"], tags: ["anthro"] },
  27166. {
  27167. female: {
  27168. height: math.unit(26.15, "m"),
  27169. weight: math.unit(Math.pow((26.15 / 2), 3) * 85, "kg"),
  27170. name: "Female",
  27171. image: {
  27172. source: "./media/characters/joraxian/female.svg",
  27173. extra: 2912 / 2824,
  27174. bottom: 36 / 2956
  27175. }
  27176. },
  27177. male: {
  27178. height: math.unit(25.4, "m"),
  27179. weight: math.unit(Math.pow((25.4 / 2), 3) * 85, "kg"),
  27180. name: "Male",
  27181. image: {
  27182. source: "./media/characters/joraxian/male.svg",
  27183. extra: 2877 / 2721,
  27184. bottom: 82 / 2967
  27185. }
  27186. },
  27187. },
  27188. [
  27189. {
  27190. name: "Macro",
  27191. height: math.unit(26.15, "meters"),
  27192. default: true
  27193. },
  27194. ]
  27195. ))
  27196. characterMakers.push(() => makeCharacter(
  27197. { name: "Sthara", species: ["sthara"], tags: ["anthro"] },
  27198. {
  27199. female: {
  27200. height: math.unit(21.6, "m"),
  27201. weight: math.unit(Math.pow((21.6 / 2), 3) * 80, "kg"),
  27202. name: "Female",
  27203. image: {
  27204. source: "./media/characters/sthara/female.svg",
  27205. extra: 2516 / 2347,
  27206. bottom: 21.5 / 2537
  27207. }
  27208. },
  27209. male: {
  27210. height: math.unit(24, "m"),
  27211. weight: math.unit(Math.pow((24 / 2), 3) * 80, "kg"),
  27212. name: "Male",
  27213. image: {
  27214. source: "./media/characters/sthara/male.svg",
  27215. extra: 2732 / 2607,
  27216. bottom: 23 / 2732
  27217. }
  27218. },
  27219. },
  27220. [
  27221. {
  27222. name: "Macro",
  27223. height: math.unit(21.6, "meters"),
  27224. default: true
  27225. },
  27226. ]
  27227. ))
  27228. characterMakers.push(() => makeCharacter(
  27229. { name: "Luka Bryzant", species: ["german-shepherd"], tags: ["anthro"] },
  27230. {
  27231. front: {
  27232. height: math.unit(6 + 4 / 12, "feet"),
  27233. weight: math.unit(175, "lb"),
  27234. name: "Front",
  27235. image: {
  27236. source: "./media/characters/luka-bryzant/front.svg",
  27237. extra: 311 / 289,
  27238. bottom: 4 / 315
  27239. }
  27240. },
  27241. back: {
  27242. height: math.unit(6 + 4 / 12, "feet"),
  27243. weight: math.unit(175, "lb"),
  27244. name: "Back",
  27245. image: {
  27246. source: "./media/characters/luka-bryzant/back.svg",
  27247. extra: 311 / 289,
  27248. bottom: 3.8 / 313.7
  27249. }
  27250. },
  27251. },
  27252. [
  27253. {
  27254. name: "Micro",
  27255. height: math.unit(10, "inches")
  27256. },
  27257. {
  27258. name: "Normal",
  27259. height: math.unit(6 + 4 / 12, "feet"),
  27260. default: true
  27261. },
  27262. {
  27263. name: "Large",
  27264. height: math.unit(12, "feet")
  27265. },
  27266. ]
  27267. ))
  27268. characterMakers.push(() => makeCharacter(
  27269. { name: "Aman Aquila", species: ["husky", "german-shepherd"], tags: ["anthro"] },
  27270. {
  27271. front: {
  27272. height: math.unit(5 + 7 / 12, "feet"),
  27273. weight: math.unit(185, "lb"),
  27274. name: "Front",
  27275. image: {
  27276. source: "./media/characters/aman-aquila/front.svg",
  27277. extra: 1013 / 976,
  27278. bottom: 45.6 / 1057
  27279. }
  27280. },
  27281. side: {
  27282. height: math.unit(5 + 7 / 12, "feet"),
  27283. weight: math.unit(185, "lb"),
  27284. name: "Side",
  27285. image: {
  27286. source: "./media/characters/aman-aquila/side.svg",
  27287. extra: 1054 / 1011,
  27288. bottom: 15 / 1070
  27289. }
  27290. },
  27291. back: {
  27292. height: math.unit(5 + 7 / 12, "feet"),
  27293. weight: math.unit(185, "lb"),
  27294. name: "Back",
  27295. image: {
  27296. source: "./media/characters/aman-aquila/back.svg",
  27297. extra: 1026 / 970,
  27298. bottom: 12 / 1039
  27299. }
  27300. },
  27301. head: {
  27302. height: math.unit(1.211, "feet"),
  27303. name: "Head",
  27304. image: {
  27305. source: "./media/characters/aman-aquila/head.svg",
  27306. }
  27307. },
  27308. },
  27309. [
  27310. {
  27311. name: "Minimicro",
  27312. height: math.unit(0.057, "inches")
  27313. },
  27314. {
  27315. name: "Micro",
  27316. height: math.unit(7, "inches")
  27317. },
  27318. {
  27319. name: "Mini",
  27320. height: math.unit(3 + 7 / 12, "feet")
  27321. },
  27322. {
  27323. name: "Normal",
  27324. height: math.unit(5 + 7 / 12, "feet"),
  27325. default: true
  27326. },
  27327. {
  27328. name: "Macro",
  27329. height: math.unit(157 + 7 / 12, "feet")
  27330. },
  27331. {
  27332. name: "Megamacro",
  27333. height: math.unit(1557 + 7 / 12, "feet")
  27334. },
  27335. {
  27336. name: "Gigamacro",
  27337. height: math.unit(15557 + 7 / 12, "feet")
  27338. },
  27339. ]
  27340. ))
  27341. characterMakers.push(() => makeCharacter(
  27342. { name: "Hiphae", species: ["mouse"], tags: ["anthro"] },
  27343. {
  27344. front: {
  27345. height: math.unit(3 + 2 / 12, "inches"),
  27346. weight: math.unit(0.3, "ounces"),
  27347. name: "Front",
  27348. image: {
  27349. source: "./media/characters/hiphae/front.svg",
  27350. extra: 1931 / 1683,
  27351. bottom: 24 / 1955
  27352. }
  27353. },
  27354. },
  27355. [
  27356. {
  27357. name: "Normal",
  27358. height: math.unit(3 + 1 / 2, "inches"),
  27359. default: true
  27360. },
  27361. ]
  27362. ))
  27363. characterMakers.push(() => makeCharacter(
  27364. { name: "Nicky", species: ["shark"], tags: ["anthro"] },
  27365. {
  27366. front: {
  27367. height: math.unit(5 + 10 / 12, "feet"),
  27368. weight: math.unit(165, "lb"),
  27369. name: "Front",
  27370. image: {
  27371. source: "./media/characters/nicky/front.svg",
  27372. extra: 3144 / 2886,
  27373. bottom: 45.6 / 3192
  27374. }
  27375. },
  27376. back: {
  27377. height: math.unit(5 + 10 / 12, "feet"),
  27378. weight: math.unit(165, "lb"),
  27379. name: "Back",
  27380. image: {
  27381. source: "./media/characters/nicky/back.svg",
  27382. extra: 3055 / 2804,
  27383. bottom: 28.4 / 3087
  27384. }
  27385. },
  27386. frontclothed: {
  27387. height: math.unit(5 + 10 / 12, "feet"),
  27388. weight: math.unit(165, "lb"),
  27389. name: "Front-clothed",
  27390. image: {
  27391. source: "./media/characters/nicky/front-clothed.svg",
  27392. extra: 3184.9 / 2926.9,
  27393. bottom: 86.5 / 3239.9
  27394. }
  27395. },
  27396. foot: {
  27397. height: math.unit(1.16, "feet"),
  27398. name: "Foot",
  27399. image: {
  27400. source: "./media/characters/nicky/foot.svg"
  27401. }
  27402. },
  27403. feet: {
  27404. height: math.unit(1.34, "feet"),
  27405. name: "Feet",
  27406. image: {
  27407. source: "./media/characters/nicky/feet.svg"
  27408. }
  27409. },
  27410. maw: {
  27411. height: math.unit(0.9, "feet"),
  27412. name: "Maw",
  27413. image: {
  27414. source: "./media/characters/nicky/maw.svg"
  27415. }
  27416. },
  27417. },
  27418. [
  27419. {
  27420. name: "Normal",
  27421. height: math.unit(5 + 10 / 12, "feet"),
  27422. default: true
  27423. },
  27424. {
  27425. name: "Macro",
  27426. height: math.unit(60, "feet")
  27427. },
  27428. {
  27429. name: "Megamacro",
  27430. height: math.unit(1, "mile")
  27431. },
  27432. ]
  27433. ))
  27434. characterMakers.push(() => makeCharacter(
  27435. { name: "Blair", species: ["seal"], tags: ["taur"] },
  27436. {
  27437. side: {
  27438. height: math.unit(10, "feet"),
  27439. weight: math.unit(600, "lb"),
  27440. name: "Side",
  27441. image: {
  27442. source: "./media/characters/blair/side.svg",
  27443. bottom: 16.6 / 475,
  27444. extra: 458 / 431
  27445. }
  27446. },
  27447. },
  27448. [
  27449. {
  27450. name: "Micro",
  27451. height: math.unit(8, "inches")
  27452. },
  27453. {
  27454. name: "Normal",
  27455. height: math.unit(10, "feet"),
  27456. default: true
  27457. },
  27458. {
  27459. name: "Macro",
  27460. height: math.unit(180, "feet")
  27461. },
  27462. ]
  27463. ))
  27464. characterMakers.push(() => makeCharacter(
  27465. { name: "Fisher", species: ["dog", "fish"], tags: ["anthro"] },
  27466. {
  27467. front: {
  27468. height: math.unit(5 + 4 / 12, "feet"),
  27469. weight: math.unit(125, "lb"),
  27470. name: "Front",
  27471. image: {
  27472. source: "./media/characters/fisher/front.svg",
  27473. extra: 444 / 390,
  27474. bottom: 2 / 444.8
  27475. }
  27476. },
  27477. },
  27478. [
  27479. {
  27480. name: "Micro",
  27481. height: math.unit(4, "inches")
  27482. },
  27483. {
  27484. name: "Normal",
  27485. height: math.unit(5 + 4 / 12, "feet"),
  27486. default: true
  27487. },
  27488. {
  27489. name: "Macro",
  27490. height: math.unit(100, "feet")
  27491. },
  27492. ]
  27493. ))
  27494. characterMakers.push(() => makeCharacter(
  27495. { name: "Gliss", species: ["sergal"], tags: ["anthro"] },
  27496. {
  27497. front: {
  27498. height: math.unit(6.71, "feet"),
  27499. weight: math.unit(200, "lb"),
  27500. preyCapacity: math.unit(1000000, "people"),
  27501. name: "Front",
  27502. image: {
  27503. source: "./media/characters/gliss/front.svg",
  27504. extra: 2347 / 2231,
  27505. bottom: 113 / 2462
  27506. }
  27507. },
  27508. hammerspaceSize: {
  27509. height: math.unit(6.71 * 717, "feet"),
  27510. weight: math.unit(200, "lb"),
  27511. preyCapacity: math.unit(1000000, "people"),
  27512. name: "Hammerspace Size",
  27513. image: {
  27514. source: "./media/characters/gliss/front.svg",
  27515. extra: 2347 / 2231,
  27516. bottom: 113 / 2462
  27517. }
  27518. },
  27519. },
  27520. [
  27521. {
  27522. name: "Normal",
  27523. height: math.unit(6.71, "feet"),
  27524. default: true
  27525. },
  27526. ]
  27527. ))
  27528. characterMakers.push(() => makeCharacter(
  27529. { name: "Dune Anderson", species: ["wolf"], tags: ["feral"] },
  27530. {
  27531. side: {
  27532. height: math.unit(1.44, "m"),
  27533. weight: math.unit(80, "kg"),
  27534. name: "Side",
  27535. image: {
  27536. source: "./media/characters/dune-anderson/side.svg",
  27537. bottom: 49 / 1426
  27538. }
  27539. },
  27540. },
  27541. [
  27542. {
  27543. name: "Wolf-sized",
  27544. height: math.unit(1.44, "meters")
  27545. },
  27546. {
  27547. name: "Normal",
  27548. height: math.unit(5.05, "meters"),
  27549. default: true
  27550. },
  27551. {
  27552. name: "Big",
  27553. height: math.unit(14.4, "meters")
  27554. },
  27555. {
  27556. name: "Huge",
  27557. height: math.unit(144, "meters")
  27558. },
  27559. ]
  27560. ))
  27561. characterMakers.push(() => makeCharacter(
  27562. { name: "Hind", species: ["protogen"], tags: ["anthro"] },
  27563. {
  27564. front: {
  27565. height: math.unit(6, "feet"),
  27566. weight: math.unit(220, "lb"),
  27567. name: "Front",
  27568. image: {
  27569. source: "./media/characters/hind/front.svg",
  27570. extra: 1912/1787,
  27571. bottom: 52/1964
  27572. }
  27573. },
  27574. back: {
  27575. height: math.unit(6, "feet"),
  27576. weight: math.unit(220, "lb"),
  27577. name: "Back",
  27578. image: {
  27579. source: "./media/characters/hind/back.svg",
  27580. extra: 1901/1794,
  27581. bottom: 26/1927
  27582. }
  27583. },
  27584. },
  27585. [
  27586. {
  27587. name: "Normal",
  27588. height: math.unit(6, "feet"),
  27589. default: true
  27590. },
  27591. ]
  27592. ))
  27593. characterMakers.push(() => makeCharacter(
  27594. { name: "Tharquench Sizestealer", species: ["skaven"], tags: ["anthro"] },
  27595. {
  27596. front: {
  27597. height: math.unit(2.1, "meters"),
  27598. weight: math.unit(150, "lb"),
  27599. name: "Front",
  27600. image: {
  27601. source: "./media/characters/tharquench-sizestealer/front.svg",
  27602. extra: 1605/1470,
  27603. bottom: 36/1641
  27604. }
  27605. },
  27606. frontAlt: {
  27607. height: math.unit(2.1, "meters"),
  27608. weight: math.unit(150, "lb"),
  27609. name: "Front (Alt)",
  27610. image: {
  27611. source: "./media/characters/tharquench-sizestealer/front-alt.svg",
  27612. extra: 2318 / 2063,
  27613. bottom: 93.4 / 2410
  27614. }
  27615. },
  27616. },
  27617. [
  27618. {
  27619. name: "Nano",
  27620. height: math.unit(1, "mm")
  27621. },
  27622. {
  27623. name: "Micro",
  27624. height: math.unit(1, "cm")
  27625. },
  27626. {
  27627. name: "Normal",
  27628. height: math.unit(2.1, "meters"),
  27629. default: true
  27630. },
  27631. ]
  27632. ))
  27633. characterMakers.push(() => makeCharacter(
  27634. { name: "Solex Draconov", species: ["dragon", "kitsune"], tags: ["anthro"] },
  27635. {
  27636. front: {
  27637. height: math.unit(7 + 5 / 12, "feet"),
  27638. weight: math.unit(357, "lb"),
  27639. name: "Front",
  27640. image: {
  27641. source: "./media/characters/solex-draconov/front.svg",
  27642. extra: 1993 / 1865,
  27643. bottom: 117 / 2111
  27644. }
  27645. },
  27646. },
  27647. [
  27648. {
  27649. name: "Natural Height",
  27650. height: math.unit(7 + 5 / 12, "feet"),
  27651. default: true
  27652. },
  27653. {
  27654. name: "Macro",
  27655. height: math.unit(350, "feet")
  27656. },
  27657. {
  27658. name: "Macro+",
  27659. height: math.unit(1000, "feet")
  27660. },
  27661. {
  27662. name: "Megamacro",
  27663. height: math.unit(20, "km")
  27664. },
  27665. {
  27666. name: "Megamacro+",
  27667. height: math.unit(1000, "km")
  27668. },
  27669. {
  27670. name: "Gigamacro",
  27671. height: math.unit(2.5, "Gm")
  27672. },
  27673. {
  27674. name: "Teramacro",
  27675. height: math.unit(15, "Tm")
  27676. },
  27677. {
  27678. name: "Galactic",
  27679. height: math.unit(30, "Zm")
  27680. },
  27681. {
  27682. name: "Universal",
  27683. height: math.unit(21000, "Ym")
  27684. },
  27685. {
  27686. name: "Omniversal",
  27687. height: math.unit(9.861e50, "Ym")
  27688. },
  27689. {
  27690. name: "Existential",
  27691. height: math.unit(1e300, "meters")
  27692. },
  27693. ]
  27694. ))
  27695. characterMakers.push(() => makeCharacter(
  27696. { name: "Mandarax", species: ["dragon"], tags: ["feral"] },
  27697. {
  27698. side: {
  27699. height: math.unit(25, "feet"),
  27700. weight: math.unit(90000, "lb"),
  27701. name: "Side",
  27702. image: {
  27703. source: "./media/characters/mandarax/side.svg",
  27704. extra: 614 / 332,
  27705. bottom: 55 / 630
  27706. }
  27707. },
  27708. lounging: {
  27709. height: math.unit(15.4, "feet"),
  27710. weight: math.unit(90000, "lb"),
  27711. name: "Lounging",
  27712. image: {
  27713. source: "./media/characters/mandarax/lounging.svg",
  27714. extra: 817/609,
  27715. bottom: 685/1502
  27716. }
  27717. },
  27718. head: {
  27719. height: math.unit(11.4, "feet"),
  27720. name: "Head",
  27721. image: {
  27722. source: "./media/characters/mandarax/head.svg"
  27723. }
  27724. },
  27725. belly: {
  27726. height: math.unit(33, "feet"),
  27727. name: "Belly",
  27728. preyCapacity: math.unit(500, "people"),
  27729. image: {
  27730. source: "./media/characters/mandarax/belly.svg"
  27731. }
  27732. },
  27733. dick: {
  27734. height: math.unit(8.46, "feet"),
  27735. name: "Dick",
  27736. image: {
  27737. source: "./media/characters/mandarax/dick.svg"
  27738. }
  27739. },
  27740. top: {
  27741. height: math.unit(28, "meters"),
  27742. name: "Top",
  27743. image: {
  27744. source: "./media/characters/mandarax/top.svg"
  27745. }
  27746. },
  27747. },
  27748. [
  27749. {
  27750. name: "Normal",
  27751. height: math.unit(25, "feet"),
  27752. default: true
  27753. },
  27754. ]
  27755. ))
  27756. characterMakers.push(() => makeCharacter(
  27757. { name: "Pixil", species: ["sylveon"], tags: ["anthro"] },
  27758. {
  27759. front: {
  27760. height: math.unit(5, "feet"),
  27761. weight: math.unit(90, "lb"),
  27762. name: "Front",
  27763. image: {
  27764. source: "./media/characters/pixil/front.svg",
  27765. extra: 2000 / 1618,
  27766. bottom: 12.3 / 2011
  27767. }
  27768. },
  27769. },
  27770. [
  27771. {
  27772. name: "Normal",
  27773. height: math.unit(5, "feet"),
  27774. default: true
  27775. },
  27776. {
  27777. name: "Megamacro",
  27778. height: math.unit(10, "miles"),
  27779. },
  27780. ]
  27781. ))
  27782. characterMakers.push(() => makeCharacter(
  27783. { name: "Angel", species: ["catgirl"], tags: ["anthro"] },
  27784. {
  27785. front: {
  27786. height: math.unit(7 + 2 / 12, "feet"),
  27787. weight: math.unit(200, "lb"),
  27788. name: "Front",
  27789. image: {
  27790. source: "./media/characters/angel/front.svg",
  27791. extra: 1946/1840,
  27792. bottom: 30/1976
  27793. }
  27794. },
  27795. },
  27796. [
  27797. {
  27798. name: "Normal",
  27799. height: math.unit(7 + 2 / 12, "feet"),
  27800. default: true
  27801. },
  27802. {
  27803. name: "Macro",
  27804. height: math.unit(1000, "feet")
  27805. },
  27806. {
  27807. name: "Megamacro",
  27808. height: math.unit(2, "miles")
  27809. },
  27810. {
  27811. name: "Gigamacro",
  27812. height: math.unit(20, "earths")
  27813. },
  27814. ]
  27815. ))
  27816. characterMakers.push(() => makeCharacter(
  27817. { name: "Mekana", species: ["cowgirl"], tags: ["anthro"] },
  27818. {
  27819. front: {
  27820. height: math.unit(5, "feet"),
  27821. weight: math.unit(180, "lb"),
  27822. name: "Front",
  27823. image: {
  27824. source: "./media/characters/mekana/front.svg",
  27825. extra: 1671 / 1605,
  27826. bottom: 3.5 / 1691
  27827. }
  27828. },
  27829. side: {
  27830. height: math.unit(5, "feet"),
  27831. weight: math.unit(180, "lb"),
  27832. name: "Side",
  27833. image: {
  27834. source: "./media/characters/mekana/side.svg",
  27835. extra: 1671 / 1605,
  27836. bottom: 3.5 / 1691
  27837. }
  27838. },
  27839. back: {
  27840. height: math.unit(5, "feet"),
  27841. weight: math.unit(180, "lb"),
  27842. name: "Back",
  27843. image: {
  27844. source: "./media/characters/mekana/back.svg",
  27845. extra: 1671 / 1605,
  27846. bottom: 3.5 / 1691
  27847. }
  27848. },
  27849. },
  27850. [
  27851. {
  27852. name: "Normal",
  27853. height: math.unit(5, "feet"),
  27854. default: true
  27855. },
  27856. ]
  27857. ))
  27858. characterMakers.push(() => makeCharacter(
  27859. { name: "Pixie", species: ["pony"], tags: ["anthro"] },
  27860. {
  27861. front: {
  27862. height: math.unit(4 + 6 / 12, "feet"),
  27863. weight: math.unit(80, "lb"),
  27864. name: "Front",
  27865. image: {
  27866. source: "./media/characters/pixie/front.svg",
  27867. extra: 1924 / 1825,
  27868. bottom: 22.4 / 1946
  27869. }
  27870. },
  27871. },
  27872. [
  27873. {
  27874. name: "Normal",
  27875. height: math.unit(4 + 6 / 12, "feet"),
  27876. default: true
  27877. },
  27878. {
  27879. name: "Macro",
  27880. height: math.unit(40, "feet")
  27881. },
  27882. ]
  27883. ))
  27884. characterMakers.push(() => makeCharacter(
  27885. { name: "The Lascivious", species: ["wolxi", "deity"], tags: ["anthro"] },
  27886. {
  27887. front: {
  27888. height: math.unit(2.1, "meters"),
  27889. weight: math.unit(200, "lb"),
  27890. name: "Front",
  27891. image: {
  27892. source: "./media/characters/the-lascivious/front.svg",
  27893. extra: 1 / 0.893,
  27894. bottom: 3.5 / 573.7
  27895. }
  27896. },
  27897. },
  27898. [
  27899. {
  27900. name: "Human Scale",
  27901. height: math.unit(2.1, "meters")
  27902. },
  27903. {
  27904. name: "Wolxi Scale",
  27905. height: math.unit(46.2, "m"),
  27906. default: true
  27907. },
  27908. {
  27909. name: "Boinker of Buildings",
  27910. height: math.unit(10, "km")
  27911. },
  27912. {
  27913. name: "Shagger of Skyscrapers",
  27914. height: math.unit(40, "km")
  27915. },
  27916. {
  27917. name: "Banger of Boroughs",
  27918. height: math.unit(4000, "km")
  27919. },
  27920. {
  27921. name: "Screwer of States",
  27922. height: math.unit(100000, "km")
  27923. },
  27924. {
  27925. name: "Pounder of Planets",
  27926. height: math.unit(2000000, "km")
  27927. },
  27928. ]
  27929. ))
  27930. characterMakers.push(() => makeCharacter(
  27931. { name: "AJ", species: ["wolf"], tags: ["anthro"] },
  27932. {
  27933. front: {
  27934. height: math.unit(6, "feet"),
  27935. weight: math.unit(150, "lb"),
  27936. name: "Front",
  27937. image: {
  27938. source: "./media/characters/aj/front.svg",
  27939. extra: 2039 / 1562,
  27940. bottom: 40 / 2079
  27941. }
  27942. },
  27943. },
  27944. [
  27945. {
  27946. name: "Normal",
  27947. height: math.unit(11 + 6 / 12, "feet"),
  27948. default: true
  27949. },
  27950. {
  27951. name: "Megamacro",
  27952. height: math.unit(60, "megameters")
  27953. },
  27954. ]
  27955. ))
  27956. characterMakers.push(() => makeCharacter(
  27957. { name: "Koros", species: ["dragon"], tags: ["feral"] },
  27958. {
  27959. side: {
  27960. height: math.unit(31 + 8 / 12, "feet"),
  27961. weight: math.unit(75000, "kg"),
  27962. name: "Side",
  27963. image: {
  27964. source: "./media/characters/koros/side.svg",
  27965. extra: 1442 / 1297,
  27966. bottom: 122.7 / 1562
  27967. }
  27968. },
  27969. dicksKingsCrown: {
  27970. height: math.unit(6, "feet"),
  27971. name: "Dicks (King's Crown)",
  27972. image: {
  27973. source: "./media/characters/koros/dicks-kings-crown.svg"
  27974. }
  27975. },
  27976. dicksTailSet: {
  27977. height: math.unit(3, "feet"),
  27978. name: "Dicks (Tail Set)",
  27979. image: {
  27980. source: "./media/characters/koros/dicks-tail-set.svg"
  27981. }
  27982. },
  27983. dickCumming: {
  27984. height: math.unit(7.98, "feet"),
  27985. name: "Dick (Cumming)",
  27986. image: {
  27987. source: "./media/characters/koros/dick-cumming.svg"
  27988. }
  27989. },
  27990. dicksBack: {
  27991. height: math.unit(5.9, "feet"),
  27992. name: "Dicks (Back)",
  27993. image: {
  27994. source: "./media/characters/koros/dicks-back.svg"
  27995. }
  27996. },
  27997. dicksFront: {
  27998. height: math.unit(3.72, "feet"),
  27999. name: "Dicks (Front)",
  28000. image: {
  28001. source: "./media/characters/koros/dicks-front.svg"
  28002. }
  28003. },
  28004. dicksPeeking: {
  28005. height: math.unit(3.0, "feet"),
  28006. name: "Dicks (Peeking)",
  28007. image: {
  28008. source: "./media/characters/koros/dicks-peeking.svg"
  28009. }
  28010. },
  28011. eye: {
  28012. height: math.unit(1.7, "feet"),
  28013. name: "Eye",
  28014. image: {
  28015. source: "./media/characters/koros/eye.svg"
  28016. }
  28017. },
  28018. headFront: {
  28019. height: math.unit(11.69, "feet"),
  28020. name: "Head (Front)",
  28021. image: {
  28022. source: "./media/characters/koros/head-front.svg"
  28023. }
  28024. },
  28025. headSide: {
  28026. height: math.unit(14, "feet"),
  28027. name: "Head (Side)",
  28028. image: {
  28029. source: "./media/characters/koros/head-side.svg"
  28030. }
  28031. },
  28032. leg: {
  28033. height: math.unit(17, "feet"),
  28034. name: "Leg",
  28035. image: {
  28036. source: "./media/characters/koros/leg.svg"
  28037. }
  28038. },
  28039. mawSide: {
  28040. height: math.unit(12.8, "feet"),
  28041. name: "Maw (Side)",
  28042. image: {
  28043. source: "./media/characters/koros/maw-side.svg"
  28044. }
  28045. },
  28046. mawSpitting: {
  28047. height: math.unit(17, "feet"),
  28048. name: "Maw (Spitting)",
  28049. image: {
  28050. source: "./media/characters/koros/maw-spitting.svg"
  28051. }
  28052. },
  28053. slit: {
  28054. height: math.unit(2.8, "feet"),
  28055. name: "Slit",
  28056. image: {
  28057. source: "./media/characters/koros/slit.svg"
  28058. }
  28059. },
  28060. stomach: {
  28061. height: math.unit(6.8, "feet"),
  28062. preyCapacity: math.unit(20, "people"),
  28063. name: "Stomach",
  28064. image: {
  28065. source: "./media/characters/koros/stomach.svg"
  28066. }
  28067. },
  28068. wingspanBottom: {
  28069. height: math.unit(114, "feet"),
  28070. name: "Wingspan (Bottom)",
  28071. image: {
  28072. source: "./media/characters/koros/wingspan-bottom.svg"
  28073. }
  28074. },
  28075. wingspanTop: {
  28076. height: math.unit(104, "feet"),
  28077. name: "Wingspan (Top)",
  28078. image: {
  28079. source: "./media/characters/koros/wingspan-top.svg"
  28080. }
  28081. },
  28082. },
  28083. [
  28084. {
  28085. name: "Normal",
  28086. height: math.unit(31 + 8 / 12, "feet"),
  28087. default: true
  28088. },
  28089. ]
  28090. ))
  28091. characterMakers.push(() => makeCharacter(
  28092. { name: "Vexx", species: ["skarlan"], tags: ["anthro"] },
  28093. {
  28094. front: {
  28095. height: math.unit(18 + 5 / 12, "feet"),
  28096. weight: math.unit(3750, "kg"),
  28097. name: "Front",
  28098. image: {
  28099. source: "./media/characters/vexx/front.svg",
  28100. extra: 426 / 396,
  28101. bottom: 31.5 / 458
  28102. }
  28103. },
  28104. maw: {
  28105. height: math.unit(6, "feet"),
  28106. name: "Maw",
  28107. image: {
  28108. source: "./media/characters/vexx/maw.svg"
  28109. }
  28110. },
  28111. },
  28112. [
  28113. {
  28114. name: "Normal",
  28115. height: math.unit(18 + 5 / 12, "feet"),
  28116. default: true
  28117. },
  28118. ]
  28119. ))
  28120. characterMakers.push(() => makeCharacter(
  28121. { name: "Baadra", species: ["skarlan"], tags: ["anthro"] },
  28122. {
  28123. front: {
  28124. height: math.unit(17 + 6 / 12, "feet"),
  28125. weight: math.unit(150, "lb"),
  28126. name: "Front",
  28127. image: {
  28128. source: "./media/characters/baadra/front.svg",
  28129. extra: 1694/1553,
  28130. bottom: 179/1873
  28131. }
  28132. },
  28133. frontAlt: {
  28134. height: math.unit(17 + 6 / 12, "feet"),
  28135. weight: math.unit(150, "lb"),
  28136. name: "Front (Alt)",
  28137. image: {
  28138. source: "./media/characters/baadra/front-alt.svg",
  28139. extra: 3137 / 2890,
  28140. bottom: 168.4 / 3305
  28141. }
  28142. },
  28143. back: {
  28144. height: math.unit(17 + 6 / 12, "feet"),
  28145. weight: math.unit(150, "lb"),
  28146. name: "Back",
  28147. image: {
  28148. source: "./media/characters/baadra/back.svg",
  28149. extra: 3142 / 2890,
  28150. bottom: 220 / 3371
  28151. }
  28152. },
  28153. head: {
  28154. height: math.unit(5.45, "feet"),
  28155. name: "Head",
  28156. image: {
  28157. source: "./media/characters/baadra/head.svg"
  28158. }
  28159. },
  28160. headAngry: {
  28161. height: math.unit(4.95, "feet"),
  28162. name: "Head (Angry)",
  28163. image: {
  28164. source: "./media/characters/baadra/head-angry.svg"
  28165. }
  28166. },
  28167. headOpen: {
  28168. height: math.unit(6, "feet"),
  28169. name: "Head (Open)",
  28170. image: {
  28171. source: "./media/characters/baadra/head-open.svg"
  28172. }
  28173. },
  28174. },
  28175. [
  28176. {
  28177. name: "Normal",
  28178. height: math.unit(17 + 6 / 12, "feet"),
  28179. default: true
  28180. },
  28181. ]
  28182. ))
  28183. characterMakers.push(() => makeCharacter(
  28184. { name: "Juri", species: ["kitsune"], tags: ["anthro"] },
  28185. {
  28186. front: {
  28187. height: math.unit(7 + 3 / 12, "feet"),
  28188. weight: math.unit(180, "lb"),
  28189. name: "Front",
  28190. image: {
  28191. source: "./media/characters/juri/front.svg",
  28192. extra: 1401 / 1237,
  28193. bottom: 18.5 / 1418
  28194. }
  28195. },
  28196. side: {
  28197. height: math.unit(7 + 3 / 12, "feet"),
  28198. weight: math.unit(180, "lb"),
  28199. name: "Side",
  28200. image: {
  28201. source: "./media/characters/juri/side.svg",
  28202. extra: 1424 / 1242,
  28203. bottom: 18.5 / 1447
  28204. }
  28205. },
  28206. sitting: {
  28207. height: math.unit(6, "feet"),
  28208. weight: math.unit(180, "lb"),
  28209. name: "Sitting",
  28210. image: {
  28211. source: "./media/characters/juri/sitting.svg",
  28212. extra: 1270 / 1143,
  28213. bottom: 100 / 1343
  28214. }
  28215. },
  28216. back: {
  28217. height: math.unit(7 + 3 / 12, "feet"),
  28218. weight: math.unit(180, "lb"),
  28219. name: "Back",
  28220. image: {
  28221. source: "./media/characters/juri/back.svg",
  28222. extra: 1377 / 1240,
  28223. bottom: 23.7 / 1405
  28224. }
  28225. },
  28226. maw: {
  28227. height: math.unit(2.8, "feet"),
  28228. name: "Maw",
  28229. image: {
  28230. source: "./media/characters/juri/maw.svg"
  28231. }
  28232. },
  28233. stomach: {
  28234. height: math.unit(0.89, "feet"),
  28235. preyCapacity: math.unit(4, "liters"),
  28236. name: "Stomach",
  28237. image: {
  28238. source: "./media/characters/juri/stomach.svg"
  28239. }
  28240. },
  28241. },
  28242. [
  28243. {
  28244. name: "Normal",
  28245. height: math.unit(7 + 3 / 12, "feet"),
  28246. default: true
  28247. },
  28248. ]
  28249. ))
  28250. characterMakers.push(() => makeCharacter(
  28251. { name: "Maxene Sita", species: ["fox", "kitsune", "hellhound"], tags: ["anthro"] },
  28252. {
  28253. fox: {
  28254. height: math.unit(5 + 6 / 12, "feet"),
  28255. weight: math.unit(140, "lb"),
  28256. name: "Fox",
  28257. image: {
  28258. source: "./media/characters/maxene-sita/fox.svg",
  28259. extra: 146 / 138,
  28260. bottom: 2.1 / 148.19
  28261. }
  28262. },
  28263. foxLaying: {
  28264. height: math.unit(1.70, "feet"),
  28265. weight: math.unit(140, "lb"),
  28266. name: "Fox (Laying)",
  28267. image: {
  28268. source: "./media/characters/maxene-sita/fox-laying.svg",
  28269. extra: 910 / 572,
  28270. bottom: 71 / 981
  28271. }
  28272. },
  28273. kitsune: {
  28274. height: math.unit(10, "feet"),
  28275. weight: math.unit(800, "lb"),
  28276. name: "Kitsune",
  28277. image: {
  28278. source: "./media/characters/maxene-sita/kitsune.svg",
  28279. extra: 185 / 176,
  28280. bottom: 4.7 / 189.9
  28281. }
  28282. },
  28283. hellhound: {
  28284. height: math.unit(10, "feet"),
  28285. weight: math.unit(700, "lb"),
  28286. name: "Hellhound",
  28287. image: {
  28288. source: "./media/characters/maxene-sita/hellhound.svg",
  28289. extra: 1600 / 1545,
  28290. bottom: 81 / 1681
  28291. }
  28292. },
  28293. },
  28294. [
  28295. {
  28296. name: "Normal",
  28297. height: math.unit(5 + 6 / 12, "feet"),
  28298. default: true
  28299. },
  28300. ]
  28301. ))
  28302. characterMakers.push(() => makeCharacter(
  28303. { name: "Maia", species: ["mew"], tags: ["feral"] },
  28304. {
  28305. front: {
  28306. height: math.unit(3 + 4 / 12, "feet"),
  28307. weight: math.unit(70, "lb"),
  28308. name: "Front",
  28309. image: {
  28310. source: "./media/characters/maia/front.svg",
  28311. extra: 227 / 219.5,
  28312. bottom: 40 / 267
  28313. }
  28314. },
  28315. back: {
  28316. height: math.unit(3 + 4 / 12, "feet"),
  28317. weight: math.unit(70, "lb"),
  28318. name: "Back",
  28319. image: {
  28320. source: "./media/characters/maia/back.svg",
  28321. extra: 237 / 225
  28322. }
  28323. },
  28324. },
  28325. [
  28326. {
  28327. name: "Normal",
  28328. height: math.unit(3 + 4 / 12, "feet"),
  28329. default: true
  28330. },
  28331. ]
  28332. ))
  28333. characterMakers.push(() => makeCharacter(
  28334. { name: "Jabaro", species: ["cheetah"], tags: ["anthro"] },
  28335. {
  28336. front: {
  28337. height: math.unit(5 + 10 / 12, "feet"),
  28338. weight: math.unit(197, "lb"),
  28339. name: "Front",
  28340. image: {
  28341. source: "./media/characters/jabaro/front.svg",
  28342. extra: 225 / 216,
  28343. bottom: 5.06 / 230
  28344. }
  28345. },
  28346. back: {
  28347. height: math.unit(5 + 10 / 12, "feet"),
  28348. weight: math.unit(197, "lb"),
  28349. name: "Back",
  28350. image: {
  28351. source: "./media/characters/jabaro/back.svg",
  28352. extra: 225 / 219,
  28353. bottom: 1.9 / 227
  28354. }
  28355. },
  28356. },
  28357. [
  28358. {
  28359. name: "Normal",
  28360. height: math.unit(5 + 10 / 12, "feet"),
  28361. default: true
  28362. },
  28363. ]
  28364. ))
  28365. characterMakers.push(() => makeCharacter(
  28366. { name: "Risa", species: ["corvid"], tags: ["anthro"] },
  28367. {
  28368. front: {
  28369. height: math.unit(5 + 8 / 12, "feet"),
  28370. weight: math.unit(139, "lb"),
  28371. name: "Front",
  28372. image: {
  28373. source: "./media/characters/risa/front.svg",
  28374. extra: 270 / 260,
  28375. bottom: 11.2 / 282
  28376. }
  28377. },
  28378. back: {
  28379. height: math.unit(5 + 8 / 12, "feet"),
  28380. weight: math.unit(139, "lb"),
  28381. name: "Back",
  28382. image: {
  28383. source: "./media/characters/risa/back.svg",
  28384. extra: 264 / 255,
  28385. bottom: 4 / 268
  28386. }
  28387. },
  28388. },
  28389. [
  28390. {
  28391. name: "Normal",
  28392. height: math.unit(5 + 8 / 12, "feet"),
  28393. default: true
  28394. },
  28395. ]
  28396. ))
  28397. characterMakers.push(() => makeCharacter(
  28398. { name: "Weatley", species: ["chimera"], tags: ["anthro"] },
  28399. {
  28400. front: {
  28401. height: math.unit(2 + 11 / 12, "feet"),
  28402. weight: math.unit(30, "lb"),
  28403. name: "Front",
  28404. image: {
  28405. source: "./media/characters/weatley/front.svg",
  28406. bottom: 10.7 / 414,
  28407. extra: 403.5 / 362
  28408. }
  28409. },
  28410. back: {
  28411. height: math.unit(2 + 11 / 12, "feet"),
  28412. weight: math.unit(30, "lb"),
  28413. name: "Back",
  28414. image: {
  28415. source: "./media/characters/weatley/back.svg",
  28416. bottom: 10.7 / 414,
  28417. extra: 403.5 / 362
  28418. }
  28419. },
  28420. },
  28421. [
  28422. {
  28423. name: "Normal",
  28424. height: math.unit(2 + 11 / 12, "feet"),
  28425. default: true
  28426. },
  28427. ]
  28428. ))
  28429. characterMakers.push(() => makeCharacter(
  28430. { name: "Mercury Crescent", species: ["dragon", "kobold"], tags: ["anthro"] },
  28431. {
  28432. front: {
  28433. height: math.unit(5 + 2 / 12, "feet"),
  28434. weight: math.unit(50, "kg"),
  28435. name: "Front",
  28436. image: {
  28437. source: "./media/characters/mercury-crescent/front.svg",
  28438. extra: 1088 / 1033,
  28439. bottom: 18.9 / 1109
  28440. }
  28441. },
  28442. },
  28443. [
  28444. {
  28445. name: "Normal",
  28446. height: math.unit(5 + 2 / 12, "feet"),
  28447. default: true
  28448. },
  28449. ]
  28450. ))
  28451. characterMakers.push(() => makeCharacter(
  28452. { name: "Diamond Jones", species: ["kobold"], tags: ["anthro"] },
  28453. {
  28454. front: {
  28455. height: math.unit(2, "feet"),
  28456. weight: math.unit(15, "kg"),
  28457. name: "Front",
  28458. image: {
  28459. source: "./media/characters/diamond-jones/front.svg",
  28460. extra: 727/723,
  28461. bottom: 46/773
  28462. }
  28463. },
  28464. },
  28465. [
  28466. {
  28467. name: "Normal",
  28468. height: math.unit(2, "feet"),
  28469. default: true
  28470. },
  28471. ]
  28472. ))
  28473. characterMakers.push(() => makeCharacter(
  28474. { name: "Sweet Bit", species: ["gestalt", "kobold"], tags: ["anthro"] },
  28475. {
  28476. front: {
  28477. height: math.unit(3, "feet"),
  28478. weight: math.unit(30, "kg"),
  28479. name: "Front",
  28480. image: {
  28481. source: "./media/characters/sweet-bit/front.svg",
  28482. extra: 675 / 567,
  28483. bottom: 27.7 / 703
  28484. }
  28485. },
  28486. },
  28487. [
  28488. {
  28489. name: "Normal",
  28490. height: math.unit(3, "feet"),
  28491. default: true
  28492. },
  28493. ]
  28494. ))
  28495. characterMakers.push(() => makeCharacter(
  28496. { name: "Umbrazen", species: ["mimic"], tags: ["feral"] },
  28497. {
  28498. side: {
  28499. height: math.unit(9.178, "feet"),
  28500. weight: math.unit(500, "lb"),
  28501. name: "Side",
  28502. image: {
  28503. source: "./media/characters/umbrazen/side.svg",
  28504. extra: 1730 / 1473,
  28505. bottom: 34.6 / 1765
  28506. }
  28507. },
  28508. },
  28509. [
  28510. {
  28511. name: "Normal",
  28512. height: math.unit(9.178, "feet"),
  28513. default: true
  28514. },
  28515. ]
  28516. ))
  28517. characterMakers.push(() => makeCharacter(
  28518. { name: "Arlist", species: ["jackal"], tags: ["anthro"] },
  28519. {
  28520. front: {
  28521. height: math.unit(10, "feet"),
  28522. weight: math.unit(750, "lb"),
  28523. name: "Front",
  28524. image: {
  28525. source: "./media/characters/arlist/front.svg",
  28526. extra: 961 / 778,
  28527. bottom: 6.2 / 986
  28528. }
  28529. },
  28530. },
  28531. [
  28532. {
  28533. name: "Normal",
  28534. height: math.unit(10, "feet"),
  28535. default: true
  28536. },
  28537. ]
  28538. ))
  28539. characterMakers.push(() => makeCharacter(
  28540. { name: "Aradel", species: ["jackalope"], tags: ["anthro"] },
  28541. {
  28542. front: {
  28543. height: math.unit(5 + 1 / 12, "feet"),
  28544. weight: math.unit(110, "lb"),
  28545. name: "Front",
  28546. image: {
  28547. source: "./media/characters/aradel/front.svg",
  28548. extra: 324 / 303,
  28549. bottom: 3.6 / 329.4
  28550. }
  28551. },
  28552. },
  28553. [
  28554. {
  28555. name: "Normal",
  28556. height: math.unit(5 + 1 / 12, "feet"),
  28557. default: true
  28558. },
  28559. ]
  28560. ))
  28561. characterMakers.push(() => makeCharacter(
  28562. { name: "Serryn", species: ["calico-rat"], tags: ["anthro"] },
  28563. {
  28564. dressed: {
  28565. height: math.unit(3 + 8 / 12, "feet"),
  28566. weight: math.unit(50, "lb"),
  28567. name: "Dressed",
  28568. image: {
  28569. source: "./media/characters/serryn/dressed.svg",
  28570. extra: 1792 / 1656,
  28571. bottom: 43.5 / 1840
  28572. }
  28573. },
  28574. nude: {
  28575. height: math.unit(3 + 8 / 12, "feet"),
  28576. weight: math.unit(50, "lb"),
  28577. name: "Nude",
  28578. image: {
  28579. source: "./media/characters/serryn/nude.svg",
  28580. extra: 1792 / 1656,
  28581. bottom: 43.5 / 1840
  28582. }
  28583. },
  28584. },
  28585. [
  28586. {
  28587. name: "Normal",
  28588. height: math.unit(3 + 8 / 12, "feet"),
  28589. default: true
  28590. },
  28591. ]
  28592. ))
  28593. characterMakers.push(() => makeCharacter(
  28594. { name: "Xavier Thyme", "species": ["fox"], tags: ["anthro"] },
  28595. {
  28596. front: {
  28597. height: math.unit(7 + 10 / 12, "feet"),
  28598. weight: math.unit(255, "lb"),
  28599. name: "Front",
  28600. image: {
  28601. source: "./media/characters/xavier-thyme/front.svg",
  28602. extra: 3733 / 3642,
  28603. bottom: 131 / 3869
  28604. }
  28605. },
  28606. frontRaven: {
  28607. height: math.unit(7 + 10 / 12, "feet"),
  28608. weight: math.unit(255, "lb"),
  28609. name: "Front (Raven)",
  28610. image: {
  28611. source: "./media/characters/xavier-thyme/front-raven.svg",
  28612. extra: 4385 / 3642,
  28613. bottom: 131 / 4517
  28614. }
  28615. },
  28616. },
  28617. [
  28618. {
  28619. name: "Normal",
  28620. height: math.unit(7 + 10 / 12, "feet"),
  28621. default: true
  28622. },
  28623. ]
  28624. ))
  28625. characterMakers.push(() => makeCharacter(
  28626. { name: "Kiki", species: ["rabbit", "panda"], tags: ["anthro"] },
  28627. {
  28628. front: {
  28629. height: math.unit(1.6, "m"),
  28630. weight: math.unit(50, "kg"),
  28631. name: "Front",
  28632. image: {
  28633. source: "./media/characters/kiki/front.svg",
  28634. extra: 4682 / 3610,
  28635. bottom: 115 / 4777
  28636. }
  28637. },
  28638. },
  28639. [
  28640. {
  28641. name: "Normal",
  28642. height: math.unit(1.6, "meters"),
  28643. default: true
  28644. },
  28645. ]
  28646. ))
  28647. characterMakers.push(() => makeCharacter(
  28648. { name: "Ryoko", species: ["oni"], tags: ["anthro"] },
  28649. {
  28650. front: {
  28651. height: math.unit(50, "m"),
  28652. weight: math.unit(500, "tonnes"),
  28653. name: "Front",
  28654. image: {
  28655. source: "./media/characters/ryoko/front.svg",
  28656. extra: 4632 / 3926,
  28657. bottom: 193 / 4823
  28658. }
  28659. },
  28660. },
  28661. [
  28662. {
  28663. name: "Normal",
  28664. height: math.unit(50, "meters"),
  28665. default: true
  28666. },
  28667. ]
  28668. ))
  28669. characterMakers.push(() => makeCharacter(
  28670. { name: "Elio", species: ["umbra"], tags: ["anthro"] },
  28671. {
  28672. front: {
  28673. height: math.unit(30, "m"),
  28674. weight: math.unit(22, "tonnes"),
  28675. name: "Front",
  28676. image: {
  28677. source: "./media/characters/elio/front.svg",
  28678. extra: 4582 / 3720,
  28679. bottom: 236 / 4828
  28680. }
  28681. },
  28682. },
  28683. [
  28684. {
  28685. name: "Normal",
  28686. height: math.unit(30, "meters"),
  28687. default: true
  28688. },
  28689. ]
  28690. ))
  28691. characterMakers.push(() => makeCharacter(
  28692. { name: "Azura", species: ["phoenix"], tags: ["anthro"] },
  28693. {
  28694. front: {
  28695. height: math.unit(6 + 3 / 12, "feet"),
  28696. weight: math.unit(120, "lb"),
  28697. name: "Front",
  28698. image: {
  28699. source: "./media/characters/azura/front.svg",
  28700. extra: 1149 / 1135,
  28701. bottom: 45 / 1194
  28702. }
  28703. },
  28704. frontClothed: {
  28705. height: math.unit(6 + 3 / 12, "feet"),
  28706. weight: math.unit(120, "lb"),
  28707. name: "Front (Clothed)",
  28708. image: {
  28709. source: "./media/characters/azura/front-clothed.svg",
  28710. extra: 1149 / 1135,
  28711. bottom: 45 / 1194
  28712. }
  28713. },
  28714. },
  28715. [
  28716. {
  28717. name: "Normal",
  28718. height: math.unit(6 + 3 / 12, "feet"),
  28719. default: true
  28720. },
  28721. {
  28722. name: "Macro",
  28723. height: math.unit(20 + 6 / 12, "feet")
  28724. },
  28725. {
  28726. name: "Megamacro",
  28727. height: math.unit(12, "miles")
  28728. },
  28729. {
  28730. name: "Gigamacro",
  28731. height: math.unit(10000, "miles")
  28732. },
  28733. {
  28734. name: "Teramacro",
  28735. height: math.unit(900000, "miles")
  28736. },
  28737. ]
  28738. ))
  28739. characterMakers.push(() => makeCharacter(
  28740. { name: "Zeus", species: ["pegasus"], tags: ["anthro"] },
  28741. {
  28742. front: {
  28743. height: math.unit(12, "feet"),
  28744. weight: math.unit(1, "ton"),
  28745. capacity: math.unit(660000, "gallons"),
  28746. name: "Front",
  28747. image: {
  28748. source: "./media/characters/zeus/front.svg",
  28749. extra: 5005 / 4717,
  28750. bottom: 363 / 5388
  28751. }
  28752. },
  28753. },
  28754. [
  28755. {
  28756. name: "Normal",
  28757. height: math.unit(12, "feet")
  28758. },
  28759. {
  28760. name: "Preferred Size",
  28761. height: math.unit(0.5, "miles"),
  28762. default: true
  28763. },
  28764. {
  28765. name: "Giga Horse",
  28766. height: math.unit(300, "miles")
  28767. },
  28768. {
  28769. name: "Riding Planets",
  28770. height: math.unit(30, "megameters")
  28771. },
  28772. {
  28773. name: "Cosmic Giant",
  28774. height: math.unit(3, "zettameters")
  28775. },
  28776. {
  28777. name: "Breeding God",
  28778. height: math.unit(9.92e22, "yottameters")
  28779. },
  28780. ]
  28781. ))
  28782. characterMakers.push(() => makeCharacter(
  28783. { name: "Fang", species: ["monster"], tags: ["feral"] },
  28784. {
  28785. side: {
  28786. height: math.unit(9, "feet"),
  28787. weight: math.unit(1500, "kg"),
  28788. name: "Side",
  28789. image: {
  28790. source: "./media/characters/fang/side.svg",
  28791. extra: 924 / 866,
  28792. bottom: 47.5 / 972.3
  28793. }
  28794. },
  28795. },
  28796. [
  28797. {
  28798. name: "Normal",
  28799. height: math.unit(9, "feet"),
  28800. default: true
  28801. },
  28802. {
  28803. name: "Macro",
  28804. height: math.unit(75 + 6 / 12, "feet")
  28805. },
  28806. {
  28807. name: "Teramacro",
  28808. height: math.unit(50000, "miles")
  28809. },
  28810. ]
  28811. ))
  28812. characterMakers.push(() => makeCharacter(
  28813. { name: "Rekhit", species: ["horse"], tags: ["anthro"] },
  28814. {
  28815. front: {
  28816. height: math.unit(10, "feet"),
  28817. weight: math.unit(2, "tons"),
  28818. name: "Front",
  28819. image: {
  28820. source: "./media/characters/rekhit/front.svg",
  28821. extra: 2796 / 2590,
  28822. bottom: 225 / 3022
  28823. }
  28824. },
  28825. },
  28826. [
  28827. {
  28828. name: "Normal",
  28829. height: math.unit(10, "feet"),
  28830. default: true
  28831. },
  28832. {
  28833. name: "Macro",
  28834. height: math.unit(500, "feet")
  28835. },
  28836. ]
  28837. ))
  28838. characterMakers.push(() => makeCharacter(
  28839. { name: "Dahlia Verrick", "species": ["dhole", "springbok"], "tags": ["anthro"] },
  28840. {
  28841. front: {
  28842. height: math.unit(7 + 6.451 / 12, "feet"),
  28843. weight: math.unit(310, "lb"),
  28844. name: "Front",
  28845. image: {
  28846. source: "./media/characters/dahlia-verrick/front.svg",
  28847. extra: 1488 / 1365,
  28848. bottom: 6.2 / 1495
  28849. }
  28850. },
  28851. back: {
  28852. height: math.unit(7 + 6.451 / 12, "feet"),
  28853. weight: math.unit(310, "lb"),
  28854. name: "Back",
  28855. image: {
  28856. source: "./media/characters/dahlia-verrick/back.svg",
  28857. extra: 1472 / 1351,
  28858. bottom: 5.28 / 1477
  28859. }
  28860. },
  28861. frontBusiness: {
  28862. height: math.unit(7 + 6.451 / 12, "feet"),
  28863. weight: math.unit(200, "lb"),
  28864. name: "Front (Business)",
  28865. image: {
  28866. source: "./media/characters/dahlia-verrick/front-business.svg",
  28867. extra: 1478 / 1381,
  28868. bottom: 5.5 / 1484
  28869. }
  28870. },
  28871. frontCasual: {
  28872. height: math.unit(7 + 6.451 / 12, "feet"),
  28873. weight: math.unit(200, "lb"),
  28874. name: "Front (Casual)",
  28875. image: {
  28876. source: "./media/characters/dahlia-verrick/front-casual.svg",
  28877. extra: 1478 / 1381,
  28878. bottom: 5.5 / 1484
  28879. }
  28880. },
  28881. },
  28882. [
  28883. {
  28884. name: "Travel-Sized",
  28885. height: math.unit(7.45, "inches")
  28886. },
  28887. {
  28888. name: "Normal",
  28889. height: math.unit(7 + 6.451 / 12, "feet"),
  28890. default: true
  28891. },
  28892. {
  28893. name: "Hitting the Town",
  28894. height: math.unit(37 + 8 / 12, "feet")
  28895. },
  28896. {
  28897. name: "Stomp in the Suburbs",
  28898. height: math.unit(964 + 9.728 / 12, "feet")
  28899. },
  28900. {
  28901. name: "Sit on the City",
  28902. height: math.unit(61747 + 10.592 / 12, "feet")
  28903. },
  28904. {
  28905. name: "Glomp the Globe",
  28906. height: math.unit(252919327 + 4.832 / 12, "feet")
  28907. },
  28908. ]
  28909. ))
  28910. characterMakers.push(() => makeCharacter(
  28911. { name: "Balina Mahigan", species: ["wolf", "cow"], tags: ["anthro"] },
  28912. {
  28913. front: {
  28914. height: math.unit(6 + 4 / 12, "feet"),
  28915. weight: math.unit(320, "lb"),
  28916. name: "Front",
  28917. image: {
  28918. source: "./media/characters/balina-mahigan/front.svg",
  28919. extra: 447 / 428,
  28920. bottom: 18 / 466
  28921. }
  28922. },
  28923. back: {
  28924. height: math.unit(6 + 4 / 12, "feet"),
  28925. weight: math.unit(320, "lb"),
  28926. name: "Back",
  28927. image: {
  28928. source: "./media/characters/balina-mahigan/back.svg",
  28929. extra: 445 / 428,
  28930. bottom: 4.07 / 448
  28931. }
  28932. },
  28933. arm: {
  28934. height: math.unit(1.88, "feet"),
  28935. name: "Arm",
  28936. image: {
  28937. source: "./media/characters/balina-mahigan/arm.svg"
  28938. }
  28939. },
  28940. backPort: {
  28941. height: math.unit(0.685, "feet"),
  28942. name: "Back Port",
  28943. image: {
  28944. source: "./media/characters/balina-mahigan/back-port.svg"
  28945. }
  28946. },
  28947. hoofpaw: {
  28948. height: math.unit(1.41, "feet"),
  28949. name: "Hoofpaw",
  28950. image: {
  28951. source: "./media/characters/balina-mahigan/hoofpaw.svg"
  28952. }
  28953. },
  28954. leftHandBack: {
  28955. height: math.unit(0.938, "feet"),
  28956. name: "Left Hand (Back)",
  28957. image: {
  28958. source: "./media/characters/balina-mahigan/left-hand-back.svg"
  28959. }
  28960. },
  28961. leftHandFront: {
  28962. height: math.unit(0.938, "feet"),
  28963. name: "Left Hand (Front)",
  28964. image: {
  28965. source: "./media/characters/balina-mahigan/left-hand-front.svg"
  28966. }
  28967. },
  28968. rightHandBack: {
  28969. height: math.unit(0.95, "feet"),
  28970. name: "Right Hand (Back)",
  28971. image: {
  28972. source: "./media/characters/balina-mahigan/right-hand-back.svg"
  28973. }
  28974. },
  28975. rightHandFront: {
  28976. height: math.unit(0.95, "feet"),
  28977. name: "Right Hand (Front)",
  28978. image: {
  28979. source: "./media/characters/balina-mahigan/right-hand-front.svg"
  28980. }
  28981. },
  28982. },
  28983. [
  28984. {
  28985. name: "Normal",
  28986. height: math.unit(6 + 4 / 12, "feet"),
  28987. default: true
  28988. },
  28989. ]
  28990. ))
  28991. characterMakers.push(() => makeCharacter(
  28992. { name: "Balina Mejeri", species: ["wolf", "cow"], tags: ["anthro"] },
  28993. {
  28994. front: {
  28995. height: math.unit(6, "feet"),
  28996. weight: math.unit(320, "lb"),
  28997. name: "Front",
  28998. image: {
  28999. source: "./media/characters/balina-mejeri/front.svg",
  29000. extra: 517 / 488,
  29001. bottom: 44.2 / 561
  29002. }
  29003. },
  29004. },
  29005. [
  29006. {
  29007. name: "Normal",
  29008. height: math.unit(6 + 4 / 12, "feet")
  29009. },
  29010. {
  29011. name: "Business",
  29012. height: math.unit(155, "feet"),
  29013. default: true
  29014. },
  29015. ]
  29016. ))
  29017. characterMakers.push(() => makeCharacter(
  29018. { name: "Balbarian", species: ["wolf", "cow"], tags: ["anthro"] },
  29019. {
  29020. kneeling: {
  29021. height: math.unit(6 + 4 / 12, "feet"),
  29022. weight: math.unit(300 * 20, "lb"),
  29023. name: "Kneeling",
  29024. image: {
  29025. source: "./media/characters/balbarian/kneeling.svg",
  29026. extra: 922 / 862,
  29027. bottom: 42.4 / 965
  29028. }
  29029. },
  29030. },
  29031. [
  29032. {
  29033. name: "Normal",
  29034. height: math.unit(6 + 4 / 12, "feet")
  29035. },
  29036. {
  29037. name: "Treasured",
  29038. height: math.unit(18 + 9 / 12, "feet"),
  29039. default: true
  29040. },
  29041. {
  29042. name: "Macro",
  29043. height: math.unit(900, "feet")
  29044. },
  29045. ]
  29046. ))
  29047. characterMakers.push(() => makeCharacter(
  29048. { name: "Balina Amarini", species: ["wolf", "cow"], tags: ["anthro"] },
  29049. {
  29050. front: {
  29051. height: math.unit(6 + 4 / 12, "feet"),
  29052. weight: math.unit(325, "lb"),
  29053. name: "Front",
  29054. image: {
  29055. source: "./media/characters/balina-amarini/front.svg",
  29056. extra: 415 / 403,
  29057. bottom: 19 / 433.4
  29058. }
  29059. },
  29060. back: {
  29061. height: math.unit(6 + 4 / 12, "feet"),
  29062. weight: math.unit(325, "lb"),
  29063. name: "Back",
  29064. image: {
  29065. source: "./media/characters/balina-amarini/back.svg",
  29066. extra: 415 / 403,
  29067. bottom: 13.5 / 432
  29068. }
  29069. },
  29070. overdrive: {
  29071. height: math.unit(6 + 4 / 12, "feet"),
  29072. weight: math.unit(400, "lb"),
  29073. name: "Overdrive",
  29074. image: {
  29075. source: "./media/characters/balina-amarini/overdrive.svg",
  29076. extra: 269 / 259,
  29077. bottom: 12 / 282
  29078. }
  29079. },
  29080. },
  29081. [
  29082. {
  29083. name: "Boom",
  29084. height: math.unit(9 + 10 / 12, "feet"),
  29085. default: true
  29086. },
  29087. {
  29088. name: "Macro",
  29089. height: math.unit(280, "feet")
  29090. },
  29091. ]
  29092. ))
  29093. characterMakers.push(() => makeCharacter(
  29094. { name: "Lady Kubwa", species: ["giraffe", "deity"], tags: ["anthro"] },
  29095. {
  29096. goddess: {
  29097. height: math.unit(600, "feet"),
  29098. weight: math.unit(2000000, "tons"),
  29099. name: "Goddess",
  29100. image: {
  29101. source: "./media/characters/lady-kubwa/goddess.svg",
  29102. extra: 1240.5 / 1223,
  29103. bottom: 22 / 1263
  29104. }
  29105. },
  29106. goddesser: {
  29107. height: math.unit(900, "feet"),
  29108. weight: math.unit(20000000, "lb"),
  29109. name: "Goddess-er",
  29110. image: {
  29111. source: "./media/characters/lady-kubwa/goddess-er.svg",
  29112. extra: 899 / 888,
  29113. bottom: 12.6 / 912
  29114. }
  29115. },
  29116. },
  29117. [
  29118. {
  29119. name: "Macro",
  29120. height: math.unit(600, "feet"),
  29121. default: true
  29122. },
  29123. {
  29124. name: "Megamacro",
  29125. height: math.unit(250, "miles")
  29126. },
  29127. ]
  29128. ))
  29129. characterMakers.push(() => makeCharacter(
  29130. { name: "Tala Grovehorn", species: ["tauren"], tags: ["anthro"] },
  29131. {
  29132. front: {
  29133. height: math.unit(7 + 7 / 12, "feet"),
  29134. weight: math.unit(250, "lb"),
  29135. name: "Front",
  29136. image: {
  29137. source: "./media/characters/tala-grovehorn/front.svg",
  29138. extra: 2636 / 2525,
  29139. bottom: 147 / 2781
  29140. }
  29141. },
  29142. back: {
  29143. height: math.unit(7 + 7 / 12, "feet"),
  29144. weight: math.unit(250, "lb"),
  29145. name: "Back",
  29146. image: {
  29147. source: "./media/characters/tala-grovehorn/back.svg",
  29148. extra: 2635 / 2539,
  29149. bottom: 100 / 2732.8
  29150. }
  29151. },
  29152. mouth: {
  29153. height: math.unit(1.15, "feet"),
  29154. name: "Mouth",
  29155. image: {
  29156. source: "./media/characters/tala-grovehorn/mouth.svg"
  29157. }
  29158. },
  29159. dick: {
  29160. height: math.unit(2.36, "feet"),
  29161. name: "Dick",
  29162. image: {
  29163. source: "./media/characters/tala-grovehorn/dick.svg"
  29164. }
  29165. },
  29166. slit: {
  29167. height: math.unit(0.61, "feet"),
  29168. name: "Slit",
  29169. image: {
  29170. source: "./media/characters/tala-grovehorn/slit.svg"
  29171. }
  29172. },
  29173. },
  29174. [
  29175. ]
  29176. ))
  29177. characterMakers.push(() => makeCharacter(
  29178. { name: "Epona", species: ["unicorn"], tags: ["anthro"] },
  29179. {
  29180. front: {
  29181. height: math.unit(7 + 7 / 12, "feet"),
  29182. weight: math.unit(225, "lb"),
  29183. name: "Front",
  29184. image: {
  29185. source: "./media/characters/epona/front.svg",
  29186. extra: 2445 / 2290,
  29187. bottom: 251 / 2696
  29188. }
  29189. },
  29190. back: {
  29191. height: math.unit(7 + 7 / 12, "feet"),
  29192. weight: math.unit(225, "lb"),
  29193. name: "Back",
  29194. image: {
  29195. source: "./media/characters/epona/back.svg",
  29196. extra: 2546 / 2408,
  29197. bottom: 44 / 2589
  29198. }
  29199. },
  29200. genitals: {
  29201. height: math.unit(1.5, "feet"),
  29202. name: "Genitals",
  29203. image: {
  29204. source: "./media/characters/epona/genitals.svg"
  29205. }
  29206. },
  29207. },
  29208. [
  29209. {
  29210. name: "Normal",
  29211. height: math.unit(7 + 7 / 12, "feet"),
  29212. default: true
  29213. },
  29214. ]
  29215. ))
  29216. characterMakers.push(() => makeCharacter(
  29217. { name: "Avia Bloodbourn", species: ["lion"], tags: ["anthro"] },
  29218. {
  29219. front: {
  29220. height: math.unit(7, "feet"),
  29221. weight: math.unit(518, "lb"),
  29222. name: "Front",
  29223. image: {
  29224. source: "./media/characters/avia-bloodbourn/front.svg",
  29225. extra: 1466 / 1350,
  29226. bottom: 65 / 1527
  29227. }
  29228. },
  29229. },
  29230. [
  29231. ]
  29232. ))
  29233. characterMakers.push(() => makeCharacter(
  29234. { name: "Amera", species: ["dragon"], tags: ["anthro"] },
  29235. {
  29236. front: {
  29237. height: math.unit(9.35, "feet"),
  29238. weight: math.unit(600, "lb"),
  29239. name: "Front",
  29240. image: {
  29241. source: "./media/characters/amera/front.svg",
  29242. extra: 891 / 818,
  29243. bottom: 30 / 922.7
  29244. }
  29245. },
  29246. back: {
  29247. height: math.unit(9.35, "feet"),
  29248. weight: math.unit(600, "lb"),
  29249. name: "Back",
  29250. image: {
  29251. source: "./media/characters/amera/back.svg",
  29252. extra: 876 / 824,
  29253. bottom: 6.8 / 884
  29254. }
  29255. },
  29256. dick: {
  29257. height: math.unit(2.14, "feet"),
  29258. name: "Dick",
  29259. image: {
  29260. source: "./media/characters/amera/dick.svg"
  29261. }
  29262. },
  29263. },
  29264. [
  29265. {
  29266. name: "Normal",
  29267. height: math.unit(9.35, "feet"),
  29268. default: true
  29269. },
  29270. ]
  29271. ))
  29272. characterMakers.push(() => makeCharacter(
  29273. { name: "Rosewen", species: ["vulpera"], tags: ["anthro"] },
  29274. {
  29275. kneeling: {
  29276. height: math.unit(3 + 4 / 12, "feet"),
  29277. weight: math.unit(90, "lb"),
  29278. name: "Kneeling",
  29279. image: {
  29280. source: "./media/characters/rosewen/kneeling.svg",
  29281. extra: 1835 / 1571,
  29282. bottom: 27.7 / 1862
  29283. }
  29284. },
  29285. },
  29286. [
  29287. {
  29288. name: "Normal",
  29289. height: math.unit(3 + 4 / 12, "feet"),
  29290. default: true
  29291. },
  29292. ]
  29293. ))
  29294. characterMakers.push(() => makeCharacter(
  29295. { name: "Sabah", species: ["lucario"], tags: ["anthro"] },
  29296. {
  29297. front: {
  29298. height: math.unit(5 + 10 / 12, "feet"),
  29299. weight: math.unit(200, "lb"),
  29300. name: "Front",
  29301. image: {
  29302. source: "./media/characters/sabah/front.svg",
  29303. extra: 849 / 763,
  29304. bottom: 33.9 / 881
  29305. }
  29306. },
  29307. },
  29308. [
  29309. {
  29310. name: "Normal",
  29311. height: math.unit(5 + 10 / 12, "feet"),
  29312. default: true
  29313. },
  29314. ]
  29315. ))
  29316. characterMakers.push(() => makeCharacter(
  29317. { name: "Purple Flame", species: ["pony"], tags: ["feral"] },
  29318. {
  29319. front: {
  29320. height: math.unit(3 + 5 / 12, "feet"),
  29321. weight: math.unit(40, "kg"),
  29322. name: "Front",
  29323. image: {
  29324. source: "./media/characters/purple-flame/front.svg",
  29325. extra: 1577 / 1412,
  29326. bottom: 97 / 1694
  29327. }
  29328. },
  29329. frontDressed: {
  29330. height: math.unit(3 + 5 / 12, "feet"),
  29331. weight: math.unit(40, "kg"),
  29332. name: "Front (Dressed)",
  29333. image: {
  29334. source: "./media/characters/purple-flame/front-dressed.svg",
  29335. extra: 1577 / 1412,
  29336. bottom: 97 / 1694
  29337. }
  29338. },
  29339. headphones: {
  29340. height: math.unit(0.85, "feet"),
  29341. name: "Headphones",
  29342. image: {
  29343. source: "./media/characters/purple-flame/headphones.svg"
  29344. }
  29345. },
  29346. },
  29347. [
  29348. {
  29349. name: "Really Small",
  29350. height: math.unit(5, "cm")
  29351. },
  29352. {
  29353. name: "Micro",
  29354. height: math.unit(1 + 5 / 12, "feet")
  29355. },
  29356. {
  29357. name: "Normal",
  29358. height: math.unit(3 + 5 / 12, "feet"),
  29359. default: true
  29360. },
  29361. {
  29362. name: "Minimacro",
  29363. height: math.unit(125, "feet")
  29364. },
  29365. {
  29366. name: "Macro",
  29367. height: math.unit(0.5, "miles")
  29368. },
  29369. {
  29370. name: "Megamacro",
  29371. height: math.unit(50, "miles")
  29372. },
  29373. {
  29374. name: "Gigantic",
  29375. height: math.unit(750, "miles")
  29376. },
  29377. {
  29378. name: "Planetary",
  29379. height: math.unit(15000, "miles")
  29380. },
  29381. ]
  29382. ))
  29383. characterMakers.push(() => makeCharacter(
  29384. { name: "Arsenal", species: ["wolf", "deity"], tags: ["anthro"] },
  29385. {
  29386. front: {
  29387. height: math.unit(14, "feet"),
  29388. weight: math.unit(959, "lb"),
  29389. name: "Front",
  29390. image: {
  29391. source: "./media/characters/arsenal/front.svg",
  29392. extra: 2357 / 2157,
  29393. bottom: 93 / 2458
  29394. }
  29395. },
  29396. },
  29397. [
  29398. {
  29399. name: "Normal",
  29400. height: math.unit(14, "feet"),
  29401. default: true
  29402. },
  29403. ]
  29404. ))
  29405. characterMakers.push(() => makeCharacter(
  29406. { name: "Adira", species: ["mouse"], tags: ["anthro"] },
  29407. {
  29408. front: {
  29409. height: math.unit(6, "feet"),
  29410. weight: math.unit(150, "lb"),
  29411. name: "Front",
  29412. image: {
  29413. source: "./media/characters/adira/front.svg",
  29414. extra: 1078 / 1029,
  29415. bottom: 87 / 1166
  29416. }
  29417. },
  29418. },
  29419. [
  29420. {
  29421. name: "Micro",
  29422. height: math.unit(4, "inches"),
  29423. default: true
  29424. },
  29425. {
  29426. name: "Macro",
  29427. height: math.unit(50, "feet")
  29428. },
  29429. ]
  29430. ))
  29431. characterMakers.push(() => makeCharacter(
  29432. { name: "Grim", species: ["ceratosaurus"], tags: ["anthro"] },
  29433. {
  29434. front: {
  29435. height: math.unit(16, "feet"),
  29436. weight: math.unit(1000, "lb"),
  29437. name: "Front",
  29438. image: {
  29439. source: "./media/characters/grim/front.svg",
  29440. extra: 622 / 614,
  29441. bottom: 18.1 / 642
  29442. }
  29443. },
  29444. back: {
  29445. height: math.unit(16, "feet"),
  29446. weight: math.unit(1000, "lb"),
  29447. name: "Back",
  29448. image: {
  29449. source: "./media/characters/grim/back.svg",
  29450. extra: 610.6 / 602,
  29451. bottom: 40.8 / 652
  29452. }
  29453. },
  29454. hunched: {
  29455. height: math.unit(9.75, "feet"),
  29456. weight: math.unit(1000, "lb"),
  29457. name: "Hunched",
  29458. image: {
  29459. source: "./media/characters/grim/hunched.svg",
  29460. extra: 304 / 297,
  29461. bottom: 35.4 / 394
  29462. }
  29463. },
  29464. },
  29465. [
  29466. {
  29467. name: "Normal",
  29468. height: math.unit(16, "feet"),
  29469. default: true
  29470. },
  29471. ]
  29472. ))
  29473. characterMakers.push(() => makeCharacter(
  29474. { name: "Sinja", species: ["monster", "fox"], tags: ["anthro"] },
  29475. {
  29476. front: {
  29477. height: math.unit(2.3, "meters"),
  29478. weight: math.unit(300, "lb"),
  29479. name: "Front",
  29480. image: {
  29481. source: "./media/characters/sinja/front-sfw.svg",
  29482. extra: 1393 / 1294,
  29483. bottom: 70 / 1463
  29484. }
  29485. },
  29486. frontNsfw: {
  29487. height: math.unit(2.3, "meters"),
  29488. weight: math.unit(300, "lb"),
  29489. name: "Front (NSFW)",
  29490. image: {
  29491. source: "./media/characters/sinja/front-nsfw.svg",
  29492. extra: 1393 / 1294,
  29493. bottom: 70 / 1463
  29494. }
  29495. },
  29496. back: {
  29497. height: math.unit(2.3, "meters"),
  29498. weight: math.unit(300, "lb"),
  29499. name: "Back",
  29500. image: {
  29501. source: "./media/characters/sinja/back.svg",
  29502. extra: 1393 / 1294,
  29503. bottom: 70 / 1463
  29504. }
  29505. },
  29506. head: {
  29507. height: math.unit(1.771, "feet"),
  29508. name: "Head",
  29509. image: {
  29510. source: "./media/characters/sinja/head.svg"
  29511. }
  29512. },
  29513. slit: {
  29514. height: math.unit(0.8, "feet"),
  29515. name: "Slit",
  29516. image: {
  29517. source: "./media/characters/sinja/slit.svg"
  29518. }
  29519. },
  29520. },
  29521. [
  29522. {
  29523. name: "Normal",
  29524. height: math.unit(2.3, "meters")
  29525. },
  29526. {
  29527. name: "Macro",
  29528. height: math.unit(91, "meters"),
  29529. default: true
  29530. },
  29531. {
  29532. name: "Megamacro",
  29533. height: math.unit(91440, "meters")
  29534. },
  29535. {
  29536. name: "Gigamacro",
  29537. height: math.unit(60960000, "meters")
  29538. },
  29539. {
  29540. name: "Teramacro",
  29541. height: math.unit(9144000000, "meters")
  29542. },
  29543. ]
  29544. ))
  29545. characterMakers.push(() => makeCharacter(
  29546. { name: "Kyu", species: ["cat"], tags: ["anthro"] },
  29547. {
  29548. front: {
  29549. height: math.unit(1.7, "meters"),
  29550. weight: math.unit(130, "lb"),
  29551. name: "Front",
  29552. image: {
  29553. source: "./media/characters/kyu/front.svg",
  29554. extra: 415 / 395,
  29555. bottom: 5 / 420
  29556. }
  29557. },
  29558. head: {
  29559. height: math.unit(1.75, "feet"),
  29560. name: "Head",
  29561. image: {
  29562. source: "./media/characters/kyu/head.svg"
  29563. }
  29564. },
  29565. foot: {
  29566. height: math.unit(0.81, "feet"),
  29567. name: "Foot",
  29568. image: {
  29569. source: "./media/characters/kyu/foot.svg"
  29570. }
  29571. },
  29572. },
  29573. [
  29574. {
  29575. name: "Normal",
  29576. height: math.unit(1.7, "meters")
  29577. },
  29578. {
  29579. name: "Macro",
  29580. height: math.unit(131, "feet"),
  29581. default: true
  29582. },
  29583. {
  29584. name: "Megamacro",
  29585. height: math.unit(91440, "meters")
  29586. },
  29587. {
  29588. name: "Gigamacro",
  29589. height: math.unit(60960000, "meters")
  29590. },
  29591. {
  29592. name: "Teramacro",
  29593. height: math.unit(9144000000, "meters")
  29594. },
  29595. ]
  29596. ))
  29597. characterMakers.push(() => makeCharacter(
  29598. { name: "Joey", species: ["kangaroo"], tags: ["anthro"] },
  29599. {
  29600. front: {
  29601. height: math.unit(7 + 1 / 12, "feet"),
  29602. weight: math.unit(250, "lb"),
  29603. name: "Front",
  29604. image: {
  29605. source: "./media/characters/joey/front.svg",
  29606. extra: 1791 / 1537,
  29607. bottom: 28 / 1816
  29608. }
  29609. },
  29610. },
  29611. [
  29612. {
  29613. name: "Micro",
  29614. height: math.unit(3, "inches")
  29615. },
  29616. {
  29617. name: "Normal",
  29618. height: math.unit(7 + 1 / 12, "feet"),
  29619. default: true
  29620. },
  29621. ]
  29622. ))
  29623. characterMakers.push(() => makeCharacter(
  29624. { name: "Sam Evans", species: ["fox", "demon"], tags: ["anthro"] },
  29625. {
  29626. front: {
  29627. height: math.unit(165, "cm"),
  29628. weight: math.unit(140, "lb"),
  29629. name: "Front",
  29630. image: {
  29631. source: "./media/characters/sam-evans/front.svg",
  29632. extra: 3417 / 3230,
  29633. bottom: 41.3 / 3417
  29634. }
  29635. },
  29636. frontSixTails: {
  29637. height: math.unit(165, "cm"),
  29638. weight: math.unit(140, "lb"),
  29639. name: "Front-six-tails",
  29640. image: {
  29641. source: "./media/characters/sam-evans/front-six-tails.svg",
  29642. extra: 3417 / 3230,
  29643. bottom: 41.3 / 3417
  29644. }
  29645. },
  29646. back: {
  29647. height: math.unit(165, "cm"),
  29648. weight: math.unit(140, "lb"),
  29649. name: "Back",
  29650. image: {
  29651. source: "./media/characters/sam-evans/back.svg",
  29652. extra: 3227 / 3032,
  29653. bottom: 6.8 / 3234
  29654. }
  29655. },
  29656. face: {
  29657. height: math.unit(0.68, "feet"),
  29658. name: "Face",
  29659. image: {
  29660. source: "./media/characters/sam-evans/face.svg"
  29661. }
  29662. },
  29663. },
  29664. [
  29665. {
  29666. name: "Normal",
  29667. height: math.unit(165, "cm"),
  29668. default: true
  29669. },
  29670. {
  29671. name: "Macro",
  29672. height: math.unit(100, "meters")
  29673. },
  29674. {
  29675. name: "Macro+",
  29676. height: math.unit(800, "meters")
  29677. },
  29678. {
  29679. name: "Macro++",
  29680. height: math.unit(3, "km")
  29681. },
  29682. {
  29683. name: "Macro+++",
  29684. height: math.unit(30, "km")
  29685. },
  29686. ]
  29687. ))
  29688. characterMakers.push(() => makeCharacter(
  29689. { name: "Juliet A", species: ["lizard"], tags: ["anthro"] },
  29690. {
  29691. front: {
  29692. height: math.unit(10, "feet"),
  29693. weight: math.unit(750, "lb"),
  29694. name: "Front",
  29695. image: {
  29696. source: "./media/characters/juliet-a/front.svg",
  29697. extra: 1766 / 1720,
  29698. bottom: 43 / 1809
  29699. }
  29700. },
  29701. back: {
  29702. height: math.unit(10, "feet"),
  29703. weight: math.unit(750, "lb"),
  29704. name: "Back",
  29705. image: {
  29706. source: "./media/characters/juliet-a/back.svg",
  29707. extra: 1781 / 1734,
  29708. bottom: 35 / 1810,
  29709. }
  29710. },
  29711. },
  29712. [
  29713. {
  29714. name: "Normal",
  29715. height: math.unit(10, "feet"),
  29716. default: true
  29717. },
  29718. {
  29719. name: "Dragon Form",
  29720. height: math.unit(250, "feet")
  29721. },
  29722. {
  29723. name: "Macro",
  29724. height: math.unit(1000, "feet")
  29725. },
  29726. {
  29727. name: "Megamacro",
  29728. height: math.unit(10000, "feet")
  29729. }
  29730. ]
  29731. ))
  29732. characterMakers.push(() => makeCharacter(
  29733. { name: "Wild", species: ["hyena"], tags: ["anthro"] },
  29734. {
  29735. regular: {
  29736. height: math.unit(7 + 3 / 12, "feet"),
  29737. weight: math.unit(260, "lb"),
  29738. name: "Regular",
  29739. image: {
  29740. source: "./media/characters/wild/regular.svg",
  29741. extra: 97.45 / 92,
  29742. bottom: 6.8 / 104.3
  29743. }
  29744. },
  29745. biggums: {
  29746. height: math.unit(8 + 6 / 12, "feet"),
  29747. weight: math.unit(425, "lb"),
  29748. name: "Biggums",
  29749. image: {
  29750. source: "./media/characters/wild/biggums.svg",
  29751. extra: 97.45 / 92,
  29752. bottom: 7.5 / 132.34
  29753. }
  29754. },
  29755. mawRegular: {
  29756. height: math.unit(1.24, "feet"),
  29757. name: "Maw (Regular)",
  29758. image: {
  29759. source: "./media/characters/wild/maw.svg"
  29760. }
  29761. },
  29762. mawBiggums: {
  29763. height: math.unit(1.47, "feet"),
  29764. name: "Maw (Biggums)",
  29765. image: {
  29766. source: "./media/characters/wild/maw.svg"
  29767. }
  29768. },
  29769. },
  29770. [
  29771. {
  29772. name: "Normal",
  29773. height: math.unit(7 + 3 / 12, "feet"),
  29774. default: true
  29775. },
  29776. ]
  29777. ))
  29778. characterMakers.push(() => makeCharacter(
  29779. { name: "Vidar", species: ["deer"], tags: ["anthro", "feral"] },
  29780. {
  29781. front: {
  29782. height: math.unit(2.5, "meters"),
  29783. weight: math.unit(200, "kg"),
  29784. name: "Front",
  29785. image: {
  29786. source: "./media/characters/vidar/front.svg",
  29787. extra: 2994 / 2795,
  29788. bottom: 56 / 3061
  29789. }
  29790. },
  29791. back: {
  29792. height: math.unit(2.5, "meters"),
  29793. weight: math.unit(200, "kg"),
  29794. name: "Back",
  29795. image: {
  29796. source: "./media/characters/vidar/back.svg",
  29797. extra: 3131 / 2928,
  29798. bottom: 13.5 / 3141.5
  29799. }
  29800. },
  29801. feral: {
  29802. height: math.unit(2.5, "meters"),
  29803. weight: math.unit(2000, "kg"),
  29804. name: "Feral",
  29805. image: {
  29806. source: "./media/characters/vidar/feral.svg",
  29807. extra: 2790 / 1765,
  29808. bottom: 6 / 2796
  29809. }
  29810. },
  29811. },
  29812. [
  29813. {
  29814. name: "Normal",
  29815. height: math.unit(2.5, "meters"),
  29816. default: true
  29817. },
  29818. {
  29819. name: "Macro",
  29820. height: math.unit(100, "meters")
  29821. },
  29822. ]
  29823. ))
  29824. characterMakers.push(() => makeCharacter(
  29825. { name: "Ash", species: ["zoroark"], tags: ["anthro"] },
  29826. {
  29827. front: {
  29828. height: math.unit(5 + 9 / 12, "feet"),
  29829. weight: math.unit(120, "lb"),
  29830. name: "Front",
  29831. image: {
  29832. source: "./media/characters/ash/front.svg",
  29833. extra: 2189 / 1961,
  29834. bottom: 5.2 / 2194
  29835. }
  29836. },
  29837. },
  29838. [
  29839. {
  29840. name: "Normal",
  29841. height: math.unit(5 + 9 / 12, "feet"),
  29842. default: true
  29843. },
  29844. ]
  29845. ))
  29846. characterMakers.push(() => makeCharacter(
  29847. { name: "Gygabite", species: ["draconi"], tags: ["anthro"] },
  29848. {
  29849. front: {
  29850. height: math.unit(9, "feet"),
  29851. weight: math.unit(10000, "lb"),
  29852. name: "Front",
  29853. image: {
  29854. source: "./media/characters/gygabite/front.svg",
  29855. bottom: 31.7 / 537.8,
  29856. extra: 505 / 370
  29857. }
  29858. },
  29859. },
  29860. [
  29861. {
  29862. name: "Normal",
  29863. height: math.unit(9, "feet"),
  29864. default: true
  29865. },
  29866. ]
  29867. ))
  29868. characterMakers.push(() => makeCharacter(
  29869. { name: "P0TAT0", species: ["protogen"], tags: ["anthro"] },
  29870. {
  29871. front: {
  29872. height: math.unit(12, "feet"),
  29873. weight: math.unit(4000, "lb"),
  29874. name: "Front",
  29875. image: {
  29876. source: "./media/characters/p0tat0/front.svg",
  29877. extra: 1065 / 921,
  29878. bottom: 55.7 / 1121.25
  29879. }
  29880. },
  29881. },
  29882. [
  29883. {
  29884. name: "Normal",
  29885. height: math.unit(12, "feet"),
  29886. default: true
  29887. },
  29888. ]
  29889. ))
  29890. characterMakers.push(() => makeCharacter(
  29891. { name: "Dusk", species: ["arcanine"], tags: ["feral"] },
  29892. {
  29893. side: {
  29894. height: math.unit(6.5, "feet"),
  29895. weight: math.unit(800, "lb"),
  29896. name: "Side",
  29897. image: {
  29898. source: "./media/characters/dusk/side.svg",
  29899. extra: 615 / 373,
  29900. bottom: 53 / 664
  29901. }
  29902. },
  29903. sitting: {
  29904. height: math.unit(7, "feet"),
  29905. weight: math.unit(800, "lb"),
  29906. name: "Sitting",
  29907. image: {
  29908. source: "./media/characters/dusk/sitting.svg",
  29909. extra: 753 / 425,
  29910. bottom: 33 / 774
  29911. }
  29912. },
  29913. head: {
  29914. height: math.unit(6.1, "feet"),
  29915. name: "Head",
  29916. image: {
  29917. source: "./media/characters/dusk/head.svg"
  29918. }
  29919. },
  29920. },
  29921. [
  29922. {
  29923. name: "Normal",
  29924. height: math.unit(7, "feet"),
  29925. default: true
  29926. },
  29927. ]
  29928. ))
  29929. characterMakers.push(() => makeCharacter(
  29930. { name: "Jay Direwolf", species: ["dire-wolf"], tags: ["anthro"] },
  29931. {
  29932. front: {
  29933. height: math.unit(15, "feet"),
  29934. weight: math.unit(7000, "lb"),
  29935. name: "Front",
  29936. image: {
  29937. source: "./media/characters/jay-direwolf/front.svg",
  29938. extra: 1810 / 1732,
  29939. bottom: 66 / 1892
  29940. }
  29941. },
  29942. },
  29943. [
  29944. {
  29945. name: "Normal",
  29946. height: math.unit(15, "feet"),
  29947. default: true
  29948. },
  29949. ]
  29950. ))
  29951. characterMakers.push(() => makeCharacter(
  29952. { name: "Anchovie", species: ["cat"], tags: ["anthro"] },
  29953. {
  29954. front: {
  29955. height: math.unit(4 + 9 / 12, "feet"),
  29956. weight: math.unit(130, "lb"),
  29957. name: "Front",
  29958. image: {
  29959. source: "./media/characters/anchovie/front.svg",
  29960. extra: 382 / 350,
  29961. bottom: 25 / 409
  29962. }
  29963. },
  29964. back: {
  29965. height: math.unit(4 + 9 / 12, "feet"),
  29966. weight: math.unit(130, "lb"),
  29967. name: "Back",
  29968. image: {
  29969. source: "./media/characters/anchovie/back.svg",
  29970. extra: 385 / 352,
  29971. bottom: 16.6 / 402
  29972. }
  29973. },
  29974. frontDressed: {
  29975. height: math.unit(4 + 9 / 12, "feet"),
  29976. weight: math.unit(130, "lb"),
  29977. name: "Front (Dressed)",
  29978. image: {
  29979. source: "./media/characters/anchovie/front-dressed.svg",
  29980. extra: 382 / 350,
  29981. bottom: 25 / 409
  29982. }
  29983. },
  29984. backDressed: {
  29985. height: math.unit(4 + 9 / 12, "feet"),
  29986. weight: math.unit(130, "lb"),
  29987. name: "Back (Dressed)",
  29988. image: {
  29989. source: "./media/characters/anchovie/back-dressed.svg",
  29990. extra: 385 / 352,
  29991. bottom: 16.6 / 402
  29992. }
  29993. },
  29994. },
  29995. [
  29996. {
  29997. name: "Micro",
  29998. height: math.unit(6.4, "inches")
  29999. },
  30000. {
  30001. name: "Normal",
  30002. height: math.unit(4 + 9 / 12, "feet"),
  30003. default: true
  30004. },
  30005. ]
  30006. ))
  30007. characterMakers.push(() => makeCharacter(
  30008. { name: "AcidRenamon", species: ["renamon", "skunk"], tags: ["anthro"] },
  30009. {
  30010. front: {
  30011. height: math.unit(2, "meters"),
  30012. weight: math.unit(180, "lb"),
  30013. name: "Front",
  30014. image: {
  30015. source: "./media/characters/acidrenamon/front.svg",
  30016. extra: 987 / 890,
  30017. bottom: 22.8 / 1009
  30018. }
  30019. },
  30020. back: {
  30021. height: math.unit(2, "meters"),
  30022. weight: math.unit(180, "lb"),
  30023. name: "Back",
  30024. image: {
  30025. source: "./media/characters/acidrenamon/back.svg",
  30026. extra: 983 / 891,
  30027. bottom: 8.4 / 992
  30028. }
  30029. },
  30030. head: {
  30031. height: math.unit(1.92, "feet"),
  30032. name: "Head",
  30033. image: {
  30034. source: "./media/characters/acidrenamon/head.svg"
  30035. }
  30036. },
  30037. rump: {
  30038. height: math.unit(1.72, "feet"),
  30039. name: "Rump",
  30040. image: {
  30041. source: "./media/characters/acidrenamon/rump.svg"
  30042. }
  30043. },
  30044. tail: {
  30045. height: math.unit(4.2, "feet"),
  30046. name: "Tail",
  30047. image: {
  30048. source: "./media/characters/acidrenamon/tail.svg"
  30049. }
  30050. },
  30051. },
  30052. [
  30053. {
  30054. name: "Normal",
  30055. height: math.unit(2, "meters"),
  30056. default: true
  30057. },
  30058. {
  30059. name: "Minimacro",
  30060. height: math.unit(7, "meters")
  30061. },
  30062. {
  30063. name: "Macro",
  30064. height: math.unit(200, "meters")
  30065. },
  30066. {
  30067. name: "Gigamacro",
  30068. height: math.unit(0.2, "earths")
  30069. },
  30070. ]
  30071. ))
  30072. characterMakers.push(() => makeCharacter(
  30073. { name: "Kenzie Lee", species: ["lycanroc"], tags: ["anthro"] },
  30074. {
  30075. front: {
  30076. height: math.unit(152, "feet"),
  30077. name: "Front",
  30078. image: {
  30079. source: "./media/characters/kenzie-lee/front.svg",
  30080. extra: 1869/1774,
  30081. bottom: 128/1997
  30082. }
  30083. },
  30084. side: {
  30085. height: math.unit(86, "feet"),
  30086. name: "Side",
  30087. image: {
  30088. source: "./media/characters/kenzie-lee/side.svg",
  30089. extra: 930/815,
  30090. bottom: 177/1107
  30091. }
  30092. },
  30093. paw: {
  30094. height: math.unit(15, "feet"),
  30095. name: "Paw",
  30096. image: {
  30097. source: "./media/characters/kenzie-lee/paw.svg"
  30098. }
  30099. },
  30100. },
  30101. [
  30102. {
  30103. name: "Kenzie Flea",
  30104. height: math.unit(2, "mm"),
  30105. default: true
  30106. },
  30107. {
  30108. name: "Micro",
  30109. height: math.unit(2, "inches")
  30110. },
  30111. {
  30112. name: "Normal",
  30113. height: math.unit(152, "feet")
  30114. },
  30115. {
  30116. name: "Megamacro",
  30117. height: math.unit(7, "miles")
  30118. },
  30119. {
  30120. name: "Gigamacro",
  30121. height: math.unit(8000, "miles")
  30122. },
  30123. ]
  30124. ))
  30125. characterMakers.push(() => makeCharacter(
  30126. { name: "Withers", species: ["hellhound"], tags: ["anthro"] },
  30127. {
  30128. front: {
  30129. height: math.unit(6, "feet"),
  30130. name: "Front",
  30131. image: {
  30132. source: "./media/characters/withers/front.svg",
  30133. extra: 1935/1760,
  30134. bottom: 72/2007
  30135. }
  30136. },
  30137. back: {
  30138. height: math.unit(6, "feet"),
  30139. name: "Back",
  30140. image: {
  30141. source: "./media/characters/withers/back.svg",
  30142. extra: 1944/1792,
  30143. bottom: 12/1956
  30144. }
  30145. },
  30146. dressed: {
  30147. height: math.unit(6, "feet"),
  30148. name: "Dressed",
  30149. image: {
  30150. source: "./media/characters/withers/dressed.svg",
  30151. extra: 1937/1765,
  30152. bottom: 73/2010
  30153. }
  30154. },
  30155. phase1: {
  30156. height: math.unit(1.1, "feet"),
  30157. name: "Phase 1",
  30158. image: {
  30159. source: "./media/characters/withers/phase-1.svg",
  30160. extra: 1885/1232,
  30161. bottom: 0/1885
  30162. }
  30163. },
  30164. phase2: {
  30165. height: math.unit(1.05, "feet"),
  30166. name: "Phase 2",
  30167. image: {
  30168. source: "./media/characters/withers/phase-2.svg",
  30169. extra: 1792/1090,
  30170. bottom: 0/1792
  30171. }
  30172. },
  30173. partyWipe: {
  30174. height: math.unit(1.1, "feet"),
  30175. name: "Party Wipe",
  30176. image: {
  30177. source: "./media/characters/withers/party-wipe.svg",
  30178. extra: 1864/1207,
  30179. bottom: 0/1864
  30180. }
  30181. },
  30182. },
  30183. [
  30184. {
  30185. name: "Macro",
  30186. height: math.unit(167, "feet"),
  30187. default: true
  30188. },
  30189. {
  30190. name: "Megamacro",
  30191. height: math.unit(15, "miles")
  30192. }
  30193. ]
  30194. ))
  30195. characterMakers.push(() => makeCharacter(
  30196. { name: "Nemoskii", species: ["skunk"], tags: ["anthro"] },
  30197. {
  30198. front: {
  30199. height: math.unit(6 + 7 / 12, "feet"),
  30200. weight: math.unit(250, "lb"),
  30201. name: "Front",
  30202. image: {
  30203. source: "./media/characters/nemoskii/front.svg",
  30204. extra: 2270 / 1734,
  30205. bottom: 86 / 2354
  30206. }
  30207. },
  30208. back: {
  30209. height: math.unit(6 + 7 / 12, "feet"),
  30210. weight: math.unit(250, "lb"),
  30211. name: "Back",
  30212. image: {
  30213. source: "./media/characters/nemoskii/back.svg",
  30214. extra: 1845 / 1788,
  30215. bottom: 10.5 / 1852
  30216. }
  30217. },
  30218. head: {
  30219. height: math.unit(1.31, "feet"),
  30220. name: "Head",
  30221. image: {
  30222. source: "./media/characters/nemoskii/head.svg"
  30223. }
  30224. },
  30225. },
  30226. [
  30227. {
  30228. name: "Micro",
  30229. height: math.unit((6 + 7 / 12) * 0.1, "feet")
  30230. },
  30231. {
  30232. name: "Normal",
  30233. height: math.unit(6 + 7 / 12, "feet"),
  30234. default: true
  30235. },
  30236. {
  30237. name: "Macro",
  30238. height: math.unit((6 + 7 / 12) * 150, "feet")
  30239. },
  30240. {
  30241. name: "Macro+",
  30242. height: math.unit((6 + 7 / 12) * 500, "feet")
  30243. },
  30244. {
  30245. name: "Megamacro",
  30246. height: math.unit((6 + 7 / 12) * 100000, "feet")
  30247. },
  30248. ]
  30249. ))
  30250. characterMakers.push(() => makeCharacter(
  30251. { name: "Shui", species: ["dragon"], tags: ["anthro"] },
  30252. {
  30253. front: {
  30254. height: math.unit(1, "mile"),
  30255. weight: math.unit(265261.9, "lb"),
  30256. name: "Front",
  30257. image: {
  30258. source: "./media/characters/shui/front.svg",
  30259. extra: 1633 / 1564,
  30260. bottom: 91.5 / 1726
  30261. }
  30262. },
  30263. },
  30264. [
  30265. {
  30266. name: "Macro",
  30267. height: math.unit(1, "mile"),
  30268. default: true
  30269. },
  30270. ]
  30271. ))
  30272. characterMakers.push(() => makeCharacter(
  30273. { name: "Arokh Takakura", species: ["dragon"], tags: ["anthro"] },
  30274. {
  30275. front: {
  30276. height: math.unit(12 + 6 / 12, "feet"),
  30277. weight: math.unit(1342, "lb"),
  30278. name: "Front",
  30279. image: {
  30280. source: "./media/characters/arokh-takakura/front.svg",
  30281. extra: 1089 / 1043,
  30282. bottom: 77.4 / 1176.7
  30283. }
  30284. },
  30285. back: {
  30286. height: math.unit(12 + 6 / 12, "feet"),
  30287. weight: math.unit(1342, "lb"),
  30288. name: "Back",
  30289. image: {
  30290. source: "./media/characters/arokh-takakura/back.svg",
  30291. extra: 1046 / 1019,
  30292. bottom: 102 / 1150
  30293. }
  30294. },
  30295. },
  30296. [
  30297. {
  30298. name: "Big",
  30299. height: math.unit(12 + 6 / 12, "feet"),
  30300. default: true
  30301. },
  30302. ]
  30303. ))
  30304. characterMakers.push(() => makeCharacter(
  30305. { name: "Theo", species: ["cat"], tags: ["anthro"] },
  30306. {
  30307. front: {
  30308. height: math.unit(5 + 6 / 12, "feet"),
  30309. weight: math.unit(150, "lb"),
  30310. name: "Front",
  30311. image: {
  30312. source: "./media/characters/theo/front.svg",
  30313. extra: 1184 / 1131,
  30314. bottom: 7.4 / 1191
  30315. }
  30316. },
  30317. },
  30318. [
  30319. {
  30320. name: "Micro",
  30321. height: math.unit(5, "inches")
  30322. },
  30323. {
  30324. name: "Normal",
  30325. height: math.unit(5 + 6 / 12, "feet"),
  30326. default: true
  30327. },
  30328. ]
  30329. ))
  30330. characterMakers.push(() => makeCharacter(
  30331. { name: "Cecelia Swift", species: ["otter"], tags: ["anthro"] },
  30332. {
  30333. front: {
  30334. height: math.unit(5 + 9 / 12, "feet"),
  30335. weight: math.unit(130, "lb"),
  30336. name: "Front",
  30337. image: {
  30338. source: "./media/characters/cecelia-swift/front.svg",
  30339. extra: 502 / 484,
  30340. bottom: 23 / 523
  30341. }
  30342. },
  30343. back: {
  30344. height: math.unit(5 + 9 / 12, "feet"),
  30345. weight: math.unit(130, "lb"),
  30346. name: "Back",
  30347. image: {
  30348. source: "./media/characters/cecelia-swift/back.svg",
  30349. extra: 499 / 485,
  30350. bottom: 12 / 511
  30351. }
  30352. },
  30353. head: {
  30354. height: math.unit(0.90, "feet"),
  30355. name: "Head",
  30356. image: {
  30357. source: "./media/characters/cecelia-swift/head.svg"
  30358. }
  30359. },
  30360. rump: {
  30361. height: math.unit(1.75, "feet"),
  30362. name: "Rump",
  30363. image: {
  30364. source: "./media/characters/cecelia-swift/rump.svg"
  30365. }
  30366. },
  30367. },
  30368. [
  30369. {
  30370. name: "Normal",
  30371. height: math.unit(5 + 9 / 12, "feet"),
  30372. default: true
  30373. },
  30374. {
  30375. name: "Big",
  30376. height: math.unit(50, "feet")
  30377. },
  30378. {
  30379. name: "Macro",
  30380. height: math.unit(100, "feet")
  30381. },
  30382. {
  30383. name: "Macro+",
  30384. height: math.unit(500, "feet")
  30385. },
  30386. {
  30387. name: "Macro++",
  30388. height: math.unit(1000, "feet")
  30389. },
  30390. ]
  30391. ))
  30392. characterMakers.push(() => makeCharacter(
  30393. { name: "Kaunan", species: ["dragon"], tags: ["anthro"] },
  30394. {
  30395. front: {
  30396. height: math.unit(6, "feet"),
  30397. weight: math.unit(150, "lb"),
  30398. name: "Front",
  30399. image: {
  30400. source: "./media/characters/kaunan/front.svg",
  30401. extra: 2890 / 2523,
  30402. bottom: 49 / 2939
  30403. }
  30404. },
  30405. },
  30406. [
  30407. {
  30408. name: "Macro",
  30409. height: math.unit(150, "feet"),
  30410. default: true
  30411. },
  30412. ]
  30413. ))
  30414. characterMakers.push(() => makeCharacter(
  30415. { name: "Fei", species: ["fox"], tags: ["anthro"] },
  30416. {
  30417. dressed: {
  30418. height: math.unit(175, "cm"),
  30419. weight: math.unit(60, "kg"),
  30420. name: "Dressed",
  30421. image: {
  30422. source: "./media/characters/fei/dressed.svg",
  30423. extra: 1402/1278,
  30424. bottom: 27/1429
  30425. }
  30426. },
  30427. nude: {
  30428. height: math.unit(175, "cm"),
  30429. weight: math.unit(60, "kg"),
  30430. name: "Nude",
  30431. image: {
  30432. source: "./media/characters/fei/nude.svg",
  30433. extra: 1402/1278,
  30434. bottom: 27/1429
  30435. }
  30436. },
  30437. heels: {
  30438. height: math.unit(0.466, "feet"),
  30439. name: "Heels",
  30440. image: {
  30441. source: "./media/characters/fei/heels.svg",
  30442. extra: 156/152,
  30443. bottom: 28/184
  30444. }
  30445. },
  30446. },
  30447. [
  30448. {
  30449. name: "Mortal",
  30450. height: math.unit(175, "cm")
  30451. },
  30452. {
  30453. name: "Normal",
  30454. height: math.unit(3500, "m")
  30455. },
  30456. {
  30457. name: "Stroll",
  30458. height: math.unit(18.4, "km"),
  30459. default: true
  30460. },
  30461. {
  30462. name: "Showoff",
  30463. height: math.unit(175, "km")
  30464. },
  30465. ]
  30466. ))
  30467. characterMakers.push(() => makeCharacter(
  30468. { name: "Edrax", species: ["ferromorph"], tags: ["anthro"] },
  30469. {
  30470. front: {
  30471. height: math.unit(7, "feet"),
  30472. weight: math.unit(1000, "kg"),
  30473. name: "Front",
  30474. image: {
  30475. source: "./media/characters/edrax/front.svg",
  30476. extra: 2838 / 2550,
  30477. bottom: 130 / 2968
  30478. }
  30479. },
  30480. },
  30481. [
  30482. {
  30483. name: "Small",
  30484. height: math.unit(7, "feet")
  30485. },
  30486. {
  30487. name: "Normal",
  30488. height: math.unit(1500, "meters")
  30489. },
  30490. {
  30491. name: "Mega",
  30492. height: math.unit(12000000, "km"),
  30493. default: true
  30494. },
  30495. {
  30496. name: "Megamacro",
  30497. height: math.unit(10600000, "lightyears")
  30498. },
  30499. {
  30500. name: "Hypermacro",
  30501. height: math.unit(256, "yottameters")
  30502. },
  30503. ]
  30504. ))
  30505. characterMakers.push(() => makeCharacter(
  30506. { name: "Clove", species: ["rabbit"], tags: ["anthro"] },
  30507. {
  30508. front: {
  30509. height: math.unit(10, "feet"),
  30510. weight: math.unit(750, "lb"),
  30511. name: "Front",
  30512. image: {
  30513. source: "./media/characters/clove/front.svg",
  30514. extra: 1918/1751,
  30515. bottom: 52/1970
  30516. }
  30517. },
  30518. back: {
  30519. height: math.unit(10, "feet"),
  30520. weight: math.unit(750, "lb"),
  30521. name: "Back",
  30522. image: {
  30523. source: "./media/characters/clove/back.svg",
  30524. extra: 1912/1747,
  30525. bottom: 50/1962
  30526. }
  30527. },
  30528. },
  30529. [
  30530. {
  30531. name: "Normal",
  30532. height: math.unit(10, "feet"),
  30533. default: true
  30534. },
  30535. ]
  30536. ))
  30537. characterMakers.push(() => makeCharacter(
  30538. { name: "Alex (Rabbit)", species: ["rabbit"], tags: ["anthro"] },
  30539. {
  30540. front: {
  30541. height: math.unit(4, "feet"),
  30542. weight: math.unit(50, "lb"),
  30543. name: "Front",
  30544. image: {
  30545. source: "./media/characters/alex-rabbit/front.svg",
  30546. extra: 507 / 458,
  30547. bottom: 18.5 / 527
  30548. }
  30549. },
  30550. back: {
  30551. height: math.unit(4, "feet"),
  30552. weight: math.unit(50, "lb"),
  30553. name: "Back",
  30554. image: {
  30555. source: "./media/characters/alex-rabbit/back.svg",
  30556. extra: 502 / 460,
  30557. bottom: 18.9 / 521
  30558. }
  30559. },
  30560. },
  30561. [
  30562. {
  30563. name: "Normal",
  30564. height: math.unit(4, "feet"),
  30565. default: true
  30566. },
  30567. ]
  30568. ))
  30569. characterMakers.push(() => makeCharacter(
  30570. { name: "Zander Rose", species: ["meowth"], tags: ["anthro"] },
  30571. {
  30572. front: {
  30573. height: math.unit(1 + 3 / 12, "feet"),
  30574. weight: math.unit(80, "lb"),
  30575. name: "Front",
  30576. image: {
  30577. source: "./media/characters/zander-rose/front.svg",
  30578. extra: 916 / 797,
  30579. bottom: 17 / 933
  30580. }
  30581. },
  30582. back: {
  30583. height: math.unit(1 + 3 / 12, "feet"),
  30584. weight: math.unit(80, "lb"),
  30585. name: "Back",
  30586. image: {
  30587. source: "./media/characters/zander-rose/back.svg",
  30588. extra: 903 / 779,
  30589. bottom: 31 / 934
  30590. }
  30591. },
  30592. },
  30593. [
  30594. {
  30595. name: "Normal",
  30596. height: math.unit(1 + 3 / 12, "feet"),
  30597. default: true
  30598. },
  30599. ]
  30600. ))
  30601. characterMakers.push(() => makeCharacter(
  30602. { name: "Razz", species: ["pavodragon"], tags: ["anthro", "feral"] },
  30603. {
  30604. anthro: {
  30605. height: math.unit(6, "feet"),
  30606. weight: math.unit(150, "lb"),
  30607. name: "Anthro",
  30608. image: {
  30609. source: "./media/characters/razz/anthro.svg",
  30610. extra: 1437 / 1343,
  30611. bottom: 48 / 1485
  30612. }
  30613. },
  30614. feral: {
  30615. height: math.unit(6, "feet"),
  30616. weight: math.unit(150, "lb"),
  30617. name: "Feral",
  30618. image: {
  30619. source: "./media/characters/razz/feral.svg",
  30620. extra: 2569 / 1385,
  30621. bottom: 95 / 2664
  30622. }
  30623. },
  30624. },
  30625. [
  30626. {
  30627. name: "Normal",
  30628. height: math.unit(6, "feet"),
  30629. default: true
  30630. },
  30631. ]
  30632. ))
  30633. characterMakers.push(() => makeCharacter(
  30634. { name: "Morrigan", species: ["shark"], tags: ["anthro"] },
  30635. {
  30636. front: {
  30637. height: math.unit(9 + 4 / 12, "feet"),
  30638. weight: math.unit(500, "lb"),
  30639. name: "Front",
  30640. image: {
  30641. source: "./media/characters/morrigan/front.svg",
  30642. extra: 2707 / 2579,
  30643. bottom: 156 / 2863
  30644. }
  30645. },
  30646. },
  30647. [
  30648. {
  30649. name: "Normal",
  30650. height: math.unit(9 + 4 / 12, "feet"),
  30651. default: true
  30652. },
  30653. ]
  30654. ))
  30655. characterMakers.push(() => makeCharacter(
  30656. { name: "Jenene", species: ["wolf"], tags: ["anthro"] },
  30657. {
  30658. front: {
  30659. height: math.unit(5, "stories"),
  30660. weight: math.unit(4000, "lb"),
  30661. name: "Front",
  30662. image: {
  30663. source: "./media/characters/jenene/front.svg",
  30664. extra: 1780 / 1710,
  30665. bottom: 57 / 1837
  30666. }
  30667. },
  30668. },
  30669. [
  30670. {
  30671. name: "Normal",
  30672. height: math.unit(5, "stories"),
  30673. default: true
  30674. },
  30675. ]
  30676. ))
  30677. characterMakers.push(() => makeCharacter(
  30678. { name: "Faey", species: ["aaltranae"], tags: ["taur"] },
  30679. {
  30680. taurSfw: {
  30681. height: math.unit(10, "meters"),
  30682. weight: math.unit(17500, "kg"),
  30683. name: "Taur",
  30684. image: {
  30685. source: "./media/characters/faey/taur-sfw.svg",
  30686. extra: 1200 / 968,
  30687. bottom: 41 / 1241
  30688. }
  30689. },
  30690. chestmaw: {
  30691. height: math.unit(2.01, "meters"),
  30692. name: "Chestmaw",
  30693. image: {
  30694. source: "./media/characters/faey/chestmaw.svg"
  30695. }
  30696. },
  30697. foot: {
  30698. height: math.unit(2.43, "meters"),
  30699. name: "Foot",
  30700. image: {
  30701. source: "./media/characters/faey/foot.svg"
  30702. }
  30703. },
  30704. jaws: {
  30705. height: math.unit(1.66, "meters"),
  30706. name: "Jaws",
  30707. image: {
  30708. source: "./media/characters/faey/jaws.svg"
  30709. }
  30710. },
  30711. tongues: {
  30712. height: math.unit(2.01, "meters"),
  30713. name: "Tongues",
  30714. image: {
  30715. source: "./media/characters/faey/tongues.svg"
  30716. }
  30717. },
  30718. },
  30719. [
  30720. {
  30721. name: "Small",
  30722. height: math.unit(10, "meters"),
  30723. default: true
  30724. },
  30725. {
  30726. name: "Big",
  30727. height: math.unit(500000, "km")
  30728. },
  30729. ]
  30730. ))
  30731. characterMakers.push(() => makeCharacter(
  30732. { name: "Roku", species: ["lion"], tags: ["anthro"] },
  30733. {
  30734. front: {
  30735. height: math.unit(7, "feet"),
  30736. weight: math.unit(275, "lb"),
  30737. name: "Front",
  30738. image: {
  30739. source: "./media/characters/roku/front.svg",
  30740. extra: 903 / 878,
  30741. bottom: 37 / 940
  30742. }
  30743. },
  30744. },
  30745. [
  30746. {
  30747. name: "Normal",
  30748. height: math.unit(7, "feet"),
  30749. default: true
  30750. },
  30751. {
  30752. name: "Macro",
  30753. height: math.unit(500, "feet")
  30754. },
  30755. {
  30756. name: "Megamacro",
  30757. height: math.unit(200, "miles")
  30758. },
  30759. ]
  30760. ))
  30761. characterMakers.push(() => makeCharacter(
  30762. { name: "Lira", species: ["kitsune"], tags: ["anthro"] },
  30763. {
  30764. front: {
  30765. height: math.unit(6 + 2 / 12, "feet"),
  30766. weight: math.unit(150, "lb"),
  30767. name: "Front",
  30768. image: {
  30769. source: "./media/characters/lira/front.svg",
  30770. extra: 1727 / 1605,
  30771. bottom: 26 / 1753
  30772. }
  30773. },
  30774. back: {
  30775. height: math.unit(6 + 2 / 12, "feet"),
  30776. weight: math.unit(150, "lb"),
  30777. name: "Back",
  30778. image: {
  30779. source: "./media/characters/lira/back.svg",
  30780. extra: 1713/1621,
  30781. bottom: 20/1733
  30782. }
  30783. },
  30784. hand: {
  30785. height: math.unit(0.75, "feet"),
  30786. name: "Hand",
  30787. image: {
  30788. source: "./media/characters/lira/hand.svg"
  30789. }
  30790. },
  30791. maw: {
  30792. height: math.unit(0.65, "feet"),
  30793. name: "Maw",
  30794. image: {
  30795. source: "./media/characters/lira/maw.svg"
  30796. }
  30797. },
  30798. pawDigi: {
  30799. height: math.unit(1.6, "feet"),
  30800. name: "Paw Digi",
  30801. image: {
  30802. source: "./media/characters/lira/paw-digi.svg"
  30803. }
  30804. },
  30805. pawPlanti: {
  30806. height: math.unit(1.4, "feet"),
  30807. name: "Paw Planti",
  30808. image: {
  30809. source: "./media/characters/lira/paw-planti.svg"
  30810. }
  30811. },
  30812. },
  30813. [
  30814. {
  30815. name: "Normal",
  30816. height: math.unit(6 + 2 / 12, "feet"),
  30817. default: true
  30818. },
  30819. {
  30820. name: "Macro",
  30821. height: math.unit(100, "feet")
  30822. },
  30823. {
  30824. name: "Macro²",
  30825. height: math.unit(1600, "feet")
  30826. },
  30827. {
  30828. name: "Planetary",
  30829. height: math.unit(20, "earths")
  30830. },
  30831. ]
  30832. ))
  30833. characterMakers.push(() => makeCharacter(
  30834. { name: "Hadjet", species: ["cat"], tags: ["anthro"] },
  30835. {
  30836. front: {
  30837. height: math.unit(6, "feet"),
  30838. weight: math.unit(150, "lb"),
  30839. name: "Front",
  30840. image: {
  30841. source: "./media/characters/hadjet/front.svg",
  30842. extra: 1480 / 1346,
  30843. bottom: 26 / 1506
  30844. }
  30845. },
  30846. frontNsfw: {
  30847. height: math.unit(6, "feet"),
  30848. weight: math.unit(150, "lb"),
  30849. name: "Front (NSFW)",
  30850. image: {
  30851. source: "./media/characters/hadjet/front-nsfw.svg",
  30852. extra: 1440 / 1358,
  30853. bottom: 52 / 1492
  30854. }
  30855. },
  30856. },
  30857. [
  30858. {
  30859. name: "Macro",
  30860. height: math.unit(10, "stories"),
  30861. default: true
  30862. },
  30863. {
  30864. name: "Megamacro",
  30865. height: math.unit(1.5, "miles")
  30866. },
  30867. {
  30868. name: "Megamacro+",
  30869. height: math.unit(5, "miles")
  30870. },
  30871. ]
  30872. ))
  30873. characterMakers.push(() => makeCharacter(
  30874. { name: "Kodran", species: ["dragon", "machine"], tags: ["feral"] },
  30875. {
  30876. side: {
  30877. height: math.unit(106, "feet"),
  30878. weight: math.unit(500, "tonnes"),
  30879. name: "Side",
  30880. image: {
  30881. source: "./media/characters/kodran/side.svg",
  30882. extra: 553 / 480,
  30883. bottom: 33 / 586
  30884. }
  30885. },
  30886. front: {
  30887. height: math.unit(132, "feet"),
  30888. weight: math.unit(500, "tonnes"),
  30889. name: "Front",
  30890. image: {
  30891. source: "./media/characters/kodran/front.svg",
  30892. extra: 667 / 643,
  30893. bottom: 42 / 709
  30894. }
  30895. },
  30896. flying: {
  30897. height: math.unit(350, "feet"),
  30898. weight: math.unit(500, "tonnes"),
  30899. name: "Flying",
  30900. image: {
  30901. source: "./media/characters/kodran/flying.svg"
  30902. }
  30903. },
  30904. foot: {
  30905. height: math.unit(33, "feet"),
  30906. name: "Foot",
  30907. image: {
  30908. source: "./media/characters/kodran/foot.svg"
  30909. }
  30910. },
  30911. footFront: {
  30912. height: math.unit(19, "feet"),
  30913. name: "Foot (Front)",
  30914. image: {
  30915. source: "./media/characters/kodran/foot-front.svg",
  30916. extra: 261 / 261,
  30917. bottom: 91 / 352
  30918. }
  30919. },
  30920. headFront: {
  30921. height: math.unit(53, "feet"),
  30922. name: "Head (Front)",
  30923. image: {
  30924. source: "./media/characters/kodran/head-front.svg"
  30925. }
  30926. },
  30927. headSide: {
  30928. height: math.unit(65, "feet"),
  30929. name: "Head (Side)",
  30930. image: {
  30931. source: "./media/characters/kodran/head-side.svg"
  30932. }
  30933. },
  30934. throat: {
  30935. height: math.unit(79, "feet"),
  30936. name: "Throat",
  30937. image: {
  30938. source: "./media/characters/kodran/throat.svg"
  30939. }
  30940. },
  30941. },
  30942. [
  30943. {
  30944. name: "Large",
  30945. height: math.unit(106, "feet"),
  30946. default: true
  30947. },
  30948. ]
  30949. ))
  30950. characterMakers.push(() => makeCharacter(
  30951. { name: "Pyxaron", species: ["draptor"], tags: ["feral"] },
  30952. {
  30953. side: {
  30954. height: math.unit(11, "feet"),
  30955. weight: math.unit(150, "lb"),
  30956. name: "Side",
  30957. image: {
  30958. source: "./media/characters/pyxaron/side.svg",
  30959. extra: 305 / 195,
  30960. bottom: 17 / 322
  30961. }
  30962. },
  30963. },
  30964. [
  30965. {
  30966. name: "Normal",
  30967. height: math.unit(11, "feet"),
  30968. default: true
  30969. },
  30970. ]
  30971. ))
  30972. characterMakers.push(() => makeCharacter(
  30973. { name: "Meep", species: ["candy", "salamander"], tags: ["anthro"] },
  30974. {
  30975. front: {
  30976. height: math.unit(6, "feet"),
  30977. weight: math.unit(150, "lb"),
  30978. name: "Front",
  30979. image: {
  30980. source: "./media/characters/meep/front.svg",
  30981. extra: 88 / 80,
  30982. bottom: 6 / 94
  30983. }
  30984. },
  30985. },
  30986. [
  30987. {
  30988. name: "Fun Sized",
  30989. height: math.unit(2, "inches"),
  30990. default: true
  30991. },
  30992. {
  30993. name: "Friend Sized",
  30994. height: math.unit(8, "inches")
  30995. },
  30996. ]
  30997. ))
  30998. characterMakers.push(() => makeCharacter(
  30999. { name: "Holly (Rabbit)", species: ["rabbit"], tags: ["anthro"] },
  31000. {
  31001. front: {
  31002. height: math.unit(15, "feet"),
  31003. weight: math.unit(2500, "lb"),
  31004. name: "Front",
  31005. image: {
  31006. source: "./media/characters/holly-rabbit/front.svg",
  31007. extra: 1433 / 1233,
  31008. bottom: 125 / 1558
  31009. }
  31010. },
  31011. dick: {
  31012. height: math.unit(4.6, "feet"),
  31013. name: "Dick",
  31014. image: {
  31015. source: "./media/characters/holly-rabbit/dick.svg"
  31016. }
  31017. },
  31018. },
  31019. [
  31020. {
  31021. name: "Normal",
  31022. height: math.unit(15, "feet"),
  31023. default: true
  31024. },
  31025. {
  31026. name: "Macro",
  31027. height: math.unit(250, "feet")
  31028. },
  31029. {
  31030. name: "Macro+",
  31031. height: math.unit(2500, "feet")
  31032. },
  31033. ]
  31034. ))
  31035. characterMakers.push(() => makeCharacter(
  31036. { name: "Drena", species: ["drenath"], tags: ["anthro"] },
  31037. {
  31038. front: {
  31039. height: math.unit(3.02, "meters"),
  31040. weight: math.unit(500, "kg"),
  31041. name: "Front",
  31042. image: {
  31043. source: "./media/characters/drena/front.svg",
  31044. extra: 282 / 243,
  31045. bottom: 8 / 290
  31046. }
  31047. },
  31048. side: {
  31049. height: math.unit(3.02, "meters"),
  31050. weight: math.unit(500, "kg"),
  31051. name: "Side",
  31052. image: {
  31053. source: "./media/characters/drena/side.svg",
  31054. extra: 280 / 245,
  31055. bottom: 10 / 290
  31056. }
  31057. },
  31058. back: {
  31059. height: math.unit(3.02, "meters"),
  31060. weight: math.unit(500, "kg"),
  31061. name: "Back",
  31062. image: {
  31063. source: "./media/characters/drena/back.svg",
  31064. extra: 278 / 243,
  31065. bottom: 2 / 280
  31066. }
  31067. },
  31068. foot: {
  31069. height: math.unit(0.75, "meters"),
  31070. name: "Foot",
  31071. image: {
  31072. source: "./media/characters/drena/foot.svg"
  31073. }
  31074. },
  31075. maw: {
  31076. height: math.unit(0.82, "meters"),
  31077. name: "Maw",
  31078. image: {
  31079. source: "./media/characters/drena/maw.svg"
  31080. }
  31081. },
  31082. eating: {
  31083. height: math.unit(0.75, "meters"),
  31084. name: "Eating",
  31085. image: {
  31086. source: "./media/characters/drena/eating.svg"
  31087. }
  31088. },
  31089. rump: {
  31090. height: math.unit(0.93, "meters"),
  31091. name: "Rump",
  31092. image: {
  31093. source: "./media/characters/drena/rump.svg"
  31094. }
  31095. },
  31096. },
  31097. [
  31098. {
  31099. name: "Normal",
  31100. height: math.unit(3.02, "meters"),
  31101. default: true
  31102. },
  31103. ]
  31104. ))
  31105. characterMakers.push(() => makeCharacter(
  31106. { name: "Remmyzilla", species: ["coyju"], tags: ["anthro"] },
  31107. {
  31108. front: {
  31109. height: math.unit(6 + 4 / 12, "feet"),
  31110. weight: math.unit(250, "lb"),
  31111. name: "Front",
  31112. image: {
  31113. source: "./media/characters/remmyzilla/front.svg",
  31114. extra: 4033 / 3588,
  31115. bottom: 123 / 4156
  31116. }
  31117. },
  31118. back: {
  31119. height: math.unit(6 + 4 / 12, "feet"),
  31120. weight: math.unit(250, "lb"),
  31121. name: "Back",
  31122. image: {
  31123. source: "./media/characters/remmyzilla/back.svg",
  31124. extra: 1696/1602,
  31125. bottom: 63/1759
  31126. }
  31127. },
  31128. paw: {
  31129. height: math.unit(1.73, "feet"),
  31130. name: "Paw",
  31131. image: {
  31132. source: "./media/characters/remmyzilla/paw.svg"
  31133. },
  31134. extraAttributes: {
  31135. "toeSize": {
  31136. name: "Toe Size",
  31137. power: 2,
  31138. type: "area",
  31139. base: math.unit(0.0035, "m^2")
  31140. },
  31141. "padSize": {
  31142. name: "Pad Size",
  31143. power: 2,
  31144. type: "area",
  31145. base: math.unit(0.015, "m^2")
  31146. },
  31147. "pawsize": {
  31148. name: "Paw Size",
  31149. power: 2,
  31150. type: "area",
  31151. base: math.unit(0.072, "m^2")
  31152. },
  31153. }
  31154. },
  31155. maw: {
  31156. height: math.unit(1.73, "feet"),
  31157. name: "Maw",
  31158. image: {
  31159. source: "./media/characters/remmyzilla/maw.svg"
  31160. }
  31161. },
  31162. },
  31163. [
  31164. {
  31165. name: "Normal",
  31166. height: math.unit(6 + 4 / 12, "feet")
  31167. },
  31168. {
  31169. name: "Minimacro",
  31170. height: math.unit(12 + 8 / 12, "feet")
  31171. },
  31172. {
  31173. name: "Normal",
  31174. height: math.unit(640, "feet"),
  31175. default: true
  31176. },
  31177. {
  31178. name: "Megamacro",
  31179. height: math.unit(6400, "feet")
  31180. },
  31181. {
  31182. name: "Gigamacro",
  31183. height: math.unit(64000, "miles")
  31184. },
  31185. ]
  31186. ))
  31187. characterMakers.push(() => makeCharacter(
  31188. { name: "Lawrence", species: ["sergal"], tags: ["anthro"] },
  31189. {
  31190. front: {
  31191. height: math.unit(2.5, "meters"),
  31192. weight: math.unit(300, "lb"),
  31193. name: "Front",
  31194. image: {
  31195. source: "./media/characters/lawrence/front.svg",
  31196. extra: 357 / 335,
  31197. bottom: 30 / 387
  31198. }
  31199. },
  31200. back: {
  31201. height: math.unit(2.5, "meters"),
  31202. weight: math.unit(300, "lb"),
  31203. name: "Back",
  31204. image: {
  31205. source: "./media/characters/lawrence/back.svg",
  31206. extra: 357 / 338,
  31207. bottom: 16 / 373
  31208. }
  31209. },
  31210. head: {
  31211. height: math.unit(0.9, "meter"),
  31212. name: "Head",
  31213. image: {
  31214. source: "./media/characters/lawrence/head.svg"
  31215. }
  31216. },
  31217. maw: {
  31218. height: math.unit(0.7, "meter"),
  31219. name: "Maw",
  31220. image: {
  31221. source: "./media/characters/lawrence/maw.svg"
  31222. }
  31223. },
  31224. footBottom: {
  31225. height: math.unit(0.5, "meter"),
  31226. name: "Foot (Bottom)",
  31227. image: {
  31228. source: "./media/characters/lawrence/foot-bottom.svg"
  31229. }
  31230. },
  31231. footTop: {
  31232. height: math.unit(0.5, "meter"),
  31233. name: "Foot (Top)",
  31234. image: {
  31235. source: "./media/characters/lawrence/foot-top.svg"
  31236. }
  31237. },
  31238. },
  31239. [
  31240. {
  31241. name: "Normal",
  31242. height: math.unit(2.5, "meters"),
  31243. default: true
  31244. },
  31245. {
  31246. name: "Macro",
  31247. height: math.unit(95, "meters")
  31248. },
  31249. {
  31250. name: "Megamacro",
  31251. height: math.unit(150, "km")
  31252. },
  31253. ]
  31254. ))
  31255. characterMakers.push(() => makeCharacter(
  31256. { name: "Sydney", species: ["naga"], tags: ["naga"] },
  31257. {
  31258. front: {
  31259. height: math.unit(4.2, "meters"),
  31260. preyCapacity: math.unit(50, "m^3"),
  31261. weight: math.unit(30, "tonnes"),
  31262. name: "Front",
  31263. image: {
  31264. source: "./media/characters/sydney/front.svg",
  31265. extra: 1177/1129,
  31266. bottom: 197/1374
  31267. },
  31268. extraAttributes: {
  31269. "length": {
  31270. name: "Length",
  31271. power: 1,
  31272. type: "length",
  31273. base: math.unit(21, "meters")
  31274. },
  31275. }
  31276. },
  31277. },
  31278. [
  31279. {
  31280. name: "Normal",
  31281. height: math.unit(4.2, "meters"),
  31282. default: true
  31283. },
  31284. ]
  31285. ))
  31286. characterMakers.push(() => makeCharacter(
  31287. { name: "Jessica", species: ["maned-wolf"], tags: ["anthro"] },
  31288. {
  31289. back: {
  31290. height: math.unit(201, "feet"),
  31291. name: "Back",
  31292. image: {
  31293. source: "./media/characters/jessica/back.svg",
  31294. extra: 273 / 259,
  31295. bottom: 7 / 280
  31296. }
  31297. },
  31298. },
  31299. [
  31300. {
  31301. name: "Normal",
  31302. height: math.unit(201, "feet"),
  31303. default: true
  31304. },
  31305. {
  31306. name: "Megamacro",
  31307. height: math.unit(8, "miles")
  31308. },
  31309. ]
  31310. ))
  31311. characterMakers.push(() => makeCharacter(
  31312. { name: "Victoria", species: ["zorgoia"], tags: ["feral"] },
  31313. {
  31314. side: {
  31315. height: math.unit(5.6, "m"),
  31316. weight: math.unit(8000, "kg"),
  31317. name: "Side",
  31318. image: {
  31319. source: "./media/characters/victoria/side.svg",
  31320. extra: 1542/1229,
  31321. bottom: 124/1666
  31322. }
  31323. },
  31324. maw: {
  31325. height: math.unit(7.14, "feet"),
  31326. name: "Maw",
  31327. image: {
  31328. source: "./media/characters/victoria/maw.svg"
  31329. }
  31330. },
  31331. },
  31332. [
  31333. {
  31334. name: "Normal",
  31335. height: math.unit(5.6, "m"),
  31336. default: true
  31337. },
  31338. ]
  31339. ))
  31340. characterMakers.push(() => makeCharacter(
  31341. { name: "Cat", species: ["cat", "nickit", "lucario", "lopunny"], tags: ["anthro", "feral", "taur"] },
  31342. {
  31343. front: {
  31344. height: math.unit(5 + 6 / 12, "feet"),
  31345. name: "Front",
  31346. image: {
  31347. source: "./media/characters/cat/front.svg",
  31348. extra: 1449/1295,
  31349. bottom: 34/1483
  31350. },
  31351. form: "cat",
  31352. default: true
  31353. },
  31354. back: {
  31355. height: math.unit(5 + 6 / 12, "feet"),
  31356. name: "Back",
  31357. image: {
  31358. source: "./media/characters/cat/back.svg",
  31359. extra: 1466/1301,
  31360. bottom: 19/1485
  31361. },
  31362. form: "cat"
  31363. },
  31364. taur: {
  31365. height: math.unit(7, "feet"),
  31366. name: "Taur",
  31367. image: {
  31368. source: "./media/characters/cat/taur.svg",
  31369. extra: 1389/1233,
  31370. bottom: 83/1472
  31371. },
  31372. form: "taur",
  31373. default: true
  31374. },
  31375. lucarioFront: {
  31376. height: math.unit(4, "feet"),
  31377. name: "Lucario (Front)",
  31378. image: {
  31379. source: "./media/characters/cat/lucario-front.svg",
  31380. extra: 1149/1019,
  31381. bottom: 84/1233
  31382. },
  31383. form: "lucario",
  31384. default: true
  31385. },
  31386. lucarioBack: {
  31387. height: math.unit(4, "feet"),
  31388. name: "Lucario (Back)",
  31389. image: {
  31390. source: "./media/characters/cat/lucario-back.svg",
  31391. extra: 1190/1059,
  31392. bottom: 33/1223
  31393. },
  31394. form: "lucario"
  31395. },
  31396. megaLucario: {
  31397. height: math.unit(4, "feet"),
  31398. name: "Mega Lucario",
  31399. image: {
  31400. source: "./media/characters/cat/mega-lucario.svg",
  31401. extra: 1515 / 1319,
  31402. bottom: 63 / 1578
  31403. },
  31404. form: "lucario"
  31405. },
  31406. nickit: {
  31407. height: math.unit(2, "feet"),
  31408. name: "Nickit",
  31409. image: {
  31410. source: "./media/characters/cat/nickit.svg",
  31411. extra: 1980 / 1585,
  31412. bottom: 102 / 2082
  31413. },
  31414. form: "nickit",
  31415. default: true
  31416. },
  31417. lopunnyFront: {
  31418. height: math.unit(5, "feet"),
  31419. name: "Lopunny (Front)",
  31420. image: {
  31421. source: "./media/characters/cat/lopunny-front.svg",
  31422. extra: 1782 / 1469,
  31423. bottom: 38 / 1820
  31424. },
  31425. form: "lopunny",
  31426. default: true
  31427. },
  31428. lopunnyBack: {
  31429. height: math.unit(5, "feet"),
  31430. name: "Lopunny (Back)",
  31431. image: {
  31432. source: "./media/characters/cat/lopunny-back.svg",
  31433. extra: 1660 / 1490,
  31434. bottom: 25 / 1685
  31435. },
  31436. form: "lopunny"
  31437. },
  31438. },
  31439. [
  31440. {
  31441. name: "Really small",
  31442. height: math.unit(1, "nm"),
  31443. allForms: true
  31444. },
  31445. {
  31446. name: "Micro",
  31447. height: math.unit(5, "inches"),
  31448. allForms: true
  31449. },
  31450. {
  31451. name: "Normal",
  31452. height: math.unit(5 + 6 / 12, "feet"),
  31453. default: true,
  31454. form: "cat"
  31455. },
  31456. {
  31457. name: "Normal",
  31458. height: math.unit(7, "feet"),
  31459. default: true,
  31460. form: "taur"
  31461. },
  31462. {
  31463. name: "Normal",
  31464. height: math.unit(4, "feet"),
  31465. default: true,
  31466. form: "lucario"
  31467. },
  31468. {
  31469. name: "Normal",
  31470. height: math.unit(2, "feet"),
  31471. default: true,
  31472. form: "nickit"
  31473. },
  31474. {
  31475. name: "Normal",
  31476. height: math.unit(5, "feet"),
  31477. default: true,
  31478. form: "lopunny"
  31479. },
  31480. {
  31481. name: "Macro",
  31482. height: math.unit(50, "feet"),
  31483. allForms: true
  31484. },
  31485. {
  31486. name: "Macro+",
  31487. height: math.unit(150, "feet"),
  31488. allForms: true
  31489. },
  31490. {
  31491. name: "Megamacro",
  31492. height: math.unit(100, "miles"),
  31493. allForms: true
  31494. },
  31495. ],
  31496. {
  31497. "cat": {
  31498. name: "Cat",
  31499. default: true
  31500. },
  31501. "taur": {
  31502. name: "Taur",
  31503. },
  31504. "lucario": {
  31505. name: "Lucario",
  31506. },
  31507. "nickit": {
  31508. name: "Nickit",
  31509. },
  31510. "lopunny": {
  31511. name: "Lopunny",
  31512. }
  31513. }
  31514. ))
  31515. characterMakers.push(() => makeCharacter(
  31516. { name: "Kirina Violet", species: ["korean-jindo-dog"], tags: ["anthro"] },
  31517. {
  31518. front: {
  31519. height: math.unit(63.4, "meters"),
  31520. weight: math.unit(3.28349e+6, "kilograms"),
  31521. name: "Front",
  31522. image: {
  31523. source: "./media/characters/kirina-violet/front.svg",
  31524. extra: 2812 / 2725,
  31525. bottom: 0 / 2812
  31526. }
  31527. },
  31528. back: {
  31529. height: math.unit(63.4, "meters"),
  31530. weight: math.unit(3.28349e+6, "kilograms"),
  31531. name: "Back",
  31532. image: {
  31533. source: "./media/characters/kirina-violet/back.svg",
  31534. extra: 2812 / 2725,
  31535. bottom: 0 / 2812
  31536. }
  31537. },
  31538. mouth: {
  31539. height: math.unit(4.35, "meters"),
  31540. name: "Mouth",
  31541. image: {
  31542. source: "./media/characters/kirina-violet/mouth.svg"
  31543. }
  31544. },
  31545. paw: {
  31546. height: math.unit(5.6, "meters"),
  31547. name: "Paw",
  31548. image: {
  31549. source: "./media/characters/kirina-violet/paw.svg"
  31550. }
  31551. },
  31552. tail: {
  31553. height: math.unit(18, "meters"),
  31554. name: "Tail",
  31555. image: {
  31556. source: "./media/characters/kirina-violet/tail.svg"
  31557. }
  31558. },
  31559. },
  31560. [
  31561. {
  31562. name: "Macro",
  31563. height: math.unit(63.4, "meters"),
  31564. default: true
  31565. },
  31566. ]
  31567. ))
  31568. characterMakers.push(() => makeCharacter(
  31569. { name: "Cat (Gigachu)", species: ["pikachu"], tags: ["anthro"] },
  31570. {
  31571. front: {
  31572. height: math.unit(75, "feet"),
  31573. name: "Front",
  31574. image: {
  31575. source: "./media/characters/cat-gigachu/front.svg",
  31576. extra: 1239/1027,
  31577. bottom: 32/1271
  31578. }
  31579. },
  31580. back: {
  31581. height: math.unit(75, "feet"),
  31582. name: "Back",
  31583. image: {
  31584. source: "./media/characters/cat-gigachu/back.svg",
  31585. extra: 1229/1030,
  31586. bottom: 9/1238
  31587. }
  31588. },
  31589. },
  31590. [
  31591. {
  31592. name: "Dynamax",
  31593. height: math.unit(75, "feet"),
  31594. default: true
  31595. },
  31596. ]
  31597. ))
  31598. characterMakers.push(() => makeCharacter(
  31599. { name: "Sfaiyan", species: ["jackal"], tags: ["anthro"] },
  31600. {
  31601. front: {
  31602. height: math.unit(6, "feet"),
  31603. weight: math.unit(150, "lb"),
  31604. name: "Front",
  31605. image: {
  31606. source: "./media/characters/sfaiyan/front.svg",
  31607. extra: 999 / 978,
  31608. bottom: 5 / 1004
  31609. }
  31610. },
  31611. },
  31612. [
  31613. {
  31614. name: "Normal",
  31615. height: math.unit(1.82, "meters")
  31616. },
  31617. {
  31618. name: "Giant",
  31619. height: math.unit(2.27, "km"),
  31620. default: true
  31621. },
  31622. ]
  31623. ))
  31624. characterMakers.push(() => makeCharacter(
  31625. { name: "Raunehkeli", species: ["monster"], tags: ["anthro"] },
  31626. {
  31627. front: {
  31628. height: math.unit(179, "cm"),
  31629. weight: math.unit(100, "kg"),
  31630. name: "Front",
  31631. image: {
  31632. source: "./media/characters/raunehkeli/front.svg",
  31633. extra: 1934 / 1926,
  31634. bottom: 0 / 1934
  31635. }
  31636. },
  31637. },
  31638. [
  31639. {
  31640. name: "Normal",
  31641. height: math.unit(179, "cm")
  31642. },
  31643. {
  31644. name: "Maximum",
  31645. height: math.unit(575, "meters"),
  31646. default: true
  31647. },
  31648. ]
  31649. ))
  31650. characterMakers.push(() => makeCharacter(
  31651. { name: "Beatrice \"The Behemoth\" Heathers", species: ["husky", "kaiju"], tags: ["anthro"] },
  31652. {
  31653. front: {
  31654. height: math.unit(6, "feet"),
  31655. weight: math.unit(150, "lb"),
  31656. name: "Front",
  31657. image: {
  31658. source: "./media/characters/beatrice-the-behemoth-heathers/front.svg",
  31659. extra: 2625 / 2518,
  31660. bottom: 60 / 2685
  31661. }
  31662. },
  31663. },
  31664. [
  31665. {
  31666. name: "Normal",
  31667. height: math.unit(6 + 2 / 12, "feet")
  31668. },
  31669. {
  31670. name: "Macro",
  31671. height: math.unit(1180, "feet"),
  31672. default: true
  31673. },
  31674. ]
  31675. ))
  31676. characterMakers.push(() => makeCharacter(
  31677. { name: "Lilith Zott", species: ["bat", "kaiju"], tags: ["anthro"] },
  31678. {
  31679. front: {
  31680. height: math.unit(5 + 6 / 12, "feet"),
  31681. weight: math.unit(108, "lb"),
  31682. name: "Front",
  31683. image: {
  31684. source: "./media/characters/lilith-zott/front.svg",
  31685. extra: 2510 / 2238,
  31686. bottom: 100 / 2610
  31687. }
  31688. },
  31689. frontDressed: {
  31690. height: math.unit(5 + 6 / 12, "feet"),
  31691. weight: math.unit(108, "lb"),
  31692. name: "Front (Dressed)",
  31693. image: {
  31694. source: "./media/characters/lilith-zott/front-dressed.svg",
  31695. extra: 2510 / 2238,
  31696. bottom: 100 / 2610
  31697. }
  31698. },
  31699. },
  31700. [
  31701. {
  31702. name: "Normal",
  31703. height: math.unit(5 + 6 / 12, "feet")
  31704. },
  31705. {
  31706. name: "Macro",
  31707. height: math.unit(1030, "feet"),
  31708. default: true
  31709. },
  31710. ]
  31711. ))
  31712. characterMakers.push(() => makeCharacter(
  31713. { name: "Holly \"The Mega Mousky\" Heathers", species: ["mouse", "husky", "kaiju"], tags: ["anthro"] },
  31714. {
  31715. front: {
  31716. height: math.unit(6, "feet"),
  31717. weight: math.unit(150, "lb"),
  31718. name: "Front",
  31719. image: {
  31720. source: "./media/characters/holly-the-mega-mousky-heathers/front.svg",
  31721. extra: 2567 / 2435,
  31722. bottom: 39 / 2606
  31723. }
  31724. },
  31725. frontSuper: {
  31726. height: math.unit(6, "feet"),
  31727. name: "Front (Super)",
  31728. image: {
  31729. source: "./media/characters/holly-the-mega-mousky-heathers/front-super.svg",
  31730. extra: 2567 / 2435,
  31731. bottom: 39 / 2606
  31732. }
  31733. },
  31734. },
  31735. [
  31736. {
  31737. name: "Normal",
  31738. height: math.unit(5 + 10 / 12, "feet")
  31739. },
  31740. {
  31741. name: "Macro",
  31742. height: math.unit(1100, "feet"),
  31743. default: true
  31744. },
  31745. ]
  31746. ))
  31747. characterMakers.push(() => makeCharacter(
  31748. { name: "Sona", species: ["dragon"], tags: ["anthro"] },
  31749. {
  31750. front: {
  31751. height: math.unit(100, "miles"),
  31752. name: "Front",
  31753. image: {
  31754. source: "./media/characters/sona/front.svg",
  31755. extra: 2433 / 2201,
  31756. bottom: 53 / 2486
  31757. }
  31758. },
  31759. foot: {
  31760. height: math.unit(16.1, "miles"),
  31761. name: "Foot",
  31762. image: {
  31763. source: "./media/characters/sona/foot.svg"
  31764. }
  31765. },
  31766. },
  31767. [
  31768. {
  31769. name: "Macro",
  31770. height: math.unit(100, "miles"),
  31771. default: true
  31772. },
  31773. ]
  31774. ))
  31775. characterMakers.push(() => makeCharacter(
  31776. { name: "Bailey", species: ["wolf"], tags: ["anthro"] },
  31777. {
  31778. front: {
  31779. height: math.unit(6, "feet"),
  31780. weight: math.unit(150, "lb"),
  31781. name: "Front",
  31782. image: {
  31783. source: "./media/characters/bailey/front.svg",
  31784. extra: 1778 / 1724,
  31785. bottom: 30 / 1808
  31786. }
  31787. },
  31788. },
  31789. [
  31790. {
  31791. name: "Micro",
  31792. height: math.unit(4, "inches")
  31793. },
  31794. {
  31795. name: "Normal",
  31796. height: math.unit(5 + 5 / 12, "feet"),
  31797. default: true
  31798. },
  31799. {
  31800. name: "Macro",
  31801. height: math.unit(250, "feet")
  31802. },
  31803. {
  31804. name: "Megamacro",
  31805. height: math.unit(100, "miles")
  31806. },
  31807. ]
  31808. ))
  31809. characterMakers.push(() => makeCharacter(
  31810. { name: "Snaps", species: ["cat"], tags: ["anthro"] },
  31811. {
  31812. front: {
  31813. height: math.unit(5 + 2 / 12, "feet"),
  31814. weight: math.unit(120, "lb"),
  31815. name: "Front",
  31816. image: {
  31817. source: "./media/characters/snaps/front.svg",
  31818. extra: 2370 / 2177,
  31819. bottom: 48 / 2418
  31820. }
  31821. },
  31822. back: {
  31823. height: math.unit(5 + 2 / 12, "feet"),
  31824. weight: math.unit(120, "lb"),
  31825. name: "Back",
  31826. image: {
  31827. source: "./media/characters/snaps/back.svg",
  31828. extra: 2408 / 2258,
  31829. bottom: 15 / 2423
  31830. }
  31831. },
  31832. },
  31833. [
  31834. {
  31835. name: "Micro",
  31836. height: math.unit(9, "inches")
  31837. },
  31838. {
  31839. name: "Normal",
  31840. height: math.unit(5 + 2 / 12, "feet"),
  31841. default: true
  31842. },
  31843. {
  31844. name: "Mini Macro",
  31845. height: math.unit(10, "feet")
  31846. },
  31847. ]
  31848. ))
  31849. characterMakers.push(() => makeCharacter(
  31850. { name: "Azteck", species: ["sergal"], tags: ["anthro"] },
  31851. {
  31852. front: {
  31853. height: math.unit(1.8, "meters"),
  31854. weight: math.unit(85, "kg"),
  31855. name: "Front",
  31856. image: {
  31857. source: "./media/characters/azteck/front.svg",
  31858. extra: 2815 / 2625,
  31859. bottom: 89 / 2904
  31860. }
  31861. },
  31862. back: {
  31863. height: math.unit(1.8, "meters"),
  31864. weight: math.unit(85, "kg"),
  31865. name: "Back",
  31866. image: {
  31867. source: "./media/characters/azteck/back.svg",
  31868. extra: 2856 / 2648,
  31869. bottom: 85 / 2941
  31870. }
  31871. },
  31872. frontDressed: {
  31873. height: math.unit(1.8, "meters"),
  31874. weight: math.unit(85, "kg"),
  31875. name: "Front (Dressed)",
  31876. image: {
  31877. source: "./media/characters/azteck/front-dressed.svg",
  31878. extra: 2147 / 2003,
  31879. bottom: 68 / 2215
  31880. }
  31881. },
  31882. head: {
  31883. height: math.unit(0.47, "meters"),
  31884. weight: math.unit(85, "kg"),
  31885. name: "Head",
  31886. image: {
  31887. source: "./media/characters/azteck/head.svg"
  31888. }
  31889. },
  31890. },
  31891. [
  31892. {
  31893. name: "Bite sized",
  31894. height: math.unit(16, "cm")
  31895. },
  31896. {
  31897. name: "Normal",
  31898. height: math.unit(1.8, "meters"),
  31899. default: true
  31900. },
  31901. ]
  31902. ))
  31903. characterMakers.push(() => makeCharacter(
  31904. { name: "Pidge", species: ["hellhound"], tags: ["anthro"] },
  31905. {
  31906. front: {
  31907. height: math.unit(6, "feet"),
  31908. weight: math.unit(150, "lb"),
  31909. name: "Front",
  31910. image: {
  31911. source: "./media/characters/pidge/front.svg",
  31912. extra: 1936/1820,
  31913. bottom: 0/1936
  31914. }
  31915. },
  31916. back: {
  31917. height: math.unit(6, "feet"),
  31918. weight: math.unit(150, "lb"),
  31919. name: "Back",
  31920. image: {
  31921. source: "./media/characters/pidge/back.svg",
  31922. extra: 1938/1843,
  31923. bottom: 0/1938
  31924. }
  31925. },
  31926. casual: {
  31927. height: math.unit(6, "feet"),
  31928. weight: math.unit(150, "lb"),
  31929. name: "Casual",
  31930. image: {
  31931. source: "./media/characters/pidge/casual.svg",
  31932. extra: 1936/1820,
  31933. bottom: 0/1936
  31934. }
  31935. },
  31936. tech: {
  31937. height: math.unit(6, "feet"),
  31938. weight: math.unit(150, "lb"),
  31939. name: "Tech",
  31940. image: {
  31941. source: "./media/characters/pidge/tech.svg",
  31942. extra: 1802/1682,
  31943. bottom: 0/1802
  31944. }
  31945. },
  31946. head: {
  31947. height: math.unit(1.61, "feet"),
  31948. name: "Head",
  31949. image: {
  31950. source: "./media/characters/pidge/head.svg"
  31951. }
  31952. },
  31953. collar: {
  31954. height: math.unit(0.82, "feet"),
  31955. name: "Collar",
  31956. image: {
  31957. source: "./media/characters/pidge/collar.svg"
  31958. }
  31959. },
  31960. },
  31961. [
  31962. {
  31963. name: "Macro",
  31964. height: math.unit(2, "mile"),
  31965. default: true
  31966. },
  31967. {
  31968. name: "PUPPY",
  31969. height: math.unit(20, "miles")
  31970. },
  31971. ]
  31972. ))
  31973. characterMakers.push(() => makeCharacter(
  31974. { name: "En", species: ["maned-wolf", "undead"], tags: ["anthro"] },
  31975. {
  31976. front: {
  31977. height: math.unit(6, "feet"),
  31978. weight: math.unit(150, "lb"),
  31979. name: "Front",
  31980. image: {
  31981. source: "./media/characters/en/front.svg",
  31982. extra: 1697 / 1563,
  31983. bottom: 103 / 1800
  31984. }
  31985. },
  31986. back: {
  31987. height: math.unit(6, "feet"),
  31988. weight: math.unit(150, "lb"),
  31989. name: "Back",
  31990. image: {
  31991. source: "./media/characters/en/back.svg",
  31992. extra: 1700 / 1570,
  31993. bottom: 51 / 1751
  31994. }
  31995. },
  31996. frontDressed: {
  31997. height: math.unit(6, "feet"),
  31998. weight: math.unit(150, "lb"),
  31999. name: "Front (Dressed)",
  32000. image: {
  32001. source: "./media/characters/en/front-dressed.svg",
  32002. extra: 1697 / 1563,
  32003. bottom: 103 / 1800
  32004. }
  32005. },
  32006. backDressed: {
  32007. height: math.unit(6, "feet"),
  32008. weight: math.unit(150, "lb"),
  32009. name: "Back (Dressed)",
  32010. image: {
  32011. source: "./media/characters/en/back-dressed.svg",
  32012. extra: 1700 / 1570,
  32013. bottom: 51 / 1751
  32014. }
  32015. },
  32016. },
  32017. [
  32018. {
  32019. name: "Macro",
  32020. height: math.unit(210, "feet"),
  32021. default: true
  32022. },
  32023. ]
  32024. ))
  32025. characterMakers.push(() => makeCharacter(
  32026. { name: "Haze Orris", species: ["cat", "undead"], tags: ["anthro"] },
  32027. {
  32028. front: {
  32029. height: math.unit(6, "feet"),
  32030. weight: math.unit(150, "lb"),
  32031. name: "Front",
  32032. image: {
  32033. source: "./media/characters/haze-orris/front.svg",
  32034. extra: 3975 / 3525,
  32035. bottom: 137 / 4112
  32036. }
  32037. },
  32038. },
  32039. [
  32040. {
  32041. name: "Micro",
  32042. height: math.unit(150, "mm"),
  32043. default: true
  32044. },
  32045. ]
  32046. ))
  32047. characterMakers.push(() => makeCharacter(
  32048. { name: "Casselene Yaro", species: ["fox"], tags: ["anthro"] },
  32049. {
  32050. front: {
  32051. height: math.unit(6, "feet"),
  32052. weight: math.unit(150, "lb"),
  32053. name: "Front",
  32054. image: {
  32055. source: "./media/characters/casselene-yaro/front.svg",
  32056. extra: 4721 / 4541,
  32057. bottom: 82 / 4803
  32058. }
  32059. },
  32060. back: {
  32061. height: math.unit(6, "feet"),
  32062. weight: math.unit(150, "lb"),
  32063. name: "Back",
  32064. image: {
  32065. source: "./media/characters/casselene-yaro/back.svg",
  32066. extra: 4569 / 4377,
  32067. bottom: 69 / 4638
  32068. }
  32069. },
  32070. dressed: {
  32071. height: math.unit(6, "feet"),
  32072. weight: math.unit(150, "lb"),
  32073. name: "Dressed",
  32074. image: {
  32075. source: "./media/characters/casselene-yaro/dressed.svg",
  32076. extra: 4721 / 4541,
  32077. bottom: 82 / 4803
  32078. }
  32079. },
  32080. maw: {
  32081. height: math.unit(1, "feet"),
  32082. name: "Maw",
  32083. image: {
  32084. source: "./media/characters/casselene-yaro/maw.svg"
  32085. }
  32086. },
  32087. },
  32088. [
  32089. {
  32090. name: "Macro",
  32091. height: math.unit(190, "feet"),
  32092. default: true
  32093. },
  32094. ]
  32095. ))
  32096. characterMakers.push(() => makeCharacter(
  32097. { name: "Platine", species: ["raven"], tags: ["anthro"] },
  32098. {
  32099. front: {
  32100. height: math.unit(10, "feet"),
  32101. weight: math.unit(15015, "lb"),
  32102. name: "Front",
  32103. image: {
  32104. source: "./media/characters/platine/front.svg",
  32105. extra: 1741/1650,
  32106. bottom: 84/1825
  32107. }
  32108. },
  32109. side: {
  32110. height: math.unit(10, "feet"),
  32111. weight: math.unit(15015, "lb"),
  32112. name: "Side",
  32113. image: {
  32114. source: "./media/characters/platine/side.svg",
  32115. extra: 1790/1705,
  32116. bottom: 29/1819
  32117. }
  32118. },
  32119. },
  32120. [
  32121. {
  32122. name: "Normal",
  32123. height: math.unit(10, "feet"),
  32124. default: true
  32125. },
  32126. {
  32127. name: "Macro",
  32128. height: math.unit(100, "feet")
  32129. },
  32130. {
  32131. name: "Megamacro",
  32132. height: math.unit(1000, "feet")
  32133. },
  32134. ]
  32135. ))
  32136. characterMakers.push(() => makeCharacter(
  32137. { name: "Neapolitan Ananassa", species: ["gelato-bee"], tags: ["anthro"] },
  32138. {
  32139. front: {
  32140. height: math.unit(15 + 5 / 12, "feet"),
  32141. weight: math.unit(4600, "lb"),
  32142. name: "Front",
  32143. image: {
  32144. source: "./media/characters/neapolitan-ananassa/front.svg",
  32145. extra: 2903 / 2736,
  32146. bottom: 0 / 2903
  32147. }
  32148. },
  32149. side: {
  32150. height: math.unit(15 + 5 / 12, "feet"),
  32151. weight: math.unit(4600, "lb"),
  32152. name: "Side",
  32153. image: {
  32154. source: "./media/characters/neapolitan-ananassa/side.svg",
  32155. extra: 2925 / 2719,
  32156. bottom: 0 / 2925
  32157. }
  32158. },
  32159. back: {
  32160. height: math.unit(15 + 5 / 12, "feet"),
  32161. weight: math.unit(4600, "lb"),
  32162. name: "Back",
  32163. image: {
  32164. source: "./media/characters/neapolitan-ananassa/back.svg",
  32165. extra: 2903 / 2736,
  32166. bottom: 0 / 2903
  32167. }
  32168. },
  32169. },
  32170. [
  32171. {
  32172. name: "Normal",
  32173. height: math.unit(15 + 5 / 12, "feet"),
  32174. default: true
  32175. },
  32176. {
  32177. name: "Post-Millenium",
  32178. height: math.unit(35 + 5 / 12, "feet")
  32179. },
  32180. {
  32181. name: "Post-Era",
  32182. height: math.unit(450 + 5 / 12, "feet")
  32183. },
  32184. ]
  32185. ))
  32186. characterMakers.push(() => makeCharacter(
  32187. { name: "Pazuzu", species: ["demon"], tags: ["anthro"] },
  32188. {
  32189. front: {
  32190. height: math.unit(300, "meters"),
  32191. weight: math.unit(125000, "tonnes"),
  32192. name: "Front",
  32193. image: {
  32194. source: "./media/characters/pazuzu/front.svg",
  32195. extra: 877 / 794,
  32196. bottom: 47 / 924
  32197. }
  32198. },
  32199. },
  32200. [
  32201. {
  32202. name: "Macro",
  32203. height: math.unit(300, "meters"),
  32204. default: true
  32205. },
  32206. ]
  32207. ))
  32208. characterMakers.push(() => makeCharacter(
  32209. { name: "Aasha", species: ["whale", "seal"], tags: ["anthro"] },
  32210. {
  32211. side: {
  32212. height: math.unit(10 + 7 / 12, "feet"),
  32213. weight: math.unit(2.5, "tons"),
  32214. name: "Side",
  32215. image: {
  32216. source: "./media/characters/aasha/side.svg",
  32217. extra: 1345 / 1245,
  32218. bottom: 111 / 1456
  32219. }
  32220. },
  32221. back: {
  32222. height: math.unit(10 + 7 / 12, "feet"),
  32223. weight: math.unit(2.5, "tons"),
  32224. name: "Back",
  32225. image: {
  32226. source: "./media/characters/aasha/back.svg",
  32227. extra: 1133 / 1057,
  32228. bottom: 257 / 1390
  32229. }
  32230. },
  32231. },
  32232. [
  32233. {
  32234. name: "Normal",
  32235. height: math.unit(10 + 7 / 12, "feet"),
  32236. default: true
  32237. },
  32238. ]
  32239. ))
  32240. characterMakers.push(() => makeCharacter(
  32241. { name: "Nevan", species: ["gardevoir"], tags: ["anthro"] },
  32242. {
  32243. front: {
  32244. height: math.unit(6 + 3 / 12, "feet"),
  32245. name: "Front",
  32246. image: {
  32247. source: "./media/characters/nevan/front.svg",
  32248. extra: 704 / 704,
  32249. bottom: 28 / 732
  32250. }
  32251. },
  32252. back: {
  32253. height: math.unit(6 + 3 / 12, "feet"),
  32254. name: "Back",
  32255. image: {
  32256. source: "./media/characters/nevan/back.svg",
  32257. extra: 714 / 714,
  32258. bottom: 21 / 735
  32259. }
  32260. },
  32261. frontFlaccid: {
  32262. height: math.unit(6 + 3 / 12, "feet"),
  32263. name: "Front (Flaccid)",
  32264. image: {
  32265. source: "./media/characters/nevan/front-flaccid.svg",
  32266. extra: 704 / 704,
  32267. bottom: 28 / 732
  32268. }
  32269. },
  32270. frontErect: {
  32271. height: math.unit(6 + 3 / 12, "feet"),
  32272. name: "Front (Erect)",
  32273. image: {
  32274. source: "./media/characters/nevan/front-erect.svg",
  32275. extra: 704 / 704,
  32276. bottom: 28 / 732
  32277. }
  32278. },
  32279. backFlaccid: {
  32280. height: math.unit(6 + 3 / 12, "feet"),
  32281. name: "Back (Flaccid)",
  32282. image: {
  32283. source: "./media/characters/nevan/back-flaccid.svg",
  32284. extra: 714 / 714,
  32285. bottom: 21 / 735
  32286. }
  32287. },
  32288. },
  32289. [
  32290. {
  32291. name: "Normal",
  32292. height: math.unit(6 + 3 / 12, "feet"),
  32293. default: true
  32294. },
  32295. ]
  32296. ))
  32297. characterMakers.push(() => makeCharacter(
  32298. { name: "Arhan", species: ["kobold"], tags: ["anthro"] },
  32299. {
  32300. front: {
  32301. height: math.unit(4, "feet"),
  32302. name: "Front",
  32303. image: {
  32304. source: "./media/characters/arhan/front.svg",
  32305. extra: 3368 / 3133,
  32306. bottom: 0 / 3368
  32307. }
  32308. },
  32309. side: {
  32310. height: math.unit(4, "feet"),
  32311. name: "Side",
  32312. image: {
  32313. source: "./media/characters/arhan/side.svg",
  32314. extra: 3347 / 3105,
  32315. bottom: 0 / 3347
  32316. }
  32317. },
  32318. tongue: {
  32319. height: math.unit(1.42, "feet"),
  32320. name: "Tongue",
  32321. image: {
  32322. source: "./media/characters/arhan/tongue.svg"
  32323. }
  32324. },
  32325. head: {
  32326. height: math.unit(0.85, "feet"),
  32327. name: "Head",
  32328. image: {
  32329. source: "./media/characters/arhan/head.svg"
  32330. }
  32331. },
  32332. },
  32333. [
  32334. {
  32335. name: "Normal",
  32336. height: math.unit(4, "feet"),
  32337. default: true
  32338. },
  32339. ]
  32340. ))
  32341. characterMakers.push(() => makeCharacter(
  32342. { name: "DigiDuncan", species: ["human"], tags: ["anthro"] },
  32343. {
  32344. front: {
  32345. height: math.unit(5 + 7.5 / 12, "feet"),
  32346. weight: math.unit(120, "lb"),
  32347. name: "Front",
  32348. image: {
  32349. source: "./media/characters/digi-duncan/front.svg",
  32350. extra: 330 / 326,
  32351. bottom: 16 / 346
  32352. }
  32353. },
  32354. side: {
  32355. height: math.unit(5 + 7.5 / 12, "feet"),
  32356. weight: math.unit(120, "lb"),
  32357. name: "Side",
  32358. image: {
  32359. source: "./media/characters/digi-duncan/side.svg",
  32360. extra: 341 / 337,
  32361. bottom: 1 / 342
  32362. }
  32363. },
  32364. back: {
  32365. height: math.unit(5 + 7.5 / 12, "feet"),
  32366. weight: math.unit(120, "lb"),
  32367. name: "Back",
  32368. image: {
  32369. source: "./media/characters/digi-duncan/back.svg",
  32370. extra: 330 / 326,
  32371. bottom: 12 / 342
  32372. }
  32373. },
  32374. },
  32375. [
  32376. {
  32377. name: "Speck",
  32378. height: math.unit(0.25, "mm")
  32379. },
  32380. {
  32381. name: "Micro",
  32382. height: math.unit(5, "mm")
  32383. },
  32384. {
  32385. name: "Tiny",
  32386. height: math.unit(0.5, "inches"),
  32387. default: true
  32388. },
  32389. {
  32390. name: "Human",
  32391. height: math.unit(5 + 7.5 / 12, "feet")
  32392. },
  32393. {
  32394. name: "Minigiant",
  32395. height: math.unit(8 + 5.25, "feet")
  32396. },
  32397. {
  32398. name: "Giant",
  32399. height: math.unit(2000, "feet")
  32400. },
  32401. {
  32402. name: "Mega",
  32403. height: math.unit(371.1, "miles")
  32404. },
  32405. ]
  32406. ))
  32407. characterMakers.push(() => makeCharacter(
  32408. { name: "Jagaz Soulbreaker", species: ["charr"], tags: ["anthro"] },
  32409. {
  32410. front: {
  32411. height: math.unit(2, "meters"),
  32412. weight: math.unit(350, "kg"),
  32413. name: "Front",
  32414. image: {
  32415. source: "./media/characters/jagaz-soulbreaker/front.svg",
  32416. extra: 898 / 838,
  32417. bottom: 9 / 907
  32418. }
  32419. },
  32420. },
  32421. [
  32422. {
  32423. name: "Micro",
  32424. height: math.unit(8, "meters")
  32425. },
  32426. {
  32427. name: "Normal",
  32428. height: math.unit(50, "meters"),
  32429. default: true
  32430. },
  32431. {
  32432. name: "Macro",
  32433. height: math.unit(500, "meters")
  32434. },
  32435. ]
  32436. ))
  32437. characterMakers.push(() => makeCharacter(
  32438. { name: "Khardesh", species: ["dragon"], tags: ["anthro"] },
  32439. {
  32440. front: {
  32441. height: math.unit(6 + 6 / 12, "feet"),
  32442. name: "Front",
  32443. image: {
  32444. source: "./media/characters/khardesh/front.svg",
  32445. extra: 1788/1596,
  32446. bottom: 66/1854
  32447. }
  32448. },
  32449. back: {
  32450. height: math.unit(6 + 6 / 12, "feet"),
  32451. name: "Back",
  32452. image: {
  32453. source: "./media/characters/khardesh/back.svg",
  32454. extra: 1781/1584,
  32455. bottom: 68/1849
  32456. }
  32457. },
  32458. },
  32459. [
  32460. {
  32461. name: "Normal",
  32462. height: math.unit(6 + 6 / 12, "feet"),
  32463. default: true
  32464. },
  32465. {
  32466. name: "Normal+",
  32467. height: math.unit(4, "meters")
  32468. },
  32469. {
  32470. name: "Macro",
  32471. height: math.unit(50, "meters")
  32472. },
  32473. {
  32474. name: "Macro+",
  32475. height: math.unit(100, "meters")
  32476. },
  32477. {
  32478. name: "Megamacro",
  32479. height: math.unit(20, "km")
  32480. },
  32481. ]
  32482. ))
  32483. characterMakers.push(() => makeCharacter(
  32484. { name: "Kosho", species: ["kirin"], tags: ["anthro"] },
  32485. {
  32486. front: {
  32487. height: math.unit(6, "feet"),
  32488. weight: math.unit(150, "lb"),
  32489. name: "Front",
  32490. image: {
  32491. source: "./media/characters/kosho/front.svg",
  32492. extra: 1847 / 1847,
  32493. bottom: 86 / 1933
  32494. }
  32495. },
  32496. },
  32497. [
  32498. {
  32499. name: "Second-stage micro",
  32500. height: math.unit(0.5, "inches")
  32501. },
  32502. {
  32503. name: "First-stage micro",
  32504. height: math.unit(6, "inches")
  32505. },
  32506. {
  32507. name: "Normal",
  32508. height: math.unit(6, "feet"),
  32509. default: true
  32510. },
  32511. {
  32512. name: "First-stage macro",
  32513. height: math.unit(72, "feet")
  32514. },
  32515. {
  32516. name: "Second-stage macro",
  32517. height: math.unit(864, "feet")
  32518. },
  32519. ]
  32520. ))
  32521. characterMakers.push(() => makeCharacter(
  32522. { name: "Hydra", species: ["frog"], tags: ["anthro"] },
  32523. {
  32524. normal: {
  32525. height: math.unit(4 + 6 / 12, "feet"),
  32526. name: "Normal",
  32527. image: {
  32528. source: "./media/characters/hydra/normal.svg",
  32529. extra: 2833 / 2634,
  32530. bottom: 68 / 2901
  32531. }
  32532. },
  32533. smol: {
  32534. height: math.unit(0.705, "inches"),
  32535. name: "Smol",
  32536. image: {
  32537. source: "./media/characters/hydra/smol.svg",
  32538. extra: 2715 / 2540,
  32539. bottom: 0 / 2715
  32540. }
  32541. },
  32542. },
  32543. [
  32544. {
  32545. name: "Normal",
  32546. height: math.unit(4 + 6 / 12, "feet"),
  32547. default: true
  32548. }
  32549. ]
  32550. ))
  32551. characterMakers.push(() => makeCharacter(
  32552. { name: "Daz", species: ["ant"], tags: ["anthro"] },
  32553. {
  32554. front: {
  32555. height: math.unit(0.6, "cm"),
  32556. name: "Front",
  32557. image: {
  32558. source: "./media/characters/daz/front.svg",
  32559. extra: 1682 / 1164,
  32560. bottom: 42 / 1724
  32561. }
  32562. },
  32563. },
  32564. [
  32565. {
  32566. name: "Normal",
  32567. height: math.unit(0.6, "cm"),
  32568. default: true
  32569. },
  32570. ]
  32571. ))
  32572. characterMakers.push(() => makeCharacter(
  32573. { name: "Theo (Pangolin)", species: ["pangolin"], tags: ["anthro"] },
  32574. {
  32575. front: {
  32576. height: math.unit(6, "feet"),
  32577. weight: math.unit(235, "lb"),
  32578. name: "Front",
  32579. image: {
  32580. source: "./media/characters/theo-pangolin/front.svg",
  32581. extra: 1996 / 1969,
  32582. bottom: 115 / 2111
  32583. }
  32584. },
  32585. back: {
  32586. height: math.unit(6, "feet"),
  32587. weight: math.unit(235, "lb"),
  32588. name: "Back",
  32589. image: {
  32590. source: "./media/characters/theo-pangolin/back.svg",
  32591. extra: 1979 / 1979,
  32592. bottom: 40 / 2019
  32593. }
  32594. },
  32595. feral: {
  32596. height: math.unit(2, "feet"),
  32597. weight: math.unit(30, "lb"),
  32598. name: "Feral",
  32599. image: {
  32600. source: "./media/characters/theo-pangolin/feral.svg",
  32601. extra: 803 / 791,
  32602. bottom: 181 / 984
  32603. }
  32604. },
  32605. footFive: {
  32606. height: math.unit(1.43, "feet"),
  32607. name: "Foot (Five Toes)",
  32608. image: {
  32609. source: "./media/characters/theo-pangolin/foot-five.svg"
  32610. }
  32611. },
  32612. footFour: {
  32613. height: math.unit(1.43, "feet"),
  32614. name: "Foot (Four Toes)",
  32615. image: {
  32616. source: "./media/characters/theo-pangolin/foot-four.svg"
  32617. }
  32618. },
  32619. handFour: {
  32620. height: math.unit(0.81, "feet"),
  32621. name: "Hand (Four Fingers)",
  32622. image: {
  32623. source: "./media/characters/theo-pangolin/hand-four.svg"
  32624. }
  32625. },
  32626. handThree: {
  32627. height: math.unit(0.81, "feet"),
  32628. name: "Hand (Three Fingers)",
  32629. image: {
  32630. source: "./media/characters/theo-pangolin/hand-three.svg"
  32631. }
  32632. },
  32633. headFront: {
  32634. height: math.unit(1.37, "feet"),
  32635. name: "Head (Front)",
  32636. image: {
  32637. source: "./media/characters/theo-pangolin/head-front.svg"
  32638. }
  32639. },
  32640. headSide: {
  32641. height: math.unit(1.43, "feet"),
  32642. name: "Head (Side)",
  32643. image: {
  32644. source: "./media/characters/theo-pangolin/head-side.svg"
  32645. }
  32646. },
  32647. tongue: {
  32648. height: math.unit(2.29, "feet"),
  32649. name: "Tongue",
  32650. image: {
  32651. source: "./media/characters/theo-pangolin/tongue.svg"
  32652. }
  32653. },
  32654. },
  32655. [
  32656. {
  32657. name: "Normal",
  32658. height: math.unit(6, "feet")
  32659. },
  32660. {
  32661. name: "Macro",
  32662. height: math.unit(400, "feet"),
  32663. default: true
  32664. },
  32665. ]
  32666. ))
  32667. characterMakers.push(() => makeCharacter(
  32668. { name: "Renée", species: ["mouse"], tags: ["anthro"] },
  32669. {
  32670. front: {
  32671. height: math.unit(6, "inches"),
  32672. weight: math.unit(0.036, "kg"),
  32673. name: "Front",
  32674. image: {
  32675. source: "./media/characters/renée/front.svg",
  32676. extra: 900 / 886,
  32677. bottom: 8 / 908
  32678. }
  32679. },
  32680. },
  32681. [
  32682. {
  32683. name: "Nano",
  32684. height: math.unit(1, "nm")
  32685. },
  32686. {
  32687. name: "Micro",
  32688. height: math.unit(1, "mm")
  32689. },
  32690. {
  32691. name: "Normal",
  32692. height: math.unit(6, "inches")
  32693. },
  32694. {
  32695. name: "Macro",
  32696. height: math.unit(2000, "feet"),
  32697. default: true
  32698. },
  32699. {
  32700. name: "Megamacro",
  32701. height: math.unit(2, "km")
  32702. },
  32703. {
  32704. name: "Gigamacro",
  32705. height: math.unit(2000, "km")
  32706. },
  32707. {
  32708. name: "Teramacro",
  32709. height: math.unit(250000, "km")
  32710. },
  32711. ]
  32712. ))
  32713. characterMakers.push(() => makeCharacter(
  32714. { name: "Caledvwlch", species: ["unicorn"], tags: ["anthro"] },
  32715. {
  32716. front: {
  32717. height: math.unit(4, "meters"),
  32718. weight: math.unit(150, "kg"),
  32719. name: "Front",
  32720. image: {
  32721. source: "./media/characters/caledvwlch/front.svg",
  32722. extra: 1757/1537,
  32723. bottom: 31/1788
  32724. }
  32725. },
  32726. side: {
  32727. height: math.unit(4, "meters"),
  32728. weight: math.unit(150, "kg"),
  32729. name: "Side",
  32730. image: {
  32731. source: "./media/characters/caledvwlch/side.svg",
  32732. extra: 1605 / 1536,
  32733. bottom: 31 / 1636
  32734. }
  32735. },
  32736. back: {
  32737. height: math.unit(4, "meters"),
  32738. weight: math.unit(150, "kg"),
  32739. name: "Back",
  32740. image: {
  32741. source: "./media/characters/caledvwlch/back.svg",
  32742. extra: 1635 / 1565,
  32743. bottom: 27 / 1662
  32744. }
  32745. },
  32746. },
  32747. [
  32748. {
  32749. name: "\"Incognito\"",
  32750. height: math.unit(4, "meters")
  32751. },
  32752. {
  32753. name: "Small rampage",
  32754. height: math.unit(600, "meters")
  32755. },
  32756. {
  32757. name: "Mega",
  32758. height: math.unit(30, "km")
  32759. },
  32760. {
  32761. name: "Home-size",
  32762. height: math.unit(50, "km"),
  32763. default: true
  32764. },
  32765. {
  32766. name: "Giga",
  32767. height: math.unit(300, "km")
  32768. },
  32769. {
  32770. name: "Lounging",
  32771. height: math.unit(11000, "km")
  32772. },
  32773. {
  32774. name: "Planet snacking",
  32775. height: math.unit(2000000, "km")
  32776. },
  32777. ]
  32778. ))
  32779. characterMakers.push(() => makeCharacter(
  32780. { name: "Sapphire Svell", species: ["dragon"], tags: ["anthro"] },
  32781. {
  32782. front: {
  32783. height: math.unit(6, "feet"),
  32784. weight: math.unit(215, "lb"),
  32785. name: "Front",
  32786. image: {
  32787. source: "./media/characters/sapphire-svell/front.svg",
  32788. extra: 495 / 455,
  32789. bottom: 20 / 515
  32790. }
  32791. },
  32792. back: {
  32793. height: math.unit(6, "feet"),
  32794. weight: math.unit(216, "lb"),
  32795. name: "Back",
  32796. image: {
  32797. source: "./media/characters/sapphire-svell/back.svg",
  32798. extra: 497 / 477,
  32799. bottom: 7 / 504
  32800. }
  32801. },
  32802. maw: {
  32803. height: math.unit(1.57, "feet"),
  32804. name: "Maw",
  32805. image: {
  32806. source: "./media/characters/sapphire-svell/maw.svg"
  32807. }
  32808. },
  32809. foot: {
  32810. height: math.unit(1.07, "feet"),
  32811. name: "Foot",
  32812. image: {
  32813. source: "./media/characters/sapphire-svell/foot.svg"
  32814. }
  32815. },
  32816. toering: {
  32817. height: math.unit(1.7, "inch"),
  32818. name: "Toering",
  32819. image: {
  32820. source: "./media/characters/sapphire-svell/toering.svg"
  32821. }
  32822. },
  32823. },
  32824. [
  32825. {
  32826. name: "Normal",
  32827. height: math.unit(300, "feet"),
  32828. default: true
  32829. },
  32830. {
  32831. name: "Augmented",
  32832. height: math.unit(1250, "feet")
  32833. },
  32834. {
  32835. name: "Unleashed",
  32836. height: math.unit(3000, "feet")
  32837. },
  32838. ]
  32839. ))
  32840. characterMakers.push(() => makeCharacter(
  32841. { name: "Glitch Flux", species: ["wolf"], tags: ["feral"] },
  32842. {
  32843. side: {
  32844. height: math.unit(2 + 3 / 12, "feet"),
  32845. weight: math.unit(110, "lb"),
  32846. name: "Side",
  32847. image: {
  32848. source: "./media/characters/glitch-flux/side.svg",
  32849. extra: 997 / 805,
  32850. bottom: 20 / 1017
  32851. }
  32852. },
  32853. },
  32854. [
  32855. {
  32856. name: "Normal",
  32857. height: math.unit(2 + 3 / 12, "feet"),
  32858. default: true
  32859. },
  32860. ]
  32861. ))
  32862. characterMakers.push(() => makeCharacter(
  32863. { name: "Mid", species: ["cat"], tags: ["anthro"] },
  32864. {
  32865. front: {
  32866. height: math.unit(4, "meters"),
  32867. name: "Front",
  32868. image: {
  32869. source: "./media/characters/mid/front.svg",
  32870. extra: 507 / 476,
  32871. bottom: 17 / 524
  32872. }
  32873. },
  32874. back: {
  32875. height: math.unit(4, "meters"),
  32876. name: "Back",
  32877. image: {
  32878. source: "./media/characters/mid/back.svg",
  32879. extra: 519 / 487,
  32880. bottom: 7 / 526
  32881. }
  32882. },
  32883. stuck: {
  32884. height: math.unit(2.2, "meters"),
  32885. name: "Stuck",
  32886. image: {
  32887. source: "./media/characters/mid/stuck.svg",
  32888. extra: 1951 / 1869,
  32889. bottom: 88 / 2039
  32890. }
  32891. }
  32892. },
  32893. [
  32894. {
  32895. name: "Normal",
  32896. height: math.unit(4, "meters"),
  32897. default: true
  32898. },
  32899. {
  32900. name: "Big",
  32901. height: math.unit(10, "meters")
  32902. },
  32903. {
  32904. name: "Macro",
  32905. height: math.unit(800, "meters")
  32906. },
  32907. {
  32908. name: "Megamacro",
  32909. height: math.unit(100, "km")
  32910. },
  32911. {
  32912. name: "Overgrown",
  32913. height: math.unit(1, "parsec")
  32914. },
  32915. ]
  32916. ))
  32917. characterMakers.push(() => makeCharacter(
  32918. { name: "Iris", species: ["tiger"], tags: ["anthro"] },
  32919. {
  32920. front: {
  32921. height: math.unit(2.5, "meters"),
  32922. weight: math.unit(225, "kg"),
  32923. name: "Front",
  32924. image: {
  32925. source: "./media/characters/iris/front.svg",
  32926. extra: 3348 / 3251,
  32927. bottom: 205 / 3553
  32928. }
  32929. },
  32930. maw: {
  32931. height: math.unit(0.56, "meter"),
  32932. name: "Maw",
  32933. image: {
  32934. source: "./media/characters/iris/maw.svg"
  32935. }
  32936. },
  32937. },
  32938. [
  32939. {
  32940. name: "Mewter cat",
  32941. height: math.unit(1.2, "meters")
  32942. },
  32943. {
  32944. name: "Normal",
  32945. height: math.unit(2.5, "meters"),
  32946. default: true
  32947. },
  32948. {
  32949. name: "Minimacro",
  32950. height: math.unit(18, "feet")
  32951. },
  32952. {
  32953. name: "Macro",
  32954. height: math.unit(140, "feet")
  32955. },
  32956. {
  32957. name: "Macro+",
  32958. height: math.unit(180, "meters")
  32959. },
  32960. {
  32961. name: "Megamacro",
  32962. height: math.unit(2746, "meters")
  32963. },
  32964. ]
  32965. ))
  32966. characterMakers.push(() => makeCharacter(
  32967. { name: "Axel", species: ["raven"], tags: ["anthro"] },
  32968. {
  32969. front: {
  32970. height: math.unit(6, "feet"),
  32971. weight: math.unit(135, "lb"),
  32972. name: "Front",
  32973. image: {
  32974. source: "./media/characters/axel/front.svg",
  32975. extra: 908 / 908,
  32976. bottom: 58 / 966
  32977. }
  32978. },
  32979. side: {
  32980. height: math.unit(6, "feet"),
  32981. weight: math.unit(135, "lb"),
  32982. name: "Side",
  32983. image: {
  32984. source: "./media/characters/axel/side.svg",
  32985. extra: 958 / 958,
  32986. bottom: 11 / 969
  32987. }
  32988. },
  32989. back: {
  32990. height: math.unit(6, "feet"),
  32991. weight: math.unit(135, "lb"),
  32992. name: "Back",
  32993. image: {
  32994. source: "./media/characters/axel/back.svg",
  32995. extra: 887 / 887,
  32996. bottom: 34 / 921
  32997. }
  32998. },
  32999. head: {
  33000. height: math.unit(1.07, "feet"),
  33001. name: "Head",
  33002. image: {
  33003. source: "./media/characters/axel/head.svg"
  33004. }
  33005. },
  33006. beak: {
  33007. height: math.unit(1.4, "feet"),
  33008. name: "Beak",
  33009. image: {
  33010. source: "./media/characters/axel/beak.svg"
  33011. }
  33012. },
  33013. beakSide: {
  33014. height: math.unit(1.4, "feet"),
  33015. name: "Beak Side",
  33016. image: {
  33017. source: "./media/characters/axel/beak-side.svg"
  33018. }
  33019. },
  33020. sheath: {
  33021. height: math.unit(0.5, "feet"),
  33022. name: "Sheath",
  33023. image: {
  33024. source: "./media/characters/axel/sheath.svg"
  33025. }
  33026. },
  33027. dick: {
  33028. height: math.unit(0.98, "feet"),
  33029. name: "Dick",
  33030. image: {
  33031. source: "./media/characters/axel/dick.svg"
  33032. }
  33033. },
  33034. },
  33035. [
  33036. {
  33037. name: "Macro",
  33038. height: math.unit(68, "meters"),
  33039. default: true
  33040. },
  33041. ]
  33042. ))
  33043. characterMakers.push(() => makeCharacter(
  33044. { name: "Joanna", species: ["wolf"], tags: ["anthro"] },
  33045. {
  33046. front: {
  33047. height: math.unit(3.5, "meters"),
  33048. weight: math.unit(1200, "kg"),
  33049. name: "Front",
  33050. image: {
  33051. source: "./media/characters/joanna/front.svg",
  33052. extra: 1596 / 1488,
  33053. bottom: 29 / 1625
  33054. }
  33055. },
  33056. back: {
  33057. height: math.unit(3.5, "meters"),
  33058. weight: math.unit(1200, "kg"),
  33059. name: "Back",
  33060. image: {
  33061. source: "./media/characters/joanna/back.svg",
  33062. extra: 1594 / 1495,
  33063. bottom: 26 / 1620
  33064. }
  33065. },
  33066. frontShorts: {
  33067. height: math.unit(3.5, "meters"),
  33068. weight: math.unit(1200, "kg"),
  33069. name: "Front (Shorts)",
  33070. image: {
  33071. source: "./media/characters/joanna/front-shorts.svg",
  33072. extra: 1596 / 1488,
  33073. bottom: 29 / 1625
  33074. }
  33075. },
  33076. frontBiker: {
  33077. height: math.unit(3.5, "meters"),
  33078. weight: math.unit(1200, "kg"),
  33079. name: "Front (Biker)",
  33080. image: {
  33081. source: "./media/characters/joanna/front-biker.svg",
  33082. extra: 1596 / 1488,
  33083. bottom: 29 / 1625
  33084. }
  33085. },
  33086. backBiker: {
  33087. height: math.unit(3.5, "meters"),
  33088. weight: math.unit(1200, "kg"),
  33089. name: "Back (Biker)",
  33090. image: {
  33091. source: "./media/characters/joanna/back-biker.svg",
  33092. extra: 1594 / 1495,
  33093. bottom: 88 / 1682
  33094. }
  33095. },
  33096. bikeLeft: {
  33097. height: math.unit(2.4, "meters"),
  33098. weight: math.unit(1600, "kg"),
  33099. name: "Bike (Left)",
  33100. image: {
  33101. source: "./media/characters/joanna/bike-left.svg",
  33102. extra: 720 / 720,
  33103. bottom: 8 / 728
  33104. }
  33105. },
  33106. bikeRight: {
  33107. height: math.unit(2.4, "meters"),
  33108. weight: math.unit(1600, "kg"),
  33109. name: "Bike (Right)",
  33110. image: {
  33111. source: "./media/characters/joanna/bike-right.svg",
  33112. extra: 720 / 720,
  33113. bottom: 8 / 728
  33114. }
  33115. },
  33116. },
  33117. [
  33118. {
  33119. name: "Incognito",
  33120. height: math.unit(3.5, "meters")
  33121. },
  33122. {
  33123. name: "Casual Big",
  33124. height: math.unit(200, "meters")
  33125. },
  33126. {
  33127. name: "Macro",
  33128. height: math.unit(600, "meters")
  33129. },
  33130. {
  33131. name: "Original",
  33132. height: math.unit(20, "km"),
  33133. default: true
  33134. },
  33135. {
  33136. name: "Giga",
  33137. height: math.unit(400, "km")
  33138. },
  33139. {
  33140. name: "Lounging",
  33141. height: math.unit(1500, "km")
  33142. },
  33143. {
  33144. name: "Planetary",
  33145. height: math.unit(200000, "km")
  33146. },
  33147. ]
  33148. ))
  33149. characterMakers.push(() => makeCharacter(
  33150. { name: "Hugo Sigil", species: ["cat"], tags: ["anthro"] },
  33151. {
  33152. front: {
  33153. height: math.unit(6, "feet"),
  33154. weight: math.unit(150, "lb"),
  33155. name: "Front",
  33156. image: {
  33157. source: "./media/characters/hugo-sigil/front.svg",
  33158. extra: 522 / 500,
  33159. bottom: 2 / 524
  33160. }
  33161. },
  33162. back: {
  33163. height: math.unit(6, "feet"),
  33164. weight: math.unit(150, "lb"),
  33165. name: "Back",
  33166. image: {
  33167. source: "./media/characters/hugo-sigil/back.svg",
  33168. extra: 519 / 495,
  33169. bottom: 5 / 524
  33170. }
  33171. },
  33172. maw: {
  33173. height: math.unit(1.4, "feet"),
  33174. weight: math.unit(150, "lb"),
  33175. name: "Maw",
  33176. image: {
  33177. source: "./media/characters/hugo-sigil/maw.svg"
  33178. }
  33179. },
  33180. feet: {
  33181. height: math.unit(1.56, "feet"),
  33182. weight: math.unit(150, "lb"),
  33183. name: "Feet",
  33184. image: {
  33185. source: "./media/characters/hugo-sigil/feet.svg",
  33186. extra: 177 / 177,
  33187. bottom: 12 / 189
  33188. }
  33189. },
  33190. },
  33191. [
  33192. {
  33193. name: "Normal",
  33194. height: math.unit(6, "feet")
  33195. },
  33196. {
  33197. name: "Macro",
  33198. height: math.unit(200, "feet"),
  33199. default: true
  33200. },
  33201. ]
  33202. ))
  33203. characterMakers.push(() => makeCharacter(
  33204. { name: "Peri", species: ["husky"], tags: ["anthro"] },
  33205. {
  33206. front: {
  33207. height: math.unit(6, "feet"),
  33208. weight: math.unit(150, "lb"),
  33209. name: "Front",
  33210. image: {
  33211. source: "./media/characters/peri/front.svg",
  33212. extra: 2354 / 2233,
  33213. bottom: 49 / 2403
  33214. }
  33215. },
  33216. },
  33217. [
  33218. {
  33219. name: "Really Small",
  33220. height: math.unit(1, "nm")
  33221. },
  33222. {
  33223. name: "Micro",
  33224. height: math.unit(4, "inches")
  33225. },
  33226. {
  33227. name: "Normal",
  33228. height: math.unit(7, "inches"),
  33229. default: true
  33230. },
  33231. {
  33232. name: "Macro",
  33233. height: math.unit(400, "feet")
  33234. },
  33235. {
  33236. name: "Megamacro",
  33237. height: math.unit(100, "miles")
  33238. },
  33239. ]
  33240. ))
  33241. characterMakers.push(() => makeCharacter(
  33242. { name: "Issilora", species: ["dragon"], tags: ["anthro"] },
  33243. {
  33244. frontSlim: {
  33245. height: math.unit(7, "feet"),
  33246. name: "Front (Slim)",
  33247. image: {
  33248. source: "./media/characters/issilora/front-slim.svg",
  33249. extra: 529 / 449,
  33250. bottom: 53 / 582
  33251. }
  33252. },
  33253. sideSlim: {
  33254. height: math.unit(7, "feet"),
  33255. name: "Side (Slim)",
  33256. image: {
  33257. source: "./media/characters/issilora/side-slim.svg",
  33258. extra: 570 / 480,
  33259. bottom: 30 / 600
  33260. }
  33261. },
  33262. backSlim: {
  33263. height: math.unit(7, "feet"),
  33264. name: "Back (Slim)",
  33265. image: {
  33266. source: "./media/characters/issilora/back-slim.svg",
  33267. extra: 537 / 455,
  33268. bottom: 46 / 583
  33269. }
  33270. },
  33271. frontBuff: {
  33272. height: math.unit(7, "feet"),
  33273. name: "Front (Buff)",
  33274. image: {
  33275. source: "./media/characters/issilora/front-buff.svg",
  33276. extra: 2310 / 2035,
  33277. bottom: 335 / 2645
  33278. }
  33279. },
  33280. head: {
  33281. height: math.unit(1.94, "feet"),
  33282. name: "Head",
  33283. image: {
  33284. source: "./media/characters/issilora/head.svg"
  33285. }
  33286. },
  33287. },
  33288. [
  33289. {
  33290. name: "Minimum",
  33291. height: math.unit(7, "feet")
  33292. },
  33293. {
  33294. name: "Comfortable",
  33295. height: math.unit(17, "feet")
  33296. },
  33297. {
  33298. name: "Fun Size",
  33299. height: math.unit(47, "feet")
  33300. },
  33301. {
  33302. name: "Natural Macro",
  33303. height: math.unit(137, "feet"),
  33304. default: true
  33305. },
  33306. {
  33307. name: "Maximum Kaiju",
  33308. height: math.unit(397, "feet")
  33309. },
  33310. ]
  33311. ))
  33312. characterMakers.push(() => makeCharacter(
  33313. { name: "Irb'iiritaahn", species: ["uragi'viidorn"], tags: ["taur"] },
  33314. {
  33315. front: {
  33316. height: math.unit(50 + 9/12, "feet"),
  33317. weight: math.unit(32.8, "tons"),
  33318. name: "Front",
  33319. image: {
  33320. source: "./media/characters/irb'iiritaahn/front.svg",
  33321. extra: 1878/1826,
  33322. bottom: 326/2204
  33323. }
  33324. },
  33325. back: {
  33326. height: math.unit(50 + 9/12, "feet"),
  33327. weight: math.unit(32.8, "tons"),
  33328. name: "Back",
  33329. image: {
  33330. source: "./media/characters/irb'iiritaahn/back.svg",
  33331. extra: 2052/2018,
  33332. bottom: 152/2204
  33333. }
  33334. },
  33335. head: {
  33336. height: math.unit(12.86, "feet"),
  33337. name: "Head",
  33338. image: {
  33339. source: "./media/characters/irb'iiritaahn/head.svg"
  33340. }
  33341. },
  33342. maw: {
  33343. height: math.unit(9.66, "feet"),
  33344. name: "Maw",
  33345. image: {
  33346. source: "./media/characters/irb'iiritaahn/maw.svg"
  33347. }
  33348. },
  33349. frontDick: {
  33350. height: math.unit(8.78461, "feet"),
  33351. name: "Front Dick",
  33352. image: {
  33353. source: "./media/characters/irb'iiritaahn/front-dick.svg"
  33354. }
  33355. },
  33356. rearDick: {
  33357. height: math.unit(8.78461, "feet"),
  33358. name: "Rear Dick",
  33359. image: {
  33360. source: "./media/characters/irb'iiritaahn/rear-dick.svg"
  33361. }
  33362. },
  33363. rearDickUnfolded: {
  33364. height: math.unit(8.78, "feet"),
  33365. name: "Rear Dick (Unfolded)",
  33366. image: {
  33367. source: "./media/characters/irb'iiritaahn/rear-dick-unfolded.svg"
  33368. }
  33369. },
  33370. wings: {
  33371. height: math.unit(43, "feet"),
  33372. name: "Wings",
  33373. image: {
  33374. source: "./media/characters/irb'iiritaahn/wings.svg"
  33375. }
  33376. },
  33377. },
  33378. [
  33379. {
  33380. name: "Macro",
  33381. height: math.unit(50 + 9/12, "feet"),
  33382. default: true
  33383. },
  33384. ]
  33385. ))
  33386. characterMakers.push(() => makeCharacter(
  33387. { name: "Irbisgreif", species: ["gryphdelphais"], tags: ["anthro"] },
  33388. {
  33389. front: {
  33390. height: math.unit(205, "cm"),
  33391. weight: math.unit(102, "kg"),
  33392. name: "Front",
  33393. image: {
  33394. source: "./media/characters/irbisgreif/front.svg",
  33395. extra: 785/706,
  33396. bottom: 13/798
  33397. }
  33398. },
  33399. back: {
  33400. height: math.unit(205, "cm"),
  33401. weight: math.unit(102, "kg"),
  33402. name: "Back",
  33403. image: {
  33404. source: "./media/characters/irbisgreif/back.svg",
  33405. extra: 713/701,
  33406. bottom: 26/739
  33407. }
  33408. },
  33409. frontDressed: {
  33410. height: math.unit(216, "cm"),
  33411. weight: math.unit(102, "kg"),
  33412. name: "Front-dressed",
  33413. image: {
  33414. source: "./media/characters/irbisgreif/front-dressed.svg",
  33415. extra: 902/776,
  33416. bottom: 14/916
  33417. }
  33418. },
  33419. sideDressed: {
  33420. height: math.unit(195, "cm"),
  33421. weight: math.unit(102, "kg"),
  33422. name: "Side-dressed",
  33423. image: {
  33424. source: "./media/characters/irbisgreif/side-dressed.svg",
  33425. extra: 788/688,
  33426. bottom: 21/809
  33427. }
  33428. },
  33429. backDressed: {
  33430. height: math.unit(216, "cm"),
  33431. weight: math.unit(102, "kg"),
  33432. name: "Back-dressed",
  33433. image: {
  33434. source: "./media/characters/irbisgreif/back-dressed.svg",
  33435. extra: 901/783,
  33436. bottom: 10/911
  33437. }
  33438. },
  33439. dick: {
  33440. height: math.unit(0.49, "feet"),
  33441. name: "Dick",
  33442. image: {
  33443. source: "./media/characters/irbisgreif/dick.svg"
  33444. }
  33445. },
  33446. wingTop: {
  33447. height: math.unit(1.93 , "feet"),
  33448. name: "Wing-top",
  33449. image: {
  33450. source: "./media/characters/irbisgreif/wing-top.svg"
  33451. }
  33452. },
  33453. wingBottom: {
  33454. height: math.unit(1.93 , "feet"),
  33455. name: "Wing-bottom",
  33456. image: {
  33457. source: "./media/characters/irbisgreif/wing-bottom.svg"
  33458. }
  33459. },
  33460. },
  33461. [
  33462. {
  33463. name: "Normal",
  33464. height: math.unit(216, "cm"),
  33465. default: true
  33466. },
  33467. ]
  33468. ))
  33469. characterMakers.push(() => makeCharacter(
  33470. { name: "Pride", species: ["skunk"], tags: ["anthro"] },
  33471. {
  33472. front: {
  33473. height: math.unit(6, "feet"),
  33474. weight: math.unit(150, "lb"),
  33475. name: "Front",
  33476. image: {
  33477. source: "./media/characters/pride/front.svg",
  33478. extra: 1299/1230,
  33479. bottom: 18/1317
  33480. }
  33481. },
  33482. },
  33483. [
  33484. {
  33485. name: "Normal",
  33486. height: math.unit(7, "feet")
  33487. },
  33488. {
  33489. name: "Mini-macro",
  33490. height: math.unit(11, "feet")
  33491. },
  33492. {
  33493. name: "Macro",
  33494. height: math.unit(15, "meters"),
  33495. default: true
  33496. },
  33497. {
  33498. name: "Macro+",
  33499. height: math.unit(40, "meters")
  33500. },
  33501. ]
  33502. ))
  33503. characterMakers.push(() => makeCharacter(
  33504. { name: "Vaelophys Nyx", species: ["maned-wolf"], tags: ["anthro", "feral"] },
  33505. {
  33506. front: {
  33507. height: math.unit(4 + 2 / 12, "feet"),
  33508. weight: math.unit(95, "lb"),
  33509. name: "Front",
  33510. image: {
  33511. source: "./media/characters/vaelophis-nyx/front.svg",
  33512. extra: 2532/2330,
  33513. bottom: 0/2532
  33514. }
  33515. },
  33516. back: {
  33517. height: math.unit(4 + 2 / 12, "feet"),
  33518. weight: math.unit(95, "lb"),
  33519. name: "Back",
  33520. image: {
  33521. source: "./media/characters/vaelophis-nyx/back.svg",
  33522. extra: 2484/2361,
  33523. bottom: 0/2484
  33524. }
  33525. },
  33526. feralSide: {
  33527. height: math.unit(2 + 1/12, "feet"),
  33528. weight: math.unit(20, "lb"),
  33529. name: "Feral (Side)",
  33530. image: {
  33531. source: "./media/characters/vaelophis-nyx/feral-side.svg",
  33532. extra: 1721/1581,
  33533. bottom: 70/1791
  33534. }
  33535. },
  33536. feralLazing: {
  33537. height: math.unit(1.08, "feet"),
  33538. weight: math.unit(20, "lb"),
  33539. name: "Feral (Lazing)",
  33540. image: {
  33541. source: "./media/characters/vaelophis-nyx/feral-lazing.svg",
  33542. extra: 822/822,
  33543. bottom: 248/1070
  33544. }
  33545. },
  33546. ear: {
  33547. height: math.unit(0.416, "feet"),
  33548. name: "Ear",
  33549. image: {
  33550. source: "./media/characters/vaelophis-nyx/ear.svg"
  33551. }
  33552. },
  33553. eye: {
  33554. height: math.unit(0.0748, "feet"),
  33555. name: "Eye",
  33556. image: {
  33557. source: "./media/characters/vaelophis-nyx/eye.svg"
  33558. }
  33559. },
  33560. mouth: {
  33561. height: math.unit(0.378, "feet"),
  33562. name: "Mouth",
  33563. image: {
  33564. source: "./media/characters/vaelophis-nyx/mouth.svg"
  33565. }
  33566. },
  33567. spade: {
  33568. height: math.unit(0.55, "feet"),
  33569. name: "Spade",
  33570. image: {
  33571. source: "./media/characters/vaelophis-nyx/spade.svg"
  33572. }
  33573. },
  33574. },
  33575. [
  33576. {
  33577. name: "Normal",
  33578. height: math.unit(4 + 2/12, "feet"),
  33579. default: true
  33580. },
  33581. ]
  33582. ))
  33583. characterMakers.push(() => makeCharacter(
  33584. { name: "Flux", species: ["luxray"], tags: ["anthro", "feral"] },
  33585. {
  33586. front: {
  33587. height: math.unit(7, "feet"),
  33588. weight: math.unit(231, "lb"),
  33589. name: "Front",
  33590. image: {
  33591. source: "./media/characters/flux/front.svg",
  33592. extra: 919/871,
  33593. bottom: 0/919
  33594. }
  33595. },
  33596. back: {
  33597. height: math.unit(7, "feet"),
  33598. weight: math.unit(231, "lb"),
  33599. name: "Back",
  33600. image: {
  33601. source: "./media/characters/flux/back.svg",
  33602. extra: 1040/992,
  33603. bottom: 0/1040
  33604. }
  33605. },
  33606. frontDressed: {
  33607. height: math.unit(7, "feet"),
  33608. weight: math.unit(231, "lb"),
  33609. name: "Front (Dressed)",
  33610. image: {
  33611. source: "./media/characters/flux/front-dressed.svg",
  33612. extra: 919/871,
  33613. bottom: 0/919
  33614. }
  33615. },
  33616. feralSide: {
  33617. height: math.unit(5, "feet"),
  33618. weight: math.unit(150, "lb"),
  33619. name: "Feral (Side)",
  33620. image: {
  33621. source: "./media/characters/flux/feral-side.svg",
  33622. extra: 598/528,
  33623. bottom: 28/626
  33624. }
  33625. },
  33626. head: {
  33627. height: math.unit(1.585, "feet"),
  33628. name: "Head",
  33629. image: {
  33630. source: "./media/characters/flux/head.svg"
  33631. }
  33632. },
  33633. headSide: {
  33634. height: math.unit(1.74, "feet"),
  33635. name: "Head (Side)",
  33636. image: {
  33637. source: "./media/characters/flux/head-side.svg"
  33638. }
  33639. },
  33640. headSideFire: {
  33641. height: math.unit(1.76, "feet"),
  33642. name: "Head (Side, Fire)",
  33643. image: {
  33644. source: "./media/characters/flux/head-side-fire.svg"
  33645. }
  33646. },
  33647. },
  33648. [
  33649. {
  33650. name: "Normal",
  33651. height: math.unit(7, "feet"),
  33652. default: true
  33653. },
  33654. ]
  33655. ))
  33656. characterMakers.push(() => makeCharacter(
  33657. { name: "Ulfra Lupae", species: ["wolf"], tags: ["anthro"] },
  33658. {
  33659. front: {
  33660. height: math.unit(9, "feet"),
  33661. weight: math.unit(1012, "lb"),
  33662. name: "Front",
  33663. image: {
  33664. source: "./media/characters/ulfra-lupae/front.svg",
  33665. extra: 1083/1011,
  33666. bottom: 67/1150
  33667. }
  33668. },
  33669. },
  33670. [
  33671. {
  33672. name: "Micro",
  33673. height: math.unit(6, "inches")
  33674. },
  33675. {
  33676. name: "Socializing",
  33677. height: math.unit(6 + 5/12, "feet")
  33678. },
  33679. {
  33680. name: "Normal",
  33681. height: math.unit(9, "feet"),
  33682. default: true
  33683. },
  33684. {
  33685. name: "Macro",
  33686. height: math.unit(150, "feet")
  33687. },
  33688. ]
  33689. ))
  33690. characterMakers.push(() => makeCharacter(
  33691. { name: "Timber", species: ["canine"], tags: ["anthro"] },
  33692. {
  33693. front: {
  33694. height: math.unit(5 + 2/12, "feet"),
  33695. weight: math.unit(120, "lb"),
  33696. name: "Front",
  33697. image: {
  33698. source: "./media/characters/timber/front.svg",
  33699. extra: 2814/2705,
  33700. bottom: 181/2995
  33701. }
  33702. },
  33703. },
  33704. [
  33705. {
  33706. name: "Normal",
  33707. height: math.unit(5 + 2/12, "feet"),
  33708. default: true
  33709. },
  33710. ]
  33711. ))
  33712. characterMakers.push(() => makeCharacter(
  33713. { name: "Nicki", species: ["goat", "wolf", "rabbit"], tags: ["anthro"] },
  33714. {
  33715. front: {
  33716. height: math.unit(9, "feet"),
  33717. name: "Front",
  33718. image: {
  33719. source: "./media/characters/nicki/front.svg",
  33720. extra: 1240/990,
  33721. bottom: 45/1285
  33722. },
  33723. form: "anthro",
  33724. default: true
  33725. },
  33726. side: {
  33727. height: math.unit(9, "feet"),
  33728. name: "Side",
  33729. image: {
  33730. source: "./media/characters/nicki/side.svg",
  33731. extra: 1047/973,
  33732. bottom: 61/1108
  33733. },
  33734. form: "anthro"
  33735. },
  33736. back: {
  33737. height: math.unit(9, "feet"),
  33738. name: "Back",
  33739. image: {
  33740. source: "./media/characters/nicki/back.svg",
  33741. extra: 1006/965,
  33742. bottom: 39/1045
  33743. },
  33744. form: "anthro"
  33745. },
  33746. taur: {
  33747. height: math.unit(15, "feet"),
  33748. name: "Taur",
  33749. image: {
  33750. source: "./media/characters/nicki/taur.svg",
  33751. extra: 1592/1347,
  33752. bottom: 0/1592
  33753. },
  33754. form: "taur",
  33755. default: true
  33756. },
  33757. },
  33758. [
  33759. {
  33760. name: "Normal",
  33761. height: math.unit(9, "feet"),
  33762. form: "anthro",
  33763. default: true
  33764. },
  33765. {
  33766. name: "Normal",
  33767. height: math.unit(15, "feet"),
  33768. form: "taur",
  33769. default: true
  33770. }
  33771. ],
  33772. {
  33773. "anthro": {
  33774. name: "Anthro",
  33775. default: true
  33776. },
  33777. "taur": {
  33778. name: "Taur"
  33779. }
  33780. }
  33781. ))
  33782. characterMakers.push(() => makeCharacter(
  33783. { name: "Lee", species: ["monster"], tags: ["anthro"] },
  33784. {
  33785. front: {
  33786. height: math.unit(7 + 10/12, "feet"),
  33787. weight: math.unit(3.5, "tons"),
  33788. name: "Front",
  33789. image: {
  33790. source: "./media/characters/lee/front.svg",
  33791. extra: 1773/1615,
  33792. bottom: 86/1859
  33793. }
  33794. },
  33795. hand: {
  33796. height: math.unit(1.78, "feet"),
  33797. name: "Hand",
  33798. image: {
  33799. source: "./media/characters/lee/hand.svg"
  33800. }
  33801. },
  33802. maw: {
  33803. height: math.unit(1.18, "feet"),
  33804. name: "Maw",
  33805. image: {
  33806. source: "./media/characters/lee/maw.svg"
  33807. }
  33808. },
  33809. },
  33810. [
  33811. {
  33812. name: "Normal",
  33813. height: math.unit(7 + 10/12, "feet"),
  33814. default: true
  33815. },
  33816. ]
  33817. ))
  33818. characterMakers.push(() => makeCharacter(
  33819. { name: "Guti", species: ["lion"], tags: ["anthro", "goo"] },
  33820. {
  33821. front: {
  33822. height: math.unit(9, "feet"),
  33823. name: "Front",
  33824. image: {
  33825. source: "./media/characters/guti/front.svg",
  33826. extra: 4551/4355,
  33827. bottom: 123/4674
  33828. }
  33829. },
  33830. tongue: {
  33831. height: math.unit(1, "feet"),
  33832. name: "Tongue",
  33833. image: {
  33834. source: "./media/characters/guti/tongue.svg"
  33835. }
  33836. },
  33837. paw: {
  33838. height: math.unit(1.18, "feet"),
  33839. name: "Paw",
  33840. image: {
  33841. source: "./media/characters/guti/paw.svg"
  33842. }
  33843. },
  33844. },
  33845. [
  33846. {
  33847. name: "Normal",
  33848. height: math.unit(9, "feet"),
  33849. default: true
  33850. },
  33851. ]
  33852. ))
  33853. characterMakers.push(() => makeCharacter(
  33854. { name: "Vesper", species: ["kitsune"], tags: ["anthro"] },
  33855. {
  33856. side: {
  33857. height: math.unit(5, "meters"),
  33858. name: "Side",
  33859. image: {
  33860. source: "./media/characters/vesper/side.svg",
  33861. extra: 1605/1518,
  33862. bottom: 0/1605
  33863. }
  33864. },
  33865. },
  33866. [
  33867. {
  33868. name: "Small",
  33869. height: math.unit(5, "meters")
  33870. },
  33871. {
  33872. name: "Sage",
  33873. height: math.unit(100, "meters"),
  33874. default: true
  33875. },
  33876. {
  33877. name: "Fun Size",
  33878. height: math.unit(600, "meters")
  33879. },
  33880. {
  33881. name: "Goddess",
  33882. height: math.unit(20000, "km")
  33883. },
  33884. {
  33885. name: "Maximum",
  33886. height: math.unit(5, "galaxies")
  33887. },
  33888. ]
  33889. ))
  33890. characterMakers.push(() => makeCharacter(
  33891. { name: "Gawain", species: ["arcanine"], tags: ["anthro"] },
  33892. {
  33893. front: {
  33894. height: math.unit(6 + 3/12, "feet"),
  33895. weight: math.unit(190, "lb"),
  33896. name: "Front",
  33897. image: {
  33898. source: "./media/characters/gawain/front.svg",
  33899. extra: 2222/2139,
  33900. bottom: 90/2312
  33901. }
  33902. },
  33903. back: {
  33904. height: math.unit(6 + 3/12, "feet"),
  33905. weight: math.unit(190, "lb"),
  33906. name: "Back",
  33907. image: {
  33908. source: "./media/characters/gawain/back.svg",
  33909. extra: 2199/2111,
  33910. bottom: 73/2272
  33911. }
  33912. },
  33913. },
  33914. [
  33915. {
  33916. name: "Normal",
  33917. height: math.unit(6 + 3/12, "feet"),
  33918. default: true
  33919. },
  33920. ]
  33921. ))
  33922. characterMakers.push(() => makeCharacter(
  33923. { name: "Dascalti", species: ["draiger"], tags: ["anthro"] },
  33924. {
  33925. side: {
  33926. height: math.unit(3.5, "meters"),
  33927. weight: math.unit(16000, "lb"),
  33928. name: "Side",
  33929. image: {
  33930. source: "./media/characters/dascalti/side.svg",
  33931. extra: 392/273,
  33932. bottom: 47/439
  33933. }
  33934. },
  33935. breath: {
  33936. height: math.unit(7.4, "feet"),
  33937. name: "Breath",
  33938. image: {
  33939. source: "./media/characters/dascalti/breath.svg"
  33940. }
  33941. },
  33942. fed: {
  33943. height: math.unit(3.6, "meters"),
  33944. weight: math.unit(16000, "lb"),
  33945. name: "Fed",
  33946. image: {
  33947. source: "./media/characters/dascalti/fed.svg",
  33948. extra: 1419/820,
  33949. bottom: 95/1514
  33950. }
  33951. },
  33952. },
  33953. [
  33954. {
  33955. name: "Normal",
  33956. height: math.unit(3.5, "meters"),
  33957. default: true
  33958. },
  33959. ]
  33960. ))
  33961. characterMakers.push(() => makeCharacter(
  33962. { name: "Mauve", species: ["skunk"], tags: ["anthro"] },
  33963. {
  33964. front: {
  33965. height: math.unit(3 + 5/12, "feet"),
  33966. name: "Front",
  33967. image: {
  33968. source: "./media/characters/mauve/front.svg",
  33969. extra: 1126/1033,
  33970. bottom: 65/1191
  33971. }
  33972. },
  33973. side: {
  33974. height: math.unit(3 + 5/12, "feet"),
  33975. name: "Side",
  33976. image: {
  33977. source: "./media/characters/mauve/side.svg",
  33978. extra: 1089/1001,
  33979. bottom: 29/1118
  33980. }
  33981. },
  33982. back: {
  33983. height: math.unit(3 + 5/12, "feet"),
  33984. name: "Back",
  33985. image: {
  33986. source: "./media/characters/mauve/back.svg",
  33987. extra: 1173/1053,
  33988. bottom: 109/1282
  33989. }
  33990. },
  33991. },
  33992. [
  33993. {
  33994. name: "Normal",
  33995. height: math.unit(3 + 5/12, "feet"),
  33996. default: true
  33997. },
  33998. ]
  33999. ))
  34000. characterMakers.push(() => makeCharacter(
  34001. { name: "Carlos", species: ["foxsky"], tags: ["anthro"] },
  34002. {
  34003. front: {
  34004. height: math.unit(6 + 3/12, "feet"),
  34005. weight: math.unit(430, "lb"),
  34006. name: "Front",
  34007. image: {
  34008. source: "./media/characters/carlos/front.svg",
  34009. extra: 1964/1913,
  34010. bottom: 70/2034
  34011. }
  34012. },
  34013. },
  34014. [
  34015. {
  34016. name: "Normal",
  34017. height: math.unit(6 + 3/12, "feet"),
  34018. default: true
  34019. },
  34020. ]
  34021. ))
  34022. characterMakers.push(() => makeCharacter(
  34023. { name: "Jax", species: ["husky"], tags: ["anthro"] },
  34024. {
  34025. back: {
  34026. height: math.unit(5 + 10/12, "feet"),
  34027. weight: math.unit(200, "lb"),
  34028. name: "Back",
  34029. image: {
  34030. source: "./media/characters/jax/back.svg",
  34031. extra: 764/739,
  34032. bottom: 25/789
  34033. }
  34034. },
  34035. },
  34036. [
  34037. {
  34038. name: "Normal",
  34039. height: math.unit(5 + 10/12, "feet"),
  34040. default: true
  34041. },
  34042. ]
  34043. ))
  34044. characterMakers.push(() => makeCharacter(
  34045. { name: "Eikthynir", species: ["deer"], tags: ["anthro"] },
  34046. {
  34047. front: {
  34048. height: math.unit(8, "feet"),
  34049. weight: math.unit(250, "lb"),
  34050. name: "Front",
  34051. image: {
  34052. source: "./media/characters/eikthynir/front.svg",
  34053. extra: 1332/1166,
  34054. bottom: 82/1414
  34055. }
  34056. },
  34057. back: {
  34058. height: math.unit(8, "feet"),
  34059. weight: math.unit(250, "lb"),
  34060. name: "Back",
  34061. image: {
  34062. source: "./media/characters/eikthynir/back.svg",
  34063. extra: 1342/1190,
  34064. bottom: 19/1361
  34065. }
  34066. },
  34067. dick: {
  34068. height: math.unit(2.35, "feet"),
  34069. name: "Dick",
  34070. image: {
  34071. source: "./media/characters/eikthynir/dick.svg"
  34072. }
  34073. },
  34074. },
  34075. [
  34076. {
  34077. name: "Normal",
  34078. height: math.unit(8, "feet"),
  34079. default: true
  34080. },
  34081. ]
  34082. ))
  34083. characterMakers.push(() => makeCharacter(
  34084. { name: "Zlmos", species: ["dragon"], tags: ["anthro"] },
  34085. {
  34086. front: {
  34087. height: math.unit(99, "meters"),
  34088. weight: math.unit(13000, "tons"),
  34089. name: "Front",
  34090. image: {
  34091. source: "./media/characters/zlmos/front.svg",
  34092. extra: 2202/1992,
  34093. bottom: 315/2517
  34094. }
  34095. },
  34096. },
  34097. [
  34098. {
  34099. name: "Macro",
  34100. height: math.unit(99, "meters"),
  34101. default: true
  34102. },
  34103. ]
  34104. ))
  34105. characterMakers.push(() => makeCharacter(
  34106. { name: "Purri", species: ["cat"], tags: ["anthro"] },
  34107. {
  34108. front: {
  34109. height: math.unit(6 + 5/12, "feet"),
  34110. name: "Front",
  34111. image: {
  34112. source: "./media/characters/purri/front.svg",
  34113. extra: 1698/1610,
  34114. bottom: 32/1730
  34115. }
  34116. },
  34117. frontAlt: {
  34118. height: math.unit(6 + 5/12, "feet"),
  34119. name: "Front (Alt)",
  34120. image: {
  34121. source: "./media/characters/purri/front-alt.svg",
  34122. extra: 450/420,
  34123. bottom: 26/476
  34124. }
  34125. },
  34126. boots: {
  34127. height: math.unit(5.5, "feet"),
  34128. name: "Boots",
  34129. image: {
  34130. source: "./media/characters/purri/boots.svg",
  34131. extra: 905/853,
  34132. bottom: 18/923
  34133. },
  34134. extraAttributes: {
  34135. "shoeSize": {
  34136. name: "Shoe Size",
  34137. power: 1,
  34138. type: "length",
  34139. base: math.unit(12, "ShoeSizeMensUS")
  34140. },
  34141. "platformHeight": {
  34142. name: "Platform Height",
  34143. power: 1,
  34144. type: "length",
  34145. base: math.unit(2, "inches")
  34146. },
  34147. }
  34148. },
  34149. lying: {
  34150. height: math.unit(2, "feet"),
  34151. name: "Lying",
  34152. image: {
  34153. source: "./media/characters/purri/lying.svg",
  34154. extra: 940/843,
  34155. bottom: 146/1086
  34156. }
  34157. },
  34158. devious: {
  34159. height: math.unit(1.77, "feet"),
  34160. name: "Devious",
  34161. image: {
  34162. source: "./media/characters/purri/devious.svg",
  34163. extra: 1440/1155,
  34164. bottom: 147/1587
  34165. }
  34166. },
  34167. bean: {
  34168. height: math.unit(1.94, "feet"),
  34169. name: "Bean",
  34170. image: {
  34171. source: "./media/characters/purri/bean.svg"
  34172. }
  34173. },
  34174. },
  34175. [
  34176. {
  34177. name: "Micro",
  34178. height: math.unit(1, "mm")
  34179. },
  34180. {
  34181. name: "Normal",
  34182. height: math.unit(6 + 5/12, "feet"),
  34183. default: true
  34184. },
  34185. {
  34186. name: "Macro :3c",
  34187. height: math.unit(2, "miles")
  34188. },
  34189. ]
  34190. ))
  34191. characterMakers.push(() => makeCharacter(
  34192. { name: "Moonlight", species: ["umbreon"], tags: ["anthro"] },
  34193. {
  34194. front: {
  34195. height: math.unit(6 + 2/12, "feet"),
  34196. weight: math.unit(250, "lb"),
  34197. name: "Front",
  34198. image: {
  34199. source: "./media/characters/moonlight/front.svg",
  34200. extra: 1044/908,
  34201. bottom: 56/1100
  34202. }
  34203. },
  34204. feral: {
  34205. height: math.unit(3 + 1/12, "feet"),
  34206. weight: math.unit(50, "kg"),
  34207. name: "Feral",
  34208. image: {
  34209. source: "./media/characters/moonlight/feral.svg",
  34210. extra: 3705/2791,
  34211. bottom: 145/3850
  34212. }
  34213. },
  34214. paw: {
  34215. height: math.unit(1, "feet"),
  34216. name: "Paw",
  34217. image: {
  34218. source: "./media/characters/moonlight/paw.svg"
  34219. }
  34220. },
  34221. paws: {
  34222. height: math.unit(0.98, "feet"),
  34223. name: "Paws",
  34224. image: {
  34225. source: "./media/characters/moonlight/paws.svg",
  34226. extra: 939/939,
  34227. bottom: 50/989
  34228. }
  34229. },
  34230. mouth: {
  34231. height: math.unit(0.48, "feet"),
  34232. name: "Mouth",
  34233. image: {
  34234. source: "./media/characters/moonlight/mouth.svg"
  34235. }
  34236. },
  34237. dick: {
  34238. height: math.unit(1.46, "feet"),
  34239. name: "Dick",
  34240. image: {
  34241. source: "./media/characters/moonlight/dick.svg"
  34242. }
  34243. },
  34244. },
  34245. [
  34246. {
  34247. name: "Normal",
  34248. height: math.unit(6 + 2/12, "feet"),
  34249. default: true
  34250. },
  34251. {
  34252. name: "Macro",
  34253. height: math.unit(300, "feet")
  34254. },
  34255. {
  34256. name: "Macro+",
  34257. height: math.unit(1, "mile")
  34258. },
  34259. {
  34260. name: "Mt. Moon",
  34261. height: math.unit(5, "miles")
  34262. },
  34263. {
  34264. name: "Megamacro",
  34265. height: math.unit(15, "miles")
  34266. },
  34267. ]
  34268. ))
  34269. characterMakers.push(() => makeCharacter(
  34270. { name: "Sylen", species: ["wolf"], tags: ["anthro"] },
  34271. {
  34272. back: {
  34273. height: math.unit(6, "feet"),
  34274. weight: math.unit(150, "lb"),
  34275. name: "Back",
  34276. image: {
  34277. source: "./media/characters/sylen/back.svg",
  34278. extra: 1335/1273,
  34279. bottom: 107/1442
  34280. }
  34281. },
  34282. },
  34283. [
  34284. {
  34285. name: "Normal",
  34286. height: math.unit(5 + 5/12, "feet")
  34287. },
  34288. {
  34289. name: "Megamacro",
  34290. height: math.unit(3, "miles"),
  34291. default: true
  34292. },
  34293. ]
  34294. ))
  34295. characterMakers.push(() => makeCharacter(
  34296. { name: "Huttser", species: ["coyote"], tags: ["anthro"] },
  34297. {
  34298. front: {
  34299. height: math.unit(6, "feet"),
  34300. weight: math.unit(190, "lb"),
  34301. name: "Front",
  34302. image: {
  34303. source: "./media/characters/huttser/front.svg",
  34304. extra: 1152/1058,
  34305. bottom: 23/1175
  34306. }
  34307. },
  34308. side: {
  34309. height: math.unit(6, "feet"),
  34310. weight: math.unit(190, "lb"),
  34311. name: "Side",
  34312. image: {
  34313. source: "./media/characters/huttser/side.svg",
  34314. extra: 1174/1065,
  34315. bottom: 18/1192
  34316. }
  34317. },
  34318. back: {
  34319. height: math.unit(6, "feet"),
  34320. weight: math.unit(190, "lb"),
  34321. name: "Back",
  34322. image: {
  34323. source: "./media/characters/huttser/back.svg",
  34324. extra: 1158/1056,
  34325. bottom: 12/1170
  34326. }
  34327. },
  34328. },
  34329. [
  34330. ]
  34331. ))
  34332. characterMakers.push(() => makeCharacter(
  34333. { name: "Faan", species: ["slime-dragon"], tags: ["anthro", "goo"] },
  34334. {
  34335. side: {
  34336. height: math.unit(12 + 9/12, "feet"),
  34337. weight: math.unit(15000, "lb"),
  34338. name: "Side",
  34339. image: {
  34340. source: "./media/characters/faan/side.svg",
  34341. extra: 2747/2697,
  34342. bottom: 0/2747
  34343. }
  34344. },
  34345. front: {
  34346. height: math.unit(12 + 9/12, "feet"),
  34347. weight: math.unit(15000, "lb"),
  34348. name: "Front",
  34349. image: {
  34350. source: "./media/characters/faan/front.svg",
  34351. extra: 607/571,
  34352. bottom: 24/631
  34353. }
  34354. },
  34355. head: {
  34356. height: math.unit(2.85, "feet"),
  34357. name: "Head",
  34358. image: {
  34359. source: "./media/characters/faan/head.svg"
  34360. }
  34361. },
  34362. headAlt: {
  34363. height: math.unit(3.13, "feet"),
  34364. name: "Head-alt",
  34365. image: {
  34366. source: "./media/characters/faan/head-alt.svg"
  34367. }
  34368. },
  34369. },
  34370. [
  34371. {
  34372. name: "Normal",
  34373. height: math.unit(12 + 9/12, "feet"),
  34374. default: true
  34375. },
  34376. ]
  34377. ))
  34378. characterMakers.push(() => makeCharacter(
  34379. { name: "Tanio", species: ["foxsky"], tags: ["anthro"] },
  34380. {
  34381. front: {
  34382. height: math.unit(6, "feet"),
  34383. weight: math.unit(300, "lb"),
  34384. name: "Front",
  34385. image: {
  34386. source: "./media/characters/tanio/front.svg",
  34387. extra: 711/673,
  34388. bottom: 25/736
  34389. }
  34390. },
  34391. },
  34392. [
  34393. {
  34394. name: "Normal",
  34395. height: math.unit(6, "feet"),
  34396. default: true
  34397. },
  34398. ]
  34399. ))
  34400. characterMakers.push(() => makeCharacter(
  34401. { name: "Noboru", species: ["cat"], tags: ["anthro"] },
  34402. {
  34403. front: {
  34404. height: math.unit(3, "inches"),
  34405. name: "Front",
  34406. image: {
  34407. source: "./media/characters/noboru/front.svg",
  34408. extra: 1039/932,
  34409. bottom: 18/1057
  34410. }
  34411. },
  34412. },
  34413. [
  34414. {
  34415. name: "Micro",
  34416. height: math.unit(3, "inches"),
  34417. default: true
  34418. },
  34419. ]
  34420. ))
  34421. characterMakers.push(() => makeCharacter(
  34422. { name: "Daniel Barrett", species: ["wolf"], tags: ["anthro"] },
  34423. {
  34424. front: {
  34425. height: math.unit(1.85, "meters"),
  34426. weight: math.unit(80, "kg"),
  34427. name: "Front",
  34428. image: {
  34429. source: "./media/characters/daniel-barrett/front.svg",
  34430. extra: 355/337,
  34431. bottom: 9/364
  34432. }
  34433. },
  34434. },
  34435. [
  34436. {
  34437. name: "Pico",
  34438. height: math.unit(0.0433, "mm")
  34439. },
  34440. {
  34441. name: "Nano",
  34442. height: math.unit(1.5, "mm")
  34443. },
  34444. {
  34445. name: "Micro",
  34446. height: math.unit(5.3, "cm"),
  34447. default: true
  34448. },
  34449. {
  34450. name: "Normal",
  34451. height: math.unit(1.85, "meters")
  34452. },
  34453. {
  34454. name: "Macro",
  34455. height: math.unit(64.7, "meters")
  34456. },
  34457. {
  34458. name: "Megamacro",
  34459. height: math.unit(2.26, "km")
  34460. },
  34461. {
  34462. name: "Gigamacro",
  34463. height: math.unit(79, "km")
  34464. },
  34465. {
  34466. name: "Teramacro",
  34467. height: math.unit(2765, "km")
  34468. },
  34469. {
  34470. name: "Petamacro",
  34471. height: math.unit(96678, "km")
  34472. },
  34473. ]
  34474. ))
  34475. characterMakers.push(() => makeCharacter(
  34476. { name: "Zeel", species: ["kobold", "raptor"], tags: ["anthro"] },
  34477. {
  34478. front: {
  34479. height: math.unit(30, "meters"),
  34480. weight: math.unit(400, "tons"),
  34481. name: "Front",
  34482. image: {
  34483. source: "./media/characters/zeel/front.svg",
  34484. extra: 2599/2599,
  34485. bottom: 226/2825
  34486. }
  34487. },
  34488. },
  34489. [
  34490. {
  34491. name: "Macro",
  34492. height: math.unit(30, "meters"),
  34493. default: true
  34494. },
  34495. ]
  34496. ))
  34497. characterMakers.push(() => makeCharacter(
  34498. { name: "Tarn", species: ["wolf"], tags: ["anthro"] },
  34499. {
  34500. front: {
  34501. height: math.unit(6 + 7/12, "feet"),
  34502. weight: math.unit(210, "lb"),
  34503. name: "Front",
  34504. image: {
  34505. source: "./media/characters/tarn/front.svg",
  34506. extra: 3517/3220,
  34507. bottom: 91/3608
  34508. }
  34509. },
  34510. back: {
  34511. height: math.unit(6 + 7/12, "feet"),
  34512. weight: math.unit(210, "lb"),
  34513. name: "Back",
  34514. image: {
  34515. source: "./media/characters/tarn/back.svg",
  34516. extra: 3566/3241,
  34517. bottom: 34/3600
  34518. }
  34519. },
  34520. dick: {
  34521. height: math.unit(1.65, "feet"),
  34522. name: "Dick",
  34523. image: {
  34524. source: "./media/characters/tarn/dick.svg"
  34525. }
  34526. },
  34527. paw: {
  34528. height: math.unit(1.80, "feet"),
  34529. name: "Paw",
  34530. image: {
  34531. source: "./media/characters/tarn/paw.svg"
  34532. }
  34533. },
  34534. tongue: {
  34535. height: math.unit(0.97, "feet"),
  34536. name: "Tongue",
  34537. image: {
  34538. source: "./media/characters/tarn/tongue.svg"
  34539. }
  34540. },
  34541. },
  34542. [
  34543. {
  34544. name: "Micro",
  34545. height: math.unit(4, "inches")
  34546. },
  34547. {
  34548. name: "Normal",
  34549. height: math.unit(6 + 7/12, "feet"),
  34550. default: true
  34551. },
  34552. {
  34553. name: "Macro",
  34554. height: math.unit(300, "feet")
  34555. },
  34556. ]
  34557. ))
  34558. characterMakers.push(() => makeCharacter(
  34559. { name: "Leonidas \"Leon\" Nisitalia", species: ["cat"], tags: ["anthro"] },
  34560. {
  34561. front: {
  34562. height: math.unit(5 + 7/12, "feet"),
  34563. weight: math.unit(80, "kg"),
  34564. name: "Front",
  34565. image: {
  34566. source: "./media/characters/leonidas-leon-nisitalia/front.svg",
  34567. extra: 3023/2865,
  34568. bottom: 33/3056
  34569. }
  34570. },
  34571. back: {
  34572. height: math.unit(5 + 7/12, "feet"),
  34573. weight: math.unit(80, "kg"),
  34574. name: "Back",
  34575. image: {
  34576. source: "./media/characters/leonidas-leon-nisitalia/back.svg",
  34577. extra: 3020/2886,
  34578. bottom: 30/3050
  34579. }
  34580. },
  34581. dick: {
  34582. height: math.unit(0.98, "feet"),
  34583. name: "Dick",
  34584. image: {
  34585. source: "./media/characters/leonidas-leon-nisitalia/dick.svg"
  34586. }
  34587. },
  34588. anatomy: {
  34589. height: math.unit(2.86, "feet"),
  34590. name: "Anatomy",
  34591. image: {
  34592. source: "./media/characters/leonidas-leon-nisitalia/anatomy.svg"
  34593. }
  34594. },
  34595. },
  34596. [
  34597. {
  34598. name: "Really Small",
  34599. height: math.unit(2, "inches")
  34600. },
  34601. {
  34602. name: "Micro",
  34603. height: math.unit(5.583, "inches")
  34604. },
  34605. {
  34606. name: "Normal",
  34607. height: math.unit(5 + 7/12, "feet"),
  34608. default: true
  34609. },
  34610. {
  34611. name: "Macro",
  34612. height: math.unit(67, "feet")
  34613. },
  34614. {
  34615. name: "Megamacro",
  34616. height: math.unit(134, "feet")
  34617. },
  34618. ]
  34619. ))
  34620. characterMakers.push(() => makeCharacter(
  34621. { name: "Sally", species: ["enderman"], tags: ["anthro"] },
  34622. {
  34623. front: {
  34624. height: math.unit(9, "feet"),
  34625. weight: math.unit(120, "lb"),
  34626. name: "Front",
  34627. image: {
  34628. source: "./media/characters/sally/front.svg",
  34629. extra: 1506/1349,
  34630. bottom: 66/1572
  34631. }
  34632. },
  34633. },
  34634. [
  34635. {
  34636. name: "Normal",
  34637. height: math.unit(9, "feet"),
  34638. default: true
  34639. },
  34640. ]
  34641. ))
  34642. characterMakers.push(() => makeCharacter(
  34643. { name: "Owen", species: ["bear"], tags: ["anthro"] },
  34644. {
  34645. front: {
  34646. height: math.unit(8, "feet"),
  34647. weight: math.unit(900, "lb"),
  34648. name: "Front",
  34649. image: {
  34650. source: "./media/characters/owen/front.svg",
  34651. extra: 1761/1657,
  34652. bottom: 74/1835
  34653. }
  34654. },
  34655. side: {
  34656. height: math.unit(8, "feet"),
  34657. weight: math.unit(900, "lb"),
  34658. name: "Side",
  34659. image: {
  34660. source: "./media/characters/owen/side.svg",
  34661. extra: 1797/1734,
  34662. bottom: 30/1827
  34663. }
  34664. },
  34665. back: {
  34666. height: math.unit(8, "feet"),
  34667. weight: math.unit(900, "lb"),
  34668. name: "Back",
  34669. image: {
  34670. source: "./media/characters/owen/back.svg",
  34671. extra: 1796/1706,
  34672. bottom: 59/1855
  34673. }
  34674. },
  34675. maw: {
  34676. height: math.unit(1.76, "feet"),
  34677. name: "Maw",
  34678. image: {
  34679. source: "./media/characters/owen/maw.svg"
  34680. }
  34681. },
  34682. },
  34683. [
  34684. {
  34685. name: "Normal",
  34686. height: math.unit(8, "feet"),
  34687. default: true
  34688. },
  34689. ]
  34690. ))
  34691. characterMakers.push(() => makeCharacter(
  34692. { name: "Ryth", species: ["gremlin", "zorgoia"], tags: ["anthro", "feral"] },
  34693. {
  34694. front: {
  34695. height: math.unit(4, "feet"),
  34696. weight: math.unit(400, "lb"),
  34697. name: "Front",
  34698. image: {
  34699. source: "./media/characters/ryth/front.svg",
  34700. extra: 1920/1748,
  34701. bottom: 42/1962
  34702. }
  34703. },
  34704. back: {
  34705. height: math.unit(4, "feet"),
  34706. weight: math.unit(400, "lb"),
  34707. name: "Back",
  34708. image: {
  34709. source: "./media/characters/ryth/back.svg",
  34710. extra: 1897/1690,
  34711. bottom: 89/1986
  34712. }
  34713. },
  34714. mouth: {
  34715. height: math.unit(1.39, "feet"),
  34716. name: "Mouth",
  34717. image: {
  34718. source: "./media/characters/ryth/mouth.svg"
  34719. }
  34720. },
  34721. tailmaw: {
  34722. height: math.unit(1.23, "feet"),
  34723. name: "Tailmaw",
  34724. image: {
  34725. source: "./media/characters/ryth/tailmaw.svg"
  34726. }
  34727. },
  34728. goia: {
  34729. height: math.unit(4, "meters"),
  34730. weight: math.unit(10800, "lb"),
  34731. name: "Goia",
  34732. image: {
  34733. source: "./media/characters/ryth/goia.svg",
  34734. extra: 745/640,
  34735. bottom: 107/852
  34736. }
  34737. },
  34738. goiaFront: {
  34739. height: math.unit(4, "meters"),
  34740. weight: math.unit(10800, "lb"),
  34741. name: "Goia (Front)",
  34742. image: {
  34743. source: "./media/characters/ryth/goia-front.svg",
  34744. extra: 750/586,
  34745. bottom: 114/864
  34746. }
  34747. },
  34748. goiaMaw: {
  34749. height: math.unit(5.55, "feet"),
  34750. name: "Goia Maw",
  34751. image: {
  34752. source: "./media/characters/ryth/goia-maw.svg"
  34753. }
  34754. },
  34755. goiaForepaw: {
  34756. height: math.unit(3.5, "feet"),
  34757. name: "Goia Forepaw",
  34758. image: {
  34759. source: "./media/characters/ryth/goia-forepaw.svg"
  34760. }
  34761. },
  34762. goiaHindpaw: {
  34763. height: math.unit(5.55, "feet"),
  34764. name: "Goia Hindpaw",
  34765. image: {
  34766. source: "./media/characters/ryth/goia-hindpaw.svg"
  34767. }
  34768. },
  34769. },
  34770. [
  34771. {
  34772. name: "Normal",
  34773. height: math.unit(4, "feet"),
  34774. default: true
  34775. },
  34776. ]
  34777. ))
  34778. characterMakers.push(() => makeCharacter(
  34779. { name: "Necrolance", species: ["dragonsune"], tags: ["anthro"] },
  34780. {
  34781. front: {
  34782. height: math.unit(7, "feet"),
  34783. weight: math.unit(180, "lb"),
  34784. name: "Front",
  34785. image: {
  34786. source: "./media/characters/necrolance/front.svg",
  34787. extra: 1062/947,
  34788. bottom: 41/1103
  34789. }
  34790. },
  34791. back: {
  34792. height: math.unit(7, "feet"),
  34793. weight: math.unit(180, "lb"),
  34794. name: "Back",
  34795. image: {
  34796. source: "./media/characters/necrolance/back.svg",
  34797. extra: 1045/984,
  34798. bottom: 14/1059
  34799. }
  34800. },
  34801. wing: {
  34802. height: math.unit(2.67, "feet"),
  34803. name: "Wing",
  34804. image: {
  34805. source: "./media/characters/necrolance/wing.svg"
  34806. }
  34807. },
  34808. },
  34809. [
  34810. {
  34811. name: "Normal",
  34812. height: math.unit(7, "feet"),
  34813. default: true
  34814. },
  34815. ]
  34816. ))
  34817. characterMakers.push(() => makeCharacter(
  34818. { name: "Tyler", species: ["naga"], tags: ["naga"] },
  34819. {
  34820. front: {
  34821. height: math.unit(76, "meters"),
  34822. weight: math.unit(30000, "tons"),
  34823. name: "Front",
  34824. image: {
  34825. source: "./media/characters/tyler/front.svg",
  34826. extra: 1640/1640,
  34827. bottom: 114/1754
  34828. }
  34829. },
  34830. },
  34831. [
  34832. {
  34833. name: "Macro",
  34834. height: math.unit(76, "meters"),
  34835. default: true
  34836. },
  34837. ]
  34838. ))
  34839. characterMakers.push(() => makeCharacter(
  34840. { name: "Icey", species: ["cat"], tags: ["anthro"] },
  34841. {
  34842. front: {
  34843. height: math.unit(4 + 11/12, "feet"),
  34844. weight: math.unit(132, "lb"),
  34845. name: "Front",
  34846. image: {
  34847. source: "./media/characters/icey/front.svg",
  34848. extra: 2750/2550,
  34849. bottom: 33/2783
  34850. }
  34851. },
  34852. back: {
  34853. height: math.unit(4 + 11/12, "feet"),
  34854. weight: math.unit(132, "lb"),
  34855. name: "Back",
  34856. image: {
  34857. source: "./media/characters/icey/back.svg",
  34858. extra: 2624/2481,
  34859. bottom: 35/2659
  34860. }
  34861. },
  34862. },
  34863. [
  34864. {
  34865. name: "Normal",
  34866. height: math.unit(4 + 11/12, "feet"),
  34867. default: true
  34868. },
  34869. ]
  34870. ))
  34871. characterMakers.push(() => makeCharacter(
  34872. { name: "Smile", species: ["skunk", "ghost"], tags: ["anthro"] },
  34873. {
  34874. front: {
  34875. height: math.unit(100, "feet"),
  34876. weight: math.unit(0, "lb"),
  34877. name: "Front",
  34878. image: {
  34879. source: "./media/characters/smile/front.svg",
  34880. extra: 2983/2912,
  34881. bottom: 162/3145
  34882. }
  34883. },
  34884. back: {
  34885. height: math.unit(100, "feet"),
  34886. weight: math.unit(0, "lb"),
  34887. name: "Back",
  34888. image: {
  34889. source: "./media/characters/smile/back.svg",
  34890. extra: 3143/3031,
  34891. bottom: 91/3234
  34892. }
  34893. },
  34894. head: {
  34895. height: math.unit(26.3, "feet"),
  34896. weight: math.unit(0, "lb"),
  34897. name: "Head",
  34898. image: {
  34899. source: "./media/characters/smile/head.svg"
  34900. }
  34901. },
  34902. collar: {
  34903. height: math.unit(5.3, "feet"),
  34904. weight: math.unit(0, "lb"),
  34905. name: "Collar",
  34906. image: {
  34907. source: "./media/characters/smile/collar.svg"
  34908. }
  34909. },
  34910. },
  34911. [
  34912. {
  34913. name: "Macro",
  34914. height: math.unit(100, "feet"),
  34915. default: true
  34916. },
  34917. ]
  34918. ))
  34919. characterMakers.push(() => makeCharacter(
  34920. { name: "Arimphae", species: ["dragon"], tags: ["feral"] },
  34921. {
  34922. dragon: {
  34923. height: math.unit(26, "feet"),
  34924. weight: math.unit(36, "tons"),
  34925. name: "Dragon",
  34926. image: {
  34927. source: "./media/characters/arimphae/dragon.svg",
  34928. extra: 1574/983,
  34929. bottom: 357/1931
  34930. }
  34931. },
  34932. drake: {
  34933. height: math.unit(9, "feet"),
  34934. weight: math.unit(1.5, "tons"),
  34935. name: "Drake",
  34936. image: {
  34937. source: "./media/characters/arimphae/drake.svg",
  34938. extra: 1120/925,
  34939. bottom: 435/1555
  34940. }
  34941. },
  34942. },
  34943. [
  34944. {
  34945. name: "Small",
  34946. height: math.unit(26*5/9, "feet")
  34947. },
  34948. {
  34949. name: "Normal",
  34950. height: math.unit(26, "feet"),
  34951. default: true
  34952. },
  34953. ]
  34954. ))
  34955. characterMakers.push(() => makeCharacter(
  34956. { name: "Xander", species: ["false-vampire-bat"], tags: ["anthro"] },
  34957. {
  34958. front: {
  34959. height: math.unit(8 + 9/12, "feet"),
  34960. name: "Front",
  34961. image: {
  34962. source: "./media/characters/xander/front.svg",
  34963. extra: 1237/974,
  34964. bottom: 94/1331
  34965. }
  34966. },
  34967. },
  34968. [
  34969. {
  34970. name: "Normal",
  34971. height: math.unit(8 + 9/12, "feet"),
  34972. default: true
  34973. },
  34974. {
  34975. name: "Gaze Grabber",
  34976. height: math.unit(13 + 8/12, "feet")
  34977. },
  34978. {
  34979. name: "Jaw Dropper",
  34980. height: math.unit(27, "feet")
  34981. },
  34982. {
  34983. name: "Show Stopper",
  34984. height: math.unit(136, "feet")
  34985. },
  34986. {
  34987. name: "Superstar",
  34988. height: math.unit(1.9e6, "miles")
  34989. },
  34990. ]
  34991. ))
  34992. characterMakers.push(() => makeCharacter(
  34993. { name: "Osiris", species: ["plush", "dragon"], tags: ["feral"] },
  34994. {
  34995. side: {
  34996. height: math.unit(2100, "feet"),
  34997. name: "Side",
  34998. image: {
  34999. source: "./media/characters/osiris/side.svg",
  35000. extra: 1105/939,
  35001. bottom: 167/1272
  35002. }
  35003. },
  35004. },
  35005. [
  35006. {
  35007. name: "Macro",
  35008. height: math.unit(2100, "feet"),
  35009. default: true
  35010. },
  35011. ]
  35012. ))
  35013. characterMakers.push(() => makeCharacter(
  35014. { name: "Rhys Londe", species: ["dragon"], tags: ["anthro"] },
  35015. {
  35016. front: {
  35017. height: math.unit(6 + 8/12, "feet"),
  35018. weight: math.unit(225, "lb"),
  35019. name: "Front",
  35020. image: {
  35021. source: "./media/characters/rhys-londe/front.svg",
  35022. extra: 2258/2141,
  35023. bottom: 188/2446
  35024. }
  35025. },
  35026. back: {
  35027. height: math.unit(6 + 8/12, "feet"),
  35028. weight: math.unit(225, "lb"),
  35029. name: "Back",
  35030. image: {
  35031. source: "./media/characters/rhys-londe/back.svg",
  35032. extra: 2237/2137,
  35033. bottom: 63/2300
  35034. }
  35035. },
  35036. frontNsfw: {
  35037. height: math.unit(6 + 8/12, "feet"),
  35038. weight: math.unit(225, "lb"),
  35039. name: "Front (NSFW)",
  35040. image: {
  35041. source: "./media/characters/rhys-londe/front-nsfw.svg",
  35042. extra: 2258/2141,
  35043. bottom: 188/2446
  35044. }
  35045. },
  35046. backNsfw: {
  35047. height: math.unit(6 + 8/12, "feet"),
  35048. weight: math.unit(225, "lb"),
  35049. name: "Back (NSFW)",
  35050. image: {
  35051. source: "./media/characters/rhys-londe/back-nsfw.svg",
  35052. extra: 2237/2137,
  35053. bottom: 63/2300
  35054. }
  35055. },
  35056. dick: {
  35057. height: math.unit(30, "inches"),
  35058. name: "Dick",
  35059. image: {
  35060. source: "./media/characters/rhys-londe/dick.svg"
  35061. }
  35062. },
  35063. maw: {
  35064. height: math.unit(1.6, "feet"),
  35065. name: "Maw",
  35066. image: {
  35067. source: "./media/characters/rhys-londe/maw.svg"
  35068. }
  35069. },
  35070. },
  35071. [
  35072. {
  35073. name: "Normal",
  35074. height: math.unit(6 + 8/12, "feet"),
  35075. default: true
  35076. },
  35077. ]
  35078. ))
  35079. characterMakers.push(() => makeCharacter(
  35080. { name: "Taivas Ensim", species: ["kobold"], tags: ["anthro"] },
  35081. {
  35082. front: {
  35083. height: math.unit(3 + 10/12, "feet"),
  35084. weight: math.unit(90, "lb"),
  35085. name: "Front",
  35086. image: {
  35087. source: "./media/characters/taivas-ensim/front.svg",
  35088. extra: 1327/1216,
  35089. bottom: 96/1423
  35090. }
  35091. },
  35092. back: {
  35093. height: math.unit(3 + 10/12, "feet"),
  35094. weight: math.unit(90, "lb"),
  35095. name: "Back",
  35096. image: {
  35097. source: "./media/characters/taivas-ensim/back.svg",
  35098. extra: 1355/1247,
  35099. bottom: 11/1366
  35100. }
  35101. },
  35102. frontNsfw: {
  35103. height: math.unit(3 + 10/12, "feet"),
  35104. weight: math.unit(90, "lb"),
  35105. name: "Front (NSFW)",
  35106. image: {
  35107. source: "./media/characters/taivas-ensim/front-nsfw.svg",
  35108. extra: 1327/1216,
  35109. bottom: 96/1423
  35110. }
  35111. },
  35112. backNsfw: {
  35113. height: math.unit(3 + 10/12, "feet"),
  35114. weight: math.unit(90, "lb"),
  35115. name: "Back (NSFW)",
  35116. image: {
  35117. source: "./media/characters/taivas-ensim/back-nsfw.svg",
  35118. extra: 1355/1247,
  35119. bottom: 11/1366
  35120. }
  35121. },
  35122. },
  35123. [
  35124. {
  35125. name: "Normal",
  35126. height: math.unit(3 + 10/12, "feet"),
  35127. default: true
  35128. },
  35129. ]
  35130. ))
  35131. characterMakers.push(() => makeCharacter(
  35132. { name: "Byliss", species: ["dragon", "succubus"], tags: ["anthro"] },
  35133. {
  35134. front: {
  35135. height: math.unit(9 + 6/12, "feet"),
  35136. weight: math.unit(940, "lb"),
  35137. name: "Front",
  35138. image: {
  35139. source: "./media/characters/byliss/front.svg",
  35140. extra: 1327/1290,
  35141. bottom: 82/1409
  35142. }
  35143. },
  35144. back: {
  35145. height: math.unit(9 + 6/12, "feet"),
  35146. weight: math.unit(940, "lb"),
  35147. name: "Back",
  35148. image: {
  35149. source: "./media/characters/byliss/back.svg",
  35150. extra: 1376/1349,
  35151. bottom: 9/1385
  35152. }
  35153. },
  35154. frontNsfw: {
  35155. height: math.unit(9 + 6/12, "feet"),
  35156. weight: math.unit(940, "lb"),
  35157. name: "Front (NSFW)",
  35158. image: {
  35159. source: "./media/characters/byliss/front-nsfw.svg",
  35160. extra: 1327/1290,
  35161. bottom: 82/1409
  35162. }
  35163. },
  35164. backNsfw: {
  35165. height: math.unit(9 + 6/12, "feet"),
  35166. weight: math.unit(940, "lb"),
  35167. name: "Back (NSFW)",
  35168. image: {
  35169. source: "./media/characters/byliss/back-nsfw.svg",
  35170. extra: 1376/1349,
  35171. bottom: 9/1385
  35172. }
  35173. },
  35174. },
  35175. [
  35176. {
  35177. name: "Normal",
  35178. height: math.unit(9 + 6/12, "feet"),
  35179. default: true
  35180. },
  35181. ]
  35182. ))
  35183. characterMakers.push(() => makeCharacter(
  35184. { name: "Noraly", species: ["mia"], tags: ["anthro"] },
  35185. {
  35186. front: {
  35187. height: math.unit(5 + 2/12, "feet"),
  35188. weight: math.unit(200, "lb"),
  35189. name: "Front",
  35190. image: {
  35191. source: "./media/characters/noraly/front.svg",
  35192. extra: 4985/4773,
  35193. bottom: 150/5135
  35194. }
  35195. },
  35196. full: {
  35197. height: math.unit(5 + 2/12, "feet"),
  35198. weight: math.unit(164, "lb"),
  35199. name: "Full",
  35200. image: {
  35201. source: "./media/characters/noraly/full.svg",
  35202. extra: 1114/1059,
  35203. bottom: 35/1149
  35204. }
  35205. },
  35206. fuller: {
  35207. height: math.unit(5 + 2/12, "feet"),
  35208. weight: math.unit(230, "lb"),
  35209. name: "Fuller",
  35210. image: {
  35211. source: "./media/characters/noraly/fuller.svg",
  35212. extra: 1114/1059,
  35213. bottom: 35/1149
  35214. }
  35215. },
  35216. fullest: {
  35217. height: math.unit(5 + 2/12, "feet"),
  35218. weight: math.unit(300, "lb"),
  35219. name: "Fullest",
  35220. image: {
  35221. source: "./media/characters/noraly/fullest.svg",
  35222. extra: 1114/1059,
  35223. bottom: 35/1149
  35224. }
  35225. },
  35226. },
  35227. [
  35228. {
  35229. name: "Normal",
  35230. height: math.unit(5 + 2/12, "feet"),
  35231. default: true
  35232. },
  35233. ]
  35234. ))
  35235. characterMakers.push(() => makeCharacter(
  35236. { name: "Pera", species: ["snake"], tags: ["naga"] },
  35237. {
  35238. front: {
  35239. height: math.unit(5 + 2/12, "feet"),
  35240. weight: math.unit(210, "lb"),
  35241. name: "Front",
  35242. image: {
  35243. source: "./media/characters/pera/front.svg",
  35244. extra: 1560/1531,
  35245. bottom: 165/1725
  35246. }
  35247. },
  35248. back: {
  35249. height: math.unit(5 + 2/12, "feet"),
  35250. weight: math.unit(210, "lb"),
  35251. name: "Back",
  35252. image: {
  35253. source: "./media/characters/pera/back.svg",
  35254. extra: 1523/1493,
  35255. bottom: 152/1675
  35256. }
  35257. },
  35258. dick: {
  35259. height: math.unit(2.4, "feet"),
  35260. name: "Dick",
  35261. image: {
  35262. source: "./media/characters/pera/dick.svg"
  35263. }
  35264. },
  35265. },
  35266. [
  35267. {
  35268. name: "Normal",
  35269. height: math.unit(5 + 2/12, "feet"),
  35270. default: true
  35271. },
  35272. ]
  35273. ))
  35274. characterMakers.push(() => makeCharacter(
  35275. { name: "Julian", species: ["rainbow"], tags: ["anthro"] },
  35276. {
  35277. front: {
  35278. height: math.unit(12, "feet"),
  35279. weight: math.unit(3200, "lb"),
  35280. name: "Front",
  35281. image: {
  35282. source: "./media/characters/julian/front.svg",
  35283. extra: 2962/2701,
  35284. bottom: 184/3146
  35285. }
  35286. },
  35287. maw: {
  35288. height: math.unit(5.35, "feet"),
  35289. name: "Maw",
  35290. image: {
  35291. source: "./media/characters/julian/maw.svg"
  35292. }
  35293. },
  35294. paw: {
  35295. height: math.unit(3.07, "feet"),
  35296. name: "Paw",
  35297. image: {
  35298. source: "./media/characters/julian/paw.svg"
  35299. }
  35300. },
  35301. },
  35302. [
  35303. {
  35304. name: "Default",
  35305. height: math.unit(12, "feet"),
  35306. default: true
  35307. },
  35308. {
  35309. name: "Big",
  35310. height: math.unit(50, "feet")
  35311. },
  35312. {
  35313. name: "Really Big",
  35314. height: math.unit(1, "mile")
  35315. },
  35316. {
  35317. name: "Extremely Big",
  35318. height: math.unit(100, "miles")
  35319. },
  35320. {
  35321. name: "Planet Hugger",
  35322. height: math.unit(200, "megameters")
  35323. },
  35324. {
  35325. name: "Unreasonably Big",
  35326. height: math.unit(1e300, "meters")
  35327. },
  35328. ]
  35329. ))
  35330. characterMakers.push(() => makeCharacter(
  35331. { name: "Pi", species: ["solgaleo"], tags: ["anthro", "goo"] },
  35332. {
  35333. solgooleo: {
  35334. height: math.unit(4, "meters"),
  35335. weight: math.unit(6000*1.5, "kg"),
  35336. volume: math.unit(6000, "liters"),
  35337. name: "Solgooleo",
  35338. image: {
  35339. source: "./media/characters/pi/solgooleo.svg",
  35340. extra: 388/331,
  35341. bottom: 29/417
  35342. }
  35343. },
  35344. },
  35345. [
  35346. {
  35347. name: "Normal",
  35348. height: math.unit(4, "meters"),
  35349. default: true
  35350. },
  35351. ]
  35352. ))
  35353. characterMakers.push(() => makeCharacter(
  35354. { name: "Shaun", species: ["dragon"], tags: ["anthro"] },
  35355. {
  35356. front: {
  35357. height: math.unit(8, "feet"),
  35358. weight: math.unit(4, "tons"),
  35359. name: "Front",
  35360. image: {
  35361. source: "./media/characters/shaun/front.svg",
  35362. extra: 503/495,
  35363. bottom: 20/523
  35364. }
  35365. },
  35366. back: {
  35367. height: math.unit(8, "feet"),
  35368. weight: math.unit(4, "tons"),
  35369. name: "Back",
  35370. image: {
  35371. source: "./media/characters/shaun/back.svg",
  35372. extra: 487/480,
  35373. bottom: 20/507
  35374. }
  35375. },
  35376. },
  35377. [
  35378. {
  35379. name: "Lorg",
  35380. height: math.unit(8, "feet"),
  35381. default: true
  35382. },
  35383. ]
  35384. ))
  35385. characterMakers.push(() => makeCharacter(
  35386. { name: "Sini", species: ["dragon"], tags: ["anthro", "feral"] },
  35387. {
  35388. frontAnthro: {
  35389. height: math.unit(7, "feet"),
  35390. name: "Front",
  35391. image: {
  35392. source: "./media/characters/sini/front-anthro.svg",
  35393. extra: 726/678,
  35394. bottom: 35/761
  35395. },
  35396. form: "anthro",
  35397. default: true
  35398. },
  35399. backAnthro: {
  35400. height: math.unit(7, "feet"),
  35401. name: "Back",
  35402. image: {
  35403. source: "./media/characters/sini/back-anthro.svg",
  35404. extra: 743/701,
  35405. bottom: 12/755
  35406. },
  35407. form: "anthro",
  35408. },
  35409. frontAnthroNsfw: {
  35410. height: math.unit(7, "feet"),
  35411. name: "Front (NSFW)",
  35412. image: {
  35413. source: "./media/characters/sini/front-anthro-nsfw.svg",
  35414. extra: 726/678,
  35415. bottom: 35/761
  35416. },
  35417. form: "anthro"
  35418. },
  35419. backAnthroNsfw: {
  35420. height: math.unit(7, "feet"),
  35421. name: "Back (NSFW)",
  35422. image: {
  35423. source: "./media/characters/sini/back-anthro-nsfw.svg",
  35424. extra: 743/701,
  35425. bottom: 12/755
  35426. },
  35427. form: "anthro",
  35428. },
  35429. mawAnthro: {
  35430. height: math.unit(2.14, "feet"),
  35431. name: "Maw",
  35432. image: {
  35433. source: "./media/characters/sini/maw-anthro.svg"
  35434. },
  35435. form: "anthro"
  35436. },
  35437. dick: {
  35438. height: math.unit(1.45, "feet"),
  35439. name: "Dick",
  35440. image: {
  35441. source: "./media/characters/sini/dick-anthro.svg"
  35442. },
  35443. form: "anthro"
  35444. },
  35445. feral: {
  35446. height: math.unit(16, "feet"),
  35447. name: "Feral",
  35448. image: {
  35449. source: "./media/characters/sini/feral.svg",
  35450. extra: 814/605,
  35451. bottom: 11/825
  35452. },
  35453. form: "feral",
  35454. default: true
  35455. },
  35456. feralNsfw: {
  35457. height: math.unit(16, "feet"),
  35458. name: "Feral (NSFW)",
  35459. image: {
  35460. source: "./media/characters/sini/feral-nsfw.svg",
  35461. extra: 814/605,
  35462. bottom: 11/825
  35463. },
  35464. form: "feral"
  35465. },
  35466. mawFeral: {
  35467. height: math.unit(5.66, "feet"),
  35468. name: "Maw",
  35469. image: {
  35470. source: "./media/characters/sini/maw-feral.svg"
  35471. },
  35472. form: "feral",
  35473. },
  35474. pawFeral: {
  35475. height: math.unit(5.17, "feet"),
  35476. name: "Paw",
  35477. image: {
  35478. source: "./media/characters/sini/paw-feral.svg"
  35479. },
  35480. form: "feral",
  35481. },
  35482. rumpFeral: {
  35483. height: math.unit(13.11, "feet"),
  35484. name: "Rump",
  35485. image: {
  35486. source: "./media/characters/sini/rump-feral.svg"
  35487. },
  35488. form: "feral",
  35489. },
  35490. dickFeral: {
  35491. height: math.unit(1, "feet"),
  35492. name: "Dick",
  35493. image: {
  35494. source: "./media/characters/sini/dick-feral.svg"
  35495. },
  35496. form: "feral",
  35497. },
  35498. eyeFeral: {
  35499. height: math.unit(1.23, "feet"),
  35500. name: "Eye",
  35501. image: {
  35502. source: "./media/characters/sini/eye-feral.svg"
  35503. },
  35504. form: "feral",
  35505. },
  35506. },
  35507. [
  35508. {
  35509. name: "Normal",
  35510. height: math.unit(7, "feet"),
  35511. default: true,
  35512. form: "anthro"
  35513. },
  35514. {
  35515. name: "Normal",
  35516. height: math.unit(16, "feet"),
  35517. default: true,
  35518. form: "feral"
  35519. },
  35520. ],
  35521. {
  35522. "anthro": {
  35523. name: "Anthro",
  35524. default: true
  35525. },
  35526. "feral": {
  35527. name: "Feral",
  35528. }
  35529. }
  35530. ))
  35531. characterMakers.push(() => makeCharacter(
  35532. { name: "Raylldo", species: ["dragon"], tags: ["feral"] },
  35533. {
  35534. side: {
  35535. height: math.unit(47.2, "meters"),
  35536. weight: math.unit(10000, "tons"),
  35537. name: "Side",
  35538. image: {
  35539. source: "./media/characters/raylldo/side.svg",
  35540. extra: 2363/642,
  35541. bottom: 221/2584
  35542. }
  35543. },
  35544. top: {
  35545. height: math.unit(240, "meters"),
  35546. weight: math.unit(10000, "tons"),
  35547. name: "Top",
  35548. image: {
  35549. source: "./media/characters/raylldo/top.svg"
  35550. }
  35551. },
  35552. bottom: {
  35553. height: math.unit(240, "meters"),
  35554. weight: math.unit(10000, "tons"),
  35555. name: "Bottom",
  35556. image: {
  35557. source: "./media/characters/raylldo/bottom.svg"
  35558. }
  35559. },
  35560. head: {
  35561. height: math.unit(38.6, "meters"),
  35562. name: "Head",
  35563. image: {
  35564. source: "./media/characters/raylldo/head.svg",
  35565. extra: 1335/1112,
  35566. bottom: 0/1335
  35567. }
  35568. },
  35569. maw: {
  35570. height: math.unit(16.37, "meters"),
  35571. name: "Maw",
  35572. image: {
  35573. source: "./media/characters/raylldo/maw.svg",
  35574. extra: 883/660,
  35575. bottom: 0/883
  35576. },
  35577. extraAttributes: {
  35578. preyCapacity: {
  35579. name: "Capacity",
  35580. power: 3,
  35581. type: "volume",
  35582. base: math.unit(1000, "people")
  35583. },
  35584. tongueSize: {
  35585. name: "Tongue Size",
  35586. power: 2,
  35587. type: "area",
  35588. base: math.unit(21, "m^2")
  35589. }
  35590. }
  35591. },
  35592. forepaw: {
  35593. height: math.unit(18, "meters"),
  35594. name: "Forepaw",
  35595. image: {
  35596. source: "./media/characters/raylldo/forepaw.svg"
  35597. }
  35598. },
  35599. hindpaw: {
  35600. height: math.unit(23, "meters"),
  35601. name: "Hindpaw",
  35602. image: {
  35603. source: "./media/characters/raylldo/hindpaw.svg"
  35604. }
  35605. },
  35606. genitals: {
  35607. height: math.unit(42, "meters"),
  35608. name: "Genitals",
  35609. image: {
  35610. source: "./media/characters/raylldo/genitals.svg"
  35611. }
  35612. },
  35613. },
  35614. [
  35615. {
  35616. name: "Normal",
  35617. height: math.unit(47.2, "meters"),
  35618. default: true
  35619. },
  35620. ]
  35621. ))
  35622. characterMakers.push(() => makeCharacter(
  35623. { name: "Glint", species: ["lucent-nargacuga"], tags: ["anthro", "feral"] },
  35624. {
  35625. anthroFront: {
  35626. height: math.unit(9, "feet"),
  35627. weight: math.unit(600, "lb"),
  35628. name: "Anthro (Front)",
  35629. image: {
  35630. source: "./media/characters/glint/anthro-front.svg",
  35631. extra: 1097/1018,
  35632. bottom: 28/1125
  35633. }
  35634. },
  35635. anthroBack: {
  35636. height: math.unit(9, "feet"),
  35637. weight: math.unit(600, "lb"),
  35638. name: "Anthro (Back)",
  35639. image: {
  35640. source: "./media/characters/glint/anthro-back.svg",
  35641. extra: 1154/997,
  35642. bottom: 36/1190
  35643. }
  35644. },
  35645. feral: {
  35646. height: math.unit(11, "feet"),
  35647. weight: math.unit(50000, "lb"),
  35648. name: "Feral",
  35649. image: {
  35650. source: "./media/characters/glint/feral.svg",
  35651. extra: 3035/1585,
  35652. bottom: 1169/4204
  35653. }
  35654. },
  35655. dickAnthro: {
  35656. height: math.unit(0.7, "meters"),
  35657. name: "Dick (Anthro)",
  35658. image: {
  35659. source: "./media/characters/glint/dick-anthro.svg"
  35660. }
  35661. },
  35662. dickFeral: {
  35663. height: math.unit(2.65, "meters"),
  35664. name: "Dick (Feral)",
  35665. image: {
  35666. source: "./media/characters/glint/dick-feral.svg"
  35667. }
  35668. },
  35669. slitHidden: {
  35670. height: math.unit(5.85, "meters"),
  35671. name: "Slit (Hidden)",
  35672. image: {
  35673. source: "./media/characters/glint/slit-hidden.svg"
  35674. }
  35675. },
  35676. slitErect: {
  35677. height: math.unit(5.85, "meters"),
  35678. name: "Slit (Erect)",
  35679. image: {
  35680. source: "./media/characters/glint/slit-erect.svg"
  35681. }
  35682. },
  35683. mawAnthro: {
  35684. height: math.unit(0.63, "meters"),
  35685. name: "Maw (Anthro)",
  35686. image: {
  35687. source: "./media/characters/glint/maw.svg"
  35688. }
  35689. },
  35690. mawFeral: {
  35691. height: math.unit(2.89, "meters"),
  35692. name: "Maw (Feral)",
  35693. image: {
  35694. source: "./media/characters/glint/maw.svg"
  35695. }
  35696. },
  35697. },
  35698. [
  35699. {
  35700. name: "Normal",
  35701. height: math.unit(9, "feet"),
  35702. default: true
  35703. },
  35704. ]
  35705. ))
  35706. characterMakers.push(() => makeCharacter(
  35707. { name: "Kairne", species: ["dragon"], tags: ["feral"] },
  35708. {
  35709. side: {
  35710. height: math.unit(15, "feet"),
  35711. weight: math.unit(5000, "kg"),
  35712. name: "Side",
  35713. image: {
  35714. source: "./media/characters/kairne/side.svg",
  35715. extra: 979/811,
  35716. bottom: 13/992
  35717. }
  35718. },
  35719. front: {
  35720. height: math.unit(15, "feet"),
  35721. weight: math.unit(5000, "kg"),
  35722. name: "Front",
  35723. image: {
  35724. source: "./media/characters/kairne/front.svg",
  35725. extra: 908/814,
  35726. bottom: 26/934
  35727. }
  35728. },
  35729. sideNsfw: {
  35730. height: math.unit(15, "feet"),
  35731. weight: math.unit(5000, "kg"),
  35732. name: "Side (NSFW)",
  35733. image: {
  35734. source: "./media/characters/kairne/side-nsfw.svg",
  35735. extra: 979/811,
  35736. bottom: 13/992
  35737. }
  35738. },
  35739. frontNsfw: {
  35740. height: math.unit(15, "feet"),
  35741. weight: math.unit(5000, "kg"),
  35742. name: "Front (NSFW)",
  35743. image: {
  35744. source: "./media/characters/kairne/front-nsfw.svg",
  35745. extra: 908/814,
  35746. bottom: 26/934
  35747. }
  35748. },
  35749. dickCaged: {
  35750. height: math.unit(0.65, "meters"),
  35751. name: "Dick-caged",
  35752. image: {
  35753. source: "./media/characters/kairne/dick-caged.svg"
  35754. }
  35755. },
  35756. dick: {
  35757. height: math.unit(0.79, "meters"),
  35758. name: "Dick",
  35759. image: {
  35760. source: "./media/characters/kairne/dick.svg"
  35761. }
  35762. },
  35763. genitals: {
  35764. height: math.unit(1.29, "meters"),
  35765. name: "Genitals",
  35766. image: {
  35767. source: "./media/characters/kairne/genitals.svg"
  35768. }
  35769. },
  35770. maw: {
  35771. height: math.unit(1.73, "meters"),
  35772. name: "Maw",
  35773. image: {
  35774. source: "./media/characters/kairne/maw.svg"
  35775. }
  35776. },
  35777. },
  35778. [
  35779. {
  35780. name: "Normal",
  35781. height: math.unit(15, "feet"),
  35782. default: true
  35783. },
  35784. ]
  35785. ))
  35786. characterMakers.push(() => makeCharacter(
  35787. { name: "Biscuit (Jackal)", species: ["jackal"], tags: ["anthro"] },
  35788. {
  35789. front: {
  35790. height: math.unit(5 + 8/12, "feet"),
  35791. weight: math.unit(139, "lb"),
  35792. name: "Front",
  35793. image: {
  35794. source: "./media/characters/biscuit-jackal/front.svg",
  35795. extra: 2106/1961,
  35796. bottom: 58/2164
  35797. }
  35798. },
  35799. back: {
  35800. height: math.unit(5 + 8/12, "feet"),
  35801. weight: math.unit(139, "lb"),
  35802. name: "Back",
  35803. image: {
  35804. source: "./media/characters/biscuit-jackal/back.svg",
  35805. extra: 2132/1976,
  35806. bottom: 57/2189
  35807. }
  35808. },
  35809. werejackal: {
  35810. height: math.unit(6 + 3/12, "feet"),
  35811. weight: math.unit(188, "lb"),
  35812. name: "Werejackal",
  35813. image: {
  35814. source: "./media/characters/biscuit-jackal/werejackal.svg",
  35815. extra: 2373/2178,
  35816. bottom: 53/2426
  35817. }
  35818. },
  35819. },
  35820. [
  35821. {
  35822. name: "Normal",
  35823. height: math.unit(5 + 8/12, "feet"),
  35824. default: true
  35825. },
  35826. ]
  35827. ))
  35828. characterMakers.push(() => makeCharacter(
  35829. { name: "Tayra White", species: ["human", "chimera"], tags: ["anthro"] },
  35830. {
  35831. front: {
  35832. height: math.unit(140, "cm"),
  35833. weight: math.unit(45, "kg"),
  35834. name: "Front",
  35835. image: {
  35836. source: "./media/characters/tayra-white/front.svg",
  35837. extra: 2229/2192,
  35838. bottom: 75/2304
  35839. }
  35840. },
  35841. },
  35842. [
  35843. {
  35844. name: "Normal",
  35845. height: math.unit(140, "cm"),
  35846. default: true
  35847. },
  35848. ]
  35849. ))
  35850. characterMakers.push(() => makeCharacter(
  35851. { name: "Scoop", species: ["mouse"], tags: ["anthro"] },
  35852. {
  35853. front: {
  35854. height: math.unit(4 + 5/12, "feet"),
  35855. name: "Front",
  35856. image: {
  35857. source: "./media/characters/scoop/front.svg",
  35858. extra: 1257/1136,
  35859. bottom: 69/1326
  35860. }
  35861. },
  35862. back: {
  35863. height: math.unit(4 + 5/12, "feet"),
  35864. name: "Back",
  35865. image: {
  35866. source: "./media/characters/scoop/back.svg",
  35867. extra: 1321/1152,
  35868. bottom: 32/1353
  35869. }
  35870. },
  35871. maw: {
  35872. height: math.unit(0.68, "feet"),
  35873. name: "Maw",
  35874. image: {
  35875. source: "./media/characters/scoop/maw.svg"
  35876. }
  35877. },
  35878. },
  35879. [
  35880. {
  35881. name: "Really Small",
  35882. height: math.unit(1, "mm")
  35883. },
  35884. {
  35885. name: "Micro",
  35886. height: math.unit(1, "inch")
  35887. },
  35888. {
  35889. name: "Normal",
  35890. height: math.unit(4 + 5/12, "feet"),
  35891. default: true
  35892. },
  35893. {
  35894. name: "Macro",
  35895. height: math.unit(200, "feet")
  35896. },
  35897. {
  35898. name: "Megamacro",
  35899. height: math.unit(3240, "feet")
  35900. },
  35901. {
  35902. name: "Teramacro",
  35903. height: math.unit(2500, "miles")
  35904. },
  35905. ]
  35906. ))
  35907. characterMakers.push(() => makeCharacter(
  35908. { name: "Saphinara", species: ["demon", "snow-leopard"], tags: ["anthro"] },
  35909. {
  35910. front: {
  35911. height: math.unit(15 + 7/12, "feet"),
  35912. weight: math.unit(1150, "tons"),
  35913. name: "Front",
  35914. image: {
  35915. source: "./media/characters/saphinara/front.svg",
  35916. extra: 1837/1643,
  35917. bottom: 84/1921
  35918. },
  35919. form: "normal",
  35920. default: true
  35921. },
  35922. side: {
  35923. height: math.unit(15 + 7/12, "feet"),
  35924. weight: math.unit(1150, "tons"),
  35925. name: "Side",
  35926. image: {
  35927. source: "./media/characters/saphinara/side.svg",
  35928. extra: 605/547,
  35929. bottom: 6/611
  35930. },
  35931. form: "normal"
  35932. },
  35933. back: {
  35934. height: math.unit(15 + 7/12, "feet"),
  35935. weight: math.unit(1150, "tons"),
  35936. name: "Back",
  35937. image: {
  35938. source: "./media/characters/saphinara/back.svg",
  35939. extra: 591/531,
  35940. bottom: 13/604
  35941. },
  35942. form: "normal"
  35943. },
  35944. frontTail: {
  35945. height: math.unit(15 + 7/12, "feet"),
  35946. weight: math.unit(1150, "tons"),
  35947. name: "Front (Full Tail)",
  35948. image: {
  35949. source: "./media/characters/saphinara/front-tail.svg",
  35950. extra: 2256/1630,
  35951. bottom: 261/2517
  35952. },
  35953. form: "normal"
  35954. },
  35955. insides: {
  35956. height: math.unit(11.92, "feet"),
  35957. name: "Insides",
  35958. image: {
  35959. source: "./media/characters/saphinara/insides.svg"
  35960. },
  35961. form: "normal"
  35962. },
  35963. head: {
  35964. height: math.unit(4.17, "feet"),
  35965. name: "Head",
  35966. image: {
  35967. source: "./media/characters/saphinara/head.svg"
  35968. },
  35969. form: "normal"
  35970. },
  35971. tongue: {
  35972. height: math.unit(4.60, "feet"),
  35973. name: "Tongue",
  35974. image: {
  35975. source: "./media/characters/saphinara/tongue.svg"
  35976. },
  35977. form: "normal"
  35978. },
  35979. headEnraged: {
  35980. height: math.unit(5.55, "feet"),
  35981. name: "Head (Enraged)",
  35982. image: {
  35983. source: "./media/characters/saphinara/head-enraged.svg"
  35984. },
  35985. form: "normal"
  35986. },
  35987. wings: {
  35988. height: math.unit(11.95, "feet"),
  35989. name: "Wings",
  35990. image: {
  35991. source: "./media/characters/saphinara/wings.svg"
  35992. },
  35993. form: "normal"
  35994. },
  35995. feathers: {
  35996. height: math.unit(8.92, "feet"),
  35997. name: "Feathers",
  35998. image: {
  35999. source: "./media/characters/saphinara/feathers.svg"
  36000. },
  36001. form: "normal"
  36002. },
  36003. shackles: {
  36004. height: math.unit(2, "feet"),
  36005. name: "Shackles",
  36006. image: {
  36007. source: "./media/characters/saphinara/shackles.svg"
  36008. },
  36009. form: "normal"
  36010. },
  36011. eyes: {
  36012. height: math.unit(1.331, "feet"),
  36013. name: "Eyes",
  36014. image: {
  36015. source: "./media/characters/saphinara/eyes.svg"
  36016. },
  36017. form: "normal"
  36018. },
  36019. eyesEnraged: {
  36020. height: math.unit(1.331, "feet"),
  36021. name: "Eyes (Enraged)",
  36022. image: {
  36023. source: "./media/characters/saphinara/eyes-enraged.svg"
  36024. },
  36025. form: "normal"
  36026. },
  36027. trueFormSide: {
  36028. height: math.unit(200, "feet"),
  36029. weight: math.unit(1e7, "tons"),
  36030. name: "Side",
  36031. image: {
  36032. source: "./media/characters/saphinara/true-form-side.svg",
  36033. extra: 1399/770,
  36034. bottom: 97/1496
  36035. },
  36036. form: "true-form",
  36037. default: true
  36038. },
  36039. trueFormMaw: {
  36040. height: math.unit(71.5, "feet"),
  36041. name: "Maw",
  36042. image: {
  36043. source: "./media/characters/saphinara/true-form-maw.svg",
  36044. extra: 2302/1453,
  36045. bottom: 0/2302
  36046. },
  36047. form: "true-form"
  36048. },
  36049. meowberusSide: {
  36050. height: math.unit(75, "feet"),
  36051. weight: math.unit(180000, "kg"),
  36052. preyCapacity: math.unit(50000, "people"),
  36053. name: "Side",
  36054. image: {
  36055. source: "./media/characters/saphinara/meowberus-side.svg",
  36056. extra: 1400/711,
  36057. bottom: 126/1526
  36058. },
  36059. form: "meowberus",
  36060. extraAttributes: {
  36061. "pawArea": {
  36062. name: "Paw Size",
  36063. power: 2,
  36064. type: "area",
  36065. base: math.unit(35, "m^2")
  36066. }
  36067. }
  36068. },
  36069. },
  36070. [
  36071. {
  36072. name: "Normal",
  36073. height: math.unit(15 + 7/12, "feet"),
  36074. default: true,
  36075. form: "normal"
  36076. },
  36077. {
  36078. name: "Angry",
  36079. height: math.unit(30 + 6/12, "feet"),
  36080. form: "normal"
  36081. },
  36082. {
  36083. name: "Enraged",
  36084. height: math.unit(102 + 1/12, "feet"),
  36085. form: "normal"
  36086. },
  36087. {
  36088. name: "True",
  36089. height: math.unit(200, "feet"),
  36090. default: true,
  36091. form: "true-form"
  36092. },
  36093. {
  36094. name: "Normal",
  36095. height: math.unit(75, "feet"),
  36096. default: true,
  36097. form: "meowberus"
  36098. },
  36099. ],
  36100. {
  36101. "normal": {
  36102. name: "Normal",
  36103. default: true
  36104. },
  36105. "true-form": {
  36106. name: "True Form"
  36107. },
  36108. "meowberus": {
  36109. name: "Meowberus",
  36110. },
  36111. }
  36112. ))
  36113. characterMakers.push(() => makeCharacter(
  36114. { name: "Jrain", species: ["leviathan"], tags: ["anthro"] },
  36115. {
  36116. front: {
  36117. height: math.unit(6 + 8/12, "feet"),
  36118. weight: math.unit(300, "lb"),
  36119. name: "Front",
  36120. image: {
  36121. source: "./media/characters/jrain/front.svg",
  36122. extra: 3039/2865,
  36123. bottom: 399/3438
  36124. }
  36125. },
  36126. back: {
  36127. height: math.unit(6 + 8/12, "feet"),
  36128. weight: math.unit(300, "lb"),
  36129. name: "Back",
  36130. image: {
  36131. source: "./media/characters/jrain/back.svg",
  36132. extra: 3089/2938,
  36133. bottom: 172/3261
  36134. }
  36135. },
  36136. head: {
  36137. height: math.unit(2.14, "feet"),
  36138. name: "Head",
  36139. image: {
  36140. source: "./media/characters/jrain/head.svg"
  36141. }
  36142. },
  36143. maw: {
  36144. height: math.unit(1.77, "feet"),
  36145. name: "Maw",
  36146. image: {
  36147. source: "./media/characters/jrain/maw.svg"
  36148. }
  36149. },
  36150. leftHand: {
  36151. height: math.unit(1.1, "feet"),
  36152. name: "Left Hand",
  36153. image: {
  36154. source: "./media/characters/jrain/left-hand.svg"
  36155. }
  36156. },
  36157. rightHand: {
  36158. height: math.unit(1.1, "feet"),
  36159. name: "Right Hand",
  36160. image: {
  36161. source: "./media/characters/jrain/right-hand.svg"
  36162. }
  36163. },
  36164. eye: {
  36165. height: math.unit(0.35, "feet"),
  36166. name: "Eye",
  36167. image: {
  36168. source: "./media/characters/jrain/eye.svg"
  36169. }
  36170. },
  36171. },
  36172. [
  36173. {
  36174. name: "Normal",
  36175. height: math.unit(6 + 8/12, "feet"),
  36176. default: true
  36177. },
  36178. {
  36179. name: "Casually Large",
  36180. height: math.unit(25, "feet")
  36181. },
  36182. {
  36183. name: "Giant",
  36184. height: math.unit(100, "feet")
  36185. },
  36186. {
  36187. name: "Kaiju",
  36188. height: math.unit(300, "feet")
  36189. },
  36190. ]
  36191. ))
  36192. characterMakers.push(() => makeCharacter(
  36193. { name: "Sabrina", species: ["dragon", "snake", "gryphon"], tags: ["feral"] },
  36194. {
  36195. dragon: {
  36196. height: math.unit(5, "meters"),
  36197. name: "Dragon",
  36198. image: {
  36199. source: "./media/characters/sabrina/dragon.svg",
  36200. extra: 3670 / 2365,
  36201. bottom: 333 / 4003
  36202. }
  36203. },
  36204. gryphon: {
  36205. height: math.unit(3, "meters"),
  36206. name: "Gryphon",
  36207. image: {
  36208. source: "./media/characters/sabrina/gryphon.svg",
  36209. extra: 1576 / 945,
  36210. bottom: 71 / 1647
  36211. }
  36212. },
  36213. snake: {
  36214. height: math.unit(12, "meters"),
  36215. name: "Snake",
  36216. image: {
  36217. source: "./media/characters/sabrina/snake.svg",
  36218. extra: 1758 / 1320,
  36219. bottom: 186 / 1944
  36220. }
  36221. },
  36222. collar: {
  36223. height: math.unit(1.86, "meters"),
  36224. name: "Collar",
  36225. image: {
  36226. source: "./media/characters/sabrina/collar.svg"
  36227. }
  36228. },
  36229. eye: {
  36230. height: math.unit(0.53, "meters"),
  36231. name: "Eye",
  36232. image: {
  36233. source: "./media/characters/sabrina/eye.svg"
  36234. }
  36235. },
  36236. foot: {
  36237. height: math.unit(1.86, "meters"),
  36238. name: "Foot",
  36239. image: {
  36240. source: "./media/characters/sabrina/foot.svg"
  36241. }
  36242. },
  36243. hand: {
  36244. height: math.unit(1.32, "meters"),
  36245. name: "Hand",
  36246. image: {
  36247. source: "./media/characters/sabrina/hand.svg"
  36248. }
  36249. },
  36250. head: {
  36251. height: math.unit(2.44, "meters"),
  36252. name: "Head",
  36253. image: {
  36254. source: "./media/characters/sabrina/head.svg"
  36255. }
  36256. },
  36257. headAngry: {
  36258. height: math.unit(2.44, "meters"),
  36259. name: "Head (Angry))",
  36260. image: {
  36261. source: "./media/characters/sabrina/head-angry.svg"
  36262. }
  36263. },
  36264. maw: {
  36265. height: math.unit(1.65, "meters"),
  36266. name: "Maw",
  36267. image: {
  36268. source: "./media/characters/sabrina/maw.svg"
  36269. }
  36270. },
  36271. spikes: {
  36272. height: math.unit(1.69, "meters"),
  36273. name: "Spikes",
  36274. image: {
  36275. source: "./media/characters/sabrina/spikes.svg"
  36276. }
  36277. },
  36278. stomach: {
  36279. height: math.unit(1.15, "meters"),
  36280. name: "Stomach",
  36281. image: {
  36282. source: "./media/characters/sabrina/stomach.svg"
  36283. }
  36284. },
  36285. tongue: {
  36286. height: math.unit(1.27, "meters"),
  36287. name: "Tongue",
  36288. image: {
  36289. source: "./media/characters/sabrina/tongue.svg"
  36290. }
  36291. },
  36292. wingDorsal: {
  36293. height: math.unit(4.85, "meters"),
  36294. name: "Wing (Dorsal)",
  36295. image: {
  36296. source: "./media/characters/sabrina/wing-dorsal.svg"
  36297. }
  36298. },
  36299. wingVentral: {
  36300. height: math.unit(4.85, "meters"),
  36301. name: "Wing (Ventral)",
  36302. image: {
  36303. source: "./media/characters/sabrina/wing-ventral.svg"
  36304. }
  36305. },
  36306. },
  36307. [
  36308. {
  36309. name: "Normal",
  36310. height: math.unit(5, "meters"),
  36311. default: true
  36312. },
  36313. ]
  36314. ))
  36315. characterMakers.push(() => makeCharacter(
  36316. { name: "Midnight Tales", species: ["bat"], tags: ["anthro"] },
  36317. {
  36318. frontMaid: {
  36319. height: math.unit(5 + 5/12, "feet"),
  36320. weight: math.unit(130, "lb"),
  36321. name: "Front (Maid)",
  36322. image: {
  36323. source: "./media/characters/midnight-tales/front-maid.svg",
  36324. extra: 489/454,
  36325. bottom: 61/550
  36326. }
  36327. },
  36328. frontFormal: {
  36329. height: math.unit(5 + 5/12, "feet"),
  36330. weight: math.unit(130, "lb"),
  36331. name: "Front (Formal)",
  36332. image: {
  36333. source: "./media/characters/midnight-tales/front-formal.svg",
  36334. extra: 489/454,
  36335. bottom: 61/550
  36336. }
  36337. },
  36338. back: {
  36339. height: math.unit(5 + 5/12, "feet"),
  36340. weight: math.unit(130, "lb"),
  36341. name: "Back",
  36342. image: {
  36343. source: "./media/characters/midnight-tales/back.svg",
  36344. extra: 498/456,
  36345. bottom: 33/531
  36346. }
  36347. },
  36348. frontBeast: {
  36349. height: math.unit(40, "feet"),
  36350. weight: math.unit(64000, "lb"),
  36351. name: "Front (Beast)",
  36352. image: {
  36353. source: "./media/characters/midnight-tales/front-beast.svg",
  36354. extra: 927/860,
  36355. bottom: 53/980
  36356. }
  36357. },
  36358. backBeast: {
  36359. height: math.unit(40, "feet"),
  36360. weight: math.unit(64000, "lb"),
  36361. name: "Back (Beast)",
  36362. image: {
  36363. source: "./media/characters/midnight-tales/back-beast.svg",
  36364. extra: 929/855,
  36365. bottom: 16/945
  36366. }
  36367. },
  36368. footBeast: {
  36369. height: math.unit(6.7, "feet"),
  36370. name: "Foot (Beast)",
  36371. image: {
  36372. source: "./media/characters/midnight-tales/foot-beast.svg"
  36373. }
  36374. },
  36375. headBeast: {
  36376. height: math.unit(8, "feet"),
  36377. name: "Head (Beast)",
  36378. image: {
  36379. source: "./media/characters/midnight-tales/head-beast.svg"
  36380. }
  36381. },
  36382. },
  36383. [
  36384. {
  36385. name: "Normal",
  36386. height: math.unit(5 + 5 / 12, "feet"),
  36387. default: true
  36388. },
  36389. {
  36390. name: "Macro",
  36391. height: math.unit(25, "feet")
  36392. },
  36393. ]
  36394. ))
  36395. characterMakers.push(() => makeCharacter(
  36396. { name: "Argon", species: ["dragon"], tags: ["anthro"] },
  36397. {
  36398. front: {
  36399. height: math.unit(5 + 10/12, "feet"),
  36400. name: "Front",
  36401. image: {
  36402. source: "./media/characters/argon/front.svg",
  36403. extra: 2009/1935,
  36404. bottom: 118/2127
  36405. }
  36406. },
  36407. back: {
  36408. height: math.unit(5 + 10/12, "feet"),
  36409. name: "Back",
  36410. image: {
  36411. source: "./media/characters/argon/back.svg",
  36412. extra: 2047/1992,
  36413. bottom: 20/2067
  36414. }
  36415. },
  36416. frontDressed: {
  36417. height: math.unit(5 + 10/12, "feet"),
  36418. name: "Front (Dressed)",
  36419. image: {
  36420. source: "./media/characters/argon/front-dressed.svg",
  36421. extra: 2009/1935,
  36422. bottom: 118/2127
  36423. }
  36424. },
  36425. },
  36426. [
  36427. {
  36428. name: "Normal",
  36429. height: math.unit(5 + 10/12, "feet"),
  36430. default: true
  36431. },
  36432. ]
  36433. ))
  36434. characterMakers.push(() => makeCharacter(
  36435. { name: "Kichi", species: ["bull", "tanuki"], tags: ["anthro"] },
  36436. {
  36437. front: {
  36438. height: math.unit(8 + 6/12, "feet"),
  36439. weight: math.unit(1150, "lb"),
  36440. name: "Front",
  36441. image: {
  36442. source: "./media/characters/kichi/front.svg",
  36443. extra: 1267/1164,
  36444. bottom: 61/1328
  36445. }
  36446. },
  36447. back: {
  36448. height: math.unit(8 + 6/12, "feet"),
  36449. weight: math.unit(1150, "lb"),
  36450. name: "Back",
  36451. image: {
  36452. source: "./media/characters/kichi/back.svg",
  36453. extra: 1273/1166,
  36454. bottom: 33/1306
  36455. }
  36456. },
  36457. },
  36458. [
  36459. {
  36460. name: "Normal",
  36461. height: math.unit(8 + 6/12, "feet"),
  36462. default: true
  36463. },
  36464. ]
  36465. ))
  36466. characterMakers.push(() => makeCharacter(
  36467. { name: "Manetel Greyscale", species: ["dragon"], tags: ["anthro"] },
  36468. {
  36469. front: {
  36470. height: math.unit(6, "feet"),
  36471. weight: math.unit(210, "lb"),
  36472. name: "Front",
  36473. image: {
  36474. source: "./media/characters/manetel-greyscale/front.svg",
  36475. extra: 350/312,
  36476. bottom: 8/358
  36477. }
  36478. },
  36479. },
  36480. [
  36481. {
  36482. name: "Micro",
  36483. height: math.unit(2, "inches")
  36484. },
  36485. {
  36486. name: "Normal",
  36487. height: math.unit(6, "feet"),
  36488. default: true
  36489. },
  36490. {
  36491. name: "Minimacro",
  36492. height: math.unit(17, "feet")
  36493. },
  36494. {
  36495. name: "Macro",
  36496. height: math.unit(117, "feet")
  36497. },
  36498. ]
  36499. ))
  36500. characterMakers.push(() => makeCharacter(
  36501. { name: "Softpurr", species: ["chakat"], tags: ["taur"] },
  36502. {
  36503. side: {
  36504. height: math.unit(5 + 1/12, "feet"),
  36505. weight: math.unit(418, "lb"),
  36506. name: "Side",
  36507. image: {
  36508. source: "./media/characters/softpurr/side.svg",
  36509. extra: 1993/1945,
  36510. bottom: 134/2127
  36511. }
  36512. },
  36513. front: {
  36514. height: math.unit(5 + 1/12, "feet"),
  36515. weight: math.unit(418, "lb"),
  36516. name: "Front",
  36517. image: {
  36518. source: "./media/characters/softpurr/front.svg",
  36519. extra: 1950/1856,
  36520. bottom: 174/2124
  36521. }
  36522. },
  36523. paw: {
  36524. height: math.unit(1, "feet"),
  36525. name: "Paw",
  36526. image: {
  36527. source: "./media/characters/softpurr/paw.svg"
  36528. }
  36529. },
  36530. },
  36531. [
  36532. {
  36533. name: "Normal",
  36534. height: math.unit(5 + 1/12, "feet"),
  36535. default: true
  36536. },
  36537. ]
  36538. ))
  36539. characterMakers.push(() => makeCharacter(
  36540. { name: "Anahita", species: ["shark"], tags: ["anthro"] },
  36541. {
  36542. front: {
  36543. height: math.unit(260, "meters"),
  36544. name: "Front",
  36545. image: {
  36546. source: "./media/characters/anahita/front.svg",
  36547. extra: 665/635,
  36548. bottom: 89/754
  36549. }
  36550. },
  36551. },
  36552. [
  36553. {
  36554. name: "Macro",
  36555. height: math.unit(260, "meters"),
  36556. default: true
  36557. },
  36558. ]
  36559. ))
  36560. characterMakers.push(() => makeCharacter(
  36561. { name: "Chip (Mouse)", species: ["mouse"], tags: ["anthro"] },
  36562. {
  36563. front: {
  36564. height: math.unit(4 + 10/12, "feet"),
  36565. weight: math.unit(160, "lb"),
  36566. name: "Front",
  36567. image: {
  36568. source: "./media/characters/chip-mouse/front.svg",
  36569. extra: 3528/3408,
  36570. bottom: 0/3528
  36571. }
  36572. },
  36573. frontNsfw: {
  36574. height: math.unit(4 + 10/12, "feet"),
  36575. weight: math.unit(160, "lb"),
  36576. name: "Front (NSFW)",
  36577. image: {
  36578. source: "./media/characters/chip-mouse/front-nsfw.svg",
  36579. extra: 3528/3408,
  36580. bottom: 0/3528
  36581. }
  36582. },
  36583. },
  36584. [
  36585. {
  36586. name: "Normal",
  36587. height: math.unit(4 + 10/12, "feet"),
  36588. default: true
  36589. },
  36590. ]
  36591. ))
  36592. characterMakers.push(() => makeCharacter(
  36593. { name: "Kremm", species: ["dragon"], tags: ["feral"] },
  36594. {
  36595. side: {
  36596. height: math.unit(10, "feet"),
  36597. weight: math.unit(14000, "lb"),
  36598. name: "Side",
  36599. image: {
  36600. source: "./media/characters/kremm/side.svg",
  36601. extra: 1390/1053,
  36602. bottom: 90/1480
  36603. }
  36604. },
  36605. gut: {
  36606. height: math.unit(5.8, "feet"),
  36607. name: "Gut",
  36608. image: {
  36609. source: "./media/characters/kremm/gut.svg"
  36610. }
  36611. },
  36612. ass: {
  36613. height: math.unit(6.1, "feet"),
  36614. name: "Ass",
  36615. image: {
  36616. source: "./media/characters/kremm/ass.svg"
  36617. }
  36618. },
  36619. jaws: {
  36620. height: math.unit(2.2, "feet"),
  36621. name: "Jaws",
  36622. image: {
  36623. source: "./media/characters/kremm/jaws.svg"
  36624. }
  36625. },
  36626. dick: {
  36627. height: math.unit(4.26, "feet"),
  36628. name: "Dick",
  36629. image: {
  36630. source: "./media/characters/kremm/dick.svg"
  36631. }
  36632. },
  36633. },
  36634. [
  36635. {
  36636. name: "Normal",
  36637. height: math.unit(10, "feet"),
  36638. default: true
  36639. },
  36640. ]
  36641. ))
  36642. characterMakers.push(() => makeCharacter(
  36643. { name: "Kai", species: ["skunk"], tags: ["anthro"] },
  36644. {
  36645. front: {
  36646. height: math.unit(30, "stories"),
  36647. name: "Front",
  36648. image: {
  36649. source: "./media/characters/kai/front.svg",
  36650. extra: 1892/1718,
  36651. bottom: 162/2054
  36652. }
  36653. },
  36654. },
  36655. [
  36656. {
  36657. name: "Macro",
  36658. height: math.unit(30, "stories"),
  36659. default: true
  36660. },
  36661. ]
  36662. ))
  36663. characterMakers.push(() => makeCharacter(
  36664. { name: "Sykes", species: ["maned-wolf"], tags: ["anthro"] },
  36665. {
  36666. front: {
  36667. height: math.unit(6 + 4/12, "feet"),
  36668. weight: math.unit(145, "lb"),
  36669. name: "Front",
  36670. image: {
  36671. source: "./media/characters/sykes/front.svg",
  36672. extra: 1321 / 1187,
  36673. bottom: 66 / 1387
  36674. }
  36675. },
  36676. back: {
  36677. height: math.unit(6 + 4/12, "feet"),
  36678. weight: math.unit(145, "lb"),
  36679. name: "Back",
  36680. image: {
  36681. source: "./media/characters/sykes/back.svg",
  36682. extra: 1326/1181,
  36683. bottom: 31/1357
  36684. }
  36685. },
  36686. traditionalOutfit: {
  36687. height: math.unit(6 + 4/12, "feet"),
  36688. weight: math.unit(145, "lb"),
  36689. name: "Traditional Outfit",
  36690. image: {
  36691. source: "./media/characters/sykes/traditional-outfit.svg",
  36692. extra: 1321 / 1187,
  36693. bottom: 66 / 1387
  36694. }
  36695. },
  36696. adventureOutfit: {
  36697. height: math.unit(6 + 4/12, "feet"),
  36698. weight: math.unit(145, "lb"),
  36699. name: "Adventure Outfit",
  36700. image: {
  36701. source: "./media/characters/sykes/adventure-outfit.svg",
  36702. extra: 1321 / 1187,
  36703. bottom: 66 / 1387
  36704. }
  36705. },
  36706. handLeft: {
  36707. height: math.unit(0.9, "feet"),
  36708. name: "Hand (Left)",
  36709. image: {
  36710. source: "./media/characters/sykes/hand-left.svg"
  36711. }
  36712. },
  36713. handRight: {
  36714. height: math.unit(0.839, "feet"),
  36715. name: "Hand (Right)",
  36716. image: {
  36717. source: "./media/characters/sykes/hand-right.svg"
  36718. }
  36719. },
  36720. leftFoot: {
  36721. height: math.unit(1.2, "feet"),
  36722. name: "Foot (Left)",
  36723. image: {
  36724. source: "./media/characters/sykes/foot-left.svg"
  36725. }
  36726. },
  36727. rightFoot: {
  36728. height: math.unit(1.2, "feet"),
  36729. name: "Foot (Right)",
  36730. image: {
  36731. source: "./media/characters/sykes/foot-right.svg"
  36732. }
  36733. },
  36734. maw: {
  36735. height: math.unit(1.93, "feet"),
  36736. name: "Maw",
  36737. image: {
  36738. source: "./media/characters/sykes/maw.svg"
  36739. }
  36740. },
  36741. teeth: {
  36742. height: math.unit(0.51, "feet"),
  36743. name: "Teeth",
  36744. image: {
  36745. source: "./media/characters/sykes/teeth.svg"
  36746. }
  36747. },
  36748. tongue: {
  36749. height: math.unit(2.13, "feet"),
  36750. name: "Tongue",
  36751. image: {
  36752. source: "./media/characters/sykes/tongue.svg"
  36753. }
  36754. },
  36755. uvula: {
  36756. height: math.unit(0.16, "feet"),
  36757. name: "Uvula",
  36758. image: {
  36759. source: "./media/characters/sykes/uvula.svg"
  36760. }
  36761. },
  36762. collar: {
  36763. height: math.unit(0.287, "feet"),
  36764. name: "Collar",
  36765. image: {
  36766. source: "./media/characters/sykes/collar.svg"
  36767. }
  36768. },
  36769. tail: {
  36770. height: math.unit(3.8, "feet"),
  36771. name: "Tail",
  36772. image: {
  36773. source: "./media/characters/sykes/tail.svg"
  36774. }
  36775. },
  36776. },
  36777. [
  36778. {
  36779. name: "Shrunken",
  36780. height: math.unit(5, "inches")
  36781. },
  36782. {
  36783. name: "Normal",
  36784. height: math.unit(6 + 4 / 12, "feet"),
  36785. default: true
  36786. },
  36787. {
  36788. name: "Big",
  36789. height: math.unit(15, "feet")
  36790. },
  36791. ]
  36792. ))
  36793. characterMakers.push(() => makeCharacter(
  36794. { name: "Oven Otter", species: ["otter"], tags: ["anthro"] },
  36795. {
  36796. front: {
  36797. height: math.unit(5 + 8/12, "feet"),
  36798. weight: math.unit(190, "lb"),
  36799. name: "Front",
  36800. image: {
  36801. source: "./media/characters/oven-otter/front.svg",
  36802. extra: 1809/1740,
  36803. bottom: 181/1990
  36804. }
  36805. },
  36806. back: {
  36807. height: math.unit(5 + 8/12, "feet"),
  36808. weight: math.unit(190, "lb"),
  36809. name: "Back",
  36810. image: {
  36811. source: "./media/characters/oven-otter/back.svg",
  36812. extra: 1709/1635,
  36813. bottom: 118/1827
  36814. }
  36815. },
  36816. hand: {
  36817. height: math.unit(1.07, "feet"),
  36818. name: "Hand",
  36819. image: {
  36820. source: "./media/characters/oven-otter/hand.svg"
  36821. }
  36822. },
  36823. beans: {
  36824. height: math.unit(1.74, "feet"),
  36825. name: "Beans",
  36826. image: {
  36827. source: "./media/characters/oven-otter/beans.svg"
  36828. }
  36829. },
  36830. },
  36831. [
  36832. {
  36833. name: "Micro",
  36834. height: math.unit(0.5, "inches")
  36835. },
  36836. {
  36837. name: "Normal",
  36838. height: math.unit(5 + 8/12, "feet"),
  36839. default: true
  36840. },
  36841. {
  36842. name: "Macro",
  36843. height: math.unit(250, "feet")
  36844. },
  36845. {
  36846. name: "Really High",
  36847. height: math.unit(420, "feet")
  36848. },
  36849. ]
  36850. ))
  36851. characterMakers.push(() => makeCharacter(
  36852. { name: "Devourer", species: ["dragon", "monster"], tags: ["anthro"] },
  36853. {
  36854. front: {
  36855. height: math.unit(5, "meters"),
  36856. weight: math.unit(292000000000000, "kg"),
  36857. name: "Front",
  36858. image: {
  36859. source: "./media/characters/devourer/front.svg",
  36860. extra: 1800/1733,
  36861. bottom: 211/2011
  36862. }
  36863. },
  36864. maw: {
  36865. height: math.unit(1.1, "meter"),
  36866. name: "Maw",
  36867. image: {
  36868. source: "./media/characters/devourer/maw.svg"
  36869. }
  36870. },
  36871. },
  36872. [
  36873. {
  36874. name: "Small",
  36875. height: math.unit(3, "meters")
  36876. },
  36877. {
  36878. name: "Large",
  36879. height: math.unit(5, "meters"),
  36880. default: true
  36881. },
  36882. ]
  36883. ))
  36884. characterMakers.push(() => makeCharacter(
  36885. { name: "Ellarby", species: ["hydra"], tags: ["feral"] },
  36886. {
  36887. front: {
  36888. height: math.unit(6, "feet"),
  36889. weight: math.unit(400, "lb"),
  36890. name: "Front",
  36891. image: {
  36892. source: "./media/characters/ellarby/front.svg",
  36893. extra: 1909/1763,
  36894. bottom: 80/1989
  36895. }
  36896. },
  36897. back: {
  36898. height: math.unit(6, "feet"),
  36899. weight: math.unit(400, "lb"),
  36900. name: "Back",
  36901. image: {
  36902. source: "./media/characters/ellarby/back.svg",
  36903. extra: 1914/1784,
  36904. bottom: 172/2086
  36905. }
  36906. },
  36907. },
  36908. [
  36909. {
  36910. name: "Mischief",
  36911. height: math.unit(18, "inches")
  36912. },
  36913. {
  36914. name: "Trouble",
  36915. height: math.unit(12, "feet")
  36916. },
  36917. {
  36918. name: "Havoc",
  36919. height: math.unit(200, "feet"),
  36920. default: true
  36921. },
  36922. {
  36923. name: "Pandemonium",
  36924. height: math.unit(1, "mile")
  36925. },
  36926. {
  36927. name: "Catastrophe",
  36928. height: math.unit(100, "miles")
  36929. },
  36930. ]
  36931. ))
  36932. characterMakers.push(() => makeCharacter(
  36933. { name: "Vex", species: ["dragon"], tags: ["feral"] },
  36934. {
  36935. front: {
  36936. height: math.unit(4.7, "meters"),
  36937. weight: math.unit(6500, "kg"),
  36938. name: "Front",
  36939. image: {
  36940. source: "./media/characters/vex/front.svg",
  36941. extra: 1288/1140,
  36942. bottom: 100/1388
  36943. }
  36944. },
  36945. },
  36946. [
  36947. {
  36948. name: "Normal",
  36949. height: math.unit(4.7, "meters"),
  36950. default: true
  36951. },
  36952. ]
  36953. ))
  36954. characterMakers.push(() => makeCharacter(
  36955. { name: "Teshy", species: ["pangolin", "monster"], tags: ["anthro"] },
  36956. {
  36957. normal: {
  36958. height: math.unit(6, "feet"),
  36959. weight: math.unit(350, "lb"),
  36960. name: "Normal",
  36961. image: {
  36962. source: "./media/characters/teshy/normal.svg",
  36963. extra: 1795/1735,
  36964. bottom: 16/1811
  36965. }
  36966. },
  36967. monsterFront: {
  36968. height: math.unit(12, "feet"),
  36969. weight: math.unit(4700, "lb"),
  36970. name: "Monster (Front)",
  36971. image: {
  36972. source: "./media/characters/teshy/monster-front.svg",
  36973. extra: 2042/2034,
  36974. bottom: 128/2170
  36975. }
  36976. },
  36977. monsterSide: {
  36978. height: math.unit(12, "feet"),
  36979. weight: math.unit(4700, "lb"),
  36980. name: "Monster (Side)",
  36981. image: {
  36982. source: "./media/characters/teshy/monster-side.svg",
  36983. extra: 2067/2056,
  36984. bottom: 70/2137
  36985. }
  36986. },
  36987. monsterBack: {
  36988. height: math.unit(12, "feet"),
  36989. weight: math.unit(4700, "lb"),
  36990. name: "Monster (Back)",
  36991. image: {
  36992. source: "./media/characters/teshy/monster-back.svg",
  36993. extra: 1921/1914,
  36994. bottom: 171/2092
  36995. }
  36996. },
  36997. },
  36998. [
  36999. {
  37000. name: "Normal",
  37001. height: math.unit(6, "feet"),
  37002. default: true
  37003. },
  37004. ]
  37005. ))
  37006. characterMakers.push(() => makeCharacter(
  37007. { name: "Ramey", species: ["raccoon"], tags: ["anthro"] },
  37008. {
  37009. front: {
  37010. height: math.unit(6, "feet"),
  37011. name: "Front",
  37012. image: {
  37013. source: "./media/characters/ramey/front.svg",
  37014. extra: 790/787,
  37015. bottom: 27/817
  37016. }
  37017. },
  37018. },
  37019. [
  37020. {
  37021. name: "Normal",
  37022. height: math.unit(6, "feet"),
  37023. default: true
  37024. },
  37025. ]
  37026. ))
  37027. characterMakers.push(() => makeCharacter(
  37028. { name: "Phirae", species: ["cat"], tags: ["anthro"] },
  37029. {
  37030. front: {
  37031. height: math.unit(5 + 5/12, "feet"),
  37032. weight: math.unit(120, "lb"),
  37033. name: "Front",
  37034. image: {
  37035. source: "./media/characters/phirae/front.svg",
  37036. extra: 2491/2436,
  37037. bottom: 38/2529
  37038. }
  37039. },
  37040. },
  37041. [
  37042. {
  37043. name: "Normal",
  37044. height: math.unit(5 + 5/12, "feet"),
  37045. default: true
  37046. },
  37047. ]
  37048. ))
  37049. characterMakers.push(() => makeCharacter(
  37050. { name: "Stagglas", species: ["dragon"], tags: ["anthro", "feral"] },
  37051. {
  37052. front: {
  37053. height: math.unit(5 + 3/12, "feet"),
  37054. name: "Front",
  37055. image: {
  37056. source: "./media/characters/stagglas/front.svg",
  37057. extra: 962/882,
  37058. bottom: 53/1015
  37059. }
  37060. },
  37061. feral: {
  37062. height: math.unit(335, "cm"),
  37063. name: "Feral",
  37064. image: {
  37065. source: "./media/characters/stagglas/feral.svg",
  37066. extra: 1732/1090,
  37067. bottom: 48/1780
  37068. }
  37069. },
  37070. },
  37071. [
  37072. {
  37073. name: "Normal",
  37074. height: math.unit(5 + 3/12, "feet"),
  37075. default: true
  37076. },
  37077. ]
  37078. ))
  37079. characterMakers.push(() => makeCharacter(
  37080. { name: "Starra", species: ["dragon"], tags: ["anthro"] },
  37081. {
  37082. front: {
  37083. height: math.unit(5 + 4/12, "feet"),
  37084. weight: math.unit(145, "lb"),
  37085. name: "Front",
  37086. image: {
  37087. source: "./media/characters/starra/front.svg",
  37088. extra: 1790/1691,
  37089. bottom: 91/1881
  37090. }
  37091. },
  37092. },
  37093. [
  37094. {
  37095. name: "Normal",
  37096. height: math.unit(5 + 4/12, "feet"),
  37097. default: true
  37098. },
  37099. ]
  37100. ))
  37101. characterMakers.push(() => makeCharacter(
  37102. { name: "Dr. Kaizo Inazuma", species: ["zorgoia"], tags: ["anthro"] },
  37103. {
  37104. front: {
  37105. height: math.unit(3.5, "meters"),
  37106. name: "Front",
  37107. image: {
  37108. source: "./media/characters/dr-kaizo-inazuma/front.svg",
  37109. extra: 1248/972,
  37110. bottom: 38/1286
  37111. }
  37112. },
  37113. },
  37114. [
  37115. {
  37116. name: "Normal",
  37117. height: math.unit(3.5, "meters"),
  37118. default: true
  37119. },
  37120. ]
  37121. ))
  37122. characterMakers.push(() => makeCharacter(
  37123. { name: "Mika Valentine", species: ["red-panda"], tags: ["taur"] },
  37124. {
  37125. side: {
  37126. height: math.unit(8 + 2/12, "feet"),
  37127. weight: math.unit(1240, "lb"),
  37128. name: "Side",
  37129. image: {
  37130. source: "./media/characters/mika-valentine/side.svg",
  37131. extra: 2670/2501,
  37132. bottom: 250/2920
  37133. }
  37134. },
  37135. },
  37136. [
  37137. {
  37138. name: "Normal",
  37139. height: math.unit(8 + 2/12, "feet"),
  37140. default: true
  37141. },
  37142. ]
  37143. ))
  37144. characterMakers.push(() => makeCharacter(
  37145. { name: "Xoltol", species: ["dragon"], tags: ["anthro"] },
  37146. {
  37147. front: {
  37148. height: math.unit(7 + 2/12, "feet"),
  37149. name: "Front",
  37150. image: {
  37151. source: "./media/characters/xoltol/front.svg",
  37152. extra: 2212/2124,
  37153. bottom: 84/2296
  37154. }
  37155. },
  37156. side: {
  37157. height: math.unit(7 + 2/12, "feet"),
  37158. name: "Side",
  37159. image: {
  37160. source: "./media/characters/xoltol/side.svg",
  37161. extra: 2273/2197,
  37162. bottom: 26/2299
  37163. }
  37164. },
  37165. hand: {
  37166. height: math.unit(2.5, "feet"),
  37167. name: "Hand",
  37168. image: {
  37169. source: "./media/characters/xoltol/hand.svg"
  37170. }
  37171. },
  37172. },
  37173. [
  37174. {
  37175. name: "Small-ish",
  37176. height: math.unit(5 + 11/12, "feet")
  37177. },
  37178. {
  37179. name: "Normal",
  37180. height: math.unit(7 + 2/12, "feet")
  37181. },
  37182. {
  37183. name: "\"Macro\"",
  37184. height: math.unit(14 + 9/12, "feet"),
  37185. default: true
  37186. },
  37187. {
  37188. name: "Alternate Height",
  37189. height: math.unit(20, "feet")
  37190. },
  37191. {
  37192. name: "Actually Macro",
  37193. height: math.unit(100, "feet")
  37194. },
  37195. ]
  37196. ))
  37197. characterMakers.push(() => makeCharacter(
  37198. { name: "Kotetsu Redwood", species: ["zigzagoon"], tags: ["anthro"] },
  37199. {
  37200. front: {
  37201. height: math.unit(5 + 2/12, "feet"),
  37202. weight: math.unit(75, "kg"),
  37203. name: "Front",
  37204. image: {
  37205. source: "./media/characters/kotetsu-redwood/front.svg",
  37206. extra: 1053/942,
  37207. bottom: 60/1113
  37208. }
  37209. },
  37210. },
  37211. [
  37212. {
  37213. name: "Normal",
  37214. height: math.unit(5 + 2/12, "feet"),
  37215. default: true
  37216. },
  37217. ]
  37218. ))
  37219. characterMakers.push(() => makeCharacter(
  37220. { name: "Lilith", species: ["vulture"], tags: ["anthro"] },
  37221. {
  37222. front: {
  37223. height: math.unit(2.4, "meters"),
  37224. weight: math.unit(125, "kg"),
  37225. name: "Front",
  37226. image: {
  37227. source: "./media/characters/lilith/front.svg",
  37228. extra: 1590/1513,
  37229. bottom: 203/1793
  37230. }
  37231. },
  37232. },
  37233. [
  37234. {
  37235. name: "Humanoid",
  37236. height: math.unit(2.4, "meters")
  37237. },
  37238. {
  37239. name: "Normal",
  37240. height: math.unit(6, "meters"),
  37241. default: true
  37242. },
  37243. {
  37244. name: "Largest",
  37245. height: math.unit(55, "meters")
  37246. },
  37247. ]
  37248. ))
  37249. characterMakers.push(() => makeCharacter(
  37250. { name: "Bek'kah Bolger", species: ["kobold"], tags: ["anthro"] },
  37251. {
  37252. front: {
  37253. height: math.unit(8 + 4/12, "feet"),
  37254. weight: math.unit(535, "lb"),
  37255. name: "Front",
  37256. image: {
  37257. source: "./media/characters/beh'kah-bolger/front.svg",
  37258. extra: 1660/1603,
  37259. bottom: 37/1697
  37260. }
  37261. },
  37262. },
  37263. [
  37264. {
  37265. name: "Normal",
  37266. height: math.unit(8 + 4/12, "feet"),
  37267. default: true
  37268. },
  37269. {
  37270. name: "Kaiju",
  37271. height: math.unit(250, "feet")
  37272. },
  37273. {
  37274. name: "Still Growing",
  37275. height: math.unit(10, "miles")
  37276. },
  37277. {
  37278. name: "Continental",
  37279. height: math.unit(5000, "miles")
  37280. },
  37281. {
  37282. name: "Final Form",
  37283. height: math.unit(2500000, "miles")
  37284. },
  37285. ]
  37286. ))
  37287. characterMakers.push(() => makeCharacter(
  37288. { name: "Tatyana Milewska", species: ["shark"], tags: ["anthro"] },
  37289. {
  37290. front: {
  37291. height: math.unit(7 + 2/12, "feet"),
  37292. weight: math.unit(230, "kg"),
  37293. name: "Front",
  37294. image: {
  37295. source: "./media/characters/tatyana-milewska/front.svg",
  37296. extra: 1199/1150,
  37297. bottom: 86/1285
  37298. }
  37299. },
  37300. },
  37301. [
  37302. {
  37303. name: "Normal",
  37304. height: math.unit(7 + 2/12, "feet"),
  37305. default: true
  37306. },
  37307. {
  37308. name: "Big",
  37309. height: math.unit(12, "feet")
  37310. },
  37311. {
  37312. name: "Minimacro",
  37313. height: math.unit(20, "feet")
  37314. },
  37315. {
  37316. name: "Macro",
  37317. height: math.unit(120, "feet")
  37318. },
  37319. ]
  37320. ))
  37321. characterMakers.push(() => makeCharacter(
  37322. { name: "Helen Arri", species: ["dragon"], tags: ["anthro"] },
  37323. {
  37324. front: {
  37325. height: math.unit(7 + 8/12, "feet"),
  37326. weight: math.unit(152, "kg"),
  37327. name: "Front",
  37328. image: {
  37329. source: "./media/characters/helen-arri/front.svg",
  37330. extra: 440/423,
  37331. bottom: 14/454
  37332. }
  37333. },
  37334. back: {
  37335. height: math.unit(7 + 8/12, "feet"),
  37336. weight: math.unit(152, "kg"),
  37337. name: "Back",
  37338. image: {
  37339. source: "./media/characters/helen-arri/back.svg",
  37340. extra: 443/426,
  37341. bottom: 8/451
  37342. }
  37343. },
  37344. },
  37345. [
  37346. {
  37347. name: "Normal",
  37348. height: math.unit(7 + 8/12, "feet"),
  37349. default: true
  37350. },
  37351. {
  37352. name: "Big",
  37353. height: math.unit(14, "feet")
  37354. },
  37355. {
  37356. name: "Minimacro",
  37357. height: math.unit(24, "feet")
  37358. },
  37359. {
  37360. name: "Macro",
  37361. height: math.unit(140, "feet")
  37362. },
  37363. ]
  37364. ))
  37365. characterMakers.push(() => makeCharacter(
  37366. { name: "Ehanu Rehu", species: ["eastern-dragon"], tags: ["anthro"] },
  37367. {
  37368. front: {
  37369. height: math.unit(6, "meters"),
  37370. name: "Front",
  37371. image: {
  37372. source: "./media/characters/ehanu-rehu/front.svg",
  37373. extra: 1800/1800,
  37374. bottom: 59/1859
  37375. }
  37376. },
  37377. },
  37378. [
  37379. {
  37380. name: "Normal",
  37381. height: math.unit(6, "meters"),
  37382. default: true
  37383. },
  37384. ]
  37385. ))
  37386. characterMakers.push(() => makeCharacter(
  37387. { name: "Renholder", species: ["bat"], tags: ["anthro"] },
  37388. {
  37389. front: {
  37390. height: math.unit(7 + 3/12, "feet"),
  37391. name: "Front",
  37392. image: {
  37393. source: "./media/characters/renholder/front.svg",
  37394. extra: 3096/2960,
  37395. bottom: 250/3346
  37396. }
  37397. },
  37398. },
  37399. [
  37400. {
  37401. name: "Normal Bat",
  37402. height: math.unit(7 + 3/12, "feet"),
  37403. default: true
  37404. },
  37405. {
  37406. name: "Slightly Tall Bat",
  37407. height: math.unit(100, "feet")
  37408. },
  37409. {
  37410. name: "Big Bat",
  37411. height: math.unit(1000, "feet")
  37412. },
  37413. {
  37414. name: "City-Sized Bat",
  37415. height: math.unit(200000, "feet")
  37416. },
  37417. {
  37418. name: "Bigger Bat",
  37419. height: math.unit(10000, "miles")
  37420. },
  37421. {
  37422. name: "Solar Sized Bat",
  37423. height: math.unit(100, "AU")
  37424. },
  37425. {
  37426. name: "Galactic Bat",
  37427. height: math.unit(200000, "lightyears")
  37428. },
  37429. {
  37430. name: "Universally Known Bat",
  37431. height: math.unit(1, "universe")
  37432. },
  37433. ]
  37434. ))
  37435. characterMakers.push(() => makeCharacter(
  37436. { name: "Cookiecat", species: ["cat"], tags: ["anthro"] },
  37437. {
  37438. front: {
  37439. height: math.unit(6 + 11/12, "feet"),
  37440. weight: math.unit(250, "lb"),
  37441. name: "Front",
  37442. image: {
  37443. source: "./media/characters/cookiecat/front.svg",
  37444. extra: 893/827,
  37445. bottom: 14/907
  37446. }
  37447. },
  37448. },
  37449. [
  37450. {
  37451. name: "Micro",
  37452. height: math.unit(3, "inches")
  37453. },
  37454. {
  37455. name: "Normal",
  37456. height: math.unit(6 + 11/12, "feet"),
  37457. default: true
  37458. },
  37459. {
  37460. name: "Macro",
  37461. height: math.unit(100, "feet")
  37462. },
  37463. {
  37464. name: "Macro+",
  37465. height: math.unit(404, "feet")
  37466. },
  37467. {
  37468. name: "Megamacro",
  37469. height: math.unit(165, "miles")
  37470. },
  37471. {
  37472. name: "Planetary",
  37473. height: math.unit(4600, "miles")
  37474. },
  37475. ]
  37476. ))
  37477. characterMakers.push(() => makeCharacter(
  37478. { name: "Tux Kusanagi", species: ["gryffon"], tags: ["anthro"] },
  37479. {
  37480. front: {
  37481. height: math.unit(10 + 3/12, "feet"),
  37482. weight: math.unit(1500, "lb"),
  37483. name: "Front",
  37484. image: {
  37485. source: "./media/characters/tux-kusanagi/front.svg",
  37486. extra: 944/840,
  37487. bottom: 39/983
  37488. }
  37489. },
  37490. back: {
  37491. height: math.unit(10 + 3/12, "feet"),
  37492. weight: math.unit(1500, "lb"),
  37493. name: "Back",
  37494. image: {
  37495. source: "./media/characters/tux-kusanagi/back.svg",
  37496. extra: 941/842,
  37497. bottom: 28/969
  37498. }
  37499. },
  37500. rump: {
  37501. height: math.unit(5.25, "feet"),
  37502. name: "Rump",
  37503. image: {
  37504. source: "./media/characters/tux-kusanagi/rump.svg"
  37505. }
  37506. },
  37507. beak: {
  37508. height: math.unit(1.54, "feet"),
  37509. name: "Beak",
  37510. image: {
  37511. source: "./media/characters/tux-kusanagi/beak.svg"
  37512. }
  37513. },
  37514. },
  37515. [
  37516. {
  37517. name: "Normal",
  37518. height: math.unit(10 + 3/12, "feet"),
  37519. default: true
  37520. },
  37521. ]
  37522. ))
  37523. characterMakers.push(() => makeCharacter(
  37524. { name: "Uzarmazari", species: ["amtsvane"], tags: ["anthro"] },
  37525. {
  37526. front: {
  37527. height: math.unit(58, "feet"),
  37528. weight: math.unit(200, "tons"),
  37529. name: "Front",
  37530. image: {
  37531. source: "./media/characters/uzarmazari/front.svg",
  37532. extra: 1575/1455,
  37533. bottom: 152/1727
  37534. }
  37535. },
  37536. back: {
  37537. height: math.unit(58, "feet"),
  37538. weight: math.unit(200, "tons"),
  37539. name: "Back",
  37540. image: {
  37541. source: "./media/characters/uzarmazari/back.svg",
  37542. extra: 1585/1510,
  37543. bottom: 157/1742
  37544. }
  37545. },
  37546. head: {
  37547. height: math.unit(26, "feet"),
  37548. name: "Head",
  37549. image: {
  37550. source: "./media/characters/uzarmazari/head.svg"
  37551. }
  37552. },
  37553. },
  37554. [
  37555. {
  37556. name: "Normal",
  37557. height: math.unit(58, "feet"),
  37558. default: true
  37559. },
  37560. ]
  37561. ))
  37562. characterMakers.push(() => makeCharacter(
  37563. { name: "Akitu", species: ["kigavi"], tags: ["feral"] },
  37564. {
  37565. side: {
  37566. height: math.unit(15, "feet"),
  37567. name: "Side",
  37568. image: {
  37569. source: "./media/characters/akitu/side.svg",
  37570. extra: 1421/1321,
  37571. bottom: 157/1578
  37572. }
  37573. },
  37574. front: {
  37575. height: math.unit(15, "feet"),
  37576. name: "Front",
  37577. image: {
  37578. source: "./media/characters/akitu/front.svg",
  37579. extra: 1435/1326,
  37580. bottom: 232/1667
  37581. }
  37582. },
  37583. },
  37584. [
  37585. {
  37586. name: "Normal",
  37587. height: math.unit(15, "feet"),
  37588. default: true
  37589. },
  37590. ]
  37591. ))
  37592. characterMakers.push(() => makeCharacter(
  37593. { name: "Azalie Croixland", species: ["gryphon"], tags: ["anthro"] },
  37594. {
  37595. front: {
  37596. height: math.unit(10 + 8/12, "feet"),
  37597. name: "Front",
  37598. image: {
  37599. source: "./media/characters/azalie-croixland/front.svg",
  37600. extra: 1972/1856,
  37601. bottom: 31/2003
  37602. }
  37603. },
  37604. },
  37605. [
  37606. {
  37607. name: "Original Height",
  37608. height: math.unit(5 + 4/12, "feet")
  37609. },
  37610. {
  37611. name: "Normal Height",
  37612. height: math.unit(10 + 8/12, "feet"),
  37613. default: true
  37614. },
  37615. ]
  37616. ))
  37617. characterMakers.push(() => makeCharacter(
  37618. { name: "Kavus Kazian", species: ["turian"], tags: ["anthro"] },
  37619. {
  37620. side: {
  37621. height: math.unit(7 + 1/12, "feet"),
  37622. weight: math.unit(245, "lb"),
  37623. name: "Side",
  37624. image: {
  37625. source: "./media/characters/kavus-kazian/side.svg",
  37626. extra: 349/342,
  37627. bottom: 15/364
  37628. }
  37629. },
  37630. },
  37631. [
  37632. {
  37633. name: "Normal",
  37634. height: math.unit(7 + 1/12, "feet"),
  37635. default: true
  37636. },
  37637. ]
  37638. ))
  37639. characterMakers.push(() => makeCharacter(
  37640. { name: "Moonlight Rose", species: ["eevee", "leafeon", "jolteon", "demon", "vaporeon"], tags: ["anthro"] },
  37641. {
  37642. normalFront: {
  37643. height: math.unit(5 + 11/12, "feet"),
  37644. name: "Front",
  37645. image: {
  37646. source: "./media/characters/moonlight-rose/normal-front.svg",
  37647. extra: 1980/1825,
  37648. bottom: 18/1998
  37649. },
  37650. form: "normal",
  37651. default: true
  37652. },
  37653. normalBack: {
  37654. height: math.unit(5 + 11/12, "feet"),
  37655. name: "Back",
  37656. image: {
  37657. source: "./media/characters/moonlight-rose/normal-back.svg",
  37658. extra: 2010/1839,
  37659. bottom: 10/2020
  37660. },
  37661. form: "normal"
  37662. },
  37663. demonFront: {
  37664. height: math.unit(1.5, "earths"),
  37665. name: "Front",
  37666. image: {
  37667. source: "./media/characters/moonlight-rose/demon.svg",
  37668. extra: 1400/1294,
  37669. bottom: 45/1445
  37670. },
  37671. form: "demon",
  37672. default: true
  37673. },
  37674. terraFront: {
  37675. height: math.unit(1.5, "earths"),
  37676. name: "Front",
  37677. image: {
  37678. source: "./media/characters/moonlight-rose/terra.svg"
  37679. },
  37680. form: "terra",
  37681. default: true
  37682. },
  37683. jupiterFront: {
  37684. height: math.unit(69911*2, "km"),
  37685. name: "Front",
  37686. image: {
  37687. source: "./media/characters/moonlight-rose/jupiter-front.svg",
  37688. extra: 1367/1286,
  37689. bottom: 55/1422
  37690. },
  37691. form: "jupiter",
  37692. default: true
  37693. },
  37694. neptuneFront: {
  37695. height: math.unit(24622*2, "feet"),
  37696. name: "Front",
  37697. image: {
  37698. source: "./media/characters/moonlight-rose/neptune-front.svg",
  37699. extra: 1851/1712,
  37700. bottom: 0/1851
  37701. },
  37702. form: "neptune",
  37703. default: true
  37704. },
  37705. },
  37706. [
  37707. {
  37708. name: "\"Natural\" Height",
  37709. height: math.unit(5 + 11/12, "feet"),
  37710. form: "normal"
  37711. },
  37712. {
  37713. name: "Smallest comfortable size",
  37714. height: math.unit(40, "meters"),
  37715. form: "normal"
  37716. },
  37717. {
  37718. name: "Common size",
  37719. height: math.unit(50, "km"),
  37720. form: "normal",
  37721. default: true
  37722. },
  37723. {
  37724. name: "Normal",
  37725. height: math.unit(1.5, "earths"),
  37726. form: "demon",
  37727. default: true
  37728. },
  37729. {
  37730. name: "Universal",
  37731. height: math.unit(15, "universes"),
  37732. form: "demon"
  37733. },
  37734. {
  37735. name: "Earth",
  37736. height: math.unit(1.5, "earths"),
  37737. form: "terra",
  37738. default: true
  37739. },
  37740. {
  37741. name: "Super Earth",
  37742. height: math.unit(67.5, "earths"),
  37743. form: "terra"
  37744. },
  37745. {
  37746. name: "Doesn't fit in a solar system...",
  37747. height: math.unit(1, "galaxy"),
  37748. form: "terra"
  37749. },
  37750. {
  37751. name: "Saturn",
  37752. height: math.unit(58232*2, "km"),
  37753. form: "jupiter"
  37754. },
  37755. {
  37756. name: "Jupiter",
  37757. height: math.unit(69911*2, "km"),
  37758. form: "jupiter",
  37759. default: true
  37760. },
  37761. {
  37762. name: "HD 100546 b",
  37763. height: math.unit(482938, "km"),
  37764. form: "jupiter"
  37765. },
  37766. {
  37767. name: "Enceladus",
  37768. height: math.unit(513*2, "km"),
  37769. form: "neptune"
  37770. },
  37771. {
  37772. name: "Europe",
  37773. height: math.unit(1560*2, "km"),
  37774. form: "neptune"
  37775. },
  37776. {
  37777. name: "Neptune",
  37778. height: math.unit(24622*2, "km"),
  37779. form: "neptune",
  37780. default: true
  37781. },
  37782. {
  37783. name: "CoRoT-9b",
  37784. height: math.unit(75067*2, "km"),
  37785. form: "neptune"
  37786. },
  37787. ],
  37788. {
  37789. "normal": {
  37790. name: "Normal",
  37791. default: true
  37792. },
  37793. "demon": {
  37794. name: "Demon"
  37795. },
  37796. "terra": {
  37797. name: "Terra"
  37798. },
  37799. "jupiter": {
  37800. name: "Jupiter"
  37801. },
  37802. "neptune": {
  37803. name: "Neptune"
  37804. }
  37805. }
  37806. ))
  37807. characterMakers.push(() => makeCharacter(
  37808. { name: "Huckle", species: ["dragon"], tags: ["anthro"] },
  37809. {
  37810. front: {
  37811. height: math.unit(16, "feet"),
  37812. weight: math.unit(610, "kg"),
  37813. name: "Front",
  37814. image: {
  37815. source: "./media/characters/huckle/front.svg",
  37816. extra: 1731/1625,
  37817. bottom: 33/1764
  37818. }
  37819. },
  37820. back: {
  37821. height: math.unit(16, "feet"),
  37822. weight: math.unit(610, "kg"),
  37823. name: "Back",
  37824. image: {
  37825. source: "./media/characters/huckle/back.svg",
  37826. extra: 1738/1651,
  37827. bottom: 37/1775
  37828. }
  37829. },
  37830. laughing: {
  37831. height: math.unit(3.75, "feet"),
  37832. name: "Laughing",
  37833. image: {
  37834. source: "./media/characters/huckle/laughing.svg"
  37835. }
  37836. },
  37837. angry: {
  37838. height: math.unit(4.15, "feet"),
  37839. name: "Angry",
  37840. image: {
  37841. source: "./media/characters/huckle/angry.svg"
  37842. }
  37843. },
  37844. },
  37845. [
  37846. {
  37847. name: "Normal",
  37848. height: math.unit(16, "feet"),
  37849. default: true
  37850. },
  37851. {
  37852. name: "Mini Macro",
  37853. height: math.unit(463, "feet")
  37854. },
  37855. {
  37856. name: "Macro",
  37857. height: math.unit(1680, "meters")
  37858. },
  37859. {
  37860. name: "Mega Macro",
  37861. height: math.unit(175, "km")
  37862. },
  37863. {
  37864. name: "Terra Macro",
  37865. height: math.unit(32, "gigameters")
  37866. },
  37867. {
  37868. name: "Multiverse+",
  37869. height: math.unit(2.56e23, "yottameters")
  37870. },
  37871. ]
  37872. ))
  37873. characterMakers.push(() => makeCharacter(
  37874. { name: "Candy", species: ["zeraora"], tags: ["anthro"] },
  37875. {
  37876. front: {
  37877. height: math.unit(6 + 9/12, "feet"),
  37878. weight: math.unit(280, "lb"),
  37879. name: "Front",
  37880. image: {
  37881. source: "./media/characters/candy/front.svg",
  37882. extra: 234/217,
  37883. bottom: 11/245
  37884. }
  37885. },
  37886. },
  37887. [
  37888. {
  37889. name: "Really Small",
  37890. height: math.unit(0.1, "nm")
  37891. },
  37892. {
  37893. name: "Micro",
  37894. height: math.unit(2, "inches")
  37895. },
  37896. {
  37897. name: "Normal",
  37898. height: math.unit(6 + 9/12, "feet"),
  37899. default: true
  37900. },
  37901. {
  37902. name: "Small Macro",
  37903. height: math.unit(69, "feet")
  37904. },
  37905. {
  37906. name: "Macro",
  37907. height: math.unit(160, "feet")
  37908. },
  37909. {
  37910. name: "Megamacro",
  37911. height: math.unit(22000, "miles")
  37912. },
  37913. {
  37914. name: "Gigamacro",
  37915. height: math.unit(50000, "miles")
  37916. },
  37917. ]
  37918. ))
  37919. characterMakers.push(() => makeCharacter(
  37920. { name: "Joey McDonald", species: ["rabbit", "kobold"], tags: ["anthro"] },
  37921. {
  37922. front: {
  37923. height: math.unit(4, "feet"),
  37924. weight: math.unit(90, "lb"),
  37925. name: "Front",
  37926. image: {
  37927. source: "./media/characters/joey-mcdonald/front.svg",
  37928. extra: 1059/852,
  37929. bottom: 33/1092
  37930. }
  37931. },
  37932. back: {
  37933. height: math.unit(4, "feet"),
  37934. weight: math.unit(90, "lb"),
  37935. name: "Back",
  37936. image: {
  37937. source: "./media/characters/joey-mcdonald/back.svg",
  37938. extra: 1077/879,
  37939. bottom: 5/1082
  37940. }
  37941. },
  37942. frontKobold: {
  37943. height: math.unit(4, "feet"),
  37944. weight: math.unit(100, "lb"),
  37945. name: "Front-kobold",
  37946. image: {
  37947. source: "./media/characters/joey-mcdonald/front-kobold.svg",
  37948. extra: 1480/1367,
  37949. bottom: 0/1480
  37950. }
  37951. },
  37952. backKobold: {
  37953. height: math.unit(4, "feet"),
  37954. weight: math.unit(100, "lb"),
  37955. name: "Back-kobold",
  37956. image: {
  37957. source: "./media/characters/joey-mcdonald/back-kobold.svg",
  37958. extra: 1449/1361,
  37959. bottom: 0/1449
  37960. }
  37961. },
  37962. },
  37963. [
  37964. {
  37965. name: "Normal",
  37966. height: math.unit(4, "feet"),
  37967. default: true
  37968. },
  37969. ]
  37970. ))
  37971. characterMakers.push(() => makeCharacter(
  37972. { name: "Kass Lockheed", species: ["dragon"], tags: ["anthro"] },
  37973. {
  37974. front: {
  37975. height: math.unit(12 + 6/12, "feet"),
  37976. name: "Front",
  37977. image: {
  37978. source: "./media/characters/kass-lockheed/front.svg",
  37979. extra: 354/343,
  37980. bottom: 9/363
  37981. }
  37982. },
  37983. back: {
  37984. height: math.unit(12 + 6/12, "feet"),
  37985. name: "Back",
  37986. image: {
  37987. source: "./media/characters/kass-lockheed/back.svg",
  37988. extra: 364/352,
  37989. bottom: 3/367
  37990. }
  37991. },
  37992. dick: {
  37993. height: math.unit(3.12, "feet"),
  37994. name: "Dick",
  37995. image: {
  37996. source: "./media/characters/kass-lockheed/dick.svg"
  37997. }
  37998. },
  37999. head: {
  38000. height: math.unit(2.6, "feet"),
  38001. name: "Head",
  38002. image: {
  38003. source: "./media/characters/kass-lockheed/head.svg"
  38004. }
  38005. },
  38006. bleh: {
  38007. height: math.unit(2.85, "feet"),
  38008. name: "Bleh",
  38009. image: {
  38010. source: "./media/characters/kass-lockheed/bleh.svg"
  38011. }
  38012. },
  38013. smug: {
  38014. height: math.unit(2.85, "feet"),
  38015. name: "Smug",
  38016. image: {
  38017. source: "./media/characters/kass-lockheed/smug.svg"
  38018. }
  38019. },
  38020. },
  38021. [
  38022. {
  38023. name: "Normal",
  38024. height: math.unit(12 + 6/12, "feet"),
  38025. default: true
  38026. },
  38027. ]
  38028. ))
  38029. characterMakers.push(() => makeCharacter(
  38030. { name: "Taylor", species: ["rabbit"], tags: ["anthro"] },
  38031. {
  38032. front: {
  38033. height: math.unit(6 + 2/12, "feet"),
  38034. name: "Front",
  38035. image: {
  38036. source: "./media/characters/taylor/front.svg",
  38037. extra: 639/495,
  38038. bottom: 12/651
  38039. }
  38040. },
  38041. },
  38042. [
  38043. {
  38044. name: "Normal",
  38045. height: math.unit(6 + 2/12, "feet"),
  38046. default: true
  38047. },
  38048. {
  38049. name: "Big",
  38050. height: math.unit(15, "feet")
  38051. },
  38052. {
  38053. name: "Lorg",
  38054. height: math.unit(80, "feet")
  38055. },
  38056. {
  38057. name: "Too Lorg",
  38058. height: math.unit(120, "feet")
  38059. },
  38060. ]
  38061. ))
  38062. characterMakers.push(() => makeCharacter(
  38063. { name: "Kaizer", species: ["demon"], tags: ["anthro"] },
  38064. {
  38065. front: {
  38066. height: math.unit(15, "feet"),
  38067. name: "Front",
  38068. image: {
  38069. source: "./media/characters/kaizer/front.svg",
  38070. extra: 1612/1436,
  38071. bottom: 43/1655
  38072. }
  38073. },
  38074. },
  38075. [
  38076. {
  38077. name: "Normal",
  38078. height: math.unit(15, "feet"),
  38079. default: true
  38080. },
  38081. ]
  38082. ))
  38083. characterMakers.push(() => makeCharacter(
  38084. { name: "Sandy", species: ["sandshrew"], tags: ["anthro"] },
  38085. {
  38086. front: {
  38087. height: math.unit(2, "feet"),
  38088. weight: math.unit(30, "lb"),
  38089. name: "Front",
  38090. image: {
  38091. source: "./media/characters/sandy/front.svg",
  38092. extra: 1439/1307,
  38093. bottom: 194/1633
  38094. }
  38095. },
  38096. },
  38097. [
  38098. {
  38099. name: "Normal",
  38100. height: math.unit(2, "feet"),
  38101. default: true
  38102. },
  38103. ]
  38104. ))
  38105. characterMakers.push(() => makeCharacter(
  38106. { name: "Mellvi", species: ["imp"], tags: ["anthro"] },
  38107. {
  38108. front: {
  38109. height: math.unit(3, "feet"),
  38110. name: "Front",
  38111. image: {
  38112. source: "./media/characters/mellvi/front.svg",
  38113. extra: 1831/1630,
  38114. bottom: 58/1889
  38115. }
  38116. },
  38117. },
  38118. [
  38119. {
  38120. name: "Normal",
  38121. height: math.unit(3, "feet"),
  38122. default: true
  38123. },
  38124. ]
  38125. ))
  38126. characterMakers.push(() => makeCharacter(
  38127. { name: "Shirou", species: ["dragon"], tags: ["anthro"] },
  38128. {
  38129. front: {
  38130. height: math.unit(5 + 11/12, "feet"),
  38131. weight: math.unit(200, "lb"),
  38132. name: "Front",
  38133. image: {
  38134. source: "./media/characters/shirou/front.svg",
  38135. extra: 2491/2383,
  38136. bottom: 189/2680
  38137. }
  38138. },
  38139. back: {
  38140. height: math.unit(5 + 11/12, "feet"),
  38141. weight: math.unit(200, "lb"),
  38142. name: "Back",
  38143. image: {
  38144. source: "./media/characters/shirou/back.svg",
  38145. extra: 2554/2450,
  38146. bottom: 76/2630
  38147. }
  38148. },
  38149. },
  38150. [
  38151. {
  38152. name: "Normal",
  38153. height: math.unit(5 + 11/12, "feet"),
  38154. default: true
  38155. },
  38156. ]
  38157. ))
  38158. characterMakers.push(() => makeCharacter(
  38159. { name: "Noryu", species: ["protogen"], tags: ["anthro"] },
  38160. {
  38161. front: {
  38162. height: math.unit(6 + 3/12, "feet"),
  38163. weight: math.unit(177, "lb"),
  38164. name: "Front",
  38165. image: {
  38166. source: "./media/characters/noryu/front.svg",
  38167. extra: 973/885,
  38168. bottom: 10/983
  38169. }
  38170. },
  38171. },
  38172. [
  38173. {
  38174. name: "Normal",
  38175. height: math.unit(6 + 3/12, "feet"),
  38176. default: true
  38177. },
  38178. ]
  38179. ))
  38180. characterMakers.push(() => makeCharacter(
  38181. { name: "Mevolas Rubenido", species: ["carbuncle"], tags: ["anthro"] },
  38182. {
  38183. front: {
  38184. height: math.unit(5 + 6/12, "feet"),
  38185. weight: math.unit(170, "lb"),
  38186. name: "Front",
  38187. image: {
  38188. source: "./media/characters/mevolas-rubenido/front.svg",
  38189. extra: 2109/1901,
  38190. bottom: 96/2205
  38191. }
  38192. },
  38193. },
  38194. [
  38195. {
  38196. name: "Normal",
  38197. height: math.unit(5 + 6/12, "feet"),
  38198. default: true
  38199. },
  38200. ]
  38201. ))
  38202. characterMakers.push(() => makeCharacter(
  38203. { name: "Dee", species: ["valais-blacknose-sheep"], tags: ["anthro"] },
  38204. {
  38205. front: {
  38206. height: math.unit(100, "feet"),
  38207. name: "Front",
  38208. image: {
  38209. source: "./media/characters/dee/front.svg",
  38210. extra: 2153/2036,
  38211. bottom: 59/2212
  38212. }
  38213. },
  38214. back: {
  38215. height: math.unit(100, "feet"),
  38216. name: "Back",
  38217. image: {
  38218. source: "./media/characters/dee/back.svg",
  38219. extra: 2183/2058,
  38220. bottom: 75/2258
  38221. }
  38222. },
  38223. foot: {
  38224. height: math.unit(19.43, "feet"),
  38225. name: "Foot",
  38226. image: {
  38227. source: "./media/characters/dee/foot.svg"
  38228. }
  38229. },
  38230. hoof: {
  38231. height: math.unit(20.6, "feet"),
  38232. name: "Hoof",
  38233. image: {
  38234. source: "./media/characters/dee/hoof.svg"
  38235. }
  38236. },
  38237. },
  38238. [
  38239. {
  38240. name: "Macro",
  38241. height: math.unit(100, "feet"),
  38242. default: true
  38243. },
  38244. ]
  38245. ))
  38246. characterMakers.push(() => makeCharacter(
  38247. { name: "Teh", species: ["bat"], tags: ["anthro"] },
  38248. {
  38249. front: {
  38250. height: math.unit(5 + 6/12, "feet"),
  38251. name: "Front",
  38252. image: {
  38253. source: "./media/characters/teh/front.svg",
  38254. extra: 1002/847,
  38255. bottom: 62/1064
  38256. }
  38257. },
  38258. },
  38259. [
  38260. {
  38261. name: "Normal",
  38262. height: math.unit(5 + 6/12, "feet"),
  38263. default: true
  38264. },
  38265. ]
  38266. ))
  38267. characterMakers.push(() => makeCharacter(
  38268. { name: "Quicksilver Ayukoti", species: ["dragon", "wolf"], tags: ["feral"] },
  38269. {
  38270. side: {
  38271. height: math.unit(6 + 1/12, "feet"),
  38272. weight: math.unit(204, "lb"),
  38273. name: "Side",
  38274. image: {
  38275. source: "./media/characters/quicksilver-ayukoti/side.svg",
  38276. extra: 974/775,
  38277. bottom: 169/1143
  38278. }
  38279. },
  38280. sitting: {
  38281. height: math.unit(6 + 2/12, "feet"),
  38282. weight: math.unit(204, "lb"),
  38283. name: "Sitting",
  38284. image: {
  38285. source: "./media/characters/quicksilver-ayukoti/sitting.svg",
  38286. extra: 1175/964,
  38287. bottom: 378/1553
  38288. }
  38289. },
  38290. },
  38291. [
  38292. {
  38293. name: "Normal",
  38294. height: math.unit(6 + 1/12, "feet"),
  38295. default: true
  38296. },
  38297. ]
  38298. ))
  38299. characterMakers.push(() => makeCharacter(
  38300. { name: "Tululi", species: ["dunnoh"], tags: ["anthro"] },
  38301. {
  38302. front: {
  38303. height: math.unit(6, "inches"),
  38304. name: "Front",
  38305. image: {
  38306. source: "./media/characters/tululi/front.svg",
  38307. extra: 1997/1876,
  38308. bottom: 20/2017
  38309. }
  38310. },
  38311. },
  38312. [
  38313. {
  38314. name: "Normal",
  38315. height: math.unit(6, "inches"),
  38316. default: true
  38317. },
  38318. ]
  38319. ))
  38320. characterMakers.push(() => makeCharacter(
  38321. { name: "Star", species: ["novaleit"], tags: ["anthro"] },
  38322. {
  38323. front: {
  38324. height: math.unit(4 + 1/12, "feet"),
  38325. name: "Front",
  38326. image: {
  38327. source: "./media/characters/star/front.svg",
  38328. extra: 1493/1189,
  38329. bottom: 48/1541
  38330. }
  38331. },
  38332. },
  38333. [
  38334. {
  38335. name: "Normal",
  38336. height: math.unit(4 + 1/12, "feet"),
  38337. default: true
  38338. },
  38339. ]
  38340. ))
  38341. characterMakers.push(() => makeCharacter(
  38342. { name: "Comet", species: ["novaleit"], tags: ["anthro"] },
  38343. {
  38344. front: {
  38345. height: math.unit(6 + 3/12, "feet"),
  38346. name: "Front",
  38347. image: {
  38348. source: "./media/characters/comet/front.svg",
  38349. extra: 1681/1462,
  38350. bottom: 26/1707
  38351. }
  38352. },
  38353. },
  38354. [
  38355. {
  38356. name: "Normal",
  38357. height: math.unit(6 + 3/12, "feet"),
  38358. default: true
  38359. },
  38360. ]
  38361. ))
  38362. characterMakers.push(() => makeCharacter(
  38363. { name: "Vortex", species: ["kaiju"], tags: ["anthro"] },
  38364. {
  38365. front: {
  38366. height: math.unit(950, "feet"),
  38367. name: "Front",
  38368. image: {
  38369. source: "./media/characters/vortex/front.svg",
  38370. extra: 1497/1434,
  38371. bottom: 56/1553
  38372. }
  38373. },
  38374. maw: {
  38375. height: math.unit(285, "feet"),
  38376. name: "Maw",
  38377. image: {
  38378. source: "./media/characters/vortex/maw.svg"
  38379. }
  38380. },
  38381. },
  38382. [
  38383. {
  38384. name: "Macro",
  38385. height: math.unit(950, "feet"),
  38386. default: true
  38387. },
  38388. ]
  38389. ))
  38390. characterMakers.push(() => makeCharacter(
  38391. { name: "Doodle", species: ["kaiju", "dragon"], tags: ["anthro"] },
  38392. {
  38393. front: {
  38394. height: math.unit(600, "feet"),
  38395. weight: math.unit(0.02, "grams"),
  38396. name: "Front",
  38397. image: {
  38398. source: "./media/characters/doodle/front.svg",
  38399. extra: 1578/1413,
  38400. bottom: 37/1615
  38401. }
  38402. },
  38403. },
  38404. [
  38405. {
  38406. name: "Macro",
  38407. height: math.unit(600, "feet"),
  38408. default: true
  38409. },
  38410. ]
  38411. ))
  38412. characterMakers.push(() => makeCharacter(
  38413. { name: "Jai", species: ["dragon"], tags: ["anthro"] },
  38414. {
  38415. front: {
  38416. height: math.unit(6 + 6/12, "feet"),
  38417. name: "Front",
  38418. image: {
  38419. source: "./media/characters/jai/front.svg",
  38420. extra: 1645/1534,
  38421. bottom: 115/1760
  38422. }
  38423. },
  38424. },
  38425. [
  38426. {
  38427. name: "Normal",
  38428. height: math.unit(6 + 6/12, "feet"),
  38429. default: true
  38430. },
  38431. ]
  38432. ))
  38433. characterMakers.push(() => makeCharacter(
  38434. { name: "Pixel", species: ["gryphon"], tags: ["anthro"] },
  38435. {
  38436. front: {
  38437. height: math.unit(6 + 8/12, "feet"),
  38438. name: "Front",
  38439. image: {
  38440. source: "./media/characters/pixel/front.svg",
  38441. extra: 1900/1735,
  38442. bottom: 63/1963
  38443. }
  38444. },
  38445. },
  38446. [
  38447. {
  38448. name: "Normal",
  38449. height: math.unit(6 + 8/12, "feet"),
  38450. default: true
  38451. },
  38452. ]
  38453. ))
  38454. characterMakers.push(() => makeCharacter(
  38455. { name: "Rhett", species: ["deer"], tags: ["anthro"] },
  38456. {
  38457. back: {
  38458. height: math.unit(4 + 1/12, "feet"),
  38459. weight: math.unit(75, "lb"),
  38460. name: "Back",
  38461. image: {
  38462. source: "./media/characters/rhett/back.svg",
  38463. extra: 930/878,
  38464. bottom: 25/955
  38465. }
  38466. },
  38467. front: {
  38468. height: math.unit(4 + 1/12, "feet"),
  38469. weight: math.unit(75, "lb"),
  38470. name: "Front",
  38471. image: {
  38472. source: "./media/characters/rhett/front.svg",
  38473. extra: 1682/1586,
  38474. bottom: 92/1774
  38475. }
  38476. },
  38477. },
  38478. [
  38479. {
  38480. name: "Micro",
  38481. height: math.unit(8, "inches")
  38482. },
  38483. {
  38484. name: "Tiny",
  38485. height: math.unit(2, "feet")
  38486. },
  38487. {
  38488. name: "Normal",
  38489. height: math.unit(4 + 1/12, "feet"),
  38490. default: true
  38491. },
  38492. ]
  38493. ))
  38494. characterMakers.push(() => makeCharacter(
  38495. { name: "Penny", species: ["mouse"], tags: ["anthro"] },
  38496. {
  38497. front: {
  38498. height: math.unit(3 + 3/12, "feet"),
  38499. name: "Front",
  38500. image: {
  38501. source: "./media/characters/penny/front.svg",
  38502. extra: 1406/1311,
  38503. bottom: 26/1432
  38504. }
  38505. },
  38506. },
  38507. [
  38508. {
  38509. name: "Normal",
  38510. height: math.unit(3 + 3/12, "feet"),
  38511. default: true
  38512. },
  38513. ]
  38514. ))
  38515. characterMakers.push(() => makeCharacter(
  38516. { name: "Monty", species: ["cat", "kangaroo"], tags: ["anthro"] },
  38517. {
  38518. front: {
  38519. height: math.unit(4 + 11/12, "feet"),
  38520. name: "Front",
  38521. image: {
  38522. source: "./media/characters/monty/front.svg",
  38523. extra: 1479/1209,
  38524. bottom: 0/1479
  38525. }
  38526. },
  38527. },
  38528. [
  38529. {
  38530. name: "Normal",
  38531. height: math.unit(4 + 11/12, "feet"),
  38532. default: true
  38533. },
  38534. ]
  38535. ))
  38536. characterMakers.push(() => makeCharacter(
  38537. { name: "Sterling", species: ["lunaral-dragon"], tags: ["anthro"] },
  38538. {
  38539. front: {
  38540. height: math.unit(8 + 4/12, "feet"),
  38541. name: "Front",
  38542. image: {
  38543. source: "./media/characters/sterling/front.svg",
  38544. extra: 1420/1236,
  38545. bottom: 27/1447
  38546. }
  38547. },
  38548. },
  38549. [
  38550. {
  38551. name: "Normal",
  38552. height: math.unit(8 + 4/12, "feet"),
  38553. default: true
  38554. },
  38555. ]
  38556. ))
  38557. characterMakers.push(() => makeCharacter(
  38558. { name: "Marble", species: ["tiger"], tags: ["anthro"] },
  38559. {
  38560. front: {
  38561. height: math.unit(15, "feet"),
  38562. name: "Front",
  38563. image: {
  38564. source: "./media/characters/marble/front.svg",
  38565. extra: 973/937,
  38566. bottom: 32/1005
  38567. }
  38568. },
  38569. },
  38570. [
  38571. {
  38572. name: "Normal",
  38573. height: math.unit(15, "feet"),
  38574. default: true
  38575. },
  38576. ]
  38577. ))
  38578. characterMakers.push(() => makeCharacter(
  38579. { name: "Powder", species: ["sugar-glider"], tags: ["feral"] },
  38580. {
  38581. front: {
  38582. height: math.unit(3, "inches"),
  38583. name: "Front",
  38584. image: {
  38585. source: "./media/characters/powder/front.svg",
  38586. extra: 1504/1334,
  38587. bottom: 518/2022
  38588. }
  38589. },
  38590. },
  38591. [
  38592. {
  38593. name: "Normal",
  38594. height: math.unit(3, "inches"),
  38595. default: true
  38596. },
  38597. ]
  38598. ))
  38599. characterMakers.push(() => makeCharacter(
  38600. { name: "Joey (Raccoon)", species: ["raccoon"], tags: ["anthro"] },
  38601. {
  38602. front: {
  38603. height: math.unit(4 + 5/12, "feet"),
  38604. name: "Front",
  38605. image: {
  38606. source: "./media/characters/joey-raccoon/front.svg",
  38607. extra: 1273/1197,
  38608. bottom: 0/1273
  38609. }
  38610. },
  38611. },
  38612. [
  38613. {
  38614. name: "Normal",
  38615. height: math.unit(4 + 5/12, "feet"),
  38616. default: true
  38617. },
  38618. ]
  38619. ))
  38620. characterMakers.push(() => makeCharacter(
  38621. { name: "Vick", species: ["hyena"], tags: ["anthro"] },
  38622. {
  38623. front: {
  38624. height: math.unit(8 + 4/12, "feet"),
  38625. name: "Front",
  38626. image: {
  38627. source: "./media/characters/vick/front.svg",
  38628. extra: 2187/2118,
  38629. bottom: 47/2234
  38630. }
  38631. },
  38632. },
  38633. [
  38634. {
  38635. name: "Normal",
  38636. height: math.unit(8 + 4/12, "feet"),
  38637. default: true
  38638. },
  38639. ]
  38640. ))
  38641. characterMakers.push(() => makeCharacter(
  38642. { name: "Mitsy", species: ["mouse"], tags: ["anthro"] },
  38643. {
  38644. front: {
  38645. height: math.unit(5 + 5/12, "feet"),
  38646. name: "Front",
  38647. image: {
  38648. source: "./media/characters/mitsy/front.svg",
  38649. extra: 1842/1695,
  38650. bottom: 0/1842
  38651. }
  38652. },
  38653. },
  38654. [
  38655. {
  38656. name: "Normal",
  38657. height: math.unit(5 + 5/12, "feet"),
  38658. default: true
  38659. },
  38660. ]
  38661. ))
  38662. characterMakers.push(() => makeCharacter(
  38663. { name: "Silvy", species: ["ninetales"], tags: ["anthro"] },
  38664. {
  38665. front: {
  38666. height: math.unit(6 + 3/12, "feet"),
  38667. name: "Front",
  38668. image: {
  38669. source: "./media/characters/silvy/front.svg",
  38670. extra: 1995/1836,
  38671. bottom: 225/2220
  38672. }
  38673. },
  38674. },
  38675. [
  38676. {
  38677. name: "Normal",
  38678. height: math.unit(6 + 3/12, "feet"),
  38679. default: true
  38680. },
  38681. ]
  38682. ))
  38683. characterMakers.push(() => makeCharacter(
  38684. { name: "Rodney", species: ["mammal"], tags: ["anthro"] },
  38685. {
  38686. front: {
  38687. height: math.unit(3 + 8/12, "feet"),
  38688. name: "Front",
  38689. image: {
  38690. source: "./media/characters/rodney/front.svg",
  38691. extra: 1956/1747,
  38692. bottom: 31/1987
  38693. }
  38694. },
  38695. frontDressed: {
  38696. height: math.unit(2.9, "feet"),
  38697. name: "Front (Dressed)",
  38698. image: {
  38699. source: "./media/characters/rodney/front-dressed.svg",
  38700. extra: 1382/1241,
  38701. bottom: 385/1767
  38702. }
  38703. },
  38704. },
  38705. [
  38706. {
  38707. name: "Normal",
  38708. height: math.unit(3 + 8/12, "feet"),
  38709. default: true
  38710. },
  38711. ]
  38712. ))
  38713. characterMakers.push(() => makeCharacter(
  38714. { name: "Zakail Sudekai", species: ["arctic-wolf"], tags: ["anthro"] },
  38715. {
  38716. front: {
  38717. height: math.unit(5 + 9/12, "feet"),
  38718. weight: math.unit(194, "lbs"),
  38719. name: "Front",
  38720. image: {
  38721. source: "./media/characters/zakail-sudekai/front.svg",
  38722. extra: 2696/2533,
  38723. bottom: 248/2944
  38724. }
  38725. },
  38726. maw: {
  38727. height: math.unit(1.35, "feet"),
  38728. name: "Maw",
  38729. image: {
  38730. source: "./media/characters/zakail-sudekai/maw.svg"
  38731. }
  38732. },
  38733. },
  38734. [
  38735. {
  38736. name: "Normal",
  38737. height: math.unit(5 + 9/12, "feet"),
  38738. default: true
  38739. },
  38740. ]
  38741. ))
  38742. characterMakers.push(() => makeCharacter(
  38743. { name: "Eleanor", species: ["cow"], tags: ["anthro"] },
  38744. {
  38745. front: {
  38746. height: math.unit(8 + 4/12, "feet"),
  38747. weight: math.unit(1200, "lb"),
  38748. name: "Front",
  38749. image: {
  38750. source: "./media/characters/eleanor/front.svg",
  38751. extra: 1226/1192,
  38752. bottom: 52/1278
  38753. }
  38754. },
  38755. back: {
  38756. height: math.unit(8 + 4/12, "feet"),
  38757. weight: math.unit(1200, "lb"),
  38758. name: "Back",
  38759. image: {
  38760. source: "./media/characters/eleanor/back.svg",
  38761. extra: 1242/1184,
  38762. bottom: 60/1302
  38763. }
  38764. },
  38765. head: {
  38766. height: math.unit(2.62, "feet"),
  38767. name: "Head",
  38768. image: {
  38769. source: "./media/characters/eleanor/head.svg"
  38770. }
  38771. },
  38772. },
  38773. [
  38774. {
  38775. name: "Normal",
  38776. height: math.unit(8 + 4/12, "feet"),
  38777. default: true
  38778. },
  38779. ]
  38780. ))
  38781. characterMakers.push(() => makeCharacter(
  38782. { name: "Tanya", species: ["shark"], tags: ["anthro"] },
  38783. {
  38784. front: {
  38785. height: math.unit(8 + 4/12, "feet"),
  38786. weight: math.unit(750, "lb"),
  38787. name: "Front",
  38788. image: {
  38789. source: "./media/characters/tanya/front.svg",
  38790. extra: 1749/1615,
  38791. bottom: 33/1782
  38792. }
  38793. },
  38794. },
  38795. [
  38796. {
  38797. name: "Normal",
  38798. height: math.unit(8 + 4/12, "feet"),
  38799. default: true
  38800. },
  38801. ]
  38802. ))
  38803. characterMakers.push(() => makeCharacter(
  38804. { name: "Cindy", species: ["dragon"], tags: ["anthro"] },
  38805. {
  38806. front: {
  38807. height: math.unit(5, "feet"),
  38808. weight: math.unit(225, "lb"),
  38809. name: "Front",
  38810. image: {
  38811. source: "./media/characters/cindy/front.svg",
  38812. extra: 1320/1250,
  38813. bottom: 42/1362
  38814. }
  38815. },
  38816. frontDressed: {
  38817. height: math.unit(5, "feet"),
  38818. weight: math.unit(225, "lb"),
  38819. name: "Front (Dressed)",
  38820. image: {
  38821. source: "./media/characters/cindy/front-dressed.svg",
  38822. extra: 1320/1250,
  38823. bottom: 42/1362
  38824. }
  38825. },
  38826. back: {
  38827. height: math.unit(5, "feet"),
  38828. weight: math.unit(225, "lb"),
  38829. name: "Back",
  38830. image: {
  38831. source: "./media/characters/cindy/back.svg",
  38832. extra: 1384/1346,
  38833. bottom: 14/1398
  38834. }
  38835. },
  38836. },
  38837. [
  38838. {
  38839. name: "Normal",
  38840. height: math.unit(5, "feet"),
  38841. default: true
  38842. },
  38843. ]
  38844. ))
  38845. characterMakers.push(() => makeCharacter(
  38846. { name: "Wilbur Owen", species: ["donkey"], tags: ["anthro"] },
  38847. {
  38848. front: {
  38849. height: math.unit(6 + 9/12, "feet"),
  38850. weight: math.unit(440, "lb"),
  38851. name: "Front",
  38852. image: {
  38853. source: "./media/characters/wilbur-owen/front.svg",
  38854. extra: 1575/1448,
  38855. bottom: 72/1647
  38856. }
  38857. },
  38858. back: {
  38859. height: math.unit(6 + 9/12, "feet"),
  38860. weight: math.unit(440, "lb"),
  38861. name: "Back",
  38862. image: {
  38863. source: "./media/characters/wilbur-owen/back.svg",
  38864. extra: 1578/1445,
  38865. bottom: 36/1614
  38866. }
  38867. },
  38868. },
  38869. [
  38870. {
  38871. name: "Normal",
  38872. height: math.unit(6 + 9/12, "feet"),
  38873. default: true
  38874. },
  38875. ]
  38876. ))
  38877. characterMakers.push(() => makeCharacter(
  38878. { name: "Keegan", species: ["chinchilla", "tiger"], tags: ["anthro"] },
  38879. {
  38880. front: {
  38881. height: math.unit(6 + 5/12, "feet"),
  38882. weight: math.unit(650, "lb"),
  38883. name: "Front",
  38884. image: {
  38885. source: "./media/characters/keegan/front.svg",
  38886. extra: 2387/2198,
  38887. bottom: 33/2420
  38888. }
  38889. },
  38890. side: {
  38891. height: math.unit(6 + 5/12, "feet"),
  38892. weight: math.unit(650, "lb"),
  38893. name: "Side",
  38894. image: {
  38895. source: "./media/characters/keegan/side.svg",
  38896. extra: 2390/2202,
  38897. bottom: 47/2437
  38898. }
  38899. },
  38900. back: {
  38901. height: math.unit(6 + 5/12, "feet"),
  38902. weight: math.unit(650, "lb"),
  38903. name: "Back",
  38904. image: {
  38905. source: "./media/characters/keegan/back.svg",
  38906. extra: 2418/2268,
  38907. bottom: 15/2433
  38908. }
  38909. },
  38910. frontSfw: {
  38911. height: math.unit(6 + 5/12, "feet"),
  38912. weight: math.unit(650, "lb"),
  38913. name: "Front (SFW)",
  38914. image: {
  38915. source: "./media/characters/keegan/front-sfw.svg",
  38916. extra: 2387/2198,
  38917. bottom: 33/2420
  38918. }
  38919. },
  38920. beans: {
  38921. height: math.unit(1.85, "feet"),
  38922. name: "Beans",
  38923. image: {
  38924. source: "./media/characters/keegan/beans.svg"
  38925. }
  38926. },
  38927. },
  38928. [
  38929. {
  38930. name: "Normal",
  38931. height: math.unit(6 + 5/12, "feet"),
  38932. default: true
  38933. },
  38934. ]
  38935. ))
  38936. characterMakers.push(() => makeCharacter(
  38937. { name: "Colton", species: ["bat", "imp", "deity"], tags: ["anthro"] },
  38938. {
  38939. front: {
  38940. height: math.unit(9, "feet"),
  38941. name: "Front",
  38942. image: {
  38943. source: "./media/characters/colton/front.svg",
  38944. extra: 1589/1326,
  38945. bottom: 139/1728
  38946. }
  38947. },
  38948. },
  38949. [
  38950. {
  38951. name: "Normal",
  38952. height: math.unit(9, "feet"),
  38953. default: true
  38954. },
  38955. ]
  38956. ))
  38957. characterMakers.push(() => makeCharacter(
  38958. { name: "Bora", species: ["chinchilla"], tags: ["anthro"] },
  38959. {
  38960. front: {
  38961. height: math.unit(2 + 9/12, "feet"),
  38962. name: "Front",
  38963. image: {
  38964. source: "./media/characters/bora/front.svg",
  38965. extra: 1265/1250,
  38966. bottom: 24/1289
  38967. }
  38968. },
  38969. },
  38970. [
  38971. {
  38972. name: "Normal",
  38973. height: math.unit(2 + 9/12, "feet"),
  38974. default: true
  38975. },
  38976. ]
  38977. ))
  38978. characterMakers.push(() => makeCharacter(
  38979. { name: "Myu-myu", species: ["monster"], tags: ["anthro"] },
  38980. {
  38981. front: {
  38982. height: math.unit(8, "feet"),
  38983. name: "Front",
  38984. image: {
  38985. source: "./media/characters/myu-myu/front.svg",
  38986. extra: 1949/1857,
  38987. bottom: 90/2039
  38988. }
  38989. },
  38990. },
  38991. [
  38992. {
  38993. name: "Normal",
  38994. height: math.unit(8, "feet"),
  38995. default: true
  38996. },
  38997. {
  38998. name: "Big",
  38999. height: math.unit(15, "feet")
  39000. },
  39001. {
  39002. name: "BIG",
  39003. height: math.unit(25, "feet")
  39004. },
  39005. ]
  39006. ))
  39007. characterMakers.push(() => makeCharacter(
  39008. { name: "Haloren", species: ["felkin"], tags: ["anthro"] },
  39009. {
  39010. side: {
  39011. height: math.unit(7 + 5/12, "feet"),
  39012. weight: math.unit(2800, "lb"),
  39013. name: "Side",
  39014. image: {
  39015. source: "./media/characters/haloren/side.svg",
  39016. extra: 1793/409,
  39017. bottom: 59/1852
  39018. }
  39019. },
  39020. frontPaw: {
  39021. height: math.unit(2.36, "feet"),
  39022. name: "Front paw",
  39023. image: {
  39024. source: "./media/characters/haloren/front-paw.svg"
  39025. }
  39026. },
  39027. hindPaw: {
  39028. height: math.unit(3.18, "feet"),
  39029. name: "Hind paw",
  39030. image: {
  39031. source: "./media/characters/haloren/hind-paw.svg"
  39032. }
  39033. },
  39034. maw: {
  39035. height: math.unit(5.05, "feet"),
  39036. name: "Maw",
  39037. image: {
  39038. source: "./media/characters/haloren/maw.svg"
  39039. }
  39040. },
  39041. dick: {
  39042. height: math.unit(2.90, "feet"),
  39043. name: "Dick",
  39044. image: {
  39045. source: "./media/characters/haloren/dick.svg"
  39046. }
  39047. },
  39048. },
  39049. [
  39050. {
  39051. name: "Normal",
  39052. height: math.unit(7 + 5/12, "feet"),
  39053. default: true
  39054. },
  39055. {
  39056. name: "Enhanced",
  39057. height: math.unit(14 + 3/12, "feet")
  39058. },
  39059. ]
  39060. ))
  39061. characterMakers.push(() => makeCharacter(
  39062. { name: "Kimmy", species: ["kitsune"], tags: ["anthro"] },
  39063. {
  39064. front: {
  39065. height: math.unit(171, "cm"),
  39066. name: "Front",
  39067. image: {
  39068. source: "./media/characters/kimmy/front.svg",
  39069. extra: 1491/1435,
  39070. bottom: 53/1544
  39071. }
  39072. },
  39073. },
  39074. [
  39075. {
  39076. name: "Small",
  39077. height: math.unit(9, "cm")
  39078. },
  39079. {
  39080. name: "Normal",
  39081. height: math.unit(171, "cm"),
  39082. default: true
  39083. },
  39084. ]
  39085. ))
  39086. characterMakers.push(() => makeCharacter(
  39087. { name: "Galeboomer", species: ["wolf"], tags: ["anthro"] },
  39088. {
  39089. front: {
  39090. height: math.unit(8, "feet"),
  39091. weight: math.unit(300, "lb"),
  39092. name: "Front",
  39093. image: {
  39094. source: "./media/characters/galeboomer/front.svg",
  39095. extra: 4651/4415,
  39096. bottom: 162/4813
  39097. }
  39098. },
  39099. back: {
  39100. height: math.unit(8, "feet"),
  39101. weight: math.unit(300, "lb"),
  39102. name: "Back",
  39103. image: {
  39104. source: "./media/characters/galeboomer/back.svg",
  39105. extra: 4544/4314,
  39106. bottom: 16/4560
  39107. }
  39108. },
  39109. frontAlt: {
  39110. height: math.unit(8, "feet"),
  39111. weight: math.unit(300, "lb"),
  39112. name: "Front (Alt)",
  39113. image: {
  39114. source: "./media/characters/galeboomer/front-alt.svg",
  39115. extra: 4458/4228,
  39116. bottom: 68/4526
  39117. }
  39118. },
  39119. maw: {
  39120. height: math.unit(1.2, "feet"),
  39121. name: "Maw",
  39122. image: {
  39123. source: "./media/characters/galeboomer/maw.svg"
  39124. }
  39125. },
  39126. },
  39127. [
  39128. {
  39129. name: "Normal",
  39130. height: math.unit(8, "feet"),
  39131. default: true
  39132. },
  39133. ]
  39134. ))
  39135. characterMakers.push(() => makeCharacter(
  39136. { name: "Chyr", species: ["fox"], tags: ["anthro"] },
  39137. {
  39138. front: {
  39139. height: math.unit(5 + 9/12, "feet"),
  39140. weight: math.unit(120, "lb"),
  39141. name: "Front",
  39142. image: {
  39143. source: "./media/characters/chyr/front.svg",
  39144. extra: 1323/1254,
  39145. bottom: 63/1386
  39146. }
  39147. },
  39148. back: {
  39149. height: math.unit(5 + 9/12, "feet"),
  39150. weight: math.unit(120, "lb"),
  39151. name: "Back",
  39152. image: {
  39153. source: "./media/characters/chyr/back.svg",
  39154. extra: 1323/1252,
  39155. bottom: 48/1371
  39156. }
  39157. },
  39158. },
  39159. [
  39160. {
  39161. name: "Normal",
  39162. height: math.unit(5 + 9/12, "feet"),
  39163. default: true
  39164. },
  39165. ]
  39166. ))
  39167. characterMakers.push(() => makeCharacter(
  39168. { name: "Solarus", species: ["tykeriel"], tags: ["anthro"] },
  39169. {
  39170. front: {
  39171. height: math.unit(7, "feet"),
  39172. weight: math.unit(310, "lb"),
  39173. name: "Front",
  39174. image: {
  39175. source: "./media/characters/solarus/front.svg",
  39176. extra: 2415/2021,
  39177. bottom: 103/2518
  39178. }
  39179. },
  39180. back: {
  39181. height: math.unit(7, "feet"),
  39182. weight: math.unit(310, "lb"),
  39183. name: "Back",
  39184. image: {
  39185. source: "./media/characters/solarus/back.svg",
  39186. extra: 2463/2089,
  39187. bottom: 79/2542
  39188. }
  39189. },
  39190. },
  39191. [
  39192. {
  39193. name: "Normal",
  39194. height: math.unit(7, "feet"),
  39195. default: true
  39196. },
  39197. ]
  39198. ))
  39199. characterMakers.push(() => makeCharacter(
  39200. { name: "Mutsuju Koizaemon", species: ["snow-leopard", "lynx"], tags: ["anthro"] },
  39201. {
  39202. front: {
  39203. height: math.unit(16, "feet"),
  39204. name: "Front",
  39205. image: {
  39206. source: "./media/characters/mutsuju-koizaemon/front.svg",
  39207. extra: 1844/1780,
  39208. bottom: 58/1902
  39209. }
  39210. },
  39211. winterCoat: {
  39212. height: math.unit(16, "feet"),
  39213. name: "Winter Coat",
  39214. image: {
  39215. source: "./media/characters/mutsuju-koizaemon/winter-coat.svg",
  39216. extra: 1807/1775,
  39217. bottom: 69/1876
  39218. }
  39219. },
  39220. },
  39221. [
  39222. {
  39223. name: "Normal",
  39224. height: math.unit(16, "feet"),
  39225. default: true
  39226. },
  39227. {
  39228. name: "Chicago Size",
  39229. height: math.unit(560, "feet")
  39230. },
  39231. ]
  39232. ))
  39233. characterMakers.push(() => makeCharacter(
  39234. { name: "Lexor", species: ["dragon"], tags: ["anthro"] },
  39235. {
  39236. front: {
  39237. height: math.unit(11 + 6/12, "feet"),
  39238. weight: math.unit(1366, "lb"),
  39239. name: "Front",
  39240. image: {
  39241. source: "./media/characters/lexor/front.svg",
  39242. extra: 1560/1481,
  39243. bottom: 211/1771
  39244. }
  39245. },
  39246. back: {
  39247. height: math.unit(11 + 6/12, "feet"),
  39248. weight: math.unit(1366, "lb"),
  39249. name: "Back",
  39250. image: {
  39251. source: "./media/characters/lexor/back.svg",
  39252. extra: 1614/1533,
  39253. bottom: 76/1690
  39254. }
  39255. },
  39256. maw: {
  39257. height: math.unit(3, "feet"),
  39258. name: "Maw",
  39259. image: {
  39260. source: "./media/characters/lexor/maw.svg"
  39261. }
  39262. },
  39263. dick: {
  39264. height: math.unit(2.59, "feet"),
  39265. name: "Dick",
  39266. image: {
  39267. source: "./media/characters/lexor/dick.svg"
  39268. }
  39269. },
  39270. },
  39271. [
  39272. {
  39273. name: "Normal",
  39274. height: math.unit(11 + 6/12, "feet"),
  39275. default: true
  39276. },
  39277. ]
  39278. ))
  39279. characterMakers.push(() => makeCharacter(
  39280. { name: "Magnum", species: ["folf"], tags: ["anthro"] },
  39281. {
  39282. front: {
  39283. height: math.unit(5 + 8/12, "feet"),
  39284. name: "Front",
  39285. image: {
  39286. source: "./media/characters/magnum/front.svg",
  39287. extra: 942/855,
  39288. bottom: 26/968
  39289. }
  39290. },
  39291. },
  39292. [
  39293. {
  39294. name: "Normal",
  39295. height: math.unit(5 + 8/12, "feet"),
  39296. default: true
  39297. },
  39298. ]
  39299. ))
  39300. characterMakers.push(() => makeCharacter(
  39301. { name: "Solas Sharpsman", species: ["kitsune"], tags: ["anthro"] },
  39302. {
  39303. front: {
  39304. height: math.unit(18 + 4/12, "feet"),
  39305. weight: math.unit(1500, "kg"),
  39306. name: "Front",
  39307. image: {
  39308. source: "./media/characters/solas-sharpsman/front.svg",
  39309. extra: 1698/1589,
  39310. bottom: 0/1698
  39311. }
  39312. },
  39313. },
  39314. [
  39315. {
  39316. name: "Normal",
  39317. height: math.unit(18 + 4/12, "feet"),
  39318. default: true
  39319. },
  39320. ]
  39321. ))
  39322. characterMakers.push(() => makeCharacter(
  39323. { name: "October", species: ["tiger"], tags: ["anthro"] },
  39324. {
  39325. front: {
  39326. height: math.unit(5 + 5/12, "feet"),
  39327. weight: math.unit(180, "lb"),
  39328. name: "Front",
  39329. image: {
  39330. source: "./media/characters/october/front.svg",
  39331. extra: 1800/1650,
  39332. bottom: 0/1800
  39333. }
  39334. },
  39335. frontNsfw: {
  39336. height: math.unit(5 + 5/12, "feet"),
  39337. weight: math.unit(180, "lb"),
  39338. name: "Front (NSFW)",
  39339. image: {
  39340. source: "./media/characters/october/front-nsfw.svg",
  39341. extra: 1392/1307,
  39342. bottom: 42/1434
  39343. }
  39344. },
  39345. },
  39346. [
  39347. {
  39348. name: "Normal",
  39349. height: math.unit(5 + 5/12, "feet"),
  39350. default: true
  39351. },
  39352. ]
  39353. ))
  39354. characterMakers.push(() => makeCharacter(
  39355. { name: "Essynkardi", species: ["dragon"], tags: ["anthro"] },
  39356. {
  39357. front: {
  39358. height: math.unit(8 + 6/12, "feet"),
  39359. name: "Front",
  39360. image: {
  39361. source: "./media/characters/essynkardi/front.svg",
  39362. extra: 1541/1457,
  39363. bottom: 47/1588
  39364. }
  39365. },
  39366. },
  39367. [
  39368. {
  39369. name: "Normal",
  39370. height: math.unit(8 + 6/12, "feet"),
  39371. default: true
  39372. },
  39373. ]
  39374. ))
  39375. characterMakers.push(() => makeCharacter(
  39376. { name: "Icky", species: ["raven", "pooltoy"], tags: ["anthro"] },
  39377. {
  39378. front: {
  39379. height: math.unit(6 + 6/12, "feet"),
  39380. weight: math.unit(7, "lb"),
  39381. name: "Front",
  39382. image: {
  39383. source: "./media/characters/icky/front.svg",
  39384. extra: 813/782,
  39385. bottom: 66/879
  39386. }
  39387. },
  39388. back: {
  39389. height: math.unit(6 + 6/12, "feet"),
  39390. weight: math.unit(7, "lb"),
  39391. name: "Back",
  39392. image: {
  39393. source: "./media/characters/icky/back.svg",
  39394. extra: 754/735,
  39395. bottom: 56/810
  39396. }
  39397. },
  39398. },
  39399. [
  39400. {
  39401. name: "Normal",
  39402. height: math.unit(6 + 6/12, "feet"),
  39403. default: true
  39404. },
  39405. ]
  39406. ))
  39407. characterMakers.push(() => makeCharacter(
  39408. { name: "Rojas", species: ["dragon", "human"], tags: ["anthro"] },
  39409. {
  39410. front: {
  39411. height: math.unit(15, "feet"),
  39412. name: "Front",
  39413. image: {
  39414. source: "./media/characters/rojas/front.svg",
  39415. extra: 1462/1408,
  39416. bottom: 95/1557
  39417. }
  39418. },
  39419. back: {
  39420. height: math.unit(15, "feet"),
  39421. name: "Back",
  39422. image: {
  39423. source: "./media/characters/rojas/back.svg",
  39424. extra: 1023/954,
  39425. bottom: 28/1051
  39426. }
  39427. },
  39428. },
  39429. [
  39430. {
  39431. name: "Normal",
  39432. height: math.unit(15, "feet"),
  39433. default: true
  39434. },
  39435. ]
  39436. ))
  39437. characterMakers.push(() => makeCharacter(
  39438. { name: "Alek Dryagan", species: ["sea-monster", "human", "demi"], tags: ["anthro"] },
  39439. {
  39440. frontHuman: {
  39441. height: math.unit(5 + 7/12, "feet"),
  39442. name: "Front (Human)",
  39443. image: {
  39444. source: "./media/characters/alek-dryagan/front-human.svg",
  39445. extra: 1687/1667,
  39446. bottom: 69/1756
  39447. }
  39448. },
  39449. backHuman: {
  39450. height: math.unit(5 + 7/12, "feet"),
  39451. name: "Back (Human)",
  39452. image: {
  39453. source: "./media/characters/alek-dryagan/back-human.svg",
  39454. extra: 1670/1649,
  39455. bottom: 65/1735
  39456. }
  39457. },
  39458. frontDemi: {
  39459. height: math.unit(65, "feet"),
  39460. name: "Front (Demi)",
  39461. image: {
  39462. source: "./media/characters/alek-dryagan/front-demi.svg",
  39463. extra: 1669/1642,
  39464. bottom: 49/1718
  39465. }
  39466. },
  39467. backDemi: {
  39468. height: math.unit(65, "feet"),
  39469. name: "Back (Demi)",
  39470. image: {
  39471. source: "./media/characters/alek-dryagan/back-demi.svg",
  39472. extra: 1658/1637,
  39473. bottom: 40/1698
  39474. }
  39475. },
  39476. mawHuman: {
  39477. height: math.unit(0.3, "feet"),
  39478. name: "Maw (Human)",
  39479. image: {
  39480. source: "./media/characters/alek-dryagan/maw-human.svg"
  39481. }
  39482. },
  39483. mawDemi: {
  39484. height: math.unit(3.8, "feet"),
  39485. name: "Maw (Demi)",
  39486. image: {
  39487. source: "./media/characters/alek-dryagan/maw-demi.svg"
  39488. }
  39489. },
  39490. },
  39491. [
  39492. {
  39493. name: "Normal",
  39494. height: math.unit(5 + 7/12, "feet"),
  39495. default: true
  39496. },
  39497. ]
  39498. ))
  39499. characterMakers.push(() => makeCharacter(
  39500. { name: "Gen", species: ["cat", "human", "demi"], tags: ["anthro"] },
  39501. {
  39502. frontHuman: {
  39503. height: math.unit(5 + 2/12, "feet"),
  39504. name: "Front (Human)",
  39505. image: {
  39506. source: "./media/characters/gen/front-human.svg",
  39507. extra: 1627/1538,
  39508. bottom: 71/1698
  39509. }
  39510. },
  39511. backHuman: {
  39512. height: math.unit(5 + 2/12, "feet"),
  39513. name: "Back (Human)",
  39514. image: {
  39515. source: "./media/characters/gen/back-human.svg",
  39516. extra: 1638/1548,
  39517. bottom: 69/1707
  39518. }
  39519. },
  39520. frontDemi: {
  39521. height: math.unit(5 + 2/12, "feet"),
  39522. name: "Front (Demi)",
  39523. image: {
  39524. source: "./media/characters/gen/front-demi.svg",
  39525. extra: 1627/1538,
  39526. bottom: 71/1698
  39527. }
  39528. },
  39529. backDemi: {
  39530. height: math.unit(5 + 2/12, "feet"),
  39531. name: "Back (Demi)",
  39532. image: {
  39533. source: "./media/characters/gen/back-demi.svg",
  39534. extra: 1638/1548,
  39535. bottom: 69/1707
  39536. }
  39537. },
  39538. },
  39539. [
  39540. {
  39541. name: "Normal",
  39542. height: math.unit(5 + 2/12, "feet"),
  39543. default: true
  39544. },
  39545. ]
  39546. ))
  39547. characterMakers.push(() => makeCharacter(
  39548. { name: "Max Kobold", species: ["imp", "human", "demi"], tags: ["anthro"] },
  39549. {
  39550. frontImp: {
  39551. height: math.unit(1 + 11/12, "feet"),
  39552. name: "Front (Imp)",
  39553. image: {
  39554. source: "./media/characters/max-kobold/front-imp.svg",
  39555. extra: 1238/1134,
  39556. bottom: 81/1319
  39557. }
  39558. },
  39559. backImp: {
  39560. height: math.unit(1 + 11/12, "feet"),
  39561. name: "Back (Imp)",
  39562. image: {
  39563. source: "./media/characters/max-kobold/back-imp.svg",
  39564. extra: 1334/1175,
  39565. bottom: 34/1368
  39566. }
  39567. },
  39568. frontDemi: {
  39569. height: math.unit(5 + 9/12, "feet"),
  39570. name: "Front (Demi)",
  39571. image: {
  39572. source: "./media/characters/max-kobold/front-demi.svg",
  39573. extra: 1715/1685,
  39574. bottom: 54/1769
  39575. }
  39576. },
  39577. backDemi: {
  39578. height: math.unit(5 + 9/12, "feet"),
  39579. name: "Back (Demi)",
  39580. image: {
  39581. source: "./media/characters/max-kobold/back-demi.svg",
  39582. extra: 1752/1729,
  39583. bottom: 41/1793
  39584. }
  39585. },
  39586. handImp: {
  39587. height: math.unit(0.45, "feet"),
  39588. name: "Hand (Imp)",
  39589. image: {
  39590. source: "./media/characters/max-kobold/hand.svg"
  39591. }
  39592. },
  39593. pawImp: {
  39594. height: math.unit(0.46, "feet"),
  39595. name: "Paw (Imp)",
  39596. image: {
  39597. source: "./media/characters/max-kobold/paw.svg"
  39598. }
  39599. },
  39600. handDemi: {
  39601. height: math.unit(0.80, "feet"),
  39602. name: "Hand (Demi)",
  39603. image: {
  39604. source: "./media/characters/max-kobold/hand.svg"
  39605. }
  39606. },
  39607. pawDemi: {
  39608. height: math.unit(1.1, "feet"),
  39609. name: "Paw (Demi)",
  39610. image: {
  39611. source: "./media/characters/max-kobold/paw.svg"
  39612. }
  39613. },
  39614. headImp: {
  39615. height: math.unit(1.33, "feet"),
  39616. name: "Head (Imp)",
  39617. image: {
  39618. source: "./media/characters/max-kobold/head-imp.svg"
  39619. }
  39620. },
  39621. mawImp: {
  39622. height: math.unit(0.75, "feet"),
  39623. name: "Maw (Imp)",
  39624. image: {
  39625. source: "./media/characters/max-kobold/maw-imp.svg"
  39626. }
  39627. },
  39628. mawDemi: {
  39629. height: math.unit(0.42, "feet"),
  39630. name: "Maw (Demi)",
  39631. image: {
  39632. source: "./media/characters/max-kobold/maw-demi.svg"
  39633. }
  39634. },
  39635. },
  39636. [
  39637. {
  39638. name: "Normal",
  39639. height: math.unit(1 + 11/12, "feet"),
  39640. default: true
  39641. },
  39642. ]
  39643. ))
  39644. characterMakers.push(() => makeCharacter(
  39645. { name: "Carbon", species: ["charizard", "demi"], tags: ["anthro"] },
  39646. {
  39647. front: {
  39648. height: math.unit(7 + 5/12, "feet"),
  39649. name: "Front",
  39650. image: {
  39651. source: "./media/characters/carbon/front.svg",
  39652. extra: 1754/1689,
  39653. bottom: 65/1819
  39654. }
  39655. },
  39656. back: {
  39657. height: math.unit(7 + 5/12, "feet"),
  39658. name: "Back",
  39659. image: {
  39660. source: "./media/characters/carbon/back.svg",
  39661. extra: 1762/1695,
  39662. bottom: 24/1786
  39663. }
  39664. },
  39665. frontGigantamax: {
  39666. height: math.unit(150, "feet"),
  39667. name: "Front (Gigantamax)",
  39668. image: {
  39669. source: "./media/characters/carbon/front-gigantamax.svg",
  39670. extra: 1826/1669,
  39671. bottom: 59/1885
  39672. }
  39673. },
  39674. backGigantamax: {
  39675. height: math.unit(150, "feet"),
  39676. name: "Back (Gigantamax)",
  39677. image: {
  39678. source: "./media/characters/carbon/back-gigantamax.svg",
  39679. extra: 1796/1653,
  39680. bottom: 53/1849
  39681. }
  39682. },
  39683. maw: {
  39684. height: math.unit(0.48, "feet"),
  39685. name: "Maw",
  39686. image: {
  39687. source: "./media/characters/carbon/maw.svg"
  39688. }
  39689. },
  39690. mawGigantamax: {
  39691. height: math.unit(7.5, "feet"),
  39692. name: "Maw (Gigantamax)",
  39693. image: {
  39694. source: "./media/characters/carbon/maw-gigantamax.svg"
  39695. }
  39696. },
  39697. },
  39698. [
  39699. {
  39700. name: "Normal",
  39701. height: math.unit(7 + 5/12, "feet"),
  39702. default: true
  39703. },
  39704. ]
  39705. ))
  39706. characterMakers.push(() => makeCharacter(
  39707. { name: "Maverick", species: ["salazzle", "demi"], tags: ["anthro"] },
  39708. {
  39709. front: {
  39710. height: math.unit(6, "feet"),
  39711. name: "Front",
  39712. image: {
  39713. source: "./media/characters/maverick/front.svg",
  39714. extra: 1672/1661,
  39715. bottom: 85/1757
  39716. }
  39717. },
  39718. back: {
  39719. height: math.unit(6, "feet"),
  39720. name: "Back",
  39721. image: {
  39722. source: "./media/characters/maverick/back.svg",
  39723. extra: 1642/1631,
  39724. bottom: 38/1680
  39725. }
  39726. },
  39727. },
  39728. [
  39729. {
  39730. name: "Normal",
  39731. height: math.unit(6, "feet"),
  39732. default: true
  39733. },
  39734. ]
  39735. ))
  39736. characterMakers.push(() => makeCharacter(
  39737. { name: "Grockle", species: ["stegosaurus"], tags: ["anthro"] },
  39738. {
  39739. front: {
  39740. height: math.unit(15, "feet"),
  39741. weight: math.unit(615, "lb"),
  39742. name: "Front",
  39743. image: {
  39744. source: "./media/characters/grockle/front.svg",
  39745. extra: 1535/1427,
  39746. bottom: 56/1591
  39747. }
  39748. },
  39749. },
  39750. [
  39751. {
  39752. name: "Normal",
  39753. height: math.unit(15, "feet"),
  39754. default: true
  39755. },
  39756. {
  39757. name: "Large",
  39758. height: math.unit(150, "feet")
  39759. },
  39760. {
  39761. name: "Macro",
  39762. height: math.unit(1876, "feet")
  39763. },
  39764. {
  39765. name: "Mega Macro",
  39766. height: math.unit(121940, "feet")
  39767. },
  39768. {
  39769. name: "Giga Macro",
  39770. height: math.unit(750, "km")
  39771. },
  39772. {
  39773. name: "Tera Macro",
  39774. height: math.unit(750000, "km")
  39775. },
  39776. {
  39777. name: "Galactic",
  39778. height: math.unit(1.4e5, "km")
  39779. },
  39780. {
  39781. name: "Godlike",
  39782. height: math.unit(9.8e280, "galaxies")
  39783. },
  39784. ]
  39785. ))
  39786. characterMakers.push(() => makeCharacter(
  39787. { name: "Alistair", species: ["dragon"], tags: ["anthro"] },
  39788. {
  39789. front: {
  39790. height: math.unit(11, "meters"),
  39791. weight: math.unit(20, "tonnes"),
  39792. name: "Front",
  39793. image: {
  39794. source: "./media/characters/alistair/front.svg",
  39795. extra: 1265/1009,
  39796. bottom: 93/1358
  39797. }
  39798. },
  39799. },
  39800. [
  39801. {
  39802. name: "Normal",
  39803. height: math.unit(11, "meters"),
  39804. default: true
  39805. },
  39806. ]
  39807. ))
  39808. characterMakers.push(() => makeCharacter(
  39809. { name: "Haruka", species: ["raptor"], tags: ["anthro"] },
  39810. {
  39811. front: {
  39812. height: math.unit(5 + 8/12, "feet"),
  39813. name: "Front",
  39814. image: {
  39815. source: "./media/characters/haruka/front.svg",
  39816. extra: 2012/1952,
  39817. bottom: 0/2012
  39818. }
  39819. },
  39820. },
  39821. [
  39822. {
  39823. name: "Normal",
  39824. height: math.unit(5 + 8/12, "feet"),
  39825. default: true
  39826. },
  39827. ]
  39828. ))
  39829. characterMakers.push(() => makeCharacter(
  39830. { name: "Vivian Sylveon", species: ["sylveon", "computer-virus"], tags: ["anthro"] },
  39831. {
  39832. back: {
  39833. height: math.unit(9, "feet"),
  39834. name: "Back",
  39835. image: {
  39836. source: "./media/characters/vivian-sylveon/back.svg",
  39837. extra: 1853/1714,
  39838. bottom: 0/1853
  39839. }
  39840. },
  39841. hyper: {
  39842. height: math.unit(5.58, "feet"),
  39843. name: "Hyper",
  39844. preyCapacity: math.unit(2.80616218797, "m^3"),
  39845. image: {
  39846. source: "./media/characters/vivian-sylveon/hyper.svg",
  39847. extra: 999/676,
  39848. bottom: 697/1696
  39849. },
  39850. },
  39851. paw: {
  39852. height: math.unit(1.8, "feet"),
  39853. name: "Paw",
  39854. image: {
  39855. source: "./media/characters/vivian-sylveon/paw.svg"
  39856. }
  39857. },
  39858. danger: {
  39859. height: math.unit(7.5, "feet"),
  39860. name: "DANGER",
  39861. image: {
  39862. source: "./media/characters/vivian-sylveon/danger.svg"
  39863. }
  39864. },
  39865. },
  39866. [
  39867. {
  39868. name: "Normal",
  39869. height: math.unit(9, "feet"),
  39870. default: true
  39871. },
  39872. {
  39873. name: "Macro",
  39874. height: math.unit(500, "feet")
  39875. },
  39876. {
  39877. name: "Megamacro",
  39878. height: math.unit(600, "miles")
  39879. },
  39880. {
  39881. name: "Gigamacro",
  39882. height: math.unit(30000, "miles")
  39883. },
  39884. ]
  39885. ))
  39886. characterMakers.push(() => makeCharacter(
  39887. { name: "Daiki", species: ["bat", "dragon"], tags: ["anthro" ,"feral"] },
  39888. {
  39889. anthro: {
  39890. height: math.unit(5 + 10/12, "feet"),
  39891. weight: math.unit(100, "lb"),
  39892. name: "Anthro",
  39893. image: {
  39894. source: "./media/characters/daiki/anthro.svg",
  39895. extra: 1115/1027,
  39896. bottom: 69/1184
  39897. }
  39898. },
  39899. feral: {
  39900. height: math.unit(200, "feet"),
  39901. name: "Feral",
  39902. image: {
  39903. source: "./media/characters/daiki/feral.svg",
  39904. extra: 1256/313,
  39905. bottom: 39/1295
  39906. }
  39907. },
  39908. feralHead: {
  39909. height: math.unit(171, "feet"),
  39910. name: "Feral Head",
  39911. image: {
  39912. source: "./media/characters/daiki/feral-head.svg"
  39913. }
  39914. },
  39915. manaDragon: {
  39916. height: math.unit(170, "meters"),
  39917. name: "Mana-dragon",
  39918. image: {
  39919. source: "./media/characters/daiki/mana-dragon.svg",
  39920. extra: 763/420,
  39921. bottom: 97/860
  39922. }
  39923. },
  39924. },
  39925. [
  39926. {
  39927. name: "Normal",
  39928. height: math.unit(5 + 10/12, "feet"),
  39929. default: true
  39930. },
  39931. ]
  39932. ))
  39933. characterMakers.push(() => makeCharacter(
  39934. { name: "Tea Spot", species: ["space-springhare"], tags: ["anthro"] },
  39935. {
  39936. fullyEquippedFront: {
  39937. height: math.unit(3 + 1/12, "feet"),
  39938. weight: math.unit(24, "lb"),
  39939. name: "Fully Equipped (Front)",
  39940. image: {
  39941. source: "./media/characters/tea-spot/fully-equipped-front.svg",
  39942. extra: 687/605,
  39943. bottom: 18/705
  39944. }
  39945. },
  39946. fullyEquippedBack: {
  39947. height: math.unit(3 + 1/12, "feet"),
  39948. weight: math.unit(24, "lb"),
  39949. name: "Fully Equipped (Back)",
  39950. image: {
  39951. source: "./media/characters/tea-spot/fully-equipped-back.svg",
  39952. extra: 689/590,
  39953. bottom: 18/707
  39954. }
  39955. },
  39956. dailyWear: {
  39957. height: math.unit(3 + 1/12, "feet"),
  39958. weight: math.unit(24, "lb"),
  39959. name: "Daily Wear",
  39960. image: {
  39961. source: "./media/characters/tea-spot/daily-wear.svg",
  39962. extra: 701/620,
  39963. bottom: 21/722
  39964. }
  39965. },
  39966. maidWork: {
  39967. height: math.unit(3 + 1/12, "feet"),
  39968. weight: math.unit(24, "lb"),
  39969. name: "Maid Work",
  39970. image: {
  39971. source: "./media/characters/tea-spot/maid-work.svg",
  39972. extra: 693/609,
  39973. bottom: 15/708
  39974. }
  39975. },
  39976. },
  39977. [
  39978. {
  39979. name: "Normal",
  39980. height: math.unit(3 + 1/12, "feet"),
  39981. default: true
  39982. },
  39983. ]
  39984. ))
  39985. characterMakers.push(() => makeCharacter(
  39986. { name: "Chee", species: ["cheetah"], tags: ["anthro"] },
  39987. {
  39988. front: {
  39989. height: math.unit(175, "cm"),
  39990. weight: math.unit(75, "kg"),
  39991. name: "Front",
  39992. image: {
  39993. source: "./media/characters/chee/front.svg",
  39994. extra: 1796/1740,
  39995. bottom: 40/1836
  39996. }
  39997. },
  39998. },
  39999. [
  40000. {
  40001. name: "Micro-Micro",
  40002. height: math.unit(1, "nm")
  40003. },
  40004. {
  40005. name: "Micro-erst",
  40006. height: math.unit(1, "micrometer")
  40007. },
  40008. {
  40009. name: "Micro-er",
  40010. height: math.unit(1, "cm")
  40011. },
  40012. {
  40013. name: "Normal",
  40014. height: math.unit(175, "cm"),
  40015. default: true
  40016. },
  40017. {
  40018. name: "Macro",
  40019. height: math.unit(100, "m")
  40020. },
  40021. {
  40022. name: "Macro-er",
  40023. height: math.unit(1, "km")
  40024. },
  40025. {
  40026. name: "Macro-erst",
  40027. height: math.unit(10, "km")
  40028. },
  40029. {
  40030. name: "Macro-Macro",
  40031. height: math.unit(100, "km")
  40032. },
  40033. ]
  40034. ))
  40035. characterMakers.push(() => makeCharacter(
  40036. { name: "Kingsley", species: ["dragon"], tags: ["anthro"] },
  40037. {
  40038. front: {
  40039. height: math.unit(11 + 9/12, "feet"),
  40040. weight: math.unit(935, "lb"),
  40041. name: "Front",
  40042. image: {
  40043. source: "./media/characters/kingsley/front.svg",
  40044. extra: 1803/1674,
  40045. bottom: 127/1930
  40046. }
  40047. },
  40048. frontNude: {
  40049. height: math.unit(11 + 9/12, "feet"),
  40050. weight: math.unit(935, "lb"),
  40051. name: "Front (Nude)",
  40052. image: {
  40053. source: "./media/characters/kingsley/front-nude.svg",
  40054. extra: 1803/1674,
  40055. bottom: 127/1930
  40056. }
  40057. },
  40058. },
  40059. [
  40060. {
  40061. name: "Normal",
  40062. height: math.unit(11 + 9/12, "feet"),
  40063. default: true
  40064. },
  40065. ]
  40066. ))
  40067. characterMakers.push(() => makeCharacter(
  40068. { name: "Rymel", species: ["river-drake"], tags: ["feral"] },
  40069. {
  40070. side: {
  40071. height: math.unit(9, "feet"),
  40072. name: "Side",
  40073. image: {
  40074. source: "./media/characters/rymel/side.svg",
  40075. extra: 792/469,
  40076. bottom: 121/913
  40077. }
  40078. },
  40079. maw: {
  40080. height: math.unit(2.4, "meters"),
  40081. name: "Maw",
  40082. image: {
  40083. source: "./media/characters/rymel/maw.svg"
  40084. }
  40085. },
  40086. },
  40087. [
  40088. {
  40089. name: "House Drake",
  40090. height: math.unit(2, "feet")
  40091. },
  40092. {
  40093. name: "Reduced",
  40094. height: math.unit(4.5, "feet")
  40095. },
  40096. {
  40097. name: "Normal",
  40098. height: math.unit(9, "feet"),
  40099. default: true
  40100. },
  40101. ]
  40102. ))
  40103. characterMakers.push(() => makeCharacter(
  40104. { name: "Rubus", species: ["plant", "dragon", "construct"], tags: ["anthro"] },
  40105. {
  40106. front: {
  40107. height: math.unit(1.74, "meters"),
  40108. weight: math.unit(55, "kg"),
  40109. name: "Front",
  40110. image: {
  40111. source: "./media/characters/rubus/front.svg",
  40112. extra: 1894/1742,
  40113. bottom: 44/1938
  40114. }
  40115. },
  40116. },
  40117. [
  40118. {
  40119. name: "Normal",
  40120. height: math.unit(1.74, "meters"),
  40121. default: true
  40122. },
  40123. ]
  40124. ))
  40125. characterMakers.push(() => makeCharacter(
  40126. { name: "Cassie Kingston", species: ["border-collie"], tags: ["anthro"] },
  40127. {
  40128. front: {
  40129. height: math.unit(5 + 2/12, "feet"),
  40130. weight: math.unit(112, "lb"),
  40131. name: "Front",
  40132. image: {
  40133. source: "./media/characters/cassie-kingston/front.svg",
  40134. extra: 1438/1390,
  40135. bottom: 47/1485
  40136. }
  40137. },
  40138. },
  40139. [
  40140. {
  40141. name: "Normal",
  40142. height: math.unit(5 + 2/12, "feet"),
  40143. default: true
  40144. },
  40145. {
  40146. name: "Macro",
  40147. height: math.unit(128, "feet")
  40148. },
  40149. {
  40150. name: "Megamacro",
  40151. height: math.unit(2.56, "miles")
  40152. },
  40153. ]
  40154. ))
  40155. characterMakers.push(() => makeCharacter(
  40156. { name: "Fox", species: ["fox"], tags: ["anthro"] },
  40157. {
  40158. front: {
  40159. height: math.unit(7, "feet"),
  40160. name: "Front",
  40161. image: {
  40162. source: "./media/characters/fox/front.svg",
  40163. extra: 1798/1703,
  40164. bottom: 55/1853
  40165. }
  40166. },
  40167. back: {
  40168. height: math.unit(7, "feet"),
  40169. name: "Back",
  40170. image: {
  40171. source: "./media/characters/fox/back.svg",
  40172. extra: 1748/1649,
  40173. bottom: 32/1780
  40174. }
  40175. },
  40176. head: {
  40177. height: math.unit(1.95, "feet"),
  40178. name: "Head",
  40179. image: {
  40180. source: "./media/characters/fox/head.svg"
  40181. }
  40182. },
  40183. dick: {
  40184. height: math.unit(1.33, "feet"),
  40185. name: "Dick",
  40186. image: {
  40187. source: "./media/characters/fox/dick.svg"
  40188. }
  40189. },
  40190. foot: {
  40191. height: math.unit(1, "feet"),
  40192. name: "Foot",
  40193. image: {
  40194. source: "./media/characters/fox/foot.svg"
  40195. }
  40196. },
  40197. paw: {
  40198. height: math.unit(0.92, "feet"),
  40199. name: "Paw",
  40200. image: {
  40201. source: "./media/characters/fox/paw.svg"
  40202. }
  40203. },
  40204. },
  40205. [
  40206. {
  40207. name: "Small",
  40208. height: math.unit(3, "inches")
  40209. },
  40210. {
  40211. name: "\"Realistic\"",
  40212. height: math.unit(7, "feet")
  40213. },
  40214. {
  40215. name: "Normal",
  40216. height: math.unit(150, "feet"),
  40217. default: true
  40218. },
  40219. {
  40220. name: "BIG",
  40221. height: math.unit(1200, "feet")
  40222. },
  40223. {
  40224. name: "👀",
  40225. height: math.unit(5, "miles")
  40226. },
  40227. {
  40228. name: "👀👀👀",
  40229. height: math.unit(64, "miles")
  40230. },
  40231. ]
  40232. ))
  40233. characterMakers.push(() => makeCharacter(
  40234. { name: "Asonja Rossa", species: ["wolf", "dragon"], tags: ["anthro"] },
  40235. {
  40236. front: {
  40237. height: math.unit(625, "feet"),
  40238. name: "Front",
  40239. image: {
  40240. source: "./media/characters/asonja-rossa/front.svg",
  40241. extra: 1833/1686,
  40242. bottom: 24/1857
  40243. }
  40244. },
  40245. back: {
  40246. height: math.unit(625, "feet"),
  40247. name: "Back",
  40248. image: {
  40249. source: "./media/characters/asonja-rossa/back.svg",
  40250. extra: 1852/1753,
  40251. bottom: 26/1878
  40252. }
  40253. },
  40254. },
  40255. [
  40256. {
  40257. name: "Macro",
  40258. height: math.unit(625, "feet"),
  40259. default: true
  40260. },
  40261. ]
  40262. ))
  40263. characterMakers.push(() => makeCharacter(
  40264. { name: "Rezukii", species: ["dragon"], tags: ["feral"] },
  40265. {
  40266. side: {
  40267. height: math.unit(8, "feet"),
  40268. name: "Side",
  40269. image: {
  40270. source: "./media/characters/rezukii/side.svg",
  40271. extra: 979/542,
  40272. bottom: 87/1066
  40273. }
  40274. },
  40275. sitting: {
  40276. height: math.unit(14.6, "feet"),
  40277. name: "Sitting",
  40278. image: {
  40279. source: "./media/characters/rezukii/sitting.svg",
  40280. extra: 1023/813,
  40281. bottom: 45/1068
  40282. }
  40283. },
  40284. },
  40285. [
  40286. {
  40287. name: "Tiny",
  40288. height: math.unit(2, "feet")
  40289. },
  40290. {
  40291. name: "Smol",
  40292. height: math.unit(4, "feet")
  40293. },
  40294. {
  40295. name: "Normal",
  40296. height: math.unit(8, "feet"),
  40297. default: true
  40298. },
  40299. {
  40300. name: "Big",
  40301. height: math.unit(12, "feet")
  40302. },
  40303. {
  40304. name: "Macro",
  40305. height: math.unit(30, "feet")
  40306. },
  40307. ]
  40308. ))
  40309. characterMakers.push(() => makeCharacter(
  40310. { name: "Dawnheart", species: ["horse"], tags: ["anthro"] },
  40311. {
  40312. front: {
  40313. height: math.unit(14, "feet"),
  40314. weight: math.unit(9.5, "tonnes"),
  40315. name: "Front",
  40316. image: {
  40317. source: "./media/characters/dawnheart/front.svg",
  40318. extra: 2792/2675,
  40319. bottom: 64/2856
  40320. }
  40321. },
  40322. },
  40323. [
  40324. {
  40325. name: "Normal",
  40326. height: math.unit(14, "feet"),
  40327. default: true
  40328. },
  40329. ]
  40330. ))
  40331. characterMakers.push(() => makeCharacter(
  40332. { name: "Gladi", species: ["cat" ,"dragon"], tags: ["anthro", "feral"] },
  40333. {
  40334. front: {
  40335. height: math.unit(1.7, "m"),
  40336. name: "Front",
  40337. image: {
  40338. source: "./media/characters/gladi/front.svg",
  40339. extra: 1460/1362,
  40340. bottom: 19/1479
  40341. }
  40342. },
  40343. back: {
  40344. height: math.unit(1.7, "m"),
  40345. name: "Back",
  40346. image: {
  40347. source: "./media/characters/gladi/back.svg",
  40348. extra: 1459/1357,
  40349. bottom: 12/1471
  40350. }
  40351. },
  40352. feral: {
  40353. height: math.unit(2.05, "m"),
  40354. name: "Feral",
  40355. image: {
  40356. source: "./media/characters/gladi/feral.svg",
  40357. extra: 821/557,
  40358. bottom: 91/912
  40359. }
  40360. },
  40361. },
  40362. [
  40363. {
  40364. name: "Shortest",
  40365. height: math.unit(70, "cm")
  40366. },
  40367. {
  40368. name: "Normal",
  40369. height: math.unit(1.7, "m")
  40370. },
  40371. {
  40372. name: "Macro",
  40373. height: math.unit(10, "m"),
  40374. default: true
  40375. },
  40376. {
  40377. name: "Tallest",
  40378. height: math.unit(200, "m")
  40379. },
  40380. ]
  40381. ))
  40382. characterMakers.push(() => makeCharacter(
  40383. { name: "Erdno", species: ["mouse", "djinn"], tags: ["anthro"] },
  40384. {
  40385. front: {
  40386. height: math.unit(5 + 7/12, "feet"),
  40387. weight: math.unit(2, "tons"),
  40388. name: "Front",
  40389. image: {
  40390. source: "./media/characters/erdno/front.svg",
  40391. extra: 1234/1129,
  40392. bottom: 35/1269
  40393. }
  40394. },
  40395. angled: {
  40396. height: math.unit(5 + 7/12, "feet"),
  40397. weight: math.unit(2, "tons"),
  40398. name: "Angled",
  40399. image: {
  40400. source: "./media/characters/erdno/angled.svg",
  40401. extra: 1185/1139,
  40402. bottom: 36/1221
  40403. }
  40404. },
  40405. side: {
  40406. height: math.unit(5 + 7/12, "feet"),
  40407. weight: math.unit(2, "tons"),
  40408. name: "Side",
  40409. image: {
  40410. source: "./media/characters/erdno/side.svg",
  40411. extra: 1191/1144,
  40412. bottom: 40/1231
  40413. }
  40414. },
  40415. back: {
  40416. height: math.unit(5 + 7/12, "feet"),
  40417. weight: math.unit(2, "tons"),
  40418. name: "Back",
  40419. image: {
  40420. source: "./media/characters/erdno/back.svg",
  40421. extra: 1202/1146,
  40422. bottom: 17/1219
  40423. }
  40424. },
  40425. frontNsfw: {
  40426. height: math.unit(5 + 7/12, "feet"),
  40427. weight: math.unit(2, "tons"),
  40428. name: "Front (NSFW)",
  40429. image: {
  40430. source: "./media/characters/erdno/front-nsfw.svg",
  40431. extra: 1234/1129,
  40432. bottom: 35/1269
  40433. }
  40434. },
  40435. angledNsfw: {
  40436. height: math.unit(5 + 7/12, "feet"),
  40437. weight: math.unit(2, "tons"),
  40438. name: "Angled (NSFW)",
  40439. image: {
  40440. source: "./media/characters/erdno/angled-nsfw.svg",
  40441. extra: 1185/1139,
  40442. bottom: 36/1221
  40443. }
  40444. },
  40445. sideNsfw: {
  40446. height: math.unit(5 + 7/12, "feet"),
  40447. weight: math.unit(2, "tons"),
  40448. name: "Side (NSFW)",
  40449. image: {
  40450. source: "./media/characters/erdno/side-nsfw.svg",
  40451. extra: 1191/1144,
  40452. bottom: 40/1231
  40453. }
  40454. },
  40455. backNsfw: {
  40456. height: math.unit(5 + 7/12, "feet"),
  40457. weight: math.unit(2, "tons"),
  40458. name: "Back (NSFW)",
  40459. image: {
  40460. source: "./media/characters/erdno/back-nsfw.svg",
  40461. extra: 1202/1146,
  40462. bottom: 17/1219
  40463. }
  40464. },
  40465. frontHyper: {
  40466. height: math.unit(5 + 7/12, "feet"),
  40467. weight: math.unit(2, "tons"),
  40468. name: "Front (Hyper)",
  40469. image: {
  40470. source: "./media/characters/erdno/front-hyper.svg",
  40471. extra: 1298/1136,
  40472. bottom: 35/1333
  40473. }
  40474. },
  40475. },
  40476. [
  40477. {
  40478. name: "Normal",
  40479. height: math.unit(5 + 7/12, "feet"),
  40480. default: true
  40481. },
  40482. {
  40483. name: "Big",
  40484. height: math.unit(5.7, "meters")
  40485. },
  40486. {
  40487. name: "Macro",
  40488. height: math.unit(5.7, "kilometers")
  40489. },
  40490. {
  40491. name: "Megamacro",
  40492. height: math.unit(5.7, "earths")
  40493. },
  40494. ]
  40495. ))
  40496. characterMakers.push(() => makeCharacter(
  40497. { name: "Jamie", species: ["fox"], tags: ["anthro"] },
  40498. {
  40499. front: {
  40500. height: math.unit(5 + 10/12, "feet"),
  40501. weight: math.unit(150, "lb"),
  40502. name: "Front",
  40503. image: {
  40504. source: "./media/characters/jamie/front.svg",
  40505. extra: 1908/1768,
  40506. bottom: 19/1927
  40507. }
  40508. },
  40509. },
  40510. [
  40511. {
  40512. name: "Minimum",
  40513. height: math.unit(2, "cm")
  40514. },
  40515. {
  40516. name: "Micro",
  40517. height: math.unit(3, "inches")
  40518. },
  40519. {
  40520. name: "Normal",
  40521. height: math.unit(5 + 10/12, "feet"),
  40522. default: true
  40523. },
  40524. {
  40525. name: "Macro",
  40526. height: math.unit(150, "feet")
  40527. },
  40528. {
  40529. name: "Megamacro",
  40530. height: math.unit(10000, "m")
  40531. },
  40532. ]
  40533. ))
  40534. characterMakers.push(() => makeCharacter(
  40535. { name: "Shiron", species: ["wolf"], tags: ["anthro"] },
  40536. {
  40537. front: {
  40538. height: math.unit(2, "meters"),
  40539. weight: math.unit(100, "kg"),
  40540. name: "Front",
  40541. image: {
  40542. source: "./media/characters/shiron/front.svg",
  40543. extra: 2103/1985,
  40544. bottom: 98/2201
  40545. }
  40546. },
  40547. back: {
  40548. height: math.unit(2, "meters"),
  40549. weight: math.unit(100, "kg"),
  40550. name: "Back",
  40551. image: {
  40552. source: "./media/characters/shiron/back.svg",
  40553. extra: 2110/2015,
  40554. bottom: 89/2199
  40555. }
  40556. },
  40557. hand: {
  40558. height: math.unit(0.96, "feet"),
  40559. name: "Hand",
  40560. image: {
  40561. source: "./media/characters/shiron/hand.svg"
  40562. }
  40563. },
  40564. foot: {
  40565. height: math.unit(1.464, "feet"),
  40566. name: "Foot",
  40567. image: {
  40568. source: "./media/characters/shiron/foot.svg"
  40569. }
  40570. },
  40571. },
  40572. [
  40573. {
  40574. name: "Normal",
  40575. height: math.unit(2, "meters")
  40576. },
  40577. {
  40578. name: "Macro",
  40579. height: math.unit(500, "meters"),
  40580. default: true
  40581. },
  40582. {
  40583. name: "Megamacro",
  40584. height: math.unit(20, "km")
  40585. },
  40586. ]
  40587. ))
  40588. characterMakers.push(() => makeCharacter(
  40589. { name: "Sam", species: ["red-panda"], tags: ["anthro"] },
  40590. {
  40591. front: {
  40592. height: math.unit(6, "feet"),
  40593. name: "Front",
  40594. image: {
  40595. source: "./media/characters/sam/front.svg",
  40596. extra: 849/826,
  40597. bottom: 19/868
  40598. }
  40599. },
  40600. },
  40601. [
  40602. {
  40603. name: "Normal",
  40604. height: math.unit(6, "feet"),
  40605. default: true
  40606. },
  40607. ]
  40608. ))
  40609. characterMakers.push(() => makeCharacter(
  40610. { name: "Namori Kurogawa", species: ["fox"], tags: ["anthro"] },
  40611. {
  40612. front: {
  40613. height: math.unit(8 + 4/12, "feet"),
  40614. weight: math.unit(122, "kg"),
  40615. name: "Front",
  40616. image: {
  40617. source: "./media/characters/namori-kurogawa/front.svg",
  40618. extra: 1894/1576,
  40619. bottom: 34/1928
  40620. }
  40621. },
  40622. },
  40623. [
  40624. {
  40625. name: "Normal",
  40626. height: math.unit(8 + 4/12, "feet"),
  40627. default: true
  40628. },
  40629. ]
  40630. ))
  40631. characterMakers.push(() => makeCharacter(
  40632. { name: "Unmru", species: ["horse", "demon"], tags: ["anthro"] },
  40633. {
  40634. front: {
  40635. height: math.unit(9, "feet"),
  40636. weight: math.unit(621, "lb"),
  40637. name: "Front",
  40638. image: {
  40639. source: "./media/characters/unmru/front.svg",
  40640. extra: 1853/1747,
  40641. bottom: 73/1926
  40642. }
  40643. },
  40644. side: {
  40645. height: math.unit(9, "feet"),
  40646. weight: math.unit(621, "lb"),
  40647. name: "Side",
  40648. image: {
  40649. source: "./media/characters/unmru/side.svg",
  40650. extra: 1781/1671,
  40651. bottom: 127/1908
  40652. }
  40653. },
  40654. back: {
  40655. height: math.unit(9, "feet"),
  40656. weight: math.unit(621, "lb"),
  40657. name: "Back",
  40658. image: {
  40659. source: "./media/characters/unmru/back.svg",
  40660. extra: 1894/1765,
  40661. bottom: 75/1969
  40662. }
  40663. },
  40664. dick: {
  40665. height: math.unit(3, "feet"),
  40666. weight: math.unit(35, "lb"),
  40667. name: "Dick",
  40668. image: {
  40669. source: "./media/characters/unmru/dick.svg"
  40670. }
  40671. },
  40672. },
  40673. [
  40674. {
  40675. name: "Normal",
  40676. height: math.unit(9, "feet")
  40677. },
  40678. {
  40679. name: "Natural",
  40680. height: math.unit(27, "feet"),
  40681. default: true
  40682. },
  40683. {
  40684. name: "Giant",
  40685. height: math.unit(90, "feet")
  40686. },
  40687. {
  40688. name: "Kaiju",
  40689. height: math.unit(270, "feet")
  40690. },
  40691. {
  40692. name: "Macro",
  40693. height: math.unit(900, "feet")
  40694. },
  40695. {
  40696. name: "Macro+",
  40697. height: math.unit(2700, "feet")
  40698. },
  40699. {
  40700. name: "Megamacro",
  40701. height: math.unit(9000, "feet")
  40702. },
  40703. {
  40704. name: "City-Crushing",
  40705. height: math.unit(27000, "feet")
  40706. },
  40707. {
  40708. name: "Mountain-Mashing",
  40709. height: math.unit(90000, "feet")
  40710. },
  40711. {
  40712. name: "Earth-Eclipsing",
  40713. height: math.unit(2.7e8, "feet")
  40714. },
  40715. {
  40716. name: "Sol-Swallowing",
  40717. height: math.unit(9e10, "feet")
  40718. },
  40719. {
  40720. name: "Majoris-Munching",
  40721. height: math.unit(2.7e13, "feet")
  40722. },
  40723. ]
  40724. ))
  40725. characterMakers.push(() => makeCharacter(
  40726. { name: "Squeaks (Mouse)", species: ["grasshopper-mouse"], tags: ["feral"] },
  40727. {
  40728. front: {
  40729. height: math.unit(1, "inch"),
  40730. name: "Front",
  40731. image: {
  40732. source: "./media/characters/squeaks-mouse/front.svg",
  40733. extra: 352/308,
  40734. bottom: 25/377
  40735. }
  40736. },
  40737. },
  40738. [
  40739. {
  40740. name: "Micro",
  40741. height: math.unit(1, "inch"),
  40742. default: true
  40743. },
  40744. ]
  40745. ))
  40746. characterMakers.push(() => makeCharacter(
  40747. { name: "Sayko", species: ["dragon"], tags: ["feral"] },
  40748. {
  40749. side: {
  40750. height: math.unit(35, "feet"),
  40751. name: "Side",
  40752. image: {
  40753. source: "./media/characters/sayko/side.svg",
  40754. extra: 1697/1021,
  40755. bottom: 82/1779
  40756. }
  40757. },
  40758. head: {
  40759. height: math.unit(16, "feet"),
  40760. name: "Head",
  40761. image: {
  40762. source: "./media/characters/sayko/head.svg"
  40763. }
  40764. },
  40765. forepaw: {
  40766. height: math.unit(7.85, "feet"),
  40767. name: "Forepaw",
  40768. image: {
  40769. source: "./media/characters/sayko/forepaw.svg"
  40770. }
  40771. },
  40772. hindpaw: {
  40773. height: math.unit(8.8, "feet"),
  40774. name: "Hindpaw",
  40775. image: {
  40776. source: "./media/characters/sayko/hindpaw.svg"
  40777. }
  40778. },
  40779. },
  40780. [
  40781. {
  40782. name: "Normal",
  40783. height: math.unit(35, "feet"),
  40784. default: true
  40785. },
  40786. {
  40787. name: "Colossus",
  40788. height: math.unit(100, "meters")
  40789. },
  40790. {
  40791. name: "\"Small\" Deity",
  40792. height: math.unit(1, "km")
  40793. },
  40794. {
  40795. name: "\"Large\" Deity",
  40796. height: math.unit(15, "km")
  40797. },
  40798. ]
  40799. ))
  40800. characterMakers.push(() => makeCharacter(
  40801. { name: "Mukiro", species: ["somali-cat"], tags: ["anthro"] },
  40802. {
  40803. front: {
  40804. height: math.unit(6, "feet"),
  40805. weight: math.unit(250, "lb"),
  40806. name: "Front",
  40807. image: {
  40808. source: "./media/characters/mukiro/front.svg",
  40809. extra: 1368/1310,
  40810. bottom: 34/1402
  40811. }
  40812. },
  40813. },
  40814. [
  40815. {
  40816. name: "Normal",
  40817. height: math.unit(6, "feet"),
  40818. default: true
  40819. },
  40820. ]
  40821. ))
  40822. characterMakers.push(() => makeCharacter(
  40823. { name: "Zeph the Tiger God", species: ["deity"], tags: ["anthro"] },
  40824. {
  40825. front: {
  40826. height: math.unit(12 + 4/12, "feet"),
  40827. name: "Front",
  40828. image: {
  40829. source: "./media/characters/zeph-the-tiger-god/front.svg",
  40830. extra: 1346/1311,
  40831. bottom: 65/1411
  40832. }
  40833. },
  40834. },
  40835. [
  40836. {
  40837. name: "Base",
  40838. height: math.unit(12 + 4/12, "feet"),
  40839. default: true
  40840. },
  40841. {
  40842. name: "Macro",
  40843. height: math.unit(150, "feet")
  40844. },
  40845. {
  40846. name: "Mega",
  40847. height: math.unit(2, "miles")
  40848. },
  40849. {
  40850. name: "Demi God",
  40851. height: math.unit(4, "AU")
  40852. },
  40853. {
  40854. name: "God Size",
  40855. height: math.unit(1, "universe")
  40856. },
  40857. ]
  40858. ))
  40859. characterMakers.push(() => makeCharacter(
  40860. { name: "Trey", species: ["minccino"], tags: ["anthro"] },
  40861. {
  40862. front: {
  40863. height: math.unit(3 + 3/12, "feet"),
  40864. weight: math.unit(88, "lb"),
  40865. name: "Front",
  40866. image: {
  40867. source: "./media/characters/trey/front.svg",
  40868. extra: 1815/1509,
  40869. bottom: 60/1875
  40870. }
  40871. },
  40872. },
  40873. [
  40874. {
  40875. name: "Normal",
  40876. height: math.unit(3 + 3/12, "feet"),
  40877. default: true
  40878. },
  40879. ]
  40880. ))
  40881. characterMakers.push(() => makeCharacter(
  40882. { name: "Adelonda", species: ["dragon"], tags: ["anthro", "feral"] },
  40883. {
  40884. front: {
  40885. height: math.unit(4, "meters"),
  40886. name: "Front",
  40887. image: {
  40888. source: "./media/characters/adelonda/front.svg",
  40889. extra: 1077/982,
  40890. bottom: 39/1116
  40891. }
  40892. },
  40893. back: {
  40894. height: math.unit(4, "meters"),
  40895. name: "Back",
  40896. image: {
  40897. source: "./media/characters/adelonda/back.svg",
  40898. extra: 1105/1003,
  40899. bottom: 25/1130
  40900. }
  40901. },
  40902. feral: {
  40903. height: math.unit(40/1.5, "meters"),
  40904. name: "Feral",
  40905. image: {
  40906. source: "./media/characters/adelonda/feral.svg",
  40907. extra: 597/271,
  40908. bottom: 387/984
  40909. }
  40910. },
  40911. },
  40912. [
  40913. {
  40914. name: "Normal",
  40915. height: math.unit(4, "meters"),
  40916. default: true
  40917. },
  40918. ]
  40919. ))
  40920. characterMakers.push(() => makeCharacter(
  40921. { name: "Acadiel", species: ["dragon"], tags: ["anthro"] },
  40922. {
  40923. front: {
  40924. height: math.unit(8 + 4/12, "feet"),
  40925. weight: math.unit(670, "lb"),
  40926. name: "Front",
  40927. image: {
  40928. source: "./media/characters/acadiel/front.svg",
  40929. extra: 1901/1595,
  40930. bottom: 142/2043
  40931. }
  40932. },
  40933. },
  40934. [
  40935. {
  40936. name: "Normal",
  40937. height: math.unit(8 + 4/12, "feet"),
  40938. default: true
  40939. },
  40940. {
  40941. name: "Macro",
  40942. height: math.unit(200, "feet")
  40943. },
  40944. ]
  40945. ))
  40946. characterMakers.push(() => makeCharacter(
  40947. { name: "Kayne Ein", species: ["dragon", "wolf"], tags: ["anthro"] },
  40948. {
  40949. front: {
  40950. height: math.unit(6 + 2/12, "feet"),
  40951. weight: math.unit(185, "lb"),
  40952. name: "Front",
  40953. image: {
  40954. source: "./media/characters/kayne-ein/front.svg",
  40955. extra: 1780/1560,
  40956. bottom: 81/1861
  40957. }
  40958. },
  40959. },
  40960. [
  40961. {
  40962. name: "Normal",
  40963. height: math.unit(6 + 2/12, "feet"),
  40964. default: true
  40965. },
  40966. {
  40967. name: "Transformation Stage",
  40968. height: math.unit(15, "feet")
  40969. },
  40970. {
  40971. name: "Macro",
  40972. height: math.unit(150, "feet")
  40973. },
  40974. {
  40975. name: "Earth's Shadow",
  40976. height: math.unit(6200, "miles")
  40977. },
  40978. {
  40979. name: "Universal Demon",
  40980. height: math.unit(28e9, "parsecs")
  40981. },
  40982. {
  40983. name: "Multiverse God",
  40984. height: math.unit(3, "multiverses")
  40985. },
  40986. ]
  40987. ))
  40988. characterMakers.push(() => makeCharacter(
  40989. { name: "Fawn", species: ["deer"], tags: ["anthro"] },
  40990. {
  40991. front: {
  40992. height: math.unit(5 + 5/12, "feet"),
  40993. name: "Front",
  40994. image: {
  40995. source: "./media/characters/fawn/front.svg",
  40996. extra: 1873/1731,
  40997. bottom: 95/1968
  40998. }
  40999. },
  41000. back: {
  41001. height: math.unit(5 + 5/12, "feet"),
  41002. name: "Back",
  41003. image: {
  41004. source: "./media/characters/fawn/back.svg",
  41005. extra: 1813/1700,
  41006. bottom: 14/1827
  41007. }
  41008. },
  41009. hoof: {
  41010. height: math.unit(1.45, "feet"),
  41011. name: "Hoof",
  41012. image: {
  41013. source: "./media/characters/fawn/hoof.svg"
  41014. }
  41015. },
  41016. },
  41017. [
  41018. {
  41019. name: "Normal",
  41020. height: math.unit(5 + 5/12, "feet"),
  41021. default: true
  41022. },
  41023. ]
  41024. ))
  41025. characterMakers.push(() => makeCharacter(
  41026. { name: "Orion", species: ["pine-marten"], tags: ["anthro"] },
  41027. {
  41028. front: {
  41029. height: math.unit(2 + 5/12, "feet"),
  41030. name: "Front",
  41031. image: {
  41032. source: "./media/characters/orion/front.svg",
  41033. extra: 1366/1304,
  41034. bottom: 43/1409
  41035. }
  41036. },
  41037. paw: {
  41038. height: math.unit(0.52, "feet"),
  41039. name: "Paw",
  41040. image: {
  41041. source: "./media/characters/orion/paw.svg"
  41042. }
  41043. },
  41044. },
  41045. [
  41046. {
  41047. name: "Normal",
  41048. height: math.unit(2 + 5/12, "feet"),
  41049. default: true
  41050. },
  41051. ]
  41052. ))
  41053. characterMakers.push(() => makeCharacter(
  41054. { name: "Vera", species: ["husky", "arcanine"], tags: ["anthro"] },
  41055. {
  41056. front: {
  41057. height: math.unit(5 + 10/12, "feet"),
  41058. name: "Front",
  41059. image: {
  41060. source: "./media/characters/vera/front.svg",
  41061. extra: 1680/1575,
  41062. bottom: 49/1729
  41063. }
  41064. },
  41065. back: {
  41066. height: math.unit(5 + 10/12, "feet"),
  41067. name: "Back",
  41068. image: {
  41069. source: "./media/characters/vera/back.svg",
  41070. extra: 1700/1588,
  41071. bottom: 18/1718
  41072. }
  41073. },
  41074. arcanine: {
  41075. height: math.unit(6 + 8/12, "feet"),
  41076. name: "Arcanine",
  41077. image: {
  41078. source: "./media/characters/vera/arcanine.svg",
  41079. extra: 1590/1511,
  41080. bottom: 71/1661
  41081. }
  41082. },
  41083. maw: {
  41084. height: math.unit(0.82, "feet"),
  41085. name: "Maw",
  41086. image: {
  41087. source: "./media/characters/vera/maw.svg"
  41088. }
  41089. },
  41090. mawArcanine: {
  41091. height: math.unit(0.97, "feet"),
  41092. name: "Maw (Arcanine)",
  41093. image: {
  41094. source: "./media/characters/vera/maw-arcanine.svg"
  41095. }
  41096. },
  41097. paw: {
  41098. height: math.unit(0.75, "feet"),
  41099. name: "Paw",
  41100. image: {
  41101. source: "./media/characters/vera/paw.svg"
  41102. }
  41103. },
  41104. pawprint: {
  41105. height: math.unit(0.52, "feet"),
  41106. name: "Pawprint",
  41107. image: {
  41108. source: "./media/characters/vera/pawprint.svg"
  41109. }
  41110. },
  41111. },
  41112. [
  41113. {
  41114. name: "Normal",
  41115. height: math.unit(5 + 10/12, "feet"),
  41116. default: true
  41117. },
  41118. {
  41119. name: "Macro",
  41120. height: math.unit(75, "feet")
  41121. },
  41122. ]
  41123. ))
  41124. characterMakers.push(() => makeCharacter(
  41125. { name: "Orvan Rabbit", species: ["rabbit"], tags: ["anthro"] },
  41126. {
  41127. front: {
  41128. height: math.unit(4, "feet"),
  41129. weight: math.unit(40, "lb"),
  41130. name: "Front",
  41131. image: {
  41132. source: "./media/characters/orvan-rabbit/front.svg",
  41133. extra: 1896/1642,
  41134. bottom: 29/1925
  41135. }
  41136. },
  41137. },
  41138. [
  41139. {
  41140. name: "Normal",
  41141. height: math.unit(4, "feet"),
  41142. default: true
  41143. },
  41144. ]
  41145. ))
  41146. characterMakers.push(() => makeCharacter(
  41147. { name: "Lisa", species: ["fox", "deity", "caribou", "kitsune"], tags: ["anthro"] },
  41148. {
  41149. front: {
  41150. height: math.unit(6, "feet"),
  41151. weight: math.unit(168, "lb"),
  41152. name: "Front",
  41153. image: {
  41154. source: "./media/characters/lisa/front.svg",
  41155. extra: 2065/1867,
  41156. bottom: 46/2111
  41157. }
  41158. },
  41159. back: {
  41160. height: math.unit(6, "feet"),
  41161. weight: math.unit(168, "lb"),
  41162. name: "Back",
  41163. image: {
  41164. source: "./media/characters/lisa/back.svg",
  41165. extra: 1982/1838,
  41166. bottom: 29/2011
  41167. }
  41168. },
  41169. maw: {
  41170. height: math.unit(0.81, "feet"),
  41171. name: "Maw",
  41172. image: {
  41173. source: "./media/characters/lisa/maw.svg"
  41174. }
  41175. },
  41176. paw: {
  41177. height: math.unit(0.9, "feet"),
  41178. name: "Paw",
  41179. image: {
  41180. source: "./media/characters/lisa/paw.svg"
  41181. }
  41182. },
  41183. caribousune: {
  41184. height: math.unit(7 + 2/12, "feet"),
  41185. weight: math.unit(268, "lb"),
  41186. name: "Caribousune",
  41187. image: {
  41188. source: "./media/characters/lisa/caribousune.svg",
  41189. extra: 1843/1633,
  41190. bottom: 29/1872
  41191. }
  41192. },
  41193. frontCaribousune: {
  41194. height: math.unit(7 + 2/12, "feet"),
  41195. weight: math.unit(268, "lb"),
  41196. name: "Front (Caribousune)",
  41197. image: {
  41198. source: "./media/characters/lisa/front-caribousune.svg",
  41199. extra: 1818/1638,
  41200. bottom: 52/1870
  41201. }
  41202. },
  41203. sideCaribousune: {
  41204. height: math.unit(7 + 2/12, "feet"),
  41205. weight: math.unit(268, "lb"),
  41206. name: "Side (Caribousune)",
  41207. image: {
  41208. source: "./media/characters/lisa/side-caribousune.svg",
  41209. extra: 1851/1635,
  41210. bottom: 16/1867
  41211. }
  41212. },
  41213. backCaribousune: {
  41214. height: math.unit(7 + 2/12, "feet"),
  41215. weight: math.unit(268, "lb"),
  41216. name: "Back (Caribousune)",
  41217. image: {
  41218. source: "./media/characters/lisa/back-caribousune.svg",
  41219. extra: 1801/1604,
  41220. bottom: 44/1845
  41221. }
  41222. },
  41223. caribou: {
  41224. height: math.unit(7 + 2/12, "feet"),
  41225. weight: math.unit(268, "lb"),
  41226. name: "Caribou",
  41227. image: {
  41228. source: "./media/characters/lisa/caribou.svg",
  41229. extra: 1843/1633,
  41230. bottom: 29/1872
  41231. }
  41232. },
  41233. frontCaribou: {
  41234. height: math.unit(7 + 2/12, "feet"),
  41235. weight: math.unit(268, "lb"),
  41236. name: "Front (Caribou)",
  41237. image: {
  41238. source: "./media/characters/lisa/front-caribou.svg",
  41239. extra: 1818/1638,
  41240. bottom: 52/1870
  41241. }
  41242. },
  41243. sideCaribou: {
  41244. height: math.unit(7 + 2/12, "feet"),
  41245. weight: math.unit(268, "lb"),
  41246. name: "Side (Caribou)",
  41247. image: {
  41248. source: "./media/characters/lisa/side-caribou.svg",
  41249. extra: 1851/1635,
  41250. bottom: 16/1867
  41251. }
  41252. },
  41253. backCaribou: {
  41254. height: math.unit(7 + 2/12, "feet"),
  41255. weight: math.unit(268, "lb"),
  41256. name: "Back (Caribou)",
  41257. image: {
  41258. source: "./media/characters/lisa/back-caribou.svg",
  41259. extra: 1801/1604,
  41260. bottom: 44/1845
  41261. }
  41262. },
  41263. mawCaribou: {
  41264. height: math.unit(1.45, "feet"),
  41265. name: "Maw (Caribou)",
  41266. image: {
  41267. source: "./media/characters/lisa/maw-caribou.svg"
  41268. }
  41269. },
  41270. mawCaribousune: {
  41271. height: math.unit(1.45, "feet"),
  41272. name: "Maw (Caribousune)",
  41273. image: {
  41274. source: "./media/characters/lisa/maw-caribousune.svg"
  41275. }
  41276. },
  41277. pawCaribousune: {
  41278. height: math.unit(1.61, "feet"),
  41279. name: "Paw (Caribou)",
  41280. image: {
  41281. source: "./media/characters/lisa/paw-caribousune.svg"
  41282. }
  41283. },
  41284. },
  41285. [
  41286. {
  41287. name: "Normal",
  41288. height: math.unit(6, "feet")
  41289. },
  41290. {
  41291. name: "God Size",
  41292. height: math.unit(72, "feet"),
  41293. default: true
  41294. },
  41295. {
  41296. name: "Towering",
  41297. height: math.unit(288, "feet")
  41298. },
  41299. {
  41300. name: "City Size",
  41301. height: math.unit(48384, "feet")
  41302. },
  41303. {
  41304. name: "Continental",
  41305. height: math.unit(4200, "miles")
  41306. },
  41307. {
  41308. name: "Planet Eater",
  41309. height: math.unit(42, "earths")
  41310. },
  41311. {
  41312. name: "Star Swallower",
  41313. height: math.unit(42, "solarradii")
  41314. },
  41315. {
  41316. name: "System Swallower",
  41317. height: math.unit(84000, "AU")
  41318. },
  41319. {
  41320. name: "Galaxy Gobbler",
  41321. height: math.unit(42, "galaxies")
  41322. },
  41323. {
  41324. name: "Universe Devourer",
  41325. height: math.unit(42, "universes")
  41326. },
  41327. {
  41328. name: "Multiverse Muncher",
  41329. height: math.unit(42, "multiverses")
  41330. },
  41331. ]
  41332. ))
  41333. characterMakers.push(() => makeCharacter(
  41334. { name: "Shadow (Rat)", species: ["rat"], tags: ["anthro"] },
  41335. {
  41336. front: {
  41337. height: math.unit(36, "feet"),
  41338. name: "Front",
  41339. image: {
  41340. source: "./media/characters/shadow-rat/front.svg",
  41341. extra: 1845/1758,
  41342. bottom: 83/1928
  41343. }
  41344. },
  41345. },
  41346. [
  41347. {
  41348. name: "Macro",
  41349. height: math.unit(36, "feet"),
  41350. default: true
  41351. },
  41352. ]
  41353. ))
  41354. characterMakers.push(() => makeCharacter(
  41355. { name: "Torallia", species: ["cobra", "demon"], tags: ["naga"] },
  41356. {
  41357. side: {
  41358. height: math.unit(8, "feet"),
  41359. weight: math.unit(2630, "lb"),
  41360. name: "Side",
  41361. image: {
  41362. source: "./media/characters/torallia/side.svg",
  41363. extra: 2164/2021,
  41364. bottom: 371/2535
  41365. }
  41366. },
  41367. },
  41368. [
  41369. {
  41370. name: "Mortal Interaction",
  41371. height: math.unit(8, "feet")
  41372. },
  41373. {
  41374. name: "Natural",
  41375. height: math.unit(24, "feet"),
  41376. default: true
  41377. },
  41378. {
  41379. name: "Giant",
  41380. height: math.unit(80, "feet")
  41381. },
  41382. {
  41383. name: "Kaiju",
  41384. height: math.unit(240, "feet")
  41385. },
  41386. {
  41387. name: "Macro",
  41388. height: math.unit(800, "feet")
  41389. },
  41390. {
  41391. name: "Macro+",
  41392. height: math.unit(2400, "feet")
  41393. },
  41394. {
  41395. name: "Macro++",
  41396. height: math.unit(8000, "feet")
  41397. },
  41398. {
  41399. name: "City-Crushing",
  41400. height: math.unit(24000, "feet")
  41401. },
  41402. {
  41403. name: "Mountain-Mashing",
  41404. height: math.unit(80000, "feet")
  41405. },
  41406. {
  41407. name: "District Demolisher",
  41408. height: math.unit(240000, "feet")
  41409. },
  41410. {
  41411. name: "Tri-County Terror",
  41412. height: math.unit(800000, "feet")
  41413. },
  41414. {
  41415. name: "State Smasher",
  41416. height: math.unit(2.4e6, "feet")
  41417. },
  41418. {
  41419. name: "Nation Nemesis",
  41420. height: math.unit(8e6, "feet")
  41421. },
  41422. {
  41423. name: "Continent Cracker",
  41424. height: math.unit(2.4e7, "feet")
  41425. },
  41426. {
  41427. name: "Planet-Pillaging",
  41428. height: math.unit(8e7, "feet")
  41429. },
  41430. {
  41431. name: "Earth-Eclipsing",
  41432. height: math.unit(2.4e8, "feet")
  41433. },
  41434. {
  41435. name: "Jovian-Jostling",
  41436. height: math.unit(8e8, "feet")
  41437. },
  41438. {
  41439. name: "Gas Giant Gulper",
  41440. height: math.unit(2.4e9, "feet")
  41441. },
  41442. {
  41443. name: "Astral Annihilator",
  41444. height: math.unit(8e9, "feet")
  41445. },
  41446. {
  41447. name: "Celestial Conqueror",
  41448. height: math.unit(2.4e10, "feet")
  41449. },
  41450. {
  41451. name: "Sol-Swallowing",
  41452. height: math.unit(8e10, "feet")
  41453. },
  41454. {
  41455. name: "Hunter of the Heavens",
  41456. height: math.unit(2.4e13, "feet")
  41457. },
  41458. ]
  41459. ))
  41460. characterMakers.push(() => makeCharacter(
  41461. { name: "Rebecca Pawlson", species: ["fennec-fox"], tags: ["anthro"] },
  41462. {
  41463. front: {
  41464. height: math.unit(6 + 8/12, "feet"),
  41465. weight: math.unit(250, "kilograms"),
  41466. volume: math.unit(28, "liters"),
  41467. name: "Front",
  41468. image: {
  41469. source: "./media/characters/rebecca-pawlson/front.svg",
  41470. extra: 1737/1596,
  41471. bottom: 107/1844
  41472. }
  41473. },
  41474. back: {
  41475. height: math.unit(6 + 8/12, "feet"),
  41476. weight: math.unit(250, "kilograms"),
  41477. volume: math.unit(28, "liters"),
  41478. name: "Back",
  41479. image: {
  41480. source: "./media/characters/rebecca-pawlson/back.svg",
  41481. extra: 1702/1523,
  41482. bottom: 86/1788
  41483. }
  41484. },
  41485. },
  41486. [
  41487. {
  41488. name: "Normal",
  41489. height: math.unit(6 + 8/12, "feet")
  41490. },
  41491. {
  41492. name: "Mini Macro",
  41493. height: math.unit(10, "feet"),
  41494. default: true
  41495. },
  41496. {
  41497. name: "Macro",
  41498. height: math.unit(100, "feet")
  41499. },
  41500. {
  41501. name: "Mega Macro",
  41502. height: math.unit(2500, "feet")
  41503. },
  41504. {
  41505. name: "Giga Macro",
  41506. height: math.unit(50, "miles")
  41507. },
  41508. ]
  41509. ))
  41510. characterMakers.push(() => makeCharacter(
  41511. { name: "Moxie Nova", species: ["dragon", "cat"], tags: ["anthro"] },
  41512. {
  41513. front: {
  41514. height: math.unit(7 + 6/12, "feet"),
  41515. weight: math.unit(600, "lb"),
  41516. name: "Front",
  41517. image: {
  41518. source: "./media/characters/moxie-nova/front.svg",
  41519. extra: 1734/1652,
  41520. bottom: 41/1775
  41521. }
  41522. },
  41523. },
  41524. [
  41525. {
  41526. name: "Normal",
  41527. height: math.unit(7 + 6/12, "feet"),
  41528. default: true
  41529. },
  41530. ]
  41531. ))
  41532. characterMakers.push(() => makeCharacter(
  41533. { name: "Tiffany", species: ["fox", "raccoon"], tags: ["anthro"] },
  41534. {
  41535. goat: {
  41536. height: math.unit(4, "feet"),
  41537. weight: math.unit(180, "lb"),
  41538. name: "Goat",
  41539. image: {
  41540. source: "./media/characters/tiffany/goat.svg",
  41541. extra: 1845/1595,
  41542. bottom: 106/1951
  41543. }
  41544. },
  41545. front: {
  41546. height: math.unit(5, "feet"),
  41547. weight: math.unit(150, "lb"),
  41548. name: "Foxcoon",
  41549. image: {
  41550. source: "./media/characters/tiffany/foxcoon.svg",
  41551. extra: 1941/1845,
  41552. bottom: 58/1999
  41553. }
  41554. },
  41555. },
  41556. [
  41557. {
  41558. name: "Normal",
  41559. height: math.unit(5, "feet"),
  41560. default: true
  41561. },
  41562. ]
  41563. ))
  41564. characterMakers.push(() => makeCharacter(
  41565. { name: "Raxinath", species: ["dragon"], tags: ["anthro"] },
  41566. {
  41567. front: {
  41568. height: math.unit(8, "feet"),
  41569. weight: math.unit(300, "lb"),
  41570. name: "Front",
  41571. image: {
  41572. source: "./media/characters/raxinath/front.svg",
  41573. extra: 1407/1309,
  41574. bottom: 39/1446
  41575. }
  41576. },
  41577. back: {
  41578. height: math.unit(8, "feet"),
  41579. weight: math.unit(300, "lb"),
  41580. name: "Back",
  41581. image: {
  41582. source: "./media/characters/raxinath/back.svg",
  41583. extra: 1405/1315,
  41584. bottom: 9/1414
  41585. }
  41586. },
  41587. },
  41588. [
  41589. {
  41590. name: "Speck",
  41591. height: math.unit(0.5, "nm")
  41592. },
  41593. {
  41594. name: "Micro",
  41595. height: math.unit(3, "inches")
  41596. },
  41597. {
  41598. name: "Kobold",
  41599. height: math.unit(3, "feet")
  41600. },
  41601. {
  41602. name: "Normal",
  41603. height: math.unit(8, "feet"),
  41604. default: true
  41605. },
  41606. {
  41607. name: "Giant",
  41608. height: math.unit(50, "feet")
  41609. },
  41610. {
  41611. name: "Macro",
  41612. height: math.unit(1000, "feet")
  41613. },
  41614. {
  41615. name: "Megamacro",
  41616. height: math.unit(1, "mile")
  41617. },
  41618. ]
  41619. ))
  41620. characterMakers.push(() => makeCharacter(
  41621. { name: "Mal (Dragon)", species: ["dragon", "deity"], tags: ["anthro"] },
  41622. {
  41623. front: {
  41624. height: math.unit(10, "feet"),
  41625. weight: math.unit(1442, "lb"),
  41626. name: "Front",
  41627. image: {
  41628. source: "./media/characters/mal-dragon/front.svg",
  41629. extra: 1515/1444,
  41630. bottom: 113/1628
  41631. }
  41632. },
  41633. back: {
  41634. height: math.unit(10, "feet"),
  41635. weight: math.unit(1442, "lb"),
  41636. name: "Back",
  41637. image: {
  41638. source: "./media/characters/mal-dragon/back.svg",
  41639. extra: 1527/1434,
  41640. bottom: 25/1552
  41641. }
  41642. },
  41643. },
  41644. [
  41645. {
  41646. name: "Mortal Interaction",
  41647. height: math.unit(10, "feet"),
  41648. default: true
  41649. },
  41650. {
  41651. name: "Large",
  41652. height: math.unit(30, "feet")
  41653. },
  41654. {
  41655. name: "Kaiju",
  41656. height: math.unit(300, "feet")
  41657. },
  41658. {
  41659. name: "Megamacro",
  41660. height: math.unit(10000, "feet")
  41661. },
  41662. {
  41663. name: "Continent Cracker",
  41664. height: math.unit(30000000, "feet")
  41665. },
  41666. {
  41667. name: "Sol-Swallowing",
  41668. height: math.unit(1e11, "feet")
  41669. },
  41670. {
  41671. name: "Light Universal",
  41672. height: math.unit(5, "universes")
  41673. },
  41674. {
  41675. name: "Universe Atoms",
  41676. height: math.unit(1.829e9, "universes")
  41677. },
  41678. {
  41679. name: "Light Multiversal",
  41680. height: math.unit(5, "multiverses")
  41681. },
  41682. {
  41683. name: "Multiverse Atoms",
  41684. height: math.unit(1.829e9, "multiverses")
  41685. },
  41686. {
  41687. name: "Fabric of Time",
  41688. height: math.unit(1e262, "multiverses")
  41689. },
  41690. ]
  41691. ))
  41692. characterMakers.push(() => makeCharacter(
  41693. { name: "Tabitha", species: ["mouse", "cat"], tags: ["anthro"] },
  41694. {
  41695. front: {
  41696. height: math.unit(9, "feet"),
  41697. weight: math.unit(1050, "lb"),
  41698. name: "Front",
  41699. image: {
  41700. source: "./media/characters/tabitha/front.svg",
  41701. extra: 2083/1994,
  41702. bottom: 68/2151
  41703. }
  41704. },
  41705. },
  41706. [
  41707. {
  41708. name: "Baseline",
  41709. height: math.unit(9, "feet"),
  41710. default: true
  41711. },
  41712. {
  41713. name: "Giant",
  41714. height: math.unit(90, "feet")
  41715. },
  41716. {
  41717. name: "Macro",
  41718. height: math.unit(900, "feet")
  41719. },
  41720. {
  41721. name: "Megamacro",
  41722. height: math.unit(9000, "feet")
  41723. },
  41724. {
  41725. name: "City-Crushing",
  41726. height: math.unit(27000, "feet")
  41727. },
  41728. {
  41729. name: "Mountain-Mashing",
  41730. height: math.unit(90000, "feet")
  41731. },
  41732. {
  41733. name: "Nation Nemesis",
  41734. height: math.unit(9e6, "feet")
  41735. },
  41736. {
  41737. name: "Continent Cracker",
  41738. height: math.unit(27e6, "feet")
  41739. },
  41740. {
  41741. name: "Earth-Eclipsing",
  41742. height: math.unit(2.7e8, "feet")
  41743. },
  41744. {
  41745. name: "Gas Giant Gulper",
  41746. height: math.unit(2.7e9, "feet")
  41747. },
  41748. {
  41749. name: "Sol-Swallowing",
  41750. height: math.unit(9e10, "feet")
  41751. },
  41752. {
  41753. name: "Galaxy Gulper",
  41754. height: math.unit(9, "galaxies")
  41755. },
  41756. {
  41757. name: "Cosmos Churner",
  41758. height: math.unit(9, "universes")
  41759. },
  41760. ]
  41761. ))
  41762. characterMakers.push(() => makeCharacter(
  41763. { name: "Tow", species: ["cat"], tags: ["anthro"] },
  41764. {
  41765. front: {
  41766. height: math.unit(160, "cm"),
  41767. weight: math.unit(55, "kg"),
  41768. name: "Front",
  41769. image: {
  41770. source: "./media/characters/tow/front.svg",
  41771. extra: 1751/1722,
  41772. bottom: 74/1825
  41773. }
  41774. },
  41775. },
  41776. [
  41777. {
  41778. name: "Norm",
  41779. height: math.unit(160, "cm")
  41780. },
  41781. {
  41782. name: "Casual",
  41783. height: math.unit(3200, "m"),
  41784. default: true
  41785. },
  41786. {
  41787. name: "Show-Off",
  41788. height: math.unit(160, "km")
  41789. },
  41790. ]
  41791. ))
  41792. characterMakers.push(() => makeCharacter(
  41793. { name: "Vivian (Ocra Dragon)", species: ["dragon", "orca"], tags: ["anthro", "goo"] },
  41794. {
  41795. front: {
  41796. height: math.unit(7 + 11/12, "feet"),
  41797. weight: math.unit(342.8, "lb"),
  41798. name: "Front",
  41799. image: {
  41800. source: "./media/characters/vivian-orca-dragon/front.svg",
  41801. extra: 1890/1865,
  41802. bottom: 28/1918
  41803. }
  41804. },
  41805. },
  41806. [
  41807. {
  41808. name: "Micro",
  41809. height: math.unit(5, "inches")
  41810. },
  41811. {
  41812. name: "Normal",
  41813. height: math.unit(7 + 11/12, "feet"),
  41814. default: true
  41815. },
  41816. {
  41817. name: "Macro",
  41818. height: math.unit(395 + 7/12, "feet")
  41819. },
  41820. ]
  41821. ))
  41822. characterMakers.push(() => makeCharacter(
  41823. { name: "Lotherakon", species: ["hellhound", "deity"], tags: ["anthro"] },
  41824. {
  41825. side: {
  41826. height: math.unit(10, "feet"),
  41827. weight: math.unit(1442, "lb"),
  41828. name: "Side",
  41829. image: {
  41830. source: "./media/characters/lotherakon/side.svg",
  41831. extra: 1604/1497,
  41832. bottom: 89/1693
  41833. }
  41834. },
  41835. },
  41836. [
  41837. {
  41838. name: "Mortal Interaction",
  41839. height: math.unit(10, "feet")
  41840. },
  41841. {
  41842. name: "Large",
  41843. height: math.unit(30, "feet"),
  41844. default: true
  41845. },
  41846. {
  41847. name: "Giant",
  41848. height: math.unit(100, "feet")
  41849. },
  41850. {
  41851. name: "Kaiju",
  41852. height: math.unit(300, "feet")
  41853. },
  41854. {
  41855. name: "Macro",
  41856. height: math.unit(1000, "feet")
  41857. },
  41858. {
  41859. name: "Macro+",
  41860. height: math.unit(3000, "feet")
  41861. },
  41862. {
  41863. name: "Megamacro",
  41864. height: math.unit(10000, "feet")
  41865. },
  41866. {
  41867. name: "City-Crushing",
  41868. height: math.unit(30000, "feet")
  41869. },
  41870. {
  41871. name: "Continent Cracker",
  41872. height: math.unit(30e6, "feet")
  41873. },
  41874. {
  41875. name: "Earth Eclipsing",
  41876. height: math.unit(3e8, "feet")
  41877. },
  41878. {
  41879. name: "Gas Giant Gulper",
  41880. height: math.unit(3e9, "feet")
  41881. },
  41882. {
  41883. name: "Sol-Swallowing",
  41884. height: math.unit(1e11, "feet")
  41885. },
  41886. {
  41887. name: "System Swallower",
  41888. height: math.unit(3e14, "feet")
  41889. },
  41890. {
  41891. name: "Galaxy Gulper",
  41892. height: math.unit(10, "galaxies")
  41893. },
  41894. {
  41895. name: "Light Universal",
  41896. height: math.unit(5, "universes")
  41897. },
  41898. {
  41899. name: "Universe Palm",
  41900. height: math.unit(20, "universes")
  41901. },
  41902. {
  41903. name: "Light Multiversal",
  41904. height: math.unit(5, "multiverses")
  41905. },
  41906. {
  41907. name: "Multiverse Palm",
  41908. height: math.unit(20, "multiverses")
  41909. },
  41910. {
  41911. name: "Inferno Incarnate",
  41912. height: math.unit(1e7, "multiverses")
  41913. },
  41914. ]
  41915. ))
  41916. characterMakers.push(() => makeCharacter(
  41917. { name: "Malithee", species: ["frog", "dragon", "deity"], tags: ["anthro"] },
  41918. {
  41919. front: {
  41920. height: math.unit(8, "feet"),
  41921. weight: math.unit(1200, "lb"),
  41922. name: "Front",
  41923. image: {
  41924. source: "./media/characters/malithee/front.svg",
  41925. extra: 1675/1640,
  41926. bottom: 162/1837
  41927. }
  41928. },
  41929. },
  41930. [
  41931. {
  41932. name: "Mortal Interaction",
  41933. height: math.unit(8, "feet"),
  41934. default: true
  41935. },
  41936. {
  41937. name: "Large",
  41938. height: math.unit(24, "feet")
  41939. },
  41940. {
  41941. name: "Kaiju",
  41942. height: math.unit(240, "feet")
  41943. },
  41944. {
  41945. name: "Megamacro",
  41946. height: math.unit(8000, "feet")
  41947. },
  41948. {
  41949. name: "Continent Cracker",
  41950. height: math.unit(24e6, "feet")
  41951. },
  41952. {
  41953. name: "Earth-Eclipsing",
  41954. height: math.unit(2.4e8, "feet")
  41955. },
  41956. {
  41957. name: "Sol-Swallowing",
  41958. height: math.unit(8e10, "feet")
  41959. },
  41960. {
  41961. name: "Galaxy Gulper",
  41962. height: math.unit(8, "galaxies")
  41963. },
  41964. {
  41965. name: "Light Universal",
  41966. height: math.unit(4, "universes")
  41967. },
  41968. {
  41969. name: "Universe Atoms",
  41970. height: math.unit(1.829e9, "universes")
  41971. },
  41972. {
  41973. name: "Light Multiversal",
  41974. height: math.unit(4, "multiverses")
  41975. },
  41976. {
  41977. name: "Multiverse Atoms",
  41978. height: math.unit(1.829e9, "multiverses")
  41979. },
  41980. {
  41981. name: "Nigh-Omnipresence",
  41982. height: math.unit(8e261, "multiverses")
  41983. },
  41984. ]
  41985. ))
  41986. characterMakers.push(() => makeCharacter(
  41987. { name: "Miles Thestia", species: ["wolf", "dog"], tags: ["anthro"] },
  41988. {
  41989. front: {
  41990. height: math.unit(10, "feet"),
  41991. weight: math.unit(1500, "lb"),
  41992. name: "Front",
  41993. image: {
  41994. source: "./media/characters/miles-thestia/front.svg",
  41995. extra: 1812/1727,
  41996. bottom: 86/1898
  41997. }
  41998. },
  41999. back: {
  42000. height: math.unit(10, "feet"),
  42001. weight: math.unit(1500, "lb"),
  42002. name: "Back",
  42003. image: {
  42004. source: "./media/characters/miles-thestia/back.svg",
  42005. extra: 1799/1690,
  42006. bottom: 47/1846
  42007. }
  42008. },
  42009. frontNsfw: {
  42010. height: math.unit(10, "feet"),
  42011. weight: math.unit(1500, "lb"),
  42012. name: "Front (NSFW)",
  42013. image: {
  42014. source: "./media/characters/miles-thestia/front-nsfw.svg",
  42015. extra: 1812/1727,
  42016. bottom: 86/1898
  42017. }
  42018. },
  42019. },
  42020. [
  42021. {
  42022. name: "Mini-Macro",
  42023. height: math.unit(10, "feet"),
  42024. default: true
  42025. },
  42026. ]
  42027. ))
  42028. characterMakers.push(() => makeCharacter(
  42029. { name: "TITAN.S.WULF", species: ["wolf"], tags: ["anthro"] },
  42030. {
  42031. front: {
  42032. height: math.unit(25, "feet"),
  42033. name: "Front",
  42034. image: {
  42035. source: "./media/characters/titan-s-wulf/front.svg",
  42036. extra: 1560/1484,
  42037. bottom: 76/1636
  42038. }
  42039. },
  42040. },
  42041. [
  42042. {
  42043. name: "Smallest",
  42044. height: math.unit(25, "feet"),
  42045. default: true
  42046. },
  42047. {
  42048. name: "Normal",
  42049. height: math.unit(200, "feet")
  42050. },
  42051. {
  42052. name: "Macro",
  42053. height: math.unit(200000, "feet")
  42054. },
  42055. {
  42056. name: "Multiversal Original",
  42057. height: math.unit(10000, "multiverses")
  42058. },
  42059. ]
  42060. ))
  42061. characterMakers.push(() => makeCharacter(
  42062. { name: "Tawendeh", species: ["otter", "deity"], tags: ["anthro"] },
  42063. {
  42064. front: {
  42065. height: math.unit(8, "feet"),
  42066. weight: math.unit(553, "lb"),
  42067. name: "Front",
  42068. image: {
  42069. source: "./media/characters/tawendeh/front.svg",
  42070. extra: 2365/2268,
  42071. bottom: 83/2448
  42072. }
  42073. },
  42074. frontClothed: {
  42075. height: math.unit(8, "feet"),
  42076. weight: math.unit(553, "lb"),
  42077. name: "Front (Clothed)",
  42078. image: {
  42079. source: "./media/characters/tawendeh/front-clothed.svg",
  42080. extra: 2365/2268,
  42081. bottom: 83/2448
  42082. }
  42083. },
  42084. back: {
  42085. height: math.unit(8, "feet"),
  42086. weight: math.unit(553, "lb"),
  42087. name: "Back",
  42088. image: {
  42089. source: "./media/characters/tawendeh/back.svg",
  42090. extra: 2397/2294,
  42091. bottom: 42/2439
  42092. }
  42093. },
  42094. },
  42095. [
  42096. {
  42097. name: "Mortal Interaction",
  42098. height: math.unit(8, "feet"),
  42099. default: true
  42100. },
  42101. {
  42102. name: "Giant",
  42103. height: math.unit(80, "feet")
  42104. },
  42105. {
  42106. name: "Macro",
  42107. height: math.unit(800, "feet")
  42108. },
  42109. {
  42110. name: "Megamacro",
  42111. height: math.unit(8000, "feet")
  42112. },
  42113. {
  42114. name: "City-Crushing",
  42115. height: math.unit(24000, "feet")
  42116. },
  42117. {
  42118. name: "Mountain-Mashing",
  42119. height: math.unit(80000, "feet")
  42120. },
  42121. {
  42122. name: "Nation Nemesis",
  42123. height: math.unit(8e6, "feet")
  42124. },
  42125. {
  42126. name: "Continent Cracker",
  42127. height: math.unit(24e6, "feet")
  42128. },
  42129. {
  42130. name: "Earth-Eclipsing",
  42131. height: math.unit(2.4e8, "feet")
  42132. },
  42133. {
  42134. name: "Gas Giant Gulper",
  42135. height: math.unit(2.4e9, "feet")
  42136. },
  42137. {
  42138. name: "Sol-Swallowing",
  42139. height: math.unit(8e10, "feet")
  42140. },
  42141. {
  42142. name: "Galaxy Gulper",
  42143. height: math.unit(8, "galaxies")
  42144. },
  42145. {
  42146. name: "Cosmos Churner",
  42147. height: math.unit(8, "universes")
  42148. },
  42149. {
  42150. name: "Omnipotent Otter",
  42151. height: math.unit(80, "universes")
  42152. },
  42153. ]
  42154. ))
  42155. characterMakers.push(() => makeCharacter(
  42156. { name: "Neesha", species: ["gnoll"], tags: ["anthro"] },
  42157. {
  42158. front: {
  42159. height: math.unit(2.6, "meters"),
  42160. weight: math.unit(900, "kg"),
  42161. name: "Front",
  42162. image: {
  42163. source: "./media/characters/neesha/front.svg",
  42164. extra: 1803/1653,
  42165. bottom: 128/1931
  42166. }
  42167. },
  42168. },
  42169. [
  42170. {
  42171. name: "Normal",
  42172. height: math.unit(2.6, "meters"),
  42173. default: true
  42174. },
  42175. {
  42176. name: "Macro",
  42177. height: math.unit(50, "meters")
  42178. },
  42179. ]
  42180. ))
  42181. characterMakers.push(() => makeCharacter(
  42182. { name: "Kyera", species: ["dragon", "mouse"], tags: ["anthro"] },
  42183. {
  42184. front: {
  42185. height: math.unit(5, "feet"),
  42186. weight: math.unit(185, "lb"),
  42187. name: "Front",
  42188. image: {
  42189. source: "./media/characters/kyera/front.svg",
  42190. extra: 1875/1790,
  42191. bottom: 96/1971
  42192. }
  42193. },
  42194. },
  42195. [
  42196. {
  42197. name: "Normal",
  42198. height: math.unit(5, "feet"),
  42199. default: true
  42200. },
  42201. ]
  42202. ))
  42203. characterMakers.push(() => makeCharacter(
  42204. { name: "Yuko", species: ["catgirl"], tags: ["anthro"] },
  42205. {
  42206. front: {
  42207. height: math.unit(7 + 6/12, "feet"),
  42208. weight: math.unit(540, "lb"),
  42209. name: "Front",
  42210. image: {
  42211. source: "./media/characters/yuko/front.svg",
  42212. extra: 1282/1222,
  42213. bottom: 101/1383
  42214. }
  42215. },
  42216. frontClothed: {
  42217. height: math.unit(7 + 6/12, "feet"),
  42218. weight: math.unit(540, "lb"),
  42219. name: "Front (Clothed)",
  42220. image: {
  42221. source: "./media/characters/yuko/front-clothed.svg",
  42222. extra: 1282/1222,
  42223. bottom: 101/1383
  42224. }
  42225. },
  42226. },
  42227. [
  42228. {
  42229. name: "Normal",
  42230. height: math.unit(7 + 6/12, "feet"),
  42231. default: true
  42232. },
  42233. {
  42234. name: "Macro",
  42235. height: math.unit(26 + 9/12, "feet")
  42236. },
  42237. {
  42238. name: "Megamacro",
  42239. height: math.unit(300, "feet")
  42240. },
  42241. {
  42242. name: "Gigamacro",
  42243. height: math.unit(5000, "feet")
  42244. },
  42245. {
  42246. name: "Planetary",
  42247. height: math.unit(10000, "miles")
  42248. },
  42249. ]
  42250. ))
  42251. characterMakers.push(() => makeCharacter(
  42252. { name: "Deam Nitrel", species: ["wolf"], tags: ["anthro"] },
  42253. {
  42254. front: {
  42255. height: math.unit(8 + 2/12, "feet"),
  42256. weight: math.unit(600, "lb"),
  42257. name: "Front",
  42258. image: {
  42259. source: "./media/characters/deam-nitrel/front.svg",
  42260. extra: 1308/1234,
  42261. bottom: 125/1433
  42262. }
  42263. },
  42264. },
  42265. [
  42266. {
  42267. name: "Normal",
  42268. height: math.unit(8 + 2/12, "feet"),
  42269. default: true
  42270. },
  42271. ]
  42272. ))
  42273. characterMakers.push(() => makeCharacter(
  42274. { name: "Skyress", species: ["dragon"], tags: ["anthro"] },
  42275. {
  42276. front: {
  42277. height: math.unit(6.1, "feet"),
  42278. weight: math.unit(180, "lb"),
  42279. name: "Front",
  42280. image: {
  42281. source: "./media/characters/skyress/front.svg",
  42282. extra: 1045/915,
  42283. bottom: 28/1073
  42284. }
  42285. },
  42286. maw: {
  42287. height: math.unit(1, "feet"),
  42288. name: "Maw",
  42289. image: {
  42290. source: "./media/characters/skyress/maw.svg"
  42291. }
  42292. },
  42293. },
  42294. [
  42295. {
  42296. name: "Normal",
  42297. height: math.unit(6.1, "feet"),
  42298. default: true
  42299. },
  42300. {
  42301. name: "Macro",
  42302. height: math.unit(200, "feet")
  42303. },
  42304. ]
  42305. ))
  42306. characterMakers.push(() => makeCharacter(
  42307. { name: "Amethyst Jones", species: ["kobold"], tags: ["anthro"] },
  42308. {
  42309. front: {
  42310. height: math.unit(4 + 2/12, "feet"),
  42311. weight: math.unit(40, "kg"),
  42312. name: "Front",
  42313. image: {
  42314. source: "./media/characters/amethyst-jones/front.svg",
  42315. extra: 1220/1150,
  42316. bottom: 101/1321
  42317. }
  42318. },
  42319. },
  42320. [
  42321. {
  42322. name: "Normal",
  42323. height: math.unit(4 + 2/12, "feet"),
  42324. default: true
  42325. },
  42326. ]
  42327. ))
  42328. characterMakers.push(() => makeCharacter(
  42329. { name: "Jade", species: ["panther", "dragon"], tags: ["anthro"] },
  42330. {
  42331. front: {
  42332. height: math.unit(1.7, "m"),
  42333. weight: math.unit(135, "lb"),
  42334. name: "Front",
  42335. image: {
  42336. source: "./media/characters/jade/front.svg",
  42337. extra: 1818/1767,
  42338. bottom: 32/1850
  42339. }
  42340. },
  42341. back: {
  42342. height: math.unit(1.7, "m"),
  42343. weight: math.unit(135, "lb"),
  42344. name: "Back",
  42345. image: {
  42346. source: "./media/characters/jade/back.svg",
  42347. extra: 1869/1809,
  42348. bottom: 35/1904
  42349. }
  42350. },
  42351. hand: {
  42352. height: math.unit(0.24, "m"),
  42353. name: "Hand",
  42354. image: {
  42355. source: "./media/characters/jade/hand.svg"
  42356. }
  42357. },
  42358. foot: {
  42359. height: math.unit(0.263, "m"),
  42360. name: "Foot",
  42361. image: {
  42362. source: "./media/characters/jade/foot.svg"
  42363. }
  42364. },
  42365. dick: {
  42366. height: math.unit(0.47, "m"),
  42367. name: "Dick",
  42368. image: {
  42369. source: "./media/characters/jade/dick.svg"
  42370. }
  42371. },
  42372. },
  42373. [
  42374. {
  42375. name: "Micro",
  42376. height: math.unit(22, "cm")
  42377. },
  42378. {
  42379. name: "Normal",
  42380. height: math.unit(1.7, "m"),
  42381. default: true
  42382. },
  42383. {
  42384. name: "Macro",
  42385. height: math.unit(152, "m")
  42386. },
  42387. ]
  42388. ))
  42389. characterMakers.push(() => makeCharacter(
  42390. { name: "Cookie", species: ["snow-leopard"], tags: ["anthro"] },
  42391. {
  42392. front: {
  42393. height: math.unit(100, "miles"),
  42394. weight: math.unit(20000, "tons"),
  42395. name: "Front",
  42396. image: {
  42397. source: "./media/characters/cookie/front.svg",
  42398. extra: 1125/1070,
  42399. bottom: 30/1155
  42400. }
  42401. },
  42402. },
  42403. [
  42404. {
  42405. name: "Big",
  42406. height: math.unit(50, "feet")
  42407. },
  42408. {
  42409. name: "Macro",
  42410. height: math.unit(100, "miles"),
  42411. default: true
  42412. },
  42413. {
  42414. name: "Megamacro",
  42415. height: math.unit(90000, "miles")
  42416. },
  42417. ]
  42418. ))
  42419. characterMakers.push(() => makeCharacter(
  42420. { name: "Farzian", species: ["folf"], tags: ["anthro"] },
  42421. {
  42422. front: {
  42423. height: math.unit(6, "feet"),
  42424. weight: math.unit(145, "lb"),
  42425. name: "Front",
  42426. image: {
  42427. source: "./media/characters/farzian/front.svg",
  42428. extra: 1902/1693,
  42429. bottom: 108/2010
  42430. }
  42431. },
  42432. },
  42433. [
  42434. {
  42435. name: "Macro",
  42436. height: math.unit(500, "feet"),
  42437. default: true
  42438. },
  42439. ]
  42440. ))
  42441. characterMakers.push(() => makeCharacter(
  42442. { name: "Kimberly Tilson", species: ["rabbit"], tags: ["anthro"] },
  42443. {
  42444. front: {
  42445. height: math.unit(3 + 6/12, "feet"),
  42446. weight: math.unit(50, "lb"),
  42447. name: "Front",
  42448. image: {
  42449. source: "./media/characters/kimberly-tilson/front.svg",
  42450. extra: 1400/1322,
  42451. bottom: 36/1436
  42452. }
  42453. },
  42454. back: {
  42455. height: math.unit(3 + 6/12, "feet"),
  42456. weight: math.unit(50, "lb"),
  42457. name: "Back",
  42458. image: {
  42459. source: "./media/characters/kimberly-tilson/back.svg",
  42460. extra: 1370/1307,
  42461. bottom: 20/1390
  42462. }
  42463. },
  42464. },
  42465. [
  42466. {
  42467. name: "Normal",
  42468. height: math.unit(3 + 6/12, "feet"),
  42469. default: true
  42470. },
  42471. ]
  42472. ))
  42473. characterMakers.push(() => makeCharacter(
  42474. { name: "Harthos", species: ["peacekeeper", "allusus"], tags: ["anthro"] },
  42475. {
  42476. front: {
  42477. height: math.unit(350, "meters"),
  42478. weight: math.unit(7.57059e+8, "lb"),
  42479. name: "Front",
  42480. image: {
  42481. source: "./media/characters/harthos/front.svg",
  42482. extra: 455/446,
  42483. bottom: 15/470
  42484. },
  42485. form: "peacekeeper",
  42486. default: true
  42487. },
  42488. allusus_front: {
  42489. height: math.unit(270, "meters"),
  42490. weight: math.unit(3.47550e+8, "lb"),
  42491. name: "Front",
  42492. image: {
  42493. source: "./media/characters/harthos/allusus-front.svg",
  42494. extra: 455/446,
  42495. bottom: 15/470
  42496. },
  42497. form: "allusus",
  42498. },
  42499. },
  42500. [
  42501. {
  42502. name: "Macro",
  42503. height: math.unit(350, "meters"),
  42504. default: true,
  42505. form: "peacekeeper"
  42506. },
  42507. {
  42508. name: "Macro",
  42509. height: math.unit(270, "meters"),
  42510. default: true,
  42511. form: "allusus"
  42512. },
  42513. ],
  42514. {
  42515. "peacekeeper": {
  42516. name: "Peacekeeper",
  42517. default: true
  42518. },
  42519. "allusus": {
  42520. name: "Allusus",
  42521. },
  42522. }
  42523. ))
  42524. characterMakers.push(() => makeCharacter(
  42525. { name: "Hypatia", species: ["gardevoir", "deity"], tags: ["anthro"] },
  42526. {
  42527. front: {
  42528. height: math.unit(15, "feet"),
  42529. name: "Front",
  42530. image: {
  42531. source: "./media/characters/hypatia/front.svg",
  42532. extra: 1653/1591,
  42533. bottom: 79/1732
  42534. }
  42535. },
  42536. },
  42537. [
  42538. {
  42539. name: "Normal",
  42540. height: math.unit(15, "feet")
  42541. },
  42542. {
  42543. name: "Small",
  42544. height: math.unit(300, "feet")
  42545. },
  42546. {
  42547. name: "Macro",
  42548. height: math.unit(2500, "feet"),
  42549. default: true
  42550. },
  42551. {
  42552. name: "Mega Macro",
  42553. height: math.unit(1500, "miles")
  42554. },
  42555. {
  42556. name: "Giga Macro",
  42557. height: math.unit(1.5e6, "miles")
  42558. },
  42559. ]
  42560. ))
  42561. characterMakers.push(() => makeCharacter(
  42562. { name: "Wulver", species: ["werewolf"], tags: ["anthro"] },
  42563. {
  42564. front: {
  42565. height: math.unit(6, "feet"),
  42566. weight: math.unit(200, "lb"),
  42567. name: "Front",
  42568. image: {
  42569. source: "./media/characters/wulver/front.svg",
  42570. extra: 1724/1632,
  42571. bottom: 130/1854
  42572. }
  42573. },
  42574. frontNsfw: {
  42575. height: math.unit(6, "feet"),
  42576. weight: math.unit(200, "lb"),
  42577. name: "Front (NSFW)",
  42578. image: {
  42579. source: "./media/characters/wulver/front-nsfw.svg",
  42580. extra: 1724/1632,
  42581. bottom: 130/1854
  42582. }
  42583. },
  42584. },
  42585. [
  42586. {
  42587. name: "Human-Sized",
  42588. height: math.unit(6, "feet")
  42589. },
  42590. {
  42591. name: "Normal",
  42592. height: math.unit(4, "meters"),
  42593. default: true
  42594. },
  42595. {
  42596. name: "Large",
  42597. height: math.unit(6, "m")
  42598. },
  42599. ]
  42600. ))
  42601. characterMakers.push(() => makeCharacter(
  42602. { name: "Maru", species: ["tiger"], tags: ["anthro"] },
  42603. {
  42604. front: {
  42605. height: math.unit(7, "feet"),
  42606. name: "Front",
  42607. image: {
  42608. source: "./media/characters/maru/front.svg",
  42609. extra: 1595/1570,
  42610. bottom: 0/1595
  42611. }
  42612. },
  42613. },
  42614. [
  42615. {
  42616. name: "Normal",
  42617. height: math.unit(7, "feet"),
  42618. default: true
  42619. },
  42620. {
  42621. name: "Macro",
  42622. height: math.unit(700, "feet")
  42623. },
  42624. {
  42625. name: "Mega Macro",
  42626. height: math.unit(25, "miles")
  42627. },
  42628. ]
  42629. ))
  42630. characterMakers.push(() => makeCharacter(
  42631. { name: "Xenon", species: ["river-otter", "wolf"], tags: ["anthro"] },
  42632. {
  42633. front: {
  42634. height: math.unit(6, "feet"),
  42635. weight: math.unit(170, "lb"),
  42636. name: "Front",
  42637. image: {
  42638. source: "./media/characters/xenon/front.svg",
  42639. extra: 1376/1305,
  42640. bottom: 56/1432
  42641. }
  42642. },
  42643. back: {
  42644. height: math.unit(6, "feet"),
  42645. weight: math.unit(170, "lb"),
  42646. name: "Back",
  42647. image: {
  42648. source: "./media/characters/xenon/back.svg",
  42649. extra: 1328/1259,
  42650. bottom: 95/1423
  42651. }
  42652. },
  42653. maw: {
  42654. height: math.unit(0.52, "feet"),
  42655. name: "Maw",
  42656. image: {
  42657. source: "./media/characters/xenon/maw.svg"
  42658. }
  42659. },
  42660. handLeft: {
  42661. height: math.unit(0.82 * 169 / 153, "feet"),
  42662. name: "Hand (Left)",
  42663. image: {
  42664. source: "./media/characters/xenon/hand-left.svg"
  42665. }
  42666. },
  42667. handRight: {
  42668. height: math.unit(0.82, "feet"),
  42669. name: "Hand (Right)",
  42670. image: {
  42671. source: "./media/characters/xenon/hand-right.svg"
  42672. }
  42673. },
  42674. footLeft: {
  42675. height: math.unit(1.13, "feet"),
  42676. name: "Foot (Left)",
  42677. image: {
  42678. source: "./media/characters/xenon/foot-left.svg"
  42679. }
  42680. },
  42681. footRight: {
  42682. height: math.unit(1.13 * 194 / 196, "feet"),
  42683. name: "Foot (Right)",
  42684. image: {
  42685. source: "./media/characters/xenon/foot-right.svg"
  42686. }
  42687. },
  42688. },
  42689. [
  42690. {
  42691. name: "Micro",
  42692. height: math.unit(0.8, "inches")
  42693. },
  42694. {
  42695. name: "Normal",
  42696. height: math.unit(6, "feet")
  42697. },
  42698. {
  42699. name: "Macro",
  42700. height: math.unit(50, "feet"),
  42701. default: true
  42702. },
  42703. {
  42704. name: "Macro+",
  42705. height: math.unit(250, "feet")
  42706. },
  42707. {
  42708. name: "Megamacro",
  42709. height: math.unit(1500, "feet")
  42710. },
  42711. ]
  42712. ))
  42713. characterMakers.push(() => makeCharacter(
  42714. { name: "Zane", species: ["wolf", "werewolf"], tags: ["anthro"] },
  42715. {
  42716. front: {
  42717. height: math.unit(7 + 5/12, "feet"),
  42718. name: "Front",
  42719. image: {
  42720. source: "./media/characters/zane/front.svg",
  42721. extra: 1260/1203,
  42722. bottom: 94/1354
  42723. }
  42724. },
  42725. back: {
  42726. height: math.unit(5.05, "feet"),
  42727. name: "Back",
  42728. image: {
  42729. source: "./media/characters/zane/back.svg",
  42730. extra: 893/829,
  42731. bottom: 30/923
  42732. }
  42733. },
  42734. werewolf: {
  42735. height: math.unit(11, "feet"),
  42736. name: "Werewolf",
  42737. image: {
  42738. source: "./media/characters/zane/werewolf.svg",
  42739. extra: 1383/1323,
  42740. bottom: 89/1472
  42741. }
  42742. },
  42743. foot: {
  42744. height: math.unit(1.46, "feet"),
  42745. name: "Foot",
  42746. image: {
  42747. source: "./media/characters/zane/foot.svg"
  42748. }
  42749. },
  42750. footFront: {
  42751. height: math.unit(0.784, "feet"),
  42752. name: "Foot (Front)",
  42753. image: {
  42754. source: "./media/characters/zane/foot-front.svg"
  42755. }
  42756. },
  42757. dick: {
  42758. height: math.unit(1.95, "feet"),
  42759. name: "Dick",
  42760. image: {
  42761. source: "./media/characters/zane/dick.svg"
  42762. }
  42763. },
  42764. dickWerewolf: {
  42765. height: math.unit(3.77, "feet"),
  42766. name: "Dick (Werewolf)",
  42767. image: {
  42768. source: "./media/characters/zane/dick.svg"
  42769. }
  42770. },
  42771. },
  42772. [
  42773. {
  42774. name: "Normal",
  42775. height: math.unit(7 + 5/12, "feet"),
  42776. default: true
  42777. },
  42778. ]
  42779. ))
  42780. characterMakers.push(() => makeCharacter(
  42781. { name: "Benni Desparque", species: ["tiger", "rabbit"], tags: ["anthro"] },
  42782. {
  42783. front: {
  42784. height: math.unit(6 + 2/12, "feet"),
  42785. weight: math.unit(284, "lb"),
  42786. name: "Front",
  42787. image: {
  42788. source: "./media/characters/benni-desparque/front.svg",
  42789. extra: 1353/1126,
  42790. bottom: 69/1422
  42791. }
  42792. },
  42793. },
  42794. [
  42795. {
  42796. name: "Civilian",
  42797. height: math.unit(6 + 2/12, "feet")
  42798. },
  42799. {
  42800. name: "Normal",
  42801. height: math.unit(98, "feet"),
  42802. default: true
  42803. },
  42804. {
  42805. name: "Kaiju Fighter",
  42806. height: math.unit(268, "feet")
  42807. },
  42808. ]
  42809. ))
  42810. characterMakers.push(() => makeCharacter(
  42811. { name: "Maxine", species: ["human"], tags: ["anthro"] },
  42812. {
  42813. front: {
  42814. height: math.unit(5, "feet"),
  42815. weight: math.unit(105, "lb"),
  42816. name: "Front",
  42817. image: {
  42818. source: "./media/characters/maxine/front.svg",
  42819. extra: 1386/1250,
  42820. bottom: 71/1457
  42821. }
  42822. },
  42823. },
  42824. [
  42825. {
  42826. name: "Normal",
  42827. height: math.unit(5, "feet"),
  42828. default: true
  42829. },
  42830. ]
  42831. ))
  42832. characterMakers.push(() => makeCharacter(
  42833. { name: "Scaly", species: ["charizard"], tags: ["anthro"] },
  42834. {
  42835. front: {
  42836. height: math.unit(11 + 7/12, "feet"),
  42837. weight: math.unit(9576, "lb"),
  42838. name: "Front",
  42839. image: {
  42840. source: "./media/characters/scaly/front.svg",
  42841. extra: 888/867,
  42842. bottom: 36/924
  42843. }
  42844. },
  42845. },
  42846. [
  42847. {
  42848. name: "Normal",
  42849. height: math.unit(11 + 7/12, "feet"),
  42850. default: true
  42851. },
  42852. ]
  42853. ))
  42854. characterMakers.push(() => makeCharacter(
  42855. { name: "Saelria", species: ["slime", "dragon"], tags: ["goo"] },
  42856. {
  42857. front: {
  42858. height: math.unit(6 + 3/12, "feet"),
  42859. name: "Front",
  42860. image: {
  42861. source: "./media/characters/saelria/front.svg",
  42862. extra: 1243/1138,
  42863. bottom: 46/1289
  42864. }
  42865. },
  42866. },
  42867. [
  42868. {
  42869. name: "Micro",
  42870. height: math.unit(6, "inches"),
  42871. },
  42872. {
  42873. name: "Normal",
  42874. height: math.unit(6 + 3/12, "feet"),
  42875. default: true
  42876. },
  42877. {
  42878. name: "Macro",
  42879. height: math.unit(25, "feet")
  42880. },
  42881. ]
  42882. ))
  42883. characterMakers.push(() => makeCharacter(
  42884. { name: "Tef", species: ["human", "deity"], tags: ["anthro"] },
  42885. {
  42886. front: {
  42887. height: math.unit(80, "meters"),
  42888. weight: math.unit(7000, "tonnes"),
  42889. name: "Front",
  42890. image: {
  42891. source: "./media/characters/tef/front.svg",
  42892. extra: 2036/1991,
  42893. bottom: 54/2090
  42894. }
  42895. },
  42896. back: {
  42897. height: math.unit(80, "meters"),
  42898. weight: math.unit(7000, "tonnes"),
  42899. name: "Back",
  42900. image: {
  42901. source: "./media/characters/tef/back.svg",
  42902. extra: 2036/1991,
  42903. bottom: 54/2090
  42904. }
  42905. },
  42906. },
  42907. [
  42908. {
  42909. name: "Macro",
  42910. height: math.unit(80, "meters"),
  42911. default: true
  42912. },
  42913. ]
  42914. ))
  42915. characterMakers.push(() => makeCharacter(
  42916. { name: "Rover", species: ["mouse"], tags: ["anthro"] },
  42917. {
  42918. front: {
  42919. height: math.unit(13, "feet"),
  42920. weight: math.unit(6, "tons"),
  42921. name: "Front",
  42922. image: {
  42923. source: "./media/characters/rover/front.svg",
  42924. extra: 1233/1156,
  42925. bottom: 50/1283
  42926. }
  42927. },
  42928. back: {
  42929. height: math.unit(13, "feet"),
  42930. weight: math.unit(6, "tons"),
  42931. name: "Back",
  42932. image: {
  42933. source: "./media/characters/rover/back.svg",
  42934. extra: 1327/1258,
  42935. bottom: 39/1366
  42936. }
  42937. },
  42938. },
  42939. [
  42940. {
  42941. name: "Normal",
  42942. height: math.unit(13, "feet"),
  42943. default: true
  42944. },
  42945. {
  42946. name: "Macro",
  42947. height: math.unit(1300, "feet")
  42948. },
  42949. {
  42950. name: "Megamacro",
  42951. height: math.unit(1300, "miles")
  42952. },
  42953. {
  42954. name: "Gigamacro",
  42955. height: math.unit(1300000, "miles")
  42956. },
  42957. ]
  42958. ))
  42959. characterMakers.push(() => makeCharacter(
  42960. { name: "Ariz", species: ["peacekeeper"], tags: ["anthro"] },
  42961. {
  42962. front: {
  42963. height: math.unit(10, "feet"),
  42964. weight: math.unit(500, "lb"),
  42965. name: "Front",
  42966. image: {
  42967. source: "./media/characters/ariz/front.svg",
  42968. extra: 461/450,
  42969. bottom: 16/477
  42970. }
  42971. },
  42972. },
  42973. [
  42974. {
  42975. name: "MiniMacro",
  42976. height: math.unit(10, "feet"),
  42977. default: true
  42978. },
  42979. ]
  42980. ))
  42981. characterMakers.push(() => makeCharacter(
  42982. { name: "Sigrun", species: ["peacekeeper"], tags: ["anthro"] },
  42983. {
  42984. front: {
  42985. height: math.unit(6, "feet"),
  42986. weight: math.unit(140, "lb"),
  42987. name: "Front",
  42988. image: {
  42989. source: "./media/characters/sigrun/front.svg",
  42990. extra: 1418/1359,
  42991. bottom: 27/1445
  42992. }
  42993. },
  42994. },
  42995. [
  42996. {
  42997. name: "Macro",
  42998. height: math.unit(35, "feet"),
  42999. default: true
  43000. },
  43001. ]
  43002. ))
  43003. characterMakers.push(() => makeCharacter(
  43004. { name: "Numin", species: ["peacekeeper"], tags: ["anthro"] },
  43005. {
  43006. front: {
  43007. height: math.unit(6, "feet"),
  43008. weight: math.unit(150, "lb"),
  43009. name: "Front",
  43010. image: {
  43011. source: "./media/characters/numin/front.svg",
  43012. extra: 1433/1388,
  43013. bottom: 12/1445
  43014. }
  43015. },
  43016. },
  43017. [
  43018. {
  43019. name: "Macro",
  43020. height: math.unit(21.5, "km"),
  43021. default: true
  43022. },
  43023. ]
  43024. ))
  43025. characterMakers.push(() => makeCharacter(
  43026. { name: "Melwa", species: ["kaiju"], tags: ["anthro"] },
  43027. {
  43028. front: {
  43029. height: math.unit(6, "feet"),
  43030. weight: math.unit(463, "lb"),
  43031. name: "Front",
  43032. image: {
  43033. source: "./media/characters/melwa/front.svg",
  43034. extra: 1307/1248,
  43035. bottom: 93/1400
  43036. }
  43037. },
  43038. },
  43039. [
  43040. {
  43041. name: "Macro",
  43042. height: math.unit(50, "meters"),
  43043. default: true
  43044. },
  43045. ]
  43046. ))
  43047. characterMakers.push(() => makeCharacter(
  43048. { name: "Zorkaiju", species: ["kaiju", "cat"], tags: ["anthro"] },
  43049. {
  43050. front: {
  43051. height: math.unit(325, "feet"),
  43052. name: "Front",
  43053. image: {
  43054. source: "./media/characters/zorkaiju/front.svg",
  43055. extra: 1955/1814,
  43056. bottom: 40/1995
  43057. }
  43058. },
  43059. frontExtended: {
  43060. height: math.unit(325, "feet"),
  43061. name: "Front (Extended)",
  43062. image: {
  43063. source: "./media/characters/zorkaiju/front-extended.svg",
  43064. extra: 1955/1814,
  43065. bottom: 40/1995
  43066. }
  43067. },
  43068. side: {
  43069. height: math.unit(325, "feet"),
  43070. name: "Side",
  43071. image: {
  43072. source: "./media/characters/zorkaiju/side.svg",
  43073. extra: 1495/1396,
  43074. bottom: 17/1512
  43075. }
  43076. },
  43077. sideExtended: {
  43078. height: math.unit(325, "feet"),
  43079. name: "Side (Extended)",
  43080. image: {
  43081. source: "./media/characters/zorkaiju/side-extended.svg",
  43082. extra: 1495/1396,
  43083. bottom: 17/1512
  43084. }
  43085. },
  43086. back: {
  43087. height: math.unit(325, "feet"),
  43088. name: "Back",
  43089. image: {
  43090. source: "./media/characters/zorkaiju/back.svg",
  43091. extra: 1959/1821,
  43092. bottom: 31/1990
  43093. }
  43094. },
  43095. backExtended: {
  43096. height: math.unit(325, "feet"),
  43097. name: "Back (Extended)",
  43098. image: {
  43099. source: "./media/characters/zorkaiju/back-extended.svg",
  43100. extra: 1959/1821,
  43101. bottom: 31/1990
  43102. }
  43103. },
  43104. hand: {
  43105. height: math.unit(58.4, "feet"),
  43106. name: "Hand",
  43107. image: {
  43108. source: "./media/characters/zorkaiju/hand.svg"
  43109. }
  43110. },
  43111. handExtended: {
  43112. height: math.unit(61.4, "feet"),
  43113. name: "Hand (Extended)",
  43114. image: {
  43115. source: "./media/characters/zorkaiju/hand-extended.svg"
  43116. }
  43117. },
  43118. foot: {
  43119. height: math.unit(95, "feet"),
  43120. name: "Foot",
  43121. image: {
  43122. source: "./media/characters/zorkaiju/foot.svg"
  43123. }
  43124. },
  43125. leftArm: {
  43126. height: math.unit(59, "feet"),
  43127. name: "Left Arm",
  43128. image: {
  43129. source: "./media/characters/zorkaiju/left-arm.svg"
  43130. }
  43131. },
  43132. rightArm: {
  43133. height: math.unit(59, "feet"),
  43134. name: "Right Arm",
  43135. image: {
  43136. source: "./media/characters/zorkaiju/right-arm.svg"
  43137. }
  43138. },
  43139. leftArmExtended: {
  43140. height: math.unit(59 * 1.033546, "feet"),
  43141. name: "Left Arm (Extended)",
  43142. image: {
  43143. source: "./media/characters/zorkaiju/left-arm-extended.svg"
  43144. }
  43145. },
  43146. rightArmExtended: {
  43147. height: math.unit(59 * 1.0496, "feet"),
  43148. name: "Right Arm (Extended)",
  43149. image: {
  43150. source: "./media/characters/zorkaiju/right-arm-extended.svg"
  43151. }
  43152. },
  43153. tail: {
  43154. height: math.unit(104, "feet"),
  43155. name: "Tail",
  43156. image: {
  43157. source: "./media/characters/zorkaiju/tail.svg"
  43158. }
  43159. },
  43160. tailExtended: {
  43161. height: math.unit(104, "feet"),
  43162. name: "Tail (Extended)",
  43163. image: {
  43164. source: "./media/characters/zorkaiju/tail-extended.svg"
  43165. }
  43166. },
  43167. tailBottom: {
  43168. height: math.unit(104, "feet"),
  43169. name: "Tail Bottom",
  43170. image: {
  43171. source: "./media/characters/zorkaiju/tail-bottom.svg"
  43172. }
  43173. },
  43174. crystal: {
  43175. height: math.unit(27.54, "feet"),
  43176. name: "Crystal",
  43177. image: {
  43178. source: "./media/characters/zorkaiju/crystal.svg"
  43179. }
  43180. },
  43181. },
  43182. [
  43183. {
  43184. name: "Kaiju",
  43185. height: math.unit(325, "feet"),
  43186. default: true
  43187. },
  43188. ]
  43189. ))
  43190. characterMakers.push(() => makeCharacter(
  43191. { name: "Bailey Belfry", species: ["townsend-big-eared-bat"], tags: ["anthro"] },
  43192. {
  43193. front: {
  43194. height: math.unit(6 + 1/12, "feet"),
  43195. weight: math.unit(115, "lb"),
  43196. name: "Front",
  43197. image: {
  43198. source: "./media/characters/bailey-belfry/front.svg",
  43199. extra: 1240/1121,
  43200. bottom: 101/1341
  43201. }
  43202. },
  43203. },
  43204. [
  43205. {
  43206. name: "Normal",
  43207. height: math.unit(6 + 1/12, "feet"),
  43208. default: true
  43209. },
  43210. ]
  43211. ))
  43212. characterMakers.push(() => makeCharacter(
  43213. { name: "Blacky", species: ["cat", "dragon"], tags: ["feral"] },
  43214. {
  43215. side: {
  43216. height: math.unit(4, "meters"),
  43217. weight: math.unit(250, "kg"),
  43218. name: "Side",
  43219. image: {
  43220. source: "./media/characters/blacky/side.svg",
  43221. extra: 1027/919,
  43222. bottom: 43/1070
  43223. }
  43224. },
  43225. maw: {
  43226. height: math.unit(1, "meters"),
  43227. name: "Maw",
  43228. image: {
  43229. source: "./media/characters/blacky/maw.svg"
  43230. }
  43231. },
  43232. paw: {
  43233. height: math.unit(1, "meters"),
  43234. name: "Paw",
  43235. image: {
  43236. source: "./media/characters/blacky/paw.svg"
  43237. }
  43238. },
  43239. },
  43240. [
  43241. {
  43242. name: "Normal",
  43243. height: math.unit(4, "meters"),
  43244. default: true
  43245. },
  43246. ]
  43247. ))
  43248. characterMakers.push(() => makeCharacter(
  43249. { name: "Thux-Ei", species: ["fox"], tags: ["anthro"] },
  43250. {
  43251. front: {
  43252. height: math.unit(170, "cm"),
  43253. weight: math.unit(66, "kg"),
  43254. name: "Front",
  43255. image: {
  43256. source: "./media/characters/thux-ei/front.svg",
  43257. extra: 1109/1011,
  43258. bottom: 8/1117
  43259. }
  43260. },
  43261. },
  43262. [
  43263. {
  43264. name: "Normal",
  43265. height: math.unit(170, "cm"),
  43266. default: true
  43267. },
  43268. ]
  43269. ))
  43270. characterMakers.push(() => makeCharacter(
  43271. { name: "Roxanne Voltaire", species: ["jaguar"], tags: ["anthro"] },
  43272. {
  43273. front: {
  43274. height: math.unit(5, "feet"),
  43275. weight: math.unit(120, "lb"),
  43276. name: "Front",
  43277. image: {
  43278. source: "./media/characters/roxanne-voltaire/front.svg",
  43279. extra: 1901/1779,
  43280. bottom: 53/1954
  43281. }
  43282. },
  43283. },
  43284. [
  43285. {
  43286. name: "Normal",
  43287. height: math.unit(5, "feet"),
  43288. default: true
  43289. },
  43290. {
  43291. name: "Giant",
  43292. height: math.unit(50, "feet")
  43293. },
  43294. {
  43295. name: "Titan",
  43296. height: math.unit(500, "feet")
  43297. },
  43298. {
  43299. name: "Macro",
  43300. height: math.unit(5000, "feet")
  43301. },
  43302. {
  43303. name: "Megamacro",
  43304. height: math.unit(50000, "feet")
  43305. },
  43306. {
  43307. name: "Gigamacro",
  43308. height: math.unit(500000, "feet")
  43309. },
  43310. {
  43311. name: "Teramacro",
  43312. height: math.unit(5e6, "feet")
  43313. },
  43314. ]
  43315. ))
  43316. characterMakers.push(() => makeCharacter(
  43317. { name: "Squeaks", species: ["rough-collie"], tags: ["anthro"] },
  43318. {
  43319. front: {
  43320. height: math.unit(6 + 2/12, "feet"),
  43321. name: "Front",
  43322. image: {
  43323. source: "./media/characters/squeaks/front.svg",
  43324. extra: 1823/1768,
  43325. bottom: 138/1961
  43326. }
  43327. },
  43328. },
  43329. [
  43330. {
  43331. name: "Micro",
  43332. height: math.unit(0.5, "inches")
  43333. },
  43334. {
  43335. name: "Normal",
  43336. height: math.unit(6 + 2/12, "feet"),
  43337. default: true
  43338. },
  43339. {
  43340. name: "Macro",
  43341. height: math.unit(600, "feet")
  43342. },
  43343. ]
  43344. ))
  43345. characterMakers.push(() => makeCharacter(
  43346. { name: "Archinger", species: ["squirrel"], tags: ["anthro"] },
  43347. {
  43348. front: {
  43349. height: math.unit(1.72, "meters"),
  43350. name: "Front",
  43351. image: {
  43352. source: "./media/characters/archinger/front.svg",
  43353. extra: 1861/1675,
  43354. bottom: 125/1986
  43355. }
  43356. },
  43357. back: {
  43358. height: math.unit(1.72, "meters"),
  43359. name: "Back",
  43360. image: {
  43361. source: "./media/characters/archinger/back.svg",
  43362. extra: 1844/1701,
  43363. bottom: 104/1948
  43364. }
  43365. },
  43366. cock: {
  43367. height: math.unit(0.59, "feet"),
  43368. name: "Cock",
  43369. image: {
  43370. source: "./media/characters/archinger/cock.svg"
  43371. }
  43372. },
  43373. },
  43374. [
  43375. {
  43376. name: "Normal",
  43377. height: math.unit(1.72, "meters"),
  43378. default: true
  43379. },
  43380. {
  43381. name: "Macro",
  43382. height: math.unit(84, "meters")
  43383. },
  43384. {
  43385. name: "Macro+",
  43386. height: math.unit(112, "meters")
  43387. },
  43388. {
  43389. name: "Macro++",
  43390. height: math.unit(960, "meters")
  43391. },
  43392. {
  43393. name: "Macro+++",
  43394. height: math.unit(4, "km")
  43395. },
  43396. {
  43397. name: "Macro++++",
  43398. height: math.unit(48, "km")
  43399. },
  43400. {
  43401. name: "Macro+++++",
  43402. height: math.unit(4500, "km")
  43403. },
  43404. ]
  43405. ))
  43406. characterMakers.push(() => makeCharacter(
  43407. { name: "Alsnapz", species: ["avian"], tags: ["anthro"] },
  43408. {
  43409. front: {
  43410. height: math.unit(5 + 5/12, "feet"),
  43411. name: "Front",
  43412. image: {
  43413. source: "./media/characters/alsnapz/front.svg",
  43414. extra: 1157/1065,
  43415. bottom: 42/1199
  43416. }
  43417. },
  43418. },
  43419. [
  43420. {
  43421. name: "Normal",
  43422. height: math.unit(5 + 5/12, "feet"),
  43423. default: true
  43424. },
  43425. ]
  43426. ))
  43427. characterMakers.push(() => makeCharacter(
  43428. { name: "Mag", species: ["magpie"], tags: ["feral"] },
  43429. {
  43430. side: {
  43431. height: math.unit(3.2, "earths"),
  43432. name: "Side",
  43433. image: {
  43434. source: "./media/characters/mag/side.svg",
  43435. extra: 1331/1008,
  43436. bottom: 52/1383
  43437. }
  43438. },
  43439. wing: {
  43440. height: math.unit(1.94, "earths"),
  43441. name: "Wing",
  43442. image: {
  43443. source: "./media/characters/mag/wing.svg"
  43444. }
  43445. },
  43446. dick: {
  43447. height: math.unit(1.8, "earths"),
  43448. name: "Dick",
  43449. image: {
  43450. source: "./media/characters/mag/dick.svg"
  43451. }
  43452. },
  43453. ass: {
  43454. height: math.unit(1.33, "earths"),
  43455. name: "Ass",
  43456. image: {
  43457. source: "./media/characters/mag/ass.svg"
  43458. }
  43459. },
  43460. head: {
  43461. height: math.unit(1.1, "earths"),
  43462. name: "Head",
  43463. image: {
  43464. source: "./media/characters/mag/head.svg"
  43465. }
  43466. },
  43467. maw: {
  43468. height: math.unit(1.62, "earths"),
  43469. name: "Maw",
  43470. image: {
  43471. source: "./media/characters/mag/maw.svg"
  43472. }
  43473. },
  43474. },
  43475. [
  43476. {
  43477. name: "Small",
  43478. height: math.unit(162, "feet")
  43479. },
  43480. {
  43481. name: "Normal",
  43482. height: math.unit(3.2, "earths"),
  43483. default: true
  43484. },
  43485. ]
  43486. ))
  43487. characterMakers.push(() => makeCharacter(
  43488. { name: "Vorrel Harroc", species: ["t-rex"], tags: ["anthro"] },
  43489. {
  43490. front: {
  43491. height: math.unit(512, "feet"),
  43492. weight: math.unit(63509, "tonnes"),
  43493. name: "Front",
  43494. image: {
  43495. source: "./media/characters/vorrel-harroc/front.svg",
  43496. extra: 1075/1063,
  43497. bottom: 62/1137
  43498. }
  43499. },
  43500. },
  43501. [
  43502. {
  43503. name: "Normal",
  43504. height: math.unit(10, "feet")
  43505. },
  43506. {
  43507. name: "Macro",
  43508. height: math.unit(512, "feet"),
  43509. default: true
  43510. },
  43511. {
  43512. name: "Megamacro",
  43513. height: math.unit(256, "miles")
  43514. },
  43515. {
  43516. name: "Gigamacro",
  43517. height: math.unit(4096, "miles")
  43518. },
  43519. ]
  43520. ))
  43521. characterMakers.push(() => makeCharacter(
  43522. { name: "Froimar", species: ["eastern-dragon"], tags: ["anthro"] },
  43523. {
  43524. side: {
  43525. height: math.unit(50, "feet"),
  43526. name: "Side",
  43527. image: {
  43528. source: "./media/characters/froimar/side.svg",
  43529. extra: 855/638,
  43530. bottom: 99/954
  43531. }
  43532. },
  43533. },
  43534. [
  43535. {
  43536. name: "Macro",
  43537. height: math.unit(50, "feet"),
  43538. default: true
  43539. },
  43540. ]
  43541. ))
  43542. characterMakers.push(() => makeCharacter(
  43543. { name: "Timothy", species: ["rabbit"], tags: ["anthro"] },
  43544. {
  43545. front: {
  43546. height: math.unit(210, "miles"),
  43547. name: "Front",
  43548. image: {
  43549. source: "./media/characters/timothy/front.svg",
  43550. extra: 1007/943,
  43551. bottom: 62/1069
  43552. }
  43553. },
  43554. frontSkirt: {
  43555. height: math.unit(210, "miles"),
  43556. name: "Front (Skirt)",
  43557. image: {
  43558. source: "./media/characters/timothy/front-skirt.svg",
  43559. extra: 1007/943,
  43560. bottom: 62/1069
  43561. }
  43562. },
  43563. frontCoat: {
  43564. height: math.unit(210, "miles"),
  43565. name: "Front (Coat)",
  43566. image: {
  43567. source: "./media/characters/timothy/front-coat.svg",
  43568. extra: 1007/943,
  43569. bottom: 62/1069
  43570. }
  43571. },
  43572. },
  43573. [
  43574. {
  43575. name: "Macro",
  43576. height: math.unit(210, "miles"),
  43577. default: true
  43578. },
  43579. {
  43580. name: "Megamacro",
  43581. height: math.unit(210000, "miles")
  43582. },
  43583. ]
  43584. ))
  43585. characterMakers.push(() => makeCharacter(
  43586. { name: "Pyotr", species: ["fox"], tags: ["anthro"] },
  43587. {
  43588. front: {
  43589. height: math.unit(188, "feet"),
  43590. name: "Front",
  43591. image: {
  43592. source: "./media/characters/pyotr/front.svg",
  43593. extra: 1912/1826,
  43594. bottom: 18/1930
  43595. }
  43596. },
  43597. },
  43598. [
  43599. {
  43600. name: "Macro",
  43601. height: math.unit(188, "feet"),
  43602. default: true
  43603. },
  43604. {
  43605. name: "Megamacro",
  43606. height: math.unit(8, "miles")
  43607. },
  43608. ]
  43609. ))
  43610. characterMakers.push(() => makeCharacter(
  43611. { name: "Ackart", species: ["fox"], tags: ["taur"] },
  43612. {
  43613. side: {
  43614. height: math.unit(10, "feet"),
  43615. weight: math.unit(4500, "lb"),
  43616. name: "Side",
  43617. image: {
  43618. source: "./media/characters/ackart/side.svg",
  43619. extra: 1776/1668,
  43620. bottom: 116/1892
  43621. }
  43622. },
  43623. },
  43624. [
  43625. {
  43626. name: "Normal",
  43627. height: math.unit(10, "feet"),
  43628. default: true
  43629. },
  43630. ]
  43631. ))
  43632. characterMakers.push(() => makeCharacter(
  43633. { name: "Nolow", species: ["cheetah"], tags: ["taur"] },
  43634. {
  43635. side: {
  43636. height: math.unit(21, "feet"),
  43637. name: "Side",
  43638. image: {
  43639. source: "./media/characters/nolow/side.svg",
  43640. extra: 1484/1434,
  43641. bottom: 85/1569
  43642. }
  43643. },
  43644. sideErect: {
  43645. height: math.unit(21, "feet"),
  43646. name: "Side-erect",
  43647. image: {
  43648. source: "./media/characters/nolow/side-erect.svg",
  43649. extra: 1484/1434,
  43650. bottom: 85/1569
  43651. }
  43652. },
  43653. },
  43654. [
  43655. {
  43656. name: "Regular",
  43657. height: math.unit(12, "feet")
  43658. },
  43659. {
  43660. name: "Big Chee",
  43661. height: math.unit(21, "feet"),
  43662. default: true
  43663. },
  43664. ]
  43665. ))
  43666. characterMakers.push(() => makeCharacter(
  43667. { name: "Nines", species: ["kitsune"], tags: ["anthro"] },
  43668. {
  43669. front: {
  43670. height: math.unit(7, "feet"),
  43671. weight: math.unit(250, "lb"),
  43672. name: "Front",
  43673. image: {
  43674. source: "./media/characters/nines/front.svg",
  43675. extra: 1741/1607,
  43676. bottom: 41/1782
  43677. }
  43678. },
  43679. side: {
  43680. height: math.unit(7, "feet"),
  43681. weight: math.unit(250, "lb"),
  43682. name: "Side",
  43683. image: {
  43684. source: "./media/characters/nines/side.svg",
  43685. extra: 1854/1735,
  43686. bottom: 93/1947
  43687. }
  43688. },
  43689. back: {
  43690. height: math.unit(7, "feet"),
  43691. weight: math.unit(250, "lb"),
  43692. name: "Back",
  43693. image: {
  43694. source: "./media/characters/nines/back.svg",
  43695. extra: 1748/1615,
  43696. bottom: 20/1768
  43697. }
  43698. },
  43699. },
  43700. [
  43701. {
  43702. name: "Megamacro",
  43703. height: math.unit(99, "km"),
  43704. default: true
  43705. },
  43706. ]
  43707. ))
  43708. characterMakers.push(() => makeCharacter(
  43709. { name: "Zenith", species: ["civet", "hyena"], tags: ["anthro"] },
  43710. {
  43711. front: {
  43712. height: math.unit(5 + 10/12, "feet"),
  43713. weight: math.unit(210, "lb"),
  43714. name: "Front",
  43715. image: {
  43716. source: "./media/characters/zenith/front.svg",
  43717. extra: 1531/1452,
  43718. bottom: 198/1729
  43719. }
  43720. },
  43721. back: {
  43722. height: math.unit(5 + 10/12, "feet"),
  43723. weight: math.unit(210, "lb"),
  43724. name: "Back",
  43725. image: {
  43726. source: "./media/characters/zenith/back.svg",
  43727. extra: 1571/1487,
  43728. bottom: 75/1646
  43729. }
  43730. },
  43731. },
  43732. [
  43733. {
  43734. name: "Normal",
  43735. height: math.unit(5 + 10/12, "feet"),
  43736. default: true
  43737. }
  43738. ]
  43739. ))
  43740. characterMakers.push(() => makeCharacter(
  43741. { name: "Jasper", species: ["cat"], tags: ["anthro"] },
  43742. {
  43743. front: {
  43744. height: math.unit(4, "feet"),
  43745. weight: math.unit(60, "lb"),
  43746. name: "Front",
  43747. image: {
  43748. source: "./media/characters/jasper/front.svg",
  43749. extra: 1450/1379,
  43750. bottom: 19/1469
  43751. }
  43752. },
  43753. },
  43754. [
  43755. {
  43756. name: "Normal",
  43757. height: math.unit(4, "feet"),
  43758. default: true
  43759. },
  43760. ]
  43761. ))
  43762. characterMakers.push(() => makeCharacter(
  43763. { name: "Tiberius Thyben", species: ["raccoon"], tags: ["anthro"] },
  43764. {
  43765. front: {
  43766. height: math.unit(6 + 5/12, "feet"),
  43767. weight: math.unit(290, "lb"),
  43768. name: "Front",
  43769. image: {
  43770. source: "./media/characters/tiberius-thyben/front.svg",
  43771. extra: 757/739,
  43772. bottom: 39/796
  43773. }
  43774. },
  43775. },
  43776. [
  43777. {
  43778. name: "Micro",
  43779. height: math.unit(1.5, "inches")
  43780. },
  43781. {
  43782. name: "Normal",
  43783. height: math.unit(6 + 5/12, "feet"),
  43784. default: true
  43785. },
  43786. {
  43787. name: "Macro",
  43788. height: math.unit(300, "feet")
  43789. },
  43790. ]
  43791. ))
  43792. characterMakers.push(() => makeCharacter(
  43793. { name: "Sabre", species: ["jackal"], tags: ["anthro"] },
  43794. {
  43795. front: {
  43796. height: math.unit(5 + 6/12, "feet"),
  43797. weight: math.unit(60, "kg"),
  43798. name: "Front",
  43799. image: {
  43800. source: "./media/characters/sabre/front.svg",
  43801. extra: 738/671,
  43802. bottom: 27/765
  43803. }
  43804. },
  43805. },
  43806. [
  43807. {
  43808. name: "Teeny",
  43809. height: math.unit(2, "inches")
  43810. },
  43811. {
  43812. name: "Smol",
  43813. height: math.unit(8, "inches")
  43814. },
  43815. {
  43816. name: "Normal",
  43817. height: math.unit(5 + 6/12, "feet"),
  43818. default: true
  43819. },
  43820. {
  43821. name: "Mini-Macro",
  43822. height: math.unit(15, "feet")
  43823. },
  43824. {
  43825. name: "Macro",
  43826. height: math.unit(50, "feet")
  43827. },
  43828. ]
  43829. ))
  43830. characterMakers.push(() => makeCharacter(
  43831. { name: "Charlie", species: ["deer"], tags: ["anthro"] },
  43832. {
  43833. front: {
  43834. height: math.unit(6 + 4/12, "feet"),
  43835. weight: math.unit(170, "lb"),
  43836. name: "Front",
  43837. image: {
  43838. source: "./media/characters/charlie/front.svg",
  43839. extra: 1348/1228,
  43840. bottom: 15/1363
  43841. }
  43842. },
  43843. },
  43844. [
  43845. {
  43846. name: "Macro",
  43847. height: math.unit(1700, "meters"),
  43848. default: true
  43849. },
  43850. {
  43851. name: "MegaMacro",
  43852. height: math.unit(20400, "meters")
  43853. },
  43854. ]
  43855. ))
  43856. characterMakers.push(() => makeCharacter(
  43857. { name: "Susan Grant", species: ["human"], tags: ["anthro"] },
  43858. {
  43859. front: {
  43860. height: math.unit(1.96, "meters"),
  43861. weight: math.unit(220, "lb"),
  43862. name: "Front",
  43863. image: {
  43864. source: "./media/characters/susan-grant/front.svg",
  43865. extra: 482/478,
  43866. bottom: 7/489
  43867. }
  43868. },
  43869. },
  43870. [
  43871. {
  43872. name: "Normal",
  43873. height: math.unit(1.96, "meters"),
  43874. default: true
  43875. },
  43876. {
  43877. name: "Macro",
  43878. height: math.unit(76.2, "meters")
  43879. },
  43880. {
  43881. name: "MegaMacro",
  43882. height: math.unit(305, "meters")
  43883. },
  43884. {
  43885. name: "GigaMacro",
  43886. height: math.unit(1220, "meters")
  43887. },
  43888. {
  43889. name: "SuperMacro",
  43890. height: math.unit(4878, "meters")
  43891. },
  43892. ]
  43893. ))
  43894. characterMakers.push(() => makeCharacter(
  43895. { name: "Axel Isanov", species: ["human"], tags: ["anthro"] },
  43896. {
  43897. front: {
  43898. height: math.unit(5 + 4/12, "feet"),
  43899. weight: math.unit(110, "lb"),
  43900. name: "Front",
  43901. image: {
  43902. source: "./media/characters/axel-isanov/front.svg",
  43903. extra: 1096/1065,
  43904. bottom: 13/1109
  43905. }
  43906. },
  43907. },
  43908. [
  43909. {
  43910. name: "Normal",
  43911. height: math.unit(5 + 4/12, "feet"),
  43912. default: true
  43913. },
  43914. ]
  43915. ))
  43916. characterMakers.push(() => makeCharacter(
  43917. { name: "Necahual", species: ["cat"], tags: ["anthro"] },
  43918. {
  43919. front: {
  43920. height: math.unit(9, "feet"),
  43921. weight: math.unit(467, "lb"),
  43922. name: "Front",
  43923. image: {
  43924. source: "./media/characters/necahual/front.svg",
  43925. extra: 920/873,
  43926. bottom: 26/946
  43927. }
  43928. },
  43929. back: {
  43930. height: math.unit(9, "feet"),
  43931. weight: math.unit(467, "lb"),
  43932. name: "Back",
  43933. image: {
  43934. source: "./media/characters/necahual/back.svg",
  43935. extra: 930/884,
  43936. bottom: 16/946
  43937. }
  43938. },
  43939. frontUnderwear: {
  43940. height: math.unit(9, "feet"),
  43941. weight: math.unit(467, "lb"),
  43942. name: "Front (Underwear)",
  43943. image: {
  43944. source: "./media/characters/necahual/front-underwear.svg",
  43945. extra: 920/873,
  43946. bottom: 26/946
  43947. }
  43948. },
  43949. frontDressed: {
  43950. height: math.unit(9, "feet"),
  43951. weight: math.unit(467, "lb"),
  43952. name: "Front (Dressed)",
  43953. image: {
  43954. source: "./media/characters/necahual/front-dressed.svg",
  43955. extra: 920/873,
  43956. bottom: 26/946
  43957. }
  43958. },
  43959. },
  43960. [
  43961. {
  43962. name: "Comprsesed",
  43963. height: math.unit(9, "feet")
  43964. },
  43965. {
  43966. name: "Natural",
  43967. height: math.unit(15, "feet"),
  43968. default: true
  43969. },
  43970. {
  43971. name: "Boosted",
  43972. height: math.unit(50, "feet")
  43973. },
  43974. {
  43975. name: "Boosted+",
  43976. height: math.unit(150, "feet")
  43977. },
  43978. {
  43979. name: "Max",
  43980. height: math.unit(500, "feet")
  43981. },
  43982. ]
  43983. ))
  43984. characterMakers.push(() => makeCharacter(
  43985. { name: "Theo Acacia", species: ["giraffe"], tags: ["anthro"] },
  43986. {
  43987. front: {
  43988. height: math.unit(22 + 1/12, "feet"),
  43989. weight: math.unit(3200, "lb"),
  43990. name: "Front",
  43991. image: {
  43992. source: "./media/characters/theo-acacia/front.svg",
  43993. extra: 1796/1741,
  43994. bottom: 83/1879
  43995. }
  43996. },
  43997. frontUnderwear: {
  43998. height: math.unit(22 + 1/12, "feet"),
  43999. weight: math.unit(3200, "lb"),
  44000. name: "Front (Underwear)",
  44001. image: {
  44002. source: "./media/characters/theo-acacia/front-underwear.svg",
  44003. extra: 1796/1741,
  44004. bottom: 83/1879
  44005. }
  44006. },
  44007. frontNude: {
  44008. height: math.unit(22 + 1/12, "feet"),
  44009. weight: math.unit(3200, "lb"),
  44010. name: "Front (Nude)",
  44011. image: {
  44012. source: "./media/characters/theo-acacia/front-nude.svg",
  44013. extra: 1796/1741,
  44014. bottom: 83/1879
  44015. }
  44016. },
  44017. },
  44018. [
  44019. {
  44020. name: "Normal",
  44021. height: math.unit(22 + 1/12, "feet"),
  44022. default: true
  44023. },
  44024. ]
  44025. ))
  44026. characterMakers.push(() => makeCharacter(
  44027. { name: "Astra", species: ["jackal", "umbreon"], tags: ["anthro"] },
  44028. {
  44029. front: {
  44030. height: math.unit(20, "feet"),
  44031. name: "Front",
  44032. image: {
  44033. source: "./media/characters/astra/front.svg",
  44034. extra: 1850/1714,
  44035. bottom: 106/1956
  44036. }
  44037. },
  44038. frontUndressed: {
  44039. height: math.unit(20, "feet"),
  44040. name: "Front (Undressed)",
  44041. image: {
  44042. source: "./media/characters/astra/front-undressed.svg",
  44043. extra: 1926/1749,
  44044. bottom: 0/1926
  44045. }
  44046. },
  44047. hand: {
  44048. height: math.unit(1.53, "feet"),
  44049. name: "Hand",
  44050. image: {
  44051. source: "./media/characters/astra/hand.svg"
  44052. }
  44053. },
  44054. paw: {
  44055. height: math.unit(1.53, "feet"),
  44056. name: "Paw",
  44057. image: {
  44058. source: "./media/characters/astra/paw.svg"
  44059. }
  44060. },
  44061. },
  44062. [
  44063. {
  44064. name: "Smallest",
  44065. height: math.unit(20, "feet")
  44066. },
  44067. {
  44068. name: "Normal",
  44069. height: math.unit(1e9, "miles"),
  44070. default: true
  44071. },
  44072. {
  44073. name: "Larger",
  44074. height: math.unit(5, "multiverses")
  44075. },
  44076. {
  44077. name: "Largest",
  44078. height: math.unit(1e9, "multiverses")
  44079. },
  44080. ]
  44081. ))
  44082. characterMakers.push(() => makeCharacter(
  44083. { name: "Breanna", species: ["jackal", "umbreon"], tags: ["anthro"] },
  44084. {
  44085. front: {
  44086. height: math.unit(8, "feet"),
  44087. name: "Front",
  44088. image: {
  44089. source: "./media/characters/breanna/front.svg",
  44090. extra: 1912/1632,
  44091. bottom: 33/1945
  44092. }
  44093. },
  44094. },
  44095. [
  44096. {
  44097. name: "Smallest",
  44098. height: math.unit(8, "feet")
  44099. },
  44100. {
  44101. name: "Normal",
  44102. height: math.unit(1, "mile"),
  44103. default: true
  44104. },
  44105. {
  44106. name: "Maximum",
  44107. height: math.unit(1500000000000, "lightyears")
  44108. },
  44109. ]
  44110. ))
  44111. characterMakers.push(() => makeCharacter(
  44112. { name: "Cai", species: ["fox"], tags: ["anthro"] },
  44113. {
  44114. front: {
  44115. height: math.unit(5 + 11/12, "feet"),
  44116. weight: math.unit(155, "lb"),
  44117. name: "Front",
  44118. image: {
  44119. source: "./media/characters/cai/front.svg",
  44120. extra: 1823/1702,
  44121. bottom: 32/1855
  44122. }
  44123. },
  44124. back: {
  44125. height: math.unit(5 + 11/12, "feet"),
  44126. weight: math.unit(155, "lb"),
  44127. name: "Back",
  44128. image: {
  44129. source: "./media/characters/cai/back.svg",
  44130. extra: 1809/1708,
  44131. bottom: 31/1840
  44132. }
  44133. },
  44134. },
  44135. [
  44136. {
  44137. name: "Normal",
  44138. height: math.unit(5 + 11/12, "feet"),
  44139. default: true
  44140. },
  44141. {
  44142. name: "Big",
  44143. height: math.unit(15, "feet")
  44144. },
  44145. {
  44146. name: "Macro",
  44147. height: math.unit(200, "feet")
  44148. },
  44149. ]
  44150. ))
  44151. characterMakers.push(() => makeCharacter(
  44152. { name: "Zanna Virtuedòttir", species: ["tiefling"], tags: ["anthro"] },
  44153. {
  44154. front: {
  44155. height: math.unit(5 + 6/12, "feet"),
  44156. weight: math.unit(160, "lb"),
  44157. name: "Front",
  44158. image: {
  44159. source: "./media/characters/zanna-virtuedòttir/front.svg",
  44160. extra: 1227/1174,
  44161. bottom: 37/1264
  44162. }
  44163. },
  44164. },
  44165. [
  44166. {
  44167. name: "Macro",
  44168. height: math.unit(444, "meters"),
  44169. default: true
  44170. },
  44171. ]
  44172. ))
  44173. characterMakers.push(() => makeCharacter(
  44174. { name: "Rex", species: ["dragon"], tags: ["anthro"] },
  44175. {
  44176. front: {
  44177. height: math.unit(18 + 7/12, "feet"),
  44178. name: "Front",
  44179. image: {
  44180. source: "./media/characters/rex/front.svg",
  44181. extra: 1941/1807,
  44182. bottom: 66/2007
  44183. }
  44184. },
  44185. back: {
  44186. height: math.unit(18 + 7/12, "feet"),
  44187. name: "Back",
  44188. image: {
  44189. source: "./media/characters/rex/back.svg",
  44190. extra: 1937/1822,
  44191. bottom: 42/1979
  44192. }
  44193. },
  44194. boot: {
  44195. height: math.unit(3.45, "feet"),
  44196. name: "Boot",
  44197. image: {
  44198. source: "./media/characters/rex/boot.svg"
  44199. }
  44200. },
  44201. paw: {
  44202. height: math.unit(4.17, "feet"),
  44203. name: "Paw",
  44204. image: {
  44205. source: "./media/characters/rex/paw.svg"
  44206. }
  44207. },
  44208. head: {
  44209. height: math.unit(6.728, "feet"),
  44210. name: "Head",
  44211. image: {
  44212. source: "./media/characters/rex/head.svg"
  44213. }
  44214. },
  44215. },
  44216. [
  44217. {
  44218. name: "Nano",
  44219. height: math.unit(18 + 7/12, "feet")
  44220. },
  44221. {
  44222. name: "Micro",
  44223. height: math.unit(1.5, "megameters")
  44224. },
  44225. {
  44226. name: "Normal",
  44227. height: math.unit(440, "megameters"),
  44228. default: true
  44229. },
  44230. {
  44231. name: "Macro",
  44232. height: math.unit(2.5, "gigameters")
  44233. },
  44234. {
  44235. name: "Gigamacro",
  44236. height: math.unit(2, "galaxies")
  44237. },
  44238. ]
  44239. ))
  44240. characterMakers.push(() => makeCharacter(
  44241. { name: "Silverwing", species: ["lugia"], tags: ["feral"] },
  44242. {
  44243. side: {
  44244. height: math.unit(32, "feet"),
  44245. weight: math.unit(250000, "lb"),
  44246. name: "Side",
  44247. image: {
  44248. source: "./media/characters/silverwing/side.svg",
  44249. extra: 1100/1019,
  44250. bottom: 204/1304
  44251. }
  44252. },
  44253. },
  44254. [
  44255. {
  44256. name: "Normal",
  44257. height: math.unit(32, "feet"),
  44258. default: true
  44259. },
  44260. ]
  44261. ))
  44262. characterMakers.push(() => makeCharacter(
  44263. { name: "Tristan Hawthorne", species: ["labrador", "skunk"], tags: ["anthro"] },
  44264. {
  44265. front: {
  44266. height: math.unit(6 + 6/12, "feet"),
  44267. weight: math.unit(350, "lb"),
  44268. name: "Front",
  44269. image: {
  44270. source: "./media/characters/tristan-hawthorne/front.svg",
  44271. extra: 1159/1124,
  44272. bottom: 37/1196
  44273. },
  44274. form: "labrador",
  44275. default: true
  44276. },
  44277. skunkFront: {
  44278. height: math.unit(4 + 6/12, "feet"),
  44279. weight: math.unit(120, "lb"),
  44280. name: "Front",
  44281. image: {
  44282. source: "./media/characters/tristan-hawthorne/skunk-front.svg",
  44283. extra: 1609/1551,
  44284. bottom: 169/1778
  44285. },
  44286. form: "skunk",
  44287. default: true
  44288. },
  44289. },
  44290. [
  44291. {
  44292. name: "Normal",
  44293. height: math.unit(6 + 6/12, "feet"),
  44294. form: "labrador",
  44295. default: true
  44296. },
  44297. {
  44298. name: "Normal",
  44299. height: math.unit(4 + 6/12, "feet"),
  44300. form: "skunk",
  44301. default: true
  44302. },
  44303. ],
  44304. {
  44305. "labrador": {
  44306. name: "Labrador",
  44307. default: true
  44308. },
  44309. "skunk": {
  44310. name: "Skunk"
  44311. }
  44312. }
  44313. ))
  44314. characterMakers.push(() => makeCharacter(
  44315. { name: "Mizu", species: ["sika-deer"], tags: ["anthro"] },
  44316. {
  44317. front: {
  44318. height: math.unit(5 + 11/12, "feet"),
  44319. weight: math.unit(190, "lb"),
  44320. name: "Front",
  44321. image: {
  44322. source: "./media/characters/mizu/front.svg",
  44323. extra: 1988/1788,
  44324. bottom: 14/2002
  44325. }
  44326. },
  44327. },
  44328. [
  44329. {
  44330. name: "Normal",
  44331. height: math.unit(5 + 11/12, "feet"),
  44332. default: true
  44333. },
  44334. ]
  44335. ))
  44336. characterMakers.push(() => makeCharacter(
  44337. { name: "Dechroma", species: ["dragon", "plant"], tags: ["anthro"] },
  44338. {
  44339. front: {
  44340. height: math.unit(1.7, "feet"),
  44341. weight: math.unit(50, "lb"),
  44342. name: "Front",
  44343. image: {
  44344. source: "./media/characters/dechroma/front.svg",
  44345. extra: 1095/859,
  44346. bottom: 64/1159
  44347. }
  44348. },
  44349. },
  44350. [
  44351. {
  44352. name: "Normal",
  44353. height: math.unit(1.7, "feet"),
  44354. default: true
  44355. },
  44356. ]
  44357. ))
  44358. characterMakers.push(() => makeCharacter(
  44359. { name: "Veluren Thanazel", species: ["dragon"], tags: ["feral"] },
  44360. {
  44361. side: {
  44362. height: math.unit(30, "feet"),
  44363. name: "Side",
  44364. image: {
  44365. source: "./media/characters/veluren-thanazel/side.svg",
  44366. extra: 1611/633,
  44367. bottom: 118/1729
  44368. }
  44369. },
  44370. front: {
  44371. height: math.unit(30, "feet"),
  44372. name: "Front",
  44373. image: {
  44374. source: "./media/characters/veluren-thanazel/front.svg",
  44375. extra: 1486/636,
  44376. bottom: 238/1724
  44377. }
  44378. },
  44379. head: {
  44380. height: math.unit(21.4, "feet"),
  44381. name: "Head",
  44382. image: {
  44383. source: "./media/characters/veluren-thanazel/head.svg"
  44384. }
  44385. },
  44386. genitals: {
  44387. height: math.unit(19.4, "feet"),
  44388. name: "Genitals",
  44389. image: {
  44390. source: "./media/characters/veluren-thanazel/genitals.svg"
  44391. }
  44392. },
  44393. },
  44394. [
  44395. {
  44396. name: "Social",
  44397. height: math.unit(6, "feet")
  44398. },
  44399. {
  44400. name: "Play",
  44401. height: math.unit(12, "feet")
  44402. },
  44403. {
  44404. name: "True",
  44405. height: math.unit(30, "feet"),
  44406. default: true
  44407. },
  44408. ]
  44409. ))
  44410. characterMakers.push(() => makeCharacter(
  44411. { name: "Arcturas", species: ["dragon", "elemental"], tags: ["anthro"] },
  44412. {
  44413. front: {
  44414. height: math.unit(7 + 6/12, "feet"),
  44415. weight: math.unit(500, "kg"),
  44416. name: "Front",
  44417. image: {
  44418. source: "./media/characters/arcturas/front.svg",
  44419. extra: 1700/1500,
  44420. bottom: 145/1845
  44421. }
  44422. },
  44423. },
  44424. [
  44425. {
  44426. name: "Normal",
  44427. height: math.unit(7 + 6/12, "feet"),
  44428. default: true
  44429. },
  44430. ]
  44431. ))
  44432. characterMakers.push(() => makeCharacter(
  44433. { name: "Vitaen", species: ["zorgoia", "vampire"], tags: ["feral"] },
  44434. {
  44435. side: {
  44436. height: math.unit(6, "feet"),
  44437. weight: math.unit(2, "tons"),
  44438. name: "Side",
  44439. image: {
  44440. source: "./media/characters/vitaen/side.svg",
  44441. extra: 1157/617,
  44442. bottom: 122/1279
  44443. }
  44444. },
  44445. },
  44446. [
  44447. {
  44448. name: "Normal",
  44449. height: math.unit(6, "feet"),
  44450. default: true
  44451. },
  44452. ]
  44453. ))
  44454. characterMakers.push(() => makeCharacter(
  44455. { name: "Fia Dreamweaver", species: ["spireborn"], tags: ["anthro"] },
  44456. {
  44457. front: {
  44458. height: math.unit(19, "feet"),
  44459. name: "Front",
  44460. image: {
  44461. source: "./media/characters/fia-dreamweaver/front.svg",
  44462. extra: 1630/1504,
  44463. bottom: 25/1655
  44464. }
  44465. },
  44466. },
  44467. [
  44468. {
  44469. name: "Normal",
  44470. height: math.unit(19, "feet"),
  44471. default: true
  44472. },
  44473. ]
  44474. ))
  44475. characterMakers.push(() => makeCharacter(
  44476. { name: "Artan", species: ["fennec-fox"], tags: ["anthro"] },
  44477. {
  44478. front: {
  44479. height: math.unit(5 + 4/12, "feet"),
  44480. name: "Front",
  44481. image: {
  44482. source: "./media/characters/artan/front.svg",
  44483. extra: 1618/1535,
  44484. bottom: 46/1664
  44485. }
  44486. },
  44487. back: {
  44488. height: math.unit(5 + 4/12, "feet"),
  44489. name: "Back",
  44490. image: {
  44491. source: "./media/characters/artan/back.svg",
  44492. extra: 1618/1543,
  44493. bottom: 31/1649
  44494. }
  44495. },
  44496. },
  44497. [
  44498. {
  44499. name: "Normal",
  44500. height: math.unit(5 + 4/12, "feet"),
  44501. default: true
  44502. },
  44503. ]
  44504. ))
  44505. characterMakers.push(() => makeCharacter(
  44506. { name: "Silver (Dragon)", species: ["dragon"], tags: ["feral"] },
  44507. {
  44508. side: {
  44509. height: math.unit(182, "cm"),
  44510. weight: math.unit(1000, "lb"),
  44511. name: "Side",
  44512. image: {
  44513. source: "./media/characters/silver-dragon/side.svg",
  44514. extra: 710/287,
  44515. bottom: 88/798
  44516. }
  44517. },
  44518. },
  44519. [
  44520. {
  44521. name: "Normal",
  44522. height: math.unit(182, "cm"),
  44523. default: true
  44524. },
  44525. ]
  44526. ))
  44527. characterMakers.push(() => makeCharacter(
  44528. { name: "Zephyr", species: ["zorgoia"], tags: ["feral"] },
  44529. {
  44530. side: {
  44531. height: math.unit(6 + 6/12, "feet"),
  44532. weight: math.unit(1.5, "tons"),
  44533. name: "Side",
  44534. image: {
  44535. source: "./media/characters/zephyr/side.svg",
  44536. extra: 1433/586,
  44537. bottom: 109/1542
  44538. }
  44539. },
  44540. },
  44541. [
  44542. {
  44543. name: "Normal",
  44544. height: math.unit(6 + 6/12, "feet"),
  44545. default: true
  44546. },
  44547. ]
  44548. ))
  44549. characterMakers.push(() => makeCharacter(
  44550. { name: "Vixye", species: ["extraplanar"], tags: ["anthro"] },
  44551. {
  44552. side: {
  44553. height: math.unit(1, "feet"),
  44554. name: "Side",
  44555. image: {
  44556. source: "./media/characters/vixye/side.svg",
  44557. extra: 632/541,
  44558. bottom: 0/632
  44559. }
  44560. },
  44561. },
  44562. [
  44563. {
  44564. name: "Normal",
  44565. height: math.unit(1, "feet"),
  44566. default: true
  44567. },
  44568. {
  44569. name: "True",
  44570. height: math.unit(1e15, "multiverses")
  44571. },
  44572. ]
  44573. ))
  44574. characterMakers.push(() => makeCharacter(
  44575. { name: "Darla Mac Lochlainn", species: ["bear", "werebeast"], tags: ["anthro"] },
  44576. {
  44577. front: {
  44578. height: math.unit(8 + 2/12, "feet"),
  44579. weight: math.unit(650, "lb"),
  44580. name: "Front",
  44581. image: {
  44582. source: "./media/characters/darla-mac-lochlainn/front.svg",
  44583. extra: 1174/1137,
  44584. bottom: 82/1256
  44585. }
  44586. },
  44587. back: {
  44588. height: math.unit(8 + 2/12, "feet"),
  44589. weight: math.unit(650, "lb"),
  44590. name: "Back",
  44591. image: {
  44592. source: "./media/characters/darla-mac-lochlainn/back.svg",
  44593. extra: 1204/1157,
  44594. bottom: 46/1250
  44595. }
  44596. },
  44597. },
  44598. [
  44599. {
  44600. name: "Wildform",
  44601. height: math.unit(8 + 2/12, "feet"),
  44602. default: true
  44603. },
  44604. ]
  44605. ))
  44606. characterMakers.push(() => makeCharacter(
  44607. { name: "Cyphin", species: ["spireborn"], tags: ["anthro"] },
  44608. {
  44609. front: {
  44610. height: math.unit(18, "feet"),
  44611. name: "Front",
  44612. image: {
  44613. source: "./media/characters/cyphin/front.svg",
  44614. extra: 970/886,
  44615. bottom: 42/1012
  44616. }
  44617. },
  44618. back: {
  44619. height: math.unit(18, "feet"),
  44620. name: "Back",
  44621. image: {
  44622. source: "./media/characters/cyphin/back.svg",
  44623. extra: 1009/894,
  44624. bottom: 24/1033
  44625. }
  44626. },
  44627. head: {
  44628. height: math.unit(5.05, "feet"),
  44629. name: "Head",
  44630. image: {
  44631. source: "./media/characters/cyphin/head.svg"
  44632. }
  44633. },
  44634. tailbud: {
  44635. height: math.unit(5, "feet"),
  44636. name: "Tailbud",
  44637. image: {
  44638. source: "./media/characters/cyphin/tailbud.svg"
  44639. }
  44640. },
  44641. },
  44642. [
  44643. ]
  44644. ))
  44645. characterMakers.push(() => makeCharacter(
  44646. { name: "Raijin", species: ["zorgoia"], tags: ["feral"] },
  44647. {
  44648. side: {
  44649. height: math.unit(10, "feet"),
  44650. weight: math.unit(6, "tons"),
  44651. name: "Side",
  44652. image: {
  44653. source: "./media/characters/raijin/side.svg",
  44654. extra: 1529/613,
  44655. bottom: 337/1866
  44656. }
  44657. },
  44658. },
  44659. [
  44660. {
  44661. name: "Normal",
  44662. height: math.unit(10, "feet"),
  44663. default: true
  44664. },
  44665. ]
  44666. ))
  44667. characterMakers.push(() => makeCharacter(
  44668. { name: "Nilghais", species: ["felkin"], tags: ["feral"] },
  44669. {
  44670. side: {
  44671. height: math.unit(9, "feet"),
  44672. name: "Side",
  44673. image: {
  44674. source: "./media/characters/nilghais/side.svg",
  44675. extra: 1047/744,
  44676. bottom: 91/1138
  44677. }
  44678. },
  44679. head: {
  44680. height: math.unit(3.14, "feet"),
  44681. name: "Head",
  44682. image: {
  44683. source: "./media/characters/nilghais/head.svg"
  44684. }
  44685. },
  44686. mouth: {
  44687. height: math.unit(4.6, "feet"),
  44688. name: "Mouth",
  44689. image: {
  44690. source: "./media/characters/nilghais/mouth.svg"
  44691. }
  44692. },
  44693. wings: {
  44694. height: math.unit(24, "feet"),
  44695. name: "Wings",
  44696. image: {
  44697. source: "./media/characters/nilghais/wings.svg"
  44698. }
  44699. },
  44700. ass: {
  44701. height: math.unit(6.12, "feet"),
  44702. name: "Ass",
  44703. image: {
  44704. source: "./media/characters/nilghais/ass.svg"
  44705. }
  44706. },
  44707. },
  44708. [
  44709. {
  44710. name: "Normal",
  44711. height: math.unit(9, "feet"),
  44712. default: true
  44713. },
  44714. ]
  44715. ))
  44716. characterMakers.push(() => makeCharacter(
  44717. { name: "Zolgar", species: ["alien", "opossum", "bear"], tags: ["anthro"] },
  44718. {
  44719. regular: {
  44720. height: math.unit(16 + 2/12, "feet"),
  44721. weight: math.unit(2300, "lb"),
  44722. name: "Regular",
  44723. image: {
  44724. source: "./media/characters/zolgar/regular.svg",
  44725. extra: 1246/1004,
  44726. bottom: 124/1370
  44727. }
  44728. },
  44729. boxers: {
  44730. height: math.unit(16 + 2/12, "feet"),
  44731. weight: math.unit(2300, "lb"),
  44732. name: "Boxers",
  44733. image: {
  44734. source: "./media/characters/zolgar/boxers.svg",
  44735. extra: 1246/1004,
  44736. bottom: 124/1370
  44737. }
  44738. },
  44739. armored: {
  44740. height: math.unit(16 + 2/12, "feet"),
  44741. weight: math.unit(2300, "lb"),
  44742. name: "Armored",
  44743. image: {
  44744. source: "./media/characters/zolgar/armored.svg",
  44745. extra: 1246/1004,
  44746. bottom: 124/1370
  44747. }
  44748. },
  44749. goth: {
  44750. height: math.unit(16 + 2/12, "feet"),
  44751. weight: math.unit(2300, "lb"),
  44752. name: "Goth",
  44753. image: {
  44754. source: "./media/characters/zolgar/goth.svg",
  44755. extra: 1246/1004,
  44756. bottom: 124/1370
  44757. }
  44758. },
  44759. },
  44760. [
  44761. {
  44762. name: "Shrunken Down",
  44763. height: math.unit(9 + 2/12, "feet")
  44764. },
  44765. {
  44766. name: "Normal",
  44767. height: math.unit(16 + 2/12, "feet"),
  44768. default: true
  44769. },
  44770. ]
  44771. ))
  44772. characterMakers.push(() => makeCharacter(
  44773. { name: "Luca", species: ["zoroark", "lucario"], tags: ["anthro"] },
  44774. {
  44775. front: {
  44776. height: math.unit(6, "feet"),
  44777. weight: math.unit(168, "lb"),
  44778. name: "Front",
  44779. image: {
  44780. source: "./media/characters/luca/front.svg",
  44781. extra: 841/667,
  44782. bottom: 102/943
  44783. }
  44784. },
  44785. },
  44786. [
  44787. {
  44788. name: "Normal",
  44789. height: math.unit(6, "feet"),
  44790. default: true
  44791. },
  44792. ]
  44793. ))
  44794. characterMakers.push(() => makeCharacter(
  44795. { name: "Zezo", species: ["goo"], tags: ["feral"] },
  44796. {
  44797. side: {
  44798. height: math.unit(7 + 3/12, "feet"),
  44799. weight: math.unit(312, "lb"),
  44800. name: "Side",
  44801. image: {
  44802. source: "./media/characters/zezo/side.svg",
  44803. extra: 1192/1067,
  44804. bottom: 63/1255
  44805. }
  44806. },
  44807. },
  44808. [
  44809. {
  44810. name: "Normal",
  44811. height: math.unit(7 + 3/12, "feet"),
  44812. default: true
  44813. },
  44814. ]
  44815. ))
  44816. characterMakers.push(() => makeCharacter(
  44817. { name: "Mayso", species: ["dunnoh"], tags: ["anthro"] },
  44818. {
  44819. front: {
  44820. height: math.unit(5 + 5/12, "feet"),
  44821. weight: math.unit(170, "lb"),
  44822. name: "Front",
  44823. image: {
  44824. source: "./media/characters/mayso/front.svg",
  44825. extra: 1215/1108,
  44826. bottom: 16/1231
  44827. }
  44828. },
  44829. },
  44830. [
  44831. {
  44832. name: "Normal",
  44833. height: math.unit(5 + 5/12, "feet"),
  44834. default: true
  44835. },
  44836. ]
  44837. ))
  44838. characterMakers.push(() => makeCharacter(
  44839. { name: "Hess", species: ["gryphon"], tags: ["anthro"] },
  44840. {
  44841. front: {
  44842. height: math.unit(4 + 3/12, "feet"),
  44843. weight: math.unit(80, "lb"),
  44844. name: "Front",
  44845. image: {
  44846. source: "./media/characters/hess/front.svg",
  44847. extra: 1200/1123,
  44848. bottom: 16/1216
  44849. }
  44850. },
  44851. },
  44852. [
  44853. {
  44854. name: "Normal",
  44855. height: math.unit(4 + 3/12, "feet"),
  44856. default: true
  44857. },
  44858. ]
  44859. ))
  44860. characterMakers.push(() => makeCharacter(
  44861. { name: "Ashgar", species: ["bear", "lizard"], tags: ["anthro", "feral"] },
  44862. {
  44863. front: {
  44864. height: math.unit(1.9, "meters"),
  44865. name: "Front",
  44866. image: {
  44867. source: "./media/characters/ashgar/front.svg",
  44868. extra: 1177/1146,
  44869. bottom: 99/1276
  44870. }
  44871. },
  44872. back: {
  44873. height: math.unit(1.9, "meters"),
  44874. name: "Back",
  44875. image: {
  44876. source: "./media/characters/ashgar/back.svg",
  44877. extra: 1201/1183,
  44878. bottom: 53/1254
  44879. }
  44880. },
  44881. feral: {
  44882. height: math.unit(1.4, "meters"),
  44883. name: "Feral",
  44884. image: {
  44885. source: "./media/characters/ashgar/feral.svg",
  44886. extra: 370/345,
  44887. bottom: 45/415
  44888. }
  44889. },
  44890. },
  44891. [
  44892. {
  44893. name: "Normal",
  44894. height: math.unit(1.9, "meters"),
  44895. default: true
  44896. },
  44897. ]
  44898. ))
  44899. characterMakers.push(() => makeCharacter(
  44900. { name: "Phillip", species: ["wolf"], tags: ["anthro"] },
  44901. {
  44902. regular: {
  44903. height: math.unit(6, "feet"),
  44904. weight: math.unit(220, "lb"),
  44905. name: "Regular",
  44906. image: {
  44907. source: "./media/characters/phillip/regular.svg",
  44908. extra: 1373/1277,
  44909. bottom: 75/1448
  44910. }
  44911. },
  44912. dressed: {
  44913. height: math.unit(6, "feet"),
  44914. weight: math.unit(220, "lb"),
  44915. name: "Dressed",
  44916. image: {
  44917. source: "./media/characters/phillip/dressed.svg",
  44918. extra: 1373/1277,
  44919. bottom: 75/1448
  44920. }
  44921. },
  44922. paw: {
  44923. height: math.unit(1.44, "feet"),
  44924. name: "Paw",
  44925. image: {
  44926. source: "./media/characters/phillip/paw.svg"
  44927. }
  44928. },
  44929. },
  44930. [
  44931. {
  44932. name: "Normal",
  44933. height: math.unit(6, "feet"),
  44934. default: true
  44935. },
  44936. ]
  44937. ))
  44938. characterMakers.push(() => makeCharacter(
  44939. { name: "Uvula", species: ["dragon", "monster"], tags: ["feral"] },
  44940. {
  44941. side: {
  44942. height: math.unit(42, "feet"),
  44943. name: "Side",
  44944. image: {
  44945. source: "./media/characters/uvula/side.svg",
  44946. extra: 683/586,
  44947. bottom: 60/743
  44948. }
  44949. },
  44950. front: {
  44951. height: math.unit(42, "feet"),
  44952. name: "Front",
  44953. image: {
  44954. source: "./media/characters/uvula/front.svg",
  44955. extra: 705/613,
  44956. bottom: 54/759
  44957. }
  44958. },
  44959. maw: {
  44960. height: math.unit(23.5, "feet"),
  44961. name: "Maw",
  44962. image: {
  44963. source: "./media/characters/uvula/maw.svg"
  44964. }
  44965. },
  44966. },
  44967. [
  44968. {
  44969. name: "Original Size",
  44970. height: math.unit(14, "inches")
  44971. },
  44972. {
  44973. name: "Human Size",
  44974. height: math.unit(6, "feet")
  44975. },
  44976. {
  44977. name: "Big",
  44978. height: math.unit(42, "feet"),
  44979. default: true
  44980. },
  44981. {
  44982. name: "Bigger",
  44983. height: math.unit(100, "feet")
  44984. },
  44985. ]
  44986. ))
  44987. characterMakers.push(() => makeCharacter(
  44988. { name: "Lannah", species: ["wolf"], tags: ["anthro"] },
  44989. {
  44990. front: {
  44991. height: math.unit(5 + 11/12, "feet"),
  44992. name: "Front",
  44993. image: {
  44994. source: "./media/characters/lannah/front.svg",
  44995. extra: 1208/1113,
  44996. bottom: 97/1305
  44997. }
  44998. },
  44999. },
  45000. [
  45001. {
  45002. name: "Normal",
  45003. height: math.unit(5 + 11/12, "feet"),
  45004. default: true
  45005. },
  45006. ]
  45007. ))
  45008. characterMakers.push(() => makeCharacter(
  45009. { name: "Emberflame", species: ["ninetales"], tags: ["feral"] },
  45010. {
  45011. front: {
  45012. height: math.unit(6 + 3/12, "feet"),
  45013. weight: math.unit(3.5, "tons"),
  45014. name: "Front",
  45015. image: {
  45016. source: "./media/characters/emberflame/front.svg",
  45017. extra: 1198/672,
  45018. bottom: 82/1280
  45019. }
  45020. },
  45021. side: {
  45022. height: math.unit(6 + 3/12, "feet"),
  45023. weight: math.unit(3.5, "tons"),
  45024. name: "Side",
  45025. image: {
  45026. source: "./media/characters/emberflame/side.svg",
  45027. extra: 938/527,
  45028. bottom: 56/994
  45029. }
  45030. },
  45031. },
  45032. [
  45033. {
  45034. name: "Normal",
  45035. height: math.unit(6 + 3/12, "feet"),
  45036. default: true
  45037. },
  45038. ]
  45039. ))
  45040. characterMakers.push(() => makeCharacter(
  45041. { name: "Sophie Ambrose", species: ["zorgoia"], tags: ["feral"] },
  45042. {
  45043. side: {
  45044. height: math.unit(17.5, "feet"),
  45045. weight: math.unit(35, "tons"),
  45046. name: "Side",
  45047. image: {
  45048. source: "./media/characters/sophie-ambrose/side.svg",
  45049. extra: 1573/1242,
  45050. bottom: 71/1644
  45051. }
  45052. },
  45053. maw: {
  45054. height: math.unit(7.4, "feet"),
  45055. name: "Maw",
  45056. image: {
  45057. source: "./media/characters/sophie-ambrose/maw.svg"
  45058. }
  45059. },
  45060. },
  45061. [
  45062. {
  45063. name: "Normal",
  45064. height: math.unit(17.5, "feet"),
  45065. default: true
  45066. },
  45067. ]
  45068. ))
  45069. characterMakers.push(() => makeCharacter(
  45070. { name: "King Mugi", species: ["kaiju", "canine", "reptile"], tags: ["anthro"] },
  45071. {
  45072. front: {
  45073. height: math.unit(280, "feet"),
  45074. weight: math.unit(550, "tons"),
  45075. name: "Front",
  45076. image: {
  45077. source: "./media/characters/king-mugi/front.svg",
  45078. extra: 1102/947,
  45079. bottom: 104/1206
  45080. }
  45081. },
  45082. },
  45083. [
  45084. {
  45085. name: "King Mugi",
  45086. height: math.unit(280, "feet"),
  45087. default: true
  45088. },
  45089. ]
  45090. ))
  45091. characterMakers.push(() => makeCharacter(
  45092. { name: "Nova (Fox)", species: ["fox"], tags: ["anthro"] },
  45093. {
  45094. front: {
  45095. height: math.unit(64, "meters"),
  45096. name: "Front",
  45097. image: {
  45098. source: "./media/characters/nova-fox/front.svg",
  45099. extra: 1310/1246,
  45100. bottom: 65/1375
  45101. }
  45102. },
  45103. },
  45104. [
  45105. {
  45106. name: "Macro",
  45107. height: math.unit(64, "meters"),
  45108. default: true
  45109. },
  45110. ]
  45111. ))
  45112. characterMakers.push(() => makeCharacter(
  45113. { name: "Sam (Bat)", species: ["bat", "rat"], tags: ["anthro"] },
  45114. {
  45115. front: {
  45116. height: math.unit(6 + 3/12, "feet"),
  45117. weight: math.unit(170, "lb"),
  45118. name: "Front",
  45119. image: {
  45120. source: "./media/characters/sam-bat/front.svg",
  45121. extra: 1601/1411,
  45122. bottom: 125/1726
  45123. }
  45124. },
  45125. back: {
  45126. height: math.unit(6 + 3/12, "feet"),
  45127. weight: math.unit(170, "lb"),
  45128. name: "Back",
  45129. image: {
  45130. source: "./media/characters/sam-bat/back.svg",
  45131. extra: 1577/1405,
  45132. bottom: 58/1635
  45133. }
  45134. },
  45135. },
  45136. [
  45137. {
  45138. name: "Normal",
  45139. height: math.unit(6 + 3/12, "feet"),
  45140. default: true
  45141. },
  45142. ]
  45143. ))
  45144. characterMakers.push(() => makeCharacter(
  45145. { name: "Inari", species: ["eevee"], tags: ["feral"] },
  45146. {
  45147. front: {
  45148. height: math.unit(59, "feet"),
  45149. weight: math.unit(40000, "lb"),
  45150. name: "Front",
  45151. image: {
  45152. source: "./media/characters/inari/front.svg",
  45153. extra: 1884/1350,
  45154. bottom: 95/1979
  45155. }
  45156. },
  45157. },
  45158. [
  45159. {
  45160. name: "Gigantamax",
  45161. height: math.unit(59, "feet"),
  45162. default: true
  45163. },
  45164. ]
  45165. ))
  45166. characterMakers.push(() => makeCharacter(
  45167. { name: "Elizabeth", species: ["bat"], tags: ["anthro"] },
  45168. {
  45169. front: {
  45170. height: math.unit(5 + 8/12, "feet"),
  45171. name: "Front",
  45172. image: {
  45173. source: "./media/characters/elizabeth/front.svg",
  45174. extra: 1395/1298,
  45175. bottom: 54/1449
  45176. }
  45177. },
  45178. mouth: {
  45179. height: math.unit(1.97, "feet"),
  45180. name: "Mouth",
  45181. image: {
  45182. source: "./media/characters/elizabeth/mouth.svg"
  45183. }
  45184. },
  45185. foot: {
  45186. height: math.unit(1.17, "feet"),
  45187. name: "Foot",
  45188. image: {
  45189. source: "./media/characters/elizabeth/foot.svg"
  45190. }
  45191. },
  45192. },
  45193. [
  45194. {
  45195. name: "Normal",
  45196. height: math.unit(5 + 8/12, "feet"),
  45197. default: true
  45198. },
  45199. {
  45200. name: "Minimacro",
  45201. height: math.unit(18, "feet")
  45202. },
  45203. {
  45204. name: "Macro",
  45205. height: math.unit(180, "feet")
  45206. },
  45207. ]
  45208. ))
  45209. characterMakers.push(() => makeCharacter(
  45210. { name: "October Gossamer", species: ["cat"], tags: ["anthro"] },
  45211. {
  45212. front: {
  45213. height: math.unit(5 + 2/12, "feet"),
  45214. name: "Front",
  45215. image: {
  45216. source: "./media/characters/october-gossamer/front.svg",
  45217. extra: 505/454,
  45218. bottom: 7/512
  45219. }
  45220. },
  45221. back: {
  45222. height: math.unit(5 + 2/12, "feet"),
  45223. name: "Back",
  45224. image: {
  45225. source: "./media/characters/october-gossamer/back.svg",
  45226. extra: 501/454,
  45227. bottom: 11/512
  45228. }
  45229. },
  45230. },
  45231. [
  45232. {
  45233. name: "Normal",
  45234. height: math.unit(5 + 2/12, "feet"),
  45235. default: true
  45236. },
  45237. ]
  45238. ))
  45239. characterMakers.push(() => makeCharacter(
  45240. { name: "Epiglottis \"Glottis\" Larynx", species: ["dragon", "monster"], tags: ["anthro"] },
  45241. {
  45242. front: {
  45243. height: math.unit(5, "feet"),
  45244. name: "Front",
  45245. image: {
  45246. source: "./media/characters/epiglottis/front.svg",
  45247. extra: 923/849,
  45248. bottom: 17/940
  45249. }
  45250. },
  45251. },
  45252. [
  45253. {
  45254. name: "Original Size",
  45255. height: math.unit(10, "inches")
  45256. },
  45257. {
  45258. name: "Human Size",
  45259. height: math.unit(5, "feet"),
  45260. default: true
  45261. },
  45262. {
  45263. name: "Big",
  45264. height: math.unit(25, "feet")
  45265. },
  45266. {
  45267. name: "Bigger",
  45268. height: math.unit(50, "feet")
  45269. },
  45270. {
  45271. name: "oh lawd",
  45272. height: math.unit(75, "feet")
  45273. },
  45274. ]
  45275. ))
  45276. characterMakers.push(() => makeCharacter(
  45277. { name: "Lerm", species: ["skink"], tags: ["anthro"] },
  45278. {
  45279. front: {
  45280. height: math.unit(2 + 4/12, "feet"),
  45281. weight: math.unit(60, "lb"),
  45282. name: "Front",
  45283. image: {
  45284. source: "./media/characters/lerm/front.svg",
  45285. extra: 796/790,
  45286. bottom: 79/875
  45287. }
  45288. },
  45289. },
  45290. [
  45291. {
  45292. name: "Normal",
  45293. height: math.unit(2 + 4/12, "feet"),
  45294. default: true
  45295. },
  45296. ]
  45297. ))
  45298. characterMakers.push(() => makeCharacter(
  45299. { name: "Xena Nebadon", species: ["wolf"], tags: ["anthro"] },
  45300. {
  45301. front: {
  45302. height: math.unit(5.5, "feet"),
  45303. weight: math.unit(130, "lb"),
  45304. name: "Front",
  45305. image: {
  45306. source: "./media/characters/xena-nebadon/front.svg",
  45307. extra: 1828/1730,
  45308. bottom: 79/1907
  45309. }
  45310. },
  45311. },
  45312. [
  45313. {
  45314. name: "Tiny Puppy",
  45315. height: math.unit(3, "inches")
  45316. },
  45317. {
  45318. name: "Normal",
  45319. height: math.unit(5.5, "feet"),
  45320. default: true
  45321. },
  45322. {
  45323. name: "Lotta Lady",
  45324. height: math.unit(12, "feet")
  45325. },
  45326. {
  45327. name: "Pretty Big",
  45328. height: math.unit(100, "feet")
  45329. },
  45330. {
  45331. name: "Big",
  45332. height: math.unit(500, "feet")
  45333. },
  45334. {
  45335. name: "Skyscraper Toys",
  45336. height: math.unit(2500, "feet")
  45337. },
  45338. {
  45339. name: "Plane Catcher",
  45340. height: math.unit(8, "miles")
  45341. },
  45342. {
  45343. name: "Planet Toys",
  45344. height: math.unit(15, "earths")
  45345. },
  45346. {
  45347. name: "Stardust",
  45348. height: math.unit(0.25, "galaxies")
  45349. },
  45350. {
  45351. name: "Snacks",
  45352. height: math.unit(70, "universes")
  45353. },
  45354. ]
  45355. ))
  45356. characterMakers.push(() => makeCharacter(
  45357. { name: "Bounty", species: ["bat-eared-fox"], tags: ["anthro"] },
  45358. {
  45359. front: {
  45360. height: math.unit(1.6, "meters"),
  45361. weight: math.unit(60, "kg"),
  45362. name: "Front",
  45363. image: {
  45364. source: "./media/characters/bounty/front.svg",
  45365. extra: 1426/1308,
  45366. bottom: 15/1441
  45367. }
  45368. },
  45369. back: {
  45370. height: math.unit(1.6, "meters"),
  45371. weight: math.unit(60, "kg"),
  45372. name: "Back",
  45373. image: {
  45374. source: "./media/characters/bounty/back.svg",
  45375. extra: 1417/1307,
  45376. bottom: 8/1425
  45377. }
  45378. },
  45379. },
  45380. [
  45381. {
  45382. name: "Normal",
  45383. height: math.unit(1.6, "meters"),
  45384. default: true
  45385. },
  45386. {
  45387. name: "Macro",
  45388. height: math.unit(300, "meters")
  45389. },
  45390. ]
  45391. ))
  45392. characterMakers.push(() => makeCharacter(
  45393. { name: "Mochi", species: ["gryphon", "belted-kingfisher", "snow-leopard", "kaiju"], tags: ["anthro", "feral"] },
  45394. {
  45395. front: {
  45396. height: math.unit(2 + 8/12, "feet"),
  45397. weight: math.unit(15, "lb"),
  45398. name: "Front",
  45399. image: {
  45400. source: "./media/characters/mochi/front.svg",
  45401. extra: 1022/852,
  45402. bottom: 435/1457
  45403. }
  45404. },
  45405. back: {
  45406. height: math.unit(2 + 8/12, "feet"),
  45407. weight: math.unit(15, "lb"),
  45408. name: "Back",
  45409. image: {
  45410. source: "./media/characters/mochi/back.svg",
  45411. extra: 1335/1119,
  45412. bottom: 39/1374
  45413. }
  45414. },
  45415. bird: {
  45416. height: math.unit(2 + 8/12, "feet"),
  45417. weight: math.unit(15, "lb"),
  45418. name: "Bird",
  45419. image: {
  45420. source: "./media/characters/mochi/bird.svg",
  45421. extra: 1251/1113,
  45422. bottom: 178/1429
  45423. }
  45424. },
  45425. kaiju: {
  45426. height: math.unit(154, "feet"),
  45427. weight: math.unit(1e7, "lb"),
  45428. name: "Kaiju",
  45429. image: {
  45430. source: "./media/characters/mochi/kaiju.svg",
  45431. extra: 460/324,
  45432. bottom: 40/500
  45433. }
  45434. },
  45435. head: {
  45436. height: math.unit(1.21, "feet"),
  45437. name: "Head",
  45438. image: {
  45439. source: "./media/characters/mochi/head.svg"
  45440. }
  45441. },
  45442. alternateTail: {
  45443. height: math.unit(2 + 8/12, "feet"),
  45444. weight: math.unit(45, "lb"),
  45445. name: "Alternate Tail",
  45446. image: {
  45447. source: "./media/characters/mochi/alternate-tail.svg",
  45448. extra: 139/76,
  45449. bottom: 45/184
  45450. }
  45451. },
  45452. },
  45453. [
  45454. {
  45455. name: "Micro",
  45456. height: math.unit(2, "inches")
  45457. },
  45458. {
  45459. name: "Normal",
  45460. height: math.unit(2 + 8/12, "feet"),
  45461. default: true
  45462. },
  45463. {
  45464. name: "Macro",
  45465. height: math.unit(106, "feet")
  45466. },
  45467. ]
  45468. ))
  45469. characterMakers.push(() => makeCharacter(
  45470. { name: "Sarel", species: ["omnifalcon"], tags: ["anthro"] },
  45471. {
  45472. front: {
  45473. height: math.unit(5.67, "feet"),
  45474. weight: math.unit(135, "lb"),
  45475. name: "Front",
  45476. image: {
  45477. source: "./media/characters/sarel/front.svg",
  45478. extra: 865/788,
  45479. bottom: 97/962
  45480. }
  45481. },
  45482. back: {
  45483. height: math.unit(5.67, "feet"),
  45484. weight: math.unit(135, "lb"),
  45485. name: "Back",
  45486. image: {
  45487. source: "./media/characters/sarel/back.svg",
  45488. extra: 857/777,
  45489. bottom: 32/889
  45490. }
  45491. },
  45492. chozoan: {
  45493. height: math.unit(5.67, "feet"),
  45494. weight: math.unit(135, "lb"),
  45495. name: "Chozoan",
  45496. image: {
  45497. source: "./media/characters/sarel/chozoan.svg",
  45498. extra: 865/788,
  45499. bottom: 97/962
  45500. }
  45501. },
  45502. current: {
  45503. height: math.unit(5.67, "feet"),
  45504. weight: math.unit(135, "lb"),
  45505. name: "Current",
  45506. image: {
  45507. source: "./media/characters/sarel/current.svg",
  45508. extra: 865/788,
  45509. bottom: 97/962
  45510. }
  45511. },
  45512. head: {
  45513. height: math.unit(1.77, "feet"),
  45514. name: "Head",
  45515. image: {
  45516. source: "./media/characters/sarel/head.svg"
  45517. }
  45518. },
  45519. claws: {
  45520. height: math.unit(1.8, "feet"),
  45521. name: "Claws",
  45522. image: {
  45523. source: "./media/characters/sarel/claws.svg"
  45524. }
  45525. },
  45526. clawsAlt: {
  45527. height: math.unit(1.8, "feet"),
  45528. name: "Claws-alt",
  45529. image: {
  45530. source: "./media/characters/sarel/claws-alt.svg"
  45531. }
  45532. },
  45533. },
  45534. [
  45535. {
  45536. name: "Normal",
  45537. height: math.unit(5.67, "feet"),
  45538. default: true
  45539. },
  45540. ]
  45541. ))
  45542. characterMakers.push(() => makeCharacter(
  45543. { name: "Alyonia", species: ["shark"], tags: ["anthro"] },
  45544. {
  45545. front: {
  45546. height: math.unit(5500, "feet"),
  45547. name: "Front",
  45548. image: {
  45549. source: "./media/characters/alyonia/front.svg",
  45550. extra: 1200/1135,
  45551. bottom: 29/1229
  45552. }
  45553. },
  45554. back: {
  45555. height: math.unit(5500, "feet"),
  45556. name: "Back",
  45557. image: {
  45558. source: "./media/characters/alyonia/back.svg",
  45559. extra: 1205/1138,
  45560. bottom: 10/1215
  45561. }
  45562. },
  45563. },
  45564. [
  45565. {
  45566. name: "Small",
  45567. height: math.unit(10, "feet")
  45568. },
  45569. {
  45570. name: "Macro",
  45571. height: math.unit(500, "feet")
  45572. },
  45573. {
  45574. name: "Mega Macro",
  45575. height: math.unit(5500, "feet"),
  45576. default: true
  45577. },
  45578. {
  45579. name: "Mega Macro+",
  45580. height: math.unit(500000, "feet")
  45581. },
  45582. {
  45583. name: "Giga Macro",
  45584. height: math.unit(3000, "miles")
  45585. },
  45586. {
  45587. name: "Tera Macro",
  45588. height: math.unit(2.8e6, "miles")
  45589. },
  45590. {
  45591. name: "Galactic",
  45592. height: math.unit(120000, "lightyears")
  45593. },
  45594. ]
  45595. ))
  45596. characterMakers.push(() => makeCharacter(
  45597. { name: "Autumn", species: ["werewolf", "human"], tags: ["anthro"] },
  45598. {
  45599. werewolf: {
  45600. height: math.unit(8, "feet"),
  45601. weight: math.unit(425, "lb"),
  45602. name: "Werewolf",
  45603. image: {
  45604. source: "./media/characters/autumn/werewolf.svg",
  45605. extra: 2154/2031,
  45606. bottom: 160/2314
  45607. }
  45608. },
  45609. human: {
  45610. height: math.unit(5 + 8/12, "feet"),
  45611. weight: math.unit(150, "lb"),
  45612. name: "Human",
  45613. image: {
  45614. source: "./media/characters/autumn/human.svg",
  45615. extra: 1200/1149,
  45616. bottom: 30/1230
  45617. }
  45618. },
  45619. },
  45620. [
  45621. {
  45622. name: "Normal",
  45623. height: math.unit(8, "feet"),
  45624. default: true
  45625. },
  45626. ]
  45627. ))
  45628. characterMakers.push(() => makeCharacter(
  45629. { name: "Cobalt (Charizard)", species: ["charizard"], tags: ["anthro"] },
  45630. {
  45631. front: {
  45632. height: math.unit(8 + 5/12, "feet"),
  45633. weight: math.unit(825, "lb"),
  45634. name: "Front",
  45635. image: {
  45636. source: "./media/characters/cobalt-charizard/front.svg",
  45637. extra: 1268/1155,
  45638. bottom: 122/1390
  45639. }
  45640. },
  45641. side: {
  45642. height: math.unit(8 + 5/12, "feet"),
  45643. weight: math.unit(825, "lb"),
  45644. name: "Side",
  45645. image: {
  45646. source: "./media/characters/cobalt-charizard/side.svg",
  45647. extra: 1348/1257,
  45648. bottom: 58/1406
  45649. }
  45650. },
  45651. gMax: {
  45652. height: math.unit(134 + 11/12, "feet"),
  45653. name: "G-Max",
  45654. image: {
  45655. source: "./media/characters/cobalt-charizard/g-max.svg",
  45656. extra: 1835/1541,
  45657. bottom: 151/1986
  45658. }
  45659. },
  45660. },
  45661. [
  45662. {
  45663. name: "Normal",
  45664. height: math.unit(8 + 5/12, "feet"),
  45665. default: true
  45666. },
  45667. ]
  45668. ))
  45669. characterMakers.push(() => makeCharacter(
  45670. { name: "Stella", species: ["gryphon"], tags: ["anthro"] },
  45671. {
  45672. front: {
  45673. height: math.unit(6 + 3/12, "feet"),
  45674. weight: math.unit(210, "lb"),
  45675. name: "Front",
  45676. image: {
  45677. source: "./media/characters/stella/front.svg",
  45678. extra: 3549/3335,
  45679. bottom: 51/3600
  45680. }
  45681. },
  45682. },
  45683. [
  45684. {
  45685. name: "Normal",
  45686. height: math.unit(6 + 3/12, "feet"),
  45687. default: true
  45688. },
  45689. ]
  45690. ))
  45691. characterMakers.push(() => makeCharacter(
  45692. { name: "Riley Bishop", species: ["human"], tags: ["anthro"] },
  45693. {
  45694. front: {
  45695. height: math.unit(5, "feet"),
  45696. weight: math.unit(90, "lb"),
  45697. name: "Front",
  45698. image: {
  45699. source: "./media/characters/riley-bishop/front.svg",
  45700. extra: 1450/1428,
  45701. bottom: 152/1602
  45702. }
  45703. },
  45704. },
  45705. [
  45706. {
  45707. name: "Normal",
  45708. height: math.unit(5, "feet"),
  45709. default: true
  45710. },
  45711. ]
  45712. ))
  45713. characterMakers.push(() => makeCharacter(
  45714. { name: "Theo (Arcanine)", species: ["arcanine"], tags: ["feral"] },
  45715. {
  45716. side: {
  45717. height: math.unit(8 + 2/12, "feet"),
  45718. weight: math.unit(500, "kg"),
  45719. name: "Side",
  45720. image: {
  45721. source: "./media/characters/theo-arcanine/side.svg",
  45722. extra: 1342/1074,
  45723. bottom: 111/1453
  45724. }
  45725. },
  45726. },
  45727. [
  45728. {
  45729. name: "Normal",
  45730. height: math.unit(8 + 2/12, "feet"),
  45731. default: true
  45732. },
  45733. ]
  45734. ))
  45735. characterMakers.push(() => makeCharacter(
  45736. { name: "Kali", species: ["avali"], tags: ["anthro"] },
  45737. {
  45738. front: {
  45739. height: math.unit(4, "feet"),
  45740. name: "Front",
  45741. image: {
  45742. source: "./media/characters/kali/front.svg",
  45743. extra: 1074/867,
  45744. bottom: 34/1108
  45745. }
  45746. },
  45747. back: {
  45748. height: math.unit(4, "feet"),
  45749. name: "Back",
  45750. image: {
  45751. source: "./media/characters/kali/back.svg",
  45752. extra: 1068/863,
  45753. bottom: 26/1094
  45754. }
  45755. },
  45756. frontAlt: {
  45757. height: math.unit(4, "feet"),
  45758. name: "Front (Alt)",
  45759. image: {
  45760. source: "./media/characters/kali/front-alt.svg",
  45761. extra: 1921/1357,
  45762. bottom: 70/1991
  45763. }
  45764. },
  45765. },
  45766. [
  45767. {
  45768. name: "Normal",
  45769. height: math.unit(4, "feet"),
  45770. default: true
  45771. },
  45772. {
  45773. name: "Big'vali",
  45774. height: math.unit(11, "feet")
  45775. },
  45776. {
  45777. name: "Macro",
  45778. height: math.unit(32, "meters")
  45779. },
  45780. {
  45781. name: "Macro+",
  45782. height: math.unit(150, "meters")
  45783. },
  45784. {
  45785. name: "Megamacro",
  45786. height: math.unit(7500, "meters")
  45787. },
  45788. {
  45789. name: "Megamacro+",
  45790. height: math.unit(80, "kilometers")
  45791. },
  45792. ]
  45793. ))
  45794. characterMakers.push(() => makeCharacter(
  45795. { name: "Gapp", species: ["zorgoia"], tags: ["feral"] },
  45796. {
  45797. side: {
  45798. height: math.unit(5 + 11/12, "feet"),
  45799. weight: math.unit(236, "lb"),
  45800. name: "Side",
  45801. image: {
  45802. source: "./media/characters/gapp/side.svg",
  45803. extra: 775/340,
  45804. bottom: 58/833
  45805. }
  45806. },
  45807. mouth: {
  45808. height: math.unit(2.98, "feet"),
  45809. name: "Mouth",
  45810. image: {
  45811. source: "./media/characters/gapp/mouth.svg"
  45812. }
  45813. },
  45814. },
  45815. [
  45816. {
  45817. name: "Normal",
  45818. height: math.unit(5 + 1/12, "feet"),
  45819. default: true
  45820. },
  45821. ]
  45822. ))
  45823. characterMakers.push(() => makeCharacter(
  45824. { name: "Persephone", species: ["absol"], tags: ["anthro"] },
  45825. {
  45826. front: {
  45827. height: math.unit(6, "feet"),
  45828. name: "Front",
  45829. image: {
  45830. source: "./media/characters/persephone/front.svg",
  45831. extra: 1895/1717,
  45832. bottom: 96/1991
  45833. }
  45834. },
  45835. back: {
  45836. height: math.unit(6, "feet"),
  45837. name: "Back",
  45838. image: {
  45839. source: "./media/characters/persephone/back.svg",
  45840. extra: 1868/1679,
  45841. bottom: 26/1894
  45842. }
  45843. },
  45844. casual: {
  45845. height: math.unit(6, "feet"),
  45846. name: "Casual",
  45847. image: {
  45848. source: "./media/characters/persephone/casual.svg",
  45849. extra: 1713/1541,
  45850. bottom: 76/1789
  45851. }
  45852. },
  45853. gaming: {
  45854. height: math.unit(3.55, "feet"),
  45855. name: "Gaming",
  45856. image: {
  45857. source: "./media/characters/persephone/gaming.svg",
  45858. extra: 1242/1038,
  45859. bottom: 66/1308
  45860. }
  45861. },
  45862. head: {
  45863. height: math.unit(2.15, "feet"),
  45864. name: "😐",
  45865. image: {
  45866. source: "./media/characters/persephone/head.svg"
  45867. }
  45868. },
  45869. talking: {
  45870. height: math.unit(2.5, "feet"),
  45871. name: "💬",
  45872. image: {
  45873. source: "./media/characters/persephone/talking.svg"
  45874. }
  45875. },
  45876. hmm: {
  45877. height: math.unit(2.28, "feet"),
  45878. name: "🤨",
  45879. image: {
  45880. source: "./media/characters/persephone/hmm.svg"
  45881. }
  45882. },
  45883. },
  45884. [
  45885. {
  45886. name: "Human Size",
  45887. height: math.unit(6, "feet")
  45888. },
  45889. {
  45890. name: "Big Steppy",
  45891. height: math.unit(600, "meters"),
  45892. default: true
  45893. },
  45894. {
  45895. name: "Galaxy Brain",
  45896. height: math.unit(1, "zettameter")
  45897. },
  45898. ]
  45899. ))
  45900. characterMakers.push(() => makeCharacter(
  45901. { name: "Riley Foxthing", species: ["fox"], tags: ["anthro"] },
  45902. {
  45903. front: {
  45904. height: math.unit(1.85, "meters"),
  45905. name: "Front",
  45906. image: {
  45907. source: "./media/characters/riley-foxthing/front.svg",
  45908. extra: 1495/1354,
  45909. bottom: 122/1617
  45910. }
  45911. },
  45912. frontAlt: {
  45913. height: math.unit(1.85, "meters"),
  45914. name: "Front (Alt)",
  45915. image: {
  45916. source: "./media/characters/riley-foxthing/front-alt.svg",
  45917. extra: 1572/1389,
  45918. bottom: 116/1688
  45919. }
  45920. },
  45921. },
  45922. [
  45923. {
  45924. name: "Normal Sized",
  45925. height: math.unit(1.85, "meters"),
  45926. default: true
  45927. },
  45928. {
  45929. name: "Quite Sizable",
  45930. height: math.unit(5, "meters")
  45931. },
  45932. {
  45933. name: "Rather Large",
  45934. height: math.unit(20, "meters")
  45935. },
  45936. {
  45937. name: "Macro",
  45938. height: math.unit(450, "meters")
  45939. },
  45940. {
  45941. name: "Giga",
  45942. height: math.unit(5, "km")
  45943. },
  45944. ]
  45945. ))
  45946. characterMakers.push(() => makeCharacter(
  45947. { name: "Blizzard", species: ["arctic-fox"], tags: ["anthro"] },
  45948. {
  45949. front: {
  45950. height: math.unit(6, "feet"),
  45951. weight: math.unit(200, "lb"),
  45952. name: "Front",
  45953. image: {
  45954. source: "./media/characters/blizzard/front.svg",
  45955. extra: 1136/990,
  45956. bottom: 136/1272
  45957. }
  45958. },
  45959. back: {
  45960. height: math.unit(6, "feet"),
  45961. weight: math.unit(200, "lb"),
  45962. name: "Back",
  45963. image: {
  45964. source: "./media/characters/blizzard/back.svg",
  45965. extra: 1175/1034,
  45966. bottom: 97/1272
  45967. }
  45968. },
  45969. sitting: {
  45970. height: math.unit(3.725, "feet"),
  45971. weight: math.unit(200, "lb"),
  45972. name: "Sitting",
  45973. image: {
  45974. source: "./media/characters/blizzard/sitting.svg",
  45975. extra: 581/485,
  45976. bottom: 90/671
  45977. }
  45978. },
  45979. frontWizard: {
  45980. height: math.unit(7.9, "feet"),
  45981. weight: math.unit(200, "lb"),
  45982. name: "Front (Wizard)",
  45983. image: {
  45984. source: "./media/characters/blizzard/front-wizard.svg"
  45985. }
  45986. },
  45987. backWizard: {
  45988. height: math.unit(7.9, "feet"),
  45989. weight: math.unit(200, "lb"),
  45990. name: "Back (Wizard)",
  45991. image: {
  45992. source: "./media/characters/blizzard/back-wizard.svg"
  45993. }
  45994. },
  45995. frontNsfw: {
  45996. height: math.unit(6, "feet"),
  45997. weight: math.unit(200, "lb"),
  45998. name: "Front (NSFW)",
  45999. image: {
  46000. source: "./media/characters/blizzard/front-nsfw.svg",
  46001. extra: 1136/990,
  46002. bottom: 136/1272
  46003. }
  46004. },
  46005. backNsfw: {
  46006. height: math.unit(6, "feet"),
  46007. weight: math.unit(200, "lb"),
  46008. name: "Back (NSFW)",
  46009. image: {
  46010. source: "./media/characters/blizzard/back-nsfw.svg",
  46011. extra: 1175/1034,
  46012. bottom: 97/1272
  46013. }
  46014. },
  46015. sittingNsfw: {
  46016. height: math.unit(3.725, "feet"),
  46017. weight: math.unit(200, "lb"),
  46018. name: "Sitting (NSFW)",
  46019. image: {
  46020. source: "./media/characters/blizzard/sitting-nsfw.svg",
  46021. extra: 581/485,
  46022. bottom: 90/671
  46023. }
  46024. },
  46025. wizardFrontNsfw: {
  46026. height: math.unit(7.9, "feet"),
  46027. weight: math.unit(200, "lb"),
  46028. name: "Wizard (Front, NSFW)",
  46029. image: {
  46030. source: "./media/characters/blizzard/wizard-front-nsfw.svg"
  46031. }
  46032. },
  46033. },
  46034. [
  46035. {
  46036. name: "Normal",
  46037. height: math.unit(6, "feet"),
  46038. default: true
  46039. },
  46040. ]
  46041. ))
  46042. characterMakers.push(() => makeCharacter(
  46043. { name: "Lumi", species: ["snow-tiger"], tags: ["anthro"] },
  46044. {
  46045. front: {
  46046. height: math.unit(5 + 2/12, "feet"),
  46047. name: "Front",
  46048. image: {
  46049. source: "./media/characters/lumi/front.svg",
  46050. extra: 1328/1268,
  46051. bottom: 103/1431
  46052. }
  46053. },
  46054. back: {
  46055. height: math.unit(5 + 2/12, "feet"),
  46056. name: "Back",
  46057. image: {
  46058. source: "./media/characters/lumi/back.svg",
  46059. extra: 1381/1327,
  46060. bottom: 43/1424
  46061. }
  46062. },
  46063. },
  46064. [
  46065. {
  46066. name: "Normal",
  46067. height: math.unit(5 + 2/12, "feet"),
  46068. default: true
  46069. },
  46070. ]
  46071. ))
  46072. characterMakers.push(() => makeCharacter(
  46073. { name: "Aliya Cotton", species: ["rabbit"], tags: ["anthro"] },
  46074. {
  46075. front: {
  46076. height: math.unit(5 + 9/12, "feet"),
  46077. name: "Front",
  46078. image: {
  46079. source: "./media/characters/aliya-cotton/front.svg",
  46080. extra: 577/564,
  46081. bottom: 29/606
  46082. }
  46083. },
  46084. },
  46085. [
  46086. {
  46087. name: "Normal",
  46088. height: math.unit(5 + 9/12, "feet"),
  46089. default: true
  46090. },
  46091. ]
  46092. ))
  46093. characterMakers.push(() => makeCharacter(
  46094. { name: "Noah (Luxray)", species: ["luxray"], tags: ["anthro"] },
  46095. {
  46096. front: {
  46097. height: math.unit(2.7, "meters"),
  46098. weight: math.unit(25000, "lb"),
  46099. name: "Front",
  46100. image: {
  46101. source: "./media/characters/noah-luxray/front.svg",
  46102. extra: 1644/825,
  46103. bottom: 339/1983
  46104. }
  46105. },
  46106. side: {
  46107. height: math.unit(2.97, "meters"),
  46108. weight: math.unit(25000, "lb"),
  46109. name: "Side",
  46110. image: {
  46111. source: "./media/characters/noah-luxray/side.svg",
  46112. extra: 1319/650,
  46113. bottom: 163/1482
  46114. }
  46115. },
  46116. dick: {
  46117. height: math.unit(7.4, "feet"),
  46118. weight: math.unit(2500, "lb"),
  46119. name: "Dick",
  46120. image: {
  46121. source: "./media/characters/noah-luxray/dick.svg"
  46122. }
  46123. },
  46124. dickAlt: {
  46125. height: math.unit(10.83, "feet"),
  46126. weight: math.unit(2500, "lb"),
  46127. name: "Dick-alt",
  46128. image: {
  46129. source: "./media/characters/noah-luxray/dick-alt.svg"
  46130. }
  46131. },
  46132. },
  46133. [
  46134. {
  46135. name: "BIG",
  46136. height: math.unit(2.7, "meters"),
  46137. default: true
  46138. },
  46139. ]
  46140. ))
  46141. characterMakers.push(() => makeCharacter(
  46142. { name: "Arion", species: ["horse"], tags: ["anthro"] },
  46143. {
  46144. standing: {
  46145. height: math.unit(183, "cm"),
  46146. weight: math.unit(68, "kg"),
  46147. name: "Standing",
  46148. image: {
  46149. source: "./media/characters/arion/standing.svg",
  46150. extra: 1869/1807,
  46151. bottom: 93/1962
  46152. }
  46153. },
  46154. reclining: {
  46155. height: math.unit(70.5, "cm"),
  46156. weight: math.unit(68, "lb"),
  46157. name: "Reclining",
  46158. image: {
  46159. source: "./media/characters/arion/reclining.svg",
  46160. extra: 937/870,
  46161. bottom: 63/1000
  46162. }
  46163. },
  46164. },
  46165. [
  46166. {
  46167. name: "Colossus Size, Low",
  46168. height: math.unit(33, "meters"),
  46169. default: true
  46170. },
  46171. {
  46172. name: "Colossus Size, Mid",
  46173. height: math.unit(52, "meters")
  46174. },
  46175. {
  46176. name: "Colossus Size, High",
  46177. height: math.unit(60, "meters")
  46178. },
  46179. {
  46180. name: "Titan Size, Low",
  46181. height: math.unit(91, "meters"),
  46182. },
  46183. {
  46184. name: "Titan Size, Mid",
  46185. height: math.unit(122, "meters")
  46186. },
  46187. {
  46188. name: "Titan Size, High",
  46189. height: math.unit(162, "meters")
  46190. },
  46191. ]
  46192. ))
  46193. characterMakers.push(() => makeCharacter(
  46194. { name: "Stellar Marbey", species: ["marble-fox"], tags: ["anthro"] },
  46195. {
  46196. front: {
  46197. height: math.unit(53, "meters"),
  46198. name: "Front",
  46199. image: {
  46200. source: "./media/characters/stellar-marbey/front.svg",
  46201. extra: 1913/1805,
  46202. bottom: 92/2005
  46203. }
  46204. },
  46205. back: {
  46206. height: math.unit(53, "meters"),
  46207. name: "Back",
  46208. image: {
  46209. source: "./media/characters/stellar-marbey/back.svg",
  46210. extra: 1960/1851,
  46211. bottom: 28/1988
  46212. }
  46213. },
  46214. mouth: {
  46215. height: math.unit(3.5, "meters"),
  46216. name: "Mouth",
  46217. image: {
  46218. source: "./media/characters/stellar-marbey/mouth.svg"
  46219. }
  46220. },
  46221. },
  46222. [
  46223. {
  46224. name: "Macro",
  46225. height: math.unit(53, "meters"),
  46226. default: true
  46227. },
  46228. ]
  46229. ))
  46230. characterMakers.push(() => makeCharacter(
  46231. { name: "Matsu", species: ["dragon", "deer"], tags: ["anthro"] },
  46232. {
  46233. front: {
  46234. height: math.unit(8 + 1/12, "feet"),
  46235. weight: math.unit(233, "lb"),
  46236. name: "Front",
  46237. image: {
  46238. source: "./media/characters/matsu/front.svg",
  46239. extra: 832/772,
  46240. bottom: 40/872
  46241. }
  46242. },
  46243. back: {
  46244. height: math.unit(8 + 1/12, "feet"),
  46245. weight: math.unit(233, "lb"),
  46246. name: "Back",
  46247. image: {
  46248. source: "./media/characters/matsu/back.svg",
  46249. extra: 839/780,
  46250. bottom: 47/886
  46251. }
  46252. },
  46253. },
  46254. [
  46255. {
  46256. name: "Normal",
  46257. height: math.unit(8 + 1/12, "feet"),
  46258. default: true
  46259. },
  46260. ]
  46261. ))
  46262. characterMakers.push(() => makeCharacter(
  46263. { name: "Thiz", species: ["gremlin"], tags: ["anthro"] },
  46264. {
  46265. front: {
  46266. height: math.unit(4, "feet"),
  46267. weight: math.unit(148, "lb"),
  46268. name: "Front",
  46269. image: {
  46270. source: "./media/characters/thiz/front.svg",
  46271. extra: 1913/1748,
  46272. bottom: 62/1975
  46273. }
  46274. },
  46275. },
  46276. [
  46277. {
  46278. name: "Normal",
  46279. height: math.unit(4, "feet"),
  46280. default: true
  46281. },
  46282. ]
  46283. ))
  46284. characterMakers.push(() => makeCharacter(
  46285. { name: "Marcel", species: ["king-wickerbeast"], tags: ["anthro"] },
  46286. {
  46287. front: {
  46288. height: math.unit(7 + 6/12, "feet"),
  46289. weight: math.unit(267, "lb"),
  46290. name: "Front",
  46291. image: {
  46292. source: "./media/characters/marcel/front.svg",
  46293. extra: 1221/1096,
  46294. bottom: 76/1297
  46295. }
  46296. },
  46297. },
  46298. [
  46299. {
  46300. name: "Normal",
  46301. height: math.unit(7 + 6/12, "feet"),
  46302. default: true
  46303. },
  46304. ]
  46305. ))
  46306. characterMakers.push(() => makeCharacter(
  46307. { name: "Flake", species: ["dragon"], tags: ["feral"] },
  46308. {
  46309. side: {
  46310. height: math.unit(42, "meters"),
  46311. name: "Side",
  46312. image: {
  46313. source: "./media/characters/flake/side.svg",
  46314. extra: 1525/1306,
  46315. bottom: 209/1734
  46316. }
  46317. },
  46318. },
  46319. [
  46320. {
  46321. name: "Normal",
  46322. height: math.unit(42, "meters"),
  46323. default: true
  46324. },
  46325. ]
  46326. ))
  46327. characterMakers.push(() => makeCharacter(
  46328. { name: "Someonne", species: ["alien", "robot"], tags: ["anthro"] },
  46329. {
  46330. dressed: {
  46331. height: math.unit(6 + 4/12, "feet"),
  46332. weight: math.unit(520, "lb"),
  46333. name: "Dressed",
  46334. image: {
  46335. source: "./media/characters/someonne/dressed.svg",
  46336. extra: 1020/1010,
  46337. bottom: 178/1198
  46338. }
  46339. },
  46340. undressed: {
  46341. height: math.unit(6 + 4/12, "feet"),
  46342. weight: math.unit(520, "lb"),
  46343. name: "Undressed",
  46344. image: {
  46345. source: "./media/characters/someonne/undressed.svg",
  46346. extra: 1019/1014,
  46347. bottom: 169/1188
  46348. }
  46349. },
  46350. },
  46351. [
  46352. {
  46353. name: "Normal",
  46354. height: math.unit(6 + 4/12, "feet"),
  46355. default: true
  46356. },
  46357. ]
  46358. ))
  46359. characterMakers.push(() => makeCharacter(
  46360. { name: "Till", species: ["kobold"], tags: ["anthro"] },
  46361. {
  46362. front: {
  46363. height: math.unit(3, "feet"),
  46364. weight: math.unit(30, "lb"),
  46365. name: "Front",
  46366. image: {
  46367. source: "./media/characters/till/front.svg",
  46368. extra: 892/823,
  46369. bottom: 55/947
  46370. }
  46371. },
  46372. },
  46373. [
  46374. {
  46375. name: "Normal",
  46376. height: math.unit(3, "feet"),
  46377. default: true
  46378. },
  46379. ]
  46380. ))
  46381. characterMakers.push(() => makeCharacter(
  46382. { name: "Sydney Heki", species: ["werewolf"], tags: ["anthro"] },
  46383. {
  46384. front: {
  46385. height: math.unit(9 + 8/12, "feet"),
  46386. weight: math.unit(800, "lb"),
  46387. name: "Front",
  46388. image: {
  46389. source: "./media/characters/sydney-heki/front.svg",
  46390. extra: 1360/1300,
  46391. bottom: 22/1382
  46392. }
  46393. },
  46394. back: {
  46395. height: math.unit(9 + 8/12, "feet"),
  46396. weight: math.unit(800, "lb"),
  46397. name: "Back",
  46398. image: {
  46399. source: "./media/characters/sydney-heki/back.svg",
  46400. extra: 1356/1293,
  46401. bottom: 12/1368
  46402. }
  46403. },
  46404. frontDressed: {
  46405. height: math.unit(9 + 8/12, "feet"),
  46406. weight: math.unit(800, "lb"),
  46407. name: "Front-dressed",
  46408. image: {
  46409. source: "./media/characters/sydney-heki/front-dressed.svg",
  46410. extra: 1360/1300,
  46411. bottom: 22/1382
  46412. }
  46413. },
  46414. },
  46415. [
  46416. {
  46417. name: "Normal",
  46418. height: math.unit(9 + 8/12, "feet"),
  46419. default: true
  46420. },
  46421. {
  46422. name: "Macro",
  46423. height: math.unit(500, "feet")
  46424. },
  46425. {
  46426. name: "Megamacro",
  46427. height: math.unit(3.6, "miles")
  46428. },
  46429. ]
  46430. ))
  46431. characterMakers.push(() => makeCharacter(
  46432. { name: "Fowler Karlsson", species: ["horse"], tags: ["anthro"] },
  46433. {
  46434. front: {
  46435. height: math.unit(200, "cm"),
  46436. weight: math.unit(250, "lb"),
  46437. name: "Front",
  46438. image: {
  46439. source: "./media/characters/fowler-karlsson/front.svg",
  46440. extra: 897/845,
  46441. bottom: 123/1020
  46442. }
  46443. },
  46444. back: {
  46445. height: math.unit(200, "cm"),
  46446. weight: math.unit(250, "lb"),
  46447. name: "Back",
  46448. image: {
  46449. source: "./media/characters/fowler-karlsson/back.svg",
  46450. extra: 999/944,
  46451. bottom: 26/1025
  46452. }
  46453. },
  46454. dick: {
  46455. height: math.unit(1.92, "feet"),
  46456. weight: math.unit(150, "lb"),
  46457. name: "Dick",
  46458. image: {
  46459. source: "./media/characters/fowler-karlsson/dick.svg"
  46460. }
  46461. },
  46462. },
  46463. [
  46464. {
  46465. name: "Normal",
  46466. height: math.unit(200, "cm"),
  46467. default: true
  46468. },
  46469. {
  46470. name: "Smaller Macro",
  46471. height: math.unit(90, "m")
  46472. },
  46473. {
  46474. name: "Macro",
  46475. height: math.unit(150, "m")
  46476. },
  46477. {
  46478. name: "Bigger Macro",
  46479. height: math.unit(300, "m")
  46480. },
  46481. ]
  46482. ))
  46483. characterMakers.push(() => makeCharacter(
  46484. { name: "Rylide", species: ["jackalope"], tags: ["taur"] },
  46485. {
  46486. side: {
  46487. height: math.unit(8 + 2/12, "feet"),
  46488. weight: math.unit(1, "tonne"),
  46489. name: "Side",
  46490. image: {
  46491. source: "./media/characters/rylide/side.svg",
  46492. extra: 1318/1034,
  46493. bottom: 106/1424
  46494. }
  46495. },
  46496. sitting: {
  46497. height: math.unit(303, "cm"),
  46498. weight: math.unit(1, "tonne"),
  46499. name: "Sitting",
  46500. image: {
  46501. source: "./media/characters/rylide/sitting.svg",
  46502. extra: 1303/1103,
  46503. bottom: 36/1339
  46504. }
  46505. },
  46506. },
  46507. [
  46508. {
  46509. name: "Normal",
  46510. height: math.unit(8 + 2/12, "feet"),
  46511. default: true
  46512. },
  46513. ]
  46514. ))
  46515. characterMakers.push(() => makeCharacter(
  46516. { name: "Pudask", species: ["european-polecat"], tags: ["anthro"] },
  46517. {
  46518. front: {
  46519. height: math.unit(5 + 10/12, "feet"),
  46520. weight: math.unit(160, "lb"),
  46521. name: "Front",
  46522. image: {
  46523. source: "./media/characters/pudask/front.svg",
  46524. extra: 1616/1590,
  46525. bottom: 161/1777
  46526. }
  46527. },
  46528. },
  46529. [
  46530. {
  46531. name: "Ferret Height",
  46532. height: math.unit(2 + 5/12, "feet")
  46533. },
  46534. {
  46535. name: "Canon Height",
  46536. height: math.unit(5 + 10/12, "feet"),
  46537. default: true
  46538. },
  46539. ]
  46540. ))
  46541. characterMakers.push(() => makeCharacter(
  46542. { name: "Ramita", species: ["teshari"], tags: ["anthro"] },
  46543. {
  46544. front: {
  46545. height: math.unit(3 + 6/12, "feet"),
  46546. weight: math.unit(60, "lb"),
  46547. name: "Front",
  46548. image: {
  46549. source: "./media/characters/ramita/front.svg",
  46550. extra: 1402/1232,
  46551. bottom: 62/1464
  46552. }
  46553. },
  46554. dressed: {
  46555. height: math.unit(3 + 6/12, "feet"),
  46556. weight: math.unit(60, "lb"),
  46557. name: "Dressed",
  46558. image: {
  46559. source: "./media/characters/ramita/dressed.svg",
  46560. extra: 1534/1249,
  46561. bottom: 50/1584
  46562. }
  46563. },
  46564. },
  46565. [
  46566. {
  46567. name: "Normal",
  46568. height: math.unit(3 + 6/12, "feet"),
  46569. default: true
  46570. },
  46571. ]
  46572. ))
  46573. characterMakers.push(() => makeCharacter(
  46574. { name: "Ark", species: ["dragon"], tags: ["anthro"] },
  46575. {
  46576. front: {
  46577. height: math.unit(8, "feet"),
  46578. name: "Front",
  46579. image: {
  46580. source: "./media/characters/ark/front.svg",
  46581. extra: 772/693,
  46582. bottom: 45/817
  46583. }
  46584. },
  46585. },
  46586. [
  46587. {
  46588. name: "Normal",
  46589. height: math.unit(8, "feet"),
  46590. default: true
  46591. },
  46592. ]
  46593. ))
  46594. characterMakers.push(() => makeCharacter(
  46595. { name: "Ludwig-Horn", species: ["tiger", "dragon"], tags: ["anthro"] },
  46596. {
  46597. front: {
  46598. height: math.unit(6, "feet"),
  46599. weight: math.unit(250, "lb"),
  46600. volume: math.unit(5/8, "gallons"),
  46601. name: "Front",
  46602. image: {
  46603. source: "./media/characters/ludwig-horn/front.svg",
  46604. extra: 1782/1635,
  46605. bottom: 96/1878
  46606. }
  46607. },
  46608. back: {
  46609. height: math.unit(6, "feet"),
  46610. weight: math.unit(250, "lb"),
  46611. volume: math.unit(5/8, "gallons"),
  46612. name: "Back",
  46613. image: {
  46614. source: "./media/characters/ludwig-horn/back.svg",
  46615. extra: 1874/1729,
  46616. bottom: 27/1901
  46617. }
  46618. },
  46619. dick: {
  46620. height: math.unit(1.05, "feet"),
  46621. weight: math.unit(15, "lb"),
  46622. volume: math.unit(5/8, "gallons"),
  46623. name: "Dick",
  46624. image: {
  46625. source: "./media/characters/ludwig-horn/dick.svg"
  46626. }
  46627. },
  46628. },
  46629. [
  46630. {
  46631. name: "Small",
  46632. height: math.unit(6, "feet")
  46633. },
  46634. {
  46635. name: "Typical",
  46636. height: math.unit(12, "feet"),
  46637. default: true
  46638. },
  46639. {
  46640. name: "Building",
  46641. height: math.unit(80, "feet")
  46642. },
  46643. {
  46644. name: "Town",
  46645. height: math.unit(800, "feet")
  46646. },
  46647. {
  46648. name: "Kingdom",
  46649. height: math.unit(80000, "feet")
  46650. },
  46651. {
  46652. name: "Planet",
  46653. height: math.unit(8000000, "feet")
  46654. },
  46655. {
  46656. name: "Universe",
  46657. height: math.unit(8000000000, "feet")
  46658. },
  46659. {
  46660. name: "Transcended",
  46661. height: math.unit(8e27, "feet")
  46662. },
  46663. ]
  46664. ))
  46665. characterMakers.push(() => makeCharacter(
  46666. { name: "Biot Avery", species: ["dragon"], tags: ["anthro"] },
  46667. {
  46668. front: {
  46669. height: math.unit(5, "feet"),
  46670. weight: math.unit(50, "kg"),
  46671. name: "Front",
  46672. image: {
  46673. source: "./media/characters/biot-avery/front.svg",
  46674. extra: 1295/1232,
  46675. bottom: 86/1381
  46676. }
  46677. },
  46678. },
  46679. [
  46680. {
  46681. name: "Normal",
  46682. height: math.unit(5, "feet"),
  46683. default: true
  46684. },
  46685. ]
  46686. ))
  46687. characterMakers.push(() => makeCharacter(
  46688. { name: "Kitsune Kiro", species: ["kitsune"], tags: ["anthro"] },
  46689. {
  46690. front: {
  46691. height: math.unit(6, "feet"),
  46692. name: "Front",
  46693. image: {
  46694. source: "./media/characters/kitsune-kiro/front.svg",
  46695. extra: 1270/1158,
  46696. bottom: 42/1312
  46697. }
  46698. },
  46699. frontAlt: {
  46700. height: math.unit(6, "feet"),
  46701. name: "Front-alt",
  46702. image: {
  46703. source: "./media/characters/kitsune-kiro/front-alt.svg",
  46704. extra: 1130/1081,
  46705. bottom: 36/1166
  46706. }
  46707. },
  46708. },
  46709. [
  46710. {
  46711. name: "Smol",
  46712. height: math.unit(3, "feet")
  46713. },
  46714. {
  46715. name: "Normal",
  46716. height: math.unit(6, "feet"),
  46717. default: true
  46718. },
  46719. ]
  46720. ))
  46721. characterMakers.push(() => makeCharacter(
  46722. { name: "Jack Thatcher", species: ["fox"], tags: ["anthro"] },
  46723. {
  46724. front: {
  46725. height: math.unit(6, "feet"),
  46726. weight: math.unit(125, "lb"),
  46727. name: "Front",
  46728. image: {
  46729. source: "./media/characters/jack-thatcher/front.svg",
  46730. extra: 1474/1370,
  46731. bottom: 26/1500
  46732. }
  46733. },
  46734. back: {
  46735. height: math.unit(6, "feet"),
  46736. weight: math.unit(125, "lb"),
  46737. name: "Back",
  46738. image: {
  46739. source: "./media/characters/jack-thatcher/back.svg",
  46740. extra: 1489/1384,
  46741. bottom: 18/1507
  46742. }
  46743. },
  46744. },
  46745. [
  46746. {
  46747. name: "Normal",
  46748. height: math.unit(6, "feet"),
  46749. default: true
  46750. },
  46751. {
  46752. name: "Macro",
  46753. height: math.unit(75, "feet")
  46754. },
  46755. {
  46756. name: "Macro-er",
  46757. height: math.unit(250, "feet")
  46758. },
  46759. ]
  46760. ))
  46761. characterMakers.push(() => makeCharacter(
  46762. { name: "Max Hyper", species: ["husky"], tags: ["anthro"] },
  46763. {
  46764. front: {
  46765. height: math.unit(7, "feet"),
  46766. weight: math.unit(110, "kg"),
  46767. name: "Front",
  46768. image: {
  46769. source: "./media/characters/max-hyper/front.svg",
  46770. extra: 1969/1881,
  46771. bottom: 49/2018
  46772. }
  46773. },
  46774. },
  46775. [
  46776. {
  46777. name: "Normal",
  46778. height: math.unit(7, "feet"),
  46779. default: true
  46780. },
  46781. ]
  46782. ))
  46783. characterMakers.push(() => makeCharacter(
  46784. { name: "Spook", species: ["alien"], tags: ["anthro"] },
  46785. {
  46786. front: {
  46787. height: math.unit(5 + 5/12, "feet"),
  46788. weight: math.unit(160, "lb"),
  46789. name: "Front",
  46790. image: {
  46791. source: "./media/characters/spook/front.svg",
  46792. extra: 794/791,
  46793. bottom: 54/848
  46794. }
  46795. },
  46796. back: {
  46797. height: math.unit(5 + 5/12, "feet"),
  46798. weight: math.unit(160, "lb"),
  46799. name: "Back",
  46800. image: {
  46801. source: "./media/characters/spook/back.svg",
  46802. extra: 812/798,
  46803. bottom: 32/844
  46804. }
  46805. },
  46806. },
  46807. [
  46808. {
  46809. name: "Normal",
  46810. height: math.unit(5 + 5/12, "feet"),
  46811. default: true
  46812. },
  46813. ]
  46814. ))
  46815. characterMakers.push(() => makeCharacter(
  46816. { name: "Xeaduulix", species: ["dragon"], tags: ["anthro"] },
  46817. {
  46818. front: {
  46819. height: math.unit(18, "feet"),
  46820. name: "Front",
  46821. image: {
  46822. source: "./media/characters/xeaduulix/front.svg",
  46823. extra: 1380/1166,
  46824. bottom: 110/1490
  46825. }
  46826. },
  46827. back: {
  46828. height: math.unit(18, "feet"),
  46829. name: "Back",
  46830. image: {
  46831. source: "./media/characters/xeaduulix/back.svg",
  46832. extra: 1592/1170,
  46833. bottom: 128/1720
  46834. }
  46835. },
  46836. frontNsfw: {
  46837. height: math.unit(18, "feet"),
  46838. name: "Front (NSFW)",
  46839. image: {
  46840. source: "./media/characters/xeaduulix/front-nsfw.svg",
  46841. extra: 1380/1166,
  46842. bottom: 110/1490
  46843. }
  46844. },
  46845. backNsfw: {
  46846. height: math.unit(18, "feet"),
  46847. name: "Back (NSFW)",
  46848. image: {
  46849. source: "./media/characters/xeaduulix/back-nsfw.svg",
  46850. extra: 1592/1170,
  46851. bottom: 128/1720
  46852. }
  46853. },
  46854. },
  46855. [
  46856. {
  46857. name: "Normal",
  46858. height: math.unit(18, "feet"),
  46859. default: true
  46860. },
  46861. ]
  46862. ))
  46863. characterMakers.push(() => makeCharacter(
  46864. { name: "Fledge", species: ["alicorn"], tags: ["anthro"] },
  46865. {
  46866. spreadWings: {
  46867. height: math.unit(20, "feet"),
  46868. name: "Spread Wings",
  46869. image: {
  46870. source: "./media/characters/fledge/spread-wings.svg",
  46871. extra: 693/635,
  46872. bottom: 26/719
  46873. }
  46874. },
  46875. front: {
  46876. height: math.unit(20, "feet"),
  46877. name: "Front",
  46878. image: {
  46879. source: "./media/characters/fledge/front.svg",
  46880. extra: 684/637,
  46881. bottom: 18/702
  46882. }
  46883. },
  46884. frontAlt: {
  46885. height: math.unit(20, "feet"),
  46886. name: "Front (Alt)",
  46887. image: {
  46888. source: "./media/characters/fledge/front-alt.svg",
  46889. extra: 708/664,
  46890. bottom: 13/721
  46891. }
  46892. },
  46893. back: {
  46894. height: math.unit(20, "feet"),
  46895. name: "Back",
  46896. image: {
  46897. source: "./media/characters/fledge/back.svg",
  46898. extra: 718/634,
  46899. bottom: 22/740
  46900. }
  46901. },
  46902. head: {
  46903. height: math.unit(5.55, "feet"),
  46904. name: "Head",
  46905. image: {
  46906. source: "./media/characters/fledge/head.svg"
  46907. }
  46908. },
  46909. headAlt: {
  46910. height: math.unit(5.1, "feet"),
  46911. name: "Head (Alt)",
  46912. image: {
  46913. source: "./media/characters/fledge/head-alt.svg"
  46914. }
  46915. },
  46916. },
  46917. [
  46918. {
  46919. name: "Small",
  46920. height: math.unit(6 + 2/12, "feet")
  46921. },
  46922. {
  46923. name: "Big",
  46924. height: math.unit(20, "feet"),
  46925. default: true
  46926. },
  46927. {
  46928. name: "Giant",
  46929. height: math.unit(100, "feet")
  46930. },
  46931. {
  46932. name: "Macro",
  46933. height: math.unit(200, "feet")
  46934. },
  46935. ]
  46936. ))
  46937. characterMakers.push(() => makeCharacter(
  46938. { name: "Atlas Morenai", species: ["red-panda", "atlas-moth"], tags: ["anthro"] },
  46939. {
  46940. front: {
  46941. height: math.unit(1, "meter"),
  46942. name: "Front",
  46943. image: {
  46944. source: "./media/characters/atlas-morenai/front.svg",
  46945. extra: 1275/1043,
  46946. bottom: 19/1294
  46947. }
  46948. },
  46949. back: {
  46950. height: math.unit(1, "meter"),
  46951. name: "Back",
  46952. image: {
  46953. source: "./media/characters/atlas-morenai/back.svg",
  46954. extra: 1141/1001,
  46955. bottom: 25/1166
  46956. }
  46957. },
  46958. },
  46959. [
  46960. {
  46961. name: "Normal",
  46962. height: math.unit(1, "meter"),
  46963. default: true
  46964. },
  46965. {
  46966. name: "Magic-Infused",
  46967. height: math.unit(5, "meters")
  46968. },
  46969. ]
  46970. ))
  46971. characterMakers.push(() => makeCharacter(
  46972. { name: "Cintia", species: ["fox"], tags: ["anthro"] },
  46973. {
  46974. front: {
  46975. height: math.unit(5, "meters"),
  46976. name: "Front",
  46977. image: {
  46978. source: "./media/characters/cintia/front.svg",
  46979. extra: 1312/1228,
  46980. bottom: 38/1350
  46981. }
  46982. },
  46983. back: {
  46984. height: math.unit(5, "meters"),
  46985. name: "Back",
  46986. image: {
  46987. source: "./media/characters/cintia/back.svg",
  46988. extra: 1260/1166,
  46989. bottom: 98/1358
  46990. }
  46991. },
  46992. frontDick: {
  46993. height: math.unit(5, "meters"),
  46994. name: "Front (Dick)",
  46995. image: {
  46996. source: "./media/characters/cintia/front-dick.svg",
  46997. extra: 1312/1228,
  46998. bottom: 38/1350
  46999. }
  47000. },
  47001. backDick: {
  47002. height: math.unit(5, "meters"),
  47003. name: "Back (Dick)",
  47004. image: {
  47005. source: "./media/characters/cintia/back-dick.svg",
  47006. extra: 1260/1166,
  47007. bottom: 98/1358
  47008. }
  47009. },
  47010. bust: {
  47011. height: math.unit(1.97, "meters"),
  47012. name: "Bust",
  47013. image: {
  47014. source: "./media/characters/cintia/bust.svg",
  47015. extra: 617/565,
  47016. bottom: 0/617
  47017. }
  47018. },
  47019. },
  47020. [
  47021. {
  47022. name: "Normal",
  47023. height: math.unit(5, "meters"),
  47024. default: true
  47025. },
  47026. ]
  47027. ))
  47028. characterMakers.push(() => makeCharacter(
  47029. { name: "Denora", species: ["husky"], tags: ["anthro"] },
  47030. {
  47031. side: {
  47032. height: math.unit(100, "feet"),
  47033. name: "Side",
  47034. image: {
  47035. source: "./media/characters/denora/side.svg",
  47036. extra: 875/803,
  47037. bottom: 9/884
  47038. }
  47039. },
  47040. },
  47041. [
  47042. {
  47043. name: "Standard",
  47044. height: math.unit(100, "feet"),
  47045. default: true
  47046. },
  47047. {
  47048. name: "Grand",
  47049. height: math.unit(1000, "feet")
  47050. },
  47051. {
  47052. name: "Conquering",
  47053. height: math.unit(10000, "feet")
  47054. },
  47055. ]
  47056. ))
  47057. characterMakers.push(() => makeCharacter(
  47058. { name: "Kiva", species: ["dire-wolf"], tags: ["anthro"] },
  47059. {
  47060. dressed: {
  47061. height: math.unit(8 + 5/12, "feet"),
  47062. weight: math.unit(700, "lb"),
  47063. name: "Dressed",
  47064. image: {
  47065. source: "./media/characters/kiva/dressed.svg",
  47066. extra: 1102/1055,
  47067. bottom: 60/1162
  47068. }
  47069. },
  47070. nude: {
  47071. height: math.unit(8 + 5/12, "feet"),
  47072. weight: math.unit(700, "lb"),
  47073. name: "Nude",
  47074. image: {
  47075. source: "./media/characters/kiva/nude.svg",
  47076. extra: 1102/1055,
  47077. bottom: 60/1162
  47078. }
  47079. },
  47080. },
  47081. [
  47082. {
  47083. name: "Base Height",
  47084. height: math.unit(8 + 5/12, "feet"),
  47085. default: true
  47086. },
  47087. {
  47088. name: "Macro",
  47089. height: math.unit(100, "feet")
  47090. },
  47091. {
  47092. name: "Max",
  47093. height: math.unit(3280, "feet")
  47094. },
  47095. ]
  47096. ))
  47097. characterMakers.push(() => makeCharacter(
  47098. { name: "ZTragon", species: ["dragon"], tags: ["anthro"] },
  47099. {
  47100. front: {
  47101. height: math.unit(6 + 8/12, "feet"),
  47102. weight: math.unit(250, "lb"),
  47103. name: "Front",
  47104. image: {
  47105. source: "./media/characters/ztragon/front.svg",
  47106. extra: 1825/1684,
  47107. bottom: 98/1923
  47108. }
  47109. },
  47110. },
  47111. [
  47112. {
  47113. name: "Normal",
  47114. height: math.unit(6 + 8/12, "feet"),
  47115. default: true
  47116. },
  47117. {
  47118. name: "Macro",
  47119. height: math.unit(80, "feet")
  47120. },
  47121. ]
  47122. ))
  47123. characterMakers.push(() => makeCharacter(
  47124. { name: "Yesenia", species: ["snake"], tags: ["naga"] },
  47125. {
  47126. front: {
  47127. height: math.unit(10.4, "feet"),
  47128. weight: math.unit(2, "tons"),
  47129. name: "Front",
  47130. image: {
  47131. source: "./media/characters/yesenia/front.svg",
  47132. extra: 1479/1474,
  47133. bottom: 233/1712
  47134. }
  47135. },
  47136. },
  47137. [
  47138. {
  47139. name: "Normal",
  47140. height: math.unit(10.4, "feet"),
  47141. default: true
  47142. },
  47143. ]
  47144. ))
  47145. characterMakers.push(() => makeCharacter(
  47146. { name: "Leanne Lycheborne", species: ["wolf", "dog", "werewolf"], tags: ["anthro"] },
  47147. {
  47148. normal: {
  47149. height: math.unit(6 + 1/12, "feet"),
  47150. weight: math.unit(180, "lb"),
  47151. name: "Normal",
  47152. image: {
  47153. source: "./media/characters/leanne-lycheborne/normal.svg",
  47154. extra: 1748/1660,
  47155. bottom: 98/1846
  47156. }
  47157. },
  47158. were: {
  47159. height: math.unit(12, "feet"),
  47160. weight: math.unit(1600, "lb"),
  47161. name: "Were",
  47162. image: {
  47163. source: "./media/characters/leanne-lycheborne/were.svg",
  47164. extra: 1485/1432,
  47165. bottom: 66/1551
  47166. }
  47167. },
  47168. },
  47169. [
  47170. {
  47171. name: "Normal",
  47172. height: math.unit(6 + 1/12, "feet"),
  47173. default: true
  47174. },
  47175. ]
  47176. ))
  47177. characterMakers.push(() => makeCharacter(
  47178. { name: "Kira Tyler", species: ["dragon", "cat"], tags: ["feral"] },
  47179. {
  47180. side: {
  47181. height: math.unit(13, "feet"),
  47182. name: "Side",
  47183. image: {
  47184. source: "./media/characters/kira-tyler/side.svg",
  47185. extra: 693/393,
  47186. bottom: 58/751
  47187. }
  47188. },
  47189. },
  47190. [
  47191. {
  47192. name: "Normal",
  47193. height: math.unit(13, "feet"),
  47194. default: true
  47195. },
  47196. ]
  47197. ))
  47198. characterMakers.push(() => makeCharacter(
  47199. { name: "Blaze", species: ["octopus", "avian"], tags: ["anthro"] },
  47200. {
  47201. front: {
  47202. height: math.unit(10.3, "feet"),
  47203. weight: math.unit(150, "lb"),
  47204. name: "Front",
  47205. image: {
  47206. source: "./media/characters/blaze/front.svg",
  47207. extra: 1378/1286,
  47208. bottom: 172/1550
  47209. }
  47210. },
  47211. },
  47212. [
  47213. {
  47214. name: "Normal",
  47215. height: math.unit(10.3, "feet"),
  47216. default: true
  47217. },
  47218. ]
  47219. ))
  47220. characterMakers.push(() => makeCharacter(
  47221. { name: "Anu", species: ["fennec-fox", "jackal"], tags: ["taur"] },
  47222. {
  47223. side: {
  47224. height: math.unit(2, "meters"),
  47225. weight: math.unit(400, "kg"),
  47226. name: "Side",
  47227. image: {
  47228. source: "./media/characters/anu/side.svg",
  47229. extra: 506/394,
  47230. bottom: 18/524
  47231. }
  47232. },
  47233. },
  47234. [
  47235. {
  47236. name: "Humanoid",
  47237. height: math.unit(2, "meters")
  47238. },
  47239. {
  47240. name: "Normal",
  47241. height: math.unit(5, "meters"),
  47242. default: true
  47243. },
  47244. ]
  47245. ))
  47246. characterMakers.push(() => makeCharacter(
  47247. { name: "Synx the Lynx", species: ["lynx"], tags: ["anthro"] },
  47248. {
  47249. front: {
  47250. height: math.unit(5 + 5/12, "feet"),
  47251. weight: math.unit(170, "lb"),
  47252. name: "Front",
  47253. image: {
  47254. source: "./media/characters/synx-the-lynx/front.svg",
  47255. extra: 1893/1745,
  47256. bottom: 17/1910
  47257. }
  47258. },
  47259. side: {
  47260. height: math.unit(5 + 5/12, "feet"),
  47261. weight: math.unit(170, "lb"),
  47262. name: "Side",
  47263. image: {
  47264. source: "./media/characters/synx-the-lynx/side.svg",
  47265. extra: 1884/1740,
  47266. bottom: 39/1923
  47267. }
  47268. },
  47269. back: {
  47270. height: math.unit(5 + 5/12, "feet"),
  47271. weight: math.unit(170, "lb"),
  47272. name: "Back",
  47273. image: {
  47274. source: "./media/characters/synx-the-lynx/back.svg",
  47275. extra: 1903/1755,
  47276. bottom: 14/1917
  47277. }
  47278. },
  47279. },
  47280. [
  47281. {
  47282. name: "Normal",
  47283. height: math.unit(5 + 5/12, "feet"),
  47284. default: true
  47285. },
  47286. ]
  47287. ))
  47288. characterMakers.push(() => makeCharacter(
  47289. { name: "Nadezda Fex", species: ["fox"], tags: ["anthro"] },
  47290. {
  47291. back: {
  47292. height: math.unit(15, "feet"),
  47293. name: "Back",
  47294. image: {
  47295. source: "./media/characters/nadezda-fex/back.svg",
  47296. extra: 1695/1481,
  47297. bottom: 25/1720
  47298. }
  47299. },
  47300. },
  47301. [
  47302. {
  47303. name: "Normal",
  47304. height: math.unit(15, "feet"),
  47305. default: true
  47306. },
  47307. {
  47308. name: "Macro",
  47309. height: math.unit(2.5, "miles")
  47310. },
  47311. {
  47312. name: "Goddess",
  47313. height: math.unit(2, "multiverses")
  47314. },
  47315. ]
  47316. ))
  47317. characterMakers.push(() => makeCharacter(
  47318. { name: "Lev", species: ["snake"], tags: ["anthro"] },
  47319. {
  47320. front: {
  47321. height: math.unit(216, "cm"),
  47322. name: "Front",
  47323. image: {
  47324. source: "./media/characters/lev/front.svg",
  47325. extra: 1728/1670,
  47326. bottom: 82/1810
  47327. }
  47328. },
  47329. back: {
  47330. height: math.unit(216, "cm"),
  47331. name: "Back",
  47332. image: {
  47333. source: "./media/characters/lev/back.svg",
  47334. extra: 1738/1675,
  47335. bottom: 24/1762
  47336. }
  47337. },
  47338. dressed: {
  47339. height: math.unit(216, "cm"),
  47340. name: "Dressed",
  47341. image: {
  47342. source: "./media/characters/lev/dressed.svg",
  47343. extra: 1397/1351,
  47344. bottom: 73/1470
  47345. }
  47346. },
  47347. head: {
  47348. height: math.unit(0.51, "meter"),
  47349. name: "Head",
  47350. image: {
  47351. source: "./media/characters/lev/head.svg"
  47352. }
  47353. },
  47354. },
  47355. [
  47356. {
  47357. name: "Normal",
  47358. height: math.unit(216, "cm"),
  47359. default: true
  47360. },
  47361. {
  47362. name: "Relatively Macro",
  47363. height: math.unit(80, "meters")
  47364. },
  47365. {
  47366. name: "Megamacro",
  47367. height: math.unit(21600, "meters")
  47368. },
  47369. {
  47370. name: "Megamacro+",
  47371. height: math.unit(64800, "meters")
  47372. },
  47373. ]
  47374. ))
  47375. characterMakers.push(() => makeCharacter(
  47376. { name: "Moka", species: ["dragon"], tags: ["anthro"] },
  47377. {
  47378. front: {
  47379. height: math.unit(2, "meters"),
  47380. weight: math.unit(80, "kg"),
  47381. name: "Front",
  47382. image: {
  47383. source: "./media/characters/moka/front.svg",
  47384. extra: 1337/1255,
  47385. bottom: 58/1395
  47386. }
  47387. },
  47388. },
  47389. [
  47390. {
  47391. name: "Micro",
  47392. height: math.unit(15, "cm")
  47393. },
  47394. {
  47395. name: "Normal",
  47396. height: math.unit(2, "meters"),
  47397. default: true
  47398. },
  47399. {
  47400. name: "Macro",
  47401. height: math.unit(20, "meters"),
  47402. },
  47403. ]
  47404. ))
  47405. characterMakers.push(() => makeCharacter(
  47406. { name: "Kuzco", species: ["snake"], tags: ["anthro"] },
  47407. {
  47408. front: {
  47409. height: math.unit(9, "feet"),
  47410. weight: math.unit(240, "lb"),
  47411. name: "Front",
  47412. image: {
  47413. source: "./media/characters/kuzco/front.svg",
  47414. extra: 1593/1487,
  47415. bottom: 32/1625
  47416. }
  47417. },
  47418. side: {
  47419. height: math.unit(9, "feet"),
  47420. weight: math.unit(240, "lb"),
  47421. name: "Side",
  47422. image: {
  47423. source: "./media/characters/kuzco/side.svg",
  47424. extra: 1575/1485,
  47425. bottom: 30/1605
  47426. }
  47427. },
  47428. back: {
  47429. height: math.unit(9, "feet"),
  47430. weight: math.unit(240, "lb"),
  47431. name: "Back",
  47432. image: {
  47433. source: "./media/characters/kuzco/back.svg",
  47434. extra: 1603/1514,
  47435. bottom: 14/1617
  47436. }
  47437. },
  47438. },
  47439. [
  47440. {
  47441. name: "Normal",
  47442. height: math.unit(9, "feet"),
  47443. default: true
  47444. },
  47445. ]
  47446. ))
  47447. characterMakers.push(() => makeCharacter(
  47448. { name: "Ceruleus", species: ["fox", "dragon"], tags: ["feral"] },
  47449. {
  47450. side: {
  47451. height: math.unit(2, "meters"),
  47452. weight: math.unit(300, "kg"),
  47453. name: "Side",
  47454. image: {
  47455. source: "./media/characters/ceruleus/side.svg",
  47456. extra: 1068/974,
  47457. bottom: 126/1194
  47458. }
  47459. },
  47460. maw: {
  47461. height: math.unit(0.8125, "meter"),
  47462. name: "Maw",
  47463. image: {
  47464. source: "./media/characters/ceruleus/maw.svg"
  47465. }
  47466. },
  47467. },
  47468. [
  47469. {
  47470. name: "Normal",
  47471. height: math.unit(16, "meters"),
  47472. default: true
  47473. },
  47474. ]
  47475. ))
  47476. characterMakers.push(() => makeCharacter(
  47477. { name: "Acouya", species: ["kangaroo"], tags: ["anthro"] },
  47478. {
  47479. front: {
  47480. height: math.unit(9, "feet"),
  47481. weight: math.unit(500, "kg"),
  47482. name: "Front",
  47483. image: {
  47484. source: "./media/characters/acouya/front.svg",
  47485. extra: 1660/1473,
  47486. bottom: 28/1688
  47487. }
  47488. },
  47489. },
  47490. [
  47491. {
  47492. name: "Normal",
  47493. height: math.unit(9, "feet"),
  47494. default: true
  47495. },
  47496. ]
  47497. ))
  47498. characterMakers.push(() => makeCharacter(
  47499. { name: "Vant", species: ["husky"], tags: ["anthro"] },
  47500. {
  47501. front: {
  47502. height: math.unit(5 + 6/12, "feet"),
  47503. weight: math.unit(195, "lb"),
  47504. name: "Front",
  47505. image: {
  47506. source: "./media/characters/vant/front.svg",
  47507. extra: 1396/1320,
  47508. bottom: 20/1416
  47509. }
  47510. },
  47511. back: {
  47512. height: math.unit(5 + 6/12, "feet"),
  47513. weight: math.unit(195, "lb"),
  47514. name: "Back",
  47515. image: {
  47516. source: "./media/characters/vant/back.svg",
  47517. extra: 1396/1320,
  47518. bottom: 20/1416
  47519. }
  47520. },
  47521. maw: {
  47522. height: math.unit(0.75, "feet"),
  47523. name: "Maw",
  47524. image: {
  47525. source: "./media/characters/vant/maw.svg"
  47526. }
  47527. },
  47528. paw: {
  47529. height: math.unit(1.07, "feet"),
  47530. name: "Paw",
  47531. image: {
  47532. source: "./media/characters/vant/paw.svg"
  47533. }
  47534. },
  47535. },
  47536. [
  47537. {
  47538. name: "Micro",
  47539. height: math.unit(0.25, "inches")
  47540. },
  47541. {
  47542. name: "Normal",
  47543. height: math.unit(5 + 6/12, "feet"),
  47544. default: true
  47545. },
  47546. {
  47547. name: "Macro",
  47548. height: math.unit(75, "feet")
  47549. },
  47550. ]
  47551. ))
  47552. characterMakers.push(() => makeCharacter(
  47553. { name: "Ahra", species: ["fox"], tags: ["anthro"] },
  47554. {
  47555. front: {
  47556. height: math.unit(30, "meters"),
  47557. weight: math.unit(363, "tons"),
  47558. name: "Front",
  47559. image: {
  47560. source: "./media/characters/ahra/front.svg",
  47561. extra: 1914/1814,
  47562. bottom: 46/1960
  47563. }
  47564. },
  47565. },
  47566. [
  47567. {
  47568. name: "Macro",
  47569. height: math.unit(30, "meters"),
  47570. default: true
  47571. },
  47572. ]
  47573. ))
  47574. characterMakers.push(() => makeCharacter(
  47575. { name: "Coriander", species: ["owlbear"], tags: ["anthro"] },
  47576. {
  47577. undressed: {
  47578. height: math.unit(2, "m"),
  47579. weight: math.unit(250, "kg"),
  47580. name: "Undressed",
  47581. image: {
  47582. source: "./media/characters/coriander/undressed.svg",
  47583. extra: 1757/1606,
  47584. bottom: 107/1864
  47585. }
  47586. },
  47587. dressed: {
  47588. height: math.unit(2, "m"),
  47589. weight: math.unit(250, "kg"),
  47590. name: "Dressed",
  47591. image: {
  47592. source: "./media/characters/coriander/dressed.svg",
  47593. extra: 1757/1606,
  47594. bottom: 107/1864
  47595. }
  47596. },
  47597. },
  47598. [
  47599. {
  47600. name: "Normal",
  47601. height: math.unit(4, "meters"),
  47602. default: true
  47603. },
  47604. {
  47605. name: "XL",
  47606. height: math.unit(6, "meters")
  47607. },
  47608. {
  47609. name: "XXL",
  47610. height: math.unit(8, "meters")
  47611. },
  47612. ]
  47613. ))
  47614. characterMakers.push(() => makeCharacter(
  47615. { name: "Syrinx", species: ["phoenix"], tags: ["anthro"] },
  47616. {
  47617. front: {
  47618. height: math.unit(6, "feet"),
  47619. name: "Front",
  47620. image: {
  47621. source: "./media/characters/syrinx/front.svg",
  47622. extra: 1557/1259,
  47623. bottom: 171/1728
  47624. }
  47625. },
  47626. },
  47627. [
  47628. {
  47629. name: "Normal",
  47630. height: math.unit(6 + 3/12, "feet"),
  47631. default: true
  47632. },
  47633. ]
  47634. ))
  47635. characterMakers.push(() => makeCharacter(
  47636. { name: "Bor", species: ["silvertongue"], tags: ["anthro"] },
  47637. {
  47638. front: {
  47639. height: math.unit(11 + 6/12, "feet"),
  47640. weight: math.unit(1.5, "tons"),
  47641. name: "Front",
  47642. image: {
  47643. source: "./media/characters/bor/front.svg",
  47644. extra: 1189/1109,
  47645. bottom: 170/1359
  47646. }
  47647. },
  47648. },
  47649. [
  47650. {
  47651. name: "Normal",
  47652. height: math.unit(11 + 6/12, "feet"),
  47653. default: true
  47654. },
  47655. {
  47656. name: "Macro",
  47657. height: math.unit(32 + 9/12, "feet")
  47658. },
  47659. ]
  47660. ))
  47661. characterMakers.push(() => makeCharacter(
  47662. { name: "Abacus", species: ["construct", "corvid"], tags: ["anthro", "feral"] },
  47663. {
  47664. anthro: {
  47665. height: math.unit(9, "feet"),
  47666. weight: math.unit(2076, "lb"),
  47667. name: "Anthro",
  47668. image: {
  47669. source: "./media/characters/abacus/anthro.svg",
  47670. extra: 1540/1494,
  47671. bottom: 233/1773
  47672. }
  47673. },
  47674. pigeon: {
  47675. height: math.unit(1, "feet"),
  47676. name: "Pigeon",
  47677. image: {
  47678. source: "./media/characters/abacus/pigeon.svg",
  47679. extra: 528/525,
  47680. bottom: 46/574
  47681. }
  47682. },
  47683. },
  47684. [
  47685. {
  47686. name: "Normal",
  47687. height: math.unit(9, "feet"),
  47688. default: true
  47689. },
  47690. ]
  47691. ))
  47692. characterMakers.push(() => makeCharacter(
  47693. { name: "Delkhan", species: ["t-rex"], tags: ["feral"] },
  47694. {
  47695. side: {
  47696. height: math.unit(6, "feet"),
  47697. name: "Side",
  47698. image: {
  47699. source: "./media/characters/delkhan/side.svg",
  47700. extra: 1884/1786,
  47701. bottom: 308/2192
  47702. }
  47703. },
  47704. head: {
  47705. height: math.unit(3.38, "feet"),
  47706. name: "Head",
  47707. image: {
  47708. source: "./media/characters/delkhan/head.svg"
  47709. }
  47710. },
  47711. },
  47712. [
  47713. {
  47714. name: "Normal",
  47715. height: math.unit(72, "feet"),
  47716. default: true
  47717. },
  47718. {
  47719. name: "Giant",
  47720. height: math.unit(172, "feet")
  47721. },
  47722. ]
  47723. ))
  47724. characterMakers.push(() => makeCharacter(
  47725. { name: "Euchidat", species: ["opossum"], tags: ["anthro"] },
  47726. {
  47727. standing: {
  47728. height: math.unit(6, "feet"),
  47729. name: "Standing",
  47730. image: {
  47731. source: "./media/characters/euchidat/standing.svg",
  47732. extra: 1612/1553,
  47733. bottom: 116/1728
  47734. }
  47735. },
  47736. leaning: {
  47737. height: math.unit(6, "feet"),
  47738. name: "Leaning",
  47739. image: {
  47740. source: "./media/characters/euchidat/leaning.svg",
  47741. extra: 1719/1674,
  47742. bottom: 27/1746
  47743. }
  47744. },
  47745. },
  47746. [
  47747. {
  47748. name: "Normal",
  47749. height: math.unit(175, "feet"),
  47750. default: true
  47751. },
  47752. {
  47753. name: "Megamacro",
  47754. height: math.unit(190, "miles")
  47755. },
  47756. {
  47757. name: "Gigamacro",
  47758. height: math.unit(190000, "miles")
  47759. },
  47760. ]
  47761. ))
  47762. characterMakers.push(() => makeCharacter(
  47763. { name: "Rebecca Stack", species: ["human"], tags: ["anthro"] },
  47764. {
  47765. front: {
  47766. height: math.unit(6, "feet"),
  47767. weight: math.unit(150, "lb"),
  47768. name: "Front",
  47769. image: {
  47770. source: "./media/characters/rebecca-stack/front.svg",
  47771. extra: 1256/1201,
  47772. bottom: 18/1274
  47773. }
  47774. },
  47775. },
  47776. [
  47777. {
  47778. name: "Normal",
  47779. height: math.unit(5 + 8/12, "feet"),
  47780. default: true
  47781. },
  47782. {
  47783. name: "Demolitionist",
  47784. height: math.unit(200, "feet")
  47785. },
  47786. {
  47787. name: "Out of Control",
  47788. height: math.unit(2, "miles")
  47789. },
  47790. {
  47791. name: "Giga",
  47792. height: math.unit(7200, "miles")
  47793. },
  47794. ]
  47795. ))
  47796. characterMakers.push(() => makeCharacter(
  47797. { name: "Jenny Cartwright", species: ["human"], tags: ["anthro"] },
  47798. {
  47799. front: {
  47800. height: math.unit(6, "feet"),
  47801. weight: math.unit(150, "lb"),
  47802. name: "Front",
  47803. image: {
  47804. source: "./media/characters/jenny-cartwright/front.svg",
  47805. extra: 1384/1376,
  47806. bottom: 58/1442
  47807. }
  47808. },
  47809. },
  47810. [
  47811. {
  47812. name: "Normal",
  47813. height: math.unit(6 + 7/12, "feet"),
  47814. default: true
  47815. },
  47816. {
  47817. name: "Librarian",
  47818. height: math.unit(55, "feet")
  47819. },
  47820. {
  47821. name: "Sightseer",
  47822. height: math.unit(50, "miles")
  47823. },
  47824. {
  47825. name: "Giga",
  47826. height: math.unit(30000, "miles")
  47827. },
  47828. ]
  47829. ))
  47830. characterMakers.push(() => makeCharacter(
  47831. { name: "Marvy", species: ["sergal"], tags: ["anthro"] },
  47832. {
  47833. nude: {
  47834. height: math.unit(8, "feet"),
  47835. weight: math.unit(225, "lb"),
  47836. name: "Nude",
  47837. image: {
  47838. source: "./media/characters/marvy/nude.svg",
  47839. extra: 1900/1683,
  47840. bottom: 89/1989
  47841. }
  47842. },
  47843. dressed: {
  47844. height: math.unit(8, "feet"),
  47845. weight: math.unit(225, "lb"),
  47846. name: "Dressed",
  47847. image: {
  47848. source: "./media/characters/marvy/dressed.svg",
  47849. extra: 1900/1683,
  47850. bottom: 89/1989
  47851. }
  47852. },
  47853. head: {
  47854. height: math.unit(2.85, "feet"),
  47855. name: "Head",
  47856. image: {
  47857. source: "./media/characters/marvy/head.svg"
  47858. }
  47859. },
  47860. },
  47861. [
  47862. {
  47863. name: "Normal",
  47864. height: math.unit(8, "feet"),
  47865. default: true
  47866. },
  47867. ]
  47868. ))
  47869. characterMakers.push(() => makeCharacter(
  47870. { name: "Leah", species: ["maned-wolf"], tags: ["anthro"] },
  47871. {
  47872. front: {
  47873. height: math.unit(8, "feet"),
  47874. weight: math.unit(250, "lb"),
  47875. name: "Front",
  47876. image: {
  47877. source: "./media/characters/leah/front.svg",
  47878. extra: 1257/1149,
  47879. bottom: 109/1366
  47880. }
  47881. },
  47882. },
  47883. [
  47884. {
  47885. name: "Normal",
  47886. height: math.unit(8, "feet"),
  47887. default: true
  47888. },
  47889. {
  47890. name: "Minimacro",
  47891. height: math.unit(40, "feet")
  47892. },
  47893. {
  47894. name: "Macro",
  47895. height: math.unit(124, "feet")
  47896. },
  47897. {
  47898. name: "Megamacro",
  47899. height: math.unit(850, "feet")
  47900. },
  47901. ]
  47902. ))
  47903. characterMakers.push(() => makeCharacter(
  47904. { name: "Alvir", species: ["ahuizotl"], tags: ["feral"] },
  47905. {
  47906. side: {
  47907. height: math.unit(13 + 6/12, "feet"),
  47908. weight: math.unit(3200, "lb"),
  47909. name: "Side",
  47910. image: {
  47911. source: "./media/characters/alvir/side.svg",
  47912. extra: 896/589,
  47913. bottom: 26/922
  47914. }
  47915. },
  47916. },
  47917. [
  47918. {
  47919. name: "Normal",
  47920. height: math.unit(13 + 6/12, "feet"),
  47921. default: true
  47922. },
  47923. ]
  47924. ))
  47925. characterMakers.push(() => makeCharacter(
  47926. { name: "Zaina Khalil", species: ["human"], tags: ["anthro"] },
  47927. {
  47928. front: {
  47929. height: math.unit(5 + 4/12, "feet"),
  47930. weight: math.unit(236, "lb"),
  47931. name: "Front",
  47932. image: {
  47933. source: "./media/characters/zaina-khalil/front.svg",
  47934. extra: 1533/1485,
  47935. bottom: 94/1627
  47936. }
  47937. },
  47938. side: {
  47939. height: math.unit(5 + 4/12, "feet"),
  47940. weight: math.unit(236, "lb"),
  47941. name: "Side",
  47942. image: {
  47943. source: "./media/characters/zaina-khalil/side.svg",
  47944. extra: 1537/1498,
  47945. bottom: 66/1603
  47946. }
  47947. },
  47948. back: {
  47949. height: math.unit(5 + 4/12, "feet"),
  47950. weight: math.unit(236, "lb"),
  47951. name: "Back",
  47952. image: {
  47953. source: "./media/characters/zaina-khalil/back.svg",
  47954. extra: 1546/1494,
  47955. bottom: 89/1635
  47956. }
  47957. },
  47958. },
  47959. [
  47960. {
  47961. name: "Normal",
  47962. height: math.unit(5 + 4/12, "feet"),
  47963. default: true
  47964. },
  47965. ]
  47966. ))
  47967. characterMakers.push(() => makeCharacter(
  47968. { name: "Terry", species: ["husky"], tags: ["taur"] },
  47969. {
  47970. side: {
  47971. height: math.unit(12, "feet"),
  47972. weight: math.unit(4000, "lb"),
  47973. name: "Side",
  47974. image: {
  47975. source: "./media/characters/terry/side.svg",
  47976. extra: 1518/1439,
  47977. bottom: 149/1667
  47978. }
  47979. },
  47980. },
  47981. [
  47982. {
  47983. name: "Normal",
  47984. height: math.unit(12, "feet"),
  47985. default: true
  47986. },
  47987. ]
  47988. ))
  47989. characterMakers.push(() => makeCharacter(
  47990. { name: "Kahea", species: ["werewolf"], tags: ["anthro"] },
  47991. {
  47992. front: {
  47993. height: math.unit(12, "feet"),
  47994. weight: math.unit(1500, "lb"),
  47995. name: "Front",
  47996. image: {
  47997. source: "./media/characters/kahea/front.svg",
  47998. extra: 1722/1617,
  47999. bottom: 179/1901
  48000. }
  48001. },
  48002. },
  48003. [
  48004. {
  48005. name: "Normal",
  48006. height: math.unit(12, "feet"),
  48007. default: true
  48008. },
  48009. ]
  48010. ))
  48011. characterMakers.push(() => makeCharacter(
  48012. { name: "Alex Xuria", species: ["demon", "rabbit"], tags: ["anthro"] },
  48013. {
  48014. demonFront: {
  48015. height: math.unit(36, "feet"),
  48016. name: "Front",
  48017. image: {
  48018. source: "./media/characters/alex-xuria/demon-front.svg",
  48019. extra: 1705/1673,
  48020. bottom: 198/1903
  48021. },
  48022. form: "demon",
  48023. default: true
  48024. },
  48025. demonBack: {
  48026. height: math.unit(36, "feet"),
  48027. name: "Back",
  48028. image: {
  48029. source: "./media/characters/alex-xuria/demon-back.svg",
  48030. extra: 1725/1693,
  48031. bottom: 70/1795
  48032. },
  48033. form: "demon"
  48034. },
  48035. demonHead: {
  48036. height: math.unit(2.14, "meters"),
  48037. name: "Head",
  48038. image: {
  48039. source: "./media/characters/alex-xuria/demon-head.svg"
  48040. },
  48041. form: "demon"
  48042. },
  48043. demonHand: {
  48044. height: math.unit(1.61, "meters"),
  48045. name: "Hand",
  48046. image: {
  48047. source: "./media/characters/alex-xuria/demon-hand.svg"
  48048. },
  48049. form: "demon"
  48050. },
  48051. demonPaw: {
  48052. height: math.unit(1.35, "meters"),
  48053. name: "Paw",
  48054. image: {
  48055. source: "./media/characters/alex-xuria/demon-paw.svg"
  48056. },
  48057. form: "demon"
  48058. },
  48059. demonFoot: {
  48060. height: math.unit(2.2, "meters"),
  48061. name: "Foot",
  48062. image: {
  48063. source: "./media/characters/alex-xuria/demon-foot.svg"
  48064. },
  48065. form: "demon"
  48066. },
  48067. demonCock: {
  48068. height: math.unit(1.74, "meters"),
  48069. name: "Cock",
  48070. image: {
  48071. source: "./media/characters/alex-xuria/demon-cock.svg"
  48072. },
  48073. form: "demon"
  48074. },
  48075. demonTailClosed: {
  48076. height: math.unit(1.47, "meters"),
  48077. name: "Tail (Closed)",
  48078. image: {
  48079. source: "./media/characters/alex-xuria/demon-tail-closed.svg"
  48080. },
  48081. form: "demon"
  48082. },
  48083. demonTailOpen: {
  48084. height: math.unit(2.85, "meters"),
  48085. name: "Tail (Open)",
  48086. image: {
  48087. source: "./media/characters/alex-xuria/demon-tail-open.svg"
  48088. },
  48089. form: "demon"
  48090. },
  48091. incubusFront: {
  48092. height: math.unit(12, "feet"),
  48093. name: "Front",
  48094. image: {
  48095. source: "./media/characters/alex-xuria/incubus-front.svg",
  48096. extra: 1754/1677,
  48097. bottom: 125/1879
  48098. },
  48099. form: "incubus",
  48100. default: true
  48101. },
  48102. incubusBack: {
  48103. height: math.unit(12, "feet"),
  48104. name: "Back",
  48105. image: {
  48106. source: "./media/characters/alex-xuria/incubus-back.svg",
  48107. extra: 1702/1647,
  48108. bottom: 30/1732
  48109. },
  48110. form: "incubus"
  48111. },
  48112. incubusHead: {
  48113. height: math.unit(3.45, "feet"),
  48114. name: "Head",
  48115. image: {
  48116. source: "./media/characters/alex-xuria/incubus-head.svg"
  48117. },
  48118. form: "incubus"
  48119. },
  48120. rabbitFront: {
  48121. height: math.unit(6, "feet"),
  48122. name: "Front",
  48123. image: {
  48124. source: "./media/characters/alex-xuria/rabbit-front.svg",
  48125. extra: 1369/1349,
  48126. bottom: 45/1414
  48127. },
  48128. form: "rabbit",
  48129. default: true
  48130. },
  48131. rabbitSide: {
  48132. height: math.unit(6, "feet"),
  48133. name: "Side",
  48134. image: {
  48135. source: "./media/characters/alex-xuria/rabbit-side.svg",
  48136. extra: 1370/1356,
  48137. bottom: 37/1407
  48138. },
  48139. form: "rabbit"
  48140. },
  48141. rabbitBack: {
  48142. height: math.unit(6, "feet"),
  48143. name: "Back",
  48144. image: {
  48145. source: "./media/characters/alex-xuria/rabbit-back.svg",
  48146. extra: 1375/1358,
  48147. bottom: 43/1418
  48148. },
  48149. form: "rabbit"
  48150. },
  48151. },
  48152. [
  48153. {
  48154. name: "Normal",
  48155. height: math.unit(6, "feet"),
  48156. default: true,
  48157. form: "rabbit"
  48158. },
  48159. {
  48160. name: "Incubus",
  48161. height: math.unit(12, "feet"),
  48162. default: true,
  48163. form: "incubus"
  48164. },
  48165. {
  48166. name: "Demon",
  48167. height: math.unit(36, "feet"),
  48168. default: true,
  48169. form: "demon"
  48170. }
  48171. ],
  48172. {
  48173. "demon": {
  48174. name: "Demon",
  48175. default: true
  48176. },
  48177. "incubus": {
  48178. name: "Incubus",
  48179. },
  48180. "rabbit": {
  48181. name: "Rabbit"
  48182. }
  48183. }
  48184. ))
  48185. characterMakers.push(() => makeCharacter(
  48186. { name: "Syrup", species: ["rabbit"], tags: ["anthro"] },
  48187. {
  48188. front: {
  48189. height: math.unit(7 + 5/12, "feet"),
  48190. weight: math.unit(510, "lb"),
  48191. name: "Front",
  48192. image: {
  48193. source: "./media/characters/syrup/front.svg",
  48194. extra: 932/916,
  48195. bottom: 26/958
  48196. }
  48197. },
  48198. },
  48199. [
  48200. {
  48201. name: "Normal",
  48202. height: math.unit(7 + 5/12, "feet"),
  48203. default: true
  48204. },
  48205. {
  48206. name: "Big",
  48207. height: math.unit(50, "feet")
  48208. },
  48209. {
  48210. name: "Macro",
  48211. height: math.unit(300, "feet")
  48212. },
  48213. {
  48214. name: "Megamacro",
  48215. height: math.unit(1, "mile")
  48216. },
  48217. ]
  48218. ))
  48219. characterMakers.push(() => makeCharacter(
  48220. { name: "Zeimne", species: ["kitsune", "demon", "deity"], tags: ["anthro"] },
  48221. {
  48222. front: {
  48223. height: math.unit(6 + 9/12, "feet"),
  48224. name: "Front",
  48225. image: {
  48226. source: "./media/characters/zeimne/front.svg",
  48227. extra: 1969/1806,
  48228. bottom: 53/2022
  48229. }
  48230. },
  48231. },
  48232. [
  48233. {
  48234. name: "Normal",
  48235. height: math.unit(6 + 9/12, "feet"),
  48236. default: true
  48237. },
  48238. {
  48239. name: "Giant",
  48240. height: math.unit(550, "feet")
  48241. },
  48242. {
  48243. name: "Mega",
  48244. height: math.unit(3, "miles")
  48245. },
  48246. {
  48247. name: "Giga",
  48248. height: math.unit(250, "miles")
  48249. },
  48250. {
  48251. name: "Tera",
  48252. height: math.unit(1, "AU")
  48253. },
  48254. ]
  48255. ))
  48256. characterMakers.push(() => makeCharacter(
  48257. { name: "Grar", species: ["jackalope"], tags: ["anthro"] },
  48258. {
  48259. front: {
  48260. height: math.unit(5 + 2/12, "feet"),
  48261. name: "Front",
  48262. image: {
  48263. source: "./media/characters/grar/front.svg",
  48264. extra: 1331/1119,
  48265. bottom: 60/1391
  48266. }
  48267. },
  48268. back: {
  48269. height: math.unit(5 + 2/12, "feet"),
  48270. name: "Back",
  48271. image: {
  48272. source: "./media/characters/grar/back.svg",
  48273. extra: 1385/1169,
  48274. bottom: 23/1408
  48275. }
  48276. },
  48277. },
  48278. [
  48279. {
  48280. name: "Normal",
  48281. height: math.unit(5 + 2/12, "feet"),
  48282. default: true
  48283. },
  48284. ]
  48285. ))
  48286. characterMakers.push(() => makeCharacter(
  48287. { name: "Endraya", species: ["ender-dragon"], tags: ["anthro"] },
  48288. {
  48289. front: {
  48290. height: math.unit(13 + 7/12, "feet"),
  48291. weight: math.unit(2200, "lb"),
  48292. name: "Front",
  48293. image: {
  48294. source: "./media/characters/endraya/front.svg",
  48295. extra: 1289/1215,
  48296. bottom: 50/1339
  48297. }
  48298. },
  48299. nude: {
  48300. height: math.unit(13 + 7/12, "feet"),
  48301. weight: math.unit(2200, "lb"),
  48302. name: "Nude",
  48303. image: {
  48304. source: "./media/characters/endraya/nude.svg",
  48305. extra: 1247/1171,
  48306. bottom: 40/1287
  48307. }
  48308. },
  48309. head: {
  48310. height: math.unit(2.6, "feet"),
  48311. name: "Head",
  48312. image: {
  48313. source: "./media/characters/endraya/head.svg"
  48314. }
  48315. },
  48316. slit: {
  48317. height: math.unit(3.4, "feet"),
  48318. name: "Slit",
  48319. image: {
  48320. source: "./media/characters/endraya/slit.svg"
  48321. }
  48322. },
  48323. },
  48324. [
  48325. {
  48326. name: "Normal",
  48327. height: math.unit(13 + 7/12, "feet"),
  48328. default: true
  48329. },
  48330. {
  48331. name: "Macro",
  48332. height: math.unit(200, "feet")
  48333. },
  48334. ]
  48335. ))
  48336. characterMakers.push(() => makeCharacter(
  48337. { name: "Rodryana", species: ["hyena"], tags: ["anthro"] },
  48338. {
  48339. front: {
  48340. height: math.unit(1.81, "meters"),
  48341. weight: math.unit(69, "kg"),
  48342. name: "Front",
  48343. image: {
  48344. source: "./media/characters/rodryana/front.svg",
  48345. extra: 2002/1921,
  48346. bottom: 53/2055
  48347. }
  48348. },
  48349. back: {
  48350. height: math.unit(1.81, "meters"),
  48351. weight: math.unit(69, "kg"),
  48352. name: "Back",
  48353. image: {
  48354. source: "./media/characters/rodryana/back.svg",
  48355. extra: 1993/1926,
  48356. bottom: 48/2041
  48357. }
  48358. },
  48359. maw: {
  48360. height: math.unit(0.19769417475, "meters"),
  48361. name: "Maw",
  48362. image: {
  48363. source: "./media/characters/rodryana/maw.svg"
  48364. }
  48365. },
  48366. slit: {
  48367. height: math.unit(0.31631067961, "meters"),
  48368. name: "Slit",
  48369. image: {
  48370. source: "./media/characters/rodryana/slit.svg"
  48371. }
  48372. },
  48373. },
  48374. [
  48375. {
  48376. name: "Normal",
  48377. height: math.unit(1.81, "meters")
  48378. },
  48379. {
  48380. name: "Mini Macro",
  48381. height: math.unit(181, "meters")
  48382. },
  48383. {
  48384. name: "Macro",
  48385. height: math.unit(452, "meters"),
  48386. default: true
  48387. },
  48388. {
  48389. name: "Mega Macro",
  48390. height: math.unit(1.375, "km")
  48391. },
  48392. {
  48393. name: "Giga Macro",
  48394. height: math.unit(13.575, "km")
  48395. },
  48396. ]
  48397. ))
  48398. characterMakers.push(() => makeCharacter(
  48399. { name: "Asaya", species: ["human", "deity"], tags: ["anthro"] },
  48400. {
  48401. front: {
  48402. height: math.unit(6, "feet"),
  48403. weight: math.unit(1000, "lb"),
  48404. name: "Front",
  48405. image: {
  48406. source: "./media/characters/asaya/front.svg",
  48407. extra: 1460/1200,
  48408. bottom: 71/1531
  48409. }
  48410. },
  48411. },
  48412. [
  48413. {
  48414. name: "Normal",
  48415. height: math.unit(8, "km"),
  48416. default: true
  48417. },
  48418. ]
  48419. ))
  48420. characterMakers.push(() => makeCharacter(
  48421. { name: "Sarzu and Israz", species: ["naga"], tags: ["naga"] },
  48422. {
  48423. front: {
  48424. height: math.unit(3.5, "meters"),
  48425. name: "Front",
  48426. image: {
  48427. source: "./media/characters/sarzu-and-israz/front.svg",
  48428. extra: 1570/1558,
  48429. bottom: 150/1720
  48430. },
  48431. },
  48432. back: {
  48433. height: math.unit(3.5, "meters"),
  48434. name: "Back",
  48435. image: {
  48436. source: "./media/characters/sarzu-and-israz/back.svg",
  48437. extra: 1523/1509,
  48438. bottom: 132/1655
  48439. },
  48440. },
  48441. frontFemale: {
  48442. height: math.unit(3.5, "meters"),
  48443. name: "Front (Female)",
  48444. image: {
  48445. source: "./media/characters/sarzu-and-israz/front-female.svg",
  48446. extra: 1570/1558,
  48447. bottom: 150/1720
  48448. },
  48449. },
  48450. frontHerm: {
  48451. height: math.unit(3.5, "meters"),
  48452. name: "Front (Herm)",
  48453. image: {
  48454. source: "./media/characters/sarzu-and-israz/front-herm.svg",
  48455. extra: 1570/1558,
  48456. bottom: 150/1720
  48457. },
  48458. },
  48459. },
  48460. [
  48461. {
  48462. name: "Normal",
  48463. height: math.unit(3.5, "meters"),
  48464. default: true,
  48465. },
  48466. {
  48467. name: "Macro",
  48468. height: math.unit(65.5, "meters"),
  48469. },
  48470. ],
  48471. ))
  48472. characterMakers.push(() => makeCharacter(
  48473. { name: "Zenimma", species: ["bruhathkayosaurus"], tags: ["anthro"] },
  48474. {
  48475. front: {
  48476. height: math.unit(6, "feet"),
  48477. weight: math.unit(250, "lb"),
  48478. name: "Front",
  48479. image: {
  48480. source: "./media/characters/zenimma/front.svg",
  48481. extra: 1346/1320,
  48482. bottom: 58/1404
  48483. }
  48484. },
  48485. back: {
  48486. height: math.unit(6, "feet"),
  48487. weight: math.unit(250, "lb"),
  48488. name: "Back",
  48489. image: {
  48490. source: "./media/characters/zenimma/back.svg",
  48491. extra: 1324/1308,
  48492. bottom: 44/1368
  48493. }
  48494. },
  48495. dick: {
  48496. height: math.unit(1.44, "feet"),
  48497. name: "Dick",
  48498. image: {
  48499. source: "./media/characters/zenimma/dick.svg"
  48500. }
  48501. },
  48502. },
  48503. [
  48504. {
  48505. name: "Canon Height",
  48506. height: math.unit(66, "miles"),
  48507. default: true
  48508. },
  48509. ]
  48510. ))
  48511. characterMakers.push(() => makeCharacter(
  48512. { name: "Shavon", species: ["black-sable-antelope"], tags: ["anthro"] },
  48513. {
  48514. nude: {
  48515. height: math.unit(6, "feet"),
  48516. weight: math.unit(150, "lb"),
  48517. name: "Nude",
  48518. image: {
  48519. source: "./media/characters/shavon/nude.svg",
  48520. extra: 1242/1096,
  48521. bottom: 98/1340
  48522. }
  48523. },
  48524. dressed: {
  48525. height: math.unit(6, "feet"),
  48526. weight: math.unit(150, "lb"),
  48527. name: "Dressed",
  48528. image: {
  48529. source: "./media/characters/shavon/dressed.svg",
  48530. extra: 1242/1096,
  48531. bottom: 98/1340
  48532. }
  48533. },
  48534. },
  48535. [
  48536. {
  48537. name: "Macro",
  48538. height: math.unit(255, "feet"),
  48539. default: true
  48540. },
  48541. ]
  48542. ))
  48543. characterMakers.push(() => makeCharacter(
  48544. { name: "Steph", species: ["shark"], tags: ["anthro"] },
  48545. {
  48546. front: {
  48547. height: math.unit(6, "feet"),
  48548. name: "Front",
  48549. image: {
  48550. source: "./media/characters/steph/front.svg",
  48551. extra: 1430/1330,
  48552. bottom: 54/1484
  48553. }
  48554. },
  48555. },
  48556. [
  48557. {
  48558. name: "Normal",
  48559. height: math.unit(6, "feet"),
  48560. default: true
  48561. },
  48562. ]
  48563. ))
  48564. characterMakers.push(() => makeCharacter(
  48565. { name: "Kil'aman", species: ["dragon", "deity"], tags: ["anthro"] },
  48566. {
  48567. front: {
  48568. height: math.unit(9, "feet"),
  48569. weight: math.unit(400, "lb"),
  48570. name: "Front",
  48571. image: {
  48572. source: "./media/characters/kil'aman/front.svg",
  48573. extra: 1210/1159,
  48574. bottom: 109/1319
  48575. }
  48576. },
  48577. head: {
  48578. height: math.unit(2.14, "feet"),
  48579. name: "Head",
  48580. image: {
  48581. source: "./media/characters/kil'aman/head.svg"
  48582. }
  48583. },
  48584. maw: {
  48585. height: math.unit(1.21, "feet"),
  48586. name: "Maw",
  48587. image: {
  48588. source: "./media/characters/kil'aman/maw.svg"
  48589. }
  48590. },
  48591. foot: {
  48592. height: math.unit(1.7, "feet"),
  48593. name: "Foot",
  48594. image: {
  48595. source: "./media/characters/kil'aman/foot.svg"
  48596. }
  48597. },
  48598. dick: {
  48599. height: math.unit(2.1, "feet"),
  48600. name: "Dick",
  48601. image: {
  48602. source: "./media/characters/kil'aman/dick.svg"
  48603. }
  48604. },
  48605. },
  48606. [
  48607. {
  48608. name: "Normal",
  48609. height: math.unit(9, "feet")
  48610. },
  48611. {
  48612. name: "Canon Height",
  48613. height: math.unit(10, "miles"),
  48614. default: true
  48615. },
  48616. {
  48617. name: "Maximum",
  48618. height: math.unit(6e9, "miles")
  48619. },
  48620. ]
  48621. ))
  48622. characterMakers.push(() => makeCharacter(
  48623. { name: "Qadan", species: ["utahraptor"], tags: ["anthro"] },
  48624. {
  48625. front: {
  48626. height: math.unit(90, "feet"),
  48627. weight: math.unit(675000, "lb"),
  48628. name: "Front",
  48629. image: {
  48630. source: "./media/characters/qadan/front.svg",
  48631. extra: 1012/1004,
  48632. bottom: 78/1090
  48633. }
  48634. },
  48635. back: {
  48636. height: math.unit(90, "feet"),
  48637. weight: math.unit(675000, "lb"),
  48638. name: "Back",
  48639. image: {
  48640. source: "./media/characters/qadan/back.svg",
  48641. extra: 1042/1031,
  48642. bottom: 55/1097
  48643. }
  48644. },
  48645. armored: {
  48646. height: math.unit(90, "feet"),
  48647. weight: math.unit(675000, "lb"),
  48648. name: "Armored",
  48649. image: {
  48650. source: "./media/characters/qadan/armored.svg",
  48651. extra: 1047/1037,
  48652. bottom: 48/1095
  48653. }
  48654. },
  48655. },
  48656. [
  48657. {
  48658. name: "Normal",
  48659. height: math.unit(90, "feet"),
  48660. default: true
  48661. },
  48662. ]
  48663. ))
  48664. characterMakers.push(() => makeCharacter(
  48665. { name: "Brooke", species: ["indian-giant-squirrel"], tags: ["anthro"] },
  48666. {
  48667. front: {
  48668. height: math.unit(6, "feet"),
  48669. weight: math.unit(225, "lb"),
  48670. name: "Front",
  48671. image: {
  48672. source: "./media/characters/brooke/front.svg",
  48673. extra: 1050/1010,
  48674. bottom: 66/1116
  48675. }
  48676. },
  48677. back: {
  48678. height: math.unit(6, "feet"),
  48679. weight: math.unit(225, "lb"),
  48680. name: "Back",
  48681. image: {
  48682. source: "./media/characters/brooke/back.svg",
  48683. extra: 1053/1013,
  48684. bottom: 41/1094
  48685. }
  48686. },
  48687. dressed: {
  48688. height: math.unit(6, "feet"),
  48689. weight: math.unit(225, "lb"),
  48690. name: "Dressed",
  48691. image: {
  48692. source: "./media/characters/brooke/dressed.svg",
  48693. extra: 1050/1010,
  48694. bottom: 66/1116
  48695. }
  48696. },
  48697. },
  48698. [
  48699. {
  48700. name: "Canon Height",
  48701. height: math.unit(500, "miles"),
  48702. default: true
  48703. },
  48704. ]
  48705. ))
  48706. characterMakers.push(() => makeCharacter(
  48707. { name: "Wubs", species: ["golden-retriever"], tags: ["anthro"] },
  48708. {
  48709. front: {
  48710. height: math.unit(6 + 2/12, "feet"),
  48711. weight: math.unit(210, "lb"),
  48712. name: "Front",
  48713. image: {
  48714. source: "./media/characters/wubs/front.svg",
  48715. extra: 1345/1325,
  48716. bottom: 70/1415
  48717. }
  48718. },
  48719. back: {
  48720. height: math.unit(6 + 2/12, "feet"),
  48721. weight: math.unit(210, "lb"),
  48722. name: "Back",
  48723. image: {
  48724. source: "./media/characters/wubs/back.svg",
  48725. extra: 1296/1275,
  48726. bottom: 58/1354
  48727. }
  48728. },
  48729. },
  48730. [
  48731. {
  48732. name: "Normal",
  48733. height: math.unit(6 + 2/12, "feet"),
  48734. default: true
  48735. },
  48736. {
  48737. name: "Macro",
  48738. height: math.unit(1000, "feet")
  48739. },
  48740. {
  48741. name: "Megamacro",
  48742. height: math.unit(1, "mile")
  48743. },
  48744. ]
  48745. ))
  48746. characterMakers.push(() => makeCharacter(
  48747. { name: "Blue", species: ["deer", "bat"], tags: ["anthro"] },
  48748. {
  48749. front: {
  48750. height: math.unit(4, "feet"),
  48751. weight: math.unit(120, "lb"),
  48752. name: "Front",
  48753. image: {
  48754. source: "./media/characters/blue/front.svg",
  48755. extra: 1636/1525,
  48756. bottom: 43/1679
  48757. }
  48758. },
  48759. back: {
  48760. height: math.unit(4, "feet"),
  48761. weight: math.unit(120, "lb"),
  48762. name: "Back",
  48763. image: {
  48764. source: "./media/characters/blue/back.svg",
  48765. extra: 1660/1560,
  48766. bottom: 57/1717
  48767. }
  48768. },
  48769. paws: {
  48770. height: math.unit(0.826, "feet"),
  48771. name: "Paws",
  48772. image: {
  48773. source: "./media/characters/blue/paws.svg"
  48774. }
  48775. },
  48776. },
  48777. [
  48778. {
  48779. name: "Micro",
  48780. height: math.unit(3, "inches")
  48781. },
  48782. {
  48783. name: "Normal",
  48784. height: math.unit(4, "feet"),
  48785. default: true
  48786. },
  48787. {
  48788. name: "Femenine Form",
  48789. height: math.unit(14, "feet")
  48790. },
  48791. {
  48792. name: "Werebat Form",
  48793. height: math.unit(18, "feet")
  48794. },
  48795. ]
  48796. ))
  48797. characterMakers.push(() => makeCharacter(
  48798. { name: "Kaya", species: ["dragon"], tags: ["anthro"] },
  48799. {
  48800. female: {
  48801. height: math.unit(7 + 4/12, "feet"),
  48802. weight: math.unit(243, "lb"),
  48803. name: "Female",
  48804. image: {
  48805. source: "./media/characters/kaya/female.svg",
  48806. extra: 975/898,
  48807. bottom: 34/1009
  48808. }
  48809. },
  48810. herm: {
  48811. height: math.unit(7 + 4/12, "feet"),
  48812. weight: math.unit(243, "lb"),
  48813. name: "Herm",
  48814. image: {
  48815. source: "./media/characters/kaya/herm.svg",
  48816. extra: 975/898,
  48817. bottom: 34/1009
  48818. }
  48819. },
  48820. },
  48821. [
  48822. {
  48823. name: "Normal",
  48824. height: math.unit(7 + 4/12, "feet"),
  48825. default: true
  48826. },
  48827. ]
  48828. ))
  48829. characterMakers.push(() => makeCharacter(
  48830. { name: "Kassandra", species: ["dragon", "snake"], tags: ["anthro"] },
  48831. {
  48832. female: {
  48833. height: math.unit(9 + 4/12, "feet"),
  48834. weight: math.unit(398, "lb"),
  48835. name: "Female",
  48836. image: {
  48837. source: "./media/characters/kassandra/female.svg",
  48838. extra: 908/839,
  48839. bottom: 61/969
  48840. }
  48841. },
  48842. intersex: {
  48843. height: math.unit(9 + 4/12, "feet"),
  48844. weight: math.unit(398, "lb"),
  48845. name: "Intersex",
  48846. image: {
  48847. source: "./media/characters/kassandra/intersex.svg",
  48848. extra: 908/839,
  48849. bottom: 61/969
  48850. }
  48851. },
  48852. },
  48853. [
  48854. {
  48855. name: "Normal",
  48856. height: math.unit(9 + 4/12, "feet"),
  48857. default: true
  48858. },
  48859. ]
  48860. ))
  48861. characterMakers.push(() => makeCharacter(
  48862. { name: "Amy", species: ["snow-leopard"], tags: ["anthro"] },
  48863. {
  48864. front: {
  48865. height: math.unit(3, "meters"),
  48866. name: "Front",
  48867. image: {
  48868. source: "./media/characters/amy/front.svg",
  48869. extra: 1380/1343,
  48870. bottom: 70/1450
  48871. }
  48872. },
  48873. back: {
  48874. height: math.unit(3, "meters"),
  48875. name: "Back",
  48876. image: {
  48877. source: "./media/characters/amy/back.svg",
  48878. extra: 1380/1347,
  48879. bottom: 66/1446
  48880. }
  48881. },
  48882. },
  48883. [
  48884. {
  48885. name: "Normal",
  48886. height: math.unit(3, "meters"),
  48887. default: true
  48888. },
  48889. ]
  48890. ))
  48891. characterMakers.push(() => makeCharacter(
  48892. { name: "Alphaschakal", species: ["jackal"], tags: ["feral"] },
  48893. {
  48894. side: {
  48895. height: math.unit(47, "cm"),
  48896. weight: math.unit(10.8, "kg"),
  48897. name: "Side",
  48898. image: {
  48899. source: "./media/characters/alphaschakal/side.svg",
  48900. extra: 1058/568,
  48901. bottom: 62/1120
  48902. }
  48903. },
  48904. back: {
  48905. height: math.unit(78, "cm"),
  48906. weight: math.unit(10.8, "kg"),
  48907. name: "Back",
  48908. image: {
  48909. source: "./media/characters/alphaschakal/back.svg",
  48910. extra: 1102/942,
  48911. bottom: 185/1287
  48912. }
  48913. },
  48914. head: {
  48915. height: math.unit(28, "cm"),
  48916. name: "Head",
  48917. image: {
  48918. source: "./media/characters/alphaschakal/head.svg",
  48919. extra: 696/508,
  48920. bottom: 0/696
  48921. }
  48922. },
  48923. paw: {
  48924. height: math.unit(16, "cm"),
  48925. name: "Paw",
  48926. image: {
  48927. source: "./media/characters/alphaschakal/paw.svg"
  48928. }
  48929. },
  48930. },
  48931. [
  48932. {
  48933. name: "Normal",
  48934. height: math.unit(47, "cm"),
  48935. default: true
  48936. },
  48937. {
  48938. name: "Macro",
  48939. height: math.unit(340, "cm")
  48940. },
  48941. ]
  48942. ))
  48943. characterMakers.push(() => makeCharacter(
  48944. { name: "EcoByss", species: ["goat", "deity", "demon"], tags: ["anthro"] },
  48945. {
  48946. front: {
  48947. height: math.unit(36, "earths"),
  48948. name: "Front",
  48949. image: {
  48950. source: "./media/characters/ecobyss/front.svg",
  48951. extra: 1282/1215,
  48952. bottom: 11/1293
  48953. }
  48954. },
  48955. back: {
  48956. height: math.unit(36, "earths"),
  48957. name: "Back",
  48958. image: {
  48959. source: "./media/characters/ecobyss/back.svg",
  48960. extra: 1291/1222,
  48961. bottom: 8/1299
  48962. }
  48963. },
  48964. },
  48965. [
  48966. {
  48967. name: "Normal",
  48968. height: math.unit(36, "earths"),
  48969. default: true
  48970. },
  48971. ]
  48972. ))
  48973. characterMakers.push(() => makeCharacter(
  48974. { name: "Vasuk", species: ["snake", "chimera"], tags: ["naga"] },
  48975. {
  48976. front: {
  48977. height: math.unit(12, "feet"),
  48978. name: "Front",
  48979. image: {
  48980. source: "./media/characters/vasuk/front.svg",
  48981. extra: 1326/1207,
  48982. bottom: 64/1390
  48983. }
  48984. },
  48985. },
  48986. [
  48987. {
  48988. name: "Normal",
  48989. height: math.unit(12, "feet"),
  48990. default: true
  48991. },
  48992. ]
  48993. ))
  48994. characterMakers.push(() => makeCharacter(
  48995. { name: "Linneaus", species: ["cougar", "deer"], tags: ["taur"] },
  48996. {
  48997. side: {
  48998. height: math.unit(100, "feet"),
  48999. name: "Side",
  49000. image: {
  49001. source: "./media/characters/linneaus/side.svg",
  49002. extra: 987/807,
  49003. bottom: 47/1034
  49004. }
  49005. },
  49006. },
  49007. [
  49008. {
  49009. name: "Macro",
  49010. height: math.unit(100, "feet"),
  49011. default: true
  49012. },
  49013. ]
  49014. ))
  49015. characterMakers.push(() => makeCharacter(
  49016. { name: "Nyterious Daligdig", species: ["triceratops"], tags: ["anthro"] },
  49017. {
  49018. front: {
  49019. height: math.unit(8, "feet"),
  49020. weight: math.unit(1200, "lb"),
  49021. name: "Front",
  49022. image: {
  49023. source: "./media/characters/nyterious-daligdig/front.svg",
  49024. extra: 1284/1094,
  49025. bottom: 84/1368
  49026. }
  49027. },
  49028. back: {
  49029. height: math.unit(8, "feet"),
  49030. weight: math.unit(1200, "lb"),
  49031. name: "Back",
  49032. image: {
  49033. source: "./media/characters/nyterious-daligdig/back.svg",
  49034. extra: 1301/1121,
  49035. bottom: 129/1430
  49036. }
  49037. },
  49038. mouth: {
  49039. height: math.unit(1.464, "feet"),
  49040. name: "Mouth",
  49041. image: {
  49042. source: "./media/characters/nyterious-daligdig/mouth.svg"
  49043. }
  49044. },
  49045. },
  49046. [
  49047. {
  49048. name: "Small",
  49049. height: math.unit(8, "feet"),
  49050. default: true
  49051. },
  49052. {
  49053. name: "Normal",
  49054. height: math.unit(15, "feet")
  49055. },
  49056. {
  49057. name: "Macro",
  49058. height: math.unit(90, "feet")
  49059. },
  49060. ]
  49061. ))
  49062. characterMakers.push(() => makeCharacter(
  49063. { name: "Bandel", species: ["drake"], tags: ["anthro"] },
  49064. {
  49065. front: {
  49066. height: math.unit(7 + 4/12, "feet"),
  49067. weight: math.unit(252, "lb"),
  49068. name: "Front",
  49069. image: {
  49070. source: "./media/characters/bandel/front.svg",
  49071. extra: 1946/1775,
  49072. bottom: 26/1972
  49073. }
  49074. },
  49075. back: {
  49076. height: math.unit(7 + 4/12, "feet"),
  49077. weight: math.unit(252, "lb"),
  49078. name: "Back",
  49079. image: {
  49080. source: "./media/characters/bandel/back.svg",
  49081. extra: 1940/1770,
  49082. bottom: 25/1965
  49083. }
  49084. },
  49085. maw: {
  49086. height: math.unit(2.15, "feet"),
  49087. name: "Maw",
  49088. image: {
  49089. source: "./media/characters/bandel/maw.svg"
  49090. }
  49091. },
  49092. stomach: {
  49093. height: math.unit(1.95, "feet"),
  49094. name: "Stomach",
  49095. image: {
  49096. source: "./media/characters/bandel/stomach.svg"
  49097. }
  49098. },
  49099. },
  49100. [
  49101. {
  49102. name: "Normal",
  49103. height: math.unit(7 + 4/12, "feet"),
  49104. default: true
  49105. },
  49106. ]
  49107. ))
  49108. characterMakers.push(() => makeCharacter(
  49109. { name: "Zed", species: ["avian", "mimic"], tags: ["anthro"] },
  49110. {
  49111. front: {
  49112. height: math.unit(10 + 5/12, "feet"),
  49113. weight: math.unit(773.5, "kg"),
  49114. name: "Front",
  49115. image: {
  49116. source: "./media/characters/zed/front.svg",
  49117. extra: 987/941,
  49118. bottom: 52/1039
  49119. }
  49120. },
  49121. },
  49122. [
  49123. {
  49124. name: "Short",
  49125. height: math.unit(5 + 4/12, "feet")
  49126. },
  49127. {
  49128. name: "Average",
  49129. height: math.unit(10 + 5/12, "feet"),
  49130. default: true
  49131. },
  49132. {
  49133. name: "Mini-Macro",
  49134. height: math.unit(24 + 9/12, "feet")
  49135. },
  49136. {
  49137. name: "Macro",
  49138. height: math.unit(249, "feet")
  49139. },
  49140. {
  49141. name: "Mega-Macro",
  49142. height: math.unit(12490, "feet")
  49143. },
  49144. {
  49145. name: "Giga-Macro",
  49146. height: math.unit(24.9, "miles")
  49147. },
  49148. {
  49149. name: "Tera-Macro",
  49150. height: math.unit(24900, "miles")
  49151. },
  49152. {
  49153. name: "Cosmic Scale",
  49154. height: math.unit(38.9, "lightyears")
  49155. },
  49156. {
  49157. name: "Universal Scale",
  49158. height: math.unit(138e12, "lightyears")
  49159. },
  49160. ]
  49161. ))
  49162. characterMakers.push(() => makeCharacter(
  49163. { name: "Ivan", species: ["okapi"], tags: ["anthro"] },
  49164. {
  49165. front: {
  49166. height: math.unit(1561, "inches"),
  49167. name: "Front",
  49168. image: {
  49169. source: "./media/characters/ivan/front.svg",
  49170. extra: 1126/1071,
  49171. bottom: 26/1152
  49172. }
  49173. },
  49174. back: {
  49175. height: math.unit(1561, "inches"),
  49176. name: "Back",
  49177. image: {
  49178. source: "./media/characters/ivan/back.svg",
  49179. extra: 1134/1079,
  49180. bottom: 30/1164
  49181. }
  49182. },
  49183. },
  49184. [
  49185. {
  49186. name: "Normal",
  49187. height: math.unit(1561, "inches"),
  49188. default: true
  49189. },
  49190. ]
  49191. ))
  49192. characterMakers.push(() => makeCharacter(
  49193. { name: "Robin (Arctic Hare)", species: ["arctic-hare"], tags: ["anthro"] },
  49194. {
  49195. front: {
  49196. height: math.unit(5 + 7/12, "feet"),
  49197. weight: math.unit(150, "lb"),
  49198. name: "Front",
  49199. image: {
  49200. source: "./media/characters/robin-arctic-hare/front.svg",
  49201. extra: 1148/974,
  49202. bottom: 20/1168
  49203. }
  49204. },
  49205. },
  49206. [
  49207. {
  49208. name: "Normal",
  49209. height: math.unit(5 + 7/12, "feet"),
  49210. default: true
  49211. },
  49212. ]
  49213. ))
  49214. characterMakers.push(() => makeCharacter(
  49215. { name: "Birch", species: ["dragon"], tags: ["feral"] },
  49216. {
  49217. side: {
  49218. height: math.unit(5, "feet"),
  49219. name: "Side",
  49220. image: {
  49221. source: "./media/characters/birch/side.svg",
  49222. extra: 985/796,
  49223. bottom: 111/1096
  49224. }
  49225. },
  49226. },
  49227. [
  49228. {
  49229. name: "Normal",
  49230. height: math.unit(5, "feet"),
  49231. default: true
  49232. },
  49233. ]
  49234. ))
  49235. characterMakers.push(() => makeCharacter(
  49236. { name: "Rasp", species: ["mew"], tags: ["anthro"] },
  49237. {
  49238. front: {
  49239. height: math.unit(4, "feet"),
  49240. name: "Front",
  49241. image: {
  49242. source: "./media/characters/rasp/front.svg",
  49243. extra: 561/478,
  49244. bottom: 74/635
  49245. }
  49246. },
  49247. },
  49248. [
  49249. {
  49250. name: "Normal",
  49251. height: math.unit(4, "feet"),
  49252. default: true
  49253. },
  49254. ]
  49255. ))
  49256. characterMakers.push(() => makeCharacter(
  49257. { name: "Agatha", species: ["leopard-gecko"], tags: ["anthro"] },
  49258. {
  49259. front: {
  49260. height: math.unit(4 + 6/12, "feet"),
  49261. name: "Front",
  49262. image: {
  49263. source: "./media/characters/agatha/front.svg",
  49264. extra: 947/933,
  49265. bottom: 42/989
  49266. }
  49267. },
  49268. back: {
  49269. height: math.unit(4 + 6/12, "feet"),
  49270. name: "Back",
  49271. image: {
  49272. source: "./media/characters/agatha/back.svg",
  49273. extra: 935/922,
  49274. bottom: 48/983
  49275. }
  49276. },
  49277. },
  49278. [
  49279. {
  49280. name: "Normal",
  49281. height: math.unit(4 + 6 /12, "feet"),
  49282. default: true
  49283. },
  49284. {
  49285. name: "Max Size",
  49286. height: math.unit(500, "feet")
  49287. },
  49288. ]
  49289. ))
  49290. characterMakers.push(() => makeCharacter(
  49291. { name: "Roggy", species: ["monster"], tags: ["feral"] },
  49292. {
  49293. side: {
  49294. height: math.unit(30, "feet"),
  49295. name: "Side",
  49296. image: {
  49297. source: "./media/characters/roggy/side.svg",
  49298. extra: 909/643,
  49299. bottom: 63/972
  49300. }
  49301. },
  49302. lounging: {
  49303. height: math.unit(20, "feet"),
  49304. name: "Lounging",
  49305. image: {
  49306. source: "./media/characters/roggy/lounging.svg",
  49307. extra: 643/479,
  49308. bottom: 145/788
  49309. }
  49310. },
  49311. handpaw: {
  49312. height: math.unit(13.1, "feet"),
  49313. name: "Handpaw",
  49314. image: {
  49315. source: "./media/characters/roggy/handpaw.svg"
  49316. }
  49317. },
  49318. footpaw: {
  49319. height: math.unit(15.8, "feet"),
  49320. name: "Footpaw",
  49321. image: {
  49322. source: "./media/characters/roggy/footpaw.svg"
  49323. }
  49324. },
  49325. },
  49326. [
  49327. {
  49328. name: "Menacing",
  49329. height: math.unit(30, "feet"),
  49330. default: true
  49331. },
  49332. ]
  49333. ))
  49334. characterMakers.push(() => makeCharacter(
  49335. { name: "Naomi", species: ["mienshao"], tags: ["anthro"] },
  49336. {
  49337. front: {
  49338. height: math.unit(5 + 7/12, "feet"),
  49339. weight: math.unit(135, "lb"),
  49340. name: "Front",
  49341. image: {
  49342. source: "./media/characters/naomi/front.svg",
  49343. extra: 1209/1154,
  49344. bottom: 129/1338
  49345. }
  49346. },
  49347. back: {
  49348. height: math.unit(5 + 7/12, "feet"),
  49349. weight: math.unit(135, "lb"),
  49350. name: "Back",
  49351. image: {
  49352. source: "./media/characters/naomi/back.svg",
  49353. extra: 1252/1190,
  49354. bottom: 23/1275
  49355. }
  49356. },
  49357. },
  49358. [
  49359. {
  49360. name: "Normal",
  49361. height: math.unit(5 + 7 /12, "feet"),
  49362. default: true
  49363. },
  49364. ]
  49365. ))
  49366. characterMakers.push(() => makeCharacter(
  49367. { name: "Kimpi", species: ["dreamspawn"], tags: ["feral"] },
  49368. {
  49369. side: {
  49370. height: math.unit(35, "meters"),
  49371. name: "Side",
  49372. image: {
  49373. source: "./media/characters/kimpi/side.svg",
  49374. extra: 419/382,
  49375. bottom: 63/482
  49376. }
  49377. },
  49378. hand: {
  49379. height: math.unit(8.96, "meters"),
  49380. name: "Hand",
  49381. image: {
  49382. source: "./media/characters/kimpi/hand.svg"
  49383. }
  49384. },
  49385. },
  49386. [
  49387. {
  49388. name: "Normal",
  49389. height: math.unit(35, "meters"),
  49390. default: true
  49391. },
  49392. ]
  49393. ))
  49394. characterMakers.push(() => makeCharacter(
  49395. { name: "Pepper (Purrloin)", species: ["purrloin"], tags: ["anthro"] },
  49396. {
  49397. front: {
  49398. height: math.unit(4 + 4/12, "feet"),
  49399. name: "Front",
  49400. image: {
  49401. source: "./media/characters/pepper-purrloin/front.svg",
  49402. extra: 1141/1024,
  49403. bottom: 21/1162
  49404. }
  49405. },
  49406. },
  49407. [
  49408. {
  49409. name: "Normal",
  49410. height: math.unit(4 + 4/12, "feet"),
  49411. default: true
  49412. },
  49413. ]
  49414. ))
  49415. characterMakers.push(() => makeCharacter(
  49416. { name: "Raphael", species: ["noivern"], tags: ["anthro"] },
  49417. {
  49418. front: {
  49419. height: math.unit(6 + 2/12, "feet"),
  49420. name: "Front",
  49421. image: {
  49422. source: "./media/characters/raphael/front.svg",
  49423. extra: 1101/962,
  49424. bottom: 59/1160
  49425. }
  49426. },
  49427. },
  49428. [
  49429. {
  49430. name: "Normal",
  49431. height: math.unit(6 + 2/12, "feet"),
  49432. default: true
  49433. },
  49434. ]
  49435. ))
  49436. characterMakers.push(() => makeCharacter(
  49437. { name: "Victor Williams", species: ["wolf"], tags: ["anthro"] },
  49438. {
  49439. front: {
  49440. height: math.unit(6, "feet"),
  49441. weight: math.unit(150, "lb"),
  49442. name: "Front",
  49443. image: {
  49444. source: "./media/characters/victor-williams/front.svg",
  49445. extra: 1894/1825,
  49446. bottom: 67/1961
  49447. }
  49448. },
  49449. },
  49450. [
  49451. {
  49452. name: "Normal",
  49453. height: math.unit(6, "feet"),
  49454. default: true
  49455. },
  49456. ]
  49457. ))
  49458. characterMakers.push(() => makeCharacter(
  49459. { name: "Rachel", species: ["hedgehog"], tags: ["anthro"] },
  49460. {
  49461. front: {
  49462. height: math.unit(5 + 8/12, "feet"),
  49463. weight: math.unit(150, "lb"),
  49464. name: "Front",
  49465. image: {
  49466. source: "./media/characters/rachel/front.svg",
  49467. extra: 1902/1787,
  49468. bottom: 46/1948
  49469. }
  49470. },
  49471. },
  49472. [
  49473. {
  49474. name: "Base Height",
  49475. height: math.unit(5 + 8/12, "feet"),
  49476. default: true
  49477. },
  49478. {
  49479. name: "Macro",
  49480. height: math.unit(200, "feet")
  49481. },
  49482. {
  49483. name: "Mega Macro",
  49484. height: math.unit(1, "mile")
  49485. },
  49486. {
  49487. name: "Giga Macro",
  49488. height: math.unit(1500, "miles")
  49489. },
  49490. {
  49491. name: "Tera Macro",
  49492. height: math.unit(8000, "miles")
  49493. },
  49494. {
  49495. name: "Tera Macro+",
  49496. height: math.unit(2e5, "miles")
  49497. },
  49498. ]
  49499. ))
  49500. characterMakers.push(() => makeCharacter(
  49501. { name: "Svetlana Rozovskaya", species: ["dragon", "naga"], tags: ["naga"] },
  49502. {
  49503. front: {
  49504. height: math.unit(6.5, "feet"),
  49505. name: "Front",
  49506. image: {
  49507. source: "./media/characters/svetlana-rozovskaya/front.svg",
  49508. extra: 860/819,
  49509. bottom: 307/1167
  49510. }
  49511. },
  49512. back: {
  49513. height: math.unit(6.5, "feet"),
  49514. name: "Back",
  49515. image: {
  49516. source: "./media/characters/svetlana-rozovskaya/back.svg",
  49517. extra: 880/837,
  49518. bottom: 395/1275
  49519. }
  49520. },
  49521. sleeping: {
  49522. height: math.unit(2.79, "feet"),
  49523. name: "Sleeping",
  49524. image: {
  49525. source: "./media/characters/svetlana-rozovskaya/sleeping.svg",
  49526. extra: 465/383,
  49527. bottom: 263/728
  49528. }
  49529. },
  49530. maw: {
  49531. height: math.unit(2.52, "feet"),
  49532. name: "Maw",
  49533. image: {
  49534. source: "./media/characters/svetlana-rozovskaya/maw.svg"
  49535. }
  49536. },
  49537. },
  49538. [
  49539. {
  49540. name: "Normal",
  49541. height: math.unit(6.5, "feet"),
  49542. default: true
  49543. },
  49544. ]
  49545. ))
  49546. characterMakers.push(() => makeCharacter(
  49547. { name: "Nova Nerium", species: ["dragon", "cat"], tags: ["anthro"] },
  49548. {
  49549. front: {
  49550. height: math.unit(5, "feet"),
  49551. name: "Front",
  49552. image: {
  49553. source: "./media/characters/nova-nerium/front.svg",
  49554. extra: 1548/1392,
  49555. bottom: 374/1922
  49556. }
  49557. },
  49558. back: {
  49559. height: math.unit(5, "feet"),
  49560. name: "Back",
  49561. image: {
  49562. source: "./media/characters/nova-nerium/back.svg",
  49563. extra: 1658/1468,
  49564. bottom: 257/1915
  49565. }
  49566. },
  49567. },
  49568. [
  49569. {
  49570. name: "Normal",
  49571. height: math.unit(5, "feet"),
  49572. default: true
  49573. },
  49574. ]
  49575. ))
  49576. characterMakers.push(() => makeCharacter(
  49577. { name: "Ashe Pyriph", species: ["liger"], tags: ["anthro"] },
  49578. {
  49579. front: {
  49580. height: math.unit(5 + 4/12, "feet"),
  49581. name: "Front",
  49582. image: {
  49583. source: "./media/characters/ashe-pyriph/front.svg",
  49584. extra: 1935/1747,
  49585. bottom: 60/1995
  49586. }
  49587. },
  49588. },
  49589. [
  49590. {
  49591. name: "Normal",
  49592. height: math.unit(5 + 4/12, "feet"),
  49593. default: true
  49594. },
  49595. ]
  49596. ))
  49597. characterMakers.push(() => makeCharacter(
  49598. { name: "Flicker Wisp", species: ["wolf", "drider"], tags: ["anthro"] },
  49599. {
  49600. front: {
  49601. height: math.unit(8.7, "feet"),
  49602. name: "Front",
  49603. image: {
  49604. source: "./media/characters/flicker-wisp/front.svg",
  49605. extra: 1835/1613,
  49606. bottom: 449/2284
  49607. }
  49608. },
  49609. side: {
  49610. height: math.unit(8.7, "feet"),
  49611. name: "Side",
  49612. image: {
  49613. source: "./media/characters/flicker-wisp/side.svg",
  49614. extra: 1841/1642,
  49615. bottom: 336/2177
  49616. },
  49617. default: true
  49618. },
  49619. maw: {
  49620. height: math.unit(3.35, "feet"),
  49621. name: "Maw",
  49622. image: {
  49623. source: "./media/characters/flicker-wisp/maw.svg",
  49624. extra: 2338/1506,
  49625. bottom: 0/2338
  49626. }
  49627. },
  49628. ovipositor: {
  49629. height: math.unit(4.95, "feet"),
  49630. name: "Ovipositor",
  49631. image: {
  49632. source: "./media/characters/flicker-wisp/ovipositor.svg"
  49633. }
  49634. },
  49635. egg: {
  49636. height: math.unit(0.385, "feet"),
  49637. weight: math.unit(2, "lb"),
  49638. name: "Egg",
  49639. image: {
  49640. source: "./media/characters/flicker-wisp/egg.svg"
  49641. }
  49642. },
  49643. },
  49644. [
  49645. {
  49646. name: "Normal",
  49647. height: math.unit(8.7, "feet"),
  49648. default: true
  49649. },
  49650. ]
  49651. ))
  49652. characterMakers.push(() => makeCharacter(
  49653. { name: "Faefnul", species: ["alien", "lizard"], tags: ["anthro"] },
  49654. {
  49655. side: {
  49656. height: math.unit(11, "feet"),
  49657. name: "Side",
  49658. image: {
  49659. source: "./media/characters/faefnul/side.svg",
  49660. extra: 1100/1007,
  49661. bottom: 0/1100
  49662. }
  49663. },
  49664. },
  49665. [
  49666. {
  49667. name: "Normal",
  49668. height: math.unit(11, "feet"),
  49669. default: true
  49670. },
  49671. ]
  49672. ))
  49673. characterMakers.push(() => makeCharacter(
  49674. { name: "Shady", species: ["fox"], tags: ["anthro"] },
  49675. {
  49676. front: {
  49677. height: math.unit(6 + 2/12, "feet"),
  49678. name: "Front",
  49679. image: {
  49680. source: "./media/characters/shady/front.svg",
  49681. extra: 502/461,
  49682. bottom: 9/511
  49683. }
  49684. },
  49685. kneeling: {
  49686. height: math.unit(4.6, "feet"),
  49687. name: "Kneeling",
  49688. image: {
  49689. source: "./media/characters/shady/kneeling.svg",
  49690. extra: 1328/1219,
  49691. bottom: 117/1445
  49692. }
  49693. },
  49694. maw: {
  49695. height: math.unit(2, "feet"),
  49696. name: "Maw",
  49697. image: {
  49698. source: "./media/characters/shady/maw.svg"
  49699. }
  49700. },
  49701. },
  49702. [
  49703. {
  49704. name: "Nano",
  49705. height: math.unit(1, "mm")
  49706. },
  49707. {
  49708. name: "Micro",
  49709. height: math.unit(12, "mm")
  49710. },
  49711. {
  49712. name: "Tiny",
  49713. height: math.unit(3, "inches")
  49714. },
  49715. {
  49716. name: "Normal",
  49717. height: math.unit(6 + 2/12, "feet"),
  49718. default: true
  49719. },
  49720. {
  49721. name: "Big",
  49722. height: math.unit(15, "feet")
  49723. },
  49724. {
  49725. name: "Macro",
  49726. height: math.unit(150, "feet")
  49727. },
  49728. {
  49729. name: "Titanic",
  49730. height: math.unit(500, "feet")
  49731. },
  49732. ]
  49733. ))
  49734. characterMakers.push(() => makeCharacter(
  49735. { name: "Fenrir", species: ["wolf"], tags: ["anthro"] },
  49736. {
  49737. front: {
  49738. height: math.unit(12, "feet"),
  49739. name: "Front",
  49740. image: {
  49741. source: "./media/characters/fenrir/front.svg",
  49742. extra: 968/875,
  49743. bottom: 22/990
  49744. }
  49745. },
  49746. },
  49747. [
  49748. {
  49749. name: "Big",
  49750. height: math.unit(12, "feet"),
  49751. default: true
  49752. },
  49753. ]
  49754. ))
  49755. characterMakers.push(() => makeCharacter(
  49756. { name: "Makar", species: ["cat"], tags: ["anthro"] },
  49757. {
  49758. front: {
  49759. height: math.unit(5 + 4/12, "feet"),
  49760. name: "Front",
  49761. image: {
  49762. source: "./media/characters/makar/front.svg",
  49763. extra: 1181/1112,
  49764. bottom: 78/1259
  49765. }
  49766. },
  49767. },
  49768. [
  49769. {
  49770. name: "Normal",
  49771. height: math.unit(5 + 4/12, "feet"),
  49772. default: true
  49773. },
  49774. ]
  49775. ))
  49776. characterMakers.push(() => makeCharacter(
  49777. { name: "Callow", species: ["deer"], tags: ["anthro"] },
  49778. {
  49779. front: {
  49780. height: math.unit(5 + 7/12, "feet"),
  49781. name: "Front",
  49782. image: {
  49783. source: "./media/characters/callow/front.svg",
  49784. extra: 1482/1304,
  49785. bottom: 23/1505
  49786. }
  49787. },
  49788. back: {
  49789. height: math.unit(5 + 7/12, "feet"),
  49790. name: "Back",
  49791. image: {
  49792. source: "./media/characters/callow/back.svg",
  49793. extra: 1484/1296,
  49794. bottom: 25/1509
  49795. }
  49796. },
  49797. },
  49798. [
  49799. {
  49800. name: "Micro",
  49801. height: math.unit(3, "inches"),
  49802. default: true
  49803. },
  49804. {
  49805. name: "Normal",
  49806. height: math.unit(5 + 7/12, "feet")
  49807. },
  49808. ]
  49809. ))
  49810. characterMakers.push(() => makeCharacter(
  49811. { name: "Natel", species: ["folf"], tags: ["anthro"] },
  49812. {
  49813. front: {
  49814. height: math.unit(6 + 2/12, "feet"),
  49815. name: "Front",
  49816. image: {
  49817. source: "./media/characters/natel/front.svg",
  49818. extra: 1833/1692,
  49819. bottom: 166/1999
  49820. }
  49821. },
  49822. },
  49823. [
  49824. {
  49825. name: "Normal",
  49826. height: math.unit(6 + 2/12, "feet"),
  49827. default: true
  49828. },
  49829. ]
  49830. ))
  49831. characterMakers.push(() => makeCharacter(
  49832. { name: "Misu", species: ["coyote"], tags: ["anthro"] },
  49833. {
  49834. front: {
  49835. height: math.unit(1.75, "meters"),
  49836. name: "Front",
  49837. image: {
  49838. source: "./media/characters/misu/front.svg",
  49839. extra: 1690/1558,
  49840. bottom: 234/1924
  49841. }
  49842. },
  49843. back: {
  49844. height: math.unit(1.75, "meters"),
  49845. name: "Back",
  49846. image: {
  49847. source: "./media/characters/misu/back.svg",
  49848. extra: 1762/1618,
  49849. bottom: 146/1908
  49850. }
  49851. },
  49852. frontNude: {
  49853. height: math.unit(1.75, "meters"),
  49854. name: "Front (Nude)",
  49855. image: {
  49856. source: "./media/characters/misu/front-nude.svg",
  49857. extra: 1690/1558,
  49858. bottom: 234/1924
  49859. }
  49860. },
  49861. backNude: {
  49862. height: math.unit(1.75, "meters"),
  49863. name: "Back (Nude)",
  49864. image: {
  49865. source: "./media/characters/misu/back-nude.svg",
  49866. extra: 1762/1618,
  49867. bottom: 146/1908
  49868. }
  49869. },
  49870. frontErect: {
  49871. height: math.unit(1.75, "meters"),
  49872. name: "Front (Erect)",
  49873. image: {
  49874. source: "./media/characters/misu/front-erect.svg",
  49875. extra: 1690/1558,
  49876. bottom: 234/1924
  49877. }
  49878. },
  49879. maw: {
  49880. height: math.unit(0.47, "meters"),
  49881. name: "Maw",
  49882. image: {
  49883. source: "./media/characters/misu/maw.svg"
  49884. }
  49885. },
  49886. head: {
  49887. height: math.unit(0.35, "meters"),
  49888. name: "Head",
  49889. image: {
  49890. source: "./media/characters/misu/head.svg"
  49891. }
  49892. },
  49893. rear: {
  49894. height: math.unit(0.47, "meters"),
  49895. name: "Rear",
  49896. image: {
  49897. source: "./media/characters/misu/rear.svg"
  49898. }
  49899. },
  49900. },
  49901. [
  49902. {
  49903. name: "Normal",
  49904. height: math.unit(1.75, "meters")
  49905. },
  49906. {
  49907. name: "Not good for the people",
  49908. height: math.unit(42, "meters")
  49909. },
  49910. {
  49911. name: "Not good for the neighborhood",
  49912. height: math.unit(135, "meters")
  49913. },
  49914. {
  49915. name: "Bit bigger problem",
  49916. height: math.unit(380, "meters"),
  49917. default: true
  49918. },
  49919. {
  49920. name: "Not good for the city",
  49921. height: math.unit(1.5, "km")
  49922. },
  49923. {
  49924. name: "Not good for the county",
  49925. height: math.unit(5.5, "km")
  49926. },
  49927. {
  49928. name: "Not good for the state",
  49929. height: math.unit(25, "km")
  49930. },
  49931. {
  49932. name: "Not good for the country",
  49933. height: math.unit(125, "km")
  49934. },
  49935. {
  49936. name: "Not good for the continent",
  49937. height: math.unit(2100, "km")
  49938. },
  49939. {
  49940. name: "Not good for the planet",
  49941. height: math.unit(35000, "km")
  49942. },
  49943. {
  49944. name: "Just no",
  49945. height: math.unit(8.5e18, "km")
  49946. },
  49947. ]
  49948. ))
  49949. characterMakers.push(() => makeCharacter(
  49950. { name: "Poppy", species: ["human"], tags: ["anthro"] },
  49951. {
  49952. front: {
  49953. height: math.unit(6.5, "feet"),
  49954. name: "Front",
  49955. image: {
  49956. source: "./media/characters/poppy/front.svg",
  49957. extra: 1878/1812,
  49958. bottom: 43/1921
  49959. }
  49960. },
  49961. feet: {
  49962. height: math.unit(1.06, "feet"),
  49963. name: "Feet",
  49964. image: {
  49965. source: "./media/characters/poppy/feet.svg",
  49966. extra: 1083/1083,
  49967. bottom: 87/1170
  49968. }
  49969. },
  49970. },
  49971. [
  49972. {
  49973. name: "Human",
  49974. height: math.unit(6.5, "feet")
  49975. },
  49976. {
  49977. name: "Default",
  49978. height: math.unit(300, "feet"),
  49979. default: true
  49980. },
  49981. {
  49982. name: "Huge",
  49983. height: math.unit(850, "feet")
  49984. },
  49985. {
  49986. name: "Mega",
  49987. height: math.unit(8000, "feet")
  49988. },
  49989. {
  49990. name: "Giga",
  49991. height: math.unit(300, "miles")
  49992. },
  49993. ]
  49994. ))
  49995. characterMakers.push(() => makeCharacter(
  49996. { name: "Zener", species: ["dragon" ,"robot"], tags: ["anthro", "feral"] },
  49997. {
  49998. bipedal: {
  49999. height: math.unit(7, "feet"),
  50000. name: "Bipedal",
  50001. image: {
  50002. source: "./media/characters/zener/bipedal.svg",
  50003. extra: 874/805,
  50004. bottom: 109/983
  50005. }
  50006. },
  50007. quadrupedal: {
  50008. height: math.unit(4.64, "feet"),
  50009. name: "Quadrupedal",
  50010. image: {
  50011. source: "./media/characters/zener/quadrupedal.svg",
  50012. extra: 638/507,
  50013. bottom: 190/828
  50014. }
  50015. },
  50016. cock: {
  50017. height: math.unit(18, "inches"),
  50018. name: "Cock",
  50019. image: {
  50020. source: "./media/characters/zener/cock.svg"
  50021. }
  50022. },
  50023. },
  50024. [
  50025. {
  50026. name: "Normal",
  50027. height: math.unit(7, "feet"),
  50028. default: true
  50029. },
  50030. ]
  50031. ))
  50032. characterMakers.push(() => makeCharacter(
  50033. { name: "Charlie (Dog)", species: ["dog"], tags: ["anthro"] },
  50034. {
  50035. nude: {
  50036. height: math.unit(5 + 6/12, "feet"),
  50037. name: "Nude",
  50038. image: {
  50039. source: "./media/characters/charlie-dog/nude.svg",
  50040. extra: 768/734,
  50041. bottom: 26/794
  50042. }
  50043. },
  50044. dressed: {
  50045. height: math.unit(5 + 6/12, "feet"),
  50046. name: "Dressed",
  50047. image: {
  50048. source: "./media/characters/charlie-dog/dressed.svg",
  50049. extra: 768/734,
  50050. bottom: 26/794
  50051. }
  50052. },
  50053. },
  50054. [
  50055. {
  50056. name: "Normal",
  50057. height: math.unit(5 + 6/12, "feet"),
  50058. default: true
  50059. },
  50060. ]
  50061. ))
  50062. characterMakers.push(() => makeCharacter(
  50063. { name: "Ir'istrasz", species: ["dragon"], tags: ["anthro"] },
  50064. {
  50065. front: {
  50066. height: math.unit(6 + 4/12, "feet"),
  50067. name: "Front",
  50068. image: {
  50069. source: "./media/characters/ir'istrasz/front.svg",
  50070. extra: 1014/977,
  50071. bottom: 65/1079
  50072. }
  50073. },
  50074. back: {
  50075. height: math.unit(6 + 4/12, "feet"),
  50076. name: "Back",
  50077. image: {
  50078. source: "./media/characters/ir'istrasz/back.svg",
  50079. extra: 1024/992,
  50080. bottom: 34/1058
  50081. }
  50082. },
  50083. },
  50084. [
  50085. {
  50086. name: "Normal",
  50087. height: math.unit(6 + 4/12, "feet"),
  50088. default: true
  50089. },
  50090. ]
  50091. ))
  50092. characterMakers.push(() => makeCharacter(
  50093. { name: "Dee (Ditto)", species: ["ditto"], tags: ["anthro", "goo"] },
  50094. {
  50095. front: {
  50096. height: math.unit(5 + 8/12, "feet"),
  50097. name: "Front",
  50098. image: {
  50099. source: "./media/characters/dee-ditto/front.svg",
  50100. extra: 1874/1785,
  50101. bottom: 68/1942
  50102. }
  50103. },
  50104. back: {
  50105. height: math.unit(5 + 8/12, "feet"),
  50106. name: "Back",
  50107. image: {
  50108. source: "./media/characters/dee-ditto/back.svg",
  50109. extra: 1870/1783,
  50110. bottom: 77/1947
  50111. }
  50112. },
  50113. },
  50114. [
  50115. {
  50116. name: "Normal",
  50117. height: math.unit(5 + 8/12, "feet"),
  50118. default: true
  50119. },
  50120. ]
  50121. ))
  50122. characterMakers.push(() => makeCharacter(
  50123. { name: "Fey", species: ["werebeast", "fox"], tags: ["anthro"] },
  50124. {
  50125. front: {
  50126. height: math.unit(7 + 6/12, "feet"),
  50127. name: "Front",
  50128. image: {
  50129. source: "./media/characters/fey/front.svg",
  50130. extra: 995/979,
  50131. bottom: 30/1025
  50132. }
  50133. },
  50134. back: {
  50135. height: math.unit(7 + 6/12, "feet"),
  50136. name: "Back",
  50137. image: {
  50138. source: "./media/characters/fey/back.svg",
  50139. extra: 1079/1008,
  50140. bottom: 5/1084
  50141. }
  50142. },
  50143. dressed: {
  50144. height: math.unit(7 + 6/12, "feet"),
  50145. name: "Dressed",
  50146. image: {
  50147. source: "./media/characters/fey/dressed.svg",
  50148. extra: 995/979,
  50149. bottom: 30/1025
  50150. }
  50151. },
  50152. },
  50153. [
  50154. {
  50155. name: "Normal",
  50156. height: math.unit(7 + 6/12, "feet"),
  50157. default: true
  50158. },
  50159. ]
  50160. ))
  50161. characterMakers.push(() => makeCharacter(
  50162. { name: "Aster", species: ["alien"], tags: ["anthro"] },
  50163. {
  50164. standing: {
  50165. height: math.unit(17, "feet"),
  50166. name: "Standing",
  50167. image: {
  50168. source: "./media/characters/aster/standing.svg",
  50169. extra: 1798/1598,
  50170. bottom: 117/1915
  50171. }
  50172. },
  50173. },
  50174. [
  50175. {
  50176. name: "Normal",
  50177. height: math.unit(17, "feet"),
  50178. default: true
  50179. },
  50180. {
  50181. name: "Homewrecker",
  50182. height: math.unit(95, "feet")
  50183. },
  50184. {
  50185. name: "Planet Devourer",
  50186. height: math.unit(1008000, "miles")
  50187. },
  50188. ]
  50189. ))
  50190. characterMakers.push(() => makeCharacter(
  50191. { name: "Devon Childs", species: ["hyena"], tags: ["anthro"] },
  50192. {
  50193. front: {
  50194. height: math.unit(6 + 5/12, "feet"),
  50195. weight: math.unit(265, "lb"),
  50196. name: "Front",
  50197. image: {
  50198. source: "./media/characters/devon-childs/front.svg",
  50199. extra: 1795/1721,
  50200. bottom: 41/1836
  50201. }
  50202. },
  50203. side: {
  50204. height: math.unit(6 + 5/12, "feet"),
  50205. weight: math.unit(265, "lb"),
  50206. name: "Side",
  50207. image: {
  50208. source: "./media/characters/devon-childs/side.svg",
  50209. extra: 1812/1738,
  50210. bottom: 30/1842
  50211. }
  50212. },
  50213. back: {
  50214. height: math.unit(6 + 5/12, "feet"),
  50215. weight: math.unit(265, "lb"),
  50216. name: "Back",
  50217. image: {
  50218. source: "./media/characters/devon-childs/back.svg",
  50219. extra: 1808/1735,
  50220. bottom: 23/1831
  50221. }
  50222. },
  50223. hand: {
  50224. height: math.unit(1.464, "feet"),
  50225. name: "Hand",
  50226. image: {
  50227. source: "./media/characters/devon-childs/hand.svg"
  50228. }
  50229. },
  50230. foot: {
  50231. height: math.unit(1.6, "feet"),
  50232. name: "Foot",
  50233. image: {
  50234. source: "./media/characters/devon-childs/foot.svg"
  50235. }
  50236. },
  50237. },
  50238. [
  50239. {
  50240. name: "Micro",
  50241. height: math.unit(7, "cm")
  50242. },
  50243. {
  50244. name: "Normal",
  50245. height: math.unit(6 + 5/12, "feet"),
  50246. default: true
  50247. },
  50248. {
  50249. name: "Macro",
  50250. height: math.unit(154, "feet")
  50251. },
  50252. ]
  50253. ))
  50254. characterMakers.push(() => makeCharacter(
  50255. { name: "Lydemox Vir", species: ["kitsune"], tags: ["anthro"] },
  50256. {
  50257. front: {
  50258. height: math.unit(6, "feet"),
  50259. weight: math.unit(180, "lb"),
  50260. name: "Front",
  50261. image: {
  50262. source: "./media/characters/lydemox-vir/front.svg",
  50263. extra: 1632/1435,
  50264. bottom: 58/1690
  50265. }
  50266. },
  50267. frontSFW: {
  50268. height: math.unit(6, "feet"),
  50269. weight: math.unit(180, "lb"),
  50270. name: "Front (SFW)",
  50271. image: {
  50272. source: "./media/characters/lydemox-vir/front-sfw.svg",
  50273. extra: 1632/1435,
  50274. bottom: 58/1690
  50275. }
  50276. },
  50277. back: {
  50278. height: math.unit(6, "feet"),
  50279. weight: math.unit(180, "lb"),
  50280. name: "Back",
  50281. image: {
  50282. source: "./media/characters/lydemox-vir/back.svg",
  50283. extra: 1593/1408,
  50284. bottom: 31/1624
  50285. }
  50286. },
  50287. paw: {
  50288. height: math.unit(1.85, "feet"),
  50289. name: "Paw",
  50290. image: {
  50291. source: "./media/characters/lydemox-vir/paw.svg"
  50292. }
  50293. },
  50294. dick: {
  50295. height: math.unit(1.8, "feet"),
  50296. name: "Dick",
  50297. image: {
  50298. source: "./media/characters/lydemox-vir/dick.svg"
  50299. }
  50300. },
  50301. },
  50302. [
  50303. {
  50304. name: "Macro",
  50305. height: math.unit(100, "feet"),
  50306. default: true
  50307. },
  50308. {
  50309. name: "Teramacro",
  50310. height: math.unit(1, "earth")
  50311. },
  50312. {
  50313. name: "Planetary",
  50314. height: math.unit(20, "earths")
  50315. },
  50316. ]
  50317. ))
  50318. characterMakers.push(() => makeCharacter(
  50319. { name: "Mia", species: ["panda"], tags: ["anthro"] },
  50320. {
  50321. front: {
  50322. height: math.unit(15 + 8/12, "feet"),
  50323. weight: math.unit(1237, "kg"),
  50324. name: "Front",
  50325. image: {
  50326. source: "./media/characters/mia/front.svg",
  50327. extra: 1573/1446,
  50328. bottom: 58/1631
  50329. }
  50330. },
  50331. },
  50332. [
  50333. {
  50334. name: "Small",
  50335. height: math.unit(9 + 5/12, "feet")
  50336. },
  50337. {
  50338. name: "Normal",
  50339. height: math.unit(15 + 8/12, "feet"),
  50340. default: true
  50341. },
  50342. ]
  50343. ))
  50344. characterMakers.push(() => makeCharacter(
  50345. { name: "Mr. Graves", species: ["wolf"], tags: ["anthro"] },
  50346. {
  50347. front: {
  50348. height: math.unit(10 + 6/12, "feet"),
  50349. weight: math.unit(1.3, "tons"),
  50350. name: "Front",
  50351. image: {
  50352. source: "./media/characters/mr-graves/front.svg",
  50353. extra: 1779/1695,
  50354. bottom: 198/1977
  50355. }
  50356. },
  50357. },
  50358. [
  50359. {
  50360. name: "Normal",
  50361. height: math.unit(10 + 6 /12, "feet"),
  50362. default: true
  50363. },
  50364. ]
  50365. ))
  50366. characterMakers.push(() => makeCharacter(
  50367. { name: "Jess", species: ["human"], tags: ["anthro"] },
  50368. {
  50369. dressedFront: {
  50370. height: math.unit(5 + 8/12, "feet"),
  50371. weight: math.unit(125, "lb"),
  50372. name: "Dressed (Front)",
  50373. image: {
  50374. source: "./media/characters/jess/dressed-front.svg",
  50375. extra: 1176/1152,
  50376. bottom: 42/1218
  50377. }
  50378. },
  50379. dressedSide: {
  50380. height: math.unit(5 + 8/12, "feet"),
  50381. weight: math.unit(125, "lb"),
  50382. name: "Dressed (Side)",
  50383. image: {
  50384. source: "./media/characters/jess/dressed-side.svg",
  50385. extra: 1204/1190,
  50386. bottom: 6/1210
  50387. }
  50388. },
  50389. nudeFront: {
  50390. height: math.unit(5 + 8/12, "feet"),
  50391. weight: math.unit(125, "lb"),
  50392. name: "Nude (Front)",
  50393. image: {
  50394. source: "./media/characters/jess/nude-front.svg",
  50395. extra: 1176/1152,
  50396. bottom: 42/1218
  50397. }
  50398. },
  50399. nudeSide: {
  50400. height: math.unit(5 + 8/12, "feet"),
  50401. weight: math.unit(125, "lb"),
  50402. name: "Nude (Side)",
  50403. image: {
  50404. source: "./media/characters/jess/nude-side.svg",
  50405. extra: 1204/1190,
  50406. bottom: 6/1210
  50407. }
  50408. },
  50409. organsFront: {
  50410. height: math.unit(2.83799342105, "feet"),
  50411. name: "Organs (Front)",
  50412. image: {
  50413. source: "./media/characters/jess/organs-front.svg"
  50414. }
  50415. },
  50416. organsSide: {
  50417. height: math.unit(2.64225290474, "feet"),
  50418. name: "Organs (Side)",
  50419. image: {
  50420. source: "./media/characters/jess/organs-side.svg"
  50421. }
  50422. },
  50423. digestiveTractFront: {
  50424. height: math.unit(2.8106580871, "feet"),
  50425. name: "Digestive Tract (Front)",
  50426. image: {
  50427. source: "./media/characters/jess/digestive-tract-front.svg"
  50428. }
  50429. },
  50430. digestiveTractSide: {
  50431. height: math.unit(2.54365045014, "feet"),
  50432. name: "Digestive Tract (Side)",
  50433. image: {
  50434. source: "./media/characters/jess/digestive-tract-side.svg"
  50435. }
  50436. },
  50437. respiratorySystemFront: {
  50438. height: math.unit(1.11196233456, "feet"),
  50439. name: "Respiratory System (Front)",
  50440. image: {
  50441. source: "./media/characters/jess/respiratory-system-front.svg"
  50442. }
  50443. },
  50444. respiratorySystemSide: {
  50445. height: math.unit(0.89327966297, "feet"),
  50446. name: "Respiratory System (Side)",
  50447. image: {
  50448. source: "./media/characters/jess/respiratory-system-side.svg"
  50449. }
  50450. },
  50451. urinaryTractFront: {
  50452. height: math.unit(1.16126356186, "feet"),
  50453. name: "Urinary Tract (Front)",
  50454. image: {
  50455. source: "./media/characters/jess/urinary-tract-front.svg"
  50456. }
  50457. },
  50458. urinaryTractSide: {
  50459. height: math.unit(1.20910039627, "feet"),
  50460. name: "Urinary Tract (Side)",
  50461. image: {
  50462. source: "./media/characters/jess/urinary-tract-side.svg"
  50463. }
  50464. },
  50465. reproductiveOrgansFront: {
  50466. height: math.unit(0.48422591566, "feet"),
  50467. name: "Reproductive Organs (Front)",
  50468. image: {
  50469. source: "./media/characters/jess/reproductive-organs-front.svg"
  50470. }
  50471. },
  50472. reproductiveOrgansSide: {
  50473. height: math.unit(0.61553314481, "feet"),
  50474. name: "Reproductive Organs (Side)",
  50475. image: {
  50476. source: "./media/characters/jess/reproductive-organs-side.svg"
  50477. }
  50478. },
  50479. breastsFront: {
  50480. height: math.unit(0.47690395121, "feet"),
  50481. name: "Breasts (Front)",
  50482. image: {
  50483. source: "./media/characters/jess/breasts-front.svg"
  50484. }
  50485. },
  50486. breastsSide: {
  50487. height: math.unit(0.30556998307, "feet"),
  50488. name: "Breasts (Side)",
  50489. image: {
  50490. source: "./media/characters/jess/breasts-side.svg"
  50491. }
  50492. },
  50493. heartFront: {
  50494. height: math.unit(0.53011022622, "feet"),
  50495. name: "Heart (Front)",
  50496. image: {
  50497. source: "./media/characters/jess/heart-front.svg"
  50498. }
  50499. },
  50500. heartSide: {
  50501. height: math.unit(0.51790695213, "feet"),
  50502. name: "Heart (Side)",
  50503. image: {
  50504. source: "./media/characters/jess/heart-side.svg"
  50505. }
  50506. },
  50507. earsAndNoseFront: {
  50508. height: math.unit(0.29385483995, "feet"),
  50509. name: "Ears and Nose (Front)",
  50510. image: {
  50511. source: "./media/characters/jess/ears-and-nose-front.svg"
  50512. }
  50513. },
  50514. earsAndNoseSide: {
  50515. height: math.unit(0.18109658741, "feet"),
  50516. name: "Ears and Nose (Side)",
  50517. image: {
  50518. source: "./media/characters/jess/ears-and-nose-side.svg"
  50519. }
  50520. },
  50521. },
  50522. [
  50523. {
  50524. name: "Normal",
  50525. height: math.unit(5 + 8/12, "feet"),
  50526. default: true
  50527. },
  50528. ]
  50529. ))
  50530. characterMakers.push(() => makeCharacter(
  50531. { name: "Wimpering", species: ["human"], tags: ["anthro"] },
  50532. {
  50533. front: {
  50534. height: math.unit(6, "feet"),
  50535. weight: math.unit(6.64467e-7, "grams"),
  50536. name: "Front",
  50537. image: {
  50538. source: "./media/characters/wimpering/front.svg",
  50539. extra: 597/587,
  50540. bottom: 34/631
  50541. }
  50542. },
  50543. },
  50544. [
  50545. {
  50546. name: "Micro",
  50547. height: math.unit(0.4, "mm"),
  50548. default: true
  50549. },
  50550. ]
  50551. ))
  50552. characterMakers.push(() => makeCharacter(
  50553. { name: "Keltre", species: ["dog"], tags: ["anthro"] },
  50554. {
  50555. front: {
  50556. height: math.unit(5 + 2/12, "feet"),
  50557. weight: math.unit(110, "lb"),
  50558. name: "Front",
  50559. image: {
  50560. source: "./media/characters/keltre/front.svg",
  50561. extra: 1099/1057,
  50562. bottom: 22/1121
  50563. }
  50564. },
  50565. back: {
  50566. height: math.unit(5 + 2/12, "feet"),
  50567. weight: math.unit(110, "lb"),
  50568. name: "Back",
  50569. image: {
  50570. source: "./media/characters/keltre/back.svg",
  50571. extra: 1095/1053,
  50572. bottom: 17/1112
  50573. }
  50574. },
  50575. dressed: {
  50576. height: math.unit(5 + 2/12, "feet"),
  50577. weight: math.unit(110, "lb"),
  50578. name: "Dressed",
  50579. image: {
  50580. source: "./media/characters/keltre/dressed.svg",
  50581. extra: 1099/1057,
  50582. bottom: 22/1121
  50583. }
  50584. },
  50585. winter: {
  50586. height: math.unit(5 + 2/12, "feet"),
  50587. weight: math.unit(110, "lb"),
  50588. name: "Winter",
  50589. image: {
  50590. source: "./media/characters/keltre/winter.svg",
  50591. extra: 1099/1057,
  50592. bottom: 22/1121
  50593. }
  50594. },
  50595. head: {
  50596. height: math.unit(1.61 * 0.86, "feet"),
  50597. name: "Head",
  50598. image: {
  50599. source: "./media/characters/keltre/head.svg",
  50600. extra: 534/421,
  50601. bottom: 0/534
  50602. }
  50603. },
  50604. hand: {
  50605. height: math.unit(1.3 * 0.86, "feet"),
  50606. name: "Hand",
  50607. image: {
  50608. source: "./media/characters/keltre/hand.svg"
  50609. }
  50610. },
  50611. foot: {
  50612. height: math.unit(1.8 * 0.86, "feet"),
  50613. name: "Foot",
  50614. image: {
  50615. source: "./media/characters/keltre/foot.svg"
  50616. }
  50617. },
  50618. },
  50619. [
  50620. {
  50621. name: "Fine",
  50622. height: math.unit(1, "inch")
  50623. },
  50624. {
  50625. name: "Dimnutive",
  50626. height: math.unit(4, "inches")
  50627. },
  50628. {
  50629. name: "Tiny",
  50630. height: math.unit(1, "foot")
  50631. },
  50632. {
  50633. name: "Small",
  50634. height: math.unit(3, "feet")
  50635. },
  50636. {
  50637. name: "Normal",
  50638. height: math.unit(5 + 2/12, "feet"),
  50639. default: true
  50640. },
  50641. ]
  50642. ))
  50643. characterMakers.push(() => makeCharacter(
  50644. { name: "Nox", species: ["cat"], tags: ["anthro"] },
  50645. {
  50646. front: {
  50647. height: math.unit(6 + 2/12, "feet"),
  50648. name: "Front",
  50649. image: {
  50650. source: "./media/characters/nox/front.svg",
  50651. extra: 1917/1830,
  50652. bottom: 74/1991
  50653. }
  50654. },
  50655. back: {
  50656. height: math.unit(6 + 2/12, "feet"),
  50657. name: "Back",
  50658. image: {
  50659. source: "./media/characters/nox/back.svg",
  50660. extra: 1896/1815,
  50661. bottom: 21/1917
  50662. }
  50663. },
  50664. head: {
  50665. height: math.unit(1.1, "feet"),
  50666. name: "Head",
  50667. image: {
  50668. source: "./media/characters/nox/head.svg",
  50669. extra: 874/704,
  50670. bottom: 0/874
  50671. }
  50672. },
  50673. tattoo: {
  50674. height: math.unit(0.729, "feet"),
  50675. name: "Tattoo",
  50676. image: {
  50677. source: "./media/characters/nox/tattoo.svg"
  50678. }
  50679. },
  50680. },
  50681. [
  50682. {
  50683. name: "Normal",
  50684. height: math.unit(6 + 2/12, "feet")
  50685. },
  50686. {
  50687. name: "Gigamacro",
  50688. height: math.unit(2, "earths"),
  50689. default: true
  50690. },
  50691. {
  50692. name: "Cosmic",
  50693. height: math.unit(867, "yottameters")
  50694. },
  50695. ]
  50696. ))
  50697. characterMakers.push(() => makeCharacter(
  50698. { name: "Caspian", species: ["ferret"], tags: ["anthro"] },
  50699. {
  50700. front: {
  50701. height: math.unit(6, "feet"),
  50702. weight: math.unit(150, "lb"),
  50703. name: "Front",
  50704. image: {
  50705. source: "./media/characters/caspian/front.svg",
  50706. extra: 1443/1359,
  50707. bottom: 0/1443
  50708. }
  50709. },
  50710. back: {
  50711. height: math.unit(6, "feet"),
  50712. weight: math.unit(150, "lb"),
  50713. name: "Back",
  50714. image: {
  50715. source: "./media/characters/caspian/back.svg",
  50716. extra: 1379/1309,
  50717. bottom: 0/1379
  50718. }
  50719. },
  50720. head: {
  50721. height: math.unit(0.9, "feet"),
  50722. name: "Head",
  50723. image: {
  50724. source: "./media/characters/caspian/head.svg",
  50725. extra: 692/492,
  50726. bottom: 0/692
  50727. }
  50728. },
  50729. headAlt: {
  50730. height: math.unit(0.95, "feet"),
  50731. name: "Head (Alt)",
  50732. image: {
  50733. source: "./media/characters/caspian/head-alt.svg",
  50734. extra: 668/508,
  50735. bottom: 0/668
  50736. }
  50737. },
  50738. hand: {
  50739. height: math.unit(0.8, "feet"),
  50740. name: "Hand",
  50741. image: {
  50742. source: "./media/characters/caspian/hand.svg"
  50743. }
  50744. },
  50745. paw: {
  50746. height: math.unit(0.95, "feet"),
  50747. name: "Paw",
  50748. image: {
  50749. source: "./media/characters/caspian/paw.svg"
  50750. }
  50751. },
  50752. },
  50753. [
  50754. {
  50755. name: "Normal",
  50756. height: math.unit(162, "feet"),
  50757. default: true
  50758. },
  50759. ]
  50760. ))
  50761. characterMakers.push(() => makeCharacter(
  50762. { name: "Myra Aisling", species: ["coyote"], tags: ["anthro"] },
  50763. {
  50764. front: {
  50765. height: math.unit(6, "feet"),
  50766. name: "Front",
  50767. image: {
  50768. source: "./media/characters/myra-aisling/front.svg",
  50769. extra: 1268/1166,
  50770. bottom: 73/1341
  50771. }
  50772. },
  50773. back: {
  50774. height: math.unit(6, "feet"),
  50775. name: "Back",
  50776. image: {
  50777. source: "./media/characters/myra-aisling/back.svg",
  50778. extra: 1249/1149,
  50779. bottom: 79/1328
  50780. }
  50781. },
  50782. dressed: {
  50783. height: math.unit(6, "feet"),
  50784. name: "Dressed",
  50785. image: {
  50786. source: "./media/characters/myra-aisling/dressed.svg",
  50787. extra: 1290/1189,
  50788. bottom: 47/1337
  50789. }
  50790. },
  50791. hand: {
  50792. height: math.unit(1.1, "feet"),
  50793. name: "Hand",
  50794. image: {
  50795. source: "./media/characters/myra-aisling/hand.svg"
  50796. }
  50797. },
  50798. paw: {
  50799. height: math.unit(1.23, "feet"),
  50800. name: "Paw",
  50801. image: {
  50802. source: "./media/characters/myra-aisling/paw.svg"
  50803. }
  50804. },
  50805. },
  50806. [
  50807. {
  50808. name: "Normal",
  50809. height: math.unit(160, "feet"),
  50810. default: true
  50811. },
  50812. ]
  50813. ))
  50814. characterMakers.push(() => makeCharacter(
  50815. { name: "Tenley Sidero", species: ["lycanroc"], tags: ["anthro"] },
  50816. {
  50817. front: {
  50818. height: math.unit(6, "feet"),
  50819. name: "Front",
  50820. image: {
  50821. source: "./media/characters/tenley-sidero/front.svg",
  50822. extra: 1365/1276,
  50823. bottom: 47/1412
  50824. }
  50825. },
  50826. back: {
  50827. height: math.unit(6, "feet"),
  50828. name: "Back",
  50829. image: {
  50830. source: "./media/characters/tenley-sidero/back.svg",
  50831. extra: 1383/1283,
  50832. bottom: 35/1418
  50833. }
  50834. },
  50835. dressed: {
  50836. height: math.unit(6, "feet"),
  50837. name: "Dressed",
  50838. image: {
  50839. source: "./media/characters/tenley-sidero/dressed.svg",
  50840. extra: 1364/1275,
  50841. bottom: 42/1406
  50842. }
  50843. },
  50844. head: {
  50845. height: math.unit(1.47, "feet"),
  50846. name: "Head",
  50847. image: {
  50848. source: "./media/characters/tenley-sidero/head.svg",
  50849. extra: 610/490,
  50850. bottom: 0/610
  50851. }
  50852. },
  50853. },
  50854. [
  50855. {
  50856. name: "Normal",
  50857. height: math.unit(154, "feet"),
  50858. default: true
  50859. },
  50860. ]
  50861. ))
  50862. characterMakers.push(() => makeCharacter(
  50863. { name: "Mallory", species: ["rabbit"], tags: ["anthro"] },
  50864. {
  50865. front: {
  50866. height: math.unit(5, "inches"),
  50867. name: "Front",
  50868. image: {
  50869. source: "./media/characters/mallory/front.svg",
  50870. extra: 1919/1678,
  50871. bottom: 29/1948
  50872. }
  50873. },
  50874. hand: {
  50875. height: math.unit(0.73, "inches"),
  50876. name: "Hand",
  50877. image: {
  50878. source: "./media/characters/mallory/hand.svg"
  50879. }
  50880. },
  50881. paw: {
  50882. height: math.unit(0.68, "inches"),
  50883. name: "Paw",
  50884. image: {
  50885. source: "./media/characters/mallory/paw.svg"
  50886. }
  50887. },
  50888. },
  50889. [
  50890. {
  50891. name: "Small",
  50892. height: math.unit(5, "inches"),
  50893. default: true
  50894. },
  50895. ]
  50896. ))
  50897. characterMakers.push(() => makeCharacter(
  50898. { name: "Mab", species: ["opossum"], tags: ["anthro"] },
  50899. {
  50900. naked: {
  50901. height: math.unit(6, "feet"),
  50902. name: "Naked",
  50903. image: {
  50904. source: "./media/characters/mab/naked.svg",
  50905. extra: 1855/1757,
  50906. bottom: 208/2063
  50907. }
  50908. },
  50909. outside: {
  50910. height: math.unit(6, "feet"),
  50911. name: "Outside",
  50912. image: {
  50913. source: "./media/characters/mab/outside.svg",
  50914. extra: 1855/1757,
  50915. bottom: 208/2063
  50916. }
  50917. },
  50918. party: {
  50919. height: math.unit(6, "feet"),
  50920. name: "Party",
  50921. image: {
  50922. source: "./media/characters/mab/party.svg",
  50923. extra: 1855/1757,
  50924. bottom: 208/2063
  50925. }
  50926. },
  50927. },
  50928. [
  50929. {
  50930. name: "Normal",
  50931. height: math.unit(165, "feet"),
  50932. default: true
  50933. },
  50934. ]
  50935. ))
  50936. characterMakers.push(() => makeCharacter(
  50937. { name: "Winter", species: ["arcanine"], tags: ["feral"] },
  50938. {
  50939. feral: {
  50940. height: math.unit(12, "feet"),
  50941. weight: math.unit(20000, "lb"),
  50942. name: "Side",
  50943. image: {
  50944. source: "./media/characters/winter/feral.svg",
  50945. extra: 1286/943,
  50946. bottom: 112/1398
  50947. },
  50948. form: "feral",
  50949. default: true
  50950. },
  50951. feralNsfw: {
  50952. height: math.unit(12, "feet"),
  50953. weight: math.unit(20000, "lb"),
  50954. name: "Side (NSFW)",
  50955. image: {
  50956. source: "./media/characters/winter/feral-nsfw.svg",
  50957. extra: 1286/943,
  50958. bottom: 112/1398
  50959. },
  50960. form: "feral"
  50961. },
  50962. dick: {
  50963. height: math.unit(3.79, "feet"),
  50964. name: "Dick",
  50965. image: {
  50966. source: "./media/characters/winter/dick.svg"
  50967. },
  50968. form: "feral"
  50969. },
  50970. anthro: {
  50971. height: math.unit(12, "feet"),
  50972. weight: math.unit(10, "tons"),
  50973. name: "Anthro",
  50974. image: {
  50975. source: "./media/characters/winter/anthro.svg",
  50976. extra: 1701/1553,
  50977. bottom: 64/1765
  50978. },
  50979. form: "anthro",
  50980. default: true
  50981. },
  50982. },
  50983. [
  50984. {
  50985. name: "Big",
  50986. height: math.unit(12, "feet"),
  50987. default: true,
  50988. form: "feral"
  50989. },
  50990. {
  50991. name: "Big",
  50992. height: math.unit(12, "feet"),
  50993. default: true,
  50994. form: "anthro"
  50995. },
  50996. ],
  50997. {
  50998. "feral": {
  50999. name: "Feral",
  51000. default: true
  51001. },
  51002. "anthro": {
  51003. name: "Anthro"
  51004. }
  51005. }
  51006. ))
  51007. characterMakers.push(() => makeCharacter(
  51008. { name: "Alto", species: ["mouse", "chinchilla"], tags: ["anthro"] },
  51009. {
  51010. front: {
  51011. height: math.unit(4.1, "inches"),
  51012. name: "Front",
  51013. image: {
  51014. source: "./media/characters/alto/front.svg",
  51015. extra: 736/627,
  51016. bottom: 90/826
  51017. }
  51018. },
  51019. },
  51020. [
  51021. {
  51022. name: "Normal",
  51023. height: math.unit(4.1, "inches"),
  51024. default: true
  51025. },
  51026. ]
  51027. ))
  51028. characterMakers.push(() => makeCharacter(
  51029. { name: "Ratstrid V", species: ["opossum"], tags: ["anthro"] },
  51030. {
  51031. sitting: {
  51032. height: math.unit(3, "feet"),
  51033. name: "Sitting",
  51034. image: {
  51035. source: "./media/characters/ratstrid-v/sitting.svg",
  51036. extra: 355/310,
  51037. bottom: 136/491
  51038. }
  51039. },
  51040. },
  51041. [
  51042. {
  51043. name: "Normal",
  51044. height: math.unit(3, "feet"),
  51045. default: true
  51046. },
  51047. ]
  51048. ))
  51049. characterMakers.push(() => makeCharacter(
  51050. { name: "Siz", species: ["cinderace"], tags: ["anthro"] },
  51051. {
  51052. back: {
  51053. height: math.unit(6, "feet"),
  51054. weight: math.unit(450, "lb"),
  51055. name: "Back",
  51056. image: {
  51057. source: "./media/characters/siz/back.svg",
  51058. extra: 1449/1274,
  51059. bottom: 13/1462
  51060. }
  51061. },
  51062. },
  51063. [
  51064. {
  51065. name: "Smallest",
  51066. height: math.unit(18 + 3/12, "feet")
  51067. },
  51068. {
  51069. name: "Modest",
  51070. height: math.unit(56 + 8/12, "feet"),
  51071. default: true
  51072. },
  51073. {
  51074. name: "Largest",
  51075. height: math.unit(3590, "feet")
  51076. },
  51077. ]
  51078. ))
  51079. characterMakers.push(() => makeCharacter(
  51080. { name: "Ven", species: ["raven"], tags: ["anthro"] },
  51081. {
  51082. front: {
  51083. height: math.unit(5 + 9/12, "feet"),
  51084. weight: math.unit(150, "lb"),
  51085. name: "Front",
  51086. image: {
  51087. source: "./media/characters/ven/front.svg",
  51088. extra: 1372/1320,
  51089. bottom: 73/1445
  51090. }
  51091. },
  51092. side: {
  51093. height: math.unit(5 + 9/12, "feet"),
  51094. weight: math.unit(1150, "lb"),
  51095. name: "Side",
  51096. image: {
  51097. source: "./media/characters/ven/side.svg",
  51098. extra: 1119/1070,
  51099. bottom: 42/1161
  51100. },
  51101. default: true
  51102. },
  51103. },
  51104. [
  51105. {
  51106. name: "Normal",
  51107. height: math.unit(5 + 9/12, "feet"),
  51108. default: true
  51109. },
  51110. ]
  51111. ))
  51112. characterMakers.push(() => makeCharacter(
  51113. { name: "Maple", species: ["caudin"], tags: ["anthro"] },
  51114. {
  51115. front: {
  51116. height: math.unit(12, "feet"),
  51117. weight: math.unit(1000, "kg"),
  51118. name: "Front",
  51119. image: {
  51120. source: "./media/characters/maple/front.svg",
  51121. extra: 1193/1081,
  51122. bottom: 22/1215
  51123. }
  51124. },
  51125. },
  51126. [
  51127. {
  51128. name: "Compressed",
  51129. height: math.unit(7, "feet")
  51130. },
  51131. {
  51132. name: "Normal",
  51133. height: math.unit(12, "feet"),
  51134. default: true
  51135. },
  51136. ]
  51137. ))
  51138. characterMakers.push(() => makeCharacter(
  51139. { name: "Nora", species: ["blaziken"], tags: ["anthro"] },
  51140. {
  51141. front: {
  51142. height: math.unit(9, "feet"),
  51143. weight: math.unit(1500, "lb"),
  51144. name: "Front",
  51145. image: {
  51146. source: "./media/characters/nora/front.svg",
  51147. extra: 1348/1286,
  51148. bottom: 218/1566
  51149. }
  51150. },
  51151. erect: {
  51152. height: math.unit(9, "feet"),
  51153. weight: math.unit(11500, "lb"),
  51154. name: "Erect",
  51155. image: {
  51156. source: "./media/characters/nora/erect.svg",
  51157. extra: 1488/1433,
  51158. bottom: 133/1621
  51159. }
  51160. },
  51161. },
  51162. [
  51163. {
  51164. name: "Normal",
  51165. height: math.unit(9, "feet"),
  51166. default: true
  51167. },
  51168. ]
  51169. ))
  51170. characterMakers.push(() => makeCharacter(
  51171. { name: "North (Caudin)", species: ["caudin"], tags: ["anthro"] },
  51172. {
  51173. front: {
  51174. height: math.unit(25, "feet"),
  51175. weight: math.unit(27500, "lb"),
  51176. name: "Front",
  51177. image: {
  51178. source: "./media/characters/north-caudin/front.svg",
  51179. extra: 1184/1082,
  51180. bottom: 23/1207
  51181. }
  51182. },
  51183. },
  51184. [
  51185. {
  51186. name: "Compressed",
  51187. height: math.unit(10, "feet")
  51188. },
  51189. {
  51190. name: "Normal",
  51191. height: math.unit(25, "feet"),
  51192. default: true
  51193. },
  51194. ]
  51195. ))
  51196. characterMakers.push(() => makeCharacter(
  51197. { name: "Merrian", species: ["caudin", "avian"], tags: ["anthro"] },
  51198. {
  51199. front: {
  51200. height: math.unit(9, "feet"),
  51201. weight: math.unit(1250, "lb"),
  51202. name: "Front",
  51203. image: {
  51204. source: "./media/characters/merrian/front.svg",
  51205. extra: 2393/2304,
  51206. bottom: 40/2433
  51207. }
  51208. },
  51209. },
  51210. [
  51211. {
  51212. name: "Normal",
  51213. height: math.unit(9, "feet"),
  51214. default: true
  51215. },
  51216. ]
  51217. ))
  51218. characterMakers.push(() => makeCharacter(
  51219. { name: "Hazel", species: ["red-winged-blackbird"], tags: ["anthro"] },
  51220. {
  51221. front: {
  51222. height: math.unit(9, "feet"),
  51223. weight: math.unit(1000, "lb"),
  51224. name: "Front",
  51225. image: {
  51226. source: "./media/characters/hazel/front.svg",
  51227. extra: 2351/2298,
  51228. bottom: 38/2389
  51229. }
  51230. },
  51231. },
  51232. [
  51233. {
  51234. name: "Normal",
  51235. height: math.unit(9, "feet"),
  51236. default: true
  51237. },
  51238. ]
  51239. ))
  51240. characterMakers.push(() => makeCharacter(
  51241. { name: "Emma", species: ["caudin"], tags: ["anthro"] },
  51242. {
  51243. front: {
  51244. height: math.unit(13, "feet"),
  51245. weight: math.unit(3200, "lb"),
  51246. name: "Front",
  51247. image: {
  51248. source: "./media/characters/emma/front.svg",
  51249. extra: 2263/2029,
  51250. bottom: 68/2331
  51251. }
  51252. },
  51253. },
  51254. [
  51255. {
  51256. name: "Normal",
  51257. height: math.unit(13, "feet"),
  51258. default: true
  51259. },
  51260. ]
  51261. ))
  51262. characterMakers.push(() => makeCharacter(
  51263. { name: "Ilumina", species: ["hooded-wheater"], tags: ["anthro"] },
  51264. {
  51265. front: {
  51266. height: math.unit(11 + 9/12, "feet"),
  51267. weight: math.unit(2500, "lb"),
  51268. name: "Front",
  51269. image: {
  51270. source: "./media/characters/ilumina/front.svg",
  51271. extra: 2248/2209,
  51272. bottom: 164/2412
  51273. }
  51274. },
  51275. },
  51276. [
  51277. {
  51278. name: "Normal",
  51279. height: math.unit(11 + 9/12, "feet"),
  51280. default: true
  51281. },
  51282. ]
  51283. ))
  51284. characterMakers.push(() => makeCharacter(
  51285. { name: "Moonshine", species: ["caudin"], tags: ["anthro"] },
  51286. {
  51287. front: {
  51288. height: math.unit(8 + 10/12, "feet"),
  51289. weight: math.unit(1350, "lb"),
  51290. name: "Front",
  51291. image: {
  51292. source: "./media/characters/moonshine/front.svg",
  51293. extra: 2395/2288,
  51294. bottom: 40/2435
  51295. }
  51296. },
  51297. },
  51298. [
  51299. {
  51300. name: "Normal",
  51301. height: math.unit(8 + 10/12, "feet"),
  51302. default: true
  51303. },
  51304. ]
  51305. ))
  51306. characterMakers.push(() => makeCharacter(
  51307. { name: "Aletia", species: ["caudin"], tags: ["anthro"] },
  51308. {
  51309. front: {
  51310. height: math.unit(14, "feet"),
  51311. weight: math.unit(3400, "lb"),
  51312. name: "Front",
  51313. image: {
  51314. source: "./media/characters/aletia/front.svg",
  51315. extra: 1185/1052,
  51316. bottom: 21/1206
  51317. }
  51318. },
  51319. },
  51320. [
  51321. {
  51322. name: "Compressed",
  51323. height: math.unit(8, "feet")
  51324. },
  51325. {
  51326. name: "Normal",
  51327. height: math.unit(14, "feet"),
  51328. default: true
  51329. },
  51330. ]
  51331. ))
  51332. characterMakers.push(() => makeCharacter(
  51333. { name: "Deidra", species: ["caudin"], tags: ["anthro"] },
  51334. {
  51335. front: {
  51336. height: math.unit(17, "feet"),
  51337. weight: math.unit(6500, "lb"),
  51338. name: "Front",
  51339. image: {
  51340. source: "./media/characters/deidra/front.svg",
  51341. extra: 1201/1081,
  51342. bottom: 16/1217
  51343. }
  51344. },
  51345. },
  51346. [
  51347. {
  51348. name: "Compressed",
  51349. height: math.unit(9 + 6/12, "feet")
  51350. },
  51351. {
  51352. name: "Normal",
  51353. height: math.unit(17, "feet"),
  51354. default: true
  51355. },
  51356. ]
  51357. ))
  51358. characterMakers.push(() => makeCharacter(
  51359. { name: "Freki Yrmori", species: ["folf"], tags: ["anthro"] },
  51360. {
  51361. front: {
  51362. height: math.unit(7 + 4/12, "feet"),
  51363. weight: math.unit(280, "lb"),
  51364. name: "Front",
  51365. image: {
  51366. source: "./media/characters/freki-yrmori/front.svg",
  51367. extra: 1286/1182,
  51368. bottom: 29/1315
  51369. }
  51370. },
  51371. maw: {
  51372. height: math.unit(0.9, "feet"),
  51373. name: "Maw",
  51374. image: {
  51375. source: "./media/characters/freki-yrmori/maw.svg"
  51376. }
  51377. },
  51378. },
  51379. [
  51380. {
  51381. name: "Normal",
  51382. height: math.unit(7 + 4/12, "feet"),
  51383. default: true
  51384. },
  51385. {
  51386. name: "Macro",
  51387. height: math.unit(38.5, "meters")
  51388. },
  51389. ]
  51390. ))
  51391. characterMakers.push(() => makeCharacter(
  51392. { name: "Aetherios", species: ["dragon"], tags: ["feral"] },
  51393. {
  51394. side: {
  51395. height: math.unit(47.2, "meters"),
  51396. weight: math.unit(10000, "tons"),
  51397. name: "Side",
  51398. image: {
  51399. source: "./media/characters/aetherios/side.svg",
  51400. extra: 2363/642,
  51401. bottom: 221/2584
  51402. }
  51403. },
  51404. top: {
  51405. height: math.unit(240, "meters"),
  51406. weight: math.unit(10000, "tons"),
  51407. name: "Top",
  51408. image: {
  51409. source: "./media/characters/aetherios/top.svg"
  51410. }
  51411. },
  51412. bottom: {
  51413. height: math.unit(240, "meters"),
  51414. weight: math.unit(10000, "tons"),
  51415. name: "Bottom",
  51416. image: {
  51417. source: "./media/characters/aetherios/bottom.svg"
  51418. }
  51419. },
  51420. head: {
  51421. height: math.unit(38.6, "meters"),
  51422. name: "Head",
  51423. image: {
  51424. source: "./media/characters/aetherios/head.svg",
  51425. extra: 1335/1112,
  51426. bottom: 0/1335
  51427. }
  51428. },
  51429. front: {
  51430. height: math.unit(29, "meters"),
  51431. name: "Front",
  51432. image: {
  51433. source: "./media/characters/aetherios/front.svg",
  51434. extra: 1266/953,
  51435. bottom: 158/1424
  51436. }
  51437. },
  51438. maw: {
  51439. height: math.unit(16.37, "meters"),
  51440. name: "Maw",
  51441. image: {
  51442. source: "./media/characters/aetherios/maw.svg",
  51443. extra: 748/637,
  51444. bottom: 0/748
  51445. },
  51446. extraAttributes: {
  51447. preyCapacity: {
  51448. name: "Capacity",
  51449. power: 3,
  51450. type: "volume",
  51451. base: math.unit(1000, "people")
  51452. },
  51453. tongueSize: {
  51454. name: "Tongue Size",
  51455. power: 2,
  51456. type: "area",
  51457. base: math.unit(21, "m^2")
  51458. }
  51459. }
  51460. },
  51461. forepaw: {
  51462. height: math.unit(18, "meters"),
  51463. name: "Forepaw",
  51464. image: {
  51465. source: "./media/characters/aetherios/forepaw.svg"
  51466. }
  51467. },
  51468. hindpaw: {
  51469. height: math.unit(23, "meters"),
  51470. name: "Hindpaw",
  51471. image: {
  51472. source: "./media/characters/aetherios/hindpaw.svg"
  51473. }
  51474. },
  51475. genitals: {
  51476. height: math.unit(42, "meters"),
  51477. name: "Genitals",
  51478. image: {
  51479. source: "./media/characters/aetherios/genitals.svg"
  51480. }
  51481. },
  51482. },
  51483. [
  51484. {
  51485. name: "Normal",
  51486. height: math.unit(47.2, "meters"),
  51487. default: true
  51488. },
  51489. {
  51490. name: "Macro",
  51491. height: math.unit(160, "meters")
  51492. },
  51493. {
  51494. name: "Mega",
  51495. height: math.unit(1.87, "km")
  51496. },
  51497. {
  51498. name: "Giga",
  51499. height: math.unit(40000, "km")
  51500. },
  51501. {
  51502. name: "Stellar",
  51503. height: math.unit(158000000, "km")
  51504. },
  51505. {
  51506. name: "Cosmic",
  51507. height: math.unit(9.46e12, "km")
  51508. },
  51509. ]
  51510. ))
  51511. characterMakers.push(() => makeCharacter(
  51512. { name: "Mizu (Gieeg)", species: ["gieeg"], tags: ["anthro"] },
  51513. {
  51514. front: {
  51515. height: math.unit(5 + 4/12, "feet"),
  51516. weight: math.unit(80, "lb"),
  51517. name: "Front",
  51518. image: {
  51519. source: "./media/characters/mizu-gieeg/front.svg",
  51520. extra: 850/709,
  51521. bottom: 52/902
  51522. }
  51523. },
  51524. back: {
  51525. height: math.unit(5 + 4/12, "feet"),
  51526. weight: math.unit(80, "lb"),
  51527. name: "Back",
  51528. image: {
  51529. source: "./media/characters/mizu-gieeg/back.svg",
  51530. extra: 882/745,
  51531. bottom: 25/907
  51532. }
  51533. },
  51534. },
  51535. [
  51536. {
  51537. name: "Normal",
  51538. height: math.unit(5 + 4/12, "feet"),
  51539. default: true
  51540. },
  51541. ]
  51542. ))
  51543. characterMakers.push(() => makeCharacter(
  51544. { name: "Roselle St. Papier", species: ["ringtail"], tags: ["anthro"] },
  51545. {
  51546. front: {
  51547. height: math.unit(6, "feet"),
  51548. name: "Front",
  51549. image: {
  51550. source: "./media/characters/roselle-st-papier/front.svg",
  51551. extra: 1430/1280,
  51552. bottom: 37/1467
  51553. }
  51554. },
  51555. back: {
  51556. height: math.unit(6, "feet"),
  51557. name: "Back",
  51558. image: {
  51559. source: "./media/characters/roselle-st-papier/back.svg",
  51560. extra: 1491/1296,
  51561. bottom: 23/1514
  51562. }
  51563. },
  51564. ear: {
  51565. height: math.unit(1.26, "feet"),
  51566. name: "Ear",
  51567. image: {
  51568. source: "./media/characters/roselle-st-papier/ear.svg"
  51569. }
  51570. },
  51571. },
  51572. [
  51573. {
  51574. name: "Normal",
  51575. height: math.unit(150, "feet"),
  51576. default: true
  51577. },
  51578. ]
  51579. ))
  51580. characterMakers.push(() => makeCharacter(
  51581. { name: "Valargent", species: ["fox"], tags: ["anthro"] },
  51582. {
  51583. front: {
  51584. height: math.unit(1, "inches"),
  51585. name: "Front",
  51586. image: {
  51587. source: "./media/characters/valargent/front.svg",
  51588. extra: 1825/1694,
  51589. bottom: 62/1887
  51590. }
  51591. },
  51592. back: {
  51593. height: math.unit(1, "inches"),
  51594. name: "Back",
  51595. image: {
  51596. source: "./media/characters/valargent/back.svg",
  51597. extra: 1775/1682,
  51598. bottom: 88/1863
  51599. }
  51600. },
  51601. },
  51602. [
  51603. {
  51604. name: "Micro",
  51605. height: math.unit(1, "inch"),
  51606. default: true
  51607. },
  51608. ]
  51609. ))
  51610. characterMakers.push(() => makeCharacter(
  51611. { name: "Zarina", species: ["hisuian-zoroark"], tags: ["anthro"] },
  51612. {
  51613. front: {
  51614. height: math.unit(3.4, "meters"),
  51615. name: "Front",
  51616. image: {
  51617. source: "./media/characters/zarina/front.svg",
  51618. extra: 1733/1425,
  51619. bottom: 93/1826
  51620. }
  51621. },
  51622. squatting: {
  51623. height: math.unit(2.14, "meters"),
  51624. name: "Squatting",
  51625. image: {
  51626. source: "./media/characters/zarina/squatting.svg",
  51627. extra: 1073/788,
  51628. bottom: 63/1136
  51629. }
  51630. },
  51631. back: {
  51632. height: math.unit(2.14, "meters"),
  51633. name: "Back",
  51634. image: {
  51635. source: "./media/characters/zarina/back.svg",
  51636. extra: 1128/885,
  51637. bottom: 0/1128
  51638. }
  51639. },
  51640. },
  51641. [
  51642. {
  51643. name: "Normal",
  51644. height: math.unit(3.4, "meters"),
  51645. default: true
  51646. },
  51647. {
  51648. name: "Big",
  51649. height: math.unit(5, "meters")
  51650. },
  51651. {
  51652. name: "Macro",
  51653. height: math.unit(110, "meters")
  51654. },
  51655. ]
  51656. ))
  51657. characterMakers.push(() => makeCharacter(
  51658. { name: "VentusAstroFox", species: ["fox"], tags: ["anthro"] },
  51659. {
  51660. front: {
  51661. height: math.unit(7, "feet"),
  51662. name: "Front",
  51663. image: {
  51664. source: "./media/characters/ventus-astro-fox/front.svg",
  51665. extra: 1792/1623,
  51666. bottom: 28/1820
  51667. }
  51668. },
  51669. back: {
  51670. height: math.unit(7, "feet"),
  51671. name: "Back",
  51672. image: {
  51673. source: "./media/characters/ventus-astro-fox/back.svg",
  51674. extra: 1789/1620,
  51675. bottom: 31/1820
  51676. }
  51677. },
  51678. outfit: {
  51679. height: math.unit(7, "feet"),
  51680. name: "Outfit",
  51681. image: {
  51682. source: "./media/characters/ventus-astro-fox/outfit.svg",
  51683. extra: 1054/925,
  51684. bottom: 15/1069
  51685. }
  51686. },
  51687. head: {
  51688. height: math.unit(1.12, "feet"),
  51689. name: "Head",
  51690. image: {
  51691. source: "./media/characters/ventus-astro-fox/head.svg",
  51692. extra: 866/504,
  51693. bottom: 0/866
  51694. }
  51695. },
  51696. hand: {
  51697. height: math.unit(1, "feet"),
  51698. name: "Hand",
  51699. image: {
  51700. source: "./media/characters/ventus-astro-fox/hand.svg"
  51701. }
  51702. },
  51703. paw: {
  51704. height: math.unit(1.5, "feet"),
  51705. name: "Paw",
  51706. image: {
  51707. source: "./media/characters/ventus-astro-fox/paw.svg"
  51708. }
  51709. },
  51710. },
  51711. [
  51712. {
  51713. name: "Normal",
  51714. height: math.unit(7, "feet"),
  51715. default: true
  51716. },
  51717. {
  51718. name: "Macro",
  51719. height: math.unit(200, "feet")
  51720. },
  51721. {
  51722. name: "Cosmic",
  51723. height: math.unit(3, "universes")
  51724. },
  51725. ]
  51726. ))
  51727. characterMakers.push(() => makeCharacter(
  51728. { name: "CORE-T", species: ["cybeast"], tags: ["anthro"] },
  51729. {
  51730. front: {
  51731. height: math.unit(3, "meters"),
  51732. weight: math.unit(7000, "lb"),
  51733. name: "Front",
  51734. image: {
  51735. source: "./media/characters/core-t/front.svg",
  51736. extra: 5729/4941,
  51737. bottom: 1129/6858
  51738. }
  51739. },
  51740. },
  51741. [
  51742. {
  51743. name: "Big",
  51744. height: math.unit(3, "meters"),
  51745. default: true
  51746. },
  51747. ]
  51748. ))
  51749. characterMakers.push(() => makeCharacter(
  51750. { name: "Cadbunny", species: ["cinderace"], tags: ["anthro"] },
  51751. {
  51752. normal: {
  51753. height: math.unit(6 + 6/12, "feet"),
  51754. weight: math.unit(275, "lb"),
  51755. name: "Front",
  51756. image: {
  51757. source: "./media/characters/cadbunny/normal.svg",
  51758. extra: 1129/947,
  51759. bottom: 93/1222
  51760. },
  51761. default: true,
  51762. form: "normal"
  51763. },
  51764. gigantamax: {
  51765. height: math.unit(26, "feet"),
  51766. weight: math.unit(16000, "lb"),
  51767. name: "Front",
  51768. image: {
  51769. source: "./media/characters/cadbunny/gigantamax.svg",
  51770. extra: 1133/944,
  51771. bottom: 90/1223
  51772. },
  51773. default: true,
  51774. form: "gigantamax"
  51775. },
  51776. },
  51777. [
  51778. {
  51779. name: "Normal",
  51780. height: math.unit(6 + 6/12, "feet"),
  51781. default: true,
  51782. form: "normal"
  51783. },
  51784. {
  51785. name: "Small",
  51786. height: math.unit(26, "feet"),
  51787. default: true,
  51788. form: "gigantamax"
  51789. },
  51790. {
  51791. name: "Large",
  51792. height: math.unit(78, "feet"),
  51793. form: "gigantamax"
  51794. },
  51795. ],
  51796. {
  51797. "normal": {
  51798. name: "Normal",
  51799. default: true
  51800. },
  51801. "gigantamax": {
  51802. name: "Gigantamax"
  51803. }
  51804. }
  51805. ))
  51806. characterMakers.push(() => makeCharacter(
  51807. { name: "Blitz Dunkelheit", species: ["wolf"], tags: ["anthro", "feral"] },
  51808. {
  51809. anthroFront: {
  51810. height: math.unit(8, "feet"),
  51811. weight: math.unit(300, "lb"),
  51812. name: "Front",
  51813. image: {
  51814. source: "./media/characters/blitz-dunkelheit/anthro-front.svg",
  51815. extra: 1272/1176,
  51816. bottom: 53/1325
  51817. },
  51818. form: "anthro",
  51819. default: true
  51820. },
  51821. feralSide: {
  51822. height: math.unit(4, "feet"),
  51823. weight: math.unit(250, "lb"),
  51824. name: "Side",
  51825. image: {
  51826. source: "./media/characters/blitz-dunkelheit/feral-side.svg",
  51827. extra: 731/621,
  51828. bottom: 0/731
  51829. },
  51830. form: "feral",
  51831. default: true
  51832. },
  51833. },
  51834. [
  51835. {
  51836. name: "Regular",
  51837. height: math.unit(8, "feet"),
  51838. form: "anthro"
  51839. },
  51840. {
  51841. name: "Macro",
  51842. height: math.unit(250, "feet"),
  51843. form: "anthro",
  51844. default: true
  51845. },
  51846. {
  51847. name: "Regular",
  51848. height: math.unit(4, "feet"),
  51849. form: "feral"
  51850. },
  51851. {
  51852. name: "Macro",
  51853. height: math.unit(125, "feet"),
  51854. form: "feral",
  51855. default: true
  51856. },
  51857. ],
  51858. {
  51859. "anthro": {
  51860. name: "Anthro",
  51861. default: true
  51862. },
  51863. "feral": {
  51864. name: "Feral",
  51865. },
  51866. }
  51867. ))
  51868. characterMakers.push(() => makeCharacter(
  51869. { name: "Maple (Javira Dragon)", species: ["javira-dragon"], tags: ["feral"] },
  51870. {
  51871. front: {
  51872. height: math.unit(11 + 10/12, "feet"),
  51873. weight: math.unit(1587, "kg"),
  51874. name: "Front",
  51875. image: {
  51876. source: "./media/characters/maple-javira-dragon/front.svg",
  51877. extra: 1136/744,
  51878. bottom: 73/1209
  51879. }
  51880. },
  51881. side: {
  51882. height: math.unit(11 + 10/12, "feet"),
  51883. weight: math.unit(1587, "kg"),
  51884. name: "Side",
  51885. image: {
  51886. source: "./media/characters/maple-javira-dragon/side.svg",
  51887. extra: 712/505,
  51888. bottom: 17/729
  51889. }
  51890. },
  51891. head: {
  51892. height: math.unit(8.05, "feet"),
  51893. name: "Head",
  51894. image: {
  51895. source: "./media/characters/maple-javira-dragon/head.svg",
  51896. extra: 1420/1344,
  51897. bottom: 0/1420
  51898. }
  51899. },
  51900. },
  51901. [
  51902. {
  51903. name: "Normal",
  51904. height: math.unit(11 + 10/12, "feet"),
  51905. default: true
  51906. },
  51907. ]
  51908. ))
  51909. characterMakers.push(() => makeCharacter(
  51910. { name: "Sonia Wyverntail", species: ["kobold"], tags: ["anthro"] },
  51911. {
  51912. front: {
  51913. height: math.unit(117, "cm"),
  51914. weight: math.unit(50, "kg"),
  51915. name: "Front",
  51916. image: {
  51917. source: "./media/characters/sonia-wyverntail/front.svg",
  51918. extra: 708/592,
  51919. bottom: 25/733
  51920. }
  51921. },
  51922. },
  51923. [
  51924. {
  51925. name: "Normal",
  51926. height: math.unit(117, "cm"),
  51927. default: true
  51928. },
  51929. ]
  51930. ))
  51931. characterMakers.push(() => makeCharacter(
  51932. { name: "Micah", species: ["moth"], tags: ["anthro"] },
  51933. {
  51934. front: {
  51935. height: math.unit(6 + 5/12, "feet"),
  51936. name: "Front",
  51937. image: {
  51938. source: "./media/characters/micah/front.svg",
  51939. extra: 1758/1546,
  51940. bottom: 214/1972
  51941. }
  51942. },
  51943. },
  51944. [
  51945. {
  51946. name: "Normal",
  51947. height: math.unit(6 + 5/12, "feet"),
  51948. default: true
  51949. },
  51950. ]
  51951. ))
  51952. characterMakers.push(() => makeCharacter(
  51953. { name: "Zarya", species: ["skunk"], tags: ["anthro"] },
  51954. {
  51955. front: {
  51956. height: math.unit(1.75, "meters"),
  51957. weight: math.unit(100, "kg"),
  51958. name: "Front",
  51959. image: {
  51960. source: "./media/characters/zarya/front.svg",
  51961. extra: 741/735,
  51962. bottom: 44/785
  51963. },
  51964. extraAttributes: {
  51965. "tailLength": {
  51966. name: "Tail Length",
  51967. power: 1,
  51968. type: "length",
  51969. base: math.unit(180, "cm")
  51970. },
  51971. "pawLength": {
  51972. name: "Paw Length",
  51973. power: 1,
  51974. type: "length",
  51975. base: math.unit(31, "cm")
  51976. },
  51977. }
  51978. },
  51979. side: {
  51980. height: math.unit(1.75, "meters"),
  51981. weight: math.unit(100, "kg"),
  51982. name: "Side",
  51983. image: {
  51984. source: "./media/characters/zarya/side.svg",
  51985. extra: 776/770,
  51986. bottom: 17/793
  51987. },
  51988. extraAttributes: {
  51989. "tailLength": {
  51990. name: "Tail Length",
  51991. power: 1,
  51992. type: "length",
  51993. base: math.unit(180, "cm")
  51994. },
  51995. "pawLength": {
  51996. name: "Paw Length",
  51997. power: 1,
  51998. type: "length",
  51999. base: math.unit(31, "cm")
  52000. },
  52001. }
  52002. },
  52003. back: {
  52004. height: math.unit(1.75, "meters"),
  52005. weight: math.unit(100, "kg"),
  52006. name: "Back",
  52007. image: {
  52008. source: "./media/characters/zarya/back.svg",
  52009. extra: 741/735,
  52010. bottom: 44/785
  52011. },
  52012. extraAttributes: {
  52013. "tailLength": {
  52014. name: "Tail Length",
  52015. power: 1,
  52016. type: "length",
  52017. base: math.unit(180, "cm")
  52018. },
  52019. "pawLength": {
  52020. name: "Paw Length",
  52021. power: 1,
  52022. type: "length",
  52023. base: math.unit(31, "cm")
  52024. },
  52025. }
  52026. },
  52027. frontNoTail: {
  52028. height: math.unit(1.75, "meters"),
  52029. weight: math.unit(100, "kg"),
  52030. name: "Front (No Tail)",
  52031. image: {
  52032. source: "./media/characters/zarya/front-no-tail.svg",
  52033. extra: 741/735,
  52034. bottom: 44/785
  52035. },
  52036. extraAttributes: {
  52037. "tailLength": {
  52038. name: "Tail Length",
  52039. power: 1,
  52040. type: "length",
  52041. base: math.unit(180, "cm")
  52042. },
  52043. "pawLength": {
  52044. name: "Paw Length",
  52045. power: 1,
  52046. type: "length",
  52047. base: math.unit(31, "cm")
  52048. },
  52049. }
  52050. },
  52051. dressed: {
  52052. height: math.unit(1.75, "meters"),
  52053. weight: math.unit(100, "kg"),
  52054. name: "Dressed",
  52055. image: {
  52056. source: "./media/characters/zarya/dressed.svg",
  52057. extra: 683/672,
  52058. bottom: 79/762
  52059. },
  52060. extraAttributes: {
  52061. "tailLength": {
  52062. name: "Tail Length",
  52063. power: 1,
  52064. type: "length",
  52065. base: math.unit(180, "cm")
  52066. },
  52067. "pawLength": {
  52068. name: "Paw Length",
  52069. power: 1,
  52070. type: "length",
  52071. base: math.unit(31, "cm")
  52072. },
  52073. }
  52074. },
  52075. },
  52076. [
  52077. {
  52078. name: "Micro",
  52079. height: math.unit(5, "cm")
  52080. },
  52081. {
  52082. name: "Normal",
  52083. height: math.unit(1.75, "meters"),
  52084. default: true
  52085. },
  52086. {
  52087. name: "Macro",
  52088. height: math.unit(122, "meters")
  52089. },
  52090. ]
  52091. ))
  52092. characterMakers.push(() => makeCharacter(
  52093. { name: "Sven Hatisson", species: ["wolf"], tags: ["anthro"] },
  52094. {
  52095. front: {
  52096. height: math.unit(7.5, "feet"),
  52097. name: "Front",
  52098. image: {
  52099. source: "./media/characters/sven-hatisson/front.svg",
  52100. extra: 917/857,
  52101. bottom: 42/959
  52102. }
  52103. },
  52104. back: {
  52105. height: math.unit(7.5, "feet"),
  52106. name: "Back",
  52107. image: {
  52108. source: "./media/characters/sven-hatisson/back.svg",
  52109. extra: 903/856,
  52110. bottom: 15/918
  52111. }
  52112. },
  52113. },
  52114. [
  52115. {
  52116. name: "Base Height",
  52117. height: math.unit(7.5, "feet")
  52118. },
  52119. {
  52120. name: "Usual Height",
  52121. height: math.unit(13.5, "feet"),
  52122. default: true
  52123. },
  52124. {
  52125. name: "Smaller Macro",
  52126. height: math.unit(85, "feet")
  52127. },
  52128. {
  52129. name: "Moderate Macro",
  52130. height: math.unit(320, "feet")
  52131. },
  52132. {
  52133. name: "Large Macro",
  52134. height: math.unit(1000, "feet")
  52135. },
  52136. {
  52137. name: "Largest Size",
  52138. height: math.unit(2, "miles")
  52139. },
  52140. ]
  52141. ))
  52142. characterMakers.push(() => makeCharacter(
  52143. { name: "Terra", species: ["dragon", "otter"], tags: ["feral"] },
  52144. {
  52145. side: {
  52146. height: math.unit(1.8, "meters"),
  52147. weight: math.unit(275, "kg"),
  52148. name: "Side",
  52149. image: {
  52150. source: "./media/characters/terra/side.svg",
  52151. extra: 1273/1147,
  52152. bottom: 0/1273
  52153. }
  52154. },
  52155. },
  52156. [
  52157. {
  52158. name: "Normal",
  52159. height: math.unit(16.2, "meters"),
  52160. default: true
  52161. },
  52162. ]
  52163. ))
  52164. characterMakers.push(() => makeCharacter(
  52165. { name: "Rae", species: ["borzoi", "werewolf"], tags: ["anthro"] },
  52166. {
  52167. borzoiFront: {
  52168. height: math.unit(6 + 9/12, "feet"),
  52169. name: "Front",
  52170. image: {
  52171. source: "./media/characters/rae/borzoi-front.svg",
  52172. extra: 1161/1098,
  52173. bottom: 31/1192
  52174. },
  52175. form: "borzoi",
  52176. default: true
  52177. },
  52178. werewolfFront: {
  52179. height: math.unit(8 + 7/12, "feet"),
  52180. name: "Front",
  52181. image: {
  52182. source: "./media/characters/rae/werewolf-front.svg",
  52183. extra: 1411/1334,
  52184. bottom: 127/1538
  52185. },
  52186. form: "werewolf",
  52187. default: true
  52188. },
  52189. },
  52190. [
  52191. {
  52192. name: "Normal",
  52193. height: math.unit(6 + 9/12, "feet"),
  52194. default: true,
  52195. form: "borzoi"
  52196. },
  52197. {
  52198. name: "Normal",
  52199. height: math.unit(8 + 7/12, "feet"),
  52200. default: true,
  52201. form: "werewolf"
  52202. },
  52203. ],
  52204. {
  52205. "borzoi": {
  52206. name: "Borzoi",
  52207. default: true
  52208. },
  52209. "werewolf": {
  52210. name: "Werewolf",
  52211. },
  52212. }
  52213. ))
  52214. characterMakers.push(() => makeCharacter(
  52215. { name: "Kit", species: ["kitsune"], tags: ["anthro"] },
  52216. {
  52217. front: {
  52218. height: math.unit(8 + 7/12, "feet"),
  52219. weight: math.unit(482, "lb"),
  52220. name: "Front",
  52221. image: {
  52222. source: "./media/characters/kit/front.svg",
  52223. extra: 1247/1103,
  52224. bottom: 41/1288
  52225. }
  52226. },
  52227. back: {
  52228. height: math.unit(8 + 7/12, "feet"),
  52229. weight: math.unit(482, "lb"),
  52230. name: "Back",
  52231. image: {
  52232. source: "./media/characters/kit/back.svg",
  52233. extra: 1252/1123,
  52234. bottom: 21/1273
  52235. }
  52236. },
  52237. paw: {
  52238. height: math.unit(1.46, "feet"),
  52239. name: "Paw",
  52240. image: {
  52241. source: "./media/characters/kit/paw.svg"
  52242. }
  52243. },
  52244. },
  52245. [
  52246. {
  52247. name: "Normal",
  52248. height: math.unit(2.61, "meters"),
  52249. default: true
  52250. },
  52251. {
  52252. name: "\"Tall\"",
  52253. height: math.unit(8.21, "meters")
  52254. },
  52255. {
  52256. name: "Tall",
  52257. height: math.unit(19.6, "meters")
  52258. },
  52259. {
  52260. name: "Very Tall",
  52261. height: math.unit(57.91, "meters")
  52262. },
  52263. {
  52264. name: "Semi-Macro",
  52265. height: math.unit(138.64, "meters")
  52266. },
  52267. {
  52268. name: "Macro",
  52269. height: math.unit(831.99, "meters")
  52270. },
  52271. {
  52272. name: "EX-Macro",
  52273. height: math.unit(96451121, "meters")
  52274. },
  52275. {
  52276. name: "S1-Omnipotent",
  52277. height: math.unit(4.42074e+9, "meters")
  52278. },
  52279. {
  52280. name: "S2-Omnipotent",
  52281. height: math.unit(9.42074e+17, "meters")
  52282. },
  52283. {
  52284. name: "Omnipotent",
  52285. height: math.unit(4.23112e+24, "meters")
  52286. },
  52287. {
  52288. name: "Hypergod",
  52289. height: math.unit(5.05176e+27, "meters")
  52290. },
  52291. {
  52292. name: "Hypergod-EX",
  52293. height: math.unit(9.45532e+49, "meters")
  52294. },
  52295. {
  52296. name: "Hypergod-SP",
  52297. height: math.unit(9.45532e+195, "meters")
  52298. },
  52299. ]
  52300. ))
  52301. characterMakers.push(() => makeCharacter(
  52302. { name: "Celeste", species: ["raptor", "alien"], tags: ["feral"] },
  52303. {
  52304. side: {
  52305. height: math.unit(0.6, "meters"),
  52306. weight: math.unit(24, "kg"),
  52307. name: "Side",
  52308. image: {
  52309. source: "./media/characters/celeste/side.svg",
  52310. extra: 810/517,
  52311. bottom: 53/863
  52312. }
  52313. },
  52314. },
  52315. [
  52316. {
  52317. name: "Velociraptor",
  52318. height: math.unit(0.6, "meters"),
  52319. default: true
  52320. },
  52321. {
  52322. name: "Utahraptor",
  52323. height: math.unit(1.8, "meters")
  52324. },
  52325. {
  52326. name: "Gallimimus",
  52327. height: math.unit(4.0, "meters")
  52328. },
  52329. {
  52330. name: "Large",
  52331. height: math.unit(20, "meters")
  52332. },
  52333. {
  52334. name: "Planetary",
  52335. height: math.unit(50, "megameters")
  52336. },
  52337. {
  52338. name: "Stellar",
  52339. height: math.unit(1.5, "gigameters")
  52340. },
  52341. {
  52342. name: "Galactic",
  52343. height: math.unit(100, "exameters")
  52344. },
  52345. ]
  52346. ))
  52347. characterMakers.push(() => makeCharacter(
  52348. { name: "Glacia", species: ["koopew"], tags: ["anthro"] },
  52349. {
  52350. front: {
  52351. height: math.unit(6, "feet"),
  52352. weight: math.unit(210, "lb"),
  52353. name: "Front",
  52354. image: {
  52355. source: "./media/characters/glacia/front.svg",
  52356. extra: 958/901,
  52357. bottom: 45/1003
  52358. }
  52359. },
  52360. },
  52361. [
  52362. {
  52363. name: "Macro",
  52364. height: math.unit(1000, "meters"),
  52365. default: true
  52366. },
  52367. ]
  52368. ))
  52369. characterMakers.push(() => makeCharacter(
  52370. { name: "Giri", species: ["giraffe"], tags: ["anthro"] },
  52371. {
  52372. front: {
  52373. height: math.unit(4, "meters"),
  52374. name: "Front",
  52375. image: {
  52376. source: "./media/characters/giri/front.svg",
  52377. extra: 966/894,
  52378. bottom: 21/987
  52379. }
  52380. },
  52381. },
  52382. [
  52383. {
  52384. name: "Normal",
  52385. height: math.unit(4, "meters"),
  52386. default: true
  52387. },
  52388. ]
  52389. ))
  52390. characterMakers.push(() => makeCharacter(
  52391. { name: "Tin", species: ["nevrean"], tags: ["anthro"] },
  52392. {
  52393. back: {
  52394. height: math.unit(4, "feet"),
  52395. weight: math.unit(37, "lb"),
  52396. name: "Back",
  52397. image: {
  52398. source: "./media/characters/tin/back.svg",
  52399. extra: 845/780,
  52400. bottom: 28/873
  52401. }
  52402. },
  52403. },
  52404. [
  52405. {
  52406. name: "Normal",
  52407. height: math.unit(4, "feet"),
  52408. default: true
  52409. },
  52410. ]
  52411. ))
  52412. characterMakers.push(() => makeCharacter(
  52413. { name: "Cadenza Vivace", species: ["titanoboa"], tags: ["feral"] },
  52414. {
  52415. front: {
  52416. height: math.unit(25, "feet"),
  52417. name: "Front",
  52418. image: {
  52419. source: "./media/characters/cadenza-vivace/front.svg",
  52420. extra: 1842/1578,
  52421. bottom: 30/1872
  52422. }
  52423. },
  52424. },
  52425. [
  52426. {
  52427. name: "Macro",
  52428. height: math.unit(25, "feet"),
  52429. default: true
  52430. },
  52431. ]
  52432. ))
  52433. characterMakers.push(() => makeCharacter(
  52434. { name: "Zain", species: ["kangaroo"], tags: ["anthro"] },
  52435. {
  52436. front: {
  52437. height: math.unit(10, "feet"),
  52438. weight: math.unit(625, "kg"),
  52439. name: "Front",
  52440. image: {
  52441. source: "./media/characters/zain/front.svg",
  52442. extra: 1682/1498,
  52443. bottom: 223/1905
  52444. }
  52445. },
  52446. back: {
  52447. height: math.unit(10, "feet"),
  52448. weight: math.unit(625, "kg"),
  52449. name: "Back",
  52450. image: {
  52451. source: "./media/characters/zain/back.svg",
  52452. extra: 1814/1657,
  52453. bottom: 152/1966
  52454. }
  52455. },
  52456. head: {
  52457. height: math.unit(10, "feet"),
  52458. weight: math.unit(625, "kg"),
  52459. name: "Head",
  52460. image: {
  52461. source: "./media/characters/zain/head.svg",
  52462. extra: 1059/762,
  52463. bottom: 0/1059
  52464. }
  52465. },
  52466. },
  52467. [
  52468. {
  52469. name: "Normal",
  52470. height: math.unit(10, "feet"),
  52471. default: true
  52472. },
  52473. ]
  52474. ))
  52475. characterMakers.push(() => makeCharacter(
  52476. { name: "Ruchex", species: ["raichu"], tags: ["anthro"] },
  52477. {
  52478. front: {
  52479. height: math.unit(6 + 5/12, "feet"),
  52480. weight: math.unit(750, "lb"),
  52481. name: "Front",
  52482. image: {
  52483. source: "./media/characters/ruchex/front.svg",
  52484. extra: 877/820,
  52485. bottom: 17/894
  52486. },
  52487. extraAttributes: {
  52488. "width": {
  52489. name: "Width",
  52490. power: 1,
  52491. type: "length",
  52492. base: math.unit(4.757, "feet")
  52493. },
  52494. }
  52495. },
  52496. },
  52497. [
  52498. {
  52499. name: "Normal",
  52500. height: math.unit(6 + 5/12, "feet"),
  52501. default: true
  52502. },
  52503. ]
  52504. ))
  52505. characterMakers.push(() => makeCharacter(
  52506. { name: "Buster", species: ["sergal", "goo"], tags: ["anthro"] },
  52507. {
  52508. dressedFront: {
  52509. height: math.unit(191, "cm"),
  52510. weight: math.unit(80, "kg"),
  52511. name: "Front",
  52512. image: {
  52513. source: "./media/characters/buster/dressed-front.svg",
  52514. extra: 1022/973,
  52515. bottom: 69/1091
  52516. }
  52517. },
  52518. dressedBack: {
  52519. height: math.unit(191, "cm"),
  52520. weight: math.unit(80, "kg"),
  52521. name: "Back",
  52522. image: {
  52523. source: "./media/characters/buster/dressed-back.svg",
  52524. extra: 1018/970,
  52525. bottom: 55/1073
  52526. }
  52527. },
  52528. nudeFront: {
  52529. height: math.unit(191, "cm"),
  52530. weight: math.unit(80, "kg"),
  52531. name: "Front (Nude)",
  52532. image: {
  52533. source: "./media/characters/buster/nude-front.svg",
  52534. extra: 1022/973,
  52535. bottom: 69/1091
  52536. }
  52537. },
  52538. nudeBack: {
  52539. height: math.unit(191, "cm"),
  52540. weight: math.unit(80, "kg"),
  52541. name: "Back (Nude)",
  52542. image: {
  52543. source: "./media/characters/buster/nude-back.svg",
  52544. extra: 1018/970,
  52545. bottom: 55/1073
  52546. }
  52547. },
  52548. dick: {
  52549. height: math.unit(2.59, "feet"),
  52550. name: "Dick",
  52551. image: {
  52552. source: "./media/characters/buster/dick.svg"
  52553. }
  52554. },
  52555. ass: {
  52556. height: math.unit(1.2, "feet"),
  52557. name: "Ass",
  52558. image: {
  52559. source: "./media/characters/buster/ass.svg"
  52560. }
  52561. },
  52562. },
  52563. [
  52564. {
  52565. name: "Normal",
  52566. height: math.unit(191, "cm"),
  52567. default: true
  52568. },
  52569. ]
  52570. ))
  52571. characterMakers.push(() => makeCharacter(
  52572. { name: "Sonya", species: ["suicune"], tags: ["feral"] },
  52573. {
  52574. side: {
  52575. height: math.unit(8.1, "feet"),
  52576. weight: math.unit(3500, "lb"),
  52577. name: "Side",
  52578. image: {
  52579. source: "./media/characters/sonya/side.svg",
  52580. extra: 1730/1317,
  52581. bottom: 86/1816
  52582. }
  52583. },
  52584. },
  52585. [
  52586. {
  52587. name: "Normal",
  52588. height: math.unit(8.1, "feet"),
  52589. default: true
  52590. },
  52591. ]
  52592. ))
  52593. characterMakers.push(() => makeCharacter(
  52594. { name: "Cadence Andrysiak", species: ["civet"], tags: ["anthro"] },
  52595. {
  52596. front: {
  52597. height: math.unit(6, "feet"),
  52598. weight: math.unit(150, "lb"),
  52599. name: "Front",
  52600. image: {
  52601. source: "./media/characters/cadence-andrysiak/front.svg",
  52602. extra: 1164/1121,
  52603. bottom: 60/1224
  52604. }
  52605. },
  52606. back: {
  52607. height: math.unit(6, "feet"),
  52608. weight: math.unit(150, "lb"),
  52609. name: "Back",
  52610. image: {
  52611. source: "./media/characters/cadence-andrysiak/back.svg",
  52612. extra: 1200/1165,
  52613. bottom: 9/1209
  52614. }
  52615. },
  52616. dressed: {
  52617. height: math.unit(6, "feet"),
  52618. weight: math.unit(150, "lb"),
  52619. name: "Dressed",
  52620. image: {
  52621. source: "./media/characters/cadence-andrysiak/dressed.svg",
  52622. extra: 1164/1121,
  52623. bottom: 60/1224
  52624. }
  52625. },
  52626. },
  52627. [
  52628. {
  52629. name: "Micro",
  52630. height: math.unit(1, "mm")
  52631. },
  52632. {
  52633. name: "Normal",
  52634. height: math.unit(6, "feet"),
  52635. default: true
  52636. },
  52637. ]
  52638. ))
  52639. characterMakers.push(() => makeCharacter(
  52640. { name: "PENNY", species: ["lynx" ,"computer-virus"], tags: ["anthro"] },
  52641. {
  52642. front: {
  52643. height: math.unit(60, "inches"),
  52644. weight: math.unit(16, "lb"),
  52645. preyCapacity: math.unit(80, "liters"),
  52646. name: "Front",
  52647. image: {
  52648. source: "./media/characters/penny-lynx/front.svg",
  52649. extra: 1959/1769,
  52650. bottom: 49/2008
  52651. }
  52652. },
  52653. },
  52654. [
  52655. {
  52656. name: "Nokia",
  52657. height: math.unit(2, "inches")
  52658. },
  52659. {
  52660. name: "Desktop",
  52661. height: math.unit(24, "inches")
  52662. },
  52663. {
  52664. name: "TV",
  52665. height: math.unit(60, "inches")
  52666. },
  52667. {
  52668. name: "Jumbotron",
  52669. height: math.unit(12, "feet")
  52670. },
  52671. {
  52672. name: "Billboard",
  52673. height: math.unit(48, "feet"),
  52674. default: true
  52675. },
  52676. {
  52677. name: "IMAX",
  52678. height: math.unit(96, "feet")
  52679. },
  52680. {
  52681. name: "SINGULARITY",
  52682. height: math.unit(864938, "miles")
  52683. },
  52684. ]
  52685. ))
  52686. characterMakers.push(() => makeCharacter(
  52687. { name: "Sukebe", species: ["panda"], tags: ["anthro"] },
  52688. {
  52689. front: {
  52690. height: math.unit(5 + 4/12, "feet"),
  52691. weight: math.unit(230, "lb"),
  52692. name: "Front",
  52693. image: {
  52694. source: "./media/characters/sukebe/front.svg",
  52695. extra: 2130/2038,
  52696. bottom: 90/2220
  52697. }
  52698. },
  52699. back: {
  52700. height: math.unit(3.48, "feet"),
  52701. weight: math.unit(230, "lb"),
  52702. name: "Back",
  52703. image: {
  52704. source: "./media/characters/sukebe/back.svg",
  52705. extra: 1670/1604,
  52706. bottom: 0/1670
  52707. }
  52708. },
  52709. },
  52710. [
  52711. {
  52712. name: "Normal",
  52713. height: math.unit(5 + 4/12, "feet"),
  52714. default: true
  52715. },
  52716. ]
  52717. ))
  52718. characterMakers.push(() => makeCharacter(
  52719. { name: "Nylla", species: ["dragon"], tags: ["anthro"] },
  52720. {
  52721. front: {
  52722. height: math.unit(6, "feet"),
  52723. name: "Front",
  52724. image: {
  52725. source: "./media/characters/nylla/front.svg",
  52726. extra: 1868/1699,
  52727. bottom: 97/1965
  52728. }
  52729. },
  52730. back: {
  52731. height: math.unit(6, "feet"),
  52732. name: "Back",
  52733. image: {
  52734. source: "./media/characters/nylla/back.svg",
  52735. extra: 1889/1712,
  52736. bottom: 93/1982
  52737. }
  52738. },
  52739. frontNsfw: {
  52740. height: math.unit(6, "feet"),
  52741. name: "Front (NSFW)",
  52742. image: {
  52743. source: "./media/characters/nylla/front-nsfw.svg",
  52744. extra: 1868/1699,
  52745. bottom: 97/1965
  52746. },
  52747. extraAttributes: {
  52748. "dickLength": {
  52749. name: "Dick Length",
  52750. power: 1,
  52751. type: "length",
  52752. base: math.unit(1.4, "feet")
  52753. },
  52754. "cumVolume": {
  52755. name: "Cum Volume",
  52756. power: 3,
  52757. type: "volume",
  52758. base: math.unit(100, "mL")
  52759. },
  52760. }
  52761. },
  52762. backNsfw: {
  52763. height: math.unit(6, "feet"),
  52764. name: "Back (NSFW)",
  52765. image: {
  52766. source: "./media/characters/nylla/back-nsfw.svg",
  52767. extra: 1889/1712,
  52768. bottom: 93/1982
  52769. }
  52770. },
  52771. maw: {
  52772. height: math.unit(2.10, "feet"),
  52773. name: "Maw",
  52774. image: {
  52775. source: "./media/characters/nylla/maw.svg"
  52776. }
  52777. },
  52778. paws: {
  52779. height: math.unit(2.06, "feet"),
  52780. name: "Paws",
  52781. image: {
  52782. source: "./media/characters/nylla/paws.svg"
  52783. }
  52784. },
  52785. muzzle: {
  52786. height: math.unit(0.61, "feet"),
  52787. name: "Muzzle",
  52788. image: {
  52789. source: "./media/characters/nylla/muzzle.svg"
  52790. }
  52791. },
  52792. sheath: {
  52793. height: math.unit(1.305, "feet"),
  52794. name: "Sheath",
  52795. image: {
  52796. source: "./media/characters/nylla/sheath.svg"
  52797. }
  52798. },
  52799. },
  52800. [
  52801. {
  52802. name: "Micro",
  52803. height: math.unit(7.5, "inches")
  52804. },
  52805. {
  52806. name: "Normal",
  52807. height: math.unit(7, "feet"),
  52808. default: true
  52809. },
  52810. {
  52811. name: "Macro",
  52812. height: math.unit(60, "feet")
  52813. },
  52814. {
  52815. name: "Mega",
  52816. height: math.unit(200, "feet")
  52817. },
  52818. ]
  52819. ))
  52820. characterMakers.push(() => makeCharacter(
  52821. { name: "HUNT3R", species: ["protogen"], tags: ["anthro"] },
  52822. {
  52823. front: {
  52824. height: math.unit(10, "feet"),
  52825. weight: math.unit(2300, "lb"),
  52826. name: "Front",
  52827. image: {
  52828. source: "./media/characters/hunt3r/front.svg",
  52829. extra: 1909/1742,
  52830. bottom: 46/1955
  52831. }
  52832. },
  52833. },
  52834. [
  52835. {
  52836. name: "Normal",
  52837. height: math.unit(10, "feet"),
  52838. default: true
  52839. },
  52840. ]
  52841. ))
  52842. characterMakers.push(() => makeCharacter(
  52843. { name: "Cylphis", species: ["draconi", "deity"], tags: ["anthro"] },
  52844. {
  52845. dressed: {
  52846. height: math.unit(11, "feet"),
  52847. weight: math.unit(18500, "lb"),
  52848. preyCapacity: math.unit(9, "people"),
  52849. name: "Dressed",
  52850. image: {
  52851. source: "./media/characters/cylphis/dressed.svg",
  52852. extra: 1028/1003,
  52853. bottom: 75/1103
  52854. },
  52855. },
  52856. undressed: {
  52857. height: math.unit(11, "feet"),
  52858. weight: math.unit(18500, "lb"),
  52859. preyCapacity: math.unit(9, "people"),
  52860. name: "Undressed",
  52861. image: {
  52862. source: "./media/characters/cylphis/undressed.svg",
  52863. extra: 1028/1003,
  52864. bottom: 75/1103
  52865. }
  52866. },
  52867. full: {
  52868. height: math.unit(11, "feet"),
  52869. weight: math.unit(18500 + 150*9, "lb"),
  52870. preyCapacity: math.unit(9, "people"),
  52871. name: "Full",
  52872. image: {
  52873. source: "./media/characters/cylphis/full.svg",
  52874. extra: 1028/1003,
  52875. bottom: 75/1103
  52876. }
  52877. },
  52878. },
  52879. [
  52880. {
  52881. name: "Small",
  52882. height: math.unit(8, "feet")
  52883. },
  52884. {
  52885. name: "Normal",
  52886. height: math.unit(11, "feet"),
  52887. default: true
  52888. },
  52889. ]
  52890. ))
  52891. characterMakers.push(() => makeCharacter(
  52892. { name: "Orishan", species: ["rabbit"], tags: ["anthro"] },
  52893. {
  52894. front: {
  52895. height: math.unit(2 + 7/12, "feet"),
  52896. name: "Front",
  52897. image: {
  52898. source: "./media/characters/orishan/front.svg",
  52899. extra: 1058/1023,
  52900. bottom: 23/1081
  52901. }
  52902. },
  52903. back: {
  52904. height: math.unit(2 + 7/12, "feet"),
  52905. name: "Back",
  52906. image: {
  52907. source: "./media/characters/orishan/back.svg",
  52908. extra: 1058/1023,
  52909. bottom: 23/1081
  52910. }
  52911. },
  52912. },
  52913. [
  52914. {
  52915. name: "Micro",
  52916. height: math.unit(2, "cm")
  52917. },
  52918. {
  52919. name: "Normal",
  52920. height: math.unit(2 + 7/12, "feet"),
  52921. default: true
  52922. },
  52923. ]
  52924. ))
  52925. characterMakers.push(() => makeCharacter(
  52926. { name: "Seranis", species: ["cat"], tags: ["anthro"] },
  52927. {
  52928. front: {
  52929. height: math.unit(3, "meters"),
  52930. weight: math.unit(508, "kg"),
  52931. name: "Front",
  52932. image: {
  52933. source: "./media/characters/seranis/front.svg",
  52934. extra: 1478/1454,
  52935. bottom: 41/1519
  52936. }
  52937. },
  52938. },
  52939. [
  52940. {
  52941. name: "Normal",
  52942. height: math.unit(3, "meters"),
  52943. default: true
  52944. },
  52945. {
  52946. name: "Macro",
  52947. height: math.unit(108, "meters")
  52948. },
  52949. {
  52950. name: "Megamacro",
  52951. height: math.unit(1250, "meters")
  52952. },
  52953. ]
  52954. ))
  52955. characterMakers.push(() => makeCharacter(
  52956. { name: "Ankou", species: ["mouse", "imp"], tags: ["anthro"] },
  52957. {
  52958. undressed: {
  52959. height: math.unit(5 + 3/12, "feet"),
  52960. name: "Undressed",
  52961. image: {
  52962. source: "./media/characters/ankou/undressed.svg",
  52963. extra: 1301/1213,
  52964. bottom: 87/1388
  52965. }
  52966. },
  52967. dressed: {
  52968. height: math.unit(5 + 3/12, "feet"),
  52969. name: "Dressed",
  52970. image: {
  52971. source: "./media/characters/ankou/dressed.svg",
  52972. extra: 1301/1213,
  52973. bottom: 87/1388
  52974. }
  52975. },
  52976. head: {
  52977. height: math.unit(1.61, "feet"),
  52978. name: "Head",
  52979. image: {
  52980. source: "./media/characters/ankou/head.svg"
  52981. }
  52982. },
  52983. },
  52984. [
  52985. {
  52986. name: "Normal",
  52987. height: math.unit(5 + 3/12, "feet"),
  52988. default: true
  52989. },
  52990. ]
  52991. ))
  52992. characterMakers.push(() => makeCharacter(
  52993. { name: "Juniper Skunktaur", species: ["skunk", "taur"], tags: ["taur"] },
  52994. {
  52995. side: {
  52996. height: math.unit(6 + 3/12, "feet"),
  52997. weight: math.unit(200, "kg"),
  52998. name: "Side",
  52999. image: {
  53000. source: "./media/characters/juniper-skunktaur/side.svg",
  53001. extra: 1574/1229,
  53002. bottom: 38/1612
  53003. }
  53004. },
  53005. front: {
  53006. height: math.unit(6 + 3/12, "feet"),
  53007. weight: math.unit(200, "kg"),
  53008. name: "Front",
  53009. image: {
  53010. source: "./media/characters/juniper-skunktaur/front.svg",
  53011. extra: 1337/1278,
  53012. bottom: 22/1359
  53013. }
  53014. },
  53015. back: {
  53016. height: math.unit(6 + 3/12, "feet"),
  53017. weight: math.unit(200, "kg"),
  53018. name: "Back",
  53019. image: {
  53020. source: "./media/characters/juniper-skunktaur/back.svg",
  53021. extra: 1618/1273,
  53022. bottom: 13/1631
  53023. }
  53024. },
  53025. top: {
  53026. height: math.unit(2.62, "feet"),
  53027. weight: math.unit(200, "kg"),
  53028. name: "Top",
  53029. image: {
  53030. source: "./media/characters/juniper-skunktaur/top.svg"
  53031. }
  53032. },
  53033. },
  53034. [
  53035. {
  53036. name: "Normal",
  53037. height: math.unit(6 + 3/12, "feet"),
  53038. default: true
  53039. },
  53040. ]
  53041. ))
  53042. characterMakers.push(() => makeCharacter(
  53043. { name: "Rei", species: ["kitsune"], tags: ["anthro"] },
  53044. {
  53045. front: {
  53046. height: math.unit(20.5, "feet"),
  53047. name: "Front",
  53048. image: {
  53049. source: "./media/characters/rei/front.svg",
  53050. extra: 1349/1195,
  53051. bottom: 31/1380
  53052. }
  53053. },
  53054. back: {
  53055. height: math.unit(20.5, "feet"),
  53056. name: "Back",
  53057. image: {
  53058. source: "./media/characters/rei/back.svg",
  53059. extra: 1358/1204,
  53060. bottom: 22/1380
  53061. }
  53062. },
  53063. pawsDigi: {
  53064. height: math.unit(3.45, "feet"),
  53065. name: "Paws (Digi)",
  53066. image: {
  53067. source: "./media/characters/rei/paws-digi.svg"
  53068. }
  53069. },
  53070. pawsPlanti: {
  53071. height: math.unit(3.45, "feet"),
  53072. name: "Paws (Planti)",
  53073. image: {
  53074. source: "./media/characters/rei/paws-planti.svg"
  53075. }
  53076. },
  53077. },
  53078. [
  53079. {
  53080. name: "Normal",
  53081. height: math.unit(20.5, "feet"),
  53082. default: true
  53083. },
  53084. ]
  53085. ))
  53086. characterMakers.push(() => makeCharacter(
  53087. { name: "Carina", species: ["arctic-fox"], tags: ["anthro"] },
  53088. {
  53089. front: {
  53090. height: math.unit(5 + 11/12, "feet"),
  53091. name: "Front",
  53092. image: {
  53093. source: "./media/characters/carina/front.svg",
  53094. extra: 1720/1449,
  53095. bottom: 14/1734
  53096. }
  53097. },
  53098. back: {
  53099. height: math.unit(5 + 11/12, "feet"),
  53100. name: "Back",
  53101. image: {
  53102. source: "./media/characters/carina/back.svg",
  53103. extra: 1493/1445,
  53104. bottom: 17/1510
  53105. }
  53106. },
  53107. paw: {
  53108. height: math.unit(0.92, "feet"),
  53109. name: "Paw",
  53110. image: {
  53111. source: "./media/characters/carina/paw.svg"
  53112. }
  53113. },
  53114. },
  53115. [
  53116. {
  53117. name: "Normal",
  53118. height: math.unit(5 + 11/12, "feet"),
  53119. default: true
  53120. },
  53121. ]
  53122. ))
  53123. characterMakers.push(() => makeCharacter(
  53124. { name: "Maya", species: ["cat"], tags: ["anthro", "taur"] },
  53125. {
  53126. normal_front: {
  53127. height: math.unit(4.88, "meters"),
  53128. name: "Front",
  53129. image: {
  53130. source: "./media/characters/maya/normal-front.svg",
  53131. extra: 1222/1145,
  53132. bottom: 57/1279
  53133. },
  53134. form: "normal",
  53135. default: true
  53136. },
  53137. monstrous_front: {
  53138. height: math.unit(10, "meters"),
  53139. name: "Front",
  53140. image: {
  53141. source: "./media/characters/maya/monstrous-front.svg",
  53142. extra: 1523/1109,
  53143. bottom: 113/1636
  53144. },
  53145. form: "monstrous",
  53146. extraAttributes: {
  53147. "swallowSize": {
  53148. name: "Tailmaw Bite Size",
  53149. power: 3,
  53150. type: "volume",
  53151. base: math.unit(43000, "liters")
  53152. },
  53153. }
  53154. },
  53155. taur_front: {
  53156. height: math.unit(10, "meters"),
  53157. name: "Front",
  53158. image: {
  53159. source: "./media/characters/maya/taur-front.svg",
  53160. extra: 743/506,
  53161. bottom: 101/844
  53162. },
  53163. form: "taur",
  53164. },
  53165. },
  53166. [
  53167. {
  53168. name: "Normal",
  53169. height: math.unit(4.88, "meters"),
  53170. default: true,
  53171. form: "normal"
  53172. },
  53173. {
  53174. name: "Macro",
  53175. height: math.unit(38.1, "meters"),
  53176. form: "normal"
  53177. },
  53178. {
  53179. name: "Macro+",
  53180. height: math.unit(152.4, "meters"),
  53181. form: "normal"
  53182. },
  53183. {
  53184. name: "Macro++",
  53185. height: math.unit(16.09, "km"),
  53186. form: "normal"
  53187. },
  53188. {
  53189. name: "Mega-macro",
  53190. height: math.unit(700, "megameters"),
  53191. form: "normal"
  53192. },
  53193. {
  53194. name: "Satiated",
  53195. height: math.unit(10, "meters"),
  53196. default: true,
  53197. form: "monstrous"
  53198. },
  53199. {
  53200. name: "Hungry",
  53201. height: math.unit(75, "meters"),
  53202. form: "monstrous"
  53203. },
  53204. {
  53205. name: "Ravenous",
  53206. height: math.unit(500, "meters"),
  53207. form: "monstrous"
  53208. },
  53209. {
  53210. name: "\"Normal\"",
  53211. height: math.unit(10, "meters"),
  53212. form: "taur"
  53213. },
  53214. {
  53215. name: "Macro",
  53216. height: math.unit(50, "meters"),
  53217. form: "taur"
  53218. },
  53219. ],
  53220. {
  53221. "normal": {
  53222. name: "Normal",
  53223. default: true
  53224. },
  53225. "monstrous": {
  53226. name: "Monstrous",
  53227. },
  53228. "taur": {
  53229. name: "Taur",
  53230. },
  53231. }
  53232. ))
  53233. characterMakers.push(() => makeCharacter(
  53234. { name: "Yepir", species: ["hyena"], tags: ["anthro"] },
  53235. {
  53236. front: {
  53237. height: math.unit(6 + 2/12, "feet"),
  53238. weight: math.unit(500, "lb"),
  53239. preyCapacity: math.unit(4, "people"),
  53240. name: "Front",
  53241. image: {
  53242. source: "./media/characters/yepir/front.svg"
  53243. }
  53244. },
  53245. side: {
  53246. height: math.unit(6 + 2/12, "feet"),
  53247. weight: math.unit(500, "lb"),
  53248. preyCapacity: math.unit(4, "people"),
  53249. name: "Side",
  53250. image: {
  53251. source: "./media/characters/yepir/side.svg"
  53252. }
  53253. },
  53254. paw: {
  53255. height: math.unit(1.05, "feet"),
  53256. name: "Paw",
  53257. image: {
  53258. source: "./media/characters/yepir/paw.svg"
  53259. }
  53260. },
  53261. },
  53262. [
  53263. {
  53264. name: "Normal",
  53265. height: math.unit(6 + 2/12, "feet"),
  53266. default: true
  53267. },
  53268. ]
  53269. ))
  53270. characterMakers.push(() => makeCharacter(
  53271. { name: "Russec", species: ["continental-giant-rabbit"], tags: ["anthro"] },
  53272. {
  53273. front: {
  53274. height: math.unit(5 + 4/12, "feet"),
  53275. name: "Front",
  53276. image: {
  53277. source: "./media/characters/russec/front.svg",
  53278. extra: 1926/1626,
  53279. bottom: 72/1998
  53280. }
  53281. },
  53282. back: {
  53283. height: math.unit(5 + 4/12, "feet"),
  53284. name: "Back",
  53285. image: {
  53286. source: "./media/characters/russec/back.svg",
  53287. extra: 1910/1591,
  53288. bottom: 48/1958
  53289. }
  53290. },
  53291. },
  53292. [
  53293. {
  53294. name: "Small",
  53295. height: math.unit(5 + 4/12, "feet")
  53296. },
  53297. {
  53298. name: "Normal",
  53299. height: math.unit(72, "feet"),
  53300. default: true
  53301. },
  53302. ]
  53303. ))
  53304. characterMakers.push(() => makeCharacter(
  53305. { name: "Cianus", species: ["demigryph"], tags: ["anthro"] },
  53306. {
  53307. side: {
  53308. height: math.unit(12, "feet"),
  53309. name: "Side",
  53310. image: {
  53311. source: "./media/characters/cianus/side.svg",
  53312. extra: 808/526,
  53313. bottom: 61/869
  53314. }
  53315. },
  53316. },
  53317. [
  53318. {
  53319. name: "Normal",
  53320. height: math.unit(12, "feet"),
  53321. default: true
  53322. },
  53323. ]
  53324. ))
  53325. characterMakers.push(() => makeCharacter(
  53326. { name: "Ahab", species: ["bald-eagle"], tags: ["anthro"] },
  53327. {
  53328. front: {
  53329. height: math.unit(9 + 6/12, "feet"),
  53330. weight: math.unit(300, "lb"),
  53331. name: "Front",
  53332. image: {
  53333. source: "./media/characters/ahab/front.svg",
  53334. extra: 1897/1868,
  53335. bottom: 121/2018
  53336. }
  53337. },
  53338. frontNsfw: {
  53339. height: math.unit(9 + 6/12, "feet"),
  53340. weight: math.unit(300, "lb"),
  53341. name: "Front-nsfw",
  53342. image: {
  53343. source: "./media/characters/ahab/front-nsfw.svg",
  53344. extra: 1897/1868,
  53345. bottom: 121/2018
  53346. }
  53347. },
  53348. },
  53349. [
  53350. {
  53351. name: "Normal",
  53352. height: math.unit(9 + 6/12, "feet")
  53353. },
  53354. {
  53355. name: "Macro",
  53356. height: math.unit(657, "feet"),
  53357. default: true
  53358. },
  53359. ]
  53360. ))
  53361. characterMakers.push(() => makeCharacter(
  53362. { name: "Aarkus", species: ["deer"], tags: ["anthro"] },
  53363. {
  53364. front: {
  53365. height: math.unit(2.69, "meters"),
  53366. weight: math.unit(132, "kg"),
  53367. name: "Front",
  53368. image: {
  53369. source: "./media/characters/aarkus/front.svg",
  53370. extra: 1400/1231,
  53371. bottom: 34/1434
  53372. }
  53373. },
  53374. back: {
  53375. height: math.unit(2.69, "meters"),
  53376. weight: math.unit(132, "kg"),
  53377. name: "Back",
  53378. image: {
  53379. source: "./media/characters/aarkus/back.svg",
  53380. extra: 1381/1218,
  53381. bottom: 30/1411
  53382. }
  53383. },
  53384. frontNsfw: {
  53385. height: math.unit(2.69, "meters"),
  53386. weight: math.unit(132, "kg"),
  53387. name: "Front (NSFW)",
  53388. image: {
  53389. source: "./media/characters/aarkus/front-nsfw.svg",
  53390. extra: 1400/1231,
  53391. bottom: 34/1434
  53392. }
  53393. },
  53394. foot: {
  53395. height: math.unit(1.45, "feet"),
  53396. name: "Foot",
  53397. image: {
  53398. source: "./media/characters/aarkus/foot.svg"
  53399. }
  53400. },
  53401. head: {
  53402. height: math.unit(2.85, "feet"),
  53403. name: "Head",
  53404. image: {
  53405. source: "./media/characters/aarkus/head.svg"
  53406. }
  53407. },
  53408. headAlt: {
  53409. height: math.unit(3.07, "feet"),
  53410. name: "Head (Alt)",
  53411. image: {
  53412. source: "./media/characters/aarkus/head-alt.svg"
  53413. }
  53414. },
  53415. mouth: {
  53416. height: math.unit(1.25, "feet"),
  53417. name: "Mouth",
  53418. image: {
  53419. source: "./media/characters/aarkus/mouth.svg"
  53420. }
  53421. },
  53422. dick: {
  53423. height: math.unit(1.77, "feet"),
  53424. name: "Dick",
  53425. image: {
  53426. source: "./media/characters/aarkus/dick.svg"
  53427. }
  53428. },
  53429. },
  53430. [
  53431. {
  53432. name: "Normal",
  53433. height: math.unit(2.69, "meters"),
  53434. default: true
  53435. },
  53436. {
  53437. name: "Macro",
  53438. height: math.unit(269, "meters")
  53439. },
  53440. {
  53441. name: "Macro+",
  53442. height: math.unit(672.5, "meters")
  53443. },
  53444. {
  53445. name: "Megamacro",
  53446. height: math.unit(2.017, "km")
  53447. },
  53448. ]
  53449. ))
  53450. characterMakers.push(() => makeCharacter(
  53451. { name: "Diode", species: ["moth"], tags: ["anthro"] },
  53452. {
  53453. front: {
  53454. height: math.unit(23.47, "cm"),
  53455. weight: math.unit(600, "grams"),
  53456. name: "Front",
  53457. image: {
  53458. source: "./media/characters/diode/front.svg",
  53459. extra: 1778/1396,
  53460. bottom: 95/1873
  53461. }
  53462. },
  53463. side: {
  53464. height: math.unit(23.47, "cm"),
  53465. weight: math.unit(600, "grams"),
  53466. name: "Side",
  53467. image: {
  53468. source: "./media/characters/diode/side.svg",
  53469. extra: 1831/1404,
  53470. bottom: 86/1917
  53471. }
  53472. },
  53473. wings: {
  53474. height: math.unit(0.683, "feet"),
  53475. name: "Wings",
  53476. image: {
  53477. source: "./media/characters/diode/wings.svg"
  53478. }
  53479. },
  53480. },
  53481. [
  53482. {
  53483. name: "Normal",
  53484. height: math.unit(23.47, "cm"),
  53485. default: true
  53486. },
  53487. ]
  53488. ))
  53489. characterMakers.push(() => makeCharacter(
  53490. { name: "Reika", species: ["kestrel", "mockingbird"], tags: ["anthro"] },
  53491. {
  53492. front: {
  53493. height: math.unit(6 + 3/12, "feet"),
  53494. weight: math.unit(250, "lb"),
  53495. name: "Front",
  53496. image: {
  53497. source: "./media/characters/reika/front.svg",
  53498. extra: 1120/1078,
  53499. bottom: 86/1206
  53500. }
  53501. },
  53502. },
  53503. [
  53504. {
  53505. name: "Normal",
  53506. height: math.unit(6 + 3/12, "feet"),
  53507. default: true
  53508. },
  53509. ]
  53510. ))
  53511. characterMakers.push(() => makeCharacter(
  53512. { name: "Lokuto Takama", species: ["arctic-fox", "kitsune"], tags: ["anthro"] },
  53513. {
  53514. front: {
  53515. height: math.unit(16 + 8/12, "feet"),
  53516. weight: math.unit(9000, "lb"),
  53517. name: "Front",
  53518. image: {
  53519. source: "./media/characters/lokuto-takama/front.svg",
  53520. extra: 1774/1632,
  53521. bottom: 147/1921
  53522. },
  53523. extraAttributes: {
  53524. "bustWidth": {
  53525. name: "Bust Width",
  53526. power: 1,
  53527. type: "length",
  53528. base: math.unit(2.4, "meters")
  53529. },
  53530. "breastWeight": {
  53531. name: "Breast Weight",
  53532. power: 3,
  53533. type: "mass",
  53534. base: math.unit(1000, "kg")
  53535. },
  53536. }
  53537. },
  53538. },
  53539. [
  53540. {
  53541. name: "Normal",
  53542. height: math.unit(16 + 8/12, "feet"),
  53543. default: true
  53544. },
  53545. ]
  53546. ))
  53547. characterMakers.push(() => makeCharacter(
  53548. { name: "Owak Bone", species: ["marowak"], tags: ["anthro"] },
  53549. {
  53550. front: {
  53551. height: math.unit(10, "cm"),
  53552. weight: math.unit(850, "grams"),
  53553. name: "Front",
  53554. image: {
  53555. source: "./media/characters/owak-bone/front.svg",
  53556. extra: 1965/1801,
  53557. bottom: 31/1996
  53558. }
  53559. },
  53560. },
  53561. [
  53562. {
  53563. name: "Normal",
  53564. height: math.unit(10, "cm"),
  53565. default: true
  53566. },
  53567. ]
  53568. ))
  53569. characterMakers.push(() => makeCharacter(
  53570. { name: "Muffin", species: ["ferret"], tags: ["anthro"] },
  53571. {
  53572. front: {
  53573. height: math.unit(2 + 6/12, "feet"),
  53574. weight: math.unit(9, "lb"),
  53575. name: "Front",
  53576. image: {
  53577. source: "./media/characters/muffin/front.svg",
  53578. extra: 1220/1195,
  53579. bottom: 84/1304
  53580. }
  53581. },
  53582. },
  53583. [
  53584. {
  53585. name: "Normal",
  53586. height: math.unit(2 + 6/12, "feet"),
  53587. default: true
  53588. },
  53589. ]
  53590. ))
  53591. characterMakers.push(() => makeCharacter(
  53592. { name: "Chimera", species: ["pegasus"], tags: ["anthro"] },
  53593. {
  53594. front: {
  53595. height: math.unit(7, "feet"),
  53596. name: "Front",
  53597. image: {
  53598. source: "./media/characters/chimera/front.svg",
  53599. extra: 1752/1614,
  53600. bottom: 68/1820
  53601. }
  53602. },
  53603. },
  53604. [
  53605. {
  53606. name: "Normal",
  53607. height: math.unit(7, "feet")
  53608. },
  53609. {
  53610. name: "Gigamacro",
  53611. height: math.unit(2.9, "gigameters"),
  53612. default: true
  53613. },
  53614. {
  53615. name: "Universal",
  53616. height: math.unit(1.56e26, "yottameters")
  53617. },
  53618. ]
  53619. ))
  53620. characterMakers.push(() => makeCharacter(
  53621. { name: "Kit (Fennec Fox)", species: ["fennec-fox"], tags: ["anthro"] },
  53622. {
  53623. front: {
  53624. height: math.unit(3, "feet"),
  53625. weight: math.unit(20, "lb"),
  53626. name: "Front",
  53627. image: {
  53628. source: "./media/characters/kit-fennec-fox/front.svg",
  53629. extra: 1027/932,
  53630. bottom: 16/1043
  53631. }
  53632. },
  53633. back: {
  53634. height: math.unit(3, "feet"),
  53635. weight: math.unit(20, "lb"),
  53636. name: "Back",
  53637. image: {
  53638. source: "./media/characters/kit-fennec-fox/back.svg",
  53639. extra: 1027/932,
  53640. bottom: 16/1043
  53641. }
  53642. },
  53643. },
  53644. [
  53645. {
  53646. name: "Normal",
  53647. height: math.unit(3, "feet"),
  53648. default: true
  53649. },
  53650. ]
  53651. ))
  53652. characterMakers.push(() => makeCharacter(
  53653. { name: "Blue (Otter)", species: ["otter"], tags: ["anthro"] },
  53654. {
  53655. front: {
  53656. height: math.unit(167, "cm"),
  53657. name: "Front",
  53658. image: {
  53659. source: "./media/characters/blue-otter/front.svg",
  53660. extra: 1951/1920,
  53661. bottom: 31/1982
  53662. }
  53663. },
  53664. },
  53665. [
  53666. {
  53667. name: "Otter-Sized",
  53668. height: math.unit(100, "cm")
  53669. },
  53670. {
  53671. name: "Normal",
  53672. height: math.unit(167, "cm"),
  53673. default: true
  53674. },
  53675. ]
  53676. ))
  53677. characterMakers.push(() => makeCharacter(
  53678. { name: "Maverick (Leopard Gecko)", species: ["leopard-gecko"], tags: ["anthro"] },
  53679. {
  53680. front: {
  53681. height: math.unit(4 + 4/12, "feet"),
  53682. name: "Front",
  53683. image: {
  53684. source: "./media/characters/maverick-leopard-gecko/front.svg",
  53685. extra: 1072/1067,
  53686. bottom: 117/1189
  53687. }
  53688. },
  53689. back: {
  53690. height: math.unit(4 + 4/12, "feet"),
  53691. name: "Back",
  53692. image: {
  53693. source: "./media/characters/maverick-leopard-gecko/back.svg",
  53694. extra: 1135/1129,
  53695. bottom: 57/1192
  53696. }
  53697. },
  53698. head: {
  53699. height: math.unit(1.77, "feet"),
  53700. name: "Head",
  53701. image: {
  53702. source: "./media/characters/maverick-leopard-gecko/head.svg"
  53703. }
  53704. },
  53705. },
  53706. [
  53707. {
  53708. name: "Normal",
  53709. height: math.unit(4 + 4/12, "feet"),
  53710. default: true
  53711. },
  53712. ]
  53713. ))
  53714. characterMakers.push(() => makeCharacter(
  53715. { name: "Carley Hartford", species: ["joltik"], tags: ["anthro"] },
  53716. {
  53717. front: {
  53718. height: math.unit(2, "inches"),
  53719. name: "Front",
  53720. image: {
  53721. source: "./media/characters/carley-hartford/front.svg",
  53722. extra: 1035/988,
  53723. bottom: 23/1058
  53724. }
  53725. },
  53726. back: {
  53727. height: math.unit(2, "inches"),
  53728. name: "Back",
  53729. image: {
  53730. source: "./media/characters/carley-hartford/back.svg",
  53731. extra: 1035/988,
  53732. bottom: 23/1058
  53733. }
  53734. },
  53735. dressed: {
  53736. height: math.unit(2, "inches"),
  53737. name: "Dressed",
  53738. image: {
  53739. source: "./media/characters/carley-hartford/dressed.svg",
  53740. extra: 651/620,
  53741. bottom: 0/651
  53742. }
  53743. },
  53744. },
  53745. [
  53746. {
  53747. name: "Micro",
  53748. height: math.unit(2, "inches"),
  53749. default: true
  53750. },
  53751. {
  53752. name: "Macro",
  53753. height: math.unit(6 + 3/12, "feet")
  53754. },
  53755. ]
  53756. ))
  53757. characterMakers.push(() => makeCharacter(
  53758. { name: "Duke", species: ["ferret"], tags: ["anthro"] },
  53759. {
  53760. front: {
  53761. height: math.unit(2 + 3/12, "feet"),
  53762. weight: math.unit(15 + 7/16, "lb"),
  53763. name: "Front",
  53764. image: {
  53765. source: "./media/characters/duke/front.svg",
  53766. extra: 910/815,
  53767. bottom: 30/940
  53768. }
  53769. },
  53770. },
  53771. [
  53772. {
  53773. name: "Normal",
  53774. height: math.unit(2 + 3/12, "feet"),
  53775. default: true
  53776. },
  53777. ]
  53778. ))
  53779. characterMakers.push(() => makeCharacter(
  53780. { name: "Dein", species: ["ferret"], tags: ["anthro"] },
  53781. {
  53782. front: {
  53783. height: math.unit(5 + 4/12, "feet"),
  53784. weight: math.unit(156, "lb"),
  53785. name: "Front",
  53786. image: {
  53787. source: "./media/characters/dein/front.svg",
  53788. extra: 855/815,
  53789. bottom: 48/903
  53790. }
  53791. },
  53792. side: {
  53793. height: math.unit(5 + 4/12, "feet"),
  53794. weight: math.unit(156, "lb"),
  53795. name: "side",
  53796. image: {
  53797. source: "./media/characters/dein/side.svg",
  53798. extra: 846/803,
  53799. bottom: 25/871
  53800. }
  53801. },
  53802. maw: {
  53803. height: math.unit(1.45, "feet"),
  53804. name: "Maw",
  53805. image: {
  53806. source: "./media/characters/dein/maw.svg"
  53807. }
  53808. },
  53809. },
  53810. [
  53811. {
  53812. name: "Ferret Sized",
  53813. height: math.unit(2 + 5/12, "feet")
  53814. },
  53815. {
  53816. name: "Normal",
  53817. height: math.unit(5 + 4/12, "feet"),
  53818. default: true
  53819. },
  53820. ]
  53821. ))
  53822. characterMakers.push(() => makeCharacter(
  53823. { name: "Daurine Arima", species: ["werewolf"], tags: ["anthro"] },
  53824. {
  53825. front: {
  53826. height: math.unit(84 + 8/12, "feet"),
  53827. weight: math.unit(942180, "lb"),
  53828. name: "Front",
  53829. image: {
  53830. source: "./media/characters/daurine-arima/front.svg",
  53831. extra: 1989/1782,
  53832. bottom: 37/2026
  53833. }
  53834. },
  53835. side: {
  53836. height: math.unit(84 + 8/12, "feet"),
  53837. weight: math.unit(942180, "lb"),
  53838. name: "Side",
  53839. image: {
  53840. source: "./media/characters/daurine-arima/side.svg",
  53841. extra: 1997/1790,
  53842. bottom: 21/2018
  53843. }
  53844. },
  53845. back: {
  53846. height: math.unit(84 + 8/12, "feet"),
  53847. weight: math.unit(942180, "lb"),
  53848. name: "Back",
  53849. image: {
  53850. source: "./media/characters/daurine-arima/back.svg",
  53851. extra: 1992/1800,
  53852. bottom: 12/2004
  53853. }
  53854. },
  53855. head: {
  53856. height: math.unit(15.5, "feet"),
  53857. name: "Head",
  53858. image: {
  53859. source: "./media/characters/daurine-arima/head.svg"
  53860. }
  53861. },
  53862. headAlt: {
  53863. height: math.unit(19.19, "feet"),
  53864. name: "Head (Alt)",
  53865. image: {
  53866. source: "./media/characters/daurine-arima/head-alt.svg"
  53867. }
  53868. },
  53869. },
  53870. [
  53871. {
  53872. name: "Minimum height",
  53873. height: math.unit(8 + 10/12, "feet")
  53874. },
  53875. {
  53876. name: "Comfort height",
  53877. height: math.unit(19 + 6 /12, "feet")
  53878. },
  53879. {
  53880. name: "\"Normal\" height",
  53881. height: math.unit(28 + 10/12, "feet")
  53882. },
  53883. {
  53884. name: "Base height",
  53885. height: math.unit(84 + 8/12, "feet"),
  53886. default: true
  53887. },
  53888. {
  53889. name: "Mini-macro",
  53890. height: math.unit(2360, "feet")
  53891. },
  53892. {
  53893. name: "Macro",
  53894. height: math.unit(10, "miles")
  53895. },
  53896. {
  53897. name: "Goddess",
  53898. height: math.unit(9.99e40, "yottameters")
  53899. },
  53900. ]
  53901. ))
  53902. characterMakers.push(() => makeCharacter(
  53903. { name: "Cilenomon", species: ["slime"], tags: ["anthro"] },
  53904. {
  53905. front: {
  53906. height: math.unit(2.3, "meters"),
  53907. name: "Front",
  53908. image: {
  53909. source: "./media/characters/cilenomon/front.svg",
  53910. extra: 1963/1778,
  53911. bottom: 54/2017
  53912. }
  53913. },
  53914. },
  53915. [
  53916. {
  53917. name: "Normal",
  53918. height: math.unit(2.3, "meters"),
  53919. default: true
  53920. },
  53921. {
  53922. name: "Big",
  53923. height: math.unit(5, "meters")
  53924. },
  53925. {
  53926. name: "Macro",
  53927. height: math.unit(30, "meters")
  53928. },
  53929. {
  53930. name: "True",
  53931. height: math.unit(1, "universe")
  53932. },
  53933. ]
  53934. ))
  53935. characterMakers.push(() => makeCharacter(
  53936. { name: "Sen (Mink)", species: ["mink"], tags: ["anthro"] },
  53937. {
  53938. front: {
  53939. height: math.unit(5, "feet"),
  53940. name: "Front",
  53941. image: {
  53942. source: "./media/characters/sen-mink/front.svg",
  53943. extra: 1727/1675,
  53944. bottom: 35/1762
  53945. }
  53946. },
  53947. },
  53948. [
  53949. {
  53950. name: "Normal",
  53951. height: math.unit(5, "feet"),
  53952. default: true
  53953. },
  53954. ]
  53955. ))
  53956. characterMakers.push(() => makeCharacter(
  53957. { name: "Ophois", species: ["jackal", "sandcat"], tags: ["anthro"] },
  53958. {
  53959. front: {
  53960. height: math.unit(5.42999, "feet"),
  53961. weight: math.unit(100, "lb"),
  53962. name: "Front",
  53963. image: {
  53964. source: "./media/characters/ophois/front.svg",
  53965. extra: 1429/1286,
  53966. bottom: 60/1489
  53967. }
  53968. },
  53969. },
  53970. [
  53971. {
  53972. name: "Normal",
  53973. height: math.unit(5.42999, "feet"),
  53974. default: true
  53975. },
  53976. ]
  53977. ))
  53978. characterMakers.push(() => makeCharacter(
  53979. { name: "Riley", species: ["eagle"], tags: ["anthro"] },
  53980. {
  53981. front: {
  53982. height: math.unit(2, "meters"),
  53983. name: "Front",
  53984. image: {
  53985. source: "./media/characters/riley/front.svg",
  53986. extra: 1779/1754,
  53987. bottom: 139/1918
  53988. }
  53989. },
  53990. },
  53991. [
  53992. {
  53993. name: "Normal",
  53994. height: math.unit(2, "meters"),
  53995. default: true
  53996. },
  53997. ]
  53998. ))
  53999. characterMakers.push(() => makeCharacter(
  54000. { name: "Shuken Flash", species: ["arctic-fox"], tags: ["anthro"] },
  54001. {
  54002. front: {
  54003. height: math.unit(6 + 2/12, "feet"),
  54004. weight: math.unit(195, "lb"),
  54005. preyCapacity: math.unit(6, "people"),
  54006. name: "Front",
  54007. image: {
  54008. source: "./media/characters/shuken-flash/front.svg",
  54009. extra: 1905/1739,
  54010. bottom: 65/1970
  54011. }
  54012. },
  54013. back: {
  54014. height: math.unit(6 + 2/12, "feet"),
  54015. weight: math.unit(195, "lb"),
  54016. preyCapacity: math.unit(6, "people"),
  54017. name: "Back",
  54018. image: {
  54019. source: "./media/characters/shuken-flash/back.svg",
  54020. extra: 1912/1751,
  54021. bottom: 13/1925
  54022. }
  54023. },
  54024. },
  54025. [
  54026. {
  54027. name: "Normal",
  54028. height: math.unit(6 + 2/12, "feet"),
  54029. default: true
  54030. },
  54031. ]
  54032. ))
  54033. characterMakers.push(() => makeCharacter(
  54034. { name: "Plat", species: ["raven"], tags: ["anthro"] },
  54035. {
  54036. front: {
  54037. height: math.unit(5 + 9/12, "feet"),
  54038. weight: math.unit(150, "lb"),
  54039. name: "Front",
  54040. image: {
  54041. source: "./media/characters/plat/front.svg",
  54042. extra: 1816/1703,
  54043. bottom: 43/1859
  54044. }
  54045. },
  54046. side: {
  54047. height: math.unit(5 + 9/12, "feet"),
  54048. weight: math.unit(300, "lb"),
  54049. name: "Side",
  54050. image: {
  54051. source: "./media/characters/plat/side.svg",
  54052. extra: 1824/1699,
  54053. bottom: 18/1842
  54054. }
  54055. },
  54056. },
  54057. [
  54058. {
  54059. name: "Normal",
  54060. height: math.unit(5 + 9/12, "feet"),
  54061. default: true
  54062. },
  54063. ]
  54064. ))
  54065. characterMakers.push(() => makeCharacter(
  54066. { name: "Elaine", species: ["snake", "dragon"], tags: ["anthro"] },
  54067. {
  54068. front: {
  54069. height: math.unit(9, "feet"),
  54070. weight: math.unit(1800, "lb"),
  54071. name: "Front",
  54072. image: {
  54073. source: "./media/characters/elaine/front.svg",
  54074. extra: 1833/1354,
  54075. bottom: 25/1858
  54076. }
  54077. },
  54078. back: {
  54079. height: math.unit(8.8, "feet"),
  54080. weight: math.unit(1800, "lb"),
  54081. name: "Back",
  54082. image: {
  54083. source: "./media/characters/elaine/back.svg",
  54084. extra: 1641/1233,
  54085. bottom: 53/1694
  54086. }
  54087. },
  54088. },
  54089. [
  54090. {
  54091. name: "Normal",
  54092. height: math.unit(9, "feet"),
  54093. default: true
  54094. },
  54095. ]
  54096. ))
  54097. characterMakers.push(() => makeCharacter(
  54098. { name: "Vera (Raven)", species: ["raven"], tags: ["anthro"] },
  54099. {
  54100. front: {
  54101. height: math.unit(17 + 9/12, "feet"),
  54102. weight: math.unit(8000, "lb"),
  54103. name: "Front",
  54104. image: {
  54105. source: "./media/characters/vera-raven/front.svg",
  54106. extra: 1457/1412,
  54107. bottom: 121/1578
  54108. }
  54109. },
  54110. side: {
  54111. height: math.unit(17 + 9/12, "feet"),
  54112. weight: math.unit(8000, "lb"),
  54113. name: "Side",
  54114. image: {
  54115. source: "./media/characters/vera-raven/side.svg",
  54116. extra: 1510/1464,
  54117. bottom: 54/1564
  54118. }
  54119. },
  54120. },
  54121. [
  54122. {
  54123. name: "Normal",
  54124. height: math.unit(17 + 9/12, "feet"),
  54125. default: true
  54126. },
  54127. ]
  54128. ))
  54129. characterMakers.push(() => makeCharacter(
  54130. { name: "Nakisha", species: ["sabertooth-tiger", "leopard"], tags: ["anthro"] },
  54131. {
  54132. dressed: {
  54133. height: math.unit(6 + 9/12, "feet"),
  54134. name: "Dressed",
  54135. image: {
  54136. source: "./media/characters/nakisha/dressed.svg",
  54137. extra: 1909/1757,
  54138. bottom: 48/1957
  54139. }
  54140. },
  54141. nude: {
  54142. height: math.unit(6 + 9/12, "feet"),
  54143. name: "Nude",
  54144. image: {
  54145. source: "./media/characters/nakisha/nude.svg",
  54146. extra: 1917/1765,
  54147. bottom: 34/1951
  54148. }
  54149. },
  54150. },
  54151. [
  54152. {
  54153. name: "Normal",
  54154. height: math.unit(6 + 9/12, "feet"),
  54155. default: true
  54156. },
  54157. ]
  54158. ))
  54159. characterMakers.push(() => makeCharacter(
  54160. { name: "Serafin", species: ["dragon"], tags: ["anthro"] },
  54161. {
  54162. front: {
  54163. height: math.unit(87, "meters"),
  54164. name: "Front",
  54165. image: {
  54166. source: "./media/characters/serafin/front.svg",
  54167. extra: 1919/1776,
  54168. bottom: 65/1984
  54169. }
  54170. },
  54171. },
  54172. [
  54173. {
  54174. name: "Normal",
  54175. height: math.unit(87, "meters"),
  54176. default: true
  54177. },
  54178. ]
  54179. ))
  54180. characterMakers.push(() => makeCharacter(
  54181. { name: "Poptart", species: ["red-panda", "husky"], tags: ["anthro"] },
  54182. {
  54183. front: {
  54184. height: math.unit(6, "feet"),
  54185. weight: math.unit(200, "lb"),
  54186. name: "Front",
  54187. image: {
  54188. source: "./media/characters/poptart/front.svg",
  54189. extra: 615/583,
  54190. bottom: 23/638
  54191. }
  54192. },
  54193. back: {
  54194. height: math.unit(6, "feet"),
  54195. weight: math.unit(200, "lb"),
  54196. name: "Back",
  54197. image: {
  54198. source: "./media/characters/poptart/back.svg",
  54199. extra: 617/584,
  54200. bottom: 22/639
  54201. }
  54202. },
  54203. frontNsfw: {
  54204. height: math.unit(6, "feet"),
  54205. weight: math.unit(200, "lb"),
  54206. name: "Front (NSFW)",
  54207. image: {
  54208. source: "./media/characters/poptart/front-nsfw.svg",
  54209. extra: 615/583,
  54210. bottom: 23/638
  54211. }
  54212. },
  54213. backNsfw: {
  54214. height: math.unit(6, "feet"),
  54215. weight: math.unit(200, "lb"),
  54216. name: "Back (NSFW)",
  54217. image: {
  54218. source: "./media/characters/poptart/back-nsfw.svg",
  54219. extra: 617/584,
  54220. bottom: 22/639
  54221. }
  54222. },
  54223. hand: {
  54224. height: math.unit(1.14, "feet"),
  54225. name: "Hand",
  54226. image: {
  54227. source: "./media/characters/poptart/hand.svg"
  54228. }
  54229. },
  54230. foot: {
  54231. height: math.unit(1.5, "feet"),
  54232. name: "Foot",
  54233. image: {
  54234. source: "./media/characters/poptart/foot.svg"
  54235. }
  54236. },
  54237. },
  54238. [
  54239. {
  54240. name: "Normal",
  54241. height: math.unit(6, "feet"),
  54242. default: true
  54243. },
  54244. {
  54245. name: "Grande",
  54246. height: math.unit(350, "feet")
  54247. },
  54248. {
  54249. name: "Massif",
  54250. height: math.unit(967, "feet")
  54251. },
  54252. ]
  54253. ))
  54254. characterMakers.push(() => makeCharacter(
  54255. { name: "Trance", species: ["hyena"], tags: ["anthro"] },
  54256. {
  54257. hyenaSide: {
  54258. height: math.unit(120, "cm"),
  54259. weight: math.unit(120, "lb"),
  54260. name: "Side",
  54261. image: {
  54262. source: "./media/characters/trance/hyena-side.svg",
  54263. extra: 998/904,
  54264. bottom: 76/1074
  54265. }
  54266. },
  54267. },
  54268. [
  54269. {
  54270. name: "Normal",
  54271. height: math.unit(120, "cm"),
  54272. default: true
  54273. },
  54274. {
  54275. name: "Dire",
  54276. height: math.unit(230, "cm")
  54277. },
  54278. {
  54279. name: "Macro",
  54280. height: math.unit(37, "feet")
  54281. },
  54282. ]
  54283. ))
  54284. characterMakers.push(() => makeCharacter(
  54285. { name: "Michael Berretta", species: ["lion"], tags: ["anthro"] },
  54286. {
  54287. front: {
  54288. height: math.unit(6 + 3/12, "feet"),
  54289. name: "Front",
  54290. image: {
  54291. source: "./media/characters/michael-berretta/front.svg",
  54292. extra: 515/494,
  54293. bottom: 20/535
  54294. }
  54295. },
  54296. back: {
  54297. height: math.unit(6 + 3/12, "feet"),
  54298. name: "Back",
  54299. image: {
  54300. source: "./media/characters/michael-berretta/back.svg",
  54301. extra: 520/497,
  54302. bottom: 21/541
  54303. }
  54304. },
  54305. frontNsfw: {
  54306. height: math.unit(6 + 3/12, "feet"),
  54307. name: "Front (NSFW)",
  54308. image: {
  54309. source: "./media/characters/michael-berretta/front-nsfw.svg",
  54310. extra: 515/494,
  54311. bottom: 20/535
  54312. }
  54313. },
  54314. dick: {
  54315. height: math.unit(1, "feet"),
  54316. name: "Dick",
  54317. image: {
  54318. source: "./media/characters/michael-berretta/dick.svg"
  54319. }
  54320. },
  54321. },
  54322. [
  54323. {
  54324. name: "Normal",
  54325. height: math.unit(6 + 3/12, "feet"),
  54326. default: true
  54327. },
  54328. {
  54329. name: "Big",
  54330. height: math.unit(12, "feet")
  54331. },
  54332. {
  54333. name: "Macro",
  54334. height: math.unit(187.5, "feet")
  54335. },
  54336. ]
  54337. ))
  54338. characterMakers.push(() => makeCharacter(
  54339. { name: "Stella Edgecomb", species: ["bear"], tags: ["anthro"] },
  54340. {
  54341. front: {
  54342. height: math.unit(9 + 9/12, "feet"),
  54343. weight: math.unit(1244, "lb"),
  54344. name: "Front",
  54345. image: {
  54346. source: "./media/characters/stella-edgecomb/front.svg",
  54347. extra: 1835/1706,
  54348. bottom: 49/1884
  54349. }
  54350. },
  54351. pen: {
  54352. height: math.unit(0.95, "feet"),
  54353. name: "Pen",
  54354. image: {
  54355. source: "./media/characters/stella-edgecomb/pen.svg"
  54356. }
  54357. },
  54358. },
  54359. [
  54360. {
  54361. name: "Cozy Bear",
  54362. height: math.unit(0.5, "inches")
  54363. },
  54364. {
  54365. name: "Normal",
  54366. height: math.unit(9 + 9/12, "feet"),
  54367. default: true
  54368. },
  54369. {
  54370. name: "Giga Bear",
  54371. height: math.unit(1, "mile")
  54372. },
  54373. {
  54374. name: "Great Bear",
  54375. height: math.unit(53, "miles")
  54376. },
  54377. {
  54378. name: "Goddess Bear",
  54379. height: math.unit(40000, "miles")
  54380. },
  54381. {
  54382. name: "Sun Bear",
  54383. height: math.unit(900000, "miles")
  54384. },
  54385. ]
  54386. ))
  54387. characterMakers.push(() => makeCharacter(
  54388. { name: "Ash´iika", species: ["dragon"], tags: ["anthro", "feral"] },
  54389. {
  54390. anthroFront: {
  54391. height: math.unit(556, "cm"),
  54392. weight: math.unit(2650, "kg"),
  54393. preyCapacity: math.unit(3, "people"),
  54394. name: "Front",
  54395. image: {
  54396. source: "./media/characters/ash´iika/front.svg",
  54397. extra: 710/673,
  54398. bottom: 15/725
  54399. },
  54400. form: "anthro",
  54401. default: true
  54402. },
  54403. anthroSide: {
  54404. height: math.unit(556, "cm"),
  54405. weight: math.unit(2650, "kg"),
  54406. preyCapacity: math.unit(3, "people"),
  54407. name: "Side",
  54408. image: {
  54409. source: "./media/characters/ash´iika/side.svg",
  54410. extra: 696/676,
  54411. bottom: 13/709
  54412. },
  54413. form: "anthro"
  54414. },
  54415. anthroDressed: {
  54416. height: math.unit(556, "cm"),
  54417. weight: math.unit(2650, "kg"),
  54418. preyCapacity: math.unit(3, "people"),
  54419. name: "Dressed",
  54420. image: {
  54421. source: "./media/characters/ash´iika/dressed.svg",
  54422. extra: 710/673,
  54423. bottom: 15/725
  54424. },
  54425. form: "anthro"
  54426. },
  54427. anthroHead: {
  54428. height: math.unit(3.5, "feet"),
  54429. name: "Head",
  54430. image: {
  54431. source: "./media/characters/ash´iika/head.svg",
  54432. extra: 348/291,
  54433. bottom: 45/393
  54434. },
  54435. form: "anthro"
  54436. },
  54437. feralSide: {
  54438. height: math.unit(870, "cm"),
  54439. weight: math.unit(17500, "kg"),
  54440. preyCapacity: math.unit(15, "people"),
  54441. name: "Side",
  54442. image: {
  54443. source: "./media/characters/ash´iika/feral.svg",
  54444. extra: 595/199,
  54445. bottom: 7/602
  54446. },
  54447. form: "feral",
  54448. default: true,
  54449. },
  54450. },
  54451. [
  54452. {
  54453. name: "Normal",
  54454. height: math.unit(556, "cm"),
  54455. default: true,
  54456. form: "anthro"
  54457. },
  54458. {
  54459. name: "Macro",
  54460. height: math.unit(88, "meters"),
  54461. form: "anthro"
  54462. },
  54463. {
  54464. name: "Normal",
  54465. height: math.unit(870, "cm"),
  54466. default: true,
  54467. form: "feral"
  54468. },
  54469. {
  54470. name: "Large",
  54471. height: math.unit(25, "meters"),
  54472. form: "feral"
  54473. },
  54474. ],
  54475. {
  54476. "anthro": {
  54477. name: "Anthro",
  54478. default: true
  54479. },
  54480. "feral": {
  54481. name: "Feral",
  54482. },
  54483. }
  54484. ))
  54485. characterMakers.push(() => makeCharacter(
  54486. { name: "Yen", species: ["hrothgar"], tags: ["anthro"] },
  54487. {
  54488. front: {
  54489. height: math.unit(10, "feet"),
  54490. weight: math.unit(800, "lb"),
  54491. name: "Front",
  54492. image: {
  54493. source: "./media/characters/yen/front.svg",
  54494. extra: 443/411,
  54495. bottom: 6/449
  54496. }
  54497. },
  54498. sleeping: {
  54499. height: math.unit(10, "feet"),
  54500. weight: math.unit(800, "lb"),
  54501. name: "Sleeping",
  54502. image: {
  54503. source: "./media/characters/yen/sleeping.svg",
  54504. extra: 470/422,
  54505. bottom: 0/470
  54506. }
  54507. },
  54508. head: {
  54509. height: math.unit(2.2, "feet"),
  54510. name: "Head",
  54511. image: {
  54512. source: "./media/characters/yen/head.svg"
  54513. }
  54514. },
  54515. headAlt: {
  54516. height: math.unit(2.1, "feet"),
  54517. name: "Head (Alt)",
  54518. image: {
  54519. source: "./media/characters/yen/head-alt.svg"
  54520. }
  54521. },
  54522. },
  54523. [
  54524. {
  54525. name: "Normal",
  54526. height: math.unit(10, "feet"),
  54527. default: true
  54528. },
  54529. ]
  54530. ))
  54531. characterMakers.push(() => makeCharacter(
  54532. { name: "Citra", species: ["dragon"], tags: ["anthro"] },
  54533. {
  54534. front: {
  54535. height: math.unit(12, "feet"),
  54536. name: "Front",
  54537. image: {
  54538. source: "./media/characters/citra/front.svg",
  54539. extra: 1950/1710,
  54540. bottom: 47/1997
  54541. }
  54542. },
  54543. },
  54544. [
  54545. {
  54546. name: "Normal",
  54547. height: math.unit(12, "feet"),
  54548. default: true
  54549. },
  54550. ]
  54551. ))
  54552. characterMakers.push(() => makeCharacter(
  54553. { name: "Sholstim", species: ["dragon"], tags: ["feral"] },
  54554. {
  54555. side: {
  54556. height: math.unit(7 + 10/12, "feet"),
  54557. name: "Side",
  54558. image: {
  54559. source: "./media/characters/sholstim/side.svg",
  54560. extra: 786/682,
  54561. bottom: 40/826
  54562. }
  54563. },
  54564. },
  54565. [
  54566. {
  54567. name: "Normal",
  54568. height: math.unit(7 + 10/12, "feet"),
  54569. default: true
  54570. },
  54571. ]
  54572. ))
  54573. characterMakers.push(() => makeCharacter(
  54574. { name: "Aggyn", species: ["human", "cobra"], tags: ["anthro"] },
  54575. {
  54576. front: {
  54577. height: math.unit(3.10, "meters"),
  54578. name: "Front",
  54579. image: {
  54580. source: "./media/characters/aggyn/front.svg",
  54581. extra: 1188/963,
  54582. bottom: 24/1212
  54583. }
  54584. },
  54585. },
  54586. [
  54587. {
  54588. name: "Normal",
  54589. height: math.unit(3.10, "meters"),
  54590. default: true
  54591. },
  54592. ]
  54593. ))
  54594. characterMakers.push(() => makeCharacter(
  54595. { name: "Alsandair Hergenroether", species: ["pangolin", "deity"], tags: ["anthro"] },
  54596. {
  54597. front: {
  54598. height: math.unit(7 + 5/12, "feet"),
  54599. weight: math.unit(687, "lb"),
  54600. name: "Front",
  54601. image: {
  54602. source: "./media/characters/alsandair-hergenroether/front.svg",
  54603. extra: 1251/1186,
  54604. bottom: 75/1326
  54605. }
  54606. },
  54607. back: {
  54608. height: math.unit(7 + 5/12, "feet"),
  54609. weight: math.unit(687, "lb"),
  54610. name: "Back",
  54611. image: {
  54612. source: "./media/characters/alsandair-hergenroether/back.svg",
  54613. extra: 1290/1229,
  54614. bottom: 17/1307
  54615. }
  54616. },
  54617. },
  54618. [
  54619. {
  54620. name: "Max Compression",
  54621. height: math.unit(7 + 5/12, "feet"),
  54622. default: true
  54623. },
  54624. {
  54625. name: "\"Normal\"",
  54626. height: math.unit(2, "universes")
  54627. },
  54628. ]
  54629. ))
  54630. characterMakers.push(() => makeCharacter(
  54631. { name: "Ie", species: ["teshari"], tags: ["anthro"] },
  54632. {
  54633. front: {
  54634. height: math.unit(4 + 1/12, "feet"),
  54635. weight: math.unit(92, "lb"),
  54636. name: "Front",
  54637. image: {
  54638. source: "./media/characters/ie/front.svg",
  54639. extra: 1585/1352,
  54640. bottom: 91/1676
  54641. }
  54642. },
  54643. },
  54644. [
  54645. {
  54646. name: "Normal",
  54647. height: math.unit(4 + 1/12, "feet"),
  54648. default: true
  54649. },
  54650. ]
  54651. ))
  54652. characterMakers.push(() => makeCharacter(
  54653. { name: "Willow", species: ["nargacuga", "garchomp"], tags: ["anthro", "taur"] },
  54654. {
  54655. anthro: {
  54656. height: math.unit(6, "feet"),
  54657. weight: math.unit(150, "lb"),
  54658. name: "Front",
  54659. image: {
  54660. source: "./media/characters/willow/anthro.svg",
  54661. extra: 1073/986,
  54662. bottom: 34/1107
  54663. },
  54664. form: "anthro",
  54665. default: true
  54666. },
  54667. taur: {
  54668. height: math.unit(6, "feet"),
  54669. weight: math.unit(150, "lb"),
  54670. name: "Side",
  54671. image: {
  54672. source: "./media/characters/willow/taur.svg",
  54673. extra: 647/512,
  54674. bottom: 136/783
  54675. },
  54676. form: "taur",
  54677. default: true
  54678. },
  54679. },
  54680. [
  54681. {
  54682. name: "Humanoid",
  54683. height: math.unit(2.7, "meters"),
  54684. form: "anthro"
  54685. },
  54686. {
  54687. name: "Normal",
  54688. height: math.unit(9, "meters"),
  54689. form: "anthro",
  54690. default: true
  54691. },
  54692. {
  54693. name: "Humanoid",
  54694. height: math.unit(2.1, "meters"),
  54695. form: "taur"
  54696. },
  54697. {
  54698. name: "Normal",
  54699. height: math.unit(7, "meters"),
  54700. form: "taur",
  54701. default: true
  54702. },
  54703. ],
  54704. {
  54705. "anthro": {
  54706. name: "Anthro",
  54707. default: true
  54708. },
  54709. "taur": {
  54710. name: "Taur",
  54711. },
  54712. }
  54713. ))
  54714. characterMakers.push(() => makeCharacter(
  54715. { name: "Kyan", species: ["sable"], tags: ["anthro"] },
  54716. {
  54717. front: {
  54718. height: math.unit(2 + 5/12, "feet"),
  54719. name: "Front",
  54720. image: {
  54721. source: "./media/characters/kyan/front.svg",
  54722. extra: 460/334,
  54723. bottom: 23/483
  54724. },
  54725. extraAttributes: {
  54726. "toeLength": {
  54727. name: "Toe Length",
  54728. power: 1,
  54729. type: "length",
  54730. base: math.unit(7, "cm")
  54731. },
  54732. "toeclawLength": {
  54733. name: "Toeclaw Length",
  54734. power: 1,
  54735. type: "length",
  54736. base: math.unit(4.7, "cm")
  54737. },
  54738. "earHeight": {
  54739. name: "Ear Height",
  54740. power: 1,
  54741. type: "length",
  54742. base: math.unit(14.1, "cm")
  54743. },
  54744. }
  54745. },
  54746. paws: {
  54747. height: math.unit(0.45, "feet"),
  54748. name: "Paws",
  54749. image: {
  54750. source: "./media/characters/kyan/paws.svg",
  54751. extra: 581/581,
  54752. bottom: 114/695
  54753. }
  54754. },
  54755. },
  54756. [
  54757. {
  54758. name: "Normal",
  54759. height: math.unit(2 + 5/12, "feet"),
  54760. default: true
  54761. },
  54762. ]
  54763. ))
  54764. characterMakers.push(() => makeCharacter(
  54765. { name: "Xazzon", species: ["deino"], tags: ["anthro"] },
  54766. {
  54767. front: {
  54768. height: math.unit(2 + 2/3, "feet"),
  54769. name: "Front",
  54770. image: {
  54771. source: "./media/characters/xazzon/front.svg",
  54772. extra: 1109/984,
  54773. bottom: 42/1151
  54774. }
  54775. },
  54776. back: {
  54777. height: math.unit(2 + 2/3, "feet"),
  54778. name: "Back",
  54779. image: {
  54780. source: "./media/characters/xazzon/back.svg",
  54781. extra: 1095/971,
  54782. bottom: 23/1118
  54783. }
  54784. },
  54785. },
  54786. [
  54787. {
  54788. name: "Normal",
  54789. height: math.unit(2 + 2/3, "feet"),
  54790. default: true
  54791. },
  54792. ]
  54793. ))
  54794. characterMakers.push(() => makeCharacter(
  54795. { name: "Khyla Shadowsong", species: ["charr"], tags: ["anthro"] },
  54796. {
  54797. front: {
  54798. height: math.unit(8, "feet"),
  54799. weight: math.unit(300, "lb"),
  54800. name: "Front",
  54801. image: {
  54802. source: "./media/characters/khyla-shadowsong/front.svg",
  54803. extra: 861/798,
  54804. bottom: 32/893
  54805. }
  54806. },
  54807. side: {
  54808. height: math.unit(8, "feet"),
  54809. weight: math.unit(300, "lb"),
  54810. name: "Side",
  54811. image: {
  54812. source: "./media/characters/khyla-shadowsong/side.svg",
  54813. extra: 790/750,
  54814. bottom: 87/877
  54815. }
  54816. },
  54817. back: {
  54818. height: math.unit(8, "feet"),
  54819. weight: math.unit(300, "lb"),
  54820. name: "Back",
  54821. image: {
  54822. source: "./media/characters/khyla-shadowsong/back.svg",
  54823. extra: 855/808,
  54824. bottom: 14/869
  54825. }
  54826. },
  54827. head: {
  54828. height: math.unit(2.7, "feet"),
  54829. name: "Head",
  54830. image: {
  54831. source: "./media/characters/khyla-shadowsong/head.svg"
  54832. }
  54833. },
  54834. },
  54835. [
  54836. {
  54837. name: "Micro",
  54838. height: math.unit(6, "inches")
  54839. },
  54840. {
  54841. name: "Normal",
  54842. height: math.unit(8, "feet"),
  54843. default: true
  54844. },
  54845. ]
  54846. ))
  54847. characterMakers.push(() => makeCharacter(
  54848. { name: "Tiden", species: ["housecat"], tags: ["anthro"] },
  54849. {
  54850. hyperFront: {
  54851. height: math.unit(9 + 4/12, "feet"),
  54852. weight: math.unit(2000, "lb"),
  54853. name: "Front",
  54854. image: {
  54855. source: "./media/characters/tiden/hyper-front.svg",
  54856. extra: 400/382,
  54857. bottom: 6/406
  54858. },
  54859. form: "hyper",
  54860. },
  54861. regularFront: {
  54862. height: math.unit(7 + 10/12, "feet"),
  54863. weight: math.unit(470, "lb"),
  54864. name: "Front",
  54865. image: {
  54866. source: "./media/characters/tiden/regular-front.svg",
  54867. extra: 468/442,
  54868. bottom: 6/474
  54869. },
  54870. form: "regular",
  54871. },
  54872. },
  54873. [
  54874. {
  54875. name: "Normal",
  54876. height: math.unit(9 + 4/12, "feet"),
  54877. default: true,
  54878. form: "hyper"
  54879. },
  54880. {
  54881. name: "Normal",
  54882. height: math.unit(7 + 10/12, "feet"),
  54883. default: true,
  54884. form: "regular"
  54885. },
  54886. ],
  54887. {
  54888. "hyper": {
  54889. name: "Hyper",
  54890. default: true
  54891. },
  54892. "regular": {
  54893. name: "Regular",
  54894. },
  54895. }
  54896. ))
  54897. characterMakers.push(() => makeCharacter(
  54898. { name: "Jason Crowe", species: ["gryphon", "raven", "bombay-cat"], tags: ["feral"] },
  54899. {
  54900. side: {
  54901. height: math.unit(6, "feet"),
  54902. weight: math.unit(150, "lb"),
  54903. name: "Side",
  54904. image: {
  54905. source: "./media/characters/jason-crowe/side.svg",
  54906. extra: 1771/766,
  54907. bottom: 219/1990
  54908. }
  54909. },
  54910. },
  54911. [
  54912. {
  54913. name: "Pocket Gryphon",
  54914. height: math.unit(6, "cm")
  54915. },
  54916. {
  54917. name: "Raven",
  54918. height: math.unit(60, "cm")
  54919. },
  54920. {
  54921. name: "Normal",
  54922. height: math.unit(1, "meter"),
  54923. default: true
  54924. },
  54925. ]
  54926. ))
  54927. characterMakers.push(() => makeCharacter(
  54928. { name: "Django", species: ["maine-coon"], tags: ["anthro"] },
  54929. {
  54930. front: {
  54931. height: math.unit(9 + 6/12, "feet"),
  54932. weight: math.unit(1100, "lb"),
  54933. name: "Front",
  54934. image: {
  54935. source: "./media/characters/django/front.svg",
  54936. extra: 1231/1136,
  54937. bottom: 34/1265
  54938. }
  54939. },
  54940. side: {
  54941. height: math.unit(9 + 6/12, "feet"),
  54942. weight: math.unit(1100, "lb"),
  54943. name: "Side",
  54944. image: {
  54945. source: "./media/characters/django/side.svg",
  54946. extra: 1267/1174,
  54947. bottom: 9/1276
  54948. }
  54949. },
  54950. },
  54951. [
  54952. {
  54953. name: "Normal",
  54954. height: math.unit(9 + 6/12, "feet"),
  54955. default: true
  54956. },
  54957. {
  54958. name: "Macro 1",
  54959. height: math.unit(50, "feet")
  54960. },
  54961. {
  54962. name: "Macro 2",
  54963. height: math.unit(500, "feet")
  54964. },
  54965. {
  54966. name: "Mega Macro",
  54967. height: math.unit(5300, "feet")
  54968. },
  54969. ]
  54970. ))
  54971. characterMakers.push(() => makeCharacter(
  54972. { name: "Eri", species: ["moth", "alien"], tags: ["anthro"] },
  54973. {
  54974. frontSfw: {
  54975. height: math.unit(120, "cm"),
  54976. weight: math.unit(15, "kg"),
  54977. name: "Front (SFW)",
  54978. image: {
  54979. source: "./media/characters/eri/front-sfw.svg",
  54980. extra: 1014/939,
  54981. bottom: 37/1051
  54982. },
  54983. form: "moth",
  54984. },
  54985. frontNsfw: {
  54986. height: math.unit(120, "cm"),
  54987. weight: math.unit(15, "kg"),
  54988. name: "Front (NSFW)",
  54989. image: {
  54990. source: "./media/characters/eri/front-nsfw.svg",
  54991. extra: 1014/939,
  54992. bottom: 37/1051
  54993. },
  54994. form: "moth",
  54995. default: true
  54996. },
  54997. egg: {
  54998. height: math.unit(10, "cm"),
  54999. name: "Egg",
  55000. image: {
  55001. source: "./media/characters/eri/egg.svg"
  55002. },
  55003. form: "egg",
  55004. default: true
  55005. },
  55006. },
  55007. [
  55008. {
  55009. name: "Normal",
  55010. height: math.unit(120, "cm"),
  55011. default: true,
  55012. form: "moth"
  55013. },
  55014. {
  55015. name: "Normal",
  55016. height: math.unit(10, "cm"),
  55017. default: true,
  55018. form: "egg"
  55019. },
  55020. ],
  55021. {
  55022. "moth": {
  55023. name: "Moth",
  55024. default: true
  55025. },
  55026. "egg": {
  55027. name: "Egg",
  55028. },
  55029. }
  55030. ))
  55031. characterMakers.push(() => makeCharacter(
  55032. { name: "Bishop Dowser", species: ["red-panda"], tags: ["anthro"] },
  55033. {
  55034. front: {
  55035. height: math.unit(200, "feet"),
  55036. name: "Front",
  55037. image: {
  55038. source: "./media/characters/bishop-dowser/front.svg",
  55039. extra: 933/868,
  55040. bottom: 106/1039
  55041. }
  55042. },
  55043. },
  55044. [
  55045. {
  55046. name: "Giant",
  55047. height: math.unit(200, "feet"),
  55048. default: true
  55049. },
  55050. ]
  55051. ))
  55052. characterMakers.push(() => makeCharacter(
  55053. { name: "Fryra", species: ["dragon", "cow"], tags: ["anthro"] },
  55054. {
  55055. front: {
  55056. height: math.unit(2, "meters"),
  55057. preyCapacity: math.unit(3, "people"),
  55058. name: "Front",
  55059. image: {
  55060. source: "./media/characters/fryra/front.svg",
  55061. extra: 1025/948,
  55062. bottom: 30/1055
  55063. },
  55064. extraAttributes: {
  55065. "breastVolume": {
  55066. name: "Breast Volume",
  55067. power: 3,
  55068. type: "volume",
  55069. base: math.unit(8, "liters")
  55070. },
  55071. }
  55072. },
  55073. back: {
  55074. height: math.unit(2, "meters"),
  55075. preyCapacity: math.unit(3, "people"),
  55076. name: "Back",
  55077. image: {
  55078. source: "./media/characters/fryra/back.svg",
  55079. extra: 993/938,
  55080. bottom: 38/1031
  55081. },
  55082. extraAttributes: {
  55083. "breastVolume": {
  55084. name: "Breast Volume",
  55085. power: 3,
  55086. type: "volume",
  55087. base: math.unit(8, "liters")
  55088. },
  55089. }
  55090. },
  55091. head: {
  55092. height: math.unit(1.33, "feet"),
  55093. name: "Head",
  55094. image: {
  55095. source: "./media/characters/fryra/head.svg"
  55096. }
  55097. },
  55098. maw: {
  55099. height: math.unit(0.56, "feet"),
  55100. name: "Maw",
  55101. image: {
  55102. source: "./media/characters/fryra/maw.svg"
  55103. }
  55104. },
  55105. },
  55106. [
  55107. {
  55108. name: "Micro",
  55109. height: math.unit(5, "cm")
  55110. },
  55111. {
  55112. name: "Normal",
  55113. height: math.unit(2, "meters"),
  55114. default: true
  55115. },
  55116. {
  55117. name: "Small Macro",
  55118. height: math.unit(8, "meters")
  55119. },
  55120. {
  55121. name: "Macro",
  55122. height: math.unit(50, "meters")
  55123. },
  55124. {
  55125. name: "Megamacro",
  55126. height: math.unit(1, "km")
  55127. },
  55128. {
  55129. name: "Planetary",
  55130. height: math.unit(300000, "km")
  55131. },
  55132. {
  55133. name: "Universal",
  55134. height: math.unit(250, "lightyears")
  55135. },
  55136. {
  55137. name: "Fabric of Reality",
  55138. height: math.unit(1000, "multiverses")
  55139. },
  55140. ]
  55141. ))
  55142. characterMakers.push(() => makeCharacter(
  55143. { name: "Fiera", species: ["husky"], tags: ["anthro"] },
  55144. {
  55145. frontDressed: {
  55146. height: math.unit(6 + 2/12, "feet"),
  55147. name: "Front (Dressed)",
  55148. image: {
  55149. source: "./media/characters/fiera/front-dressed.svg",
  55150. extra: 1883/1793,
  55151. bottom: 70/1953
  55152. }
  55153. },
  55154. backDressed: {
  55155. height: math.unit(6 + 2/12, "feet"),
  55156. name: "Back (Dressed)",
  55157. image: {
  55158. source: "./media/characters/fiera/back-dressed.svg",
  55159. extra: 1847/1780,
  55160. bottom: 70/1917
  55161. }
  55162. },
  55163. frontNude: {
  55164. height: math.unit(6 + 2/12, "feet"),
  55165. name: "Front (Nude)",
  55166. image: {
  55167. source: "./media/characters/fiera/front-nude.svg",
  55168. extra: 1875/1785,
  55169. bottom: 66/1941
  55170. }
  55171. },
  55172. backNude: {
  55173. height: math.unit(6 + 2/12, "feet"),
  55174. name: "Back (Nude)",
  55175. image: {
  55176. source: "./media/characters/fiera/back-nude.svg",
  55177. extra: 1855/1788,
  55178. bottom: 44/1899
  55179. }
  55180. },
  55181. maw: {
  55182. height: math.unit(1.3, "feet"),
  55183. name: "Maw",
  55184. image: {
  55185. source: "./media/characters/fiera/maw.svg"
  55186. }
  55187. },
  55188. paw: {
  55189. height: math.unit(1, "feet"),
  55190. name: "Paw",
  55191. image: {
  55192. source: "./media/characters/fiera/paw.svg"
  55193. }
  55194. },
  55195. shoe: {
  55196. height: math.unit(1.05, "feet"),
  55197. name: "Shoe",
  55198. image: {
  55199. source: "./media/characters/fiera/shoe.svg"
  55200. }
  55201. },
  55202. },
  55203. [
  55204. {
  55205. name: "Normal",
  55206. height: math.unit(6 + 2/12, "feet"),
  55207. default: true
  55208. },
  55209. {
  55210. name: "Size Difference",
  55211. height: math.unit(13, "feet")
  55212. },
  55213. {
  55214. name: "Macro",
  55215. height: math.unit(60, "feet")
  55216. },
  55217. {
  55218. name: "Mega Macro",
  55219. height: math.unit(200, "feet")
  55220. },
  55221. ]
  55222. ))
  55223. characterMakers.push(() => makeCharacter(
  55224. { name: "Flare", species: ["husky"], tags: ["anthro"] },
  55225. {
  55226. back: {
  55227. height: math.unit(6, "feet"),
  55228. name: "Back",
  55229. image: {
  55230. source: "./media/characters/flare/back.svg",
  55231. extra: 1883/1765,
  55232. bottom: 32/1915
  55233. }
  55234. },
  55235. },
  55236. [
  55237. {
  55238. name: "Normal",
  55239. height: math.unit(6 + 2/12, "feet"),
  55240. default: true
  55241. },
  55242. {
  55243. name: "Size Difference",
  55244. height: math.unit(13, "feet")
  55245. },
  55246. {
  55247. name: "Macro",
  55248. height: math.unit(60, "feet")
  55249. },
  55250. {
  55251. name: "Macro 2",
  55252. height: math.unit(100, "feet")
  55253. },
  55254. {
  55255. name: "Mega Macro",
  55256. height: math.unit(200, "feet")
  55257. },
  55258. ]
  55259. ))
  55260. characterMakers.push(() => makeCharacter(
  55261. { name: "Hanna", species: ["coelacanth"], tags: ["anthro"] },
  55262. {
  55263. front: {
  55264. height: math.unit(2.2, "m"),
  55265. weight: math.unit(300, "kg"),
  55266. name: "Front",
  55267. image: {
  55268. source: "./media/characters/hanna/front.svg",
  55269. extra: 1696/1502,
  55270. bottom: 206/1902
  55271. }
  55272. },
  55273. },
  55274. [
  55275. {
  55276. name: "Humanoid",
  55277. height: math.unit(2.2, "meters")
  55278. },
  55279. {
  55280. name: "Normal",
  55281. height: math.unit(4.8, "meters"),
  55282. default: true
  55283. },
  55284. ]
  55285. ))
  55286. characterMakers.push(() => makeCharacter(
  55287. { name: "Argo", species: ["silvally"], tags: ["taur"] },
  55288. {
  55289. front: {
  55290. height: math.unit(2.8, "meters"),
  55291. name: "Front",
  55292. image: {
  55293. source: "./media/characters/argo/front.svg",
  55294. extra: 731/518,
  55295. bottom: 84/815
  55296. }
  55297. },
  55298. },
  55299. [
  55300. {
  55301. name: "Normal",
  55302. height: math.unit(3, "meters"),
  55303. default: true
  55304. },
  55305. ]
  55306. ))
  55307. characterMakers.push(() => makeCharacter(
  55308. { name: "Sybil", species: ["scolipede", "typhlosion"], tags: ["feral"] },
  55309. {
  55310. side: {
  55311. height: math.unit(3.8, "meters"),
  55312. name: "Side",
  55313. image: {
  55314. source: "./media/characters/sybil/side.svg",
  55315. extra: 382/361,
  55316. bottom: 25/407
  55317. }
  55318. },
  55319. },
  55320. [
  55321. {
  55322. name: "Normal",
  55323. height: math.unit(3.8, "meters"),
  55324. default: true
  55325. },
  55326. ]
  55327. ))
  55328. characterMakers.push(() => makeCharacter(
  55329. { name: "Plum", species: ["great-maccao"], tags: ["taur", "feral"] },
  55330. {
  55331. side: {
  55332. height: math.unit(6, "meters"),
  55333. name: "Side",
  55334. image: {
  55335. source: "./media/characters/plum/side.svg",
  55336. extra: 858/755,
  55337. bottom: 45/903
  55338. },
  55339. form: "taur",
  55340. default: true
  55341. },
  55342. back: {
  55343. height: math.unit(6.3, "meters"),
  55344. name: "Back",
  55345. image: {
  55346. source: "./media/characters/plum/back.svg",
  55347. extra: 887/813,
  55348. bottom: 32/919
  55349. },
  55350. form: "taur",
  55351. },
  55352. feral: {
  55353. height: math.unit(5.5, "meter"),
  55354. name: "Front",
  55355. image: {
  55356. source: "./media/characters/plum/feral.svg",
  55357. extra: 568/403,
  55358. bottom: 51/619
  55359. },
  55360. form: "feral",
  55361. default: true
  55362. },
  55363. head: {
  55364. height: math.unit(1.46, "meter"),
  55365. name: "Head",
  55366. image: {
  55367. source: "./media/characters/plum/head.svg"
  55368. },
  55369. form: "taur"
  55370. },
  55371. tailTop: {
  55372. height: math.unit(5.6, "meter"),
  55373. name: "Tail (Top)",
  55374. image: {
  55375. source: "./media/characters/plum/tail-top.svg"
  55376. },
  55377. form: "taur",
  55378. },
  55379. tailBottom: {
  55380. height: math.unit(5.6, "meter"),
  55381. name: "Tail (Bottom)",
  55382. image: {
  55383. source: "./media/characters/plum/tail-bottom.svg"
  55384. },
  55385. form: "taur",
  55386. },
  55387. feralHead: {
  55388. height: math.unit(2.56549521, "meter"),
  55389. name: "Head",
  55390. image: {
  55391. source: "./media/characters/plum/head.svg"
  55392. },
  55393. form: "feral"
  55394. },
  55395. feralTailTop: {
  55396. height: math.unit(5.44728435, "meter"),
  55397. name: "Tail (Top)",
  55398. image: {
  55399. source: "./media/characters/plum/tail-top.svg"
  55400. },
  55401. form: "feral",
  55402. },
  55403. feralTailBottom: {
  55404. height: math.unit(5.44728435, "meter"),
  55405. name: "Tail (Bottom)",
  55406. image: {
  55407. source: "./media/characters/plum/tail-bottom.svg"
  55408. },
  55409. form: "feral",
  55410. },
  55411. },
  55412. [
  55413. {
  55414. name: "Normal",
  55415. height: math.unit(6, "meters"),
  55416. default: true,
  55417. form: "taur"
  55418. },
  55419. {
  55420. name: "Normal",
  55421. height: math.unit(5.5, "meters"),
  55422. default: true,
  55423. form: "feral"
  55424. },
  55425. ],
  55426. {
  55427. "taur": {
  55428. name: "Taur",
  55429. default: true
  55430. },
  55431. "feral": {
  55432. name: "Feral",
  55433. },
  55434. }
  55435. ))
  55436. characterMakers.push(() => makeCharacter(
  55437. { name: "Celeste (Kitsune)", species: ["kitsune"], tags: ["anthro"] },
  55438. {
  55439. front: {
  55440. height: math.unit(6, "feet"),
  55441. weight: math.unit(115, "lb"),
  55442. name: "Front",
  55443. image: {
  55444. source: "./media/characters/celeste-kitsune/front.svg",
  55445. extra: 393/366,
  55446. bottom: 7/400
  55447. }
  55448. },
  55449. side: {
  55450. height: math.unit(6, "feet"),
  55451. weight: math.unit(115, "lb"),
  55452. name: "Side",
  55453. image: {
  55454. source: "./media/characters/celeste-kitsune/side.svg",
  55455. extra: 818/765,
  55456. bottom: 40/858
  55457. }
  55458. },
  55459. },
  55460. [
  55461. {
  55462. name: "Megamacro",
  55463. height: math.unit(1500, "miles"),
  55464. default: true
  55465. },
  55466. ]
  55467. ))
  55468. characterMakers.push(() => makeCharacter(
  55469. { name: "Io", species: ["shapeshifter"], tags: ["anthro"] },
  55470. {
  55471. front: {
  55472. height: math.unit(8, "meters"),
  55473. name: "Front",
  55474. image: {
  55475. source: "./media/characters/io/front.svg",
  55476. extra: 865/722,
  55477. bottom: 58/923
  55478. }
  55479. },
  55480. back: {
  55481. height: math.unit(8, "meters"),
  55482. name: "Back",
  55483. image: {
  55484. source: "./media/characters/io/back.svg",
  55485. extra: 920/776,
  55486. bottom: 42/962
  55487. }
  55488. },
  55489. head: {
  55490. height: math.unit(5.09, "meters"),
  55491. name: "Head",
  55492. image: {
  55493. source: "./media/characters/io/head.svg"
  55494. }
  55495. },
  55496. hand: {
  55497. height: math.unit(1.6, "meters"),
  55498. name: "Hand",
  55499. image: {
  55500. source: "./media/characters/io/hand.svg"
  55501. }
  55502. },
  55503. foot: {
  55504. height: math.unit(2.4, "meters"),
  55505. name: "Foot",
  55506. image: {
  55507. source: "./media/characters/io/foot.svg"
  55508. }
  55509. },
  55510. },
  55511. [
  55512. {
  55513. name: "Normal",
  55514. height: math.unit(8, "meters"),
  55515. default: true
  55516. },
  55517. ]
  55518. ))
  55519. characterMakers.push(() => makeCharacter(
  55520. { name: "Silas", species: ["skaven"], tags: ["anthro"] },
  55521. {
  55522. side: {
  55523. height: math.unit(6 + 3/12, "feet"),
  55524. weight: math.unit(225, "lb"),
  55525. name: "Side",
  55526. image: {
  55527. source: "./media/characters/silas/side.svg",
  55528. extra: 703/653,
  55529. bottom: 23/726
  55530. },
  55531. extraAttributes: {
  55532. "pawLength": {
  55533. name: "Paw Length",
  55534. power: 1,
  55535. type: "length",
  55536. base: math.unit(12, "inches")
  55537. },
  55538. "pawWidth": {
  55539. name: "Paw Width",
  55540. power: 1,
  55541. type: "length",
  55542. base: math.unit(4.5, "inches")
  55543. },
  55544. "pawArea": {
  55545. name: "Paw Area",
  55546. power: 2,
  55547. type: "area",
  55548. base: math.unit(12 * 4.5, "inches^2")
  55549. },
  55550. }
  55551. },
  55552. },
  55553. [
  55554. {
  55555. name: "Normal",
  55556. height: math.unit(6 + 3/12, "feet"),
  55557. default: true
  55558. },
  55559. ]
  55560. ))
  55561. characterMakers.push(() => makeCharacter(
  55562. { name: "Zari", species: ["otter"], tags: ["anthro"] },
  55563. {
  55564. back: {
  55565. height: math.unit(1.6, "meters"),
  55566. weight: math.unit(150, "lb"),
  55567. name: "Back",
  55568. image: {
  55569. source: "./media/characters/zari/back.svg",
  55570. extra: 424/411,
  55571. bottom: 32/456
  55572. },
  55573. extraAttributes: {
  55574. "bladderCapacity": {
  55575. name: "Bladder Size",
  55576. power: 3,
  55577. type: "volume",
  55578. base: math.unit(500, "mL")
  55579. },
  55580. "bladderFlow": {
  55581. name: "Flow Rate",
  55582. power: 3,
  55583. type: "volume",
  55584. base: math.unit(25, "mL")
  55585. },
  55586. }
  55587. },
  55588. },
  55589. [
  55590. {
  55591. name: "Normal",
  55592. height: math.unit(1.6, "meters"),
  55593. default: true
  55594. },
  55595. ]
  55596. ))
  55597. characterMakers.push(() => makeCharacter(
  55598. { name: "Charlie (Human)", species: ["human"], tags: ["anthro"] },
  55599. {
  55600. front: {
  55601. height: math.unit(25, "feet"),
  55602. weight: math.unit(5, "tons"),
  55603. name: "Front",
  55604. image: {
  55605. source: "./media/characters/charlie-human/front.svg",
  55606. extra: 1870/1740,
  55607. bottom: 102/1972
  55608. },
  55609. extraAttributes: {
  55610. "dickLength": {
  55611. name: "Dick Length",
  55612. power: 1,
  55613. type: "length",
  55614. base: math.unit(9, "feet")
  55615. },
  55616. }
  55617. },
  55618. back: {
  55619. height: math.unit(25, "feet"),
  55620. weight: math.unit(5, "tons"),
  55621. name: "Back",
  55622. image: {
  55623. source: "./media/characters/charlie-human/back.svg",
  55624. extra: 1858/1733,
  55625. bottom: 105/1963
  55626. },
  55627. extraAttributes: {
  55628. "dickLength": {
  55629. name: "Dick Length",
  55630. power: 1,
  55631. type: "length",
  55632. base: math.unit(9, "feet")
  55633. },
  55634. }
  55635. },
  55636. },
  55637. [
  55638. {
  55639. name: "\"Normal\"",
  55640. height: math.unit(6 + 4/12, "feet")
  55641. },
  55642. {
  55643. name: "Big",
  55644. height: math.unit(25, "feet"),
  55645. default: true
  55646. },
  55647. ]
  55648. ))
  55649. characterMakers.push(() => makeCharacter(
  55650. { name: "Ookitsu", species: ["kitsune"], tags: ["anthro"] },
  55651. {
  55652. front: {
  55653. height: math.unit(6 + 4/12, "feet"),
  55654. weight: math.unit(320, "lb"),
  55655. name: "Front",
  55656. image: {
  55657. source: "./media/characters/ookitsu/front.svg",
  55658. extra: 1160/976,
  55659. bottom: 38/1198
  55660. }
  55661. },
  55662. frontNsfw: {
  55663. height: math.unit(6 + 4/12, "feet"),
  55664. weight: math.unit(320, "lb"),
  55665. name: "Front (NSFW)",
  55666. image: {
  55667. source: "./media/characters/ookitsu/front-nsfw.svg",
  55668. extra: 1160/976,
  55669. bottom: 38/1198
  55670. }
  55671. },
  55672. back: {
  55673. height: math.unit(6 + 4/12, "feet"),
  55674. weight: math.unit(320, "lb"),
  55675. name: "Back",
  55676. image: {
  55677. source: "./media/characters/ookitsu/back.svg",
  55678. extra: 1030/975,
  55679. bottom: 70/1100
  55680. }
  55681. },
  55682. head: {
  55683. height: math.unit(1.79, "feet"),
  55684. name: "Head",
  55685. image: {
  55686. source: "./media/characters/ookitsu/head.svg"
  55687. }
  55688. },
  55689. hand: {
  55690. height: math.unit(0.92, "feet"),
  55691. name: "Hand",
  55692. image: {
  55693. source: "./media/characters/ookitsu/hand.svg"
  55694. }
  55695. },
  55696. tails: {
  55697. height: math.unit(3.3, "feet"),
  55698. name: "Tails",
  55699. image: {
  55700. source: "./media/characters/ookitsu/tails.svg"
  55701. }
  55702. },
  55703. dick: {
  55704. height: math.unit(1.10833, "feet"),
  55705. name: "Dick",
  55706. image: {
  55707. source: "./media/characters/ookitsu/dick.svg"
  55708. }
  55709. },
  55710. },
  55711. [
  55712. {
  55713. name: "Normal",
  55714. height: math.unit(6 + 4/12, "feet"),
  55715. default: true
  55716. },
  55717. {
  55718. name: "Macro",
  55719. height: math.unit(30, "feet")
  55720. },
  55721. ]
  55722. ))
  55723. characterMakers.push(() => makeCharacter(
  55724. { name: "JHusky", species: ["husky"], tags: ["anthro", "taur"] },
  55725. {
  55726. anthroFront: {
  55727. height: math.unit(6, "feet"),
  55728. weight: math.unit(250, "lb"),
  55729. name: "Front",
  55730. image: {
  55731. source: "./media/characters/jhusky/anthro-front.svg",
  55732. extra: 474/439,
  55733. bottom: 7/481
  55734. },
  55735. form: "anthro",
  55736. default: true
  55737. },
  55738. taurSideSfw: {
  55739. height: math.unit(6 + 4/12, "feet"),
  55740. weight: math.unit(500, "lb"),
  55741. name: "Side (SFW)",
  55742. image: {
  55743. source: "./media/characters/jhusky/taur-side-sfw.svg",
  55744. extra: 1741/1629,
  55745. bottom: 196/1937
  55746. },
  55747. form: "taur",
  55748. default: true
  55749. },
  55750. taurSideNsfw: {
  55751. height: math.unit(6 + 4/12, "feet"),
  55752. weight: math.unit(500, "lb"),
  55753. name: "Taur (NSFW)",
  55754. image: {
  55755. source: "./media/characters/jhusky/taur-side-nsfw.svg",
  55756. extra: 1741/1629,
  55757. bottom: 196/1937
  55758. },
  55759. form: "taur",
  55760. },
  55761. },
  55762. [
  55763. {
  55764. name: "Huge",
  55765. height: math.unit(500, "feet"),
  55766. form: "anthro"
  55767. },
  55768. {
  55769. name: "Macro",
  55770. height: math.unit(1000, "feet"),
  55771. default: true,
  55772. form: "anthro"
  55773. },
  55774. {
  55775. name: "Megamacro",
  55776. height: math.unit(10000, "feet"),
  55777. form: "anthro"
  55778. },
  55779. {
  55780. name: "Huge",
  55781. height: math.unit(528, "feet"),
  55782. form: "taur"
  55783. },
  55784. {
  55785. name: "Macro",
  55786. height: math.unit(1056, "feet"),
  55787. default: true,
  55788. form: "taur"
  55789. },
  55790. {
  55791. name: "Megamacro",
  55792. height: math.unit(10556, "feet"),
  55793. form: "taur"
  55794. },
  55795. ],
  55796. {
  55797. "anthro": {
  55798. name: "Anthro",
  55799. default: true
  55800. },
  55801. "taur": {
  55802. name: "Taur",
  55803. },
  55804. }
  55805. ))
  55806. characterMakers.push(() => makeCharacter(
  55807. { name: "Armail", species: ["obstagoon"], tags: ["anthro"] },
  55808. {
  55809. front: {
  55810. height: math.unit(8, "feet"),
  55811. weight: math.unit(500, "lb"),
  55812. name: "Front",
  55813. image: {
  55814. source: "./media/characters/armail/front.svg",
  55815. extra: 1753/1669,
  55816. bottom: 155/1908
  55817. }
  55818. },
  55819. back: {
  55820. height: math.unit(8, "feet"),
  55821. weight: math.unit(500, "lb"),
  55822. name: "Back",
  55823. image: {
  55824. source: "./media/characters/armail/back.svg",
  55825. extra: 1872/1803,
  55826. bottom: 63/1935
  55827. }
  55828. },
  55829. },
  55830. [
  55831. {
  55832. name: "Micro",
  55833. height: math.unit(0.25, "feet")
  55834. },
  55835. {
  55836. name: "Normal",
  55837. height: math.unit(8, "feet"),
  55838. default: true
  55839. },
  55840. {
  55841. name: "Mini-macro",
  55842. height: math.unit(30, "feet")
  55843. },
  55844. {
  55845. name: "Macro",
  55846. height: math.unit(400, "feet")
  55847. },
  55848. {
  55849. name: "Mega-macro",
  55850. height: math.unit(6000, "feet")
  55851. },
  55852. ]
  55853. ))
  55854. characterMakers.push(() => makeCharacter(
  55855. { name: "Wilfred T. Buxton", species: ["thomsons-gazelle"], tags: ["anthro"] },
  55856. {
  55857. front: {
  55858. height: math.unit(6 + 7/12, "feet"),
  55859. weight: math.unit(210, "lb"),
  55860. name: "Front",
  55861. image: {
  55862. source: "./media/characters/wilfred-t-buxton/front.svg",
  55863. extra: 1068/882,
  55864. bottom: 28/1096
  55865. }
  55866. },
  55867. },
  55868. [
  55869. {
  55870. name: "Normal",
  55871. height: math.unit(6 + 7/12, "feet"),
  55872. default: true
  55873. },
  55874. ]
  55875. ))
  55876. characterMakers.push(() => makeCharacter(
  55877. { name: "Leighton Marrow", species: ["deer"], tags: ["anthro"] },
  55878. {
  55879. front: {
  55880. height: math.unit(5 + 2/12, "feet"),
  55881. weight: math.unit(120, "lb"),
  55882. name: "Front",
  55883. image: {
  55884. source: "./media/characters/leighton-marrow/front.svg",
  55885. extra: 441/409,
  55886. bottom: 37/478
  55887. }
  55888. },
  55889. },
  55890. [
  55891. {
  55892. name: "Normal",
  55893. height: math.unit(5 + 2/12, "feet"),
  55894. default: true
  55895. },
  55896. ]
  55897. ))
  55898. characterMakers.push(() => makeCharacter(
  55899. { name: "Licos", species: ["werewolf"], tags: ["anthro", "taur"] },
  55900. {
  55901. front: {
  55902. height: math.unit(4, "meters"),
  55903. weight: math.unit(1200, "kg"),
  55904. name: "Front",
  55905. image: {
  55906. source: "./media/characters/licos/front.svg",
  55907. extra: 1727/1604,
  55908. bottom: 101/1828
  55909. },
  55910. form: "anthro",
  55911. default: true
  55912. },
  55913. taur_side: {
  55914. height: math.unit(20, "meters"),
  55915. weight: math.unit(1100000, "kg"),
  55916. name: "Side",
  55917. image: {
  55918. source: "./media/characters/licos/taur.svg",
  55919. extra: 1158/1091,
  55920. bottom: 80/1238
  55921. },
  55922. form: "taur",
  55923. default: true
  55924. },
  55925. },
  55926. [
  55927. {
  55928. name: "Normal",
  55929. height: math.unit(4, "meters"),
  55930. default: true,
  55931. form: "anthro"
  55932. },
  55933. {
  55934. name: "Normal",
  55935. height: math.unit(20, "meters"),
  55936. default: true,
  55937. form: "taur"
  55938. },
  55939. ],
  55940. {
  55941. "anthro": {
  55942. name: "Anthro",
  55943. default: true
  55944. },
  55945. "taur": {
  55946. name: "Taur",
  55947. },
  55948. }
  55949. ))
  55950. characterMakers.push(() => makeCharacter(
  55951. { name: "Theo (Monkey)", species: ["monkey"], tags: ["anthro"] },
  55952. {
  55953. front: {
  55954. height: math.unit(10 + 3/12, "feet"),
  55955. name: "Front",
  55956. image: {
  55957. source: "./media/characters/theo-monkey/front.svg",
  55958. extra: 1735/1658,
  55959. bottom: 73/1808
  55960. }
  55961. },
  55962. back: {
  55963. height: math.unit(10 + 3/12, "feet"),
  55964. name: "Back",
  55965. image: {
  55966. source: "./media/characters/theo-monkey/back.svg",
  55967. extra: 1742/1664,
  55968. bottom: 33/1775
  55969. }
  55970. },
  55971. head: {
  55972. height: math.unit(2.29, "feet"),
  55973. name: "Head",
  55974. image: {
  55975. source: "./media/characters/theo-monkey/head.svg"
  55976. }
  55977. },
  55978. handPalm: {
  55979. height: math.unit(1.73, "feet"),
  55980. name: "Hand (Palm)",
  55981. image: {
  55982. source: "./media/characters/theo-monkey/hand-palm.svg"
  55983. }
  55984. },
  55985. handBack: {
  55986. height: math.unit(1.63, "feet"),
  55987. name: "Hand (Back)",
  55988. image: {
  55989. source: "./media/characters/theo-monkey/hand-back.svg"
  55990. }
  55991. },
  55992. footSole: {
  55993. height: math.unit(2.15, "feet"),
  55994. name: "Foot (Sole)",
  55995. image: {
  55996. source: "./media/characters/theo-monkey/foot-sole.svg"
  55997. }
  55998. },
  55999. footSide: {
  56000. height: math.unit(1.6, "feet"),
  56001. name: "Foot (Side)",
  56002. image: {
  56003. source: "./media/characters/theo-monkey/foot-side.svg"
  56004. }
  56005. },
  56006. },
  56007. [
  56008. {
  56009. name: "Normal",
  56010. height: math.unit(10 + 3/12, "feet"),
  56011. default: true
  56012. },
  56013. ]
  56014. ))
  56015. characterMakers.push(() => makeCharacter(
  56016. { name: "Brook", species: ["serval"], tags: ["anthro"] },
  56017. {
  56018. front: {
  56019. height: math.unit(11, "feet"),
  56020. weight: math.unit(3000, "lb"),
  56021. preyCapacity: math.unit(10, "people"),
  56022. name: "Front",
  56023. image: {
  56024. source: "./media/characters/brook/front.svg",
  56025. extra: 909/835,
  56026. bottom: 108/1017
  56027. }
  56028. },
  56029. back: {
  56030. height: math.unit(11, "feet"),
  56031. weight: math.unit(3000, "lb"),
  56032. preyCapacity: math.unit(10, "people"),
  56033. name: "Back",
  56034. image: {
  56035. source: "./media/characters/brook/back.svg",
  56036. extra: 976/916,
  56037. bottom: 34/1010
  56038. }
  56039. },
  56040. backAlt: {
  56041. height: math.unit(11, "feet"),
  56042. weight: math.unit(3000, "lb"),
  56043. preyCapacity: math.unit(10, "people"),
  56044. name: "Back (Alt)",
  56045. image: {
  56046. source: "./media/characters/brook/back-alt.svg",
  56047. extra: 1283/1213,
  56048. bottom: 35/1318
  56049. }
  56050. },
  56051. bust: {
  56052. height: math.unit(9.0859030837, "feet"),
  56053. weight: math.unit(3000, "lb"),
  56054. preyCapacity: math.unit(10, "people"),
  56055. name: "Bust",
  56056. image: {
  56057. source: "./media/characters/brook/bust.svg",
  56058. extra: 2043/1923,
  56059. bottom: 0/2043
  56060. }
  56061. },
  56062. },
  56063. [
  56064. {
  56065. name: "Small",
  56066. height: math.unit(11, "feet"),
  56067. default: true
  56068. },
  56069. {
  56070. name: "Towering",
  56071. height: math.unit(5, "km")
  56072. },
  56073. {
  56074. name: "Enormous",
  56075. height: math.unit(25, "earths")
  56076. },
  56077. ]
  56078. ))
  56079. characterMakers.push(() => makeCharacter(
  56080. { name: "Squishi", species: ["swampert"], tags: ["anthro"] },
  56081. {
  56082. front: {
  56083. height: math.unit(4, "feet"),
  56084. weight: math.unit(150, "lb"),
  56085. name: "Front",
  56086. image: {
  56087. source: "./media/characters/squishi/front.svg",
  56088. extra: 1428/1271,
  56089. bottom: 30/1458
  56090. },
  56091. extraAttributes: {
  56092. "pawSize": {
  56093. name: "Paw Size",
  56094. power: 1,
  56095. type: "length",
  56096. base: math.unit(14, "ShoeSizeMensUS"),
  56097. defaultUnit: "ShoeSizeMensUS"
  56098. },
  56099. }
  56100. },
  56101. side: {
  56102. height: math.unit(4, "feet"),
  56103. weight: math.unit(150, "lb"),
  56104. name: "Side",
  56105. image: {
  56106. source: "./media/characters/squishi/side.svg",
  56107. extra: 1428/1271,
  56108. bottom: 30/1458
  56109. },
  56110. extraAttributes: {
  56111. "pawSize": {
  56112. name: "Paw Size",
  56113. power: 1,
  56114. type: "length",
  56115. base: math.unit(14, "ShoeSizeMensUS"),
  56116. defaultUnit: "ShoeSizeMensUS"
  56117. },
  56118. }
  56119. },
  56120. back: {
  56121. height: math.unit(4, "feet"),
  56122. weight: math.unit(150, "lb"),
  56123. name: "Back",
  56124. image: {
  56125. source: "./media/characters/squishi/back.svg",
  56126. extra: 1428/1271,
  56127. bottom: 30/1458
  56128. },
  56129. extraAttributes: {
  56130. "pawSize": {
  56131. name: "Paw Size",
  56132. power: 1,
  56133. type: "length",
  56134. base: math.unit(14, "ShoeSizeMensUS"),
  56135. defaultUnit: "ShoeSizeMensUS"
  56136. },
  56137. }
  56138. },
  56139. },
  56140. [
  56141. {
  56142. name: "Normal",
  56143. height: math.unit(4, "feet"),
  56144. default: true
  56145. },
  56146. ]
  56147. ))
  56148. characterMakers.push(() => makeCharacter(
  56149. { name: "Vincent Vasroc", species: ["red-fox"], tags: ["anthro"] },
  56150. {
  56151. front: {
  56152. height: math.unit(7 + 8/12, "feet"),
  56153. weight: math.unit(333, "lb"),
  56154. name: "Front",
  56155. image: {
  56156. source: "./media/characters/vincent-vasroc/front.svg",
  56157. extra: 1962/1860,
  56158. bottom: 41/2003
  56159. }
  56160. },
  56161. back: {
  56162. height: math.unit(7 + 8/12, "feet"),
  56163. weight: math.unit(333, "lb"),
  56164. name: "Back",
  56165. image: {
  56166. source: "./media/characters/vincent-vasroc/back.svg",
  56167. extra: 1952/1815,
  56168. bottom: 33/1985
  56169. }
  56170. },
  56171. paw: {
  56172. height: math.unit(1.24, "feet"),
  56173. name: "Paw",
  56174. image: {
  56175. source: "./media/characters/vincent-vasroc/paw.svg"
  56176. }
  56177. },
  56178. ear: {
  56179. height: math.unit(0.75, "feet"),
  56180. name: "Ear",
  56181. image: {
  56182. source: "./media/characters/vincent-vasroc/ear.svg"
  56183. }
  56184. },
  56185. },
  56186. [
  56187. {
  56188. name: "Nano",
  56189. height: math.unit(92, "micrometers")
  56190. },
  56191. {
  56192. name: "Normal",
  56193. height: math.unit(7 + 8/12, "feet"),
  56194. default: true
  56195. },
  56196. ]
  56197. ))
  56198. characterMakers.push(() => makeCharacter(
  56199. { name: "Ru-Kahn", species: ["fennec-fox"], tags: ["anthro"] },
  56200. {
  56201. frontNsfw: {
  56202. height: math.unit(40, "feet"),
  56203. weight: math.unit(58, "tons"),
  56204. name: "Front (NSFW)",
  56205. image: {
  56206. source: "./media/characters/ru-kahn/front-nsfw.svg",
  56207. extra: 1265/965,
  56208. bottom: 155/1420
  56209. }
  56210. },
  56211. frontSfw: {
  56212. height: math.unit(40, "feet"),
  56213. weight: math.unit(58, "tons"),
  56214. name: "Front (SFW)",
  56215. image: {
  56216. source: "./media/characters/ru-kahn/front-sfw.svg",
  56217. extra: 1265/965,
  56218. bottom: 80/1345
  56219. }
  56220. },
  56221. },
  56222. [
  56223. {
  56224. name: "Small",
  56225. height: math.unit(4, "feet")
  56226. },
  56227. {
  56228. name: "Normal",
  56229. height: math.unit(40, "feet"),
  56230. default: true
  56231. },
  56232. {
  56233. name: "Macro",
  56234. height: math.unit(400, "feet")
  56235. },
  56236. ]
  56237. ))
  56238. characterMakers.push(() => makeCharacter(
  56239. { name: "Sylvie LaForge", species: ["alligator"], tags: ["anthro"] },
  56240. {
  56241. frontNude: {
  56242. height: math.unit(6 + 5/12, "feet"),
  56243. name: "Front (Nude)",
  56244. image: {
  56245. source: "./media/characters/sylvie-laforge/front-nude.svg",
  56246. extra: 1369/1366,
  56247. bottom: 68/1437
  56248. }
  56249. },
  56250. frontDressed: {
  56251. height: math.unit(6 + 5/12, "feet"),
  56252. name: "Front (Dressed)",
  56253. image: {
  56254. source: "./media/characters/sylvie-laforge/front-dressed.svg",
  56255. extra: 1369/1366,
  56256. bottom: 68/1437
  56257. }
  56258. },
  56259. },
  56260. [
  56261. {
  56262. name: "Normal",
  56263. height: math.unit(6 + 5/12, "feet"),
  56264. default: true
  56265. },
  56266. {
  56267. name: "Maximum",
  56268. height: math.unit(1930, "feet")
  56269. },
  56270. ]
  56271. ))
  56272. characterMakers.push(() => makeCharacter(
  56273. { name: "Kaja", species: ["zoroark"], tags: ["anthro"] },
  56274. {
  56275. front: {
  56276. height: math.unit(5 + 6/12, "feet"),
  56277. name: "Front",
  56278. image: {
  56279. source: "./media/characters/kaja/front.svg",
  56280. extra: 1874/1514,
  56281. bottom: 117/1991
  56282. }
  56283. },
  56284. },
  56285. [
  56286. {
  56287. name: "Normal",
  56288. height: math.unit(5 + 6/12, "feet"),
  56289. default: true
  56290. },
  56291. ]
  56292. ))
  56293. characterMakers.push(() => makeCharacter(
  56294. { name: "Mark Smith", species: ["husky"], tags: ["anthro"] },
  56295. {
  56296. front: {
  56297. height: math.unit(5 + 9/12, "feet"),
  56298. weight: math.unit(200, "lb"),
  56299. name: "Front",
  56300. image: {
  56301. source: "./media/characters/mark-smith/front.svg",
  56302. extra: 1004/943,
  56303. bottom: 58/1062
  56304. }
  56305. },
  56306. back: {
  56307. height: math.unit(5 + 9/12, "feet"),
  56308. weight: math.unit(200, "lb"),
  56309. name: "Back",
  56310. image: {
  56311. source: "./media/characters/mark-smith/back.svg",
  56312. extra: 1023/953,
  56313. bottom: 24/1047
  56314. }
  56315. },
  56316. head: {
  56317. height: math.unit(1.82, "feet"),
  56318. name: "Head",
  56319. image: {
  56320. source: "./media/characters/mark-smith/head.svg"
  56321. }
  56322. },
  56323. hand: {
  56324. height: math.unit(1.4, "feet"),
  56325. name: "Hand",
  56326. image: {
  56327. source: "./media/characters/mark-smith/hand.svg"
  56328. }
  56329. },
  56330. paw: {
  56331. height: math.unit(1.69, "feet"),
  56332. name: "Paw",
  56333. image: {
  56334. source: "./media/characters/mark-smith/paw.svg"
  56335. }
  56336. },
  56337. },
  56338. [
  56339. {
  56340. name: "Micro",
  56341. height: math.unit(0.25, "inches")
  56342. },
  56343. {
  56344. name: "Normal",
  56345. height: math.unit(5 + 9/12, "feet"),
  56346. default: true
  56347. },
  56348. {
  56349. name: "Macro",
  56350. height: math.unit(500, "feet")
  56351. },
  56352. ]
  56353. ))
  56354. characterMakers.push(() => makeCharacter(
  56355. { name: "Rebecca 'Becky' Houston", species: ["gryphon"], tags: ["anthro"] },
  56356. {
  56357. frontNude: {
  56358. height: math.unit(6, "feet"),
  56359. name: "Front (Nude)",
  56360. image: {
  56361. source: "./media/characters/rebecca-becky-houston/front-nude.svg",
  56362. extra: 1384/1321,
  56363. bottom: 57/1441
  56364. }
  56365. },
  56366. frontDressed: {
  56367. height: math.unit(6, "feet"),
  56368. name: "Front (Dressed)",
  56369. image: {
  56370. source: "./media/characters/rebecca-becky-houston/front-dressed.svg",
  56371. extra: 1384/1321,
  56372. bottom: 57/1441
  56373. }
  56374. },
  56375. },
  56376. [
  56377. {
  56378. name: "Normal",
  56379. height: math.unit(6, "feet"),
  56380. default: true
  56381. },
  56382. {
  56383. name: "Maximum",
  56384. height: math.unit(1776, "feet")
  56385. },
  56386. ]
  56387. ))
  56388. characterMakers.push(() => makeCharacter(
  56389. { name: "Devos", species: ["dragon"], tags: ["feral"] },
  56390. {
  56391. front: {
  56392. height: math.unit(2 + 4/12, "feet"),
  56393. weight: math.unit(350, "lb"),
  56394. name: "Front",
  56395. image: {
  56396. source: "./media/characters/devos/front.svg",
  56397. extra: 958/852,
  56398. bottom: 143/1101
  56399. }
  56400. },
  56401. },
  56402. [
  56403. {
  56404. name: "Base",
  56405. height: math.unit(2 + 4/12, "feet"),
  56406. default: true
  56407. },
  56408. ]
  56409. ))
  56410. characterMakers.push(() => makeCharacter(
  56411. { name: "Hiveheart", species: ["sliver"], tags: ["anthro"] },
  56412. {
  56413. front: {
  56414. height: math.unit(9 + 2/12, "feet"),
  56415. name: "Front",
  56416. image: {
  56417. source: "./media/characters/hiveheart/front.svg",
  56418. extra: 394/364,
  56419. bottom: 65/459
  56420. }
  56421. },
  56422. back: {
  56423. height: math.unit(9 + 2/12, "feet"),
  56424. name: "Back",
  56425. image: {
  56426. source: "./media/characters/hiveheart/back.svg",
  56427. extra: 374/357,
  56428. bottom: 63/437
  56429. }
  56430. },
  56431. },
  56432. [
  56433. {
  56434. name: "Base",
  56435. height: math.unit(9 + 2/12, "feet"),
  56436. default: true
  56437. },
  56438. ]
  56439. ))
  56440. characterMakers.push(() => makeCharacter(
  56441. { name: "Bryn", species: ["moth"], tags: ["anthro"] },
  56442. {
  56443. front: {
  56444. height: math.unit(2.5, "inches"),
  56445. weight: math.unit(0.6, "oz"),
  56446. name: "Front",
  56447. image: {
  56448. source: "./media/characters/bryn/front.svg",
  56449. extra: 1480/1205,
  56450. bottom: 27/1507
  56451. }
  56452. },
  56453. back: {
  56454. height: math.unit(2.5, "inches"),
  56455. weight: math.unit(0.6, "oz"),
  56456. name: "Back",
  56457. image: {
  56458. source: "./media/characters/bryn/back.svg",
  56459. extra: 1475/1201,
  56460. bottom: 39/1514
  56461. }
  56462. },
  56463. foot: {
  56464. height: math.unit(0.4, "inches"),
  56465. name: "Foot",
  56466. image: {
  56467. source: "./media/characters/bryn/foot.svg"
  56468. }
  56469. },
  56470. },
  56471. [
  56472. {
  56473. name: "Normal",
  56474. height: math.unit(2.5, "inches"),
  56475. default: true
  56476. },
  56477. ]
  56478. ))
  56479. characterMakers.push(() => makeCharacter(
  56480. { name: "Delta", species: ["dragon"], tags: ["feral"] },
  56481. {
  56482. side: {
  56483. height: math.unit(7, "feet"),
  56484. weight: math.unit(657, "kg"),
  56485. name: "Side",
  56486. image: {
  56487. source: "./media/characters/delta/side.svg",
  56488. extra: 781/212,
  56489. bottom: 7/788
  56490. },
  56491. extraAttributes: {
  56492. "wingspan": {
  56493. name: "Wingspan",
  56494. power: 1,
  56495. type: "length",
  56496. base: math.unit(48, "feet")
  56497. },
  56498. "length": {
  56499. name: "Length",
  56500. power: 1,
  56501. type: "length",
  56502. base: math.unit(21, "feet")
  56503. },
  56504. "pawSize": {
  56505. name: "Paw Size",
  56506. power: 2,
  56507. type: "area",
  56508. base: math.unit(1.5*1.4, "feet^2")
  56509. },
  56510. }
  56511. },
  56512. },
  56513. [
  56514. {
  56515. name: "Normal",
  56516. height: math.unit(6, "feet"),
  56517. default: true
  56518. },
  56519. ]
  56520. ))
  56521. characterMakers.push(() => makeCharacter(
  56522. { name: "Pyrow", species: ["sergix"], tags: ["anthro"] },
  56523. {
  56524. front: {
  56525. height: math.unit(6, "feet"),
  56526. name: "Front",
  56527. image: {
  56528. source: "./media/characters/pyrow/front.svg",
  56529. extra: 513/486,
  56530. bottom: 14/527
  56531. }
  56532. },
  56533. frontWing: {
  56534. height: math.unit(6, "feet"),
  56535. name: "Front (Wing)",
  56536. image: {
  56537. source: "./media/characters/pyrow/front-wing.svg",
  56538. extra: 539/383,
  56539. bottom: 20/559
  56540. }
  56541. },
  56542. back: {
  56543. height: math.unit(6, "feet"),
  56544. name: "Back",
  56545. image: {
  56546. source: "./media/characters/pyrow/back.svg",
  56547. extra: 500/473,
  56548. bottom: 9/509
  56549. }
  56550. },
  56551. },
  56552. [
  56553. {
  56554. name: "Normal",
  56555. height: math.unit(6, "feet"),
  56556. default: true
  56557. },
  56558. ]
  56559. ))
  56560. characterMakers.push(() => makeCharacter(
  56561. { name: "Velikan", species: ["behemoth"], tags: ["anthro"] },
  56562. {
  56563. front: {
  56564. height: math.unit(5, "meters"),
  56565. weight: math.unit(3, "tonnes"),
  56566. name: "Front",
  56567. image: {
  56568. source: "./media/characters/velikan/front.svg",
  56569. extra: 867/744,
  56570. bottom: 71/938
  56571. },
  56572. extraAttributes: {
  56573. "shoeSize": {
  56574. name: "Shoe Size",
  56575. power: 1,
  56576. type: "length",
  56577. base: math.unit(135, "ShoeSizeUK"),
  56578. defaultUnit: "ShoeSizeUK"
  56579. },
  56580. }
  56581. },
  56582. },
  56583. [
  56584. {
  56585. name: "Normal",
  56586. height: math.unit(5, "meters"),
  56587. default: true
  56588. },
  56589. {
  56590. name: "Macro",
  56591. height: math.unit(1, "km")
  56592. },
  56593. {
  56594. name: "Mega Macro",
  56595. height: math.unit(100, "km")
  56596. },
  56597. {
  56598. name: "Giga Macro",
  56599. height: math.unit(2, "megameters")
  56600. },
  56601. {
  56602. name: "Planetary",
  56603. height: math.unit(22, "megameters")
  56604. },
  56605. {
  56606. name: "Solar",
  56607. height: math.unit(8, "gigameters")
  56608. },
  56609. {
  56610. name: "Cosmic",
  56611. height: math.unit(10, "zettameters")
  56612. },
  56613. {
  56614. name: "Omni",
  56615. height: math.unit(9e260, "multiverses")
  56616. },
  56617. ]
  56618. ))
  56619. characterMakers.push(() => makeCharacter(
  56620. { name: "Sabiki", species: ["werewolf", "fennec-fox"], tags: ["anthro"] },
  56621. {
  56622. front: {
  56623. height: math.unit(4 + 3/12, "feet"),
  56624. weight: math.unit(90, "lb"),
  56625. name: "Front",
  56626. image: {
  56627. source: "./media/characters/sabiki/front.svg",
  56628. extra: 1662/1423,
  56629. bottom: 65/1727
  56630. }
  56631. },
  56632. },
  56633. [
  56634. {
  56635. name: "Normal",
  56636. height: math.unit(4 + 3/12, "feet"),
  56637. default: true
  56638. },
  56639. ]
  56640. ))
  56641. characterMakers.push(() => makeCharacter(
  56642. { name: "Carmel", species: ["ant"], tags: ["anthro"] },
  56643. {
  56644. frontSfw: {
  56645. height: math.unit(2, "mm"),
  56646. name: "Front (SFW)",
  56647. image: {
  56648. source: "./media/characters/carmel/front-sfw.svg",
  56649. extra: 1131/1006,
  56650. bottom: 66/1197
  56651. }
  56652. },
  56653. frontNsfw: {
  56654. height: math.unit(2, "mm"),
  56655. name: "Front (NSFW)",
  56656. image: {
  56657. source: "./media/characters/carmel/front-nsfw.svg",
  56658. extra: 1131/1006,
  56659. bottom: 66/1197
  56660. }
  56661. },
  56662. foot: {
  56663. height: math.unit(0.3, "mm"),
  56664. name: "Foot",
  56665. image: {
  56666. source: "./media/characters/carmel/foot.svg"
  56667. }
  56668. },
  56669. tongue: {
  56670. height: math.unit(0.71, "mm"),
  56671. name: "Tongue",
  56672. image: {
  56673. source: "./media/characters/carmel/tongue.svg"
  56674. }
  56675. },
  56676. dick: {
  56677. height: math.unit(0.085, "mm"),
  56678. name: "Dick",
  56679. image: {
  56680. source: "./media/characters/carmel/dick.svg"
  56681. }
  56682. },
  56683. },
  56684. [
  56685. {
  56686. name: "Micro",
  56687. height: math.unit(2, "mm"),
  56688. default: true
  56689. },
  56690. {
  56691. name: "Normal",
  56692. height: math.unit(4 + 8/12, "feet")
  56693. },
  56694. {
  56695. name: "Mega Macro",
  56696. height: math.unit(250, "feet")
  56697. },
  56698. {
  56699. name: "BIGGER",
  56700. height: math.unit(1000, "feet")
  56701. },
  56702. {
  56703. name: "BIGGEST",
  56704. height: math.unit(2, "miles")
  56705. },
  56706. ]
  56707. ))
  56708. characterMakers.push(() => makeCharacter(
  56709. { name: "Tamani", species: ["lion"], tags: ["anthro", "feral"] },
  56710. {
  56711. front: {
  56712. height: math.unit(6.5, "feet"),
  56713. weight: math.unit(198, "lb"),
  56714. name: "Front",
  56715. image: {
  56716. source: "./media/characters/tamani/anthro.svg",
  56717. extra: 930/890,
  56718. bottom: 34/964
  56719. },
  56720. form: "anthro",
  56721. default: true
  56722. },
  56723. side: {
  56724. height: math.unit(6, "feet"),
  56725. weight: math.unit(198*2, "lb"),
  56726. name: "Side",
  56727. image: {
  56728. source: "./media/characters/tamani/feral.svg",
  56729. extra: 559/519,
  56730. bottom: 43/602
  56731. },
  56732. form: "feral"
  56733. },
  56734. },
  56735. [
  56736. {
  56737. name: "Normal",
  56738. height: math.unit(6.5, "feet"),
  56739. default: true,
  56740. form: "anthro"
  56741. },
  56742. {
  56743. name: "Normal",
  56744. height: math.unit(6, "feet"),
  56745. default: true,
  56746. form: "feral"
  56747. },
  56748. ],
  56749. {
  56750. "anthro": {
  56751. name: "Anthro",
  56752. default: true
  56753. },
  56754. "feral": {
  56755. name: "Feral",
  56756. },
  56757. }
  56758. ))
  56759. characterMakers.push(() => makeCharacter(
  56760. { name: "Dex", species: ["eastern-cottontail-rabbit"], tags: ["anthro"] },
  56761. {
  56762. front: {
  56763. height: math.unit(4 + 1/12, "feet"),
  56764. weight: math.unit(114, "lb"),
  56765. name: "Front",
  56766. image: {
  56767. source: "./media/characters/dex/front.svg",
  56768. extra: 787/680,
  56769. bottom: 18/805
  56770. }
  56771. },
  56772. side: {
  56773. height: math.unit(4 + 1/12, "feet"),
  56774. weight: math.unit(114, "lb"),
  56775. name: "Side",
  56776. image: {
  56777. source: "./media/characters/dex/side.svg",
  56778. extra: 785/680,
  56779. bottom: 12/797
  56780. }
  56781. },
  56782. back: {
  56783. height: math.unit(4 + 1/12, "feet"),
  56784. weight: math.unit(114, "lb"),
  56785. name: "Back",
  56786. image: {
  56787. source: "./media/characters/dex/back.svg",
  56788. extra: 785/681,
  56789. bottom: 17/802
  56790. }
  56791. },
  56792. loungewear: {
  56793. height: math.unit(4 + 1/12, "feet"),
  56794. weight: math.unit(114, "lb"),
  56795. name: "Loungewear",
  56796. image: {
  56797. source: "./media/characters/dex/loungewear.svg",
  56798. extra: 787/680,
  56799. bottom: 18/805
  56800. }
  56801. },
  56802. workout: {
  56803. height: math.unit(4 + 1/12, "feet"),
  56804. weight: math.unit(114, "lb"),
  56805. name: "Workout",
  56806. image: {
  56807. source: "./media/characters/dex/workout.svg",
  56808. extra: 787/680,
  56809. bottom: 18/805
  56810. }
  56811. },
  56812. schoolUniform: {
  56813. height: math.unit(4 + 1/12, "feet"),
  56814. weight: math.unit(114, "lb"),
  56815. name: "School-uniform",
  56816. image: {
  56817. source: "./media/characters/dex/school-uniform.svg",
  56818. extra: 787/680,
  56819. bottom: 18/805
  56820. }
  56821. },
  56822. maw: {
  56823. height: math.unit(0.55, "feet"),
  56824. name: "Maw",
  56825. image: {
  56826. source: "./media/characters/dex/maw.svg"
  56827. }
  56828. },
  56829. paw: {
  56830. height: math.unit(0.87, "feet"),
  56831. name: "Paw",
  56832. image: {
  56833. source: "./media/characters/dex/paw.svg"
  56834. }
  56835. },
  56836. bust: {
  56837. height: math.unit(1.67, "feet"),
  56838. name: "Bust",
  56839. image: {
  56840. source: "./media/characters/dex/bust.svg"
  56841. }
  56842. },
  56843. },
  56844. [
  56845. {
  56846. name: "Normal",
  56847. height: math.unit(4 + 1/12, "feet"),
  56848. default: true
  56849. },
  56850. ]
  56851. ))
  56852. characterMakers.push(() => makeCharacter(
  56853. { name: "Silke", species: ["sylveon"], tags: ["anthro"] },
  56854. {
  56855. front: {
  56856. height: math.unit(4 + 3/12, "feet"),
  56857. weight: math.unit(60, "lb"),
  56858. name: "Front",
  56859. image: {
  56860. source: "./media/characters/silke/front.svg",
  56861. extra: 1334/1122,
  56862. bottom: 21/1355
  56863. }
  56864. },
  56865. back: {
  56866. height: math.unit(4 + 3/12, "feet"),
  56867. weight: math.unit(60, "lb"),
  56868. name: "Back",
  56869. image: {
  56870. source: "./media/characters/silke/back.svg",
  56871. extra: 1328/1092,
  56872. bottom: 16/1344
  56873. }
  56874. },
  56875. dressed: {
  56876. height: math.unit(4 + 3/12, "feet"),
  56877. weight: math.unit(60, "lb"),
  56878. name: "Dressed",
  56879. image: {
  56880. source: "./media/characters/silke/dressed.svg",
  56881. extra: 1334/1122,
  56882. bottom: 43/1377
  56883. }
  56884. },
  56885. },
  56886. [
  56887. {
  56888. name: "Normal",
  56889. height: math.unit(4 + 3/12, "feet"),
  56890. default: true
  56891. },
  56892. ]
  56893. ))
  56894. characterMakers.push(() => makeCharacter(
  56895. { name: "Wireshark", species: ["thresher-shark"], tags: ["anthro"] },
  56896. {
  56897. front: {
  56898. height: math.unit(1.58, "meters"),
  56899. weight: math.unit(47, "kg"),
  56900. name: "Front",
  56901. image: {
  56902. source: "./media/characters/wireshark/front.svg",
  56903. extra: 883/838,
  56904. bottom: 66/949
  56905. }
  56906. },
  56907. },
  56908. [
  56909. {
  56910. name: "Normal",
  56911. height: math.unit(1.58, "meters"),
  56912. default: true
  56913. },
  56914. ]
  56915. ))
  56916. characterMakers.push(() => makeCharacter(
  56917. { name: "Gallagher", species: ["shark", "cyborg", "ai"], tags: ["anthro"] },
  56918. {
  56919. front: {
  56920. height: math.unit(6, "meters"),
  56921. weight: math.unit(15000, "kg"),
  56922. name: "Front",
  56923. image: {
  56924. source: "./media/characters/gallagher/front.svg",
  56925. extra: 532/493,
  56926. bottom: 0/532
  56927. }
  56928. },
  56929. },
  56930. [
  56931. {
  56932. name: "Normal",
  56933. height: math.unit(6, "meters"),
  56934. default: true
  56935. },
  56936. ]
  56937. ))
  56938. characterMakers.push(() => makeCharacter(
  56939. { name: "Alice", species: ["black-tip-reef-shark"], tags: ["anthro"] },
  56940. {
  56941. front: {
  56942. height: math.unit(2.4, "meters"),
  56943. weight: math.unit(270, "kg"),
  56944. name: "Front",
  56945. image: {
  56946. source: "./media/characters/alice/front.svg",
  56947. extra: 950/900,
  56948. bottom: 36/986
  56949. }
  56950. },
  56951. side: {
  56952. height: math.unit(2.4, "meters"),
  56953. weight: math.unit(270, "kg"),
  56954. name: "Side",
  56955. image: {
  56956. source: "./media/characters/alice/side.svg",
  56957. extra: 921/876,
  56958. bottom: 19/940
  56959. }
  56960. },
  56961. dressed: {
  56962. height: math.unit(2.4, "meters"),
  56963. weight: math.unit(270, "kg"),
  56964. name: "Dressed",
  56965. image: {
  56966. source: "./media/characters/alice/dressed.svg",
  56967. extra: 905/850,
  56968. bottom: 81/986
  56969. }
  56970. },
  56971. fishnet: {
  56972. height: math.unit(2.4, "meters"),
  56973. weight: math.unit(270, "kg"),
  56974. name: "Fishnet",
  56975. image: {
  56976. source: "./media/characters/alice/fishnet.svg",
  56977. extra: 905/850,
  56978. bottom: 81/986
  56979. }
  56980. },
  56981. },
  56982. [
  56983. {
  56984. name: "Normal",
  56985. height: math.unit(2.4, "meters"),
  56986. default: true
  56987. },
  56988. ]
  56989. ))
  56990. characterMakers.push(() => makeCharacter(
  56991. { name: "Fio", species: ["deer"], tags: ["anthro"] },
  56992. {
  56993. front: {
  56994. height: math.unit(175.25, "feet"),
  56995. name: "Front",
  56996. image: {
  56997. source: "./media/characters/fio/front.svg",
  56998. extra: 1883/1591,
  56999. bottom: 34/1917
  57000. }
  57001. },
  57002. },
  57003. [
  57004. {
  57005. name: "Normal",
  57006. height: math.unit(175.25, "cm"),
  57007. default: true
  57008. },
  57009. ]
  57010. ))
  57011. characterMakers.push(() => makeCharacter(
  57012. { name: "Hass", species: ["quetzalcoatlus-northropi"], tags: ["feral"] },
  57013. {
  57014. side: {
  57015. height: math.unit(6, "meters"),
  57016. weight: math.unit(3400, "kg"),
  57017. preyCapacity: math.unit(1700, "liters"),
  57018. name: "Side",
  57019. image: {
  57020. source: "./media/characters/hass/side.svg",
  57021. extra: 1058/997,
  57022. bottom: 177/1235
  57023. }
  57024. },
  57025. feeding: {
  57026. height: math.unit(6*0.63, "meters"),
  57027. weight: math.unit(3400, "kg"),
  57028. preyCapacity: math.unit(1700, "liters"),
  57029. name: "Feeding",
  57030. image: {
  57031. source: "./media/characters/hass/feeding.svg",
  57032. extra: 689/579,
  57033. bottom: 146/835
  57034. }
  57035. },
  57036. guts: {
  57037. height: math.unit(6, "meters"),
  57038. weight: math.unit(3400, "kg"),
  57039. name: "Guts",
  57040. image: {
  57041. source: "./media/characters/hass/guts.svg",
  57042. extra: 1223/1198,
  57043. bottom: 182/1405
  57044. }
  57045. },
  57046. dickFront: {
  57047. height: math.unit(1.4, "meters"),
  57048. name: "Dick (Front)",
  57049. image: {
  57050. source: "./media/characters/hass/dick-front.svg"
  57051. }
  57052. },
  57053. dickSide: {
  57054. height: math.unit(1.3, "meters"),
  57055. name: "Dick (Side)",
  57056. image: {
  57057. source: "./media/characters/hass/dick-side.svg"
  57058. }
  57059. },
  57060. dickBack: {
  57061. height: math.unit(1.4, "meters"),
  57062. name: "Dick (Back)",
  57063. image: {
  57064. source: "./media/characters/hass/dick-back.svg"
  57065. }
  57066. },
  57067. },
  57068. [
  57069. {
  57070. name: "Normal",
  57071. height: math.unit(6, "meters"),
  57072. default: true
  57073. },
  57074. ]
  57075. ))
  57076. characterMakers.push(() => makeCharacter(
  57077. { name: "Hickory Finnegan", species: ["fennec-fox"], tags: ["anthro"] },
  57078. {
  57079. front: {
  57080. height: math.unit(4, "feet"),
  57081. weight: math.unit(60, "lb"),
  57082. name: "Front",
  57083. image: {
  57084. source: "./media/characters/hickory-finnegan/front.svg",
  57085. extra: 444/411,
  57086. bottom: 10/454
  57087. }
  57088. },
  57089. side: {
  57090. height: math.unit(4, "feet"),
  57091. weight: math.unit(60, "lb"),
  57092. name: "Side",
  57093. image: {
  57094. source: "./media/characters/hickory-finnegan/side.svg",
  57095. extra: 444/411,
  57096. bottom: 10/454
  57097. }
  57098. },
  57099. back: {
  57100. height: math.unit(4, "feet"),
  57101. weight: math.unit(60, "lb"),
  57102. name: "Back",
  57103. image: {
  57104. source: "./media/characters/hickory-finnegan/back.svg",
  57105. extra: 444/411,
  57106. bottom: 10/454
  57107. }
  57108. },
  57109. },
  57110. [
  57111. {
  57112. name: "Normal",
  57113. height: math.unit(4, "feet"),
  57114. default: true
  57115. },
  57116. ]
  57117. ))
  57118. characterMakers.push(() => makeCharacter(
  57119. { name: "Robin Phox", species: ["snivy", "yoshi", "delphox", "mienshao", "inteleon", "reshiram", "samurott"], tags: ["anthro"] },
  57120. {
  57121. snivy_front: {
  57122. height: math.unit(2, "feet"),
  57123. weight: math.unit(17.9, "lb"),
  57124. name: "Front",
  57125. image: {
  57126. source: "./media/characters/robin-phox/snivy-front.svg",
  57127. extra: 569/504,
  57128. bottom: 33/602
  57129. },
  57130. form: "snivy",
  57131. default: true
  57132. },
  57133. snivy_frontNsfw: {
  57134. height: math.unit(2, "feet"),
  57135. weight: math.unit(17.9, "lb"),
  57136. name: "Front (NSFW)",
  57137. image: {
  57138. source: "./media/characters/robin-phox/snivy-front-nsfw.svg",
  57139. extra: 569/504,
  57140. bottom: 33/602
  57141. },
  57142. form: "snivy",
  57143. },
  57144. snivy_back: {
  57145. height: math.unit(2, "feet"),
  57146. weight: math.unit(17.9, "lb"),
  57147. name: "Back",
  57148. image: {
  57149. source: "./media/characters/robin-phox/snivy-back.svg",
  57150. extra: 577/508,
  57151. bottom: 21/598
  57152. },
  57153. form: "snivy",
  57154. },
  57155. snivy_foot: {
  57156. height: math.unit(0.68, "feet"),
  57157. name: "Foot",
  57158. image: {
  57159. source: "./media/characters/robin-phox/snivy-foot.svg"
  57160. },
  57161. form: "snivy",
  57162. },
  57163. snivy_sole: {
  57164. height: math.unit(0.68, "feet"),
  57165. name: "Sole",
  57166. image: {
  57167. source: "./media/characters/robin-phox/snivy-sole.svg"
  57168. },
  57169. form: "snivy",
  57170. },
  57171. yoshi_front: {
  57172. height: math.unit(6, "feet"),
  57173. weight: math.unit(150, "lb"),
  57174. name: "Front",
  57175. image: {
  57176. source: "./media/characters/robin-phox/yoshi-front.svg",
  57177. extra: 890/792,
  57178. bottom: 29/919
  57179. },
  57180. form: "yoshi",
  57181. default: true
  57182. },
  57183. yoshi_frontNsfw: {
  57184. height: math.unit(6, "feet"),
  57185. weight: math.unit(150, "lb"),
  57186. name: "Front (NSFW)",
  57187. image: {
  57188. source: "./media/characters/robin-phox/yoshi-front-nsfw.svg",
  57189. extra: 890/792,
  57190. bottom: 29/919
  57191. },
  57192. form: "yoshi",
  57193. },
  57194. yoshi_back: {
  57195. height: math.unit(6, "feet"),
  57196. weight: math.unit(150, "lb"),
  57197. name: "Back",
  57198. image: {
  57199. source: "./media/characters/robin-phox/yoshi-back.svg",
  57200. extra: 890/792,
  57201. bottom: 29/919
  57202. },
  57203. form: "yoshi",
  57204. },
  57205. yoshi_foot: {
  57206. height: math.unit(1.5, "feet"),
  57207. name: "Foot",
  57208. image: {
  57209. source: "./media/characters/robin-phox/yoshi-foot.svg"
  57210. },
  57211. form: "yoshi",
  57212. },
  57213. delphox_front: {
  57214. height: math.unit(4 + 11/12, "feet"),
  57215. weight: math.unit(86, "lb"),
  57216. name: "Front",
  57217. image: {
  57218. source: "./media/characters/robin-phox/delphox-front.svg",
  57219. extra: 1266/1069,
  57220. bottom: 32/1298
  57221. },
  57222. form: "delphox",
  57223. default: true
  57224. },
  57225. delphox_frontNsfw: {
  57226. height: math.unit(4 + 11/12, "feet"),
  57227. weight: math.unit(86, "lb"),
  57228. name: "Front (NSFW)",
  57229. image: {
  57230. source: "./media/characters/robin-phox/delphox-front-nsfw.svg",
  57231. extra: 1266/1069,
  57232. bottom: 32/1298
  57233. },
  57234. form: "delphox",
  57235. },
  57236. delphox_back: {
  57237. height: math.unit(4 + 11/12, "feet"),
  57238. weight: math.unit(86, "lb"),
  57239. name: "Back",
  57240. image: {
  57241. source: "./media/characters/robin-phox/delphox-back.svg",
  57242. extra: 1269/1083,
  57243. bottom: 15/1284
  57244. },
  57245. form: "delphox",
  57246. },
  57247. mienshao_front: {
  57248. height: math.unit(4 + 7/12, "feet"),
  57249. weight: math.unit(78.3, "lb"),
  57250. name: "Front",
  57251. image: {
  57252. source: "./media/characters/robin-phox/mienshao-front.svg",
  57253. extra: 1052/970,
  57254. bottom: 108/1160
  57255. },
  57256. form: "mienshao",
  57257. default: true
  57258. },
  57259. mienshao_frontNsfw: {
  57260. height: math.unit(4 + 7/12, "feet"),
  57261. weight: math.unit(78.3, "lb"),
  57262. name: "Front (NSFW)",
  57263. image: {
  57264. source: "./media/characters/robin-phox/mienshao-front-nsfw.svg",
  57265. extra: 1052/970,
  57266. bottom: 108/1160
  57267. },
  57268. form: "mienshao",
  57269. },
  57270. mienshao_back: {
  57271. height: math.unit(4 + 7/12, "feet"),
  57272. weight: math.unit(78.3, "lb"),
  57273. name: "Back",
  57274. image: {
  57275. source: "./media/characters/robin-phox/mienshao-back.svg",
  57276. extra: 1102/982,
  57277. bottom: 32/1134
  57278. },
  57279. form: "mienshao",
  57280. },
  57281. inteleon_front: {
  57282. height: math.unit(6 + 3/12, "feet"),
  57283. weight: math.unit(99.6, "lb"),
  57284. name: "Front",
  57285. image: {
  57286. source: "./media/characters/robin-phox/inteleon-front.svg",
  57287. extra: 910/799,
  57288. bottom: 76/986
  57289. },
  57290. form: "inteleon",
  57291. default: true
  57292. },
  57293. inteleon_frontNsfw: {
  57294. height: math.unit(6 + 3/12, "feet"),
  57295. weight: math.unit(99.6, "lb"),
  57296. name: "Front (NSFW)",
  57297. image: {
  57298. source: "./media/characters/robin-phox/inteleon-front-nsfw.svg",
  57299. extra: 910/799,
  57300. bottom: 76/986
  57301. },
  57302. form: "inteleon",
  57303. },
  57304. inteleon_back: {
  57305. height: math.unit(6 + 3/12, "feet"),
  57306. weight: math.unit(99.6, "lb"),
  57307. name: "Back",
  57308. image: {
  57309. source: "./media/characters/robin-phox/inteleon-back.svg",
  57310. extra: 907/796,
  57311. bottom: 25/932
  57312. },
  57313. form: "inteleon",
  57314. },
  57315. reshiram_front: {
  57316. height: math.unit(10 + 6/12, "feet"),
  57317. weight: math.unit(727.5, "lb"),
  57318. name: "Front",
  57319. image: {
  57320. source: "./media/characters/robin-phox/reshiram-front.svg",
  57321. extra: 1198/940,
  57322. bottom: 123/1321
  57323. },
  57324. form: "reshiram",
  57325. },
  57326. reshiram_frontNsfw: {
  57327. height: math.unit(10 + 6/12, "feet"),
  57328. weight: math.unit(727.5, "lb"),
  57329. name: "Front-nsfw",
  57330. image: {
  57331. source: "./media/characters/robin-phox/reshiram-front-nsfw.svg",
  57332. extra: 1198/940,
  57333. bottom: 123/1321
  57334. },
  57335. form: "reshiram",
  57336. },
  57337. reshiram_back: {
  57338. height: math.unit(10 + 6/12, "feet"),
  57339. weight: math.unit(727.5, "lb"),
  57340. name: "Back",
  57341. image: {
  57342. source: "./media/characters/robin-phox/reshiram-back.svg",
  57343. extra: 1024/904,
  57344. bottom: 85/1109
  57345. },
  57346. form: "reshiram",
  57347. },
  57348. samurott_front: {
  57349. height: math.unit(8, "feet"),
  57350. weight: math.unit(208.6, "lb"),
  57351. name: "Front",
  57352. image: {
  57353. source: "./media/characters/robin-phox/samurott-front.svg",
  57354. extra: 1048/984,
  57355. bottom: 100/1148
  57356. },
  57357. form: "samurott",
  57358. },
  57359. samurott_frontNsfw: {
  57360. height: math.unit(8, "feet"),
  57361. weight: math.unit(208.6, "lb"),
  57362. name: "Front-nsfw",
  57363. image: {
  57364. source: "./media/characters/robin-phox/samurott-front-nsfw.svg",
  57365. extra: 1048/984,
  57366. bottom: 100/1148
  57367. },
  57368. form: "samurott",
  57369. },
  57370. samurott_back: {
  57371. height: math.unit(8, "feet"),
  57372. weight: math.unit(208.6, "lb"),
  57373. name: "Back",
  57374. image: {
  57375. source: "./media/characters/robin-phox/samurott-back.svg",
  57376. extra: 1110/1042,
  57377. bottom: 12/1122
  57378. },
  57379. form: "samurott",
  57380. },
  57381. samurott_feral: {
  57382. height: math.unit(4 + 11/12, "feet"),
  57383. weight: math.unit(208.6, "lb"),
  57384. name: "Feral",
  57385. image: {
  57386. source: "./media/characters/robin-phox/samurott-feral.svg",
  57387. extra: 766/681,
  57388. bottom: 108/874
  57389. },
  57390. form: "samurott",
  57391. },
  57392. },
  57393. [
  57394. {
  57395. name: "Normal",
  57396. height: math.unit(2, "feet"),
  57397. default: true,
  57398. form: "snivy"
  57399. },
  57400. {
  57401. name: "Normal",
  57402. height: math.unit(6, "feet"),
  57403. default: true,
  57404. form: "yoshi"
  57405. },
  57406. {
  57407. name: "Normal",
  57408. height: math.unit(4 + 11/12, "feet"),
  57409. default: true,
  57410. form: "delphox"
  57411. },
  57412. {
  57413. name: "Normal",
  57414. height: math.unit(4 + 7/12, "feet"),
  57415. default: true,
  57416. form: "mienshao"
  57417. },
  57418. {
  57419. name: "Normal",
  57420. height: math.unit(6 + 3/12, "feet"),
  57421. default: true,
  57422. form: "inteleon"
  57423. },
  57424. {
  57425. name: "Normal",
  57426. height: math.unit(10 + 6/12, "feet"),
  57427. default: true,
  57428. form: "reshiram"
  57429. },
  57430. {
  57431. name: "Normal",
  57432. height: math.unit(8, "feet"),
  57433. default: true,
  57434. form: "samurott"
  57435. },
  57436. {
  57437. name: "Macro",
  57438. height: math.unit(500, "feet"),
  57439. allForms: true
  57440. },
  57441. {
  57442. name: "Mega Macro",
  57443. height: math.unit(10, "earths"),
  57444. allForms: true
  57445. },
  57446. {
  57447. name: "Giga Macro",
  57448. height: math.unit(1, "galaxy"),
  57449. allForms: true
  57450. },
  57451. {
  57452. name: "Godly Macro",
  57453. height: math.unit(1e10, "multiverses"),
  57454. allForms: true
  57455. },
  57456. ],
  57457. {
  57458. "snivy": {
  57459. name: "Snivy",
  57460. default: true
  57461. },
  57462. "yoshi": {
  57463. name: "Yoshi",
  57464. },
  57465. "delphox": {
  57466. name: "Delphox",
  57467. },
  57468. "mienshao": {
  57469. name: "Mienshao",
  57470. },
  57471. "inteleon": {
  57472. name: "Inteleon",
  57473. },
  57474. "reshiram": {
  57475. name: "Reshiram",
  57476. },
  57477. "samurott": {
  57478. name: "Samurott",
  57479. },
  57480. }
  57481. ))
  57482. characterMakers.push(() => makeCharacter(
  57483. { name: "Ash Leung", species: ["red-panda"], tags: ["anthro"] },
  57484. {
  57485. front: {
  57486. height: math.unit(4, "feet"),
  57487. name: "Front",
  57488. image: {
  57489. source: "./media/characters/ash-leung/front.svg",
  57490. extra: 1916/1792,
  57491. bottom: 50/1966
  57492. }
  57493. },
  57494. },
  57495. [
  57496. {
  57497. name: "Atomic",
  57498. height: math.unit(1, "angstrom")
  57499. },
  57500. {
  57501. name: "Microscopic",
  57502. height: math.unit(4000, "angstroms")
  57503. },
  57504. {
  57505. name: "Speck",
  57506. height: math.unit(1, "mm")
  57507. },
  57508. {
  57509. name: "Small",
  57510. height: math.unit(1, "inch")
  57511. },
  57512. {
  57513. name: "Normal",
  57514. height: math.unit(4, "feet"),
  57515. default: true
  57516. },
  57517. ]
  57518. ))
  57519. characterMakers.push(() => makeCharacter(
  57520. { name: "Carie", species: ["lucario"], tags: ["anthro"] },
  57521. {
  57522. frontDressed: {
  57523. height: math.unit(2.08, "meters"),
  57524. weight: math.unit(175, "lb"),
  57525. name: "Front (Dressed)",
  57526. image: {
  57527. source: "./media/characters/carie/front-dressed.svg",
  57528. extra: 456/417,
  57529. bottom: 7/463
  57530. }
  57531. },
  57532. backDressed: {
  57533. height: math.unit(2.08, "meters"),
  57534. weight: math.unit(175, "lb"),
  57535. name: "Back (Dressed)",
  57536. image: {
  57537. source: "./media/characters/carie/back-dressed.svg",
  57538. extra: 455/414,
  57539. bottom: 11/466
  57540. }
  57541. },
  57542. front: {
  57543. height: math.unit(2, "meters"),
  57544. weight: math.unit(175, "lb"),
  57545. name: "Front",
  57546. image: {
  57547. source: "./media/characters/carie/front.svg",
  57548. extra: 438/399,
  57549. bottom: 12/450
  57550. }
  57551. },
  57552. back: {
  57553. height: math.unit(2, "meters"),
  57554. weight: math.unit(175, "lb"),
  57555. name: "Back",
  57556. image: {
  57557. source: "./media/characters/carie/back.svg",
  57558. extra: 438/397,
  57559. bottom: 7/445
  57560. }
  57561. },
  57562. },
  57563. [
  57564. {
  57565. name: "Normal",
  57566. height: math.unit(2.08, "meters"),
  57567. default: true
  57568. },
  57569. {
  57570. name: "Macro",
  57571. height: math.unit(2.08e3, "meters")
  57572. },
  57573. {
  57574. name: "Mega Macro",
  57575. height: math.unit(2.08e6, "meters")
  57576. },
  57577. {
  57578. name: "Giga Macro",
  57579. height: math.unit(2.08e9, "meters")
  57580. },
  57581. {
  57582. name: "Tera Macro",
  57583. height: math.unit(2.08e12, "meters")
  57584. },
  57585. {
  57586. name: "Peta Macro",
  57587. height: math.unit(2.08e15, "meters")
  57588. },
  57589. {
  57590. name: "Exa Macro",
  57591. height: math.unit(2.08e18, "meters")
  57592. },
  57593. {
  57594. name: "Zetta Macro",
  57595. height: math.unit(2.08e21, "meters")
  57596. },
  57597. {
  57598. name: "Yotta Macro",
  57599. height: math.unit(2.08e24, "meters")
  57600. },
  57601. ]
  57602. ))
  57603. characterMakers.push(() => makeCharacter(
  57604. { name: "Sai Bree", species: ["sabertooth-tiger"], tags: ["anthro"] },
  57605. {
  57606. front: {
  57607. height: math.unit(5 + 2/12, "feet"),
  57608. weight: math.unit(120, "lb"),
  57609. name: "Front",
  57610. image: {
  57611. source: "./media/characters/sai-bree/front.svg",
  57612. extra: 1843/1702,
  57613. bottom: 91/1934
  57614. }
  57615. },
  57616. back: {
  57617. height: math.unit(5 + 2/12, "feet"),
  57618. weight: math.unit(120, "lb"),
  57619. name: "Back",
  57620. image: {
  57621. source: "./media/characters/sai-bree/back.svg",
  57622. extra: 1809/1637,
  57623. bottom: 56/1865
  57624. }
  57625. },
  57626. },
  57627. [
  57628. {
  57629. name: "Normal",
  57630. height: math.unit(5 + 2/12, "feet"),
  57631. default: true
  57632. },
  57633. {
  57634. name: "Macro",
  57635. height: math.unit(500, "feet")
  57636. },
  57637. ]
  57638. ))
  57639. characterMakers.push(() => makeCharacter(
  57640. { name: "Davwyn", species: ["dragon"], tags: ["feral"] },
  57641. {
  57642. side: {
  57643. height: math.unit(0.77, "meters"),
  57644. weight: math.unit(120, "lb"),
  57645. name: "Side",
  57646. image: {
  57647. source: "./media/characters/davwyn/side.svg",
  57648. extra: 1557/1225,
  57649. bottom: 131/1688
  57650. }
  57651. },
  57652. front: {
  57653. height: math.unit(0.835410, "meters"),
  57654. weight: math.unit(120, "lb"),
  57655. name: "Front",
  57656. image: {
  57657. source: "./media/characters/davwyn/front.svg",
  57658. extra: 870/843,
  57659. bottom: 175/1045
  57660. }
  57661. },
  57662. },
  57663. [
  57664. {
  57665. name: "Minidrake",
  57666. height: math.unit(0.77/4, "meters")
  57667. },
  57668. {
  57669. name: "Normal",
  57670. height: math.unit(0.77, "meters"),
  57671. default: true
  57672. },
  57673. ]
  57674. ))
  57675. characterMakers.push(() => makeCharacter(
  57676. { name: "Balans", species: ["dragon", "kangaroo"], tags: ["anthro"] },
  57677. {
  57678. front: {
  57679. height: math.unit(10 + 3/12, "feet"),
  57680. weight: math.unit(2857, "lb"),
  57681. name: "Front",
  57682. image: {
  57683. source: "./media/characters/balans/front.svg",
  57684. extra: 427/402,
  57685. bottom: 26/453
  57686. }
  57687. },
  57688. side: {
  57689. height: math.unit(10 + 3/12, "feet"),
  57690. weight: math.unit(2857, "lb"),
  57691. name: "Side",
  57692. image: {
  57693. source: "./media/characters/balans/side.svg",
  57694. extra: 397/371,
  57695. bottom: 17/414
  57696. }
  57697. },
  57698. back: {
  57699. height: math.unit(10 + 3/12, "feet"),
  57700. weight: math.unit(2857, "lb"),
  57701. name: "Back",
  57702. image: {
  57703. source: "./media/characters/balans/back.svg",
  57704. extra: 408/381,
  57705. bottom: 14/422
  57706. }
  57707. },
  57708. hand: {
  57709. height: math.unit(1.15, "feet"),
  57710. name: "Hand",
  57711. image: {
  57712. source: "./media/characters/balans/hand.svg"
  57713. }
  57714. },
  57715. footRest: {
  57716. height: math.unit(3.1, "feet"),
  57717. name: "Foot (Rest)",
  57718. image: {
  57719. source: "./media/characters/balans/foot-rest.svg"
  57720. }
  57721. },
  57722. footActive: {
  57723. height: math.unit(3.5, "feet"),
  57724. name: "Foot (Active)",
  57725. image: {
  57726. source: "./media/characters/balans/foot-active.svg"
  57727. }
  57728. },
  57729. },
  57730. [
  57731. {
  57732. name: "Normal",
  57733. height: math.unit(10 + 3/12, "feet"),
  57734. default: true
  57735. },
  57736. ]
  57737. ))
  57738. characterMakers.push(() => makeCharacter(
  57739. { name: "Eldkveikir", species: ["dragon"], tags: ["feral"] },
  57740. {
  57741. side: {
  57742. height: math.unit(9, "meters"),
  57743. weight: math.unit(114, "tonnes"),
  57744. name: "Side",
  57745. image: {
  57746. source: "./media/characters/eldkveikir/side.svg",
  57747. extra: 1927/338,
  57748. bottom: 42/1969
  57749. }
  57750. },
  57751. sitting: {
  57752. height: math.unit(13.4, "meters"),
  57753. weight: math.unit(114, "tonnes"),
  57754. name: "Sitting",
  57755. image: {
  57756. source: "./media/characters/eldkveikir/sitting.svg",
  57757. extra: 1108/963,
  57758. bottom: 610/1718
  57759. }
  57760. },
  57761. maw: {
  57762. height: math.unit(8.36, "meters"),
  57763. name: "Maw",
  57764. image: {
  57765. source: "./media/characters/eldkveikir/maw.svg"
  57766. }
  57767. },
  57768. hand: {
  57769. height: math.unit(4.84, "meters"),
  57770. name: "Hand",
  57771. image: {
  57772. source: "./media/characters/eldkveikir/hand.svg"
  57773. }
  57774. },
  57775. foot: {
  57776. height: math.unit(6.9, "meters"),
  57777. name: "Foot",
  57778. image: {
  57779. source: "./media/characters/eldkveikir/foot.svg"
  57780. }
  57781. },
  57782. genitals: {
  57783. height: math.unit(9.6, "meters"),
  57784. name: "Genitals",
  57785. image: {
  57786. source: "./media/characters/eldkveikir/genitals.svg"
  57787. }
  57788. },
  57789. },
  57790. [
  57791. {
  57792. name: "Normal",
  57793. height: math.unit(9, "meters"),
  57794. default: true
  57795. },
  57796. ]
  57797. ))
  57798. characterMakers.push(() => makeCharacter(
  57799. { name: "Arrow", species: ["wolf"], tags: ["anthro"] },
  57800. {
  57801. front: {
  57802. height: math.unit(14, "feet"),
  57803. weight: math.unit(4100, "lb"),
  57804. name: "Front",
  57805. image: {
  57806. source: "./media/characters/arrow/front.svg",
  57807. extra: 330/318,
  57808. bottom: 56/386
  57809. }
  57810. },
  57811. },
  57812. [
  57813. {
  57814. name: "Normal",
  57815. height: math.unit(14, "feet"),
  57816. default: true
  57817. },
  57818. {
  57819. name: "Minimacro",
  57820. height: math.unit(63, "feet")
  57821. },
  57822. {
  57823. name: "Macro",
  57824. height: math.unit(630, "feet")
  57825. },
  57826. {
  57827. name: "Megamacro",
  57828. height: math.unit(12600, "feet")
  57829. },
  57830. {
  57831. name: "Gigamacro",
  57832. height: math.unit(18000, "miles")
  57833. },
  57834. ]
  57835. ))
  57836. characterMakers.push(() => makeCharacter(
  57837. { name: "3YK-K0 Unit", species: ["synth"], tags: ["anthro"] },
  57838. {
  57839. front: {
  57840. height: math.unit(10, "feet"),
  57841. weight: math.unit(2.4, "tons"),
  57842. name: "Front",
  57843. image: {
  57844. source: "./media/characters/3yk-k0-unit/front.svg",
  57845. extra: 573/561,
  57846. bottom: 33/606
  57847. }
  57848. },
  57849. back: {
  57850. height: math.unit(10, "feet"),
  57851. weight: math.unit(2.4, "tons"),
  57852. name: "Back",
  57853. image: {
  57854. source: "./media/characters/3yk-k0-unit/back.svg",
  57855. extra: 614/573,
  57856. bottom: 32/646
  57857. }
  57858. },
  57859. maw: {
  57860. height: math.unit(2.15, "feet"),
  57861. name: "Maw",
  57862. image: {
  57863. source: "./media/characters/3yk-k0-unit/maw.svg"
  57864. }
  57865. },
  57866. },
  57867. [
  57868. {
  57869. name: "Normal",
  57870. height: math.unit(10, "feet"),
  57871. default: true
  57872. },
  57873. ]
  57874. ))
  57875. characterMakers.push(() => makeCharacter(
  57876. { name: "Nemo", species: ["dragon"], tags: ["anthro"] },
  57877. {
  57878. front: {
  57879. height: math.unit(8 + 8/12, "feet"),
  57880. name: "Front",
  57881. image: {
  57882. source: "./media/characters/nemo/front.svg",
  57883. extra: 1308/1217,
  57884. bottom: 57/1365
  57885. }
  57886. },
  57887. },
  57888. [
  57889. {
  57890. name: "Normal",
  57891. height: math.unit(8 + 8/12, "feet"),
  57892. default: true
  57893. },
  57894. ]
  57895. ))
  57896. characterMakers.push(() => makeCharacter(
  57897. { name: "Rexx", species: ["wolf"], tags: ["anthro"] },
  57898. {
  57899. front: {
  57900. height: math.unit(8, "feet"),
  57901. weight: math.unit(760, "lb"),
  57902. name: "Front",
  57903. image: {
  57904. source: "./media/characters/rexx/front.svg",
  57905. extra: 786/750,
  57906. bottom: 17/803
  57907. },
  57908. extraAttributes: {
  57909. "pawLength": {
  57910. name: "Paw Length",
  57911. power: 1,
  57912. type: "length",
  57913. base: math.unit(27, "inches")
  57914. },
  57915. }
  57916. },
  57917. },
  57918. [
  57919. {
  57920. name: "Micro",
  57921. height: math.unit(2, "inches")
  57922. },
  57923. {
  57924. name: "Normal",
  57925. height: math.unit(8, "feet"),
  57926. default: true
  57927. },
  57928. {
  57929. name: "Macro",
  57930. height: math.unit(150, "feet")
  57931. },
  57932. ]
  57933. ))
  57934. characterMakers.push(() => makeCharacter(
  57935. { name: "Draco", species: ["dragon"], tags: ["anthro"] },
  57936. {
  57937. front: {
  57938. height: math.unit(18, "feet"),
  57939. weight: math.unit(1975, "lb"),
  57940. name: "Front",
  57941. image: {
  57942. source: "./media/characters/draco/front.svg",
  57943. extra: 1325/1241,
  57944. bottom: 83/1408
  57945. }
  57946. },
  57947. back: {
  57948. height: math.unit(18, "feet"),
  57949. weight: math.unit(1975, "lb"),
  57950. name: "Back",
  57951. image: {
  57952. source: "./media/characters/draco/back.svg",
  57953. extra: 1332/1250,
  57954. bottom: 43/1375
  57955. }
  57956. },
  57957. dick: {
  57958. height: math.unit(7.5, "feet"),
  57959. name: "Dick",
  57960. image: {
  57961. source: "./media/characters/draco/dick.svg"
  57962. }
  57963. },
  57964. },
  57965. [
  57966. {
  57967. name: "Normal",
  57968. height: math.unit(18, "feet"),
  57969. default: true
  57970. },
  57971. ]
  57972. ))
  57973. characterMakers.push(() => makeCharacter(
  57974. { name: "Harriett", species: ["nedynvor"], tags: ["anthro"] },
  57975. {
  57976. front: {
  57977. height: math.unit(3.2, "meters"),
  57978. name: "Front",
  57979. image: {
  57980. source: "./media/characters/harriett/front.svg",
  57981. extra: 1966/1915,
  57982. bottom: 9/1975
  57983. }
  57984. },
  57985. },
  57986. [
  57987. {
  57988. name: "Normal",
  57989. height: math.unit(3.2, "meters"),
  57990. default: true
  57991. },
  57992. ]
  57993. ))
  57994. characterMakers.push(() => makeCharacter(
  57995. { name: "Serpentus", species: ["snake"], tags: ["anthro"] },
  57996. {
  57997. sitting: {
  57998. height: math.unit(0.8, "meter"),
  57999. name: "Sitting",
  58000. image: {
  58001. source: "./media/characters/serpentus/sitting.svg",
  58002. extra: 293/290,
  58003. bottom: 140/433
  58004. }
  58005. },
  58006. },
  58007. [
  58008. {
  58009. name: "Normal",
  58010. height: math.unit(0.8, "meter"),
  58011. default: true
  58012. },
  58013. ]
  58014. ))
  58015. characterMakers.push(() => makeCharacter(
  58016. { name: "Nova (Polecat)", species: ["marbled-polecat"], tags: ["anthro"] },
  58017. {
  58018. front: {
  58019. height: math.unit(5.7174385736, "feet"),
  58020. name: "Front",
  58021. image: {
  58022. source: "./media/characters/nova-polecat/front.svg",
  58023. extra: 1317/1216,
  58024. bottom: 92/1409
  58025. }
  58026. },
  58027. },
  58028. [
  58029. {
  58030. name: "Normal",
  58031. height: math.unit(5.7174385736, "feet"),
  58032. default: true
  58033. },
  58034. ]
  58035. ))
  58036. characterMakers.push(() => makeCharacter(
  58037. { name: "Mook", species: ["monkey", "ape"], tags: ["anthro"] },
  58038. {
  58039. front: {
  58040. height: math.unit(5 + 4/12, "feet"),
  58041. weight: math.unit(250, "lb"),
  58042. name: "Front",
  58043. image: {
  58044. source: "./media/characters/mook/front.svg",
  58045. extra: 1088/1037,
  58046. bottom: 132/1220
  58047. }
  58048. },
  58049. back: {
  58050. height: math.unit(5 + 1/12, "feet"),
  58051. weight: math.unit(250, "lb"),
  58052. name: "Back",
  58053. image: {
  58054. source: "./media/characters/mook/back.svg",
  58055. extra: 1184/905,
  58056. bottom: 96/1280
  58057. }
  58058. },
  58059. head: {
  58060. height: math.unit(1.85, "feet"),
  58061. name: "Head",
  58062. image: {
  58063. source: "./media/characters/mook/head.svg"
  58064. }
  58065. },
  58066. hand: {
  58067. height: math.unit(1.9, "feet"),
  58068. name: "Hand",
  58069. image: {
  58070. source: "./media/characters/mook/hand.svg"
  58071. }
  58072. },
  58073. palm: {
  58074. height: math.unit(1.84, "feet"),
  58075. name: "Palm",
  58076. image: {
  58077. source: "./media/characters/mook/palm.svg"
  58078. }
  58079. },
  58080. foot: {
  58081. height: math.unit(1.44, "feet"),
  58082. name: "Foot",
  58083. image: {
  58084. source: "./media/characters/mook/foot.svg"
  58085. }
  58086. },
  58087. sole: {
  58088. height: math.unit(1.44, "feet"),
  58089. name: "Sole",
  58090. image: {
  58091. source: "./media/characters/mook/sole.svg"
  58092. }
  58093. },
  58094. },
  58095. [
  58096. {
  58097. name: "Normal",
  58098. height: math.unit(5 + 4/12, "feet"),
  58099. default: true
  58100. },
  58101. {
  58102. name: "Big",
  58103. height: math.unit(12, "feet")
  58104. },
  58105. ]
  58106. ))
  58107. characterMakers.push(() => makeCharacter(
  58108. { name: "Kayla", species: ["human"], tags: ["anthro"] },
  58109. {
  58110. front: {
  58111. height: math.unit(6 + 10/12, "feet"),
  58112. weight: math.unit(233, "lb"),
  58113. name: "Front",
  58114. image: {
  58115. source: "./media/characters/kayla/front.svg",
  58116. extra: 1850/1775,
  58117. bottom: 65/1915
  58118. }
  58119. },
  58120. },
  58121. [
  58122. {
  58123. name: "Normal",
  58124. height: math.unit(6 + 10/12, "feet"),
  58125. default: true
  58126. },
  58127. {
  58128. name: "Amazonian",
  58129. height: math.unit(12 + 5/12, "feet")
  58130. },
  58131. {
  58132. name: "Mini Giantess",
  58133. height: math.unit(26, "feet")
  58134. },
  58135. {
  58136. name: "Giantess",
  58137. height: math.unit(200, "feet")
  58138. },
  58139. {
  58140. name: "Mega Giantess",
  58141. height: math.unit(2500, "feet")
  58142. },
  58143. {
  58144. name: "City Sized",
  58145. height: math.unit(50, "miles")
  58146. },
  58147. {
  58148. name: "Country Sized",
  58149. height: math.unit(500, "miles")
  58150. },
  58151. {
  58152. name: "Continent Sized",
  58153. height: math.unit(2500, "miles")
  58154. },
  58155. {
  58156. name: "Planet Sized",
  58157. height: math.unit(10000, "miles")
  58158. },
  58159. {
  58160. name: "Star Sized",
  58161. height: math.unit(5e6, "miles")
  58162. },
  58163. {
  58164. name: "Solar System Sized",
  58165. height: math.unit(125, "AU")
  58166. },
  58167. {
  58168. name: "Galaxy Sized",
  58169. height: math.unit(300e3, "lightyears")
  58170. },
  58171. {
  58172. name: "Universe Sized",
  58173. height: math.unit(200e9, "lightyears")
  58174. },
  58175. {
  58176. name: "Multiverse Sized",
  58177. height: math.unit(20, "exauniverses")
  58178. },
  58179. {
  58180. name: "Mother of Existence",
  58181. height: math.unit(1e6, "yottauniverses")
  58182. },
  58183. ]
  58184. ))
  58185. characterMakers.push(() => makeCharacter(
  58186. { name: "Kulve Ragnarok", species: ["kulve-taroth"], tags: ["taur"] },
  58187. {
  58188. side: {
  58189. height: math.unit(9.5, "meters"),
  58190. name: "Side",
  58191. image: {
  58192. source: "./media/characters/kulve-ragnarok/side.svg",
  58193. extra: 364/326,
  58194. bottom: 50/414
  58195. }
  58196. },
  58197. },
  58198. [
  58199. {
  58200. name: "Normal",
  58201. height: math.unit(9.5, "meters"),
  58202. default: true
  58203. },
  58204. ]
  58205. ))
  58206. characterMakers.push(() => makeCharacter(
  58207. { name: "Atlas (Goat)", species: ["goat"], tags: ["anthro"] },
  58208. {
  58209. front: {
  58210. height: math.unit(8 + 9/12, "feet"),
  58211. name: "Front",
  58212. image: {
  58213. source: "./media/characters/atlas-goat/front.svg",
  58214. extra: 1462/1323,
  58215. bottom: 12/1474
  58216. }
  58217. },
  58218. },
  58219. [
  58220. {
  58221. name: "Normal",
  58222. height: math.unit(8 + 9/12, "feet"),
  58223. default: true
  58224. },
  58225. {
  58226. name: "Skyline",
  58227. height: math.unit(845, "feet")
  58228. },
  58229. {
  58230. name: "Orbital",
  58231. height: math.unit(93000, "miles")
  58232. },
  58233. {
  58234. name: "Constellation",
  58235. height: math.unit(27000, "lightyears")
  58236. },
  58237. ]
  58238. ))
  58239. characterMakers.push(() => makeCharacter(
  58240. { name: "Xie Ling", species: ["irthos"], tags: ["anthro"] },
  58241. {
  58242. side: {
  58243. height: math.unit(1.8, "meters"),
  58244. weight: math.unit(120, "kg"),
  58245. name: "Side",
  58246. image: {
  58247. source: "./media/characters/xie-ling/side.svg",
  58248. extra: 646/574,
  58249. bottom: 44/690
  58250. }
  58251. },
  58252. },
  58253. [
  58254. {
  58255. name: "Tiny",
  58256. height: math.unit(1.80, "meters")
  58257. },
  58258. {
  58259. name: "Small",
  58260. height: math.unit(6, "meters")
  58261. },
  58262. {
  58263. name: "Medium",
  58264. height: math.unit(15, "meters")
  58265. },
  58266. {
  58267. name: "Normal",
  58268. height: math.unit(30, "meters"),
  58269. default: true
  58270. },
  58271. {
  58272. name: "Above Normal",
  58273. height: math.unit(60, "meters")
  58274. },
  58275. {
  58276. name: "Big",
  58277. height: math.unit(220, "meters")
  58278. },
  58279. {
  58280. name: "Giant",
  58281. height: math.unit(2.2, "km")
  58282. },
  58283. {
  58284. name: "Macro",
  58285. height: math.unit(25, "km")
  58286. },
  58287. {
  58288. name: "Mega Macro",
  58289. height: math.unit(350, "km")
  58290. },
  58291. {
  58292. name: "Mega Macro+",
  58293. height: math.unit(5000, "km")
  58294. },
  58295. {
  58296. name: "Goddess",
  58297. height: math.unit(3, "multiverses")
  58298. },
  58299. ]
  58300. ))
  58301. characterMakers.push(() => makeCharacter(
  58302. { name: "Sune Nemeruva", species: ["furred-dragon"], tags: ["anthro"] },
  58303. {
  58304. frontSfw: {
  58305. height: math.unit(5 + 11/12, "feet"),
  58306. weight: math.unit(210, "lb"),
  58307. name: "Front",
  58308. image: {
  58309. source: "./media/characters/sune-nemeruva/front-sfw.svg",
  58310. extra: 1928/1821,
  58311. bottom: 45/1973
  58312. }
  58313. },
  58314. backSfw: {
  58315. height: math.unit(5 + 11/12, "feet"),
  58316. weight: math.unit(210, "lb"),
  58317. name: "Back",
  58318. image: {
  58319. source: "./media/characters/sune-nemeruva/back-sfw.svg",
  58320. extra: 1920/1813,
  58321. bottom: 34/1954
  58322. }
  58323. },
  58324. frontNsfw: {
  58325. height: math.unit(5 + 11/12, "feet"),
  58326. weight: math.unit(210, "lb"),
  58327. name: "Front (NSFW)",
  58328. image: {
  58329. source: "./media/characters/sune-nemeruva/front-nsfw.svg",
  58330. extra: 1928/1821,
  58331. bottom: 45/1973
  58332. }
  58333. },
  58334. backNsfw: {
  58335. height: math.unit(5 + 11/12, "feet"),
  58336. weight: math.unit(210, "lb"),
  58337. name: "Back (NSFW)",
  58338. image: {
  58339. source: "./media/characters/sune-nemeruva/back-nsfw.svg",
  58340. extra: 1920/1813,
  58341. bottom: 34/1954
  58342. }
  58343. },
  58344. },
  58345. [
  58346. {
  58347. name: "Normal",
  58348. height: math.unit(5 + 11/12, "feet"),
  58349. default: true
  58350. },
  58351. {
  58352. name: "Goddess",
  58353. height: math.unit(20 + 3/12, "feet")
  58354. },
  58355. {
  58356. name: "Breaker of Man",
  58357. height: math.unit(329 + 9/12, "feet")
  58358. },
  58359. {
  58360. name: "Solar Justice",
  58361. height: math.unit(0.6, "solarradii")
  58362. },
  58363. {
  58364. name: "She Who Judges",
  58365. height: math.unit(1, "universe")
  58366. },
  58367. ]
  58368. ))
  58369. characterMakers.push(() => makeCharacter(
  58370. { name: "Managarmr", species: ["dragon", "deity"], tags: ["anthro"] },
  58371. {
  58372. casual_front: {
  58373. height: math.unit(6 + 1/12, "feet"),
  58374. weight: math.unit(190, "lb"),
  58375. preyCapacity: math.unit(1, "people"),
  58376. name: "Front",
  58377. image: {
  58378. source: "./media/characters/managarmr/casual-front.svg",
  58379. extra: 411/381,
  58380. bottom: 15/426
  58381. },
  58382. extraAttributes: {
  58383. "pawSize": {
  58384. name: "Paw Size",
  58385. power: 1,
  58386. type: "length",
  58387. base: math.unit(0.2, "meters")
  58388. },
  58389. },
  58390. form: "casual",
  58391. },
  58392. casual_back: {
  58393. height: math.unit(6 + 1/12, "feet"),
  58394. weight: math.unit(190, "lb"),
  58395. preyCapacity: math.unit(1, "people"),
  58396. name: "Back",
  58397. image: {
  58398. source: "./media/characters/managarmr/casual-back.svg",
  58399. extra: 413/383,
  58400. bottom: 13/426
  58401. },
  58402. extraAttributes: {
  58403. "pawSize": {
  58404. name: "Paw Size",
  58405. power: 1,
  58406. type: "length",
  58407. base: math.unit(0.2, "meters")
  58408. },
  58409. },
  58410. form: "casual",
  58411. },
  58412. base_front: {
  58413. height: math.unit(7, "feet"),
  58414. weight: math.unit(210, "lb"),
  58415. preyCapacity: math.unit(2, "people"),
  58416. name: "Front",
  58417. image: {
  58418. source: "./media/characters/managarmr/base-front.svg",
  58419. extra: 580/485,
  58420. bottom: 32/612
  58421. },
  58422. extraAttributes: {
  58423. "wingspan": {
  58424. name: "Wingspan",
  58425. power: 1,
  58426. type: "length",
  58427. base: math.unit(4, "meters")
  58428. },
  58429. "pawSize": {
  58430. name: "Paw Size",
  58431. power: 1,
  58432. type: "length",
  58433. base: math.unit(0.2, "meters")
  58434. },
  58435. },
  58436. form: "base",
  58437. },
  58438. "true-divine_front": {
  58439. height: math.unit(40, "feet"),
  58440. weight: math.unit(39000, "lb"),
  58441. preyCapacity: math.unit(375, "people"),
  58442. name: "Front",
  58443. image: {
  58444. source: "./media/characters/managarmr/true-divine-front.svg",
  58445. extra: 725/573,
  58446. bottom: 120/845
  58447. },
  58448. extraAttributes: {
  58449. "wingspan": {
  58450. name: "Wingspan",
  58451. power: 1,
  58452. type: "length",
  58453. base: math.unit(20, "meters")
  58454. },
  58455. "pawSize": {
  58456. name: "Paw Size",
  58457. power: 1,
  58458. type: "length",
  58459. base: math.unit(1.5, "meters")
  58460. },
  58461. },
  58462. form: "true-divine",
  58463. },
  58464. },
  58465. [
  58466. {
  58467. name: "Normal",
  58468. height: math.unit(6 + 1/12, "feet"),
  58469. form: "casual",
  58470. default: true
  58471. },
  58472. {
  58473. name: "Normal",
  58474. height: math.unit(7, "feet"),
  58475. form: "base",
  58476. default: true
  58477. },
  58478. ],
  58479. {
  58480. "casual": {
  58481. name: "Casual",
  58482. default: true
  58483. },
  58484. "base": {
  58485. name: "Base",
  58486. },
  58487. "true-divine": {
  58488. name: "True Divine",
  58489. },
  58490. }
  58491. ))
  58492. characterMakers.push(() => makeCharacter(
  58493. { name: "Mystra", species: ["sergal", "deity"], tags: ["anthro"] },
  58494. {
  58495. front: {
  58496. height: math.unit(1.8, "meters"),
  58497. weight: math.unit(110, "kg"),
  58498. name: "Front",
  58499. image: {
  58500. source: "./media/characters/mystra/front.svg",
  58501. extra: 529/442,
  58502. bottom: 31/560
  58503. }
  58504. },
  58505. frontLewd: {
  58506. height: math.unit(1.8, "meters"),
  58507. weight: math.unit(110, "kg"),
  58508. name: "Front (Lewd)",
  58509. image: {
  58510. source: "./media/characters/mystra/front-lewd.svg",
  58511. extra: 529/442,
  58512. bottom: 31/560
  58513. }
  58514. },
  58515. head: {
  58516. height: math.unit(1.63, "feet"),
  58517. name: "Head",
  58518. image: {
  58519. source: "./media/characters/mystra/head.svg"
  58520. }
  58521. },
  58522. paw: {
  58523. height: math.unit(1.9, "feet"),
  58524. name: "Paw",
  58525. image: {
  58526. source: "./media/characters/mystra/paw.svg"
  58527. }
  58528. },
  58529. },
  58530. [
  58531. {
  58532. name: "Incognito",
  58533. height: math.unit(2.3, "meters")
  58534. },
  58535. {
  58536. name: "Small Macro",
  58537. height: math.unit(300, "meters")
  58538. },
  58539. {
  58540. name: "Small Mega",
  58541. height: math.unit(2, "km")
  58542. },
  58543. {
  58544. name: "Mega",
  58545. height: math.unit(30, "km")
  58546. },
  58547. {
  58548. name: "Small Giga",
  58549. height: math.unit(100, "km")
  58550. },
  58551. {
  58552. name: "Giga",
  58553. height: math.unit(1000, "km"),
  58554. default: true
  58555. },
  58556. {
  58557. name: "Continental",
  58558. height: math.unit(5000, "km")
  58559. },
  58560. {
  58561. name: "Terra",
  58562. height: math.unit(20000, "km")
  58563. },
  58564. {
  58565. name: "Solar",
  58566. height: math.unit(2e6, "km")
  58567. },
  58568. {
  58569. name: "Galactic",
  58570. height: math.unit(528502, "lightyears")
  58571. },
  58572. {
  58573. name: "Universal",
  58574. height: math.unit(20, "universes")
  58575. },
  58576. ]
  58577. ))
  58578. characterMakers.push(() => makeCharacter(
  58579. { name: "Caleb", species: ["lion", "cobra", "dragon", "chimera", "deity"], tags: ["anthro"] },
  58580. {
  58581. front: {
  58582. height: math.unit(2, "meters"),
  58583. weight: math.unit(140, "kg"),
  58584. name: "Front",
  58585. image: {
  58586. source: "./media/characters/caleb/front.svg",
  58587. extra: 873/817,
  58588. bottom: 47/920
  58589. }
  58590. },
  58591. back: {
  58592. height: math.unit(2, "meters"),
  58593. weight: math.unit(140, "kg"),
  58594. name: "Back",
  58595. image: {
  58596. source: "./media/characters/caleb/back.svg",
  58597. extra: 877/828,
  58598. bottom: 24/901
  58599. }
  58600. },
  58601. snakeTail: {
  58602. height: math.unit(1.44, "feet"),
  58603. name: "Snake Tail",
  58604. image: {
  58605. source: "./media/characters/caleb/snake-tail.svg"
  58606. }
  58607. },
  58608. dick: {
  58609. height: math.unit(2.6, "feet"),
  58610. name: "Dick",
  58611. image: {
  58612. source: "./media/characters/caleb/dick.svg"
  58613. }
  58614. },
  58615. },
  58616. [
  58617. {
  58618. name: "Incognito",
  58619. height: math.unit(3, "meters")
  58620. },
  58621. {
  58622. name: "Home Size",
  58623. height: math.unit(200, "meters"),
  58624. default: true
  58625. },
  58626. {
  58627. name: "Macro",
  58628. height: math.unit(500, "meters")
  58629. },
  58630. {
  58631. name: "Big Macro",
  58632. height: math.unit(5, "km")
  58633. },
  58634. {
  58635. name: "Giga",
  58636. height: math.unit(250, "km")
  58637. },
  58638. {
  58639. name: "Giga+",
  58640. height: math.unit(5000, "km")
  58641. },
  58642. {
  58643. name: "Small Terra",
  58644. height: math.unit(35e3, "km")
  58645. },
  58646. {
  58647. name: "Terra",
  58648. height: math.unit(2e6, "km")
  58649. },
  58650. {
  58651. name: "Terra+",
  58652. height: math.unit(1.5e6, "km")
  58653. },
  58654. ]
  58655. ))
  58656. characterMakers.push(() => makeCharacter(
  58657. { name: "Gilirian", species: ["giraffe", "zebra", "deity"], tags: ["anthro"] },
  58658. {
  58659. front: {
  58660. height: math.unit(2, "meters"),
  58661. weight: math.unit(120, "kg"),
  58662. name: "Front",
  58663. image: {
  58664. source: "./media/characters/gilirian/front.svg",
  58665. extra: 805/737,
  58666. bottom: 13/818
  58667. }
  58668. },
  58669. side: {
  58670. height: math.unit(2, "meters"),
  58671. weight: math.unit(120, "kg"),
  58672. name: "Side",
  58673. image: {
  58674. source: "./media/characters/gilirian/side.svg",
  58675. extra: 810/746,
  58676. bottom: 6/816
  58677. }
  58678. },
  58679. back: {
  58680. height: math.unit(2, "meters"),
  58681. weight: math.unit(120, "kg"),
  58682. name: "Back",
  58683. image: {
  58684. source: "./media/characters/gilirian/back.svg",
  58685. extra: 815/745,
  58686. bottom: 15/830
  58687. }
  58688. },
  58689. frontNsfw: {
  58690. height: math.unit(2, "meters"),
  58691. weight: math.unit(120, "kg"),
  58692. name: "Front (NSFW)",
  58693. image: {
  58694. source: "./media/characters/gilirian/front-nsfw.svg",
  58695. extra: 805/737,
  58696. bottom: 13/818
  58697. }
  58698. },
  58699. sideNsfw: {
  58700. height: math.unit(2, "meters"),
  58701. weight: math.unit(120, "kg"),
  58702. name: "Side (NSFW)",
  58703. image: {
  58704. source: "./media/characters/gilirian/side-nsfw.svg",
  58705. extra: 810/746,
  58706. bottom: 6/816
  58707. }
  58708. },
  58709. },
  58710. [
  58711. {
  58712. name: "Incognito",
  58713. height: math.unit(2, "meters"),
  58714. default: true
  58715. },
  58716. {
  58717. name: "Macro",
  58718. height: math.unit(250, "meters")
  58719. },
  58720. {
  58721. name: "Big Macro",
  58722. height: math.unit(1500, "meters")
  58723. },
  58724. {
  58725. name: "Mega",
  58726. height: math.unit(40, "km")
  58727. },
  58728. {
  58729. name: "Giga",
  58730. height: math.unit(300, "km")
  58731. },
  58732. {
  58733. name: "Extra Giga",
  58734. height: math.unit(5000, "km")
  58735. },
  58736. {
  58737. name: "Small Terra",
  58738. height: math.unit(10e3, "km")
  58739. },
  58740. {
  58741. name: "Terra",
  58742. height: math.unit(3e5, "km")
  58743. },
  58744. {
  58745. name: "Galactic",
  58746. height: math.unit(369950, "lightyears")
  58747. },
  58748. ]
  58749. ))
  58750. characterMakers.push(() => makeCharacter(
  58751. { name: "Tarken", species: ["t-rex", "kaiju", "deity"], tags: ["anthro"] },
  58752. {
  58753. front: {
  58754. height: math.unit(2.5, "meters"),
  58755. weight: math.unit(230, "lb"),
  58756. name: "Front",
  58757. image: {
  58758. source: "./media/characters/tarken/front.svg",
  58759. extra: 764/720,
  58760. bottom: 49/813
  58761. }
  58762. },
  58763. back: {
  58764. height: math.unit(2.5, "meters"),
  58765. weight: math.unit(230, "lb"),
  58766. name: "Back",
  58767. image: {
  58768. source: "./media/characters/tarken/back.svg",
  58769. extra: 756/720,
  58770. bottom: 35/791
  58771. }
  58772. },
  58773. frontNsfw: {
  58774. height: math.unit(2.5, "meters"),
  58775. weight: math.unit(230, "lb"),
  58776. name: "Front (NSFW)",
  58777. image: {
  58778. source: "./media/characters/tarken/front-nsfw.svg",
  58779. extra: 764/720,
  58780. bottom: 49/813
  58781. }
  58782. },
  58783. backNsfw: {
  58784. height: math.unit(2.5, "meters"),
  58785. weight: math.unit(230, "lb"),
  58786. name: "Back (NSFW)",
  58787. image: {
  58788. source: "./media/characters/tarken/back-nsfw.svg",
  58789. extra: 756/720,
  58790. bottom: 35/791
  58791. }
  58792. },
  58793. head: {
  58794. height: math.unit(2.22, "feet"),
  58795. name: "Head",
  58796. image: {
  58797. source: "./media/characters/tarken/head.svg"
  58798. }
  58799. },
  58800. tail: {
  58801. height: math.unit(5.25, "feet"),
  58802. name: "Tail",
  58803. image: {
  58804. source: "./media/characters/tarken/tail.svg"
  58805. }
  58806. },
  58807. dick: {
  58808. height: math.unit(1.95, "feet"),
  58809. name: "Dick",
  58810. image: {
  58811. source: "./media/characters/tarken/dick.svg"
  58812. }
  58813. },
  58814. hand: {
  58815. height: math.unit(1.78, "feet"),
  58816. name: "Hand",
  58817. image: {
  58818. source: "./media/characters/tarken/hand.svg"
  58819. }
  58820. },
  58821. beam: {
  58822. height: math.unit(1.5, "feet"),
  58823. name: "Beam",
  58824. image: {
  58825. source: "./media/characters/tarken/beam.svg"
  58826. }
  58827. },
  58828. },
  58829. [
  58830. {
  58831. name: "Original Size",
  58832. height: math.unit(2.5, "meters")
  58833. },
  58834. {
  58835. name: "Macro",
  58836. height: math.unit(150, "meters"),
  58837. default: true
  58838. },
  58839. {
  58840. name: "Macro+",
  58841. height: math.unit(300, "meters")
  58842. },
  58843. {
  58844. name: "Mega",
  58845. height: math.unit(2, "km")
  58846. },
  58847. {
  58848. name: "Mega+",
  58849. height: math.unit(35, "km")
  58850. },
  58851.  {
  58852. name: "Mega++",
  58853. height: math.unit(60, "km")
  58854. },
  58855. {
  58856. name: "Giga",
  58857. height: math.unit(200, "km")
  58858. },
  58859. {
  58860. name: "Giga+",
  58861. height: math.unit(2500, "km")
  58862. },
  58863. {
  58864. name: "Giga++",
  58865. height: math.unit(6600, "km")
  58866. },
  58867. {
  58868. name: "Terra",
  58869. height: math.unit(20000, "km")
  58870. },
  58871. {
  58872. name: "Terra+",
  58873. height: math.unit(300000, "km")
  58874. },
  58875. ]
  58876. ))
  58877. characterMakers.push(() => makeCharacter(
  58878. { name: "Otreus", species: ["magpie", "hippogriff", "deity"], tags: ["anthro"] },
  58879. {
  58880. magpie_dressed: {
  58881. height: math.unit(1.7, "meters"),
  58882. weight: math.unit(70, "kg"),
  58883. name: "Dressed",
  58884. image: {
  58885. source: "./media/characters/otreus/magpie-dressed.svg",
  58886. extra: 691/672,
  58887. bottom: 116/807
  58888. },
  58889. form: "magpie",
  58890. default: true
  58891. },
  58892. magpie_nude: {
  58893. height: math.unit(1.7, "meters"),
  58894. weight: math.unit(70, "kg"),
  58895. name: "Nude",
  58896. image: {
  58897. source: "./media/characters/otreus/magpie-nude.svg",
  58898. extra: 691/672,
  58899. bottom: 116/807
  58900. },
  58901. form: "magpie",
  58902. },
  58903. magpie_dressedLewd: {
  58904. height: math.unit(1.7, "meters"),
  58905. weight: math.unit(70, "kg"),
  58906. name: "Dressed (Lewd)",
  58907. image: {
  58908. source: "./media/characters/otreus/magpie-dressed-lewd.svg",
  58909. extra: 691/672,
  58910. bottom: 116/807
  58911. },
  58912. form: "magpie",
  58913. },
  58914. magpie_nudeLewd: {
  58915. height: math.unit(1.7, "meters"),
  58916. weight: math.unit(70, "kg"),
  58917. name: "Nude (Lewd)",
  58918. image: {
  58919. source: "./media/characters/otreus/magpie-nude-lewd.svg",
  58920. extra: 691/672,
  58921. bottom: 116/807
  58922. },
  58923. form: "magpie",
  58924. },
  58925. magpie_leftFoot: {
  58926. height: math.unit(1.58, "feet"),
  58927. name: "Left Foot",
  58928. image: {
  58929. source: "./media/characters/otreus/magpie-left-foot.svg"
  58930. },
  58931. form: "magpie",
  58932. },
  58933. magpie_rightFoot: {
  58934. height: math.unit(1.58, "feet"),
  58935. name: "Right Foot",
  58936. image: {
  58937. source: "./media/characters/otreus/magpie-right-foot.svg"
  58938. },
  58939. form: "magpie",
  58940. },
  58941. magpie_wingspan: {
  58942. height: math.unit(2, "meters"),
  58943. weight: math.unit(70, "kg"),
  58944. name: "Wingspan",
  58945. image: {
  58946. source: "./media/characters/otreus/magpie-wingspan.svg"
  58947. },
  58948. extraAttributes: {
  58949. "wingspan": {
  58950. name: "Wingspan",
  58951. power: 1,
  58952. type: "length",
  58953. base: math.unit(3.35, "meters")
  58954. },
  58955. },
  58956. form: "magpie",
  58957. },
  58958. hippogriff_dressed: {
  58959. height: math.unit(1.7, "meters"),
  58960. weight: math.unit(70, "kg"),
  58961. name: "Dressed",
  58962. image: {
  58963. source: "./media/characters/otreus/hippogriff-dressed.svg",
  58964. extra: 710/689,
  58965. bottom: 67/777
  58966. },
  58967. form: "hippogriff",
  58968. default: true
  58969. },
  58970. hippogriff_nude: {
  58971. height: math.unit(1.7, "meters"),
  58972. weight: math.unit(70, "kg"),
  58973. name: "Nude",
  58974. image: {
  58975. source: "./media/characters/otreus/hippogriff-nude.svg",
  58976. extra: 710/689,
  58977. bottom: 67/777
  58978. },
  58979. form: "hippogriff",
  58980. },
  58981. hippogriff_dressedLewd: {
  58982. height: math.unit(1.7, "meters"),
  58983. weight: math.unit(70, "kg"),
  58984. name: "Dressed (Lewd)",
  58985. image: {
  58986. source: "./media/characters/otreus/hippogriff-dressed-lewd.svg",
  58987. extra: 710/689,
  58988. bottom: 67/777
  58989. },
  58990. form: "hippogriff",
  58991. },
  58992. hippogriff_nudeLewd: {
  58993. height: math.unit(1.7, "meters"),
  58994. weight: math.unit(70, "kg"),
  58995. name: "Nude (Lewd)",
  58996. image: {
  58997. source: "./media/characters/otreus/hippogriff-nude-lewd.svg",
  58998. extra: 710/689,
  58999. bottom: 67/777
  59000. },
  59001. form: "hippogriff",
  59002. },
  59003. },
  59004. [
  59005. {
  59006. name: "Original Size",
  59007. height: math.unit(1.7, "meters"),
  59008. allForms: true
  59009. },
  59010. {
  59011. name: "Incognito Size",
  59012. height: math.unit(2, "meters"),
  59013. allForms: true
  59014. },
  59015. {
  59016. name: "Mega",
  59017. height: math.unit(2, "km"),
  59018. allForms: true
  59019. },
  59020. {
  59021. name: "Mega+",
  59022. height: math.unit(40, "km"),
  59023. allForms: true
  59024. },
  59025. {
  59026. name: "Giga",
  59027. height: math.unit(250, "km"),
  59028. allForms: true
  59029. },
  59030. {
  59031. name: "Giga+",
  59032. height: math.unit(3000, "km"),
  59033. allForms: true
  59034. },
  59035. {
  59036. name: "Terra",
  59037. height: math.unit(20000, "km"),
  59038. allForms: true
  59039. },
  59040. {
  59041. name: "Solar (Home Size)",
  59042. height: math.unit(3e6, "km"),
  59043. allForms: true,
  59044. default: true
  59045. },
  59046. ],
  59047. {
  59048. "magpie": {
  59049. name: "Magpie",
  59050. default: true
  59051. },
  59052. "hippogriff": {
  59053. name: "Hippogriff",
  59054. },
  59055. }
  59056. ))
  59057. characterMakers.push(() => makeCharacter(
  59058. { name: "Thalia", species: ["flying-fox", "fox", "deity"], tags: ["anthro"] },
  59059. {
  59060. frontDressed: {
  59061. height: math.unit(1.8, "meters"),
  59062. weight: math.unit(90, "kg"),
  59063. name: "Front (Dressed)",
  59064. image: {
  59065. source: "./media/characters/thalia/front-dressed.svg",
  59066. extra: 478/402,
  59067. bottom: 55/533
  59068. }
  59069. },
  59070. backDressed: {
  59071. height: math.unit(1.8, "meters"),
  59072. weight: math.unit(90, "kg"),
  59073. name: "Back (Dressed)",
  59074. image: {
  59075. source: "./media/characters/thalia/back-dressed.svg",
  59076. extra: 500/424,
  59077. bottom: 15/515
  59078. }
  59079. },
  59080. frontNude: {
  59081. height: math.unit(1.8, "meters"),
  59082. weight: math.unit(90, "kg"),
  59083. name: "Front (Nude)",
  59084. image: {
  59085. source: "./media/characters/thalia/front-nude.svg",
  59086. extra: 478/402,
  59087. bottom: 55/533
  59088. }
  59089. },
  59090. backNude: {
  59091. height: math.unit(1.8, "meters"),
  59092. weight: math.unit(90, "kg"),
  59093. name: "Back (Nude)",
  59094. image: {
  59095. source: "./media/characters/thalia/back-nude.svg",
  59096. extra: 500/424,
  59097. bottom: 15/515
  59098. }
  59099. },
  59100. },
  59101. [
  59102. {
  59103. name: "Incognito",
  59104. height: math.unit(3, "meters")
  59105. },
  59106. {
  59107. name: "Macro",
  59108. height: math.unit(500, "meters")
  59109. },
  59110. {
  59111. name: "Mega",
  59112. height: math.unit(5, "km")
  59113. },
  59114. {
  59115. name: "Mega+",
  59116. height: math.unit(30, "km")
  59117. },
  59118. {
  59119. name: "Giga",
  59120. height: math.unit(350, "km")
  59121. },
  59122. {
  59123. name: "Giga+",
  59124. height: math.unit(4000, "km")
  59125. },
  59126. {
  59127. name: "Terra",
  59128. height: math.unit(35000, "km")
  59129. },
  59130. {
  59131. name: "Original Size",
  59132. height: math.unit(130000, "km")
  59133. },
  59134. {
  59135. name: "Solar (Home Size)",
  59136. height: math.unit(4e6, "km"),
  59137. default: true
  59138. },
  59139. ]
  59140. ))
  59141. characterMakers.push(() => makeCharacter(
  59142. { name: "Shango", species: ["african-wild-dog", "deity"], tags: ["anthro"] },
  59143. {
  59144. front: {
  59145. height: math.unit(1.8, "meters"),
  59146. weight: math.unit(95, "kg"),
  59147. name: "Front",
  59148. image: {
  59149. source: "./media/characters/shango/front.svg",
  59150. extra: 1925/1774,
  59151. bottom: 67/1992
  59152. }
  59153. },
  59154. back: {
  59155. height: math.unit(1.8, "meters"),
  59156. weight: math.unit(95, "kg"),
  59157. name: "Back",
  59158. image: {
  59159. source: "./media/characters/shango/back.svg",
  59160. extra: 1915/1766,
  59161. bottom: 52/1967
  59162. }
  59163. },
  59164. frontLewd: {
  59165. height: math.unit(1.8, "meters"),
  59166. weight: math.unit(95, "kg"),
  59167. name: "Front (Lewd)",
  59168. image: {
  59169. source: "./media/characters/shango/front-lewd.svg",
  59170. extra: 1925/1774,
  59171. bottom: 67/1992
  59172. }
  59173. },
  59174. backLewd: {
  59175. height: math.unit(1.8, "meters"),
  59176. weight: math.unit(95, "kg"),
  59177. name: "Back (Lewd)",
  59178. image: {
  59179. source: "./media/characters/shango/back-lewd.svg",
  59180. extra: 1915/1766,
  59181. bottom: 52/1967
  59182. }
  59183. },
  59184. maw: {
  59185. height: math.unit(1.64, "feet"),
  59186. name: "Maw",
  59187. image: {
  59188. source: "./media/characters/shango/maw.svg"
  59189. }
  59190. },
  59191. dick: {
  59192. height: math.unit(2.14, "feet"),
  59193. name: "Dick",
  59194. image: {
  59195. source: "./media/characters/shango/dick.svg"
  59196. }
  59197. },
  59198. },
  59199. [
  59200. {
  59201. name: "Incognito",
  59202. height: math.unit(1.8, "meters")
  59203. },
  59204. {
  59205. name: "Home Size",
  59206. height: math.unit(60, "meters"),
  59207. default: true
  59208. },
  59209. {
  59210. name: "Macro",
  59211. height: math.unit(450, "meters")
  59212. },
  59213. {
  59214. name: "Mega",
  59215. height: math.unit(6, "km")
  59216. },
  59217. {
  59218. name: "Mega+",
  59219. height: math.unit(35, "km")
  59220. },
  59221. {
  59222. name: "Giga",
  59223. height: math.unit(500, "km")
  59224. },
  59225. {
  59226. name: "Giga+",
  59227. height: math.unit(5000, "km")
  59228. },
  59229. {
  59230. name: "Terra",
  59231. height: math.unit(60000, "km")
  59232. },
  59233. {
  59234. name: "Terra+",
  59235. height: math.unit(400000, "km")
  59236. },
  59237. ]
  59238. ))
  59239. characterMakers.push(() => makeCharacter(
  59240. { name: "Osiris (Gryphon)", species: ["gryphon", "snow-leopard", "peregrine-falcon", "deity"], tags: ["anthro"] },
  59241. {
  59242. front: {
  59243. height: math.unit(2, "meters"),
  59244. weight: math.unit(95, "kg"),
  59245. name: "Front",
  59246. image: {
  59247. source: "./media/characters/osiris-gryphon/front.svg",
  59248. extra: 1508/1313,
  59249. bottom: 87/1595
  59250. }
  59251. },
  59252. back: {
  59253. height: math.unit(2, "meters"),
  59254. weight: math.unit(95, "kg"),
  59255. name: "Back",
  59256. image: {
  59257. source: "./media/characters/osiris-gryphon/back.svg",
  59258. extra: 1436/1309,
  59259. bottom: 64/1500
  59260. }
  59261. },
  59262. frontLewd: {
  59263. height: math.unit(2, "meters"),
  59264. weight: math.unit(95, "kg"),
  59265. name: "Front-lewd",
  59266. image: {
  59267. source: "./media/characters/osiris-gryphon/front-lewd.svg",
  59268. extra: 1508/1313,
  59269. bottom: 87/1595
  59270. }
  59271. },
  59272. wing: {
  59273. height: math.unit(6.3333, "feet"),
  59274. name: "Wing",
  59275. image: {
  59276. source: "./media/characters/osiris-gryphon/wing.svg"
  59277. }
  59278. },
  59279. },
  59280. [
  59281. {
  59282. name: "Incognito",
  59283. height: math.unit(2, "meters")
  59284. },
  59285. {
  59286. name: "Home Size",
  59287. height: math.unit(30, "meters"),
  59288. default: true
  59289. },
  59290. {
  59291. name: "Macro",
  59292. height: math.unit(100, "meters")
  59293. },
  59294. {
  59295. name: "Macro+",
  59296. height: math.unit(350, "meters")
  59297. },
  59298. {
  59299. name: "Mega",
  59300. height: math.unit(40, "km")
  59301. },
  59302. {
  59303. name: "Giga",
  59304. height: math.unit(300, "km")
  59305. },
  59306. {
  59307. name: "Giga+",
  59308. height: math.unit(2000, "km")
  59309. },
  59310. {
  59311. name: "Terra",
  59312. height: math.unit(30000, "km")
  59313. },
  59314. ]
  59315. ))
  59316. characterMakers.push(() => makeCharacter(
  59317. { name: "Atlas (Dragon)", species: ["dragon", "deity"], tags: ["anthro"] },
  59318. {
  59319. front: {
  59320. height: math.unit(2.5, "meters"),
  59321. weight: math.unit(200, "kg"),
  59322. name: "Front",
  59323. image: {
  59324. source: "./media/characters/atlas-dragon/front.svg",
  59325. extra: 745/462,
  59326. bottom: 36/781
  59327. }
  59328. },
  59329. back: {
  59330. height: math.unit(2.5, "meters"),
  59331. weight: math.unit(200, "kg"),
  59332. name: "Back",
  59333. image: {
  59334. source: "./media/characters/atlas-dragon/back.svg",
  59335. extra: 848/822,
  59336. bottom: 57/905
  59337. }
  59338. },
  59339. frontLewd: {
  59340. height: math.unit(2.5, "meters"),
  59341. weight: math.unit(200, "kg"),
  59342. name: "Front (Lewd)",
  59343. image: {
  59344. source: "./media/characters/atlas-dragon/front-lewd.svg",
  59345. extra: 745/462,
  59346. bottom: 36/781
  59347. }
  59348. },
  59349. backLewd: {
  59350. height: math.unit(2.5, "meters"),
  59351. weight: math.unit(200, "kg"),
  59352. name: "Back (Lewd)",
  59353. image: {
  59354. source: "./media/characters/atlas-dragon/back-lewd.svg",
  59355. extra: 848/822,
  59356. bottom: 57/905
  59357. }
  59358. },
  59359. },
  59360. [
  59361. {
  59362. name: "Incognito",
  59363. height: math.unit(2.5, "meters")
  59364. },
  59365. {
  59366. name: "Small Macro",
  59367. height: math.unit(50, "meters")
  59368. },
  59369. {
  59370. name: "Macro",
  59371. height: math.unit(350, "meters")
  59372. },
  59373. {
  59374. name: "Mega",
  59375. height: math.unit(5.5, "kilometers")
  59376. },
  59377. {
  59378. name: "Mega+",
  59379. height: math.unit(50, "km")
  59380. },
  59381. {
  59382. name: "Giga",
  59383. height: math.unit(350, "km")
  59384. },
  59385. {
  59386. name: "Giga+",
  59387. height: math.unit(2000, "km")
  59388. },
  59389. {
  59390. name: "Giga++",
  59391. height: math.unit(6500, "km")
  59392. },
  59393. {
  59394. name: "Terra",
  59395. height: math.unit(30000, "km")
  59396. },
  59397. {
  59398. name: "Terra+",
  59399. height: math.unit(250000, "km")
  59400. },
  59401. {
  59402. name: "True Size",
  59403. height: math.unit(100, "multiverses"),
  59404. default: true
  59405. },
  59406. ]
  59407. ))
  59408. characterMakers.push(() => makeCharacter(
  59409. { name: "Chey", species: ["coyote", "deity"], tags: ["anthro"] },
  59410. {
  59411. front: {
  59412. height: math.unit(1.8, "m"),
  59413. weight: math.unit(120, "kg"),
  59414. name: "Front",
  59415. image: {
  59416. source: "./media/characters/chey/front.svg",
  59417. extra: 1359/1270,
  59418. bottom: 18/1377
  59419. }
  59420. },
  59421. arm: {
  59422. height: math.unit(2.05, "feet"),
  59423. name: "Arm",
  59424. image: {
  59425. source: "./media/characters/chey/arm.svg"
  59426. }
  59427. },
  59428. head: {
  59429. height: math.unit(1.89, "feet"),
  59430. name: "Head",
  59431. image: {
  59432. source: "./media/characters/chey/head.svg"
  59433. }
  59434. },
  59435. },
  59436. [
  59437. {
  59438. name: "Original Size",
  59439. height: math.unit(5, "cm")
  59440. },
  59441. {
  59442. name: "Incognito Size",
  59443. height: math.unit(2.4, "m")
  59444. },
  59445. {
  59446. name: "Home Size",
  59447. height: math.unit(200, "meters"),
  59448. default: true
  59449. },
  59450. {
  59451. name: "Mega",
  59452. height: math.unit(2, "km")
  59453. },
  59454. {
  59455. name: "Giga (Preferred Size)",
  59456. height: math.unit(2000, "km")
  59457. },
  59458. {
  59459. name: "Giga+",
  59460. height: math.unit(6000, "km")
  59461. },
  59462. {
  59463. name: "Terra",
  59464. height: math.unit(17000, "km")
  59465. },
  59466. {
  59467. name: "Terra+",
  59468. height: math.unit(75000, "km")
  59469. },
  59470. {
  59471. name: "Terra++",
  59472. height: math.unit(225000, "km")
  59473. },
  59474. ]
  59475. ))
  59476. characterMakers.push(() => makeCharacter(
  59477. { name: "Ragnarok", species: ["suicune"], tags: ["taur"] },
  59478. {
  59479. side: {
  59480. height: math.unit(7.8, "meters"),
  59481. name: "Side",
  59482. image: {
  59483. source: "./media/characters/ragnarok/side.svg",
  59484. extra: 725/621,
  59485. bottom: 72/797
  59486. }
  59487. },
  59488. },
  59489. [
  59490. {
  59491. name: "Normal",
  59492. height: math.unit(7.8, "meters"),
  59493. default: true
  59494. },
  59495. ]
  59496. ))
  59497. characterMakers.push(() => makeCharacter(
  59498. { name: "Nima", species: ["hyena", "shark", "deity"], tags: ["anthro"] },
  59499. {
  59500. hyena_front: {
  59501. height: math.unit(2.1, "meters"),
  59502. weight: math.unit(110, "kg"),
  59503. name: "Front",
  59504. image: {
  59505. source: "./media/characters/nima/hyena-front.svg",
  59506. extra: 1904/1796,
  59507. bottom: 67/1971
  59508. },
  59509. form: "hyena",
  59510. },
  59511. hyena_back: {
  59512. height: math.unit(2.1, "meters"),
  59513. weight: math.unit(110, "kg"),
  59514. name: "Back",
  59515. image: {
  59516. source: "./media/characters/nima/hyena-back.svg",
  59517. extra: 1964/1884,
  59518. bottom: 35/1999
  59519. },
  59520. form: "hyena",
  59521. },
  59522. shark_front: {
  59523. height: math.unit(1.95, "meters"),
  59524. weight: math.unit(110, "kg"),
  59525. name: "Front",
  59526. image: {
  59527. source: "./media/characters/nima/shark-front.svg",
  59528. extra: 2238/2013,
  59529. bottom: 0/223
  59530. },
  59531. form: "shark",
  59532. },
  59533. paw: {
  59534. height: math.unit(1, "feet"),
  59535. name: "Paw",
  59536. image: {
  59537. source: "./media/characters/nima/paw.svg"
  59538. }
  59539. },
  59540. circlet: {
  59541. height: math.unit(0.3, "feet"),
  59542. name: "Circlet",
  59543. image: {
  59544. source: "./media/characters/nima/circlet.svg"
  59545. }
  59546. },
  59547. necklace: {
  59548. height: math.unit(1.2, "feet"),
  59549. name: "Necklace",
  59550. image: {
  59551. source: "./media/characters/nima/necklace.svg"
  59552. }
  59553. },
  59554. bracelet: {
  59555. height: math.unit(0.51, "feet"),
  59556. name: "Bracelet",
  59557. image: {
  59558. source: "./media/characters/nima/bracelet.svg"
  59559. }
  59560. },
  59561. armband: {
  59562. height: math.unit(1.3, "feet"),
  59563. name: "Armband",
  59564. image: {
  59565. source: "./media/characters/nima/armband.svg"
  59566. }
  59567. },
  59568. },
  59569. [
  59570. {
  59571. name: "Incognito",
  59572. height: math.unit(2.1, "meters"),
  59573. allForms: true
  59574. },
  59575. {
  59576. name: "Small Macro",
  59577. height: math.unit(50, "meters"),
  59578. allForms: true
  59579. },
  59580. {
  59581. name: "Macro",
  59582. height: math.unit(200, "meters"),
  59583. allForms: true
  59584. },
  59585. {
  59586. name: "Mega",
  59587. height: math.unit(2.5, "km"),
  59588. allForms: true
  59589. },
  59590. {
  59591. name: "Mega+",
  59592. height: math.unit(30, "km"),
  59593. allForms: true
  59594. },
  59595. {
  59596. name: "Giga (Home Size)",
  59597. height: math.unit(400, "km"),
  59598. allForms: true,
  59599. default: true
  59600. },
  59601. {
  59602. name: "Giga+",
  59603. height: math.unit(2500, "km"),
  59604. allForms: true
  59605. },
  59606. {
  59607. name: "Giga++",
  59608. height: math.unit(8000, "km"),
  59609. allForms: true
  59610. },
  59611. {
  59612. name: "Terra",
  59613. height: math.unit(20000, "km"),
  59614. allForms: true
  59615. },
  59616. {
  59617. name: "Terra+",
  59618. height: math.unit(70000, "km"),
  59619. allForms: true
  59620. },
  59621. {
  59622. name: "Terra++",
  59623. height: math.unit(600000, "km"),
  59624. allForms: true
  59625. },
  59626. {
  59627. name: "Galactic",
  59628. height: math.unit(40, "galaxies"),
  59629. allForms: true
  59630. },
  59631. {
  59632. name: "Universal",
  59633. height: math.unit(40, "universes"),
  59634. allForms: true
  59635. },
  59636. ],
  59637. {
  59638. "hyena": {
  59639. name: "Hyena",
  59640. default: true
  59641. },
  59642. "shark": {
  59643. name: "Shark",
  59644. },
  59645. }
  59646. ))
  59647. characterMakers.push(() => makeCharacter(
  59648. { name: "Adelaide", species: ["deinonychus"], tags: ["anthro", "feral"] },
  59649. {
  59650. anthro_front: {
  59651. height: math.unit(1.5, "meters"),
  59652. name: "Front",
  59653. image: {
  59654. source: "./media/characters/adelaide/anthro-front.svg",
  59655. extra: 860/783,
  59656. bottom: 60/920
  59657. },
  59658. form: "anthro",
  59659. default: true
  59660. },
  59661. hand: {
  59662. height: math.unit(0.65, "feet"),
  59663. name: "Hand",
  59664. image: {
  59665. source: "./media/characters/adelaide/hand.svg"
  59666. },
  59667. form: "anthro"
  59668. },
  59669. foot: {
  59670. height: math.unit(1.38 * 259 / 314, "feet"),
  59671. name: "Foot",
  59672. image: {
  59673. source: "./media/characters/adelaide/foot.svg",
  59674. extra: 259/259,
  59675. bottom: 55/314
  59676. },
  59677. form: "anthro"
  59678. },
  59679. feather: {
  59680. height: math.unit(0.85, "feet"),
  59681. name: "Feather",
  59682. image: {
  59683. source: "./media/characters/adelaide/feather.svg"
  59684. },
  59685. form: "anthro"
  59686. },
  59687. feral_side: {
  59688. height: math.unit(1, "meters"),
  59689. name: "Side",
  59690. image: {
  59691. source: "./media/characters/adelaide/feral-side.svg",
  59692. extra: 550/467,
  59693. bottom: 37/587
  59694. },
  59695. form: "feral",
  59696. default: true
  59697. },
  59698. feral_hand: {
  59699. height: math.unit(0.58, "feet"),
  59700. name: "Hand",
  59701. image: {
  59702. source: "./media/characters/adelaide/hand.svg"
  59703. },
  59704. form: "feral"
  59705. },
  59706. feral_foot: {
  59707. height: math.unit(1.2 * 259 / 314, "feet"),
  59708. name: "Foot",
  59709. image: {
  59710. source: "./media/characters/adelaide/foot.svg",
  59711. extra: 259/259,
  59712. bottom: 55/314
  59713. },
  59714. form: "feral"
  59715. },
  59716. feral_feather: {
  59717. height: math.unit(0.63, "feet"),
  59718. name: "Feather",
  59719. image: {
  59720. source: "./media/characters/adelaide/feather.svg"
  59721. },
  59722. form: "feral"
  59723. },
  59724. },
  59725. [
  59726. {
  59727. name: "Normal",
  59728. height: math.unit(1.5, "meters"),
  59729. form: "anthro",
  59730. default: true
  59731. },
  59732. {
  59733. name: "Normal",
  59734. height: math.unit(1, "meters"),
  59735. form: "feral",
  59736. default: true
  59737. },
  59738. ],
  59739. {
  59740. "anthro": {
  59741. name: "Anthro",
  59742. default: true
  59743. },
  59744. "feral": {
  59745. name: "Feral",
  59746. },
  59747. }
  59748. ))
  59749. characterMakers.push(() => makeCharacter(
  59750. { name: "Goa", species: ["chocobo"], tags: ["taur"] },
  59751. {
  59752. front: {
  59753. height: math.unit(2.5, "meters"),
  59754. name: "Front",
  59755. image: {
  59756. source: "./media/characters/goa/front.svg",
  59757. extra: 1109/1013,
  59758. bottom: 150/1259
  59759. }
  59760. },
  59761. },
  59762. [
  59763. {
  59764. name: "Normal",
  59765. height: math.unit(2.5, "meters"),
  59766. default: true
  59767. },
  59768. ]
  59769. ))
  59770. characterMakers.push(() => makeCharacter(
  59771. { name: "Kiki (Weavile)", species: ["weavile"], tags: ["anthro"] },
  59772. {
  59773. front: {
  59774. height: math.unit(2, "meters"),
  59775. weight: math.unit(100, "kg"),
  59776. name: "Front",
  59777. image: {
  59778. source: "./media/characters/kiki-weavile/front.svg",
  59779. extra: 357/332,
  59780. bottom: 60/417
  59781. }
  59782. },
  59783. },
  59784. [
  59785. {
  59786. name: "Normal",
  59787. height: math.unit(2, "meters"),
  59788. default: true
  59789. },
  59790. ]
  59791. ))
  59792. characterMakers.push(() => makeCharacter(
  59793. { name: "Liza", species: ["stilio"], tags: ["taur"] },
  59794. {
  59795. side: {
  59796. height: math.unit(1.6, "meters"),
  59797. name: "Side",
  59798. image: {
  59799. source: "./media/characters/liza/side.svg",
  59800. extra: 943/915,
  59801. bottom: 72/1015
  59802. }
  59803. },
  59804. },
  59805. [
  59806. {
  59807. name: "Normal",
  59808. height: math.unit(1.6, "meters"),
  59809. default: true
  59810. },
  59811. ]
  59812. ))
  59813. characterMakers.push(() => makeCharacter(
  59814. { name: "Persephone Sweetbreath", species: ["hyena", "gnoll"], tags: ["taur"] },
  59815. {
  59816. side: {
  59817. height: math.unit(2.5, "meters"),
  59818. preyCapacity: math.unit(1, "people"),
  59819. name: "Side",
  59820. image: {
  59821. source: "./media/characters/persephone-sweetbreath/side.svg",
  59822. extra: 796/700,
  59823. bottom: 44/840
  59824. }
  59825. },
  59826. sideVore: {
  59827. height: math.unit(2.5, "meters"),
  59828. preyCapacity: math.unit(1, "people"),
  59829. name: "Side (Full)",
  59830. image: {
  59831. source: "./media/characters/persephone-sweetbreath/side-vore.svg",
  59832. extra: 796/700,
  59833. bottom: 44/840
  59834. }
  59835. },
  59836. },
  59837. [
  59838. {
  59839. name: "Normal",
  59840. height: math.unit(2.5, "meters"),
  59841. default: true
  59842. },
  59843. ]
  59844. ))
  59845. characterMakers.push(() => makeCharacter(
  59846. { name: "Pierce", species: ["dragon"], tags: ["feral"] },
  59847. {
  59848. front: {
  59849. height: math.unit(32, "meters"),
  59850. name: "Front",
  59851. image: {
  59852. source: "./media/characters/pierce/front.svg",
  59853. extra: 1695/1475,
  59854. bottom: 185/1880
  59855. }
  59856. },
  59857. side: {
  59858. height: math.unit(32, "meters"),
  59859. name: "Side",
  59860. image: {
  59861. source: "./media/characters/pierce/side.svg",
  59862. extra: 974/859,
  59863. bottom: 43/1017
  59864. }
  59865. },
  59866. frontWingless: {
  59867. height: math.unit(32, "meters"),
  59868. name: "Front (Wingless)",
  59869. image: {
  59870. source: "./media/characters/pierce/front-wingless.svg",
  59871. extra: 1695/1475,
  59872. bottom: 185/1880
  59873. }
  59874. },
  59875. sideWingless: {
  59876. height: math.unit(32, "meters"),
  59877. name: "Side (Wingless)",
  59878. image: {
  59879. source: "./media/characters/pierce/side-wingless.svg",
  59880. extra: 974/859,
  59881. bottom: 43/1017
  59882. }
  59883. },
  59884. maw: {
  59885. height: math.unit(19.3, "meters"),
  59886. name: "Maw",
  59887. image: {
  59888. source: "./media/characters/pierce/maw.svg"
  59889. }
  59890. },
  59891. },
  59892. [
  59893. {
  59894. name: "Small",
  59895. height: math.unit(8.5, "meters")
  59896. },
  59897. {
  59898. name: "Normal",
  59899. height: math.unit(32, "meters"),
  59900. default: true
  59901. },
  59902. ]
  59903. ))
  59904. characterMakers.push(() => makeCharacter(
  59905. { name: "Shira", species: ["cobra", "deity", "dragon"], tags: ["anthro"] },
  59906. {
  59907. front: {
  59908. height: math.unit(2.3, "meters"),
  59909. weight: math.unit(165, "kg"),
  59910. name: "Front",
  59911. image: {
  59912. source: "./media/characters/shira/front.svg",
  59913. extra: 924/919,
  59914. bottom: 17/941
  59915. },
  59916. form: "cobra",
  59917. default: true
  59918. },
  59919. back: {
  59920. height: math.unit(2.3, "meters"),
  59921. weight: math.unit(165, "kg"),
  59922. name: "Back",
  59923. image: {
  59924. source: "./media/characters/shira/back.svg",
  59925. extra: 928/922,
  59926. bottom: 18/946
  59927. },
  59928. form: "cobra"
  59929. },
  59930. frontLewd: {
  59931. height: math.unit(2.3, "meters"),
  59932. weight: math.unit(165, "kg"),
  59933. name: "Front (Lewd)",
  59934. image: {
  59935. source: "./media/characters/shira/front-lewd.svg",
  59936. extra: 924/919,
  59937. bottom: 17/941
  59938. },
  59939. form: "cobra"
  59940. },
  59941. backLewd: {
  59942. height: math.unit(2.3, "meters"),
  59943. weight: math.unit(165, "kg"),
  59944. name: "Back (Lewd)",
  59945. image: {
  59946. source: "./media/characters/shira/back-lewd.svg",
  59947. extra: 928/922,
  59948. bottom: 18/946
  59949. },
  59950. form: "cobra"
  59951. },
  59952. maw: {
  59953. height: math.unit(1.14, "feet"),
  59954. name: "Maw",
  59955. image: {
  59956. source: "./media/characters/shira/maw.svg"
  59957. },
  59958. form: "cobra"
  59959. },
  59960. magma_front: {
  59961. height: math.unit(2.3, "meters"),
  59962. weight: math.unit(165, "kg"),
  59963. name: "Front",
  59964. image: {
  59965. source: "./media/characters/shira/magma-front.svg",
  59966. extra: 1870/1693,
  59967. bottom: 24/1894
  59968. },
  59969. form: "magma",
  59970. },
  59971. magma_back: {
  59972. height: math.unit(2.3, "meters"),
  59973. weight: math.unit(165, "kg"),
  59974. name: "Back",
  59975. image: {
  59976. source: "./media/characters/shira/magma-back.svg",
  59977. extra: 1918/1756,
  59978. bottom: 46/1964
  59979. },
  59980. form: "magma",
  59981. },
  59982. },
  59983. [
  59984. {
  59985. name: "Incognito",
  59986. height: math.unit(2.3, "meters"),
  59987. allForms: true
  59988. },
  59989. {
  59990. name: "Home Size",
  59991. height: math.unit(150, "meters"),
  59992. default: true,
  59993. allForms: true
  59994. },
  59995. {
  59996. name: "Macro",
  59997. height: math.unit(2, "km"),
  59998. allForms: true
  59999. },
  60000. {
  60001. name: "Mega",
  60002. height: math.unit(30, "km"),
  60003. allForms: true
  60004. },
  60005. {
  60006. name: "Giga",
  60007. height: math.unit(450, "km"),
  60008. allForms: true
  60009. },
  60010. {
  60011. name: "Giga+",
  60012. height: math.unit(3000, "km"),
  60013. allForms: true
  60014. },
  60015. {
  60016. name: "Giga++",
  60017. height: math.unit(6000, "km"),
  60018. allForms: true
  60019. },
  60020. {
  60021. name: "Terra",
  60022. height: math.unit(80000, "km"),
  60023. allForms: true
  60024. },
  60025. {
  60026. name: "Terra+",
  60027. height: math.unit(350000, "km"),
  60028. allForms: true
  60029. },
  60030. {
  60031. name: "Solar",
  60032. height: math.unit(1e6, "km"),
  60033. allForms: true
  60034. },
  60035. ],
  60036. {
  60037. "cobra": {
  60038. name: "Cobra",
  60039. default: true
  60040. },
  60041. "magma": {
  60042. name: "Magma Dragon",
  60043. },
  60044. }
  60045. ))
  60046. characterMakers.push(() => makeCharacter(
  60047. { name: "Daxerios", species: ["wolf", "cerberus", "deity"], tags: ["anthro"] },
  60048. {
  60049. front: {
  60050. height: math.unit(2, "meters"),
  60051. weight: math.unit(160, "kg"),
  60052. name: "Front",
  60053. image: {
  60054. source: "./media/characters/daxerios/front.svg",
  60055. extra: 1334/1277,
  60056. bottom: 45/1379
  60057. }
  60058. },
  60059. frontLewd: {
  60060. height: math.unit(2, "meters"),
  60061. weight: math.unit(160, "kg"),
  60062. name: "Front (Lewd)",
  60063. image: {
  60064. source: "./media/characters/daxerios/front-lewd.svg",
  60065. extra: 1334/1277,
  60066. bottom: 45/1379
  60067. }
  60068. },
  60069. dick: {
  60070. height: math.unit(2.35, "feet"),
  60071. name: "Dick",
  60072. image: {
  60073. source: "./media/characters/daxerios/dick.svg"
  60074. }
  60075. },
  60076. },
  60077. [
  60078. {
  60079. name: "\"Small\"",
  60080. height: math.unit(5, "meters")
  60081. },
  60082. {
  60083. name: "Original Size",
  60084. height: math.unit(500, "meters"),
  60085. default: true
  60086. },
  60087. {
  60088. name: "Mega",
  60089. height: math.unit(2, "km")
  60090. },
  60091. {
  60092. name: "Mega+",
  60093. height: math.unit(35, "km")
  60094. },
  60095. {
  60096. name: "Giga",
  60097. height: math.unit(250, "km")
  60098. },
  60099. {
  60100. name: "Giga+",
  60101. height: math.unit(3000, "km")
  60102. },
  60103. {
  60104. name: "Terra",
  60105. height: math.unit(25000, "km")
  60106. },
  60107. {
  60108. name: "Terra+",
  60109. height: math.unit(300000, "km")
  60110. },
  60111. {
  60112. name: "Solar",
  60113. height: math.unit(1e6, "km")
  60114. },
  60115. ]
  60116. ))
  60117. characterMakers.push(() => makeCharacter(
  60118. { name: "Caveat", species: ["luxray", "plush"], tags: ["anthro"] },
  60119. {
  60120. front: {
  60121. height: math.unit(8 + 4/12, "feet"),
  60122. weight: math.unit(464, "lb"),
  60123. name: "Front",
  60124. image: {
  60125. source: "./media/characters/caveat/front.svg",
  60126. extra: 1861/1678,
  60127. bottom: 40/1901
  60128. }
  60129. },
  60130. },
  60131. [
  60132. {
  60133. name: "Normal",
  60134. height: math.unit(8 + 4/12, "feet"),
  60135. default: true
  60136. },
  60137. ]
  60138. ))
  60139. characterMakers.push(() => makeCharacter(
  60140. { name: "Centbair", species: ["kardox"], tags: ["anthro"] },
  60141. {
  60142. front: {
  60143. height: math.unit(12, "feet"),
  60144. weight: math.unit(1800, "lb"),
  60145. name: "Front",
  60146. image: {
  60147. source: "./media/characters/centbair/front.svg",
  60148. extra: 781/663,
  60149. bottom: 25/806
  60150. }
  60151. },
  60152. frontNsfw: {
  60153. height: math.unit(12, "feet"),
  60154. weight: math.unit(1800, "lb"),
  60155. name: "Front (NSFW)",
  60156. image: {
  60157. source: "./media/characters/centbair/front-nsfw.svg",
  60158. extra: 781/663,
  60159. bottom: 25/806
  60160. }
  60161. },
  60162. back: {
  60163. height: math.unit(12, "feet"),
  60164. weight: math.unit(1800, "lb"),
  60165. name: "Back",
  60166. image: {
  60167. source: "./media/characters/centbair/back.svg",
  60168. extra: 808/761,
  60169. bottom: 19/827
  60170. }
  60171. },
  60172. dick: {
  60173. height: math.unit(6.5, "feet"),
  60174. name: "Dick",
  60175. image: {
  60176. source: "./media/characters/centbair/dick.svg"
  60177. }
  60178. },
  60179. slit: {
  60180. height: math.unit(3.25, "feet"),
  60181. name: "Slit",
  60182. image: {
  60183. source: "./media/characters/centbair/slit.svg"
  60184. }
  60185. },
  60186. },
  60187. [
  60188. {
  60189. name: "Normal",
  60190. height: math.unit(12, "feet"),
  60191. default: true
  60192. },
  60193. ]
  60194. ))
  60195. characterMakers.push(() => makeCharacter(
  60196. { name: "Andy", species: ["tanuki"], tags: ["anthro"] },
  60197. {
  60198. front: {
  60199. height: math.unit(5 + 7/12, "feet"),
  60200. name: "Front",
  60201. image: {
  60202. source: "./media/characters/andy/front.svg",
  60203. extra: 634/588,
  60204. bottom: 36/670
  60205. },
  60206. extraAttributes: {
  60207. "pawLength": {
  60208. name: "Paw Length",
  60209. power: 1,
  60210. type: "length",
  60211. base: math.unit(1, "feet")
  60212. },
  60213. }
  60214. },
  60215. side: {
  60216. height: math.unit(5 + 7/12, "feet"),
  60217. name: "Side",
  60218. image: {
  60219. source: "./media/characters/andy/side.svg",
  60220. extra: 641/596,
  60221. bottom: 34/675
  60222. },
  60223. extraAttributes: {
  60224. "pawLength": {
  60225. name: "Paw Length",
  60226. power: 1,
  60227. type: "length",
  60228. base: math.unit(1, "feet")
  60229. },
  60230. }
  60231. },
  60232. back: {
  60233. height: math.unit(5 + 7/12, "feet"),
  60234. name: "Back",
  60235. image: {
  60236. source: "./media/characters/andy/back.svg",
  60237. extra: 618/583,
  60238. bottom: 39/657
  60239. },
  60240. extraAttributes: {
  60241. "pawLength": {
  60242. name: "Paw Length",
  60243. power: 1,
  60244. type: "length",
  60245. base: math.unit(1, "feet")
  60246. },
  60247. }
  60248. },
  60249. paw: {
  60250. height: math.unit(1.13, "feet"),
  60251. name: "Paw",
  60252. image: {
  60253. source: "./media/characters/andy/paw.svg"
  60254. }
  60255. },
  60256. },
  60257. [
  60258. {
  60259. name: "Micro",
  60260. height: math.unit(4, "inches")
  60261. },
  60262. {
  60263. name: "Normal",
  60264. height: math.unit(5 + 7/12, "feet"),
  60265. default: true
  60266. },
  60267. {
  60268. name: "Macro",
  60269. height: math.unit(390.42, "feet")
  60270. },
  60271. ]
  60272. ))
  60273. characterMakers.push(() => makeCharacter(
  60274. { name: "Vix Titan", species: ["fox", "demon"], tags: ["anthro"] },
  60275. {
  60276. front: {
  60277. height: math.unit(7, "feet"),
  60278. weight: math.unit(250, "lb"),
  60279. name: "Front",
  60280. image: {
  60281. source: "./media/characters/vix-titan/front.svg",
  60282. extra: 460/428,
  60283. bottom: 15/475
  60284. },
  60285. extraAttributes: {
  60286. "pawWidth": {
  60287. name: "Paw Width",
  60288. power: 1,
  60289. type: "length",
  60290. base: math.unit(0.75, "feet")
  60291. },
  60292. }
  60293. },
  60294. },
  60295. [
  60296. {
  60297. name: "Normal",
  60298. height: math.unit(7, "feet"),
  60299. default: true
  60300. },
  60301. {
  60302. name: "Giant",
  60303. height: math.unit(1500, "feet")
  60304. },
  60305. {
  60306. name: "Mega",
  60307. height: math.unit(10, "miles")
  60308. },
  60309. {
  60310. name: "Giga",
  60311. height: math.unit(150, "miles")
  60312. },
  60313. {
  60314. name: "Tera",
  60315. height: math.unit(144000, "miles")
  60316. },
  60317. ]
  60318. ))
  60319. characterMakers.push(() => makeCharacter(
  60320. { name: "Reiku", species: ["dragon"], tags: ["anthro"] },
  60321. {
  60322. front: {
  60323. height: math.unit(6 + 2/12, "feet"),
  60324. name: "Front",
  60325. image: {
  60326. source: "./media/characters/reiku/front.svg",
  60327. extra: 1910/1757,
  60328. bottom: 103/2013
  60329. },
  60330. extraAttributes: {
  60331. "thighThickness": {
  60332. name: "Thigh Thickness",
  60333. power: 1,
  60334. type: "length",
  60335. base: math.unit(1.12, "feet")
  60336. },
  60337. "assThickness": {
  60338. name: "Ass Thickness",
  60339. power: 1,
  60340. type: "length",
  60341. base: math.unit(1.12*2, "feet")
  60342. },
  60343. }
  60344. },
  60345. side: {
  60346. height: math.unit(6 + 2/12, "feet"),
  60347. name: "Side",
  60348. image: {
  60349. source: "./media/characters/reiku/side.svg",
  60350. extra: 1846/1748,
  60351. bottom: 99/1945
  60352. },
  60353. extraAttributes: {
  60354. "thighThickness": {
  60355. name: "Thigh Thickness",
  60356. power: 1,
  60357. type: "length",
  60358. base: math.unit(1.12, "feet")
  60359. },
  60360. "assThickness": {
  60361. name: "Ass Thickness",
  60362. power: 1,
  60363. type: "length",
  60364. base: math.unit(1.12*2, "feet")
  60365. },
  60366. }
  60367. },
  60368. back: {
  60369. height: math.unit(6 + 2/12, "feet"),
  60370. name: "Back",
  60371. image: {
  60372. source: "./media/characters/reiku/back.svg",
  60373. extra: 1941/1786,
  60374. bottom: 34/1975
  60375. },
  60376. extraAttributes: {
  60377. "thighThickness": {
  60378. name: "Thigh Thickness",
  60379. power: 1,
  60380. type: "length",
  60381. base: math.unit(1.12, "feet")
  60382. },
  60383. "assThickness": {
  60384. name: "Ass Thickness",
  60385. power: 1,
  60386. type: "length",
  60387. base: math.unit(1.12*2, "feet")
  60388. },
  60389. }
  60390. },
  60391. head: {
  60392. height: math.unit(1.8, "feet"),
  60393. name: "Head",
  60394. image: {
  60395. source: "./media/characters/reiku/head.svg"
  60396. }
  60397. },
  60398. tailTop: {
  60399. height: math.unit(8.4, "feet"),
  60400. name: "Tail (Top)",
  60401. image: {
  60402. source: "./media/characters/reiku/tail-top.svg"
  60403. }
  60404. },
  60405. tailBottom: {
  60406. height: math.unit(8.4, "feet"),
  60407. name: "Tail (Bottom)",
  60408. image: {
  60409. source: "./media/characters/reiku/tail-bottom.svg"
  60410. }
  60411. },
  60412. foot: {
  60413. height: math.unit(2.6, "feet"),
  60414. name: "Foot",
  60415. image: {
  60416. source: "./media/characters/reiku/foot.svg"
  60417. }
  60418. },
  60419. footCurled: {
  60420. height: math.unit(2.3, "feet"),
  60421. name: "Foot (Curled)",
  60422. image: {
  60423. source: "./media/characters/reiku/foot-curled.svg"
  60424. }
  60425. },
  60426. footSide: {
  60427. height: math.unit(1.26, "feet"),
  60428. name: "Foot (Side)",
  60429. image: {
  60430. source: "./media/characters/reiku/foot-side.svg"
  60431. }
  60432. },
  60433. },
  60434. [
  60435. {
  60436. name: "Normal",
  60437. height: math.unit(6 + 2/12, "feet"),
  60438. default: true
  60439. },
  60440. ]
  60441. ))
  60442. characterMakers.push(() => makeCharacter(
  60443. { name: "Cialda", species: ["zorgoia", "food"], tags: ["feral"] },
  60444. {
  60445. front: {
  60446. height: math.unit(7, "feet"),
  60447. weight: math.unit(500, "kg"),
  60448. name: "Front",
  60449. image: {
  60450. source: "./media/characters/cialda/front.svg",
  60451. extra: 912/745,
  60452. bottom: 55/967
  60453. }
  60454. },
  60455. },
  60456. [
  60457. {
  60458. name: "Normal",
  60459. height: math.unit(7, "feet"),
  60460. default: true
  60461. },
  60462. ]
  60463. ))
  60464. characterMakers.push(() => makeCharacter(
  60465. { name: "Darkkin", species: ["honey-badger", "behemoth"], tags: ["anthro"] },
  60466. {
  60467. side: {
  60468. height: math.unit(6, "feet"),
  60469. weight: math.unit(600, "lb"),
  60470. preyCapacity: math.unit(25, "liters"),
  60471. name: "Side",
  60472. image: {
  60473. source: "./media/characters/darkkin/side.svg",
  60474. extra: 1597/1447,
  60475. bottom: 101/1698
  60476. }
  60477. },
  60478. },
  60479. [
  60480. {
  60481. name: "Canon Height",
  60482. height: math.unit(568, "feet"),
  60483. default: true
  60484. },
  60485. ]
  60486. ))
  60487. characterMakers.push(() => makeCharacter(
  60488. { name: "Livnia", species: ["rattlesnake", "diamondback"], tags: ["naga"] },
  60489. {
  60490. front: {
  60491. height: math.unit(6, "feet"),
  60492. weight: math.unit(1500, "lb"),
  60493. preyCapacity: math.unit(3, "people"),
  60494. name: "Front",
  60495. image: {
  60496. source: "./media/characters/livnia/front.svg",
  60497. extra: 934/932,
  60498. bottom: 83/1017
  60499. }
  60500. },
  60501. back: {
  60502. height: math.unit(6, "feet"),
  60503. weight: math.unit(1500, "lb"),
  60504. preyCapacity: math.unit(3, "people"),
  60505. name: "Back",
  60506. image: {
  60507. source: "./media/characters/livnia/back.svg",
  60508. extra: 916/915,
  60509. bottom: 58/974
  60510. }
  60511. },
  60512. head: {
  60513. height: math.unit(1.53, "feet"),
  60514. name: "Head",
  60515. image: {
  60516. source: "./media/characters/livnia/head.svg"
  60517. }
  60518. },
  60519. maw: {
  60520. height: math.unit(0.78, "feet"),
  60521. name: "Maw",
  60522. image: {
  60523. source: "./media/characters/livnia/maw.svg"
  60524. }
  60525. },
  60526. genitals: {
  60527. height: math.unit(0.35, "feet"),
  60528. name: "Genitals",
  60529. image: {
  60530. source: "./media/characters/livnia/genitals.svg"
  60531. }
  60532. },
  60533. },
  60534. [
  60535. {
  60536. name: "Normal",
  60537. height: math.unit(1000, "feet"),
  60538. default: true
  60539. },
  60540. ]
  60541. ))
  60542. characterMakers.push(() => makeCharacter(
  60543. { name: "Hayaku", species: ["spidox"], tags: ["anthro"] },
  60544. {
  60545. front: {
  60546. height: math.unit(4, "feet"),
  60547. weight: math.unit(73, "lb"),
  60548. name: "Front",
  60549. image: {
  60550. source: "./media/characters/hayaku/front.svg",
  60551. extra: 1011/888,
  60552. bottom: 33/1044
  60553. }
  60554. },
  60555. back: {
  60556. height: math.unit(4, "feet"),
  60557. weight: math.unit(73, "lb"),
  60558. name: "Back",
  60559. image: {
  60560. source: "./media/characters/hayaku/back.svg",
  60561. extra: 1040/930,
  60562. bottom: 20/1060
  60563. }
  60564. },
  60565. },
  60566. [
  60567. {
  60568. name: "Normal",
  60569. height: math.unit(4, "feet"),
  60570. default: true
  60571. },
  60572. ]
  60573. ))
  60574. characterMakers.push(() => makeCharacter(
  60575. { name: "Athena Bryzant", species: ["gryphon"], tags: ["anthro"] },
  60576. {
  60577. front: {
  60578. height: math.unit(6 + 7/12, "feet"),
  60579. weight: math.unit(300, "lb"),
  60580. name: "Front",
  60581. image: {
  60582. source: "./media/characters/athena-bryzant/front.svg",
  60583. extra: 870/835,
  60584. bottom: 33/903
  60585. }
  60586. },
  60587. back: {
  60588. height: math.unit(6 + 7/12, "feet"),
  60589. weight: math.unit(300, "lb"),
  60590. name: "Back",
  60591. image: {
  60592. source: "./media/characters/athena-bryzant/back.svg",
  60593. extra: 858/823,
  60594. bottom: 30/888
  60595. }
  60596. },
  60597. head: {
  60598. height: math.unit(2.38, "feet"),
  60599. name: "Head",
  60600. image: {
  60601. source: "./media/characters/athena-bryzant/head.svg"
  60602. }
  60603. },
  60604. wings: {
  60605. height: math.unit(2.85, "feet"),
  60606. name: "Wings",
  60607. image: {
  60608. source: "./media/characters/athena-bryzant/wings.svg"
  60609. }
  60610. },
  60611. },
  60612. [
  60613. {
  60614. name: "Normal",
  60615. height: math.unit(6 + 7/12, "feet"),
  60616. default: true
  60617. },
  60618. {
  60619. name: "Big",
  60620. height: math.unit(8, "feet")
  60621. },
  60622. {
  60623. name: "Very Big",
  60624. height: math.unit(11, "feet")
  60625. },
  60626. ]
  60627. ))
  60628. characterMakers.push(() => makeCharacter(
  60629. { name: "Zel-Kesh", species: ["zorgoia", "demon"], tags: ["feral"] },
  60630. {
  60631. side: {
  60632. height: math.unit(3, "meters"),
  60633. weight: math.unit(7500, "kg"),
  60634. preyCapacity: math.unit(1e12, "people"),
  60635. name: "Side",
  60636. image: {
  60637. source: "./media/characters/zel-kesh/side.svg",
  60638. extra: 910/407,
  60639. bottom: 147/1057
  60640. }
  60641. },
  60642. },
  60643. [
  60644. {
  60645. name: "Normal",
  60646. height: math.unit(3, "meters"),
  60647. default: true
  60648. },
  60649. ]
  60650. ))
  60651. characterMakers.push(() => makeCharacter(
  60652. { name: "Kane (Fox)", species: ["fox", "deity"], tags: ["anthro"] },
  60653. {
  60654. front: {
  60655. height: math.unit(2, "meters"),
  60656. weight: math.unit(95, "kg"),
  60657. name: "Front",
  60658. image: {
  60659. source: "./media/characters/kane-fox/front.svg",
  60660. extra: 945/888,
  60661. bottom: 27/972
  60662. }
  60663. },
  60664. back: {
  60665. height: math.unit(2, "meters"),
  60666. weight: math.unit(95, "kg"),
  60667. name: "Back",
  60668. image: {
  60669. source: "./media/characters/kane-fox/back.svg",
  60670. extra: 959/914,
  60671. bottom: 15/974
  60672. }
  60673. },
  60674. frontLewd: {
  60675. height: math.unit(2, "meters"),
  60676. weight: math.unit(95, "kg"),
  60677. name: "Front (Lewd)",
  60678. image: {
  60679. source: "./media/characters/kane-fox/front-lewd.svg",
  60680. extra: 945/888,
  60681. bottom: 27/972
  60682. }
  60683. },
  60684. },
  60685. [
  60686. {
  60687. name: "Home Size",
  60688. height: math.unit(2, "meters"),
  60689. default: true
  60690. },
  60691. {
  60692. name: "Macro",
  60693. height: math.unit(200, "meters")
  60694. },
  60695. {
  60696. name: "Small Mega",
  60697. height: math.unit(3, "km")
  60698. },
  60699. {
  60700. name: "Mega",
  60701. height: math.unit(50, "km")
  60702. },
  60703. {
  60704. name: "Giga",
  60705. height: math.unit(200, "km")
  60706. },
  60707. {
  60708. name: "Giga+",
  60709. height: math.unit(2500, "km")
  60710. },
  60711. {
  60712. name: "Terra",
  60713. height: math.unit(70000, "km")
  60714. },
  60715. {
  60716. name: "Terra+",
  60717. height: math.unit(150000, "km")
  60718. },
  60719. {
  60720. name: "Terra++",
  60721. height: math.unit(400000, "km")
  60722. },
  60723. ]
  60724. ))
  60725. characterMakers.push(() => makeCharacter(
  60726. { name: "Ayranus", species: ["otter", "lion", "bat", "deity"], tags: ["anthro"] },
  60727. {
  60728. otter_front: {
  60729. height: math.unit(1.8, "meters"),
  60730. weight: math.unit(90, "kg"),
  60731. name: "Front",
  60732. image: {
  60733. source: "./media/characters/ayranus/otter-front.svg",
  60734. extra: 468/452,
  60735. bottom: 43/511
  60736. },
  60737. form: "otter",
  60738. },
  60739. otter_frontLewd: {
  60740. height: math.unit(1.8, "meters"),
  60741. weight: math.unit(90, "kg"),
  60742. name: "Front (Lewd)",
  60743. image: {
  60744. source: "./media/characters/ayranus/otter-front-lewd.svg",
  60745. extra: 468/452,
  60746. bottom: 43/511
  60747. },
  60748. form: "otter",
  60749. },
  60750. lionbat_front: {
  60751. height: math.unit(1.8, "meters"),
  60752. weight: math.unit(90, "kg"),
  60753. name: "Front (Lewd)",
  60754. image: {
  60755. source: "./media/characters/ayranus/lionbat-front-lewd.svg",
  60756. extra: 797/740,
  60757. bottom: 78/875
  60758. },
  60759. form: "lionbat",
  60760. },
  60761. paw: {
  60762. height: math.unit(1.5, "feet"),
  60763. name: "Paw",
  60764. image: {
  60765. source: "./media/characters/ayranus/paw.svg"
  60766. },
  60767. },
  60768. },
  60769. [
  60770. {
  60771. name: "Incognito",
  60772. height: math.unit(1.8, "meters"),
  60773. allForms: true
  60774. },
  60775. {
  60776. name: "Macro",
  60777. height: math.unit(60, "meters"),
  60778. allForms: true
  60779. },
  60780. {
  60781. name: "Macro+",
  60782. height: math.unit(200, "meters"),
  60783. allForms: true
  60784. },
  60785. {
  60786. name: "Mega",
  60787. height: math.unit(35, "km"),
  60788. allForms: true
  60789. },
  60790. {
  60791. name: "Giga",
  60792. height: math.unit(220, "km"),
  60793. allForms: true
  60794. },
  60795. {
  60796. name: "Giga+",
  60797. height: math.unit(1500, "km"),
  60798. allForms: true
  60799. },
  60800. {
  60801. name: "Terra",
  60802. height: math.unit(13000, "km"),
  60803. allForms: true
  60804. },
  60805. {
  60806. name: "Terra+",
  60807. height: math.unit(500000, "km"),
  60808. allForms: true
  60809. },
  60810. {
  60811. name: "Galactic",
  60812. height: math.unit(486080, "parsecs"),
  60813. default: true,
  60814. allForms: true
  60815. },
  60816. ],
  60817. {
  60818. "otter": {
  60819. name: "Otter",
  60820. default: true
  60821. },
  60822. "lionbat": {
  60823. name: "Lionbat",
  60824. },
  60825. }
  60826. ))
  60827. characterMakers.push(() => makeCharacter(
  60828. { name: "Proxy", species: ["kodiak-bear"], tags: ["anthro"] },
  60829. {
  60830. front: {
  60831. height: math.unit(7 + 4/12, "feet"),
  60832. weight: math.unit(400, "lb"),
  60833. name: "Front",
  60834. image: {
  60835. source: "./media/characters/proxy/front.svg",
  60836. extra: 1605/1542,
  60837. bottom: 55/1660
  60838. }
  60839. },
  60840. side: {
  60841. height: math.unit(7 + 4/12, "feet"),
  60842. weight: math.unit(400, "lb"),
  60843. name: "Side",
  60844. image: {
  60845. source: "./media/characters/proxy/side.svg",
  60846. extra: 794/759,
  60847. bottom: 6/800
  60848. }
  60849. },
  60850. hand: {
  60851. height: math.unit(1.54, "feet"),
  60852. name: "Hand",
  60853. image: {
  60854. source: "./media/characters/proxy/hand.svg"
  60855. }
  60856. },
  60857. paw: {
  60858. height: math.unit(1.53, "feet"),
  60859. name: "Paw",
  60860. image: {
  60861. source: "./media/characters/proxy/paw.svg"
  60862. }
  60863. },
  60864. maw: {
  60865. height: math.unit(1.9, "feet"),
  60866. name: "Maw",
  60867. image: {
  60868. source: "./media/characters/proxy/maw.svg"
  60869. }
  60870. },
  60871. },
  60872. [
  60873. {
  60874. name: "Normal",
  60875. height: math.unit(7 + 4/12, "feet"),
  60876. default: true
  60877. },
  60878. ]
  60879. ))
  60880. characterMakers.push(() => makeCharacter(
  60881. { name: "Crocozilla", species: ["crocodile"], tags: ["anthro"] },
  60882. {
  60883. front: {
  60884. height: math.unit(4, "meters"),
  60885. name: "Front",
  60886. image: {
  60887. source: "./media/characters/crocozilla/front.svg",
  60888. extra: 1790/1742,
  60889. bottom: 78/1868
  60890. }
  60891. },
  60892. },
  60893. [
  60894. {
  60895. name: "Normal",
  60896. height: math.unit(4, "meters"),
  60897. default: true
  60898. },
  60899. ]
  60900. ))
  60901. characterMakers.push(() => makeCharacter(
  60902. { name: "Kurz", species: ["alurean", "deity"], tags: ["anthro"] },
  60903. {
  60904. front: {
  60905. height: math.unit(1.8, "meters"),
  60906. weight: math.unit(120, "kg"),
  60907. name: "Front",
  60908. image: {
  60909. source: "./media/characters/kurz/front.svg",
  60910. extra: 1960/1824,
  60911. bottom: 41/2001
  60912. }
  60913. },
  60914. back: {
  60915. height: math.unit(1.8, "meters"),
  60916. weight: math.unit(120, "kg"),
  60917. name: "Back",
  60918. image: {
  60919. source: "./media/characters/kurz/back.svg",
  60920. extra: 1906/1787,
  60921. bottom: 60/1966
  60922. }
  60923. },
  60924. frontLewd: {
  60925. height: math.unit(1.8, "meters"),
  60926. weight: math.unit(120, "kg"),
  60927. name: "Front (Lewd)",
  60928. image: {
  60929. source: "./media/characters/kurz/front-lewd.svg",
  60930. extra: 1960/1824,
  60931. bottom: 41/2001
  60932. }
  60933. },
  60934. maw: {
  60935. height: math.unit(0.69, "meters"),
  60936. name: "Maw",
  60937. image: {
  60938. source: "./media/characters/kurz/maw.svg"
  60939. }
  60940. },
  60941. },
  60942. [
  60943. {
  60944. name: "Original Size",
  60945. height: math.unit(1.8, "meters")
  60946. },
  60947. {
  60948. name: "Incognito Size",
  60949. height: math.unit(2.4, "meters"),
  60950. default: true
  60951. },
  60952. {
  60953. name: "Macro",
  60954. height: math.unit(30, "meters")
  60955. },
  60956. {
  60957. name: "Macro+",
  60958. height: math.unit(250, "meters")
  60959. },
  60960. {
  60961. name: "Mega",
  60962. height: math.unit(2, "km")
  60963. },
  60964. {
  60965. name: "Mega+",
  60966. height: math.unit(35, "km")
  60967. },
  60968. {
  60969. name: "Mega++",
  60970. height: math.unit(75, "km")
  60971. },
  60972. {
  60973. name: "Giga",
  60974. height: math.unit(250, "km")
  60975. },
  60976. {
  60977. name: "Terra",
  60978. height: math.unit(15000, "km")
  60979. },
  60980. {
  60981. name: "Terra+",
  60982. height: math.unit(2250000, "km")
  60983. },
  60984. ]
  60985. ))
  60986. characterMakers.push(() => makeCharacter(
  60987. { name: "Nikita", species: ["werewolf"], tags: ["anthro"] },
  60988. {
  60989. front: {
  60990. height: math.unit(16 + 3/12, "feet"),
  60991. weight: math.unit(3575, "lb"),
  60992. name: "Front",
  60993. image: {
  60994. source: "./media/characters/nikita/front.svg",
  60995. extra: 1064/955,
  60996. bottom: 47/1111
  60997. }
  60998. },
  60999. },
  61000. [
  61001. {
  61002. name: "Normal",
  61003. height: math.unit(16 + 3/12, "feet"),
  61004. default: true
  61005. },
  61006. {
  61007. name: "Big",
  61008. height: math.unit(21, "feet")
  61009. },
  61010. {
  61011. name: "Biggest",
  61012. height: math.unit(50, "feet")
  61013. },
  61014. ]
  61015. ))
  61016. characterMakers.push(() => makeCharacter(
  61017. { name: "Kyara", species: ["wolf"], tags: ["anthro"] },
  61018. {
  61019. front: {
  61020. height: math.unit(1.92, "m"),
  61021. weight: math.unit(76, "kg"),
  61022. name: "Front",
  61023. image: {
  61024. source: "./media/characters/kyara/front.svg",
  61025. extra: 1550/1438,
  61026. bottom: 139/1689
  61027. }
  61028. },
  61029. back: {
  61030. height: math.unit(1.92, "m"),
  61031. weight: math.unit(76, "kg"),
  61032. name: "Back",
  61033. image: {
  61034. source: "./media/characters/kyara/back.svg",
  61035. extra: 1523/1427,
  61036. bottom: 83/1606
  61037. }
  61038. },
  61039. head: {
  61040. height: math.unit(1.22, "feet"),
  61041. name: "Head",
  61042. image: {
  61043. source: "./media/characters/kyara/head.svg"
  61044. }
  61045. },
  61046. maw: {
  61047. height: math.unit(0.73, "feet"),
  61048. name: "Maw",
  61049. image: {
  61050. source: "./media/characters/kyara/maw.svg"
  61051. }
  61052. },
  61053. paws: {
  61054. height: math.unit(0.95, "feet"),
  61055. name: "Paws",
  61056. image: {
  61057. source: "./media/characters/kyara/paws.svg"
  61058. }
  61059. },
  61060. },
  61061. [
  61062. {
  61063. name: "Normal",
  61064. height: math.unit(1.92, "meters"),
  61065. default: true
  61066. },
  61067. {
  61068. name: "Mini Macro",
  61069. height: math.unit(192, "meters")
  61070. },
  61071. {
  61072. name: "Macro",
  61073. height: math.unit(480, "meters")
  61074. },
  61075. {
  61076. name: "Mega Macro",
  61077. height: math.unit(1440, "meters")
  61078. },
  61079. ]
  61080. ))
  61081. characterMakers.push(() => makeCharacter(
  61082. { name: "Layla Amari", species: ["rabbit"], tags: ["anthro"] },
  61083. {
  61084. front: {
  61085. height: math.unit(6, "feet"),
  61086. weight: math.unit(160, "lbs"),
  61087. preyCapacity: math.unit(0.05, "people"),
  61088. name: "Front",
  61089. image: {
  61090. source: "./media/characters/layla-amari/front.svg",
  61091. extra: 1922/1723,
  61092. bottom: 90/2012
  61093. }
  61094. },
  61095. back: {
  61096. height: math.unit(6, "feet"),
  61097. weight: math.unit(160, "lbs"),
  61098. preyCapacity: math.unit(0.05, "people"),
  61099. name: "Back",
  61100. image: {
  61101. source: "./media/characters/layla-amari/back.svg",
  61102. extra: 1917/1718,
  61103. bottom: 50/1967
  61104. }
  61105. },
  61106. frontDressed: {
  61107. height: math.unit(6, "feet"),
  61108. weight: math.unit(160, "lbs"),
  61109. preyCapacity: math.unit(0.05, "people"),
  61110. name: "Front (Dressed)",
  61111. image: {
  61112. source: "./media/characters/layla-amari/front-dressed.svg",
  61113. extra: 1922/1723,
  61114. bottom: 90/2012
  61115. }
  61116. },
  61117. face: {
  61118. height: math.unit(0.93, "feet"),
  61119. name: "Face",
  61120. image: {
  61121. source: "./media/characters/layla-amari/face.svg"
  61122. }
  61123. },
  61124. hand: {
  61125. height: math.unit(0.66 , "feet"),
  61126. name: "Hand",
  61127. image: {
  61128. source: "./media/characters/layla-amari/hand.svg"
  61129. }
  61130. },
  61131. foot: {
  61132. height: math.unit(1, "feet"),
  61133. name: "Foot",
  61134. image: {
  61135. source: "./media/characters/layla-amari/foot.svg"
  61136. }
  61137. },
  61138. necklace: {
  61139. height: math.unit(0.32, "feet"),
  61140. name: "Necklace",
  61141. image: {
  61142. source: "./media/characters/layla-amari/necklace.svg"
  61143. }
  61144. },
  61145. nipple: {
  61146. height: math.unit(0.2, "feet"),
  61147. name: "Nipple",
  61148. image: {
  61149. source: "./media/characters/layla-amari/nipple.svg"
  61150. }
  61151. },
  61152. slit: {
  61153. height: math.unit(0.26, "feet"),
  61154. name: "Slit",
  61155. image: {
  61156. source: "./media/characters/layla-amari/slit.svg"
  61157. }
  61158. },
  61159. },
  61160. [
  61161. {
  61162. name: "Natural",
  61163. height: math.unit(825, "feet"),
  61164. default: true
  61165. },
  61166. {
  61167. name: "Enhanced",
  61168. height: math.unit(8250, "feet")
  61169. },
  61170. {
  61171. name: "Apparent Size",
  61172. height: math.unit(9.04363e+8, "meters")
  61173. },
  61174. ]
  61175. ))
  61176. characterMakers.push(() => makeCharacter(
  61177. { name: "Percy", species: ["magpie", "leopard", "gryphon"], tags: ["anthro"] },
  61178. {
  61179. front: {
  61180. height: math.unit(1.3, "meters"),
  61181. name: "Front",
  61182. image: {
  61183. source: "./media/characters/percy/front.svg",
  61184. extra: 1444/1289,
  61185. bottom: 54/1498
  61186. }
  61187. },
  61188. },
  61189. [
  61190. {
  61191. name: "Normal",
  61192. height: math.unit(1.3, "meters"),
  61193. default: true
  61194. },
  61195. ]
  61196. ))
  61197. characterMakers.push(() => makeCharacter(
  61198. { name: "Grev", species: ["tigrex"], tags: ["feral"] },
  61199. {
  61200. side: {
  61201. height: math.unit(10, "meters"),
  61202. name: "Side",
  61203. image: {
  61204. source: "./media/characters/grev/side.svg",
  61205. extra: 653/266,
  61206. bottom: 77/730
  61207. }
  61208. },
  61209. head: {
  61210. height: math.unit(16.2, "m"),
  61211. name: "Head",
  61212. image: {
  61213. source: "./media/characters/grev/head.svg"
  61214. }
  61215. },
  61216. dick: {
  61217. height: math.unit(2.8135932034, "m"),
  61218. name: "Dick",
  61219. image: {
  61220. source: "./media/characters/grev/dick.svg"
  61221. }
  61222. },
  61223. },
  61224. [
  61225. {
  61226. name: "Friend-Sized",
  61227. height: math.unit(80, "cm")
  61228. },
  61229. {
  61230. name: "Normal",
  61231. height: math.unit(10, "meters"),
  61232. default: true
  61233. },
  61234. {
  61235. name: "Macro",
  61236. height: math.unit(200, "meters")
  61237. },
  61238. ]
  61239. ))
  61240. characterMakers.push(() => makeCharacter(
  61241. { name: "Azuuca", species: ["catfish"], tags: ["anthro"] },
  61242. {
  61243. front: {
  61244. height: math.unit(19.75, "feet"),
  61245. weight: math.unit(20000, "lb"),
  61246. name: "Front",
  61247. image: {
  61248. source: "./media/characters/azuuca/front.svg",
  61249. extra: 1593/1511,
  61250. bottom: 55/1648
  61251. }
  61252. },
  61253. },
  61254. [
  61255. {
  61256. name: "Normal",
  61257. height: math.unit(19.75, "feet"),
  61258. default: true
  61259. },
  61260. ]
  61261. ))
  61262. characterMakers.push(() => makeCharacter(
  61263. { name: "Valuria", species: ["vesempress"], tags: ["anthro"] },
  61264. {
  61265. front: {
  61266. height: math.unit(15, "feet"),
  61267. weight: math.unit(1500, "lb"),
  61268. name: "Front",
  61269. image: {
  61270. source: "./media/characters/valuria/front.svg",
  61271. extra: 1588/1486,
  61272. bottom: 31/1619
  61273. }
  61274. },
  61275. },
  61276. [
  61277. {
  61278. name: "Normal",
  61279. height: math.unit(15, "feet"),
  61280. default: true
  61281. },
  61282. {
  61283. name: "Small",
  61284. height: math.unit(500, "feet")
  61285. },
  61286. {
  61287. name: "Macro",
  61288. height: math.unit(4000, "feet")
  61289. },
  61290. {
  61291. name: "Mega Macro",
  61292. height: math.unit(2000, "miles")
  61293. },
  61294. {
  61295. name: "Giga Macro",
  61296. height: math.unit(3e6, "miles")
  61297. },
  61298. ]
  61299. ))
  61300. characterMakers.push(() => makeCharacter(
  61301. { name: "Terigaia", species: ["gaelterranian"], tags: ["anthro"] },
  61302. {
  61303. front: {
  61304. height: math.unit(3500, "solarradii"),
  61305. name: "Front",
  61306. image: {
  61307. source: "./media/characters/terigaia/front.svg",
  61308. extra: 1531/1451,
  61309. bottom: 98/1629
  61310. }
  61311. },
  61312. },
  61313. [
  61314. {
  61315. name: "Normal",
  61316. height: math.unit(3500, "solarradii"),
  61317. default: true
  61318. },
  61319. ]
  61320. ))
  61321. characterMakers.push(() => makeCharacter(
  61322. { name: "Blair (Blaziken)", species: ["blaziken"], tags: ["anthro"] },
  61323. {
  61324. front: {
  61325. height: math.unit(9.34, "feet"),
  61326. weight: math.unit(600, "lb"),
  61327. name: "Front",
  61328. image: {
  61329. source: "./media/characters/blair-blaziken/front.svg",
  61330. extra: 1557/1462,
  61331. bottom: 55/1612
  61332. }
  61333. },
  61334. },
  61335. [
  61336. {
  61337. name: "Normal",
  61338. height: math.unit(9.34, "feet"),
  61339. default: true
  61340. },
  61341. ]
  61342. ))
  61343. characterMakers.push(() => makeCharacter(
  61344. { name: "Braxia", species: ["pistrogre", "human"], tags: ["anthro"] },
  61345. {
  61346. pistrogre_front: {
  61347. height: math.unit(10, "feet"),
  61348. weight: math.unit(10, "tons"),
  61349. name: "Front",
  61350. image: {
  61351. source: "./media/characters/braxia/pistrogre-front.svg",
  61352. extra: 1531/1334,
  61353. bottom: 114/1645
  61354. },
  61355. form: "pistrogre",
  61356. default: true
  61357. },
  61358. human_front: {
  61359. height: math.unit(10, "feet"),
  61360. weight: math.unit(10, "tons"),
  61361. name: "Front",
  61362. image: {
  61363. source: "./media/characters/braxia/human-front.svg",
  61364. extra: 1574/1501,
  61365. bottom: 37/1611
  61366. },
  61367. form: "human",
  61368. default: true
  61369. },
  61370. },
  61371. [
  61372. {
  61373. name: "Normal",
  61374. height: math.unit(10, "feet"),
  61375. default: true,
  61376. allForms: true
  61377. },
  61378. {
  61379. name: "Macro",
  61380. height: math.unit(1000, "feet"),
  61381. allForms: true
  61382. },
  61383. {
  61384. name: "Mega Macro",
  61385. height: math.unit(100, "miles"),
  61386. allForms: true
  61387. },
  61388. {
  61389. name: "Cosmic",
  61390. height: math.unit(1000000, "lightyears"),
  61391. allForms: true
  61392. },
  61393. {
  61394. name: "ϐѮԆԬӁꭍϞԢ",
  61395. height: math.unit(1000, "multiverses"),
  61396. allForms: true
  61397. },
  61398. ],
  61399. {
  61400. "pistrogre": {
  61401. name: "Pistrogre",
  61402. default: true
  61403. },
  61404. "human": {
  61405. name: "Human",
  61406. },
  61407. }
  61408. ))
  61409. characterMakers.push(() => makeCharacter(
  61410. { name: "Kiriga Yato", species: ["zorgoia"], tags: ["anthro"] },
  61411. {
  61412. front: {
  61413. height: math.unit(6 + 1/12, "feet"),
  61414. weight: math.unit(280, "lb"),
  61415. name: "Front",
  61416. image: {
  61417. source: "./media/characters/kiriga-yato/front.svg",
  61418. extra: 445/394,
  61419. bottom: 11/456
  61420. }
  61421. },
  61422. },
  61423. [
  61424. {
  61425. name: "Descended",
  61426. height: math.unit(3, "feet")
  61427. },
  61428. {
  61429. name: "Average",
  61430. height: math.unit(6 + 1/12, "feet"),
  61431. default: true
  61432. },
  61433. {
  61434. name: "Ascended",
  61435. height: math.unit(9 + 2/12, "feet")
  61436. },
  61437. ]
  61438. ))
  61439. characterMakers.push(() => makeCharacter(
  61440. { name: "Kylie", species: ["giraffe"], tags: ["anthro"] },
  61441. {
  61442. front: {
  61443. height: math.unit(6, "feet"),
  61444. weight: math.unit(150, "lb"),
  61445. name: "Front",
  61446. image: {
  61447. source: "./media/characters/kylie/front.svg",
  61448. extra: 1114/1046,
  61449. bottom: 65/1179
  61450. },
  61451. extraAttributes: {
  61452. "hoofSize": {
  61453. name: "Hoof Size",
  61454. power: 2,
  61455. type: "area",
  61456. base: math.unit(0.034, "m^2")
  61457. },
  61458. "footSize": {
  61459. name: "Foot Size",
  61460. power: 2,
  61461. type: "area",
  61462. base: math.unit(0.75, "m^2")
  61463. },
  61464. }
  61465. },
  61466. side: {
  61467. height: math.unit(6, "feet"),
  61468. weight: math.unit(150, "lb"),
  61469. name: "Side",
  61470. image: {
  61471. source: "./media/characters/kylie/side.svg",
  61472. extra: 1178/1110,
  61473. bottom: 21/1199
  61474. },
  61475. extraAttributes: {
  61476. "hoofSize": {
  61477. name: "Hoof Size",
  61478. power: 2,
  61479. type: "area",
  61480. base: math.unit(0.034, "m^2")
  61481. },
  61482. "footSize": {
  61483. name: "Foot Size",
  61484. power: 2,
  61485. type: "area",
  61486. base: math.unit(0.75, "m^2")
  61487. },
  61488. }
  61489. },
  61490. back: {
  61491. height: math.unit(6, "feet"),
  61492. weight: math.unit(150, "lb"),
  61493. name: "Back",
  61494. image: {
  61495. source: "./media/characters/kylie/back.svg",
  61496. extra: 1115/1047,
  61497. bottom: 66/1181
  61498. },
  61499. extraAttributes: {
  61500. "hoofSize": {
  61501. name: "Hoof Size",
  61502. power: 2,
  61503. type: "area",
  61504. base: math.unit(0.034, "m^2")
  61505. },
  61506. "footSize": {
  61507. name: "Foot Size",
  61508. power: 2,
  61509. type: "area",
  61510. base: math.unit(0.75, "m^2")
  61511. },
  61512. }
  61513. },
  61514. head: {
  61515. height: math.unit(1.85, "feet"),
  61516. name: "Head",
  61517. image: {
  61518. source: "./media/characters/kylie/head.svg"
  61519. }
  61520. },
  61521. },
  61522. [
  61523. {
  61524. name: "Normal",
  61525. height: math.unit(90, "meters"),
  61526. default: true
  61527. },
  61528. ]
  61529. ))
  61530. characterMakers.push(() => makeCharacter(
  61531. { name: "Sabado", species: ["suicune"], tags: ["anthro"] },
  61532. {
  61533. front: {
  61534. height: math.unit(245, "feet"),
  61535. weight: math.unit(400000, "lb"),
  61536. name: "Front",
  61537. image: {
  61538. source: "./media/characters/sabado/front.svg",
  61539. extra: 1309/1164,
  61540. bottom: 29/1338
  61541. }
  61542. },
  61543. },
  61544. [
  61545. {
  61546. name: "Normal",
  61547. height: math.unit(245, "feet"),
  61548. default: true
  61549. },
  61550. ]
  61551. ))
  61552. characterMakers.push(() => makeCharacter(
  61553. { name: "Zechal", species: ["shark", "dragon", "deity"], tags: ["anthro"] },
  61554. {
  61555. shark_front: {
  61556. height: math.unit(2, "meters"),
  61557. weight: math.unit(200, "kg"),
  61558. name: "Front",
  61559. image: {
  61560. source: "./media/characters/zechal/shark-front.svg",
  61561. extra: 969/925,
  61562. bottom: 74/1043
  61563. },
  61564. form: "shark",
  61565. },
  61566. shark_back: {
  61567. height: math.unit(2, "meters"),
  61568. weight: math.unit(200, "kg"),
  61569. name: "Back",
  61570. image: {
  61571. source: "./media/characters/zechal/shark-back.svg",
  61572. extra: 994/949,
  61573. bottom: 176/1170
  61574. },
  61575. form: "shark",
  61576. },
  61577. shark_frontLewd: {
  61578. height: math.unit(2, "meters"),
  61579. weight: math.unit(200, "kg"),
  61580. name: "Front (Lewd)",
  61581. image: {
  61582. source: "./media/characters/zechal/shark-front-lewd.svg",
  61583. extra: 969/925,
  61584. bottom: 74/1043
  61585. },
  61586. form: "shark",
  61587. },
  61588. shark_side: {
  61589. height: math.unit(1.56, "meters"),
  61590. weight: math.unit(200, "kg"),
  61591. name: "Side",
  61592. image: {
  61593. source: "./media/characters/zechal/shark-side.svg"
  61594. },
  61595. form: "shark",
  61596. },
  61597. dragon_front: {
  61598. height: math.unit(2, "meters"),
  61599. weight: math.unit(200, "kg"),
  61600. name: "Front",
  61601. image: {
  61602. source: "./media/characters/zechal/dragon-front.svg",
  61603. extra: 1041/925,
  61604. bottom: 74/1115
  61605. },
  61606. form: "dragon",
  61607. },
  61608. dragon_back: {
  61609. height: math.unit(2, "meters"),
  61610. weight: math.unit(200, "kg"),
  61611. name: "Back",
  61612. image: {
  61613. source: "./media/characters/zechal/dragon-back.svg",
  61614. extra: 1061/949,
  61615. bottom: 176/1237
  61616. },
  61617. form: "dragon",
  61618. },
  61619. dragon_frontLewd: {
  61620. height: math.unit(2, "meters"),
  61621. weight: math.unit(200, "kg"),
  61622. name: "Front (Lewd)",
  61623. image: {
  61624. source: "./media/characters/zechal/dragon-front-lewd.svg",
  61625. extra: 1041/925,
  61626. bottom: 74/1115
  61627. },
  61628. form: "dragon",
  61629. },
  61630. dragon_side: {
  61631. height: math.unit(1.56, "meters"),
  61632. weight: math.unit(200, "kg"),
  61633. name: "Side",
  61634. image: {
  61635. source: "./media/characters/zechal/dragon-side.svg"
  61636. },
  61637. form: "dragon",
  61638. },
  61639. foot: {
  61640. height: math.unit(0.5, "meters"),
  61641. name: "Foot",
  61642. image: {
  61643. source: "./media/characters/zechal/foot.svg"
  61644. }
  61645. },
  61646. sheathFront: {
  61647. height: math.unit(0.45, "meters"),
  61648. name: "Sheath (Front)",
  61649. image: {
  61650. source: "./media/characters/zechal/sheath-front.svg"
  61651. }
  61652. },
  61653. sheathSide: {
  61654. height: math.unit(0.45, "meters"),
  61655. name: "Sheath (Side)",
  61656. image: {
  61657. source: "./media/characters/zechal/sheath-side.svg"
  61658. }
  61659. },
  61660. },
  61661. [
  61662. {
  61663. name: "Incognito",
  61664. height: math.unit(2, "meters"),
  61665. allForms: true
  61666. },
  61667. {
  61668. name: "Small Rampage",
  61669. height: math.unit(25, "meters"),
  61670. allForms: true
  61671. },
  61672. {
  61673. name: "Home Size",
  61674. height: math.unit(250, "meters"),
  61675. allForms: true,
  61676. default: true
  61677. },
  61678. {
  61679. name: "Macro+",
  61680. height: math.unit(700, "meters"),
  61681. allForms: true
  61682. },
  61683. {
  61684. name: "Small Mega",
  61685. height: math.unit(3, "km"),
  61686. allForms: true
  61687. },
  61688. {
  61689. name: "Mega",
  61690. height: math.unit(15, "km"),
  61691. allForms: true
  61692. },
  61693. {
  61694. name: "Giga",
  61695. height: math.unit(300, "km"),
  61696. allForms: true
  61697. },
  61698. {
  61699. name: "Giga+",
  61700. height: math.unit(1750, "km"),
  61701. allForms: true
  61702. },
  61703. {
  61704. name: "Continental",
  61705. height: math.unit(5000, "km"),
  61706. allForms: true
  61707. },
  61708. {
  61709. name: "Terra",
  61710. height: math.unit(20000, "km"),
  61711. allForms: true
  61712. },
  61713. {
  61714. name: "Terra+",
  61715. height: math.unit(300000, "km"),
  61716. allForms: true
  61717. },
  61718. {
  61719. name: "Solar",
  61720. height: math.unit(40000000, "km"),
  61721. allForms: true
  61722. },
  61723. {
  61724. name: "Galactic",
  61725. height: math.unit(810133, "parsecs"),
  61726. allForms: true
  61727. },
  61728. {
  61729. name: "Universal",
  61730. height: math.unit(25, "universes"),
  61731. allForms: true
  61732. },
  61733. ],
  61734. {
  61735. "shark": {
  61736. name: "Shark",
  61737. default: true
  61738. },
  61739. "dragon": {
  61740. name: "Dragon",
  61741. },
  61742. }
  61743. ))
  61744. characterMakers.push(() => makeCharacter(
  61745. { name: "Sergis", species: ["komodo-dragon", "deity"], tags: ["anthro"] },
  61746. {
  61747. front: {
  61748. height: math.unit(2.2, "meters"),
  61749. weight: math.unit(150, "kg"),
  61750. name: "Front",
  61751. image: {
  61752. source: "./media/characters/sergis/front.svg",
  61753. extra: 1314/1312,
  61754. bottom: 112/1426
  61755. }
  61756. },
  61757. back: {
  61758. height: math.unit(2.2, "meters"),
  61759. weight: math.unit(150, "kg"),
  61760. name: "Back",
  61761. image: {
  61762. source: "./media/characters/sergis/back.svg",
  61763. extra: 1335/1333,
  61764. bottom: 19/1354
  61765. }
  61766. },
  61767. frontLewd: {
  61768. height: math.unit(2.2, "meters"),
  61769. weight: math.unit(150, "kg"),
  61770. name: "Front (Lewd)",
  61771. image: {
  61772. source: "./media/characters/sergis/front-lewd.svg",
  61773. extra: 1314/1312,
  61774. bottom: 112/1426
  61775. }
  61776. },
  61777. frontDressed: {
  61778. height: math.unit(2.2, "meters"),
  61779. weight: math.unit(150, "kg"),
  61780. name: "Front (Dressed)",
  61781. image: {
  61782. source: "./media/characters/sergis/front-dressed.svg",
  61783. extra: 1330/1328,
  61784. bottom: 95/1425
  61785. }
  61786. },
  61787. frontDressedLewd: {
  61788. height: math.unit(2.2, "meters"),
  61789. weight: math.unit(150, "kg"),
  61790. name: "Front (Dressed, Lewd)",
  61791. image: {
  61792. source: "./media/characters/sergis/front-dressed-lewd.svg",
  61793. extra: 1330/1328,
  61794. bottom: 95/1425
  61795. }
  61796. },
  61797. maw: {
  61798. height: math.unit(0.48, "meters"),
  61799. name: "Maw",
  61800. image: {
  61801. source: "./media/characters/sergis/maw.svg"
  61802. }
  61803. },
  61804. sheath: {
  61805. height: math.unit(0.38, "meters"),
  61806. name: "Sheath",
  61807. image: {
  61808. source: "./media/characters/sergis/sheath.svg"
  61809. }
  61810. },
  61811. },
  61812. [
  61813. {
  61814. name: "Incognito Size",
  61815. height: math.unit(2.2, "meters")
  61816. },
  61817. {
  61818. name: "Small Macro",
  61819. height: math.unit(40, "meters")
  61820. },
  61821. {
  61822. name: "Macro",
  61823. height: math.unit(150, "meters")
  61824. },
  61825. {
  61826. name: "Macro+",
  61827. height: math.unit(300, "meters")
  61828. },
  61829. {
  61830. name: "Mega",
  61831. height: math.unit(2.5, "km")
  61832. },
  61833. {
  61834. name: "Mega+",
  61835. height: math.unit(30, "km")
  61836. },
  61837. {
  61838. name: "Home Size",
  61839. height: math.unit(300, "km"),
  61840. default: true
  61841. },
  61842. {
  61843. name: "Giga+",
  61844. height: math.unit(1000, "km")
  61845. },
  61846. {
  61847. name: "Giga++",
  61848. height: math.unit(6000, "km")
  61849. },
  61850. {
  61851. name: "Terra",
  61852. height: math.unit(70000, "km")
  61853. },
  61854. {
  61855. name: "Terra+",
  61856. height: math.unit(200000, "km")
  61857. },
  61858. {
  61859. name: "Galactic",
  61860. height: math.unit(634200, "lightyears")
  61861. },
  61862. ]
  61863. ))
  61864. characterMakers.push(() => makeCharacter(
  61865. { name: "Spade", species: ["demon", "mouse"], tags: ["anthro"] },
  61866. {
  61867. standard: {
  61868. height: math.unit(1 + 5/12, "feet"),
  61869. name: "Standard",
  61870. image: {
  61871. source: "./media/characters/spade/standard.svg",
  61872. extra: 1794/1703,
  61873. bottom: 115/1909
  61874. }
  61875. },
  61876. disguised: {
  61877. height: math.unit(1 + 5/12, "feet"),
  61878. name: "Disguised",
  61879. image: {
  61880. source: "./media/characters/spade/disguised.svg",
  61881. extra: 1794/1700,
  61882. bottom: 98/1892
  61883. }
  61884. },
  61885. },
  61886. [
  61887. {
  61888. name: "Normal",
  61889. height: math.unit(1 + 5/12, "feet"),
  61890. default: true
  61891. },
  61892. ]
  61893. ))
  61894. characterMakers.push(() => makeCharacter(
  61895. { name: "Zeanlain", species: ["harpy-eagle"], tags: ["anthro"] },
  61896. {
  61897. frontNsfw: {
  61898. height: math.unit(5, "meters"),
  61899. weight: math.unit(2000, "kg"),
  61900. preyCapacity: math.unit(5, "people"),
  61901. name: "Front (NSFW)",
  61902. image: {
  61903. source: "./media/characters/zeanlain/front-nsfw.svg",
  61904. extra: 1087/938,
  61905. bottom: 93/1180
  61906. },
  61907. extraAttributes: {
  61908. "wingspan": {
  61909. name: "Wingspan",
  61910. power: 1,
  61911. type: "length",
  61912. base: math.unit(10, "meters")
  61913. },
  61914. "footSize": {
  61915. name: "Foot Size",
  61916. power: 1,
  61917. type: "length",
  61918. base: math.unit(0.68, "meters")
  61919. },
  61920. "cockLength": {
  61921. name: "Cock Length",
  61922. power: 1,
  61923. type: "length",
  61924. base: math.unit(1.69, "meters")
  61925. },
  61926. "ballVolume": {
  61927. name: "Ball Volume",
  61928. power: 3,
  61929. type: "volume",
  61930. base: math.unit(0.028, "m^3")
  61931. },
  61932. }
  61933. },
  61934. front: {
  61935. height: math.unit(5, "meters"),
  61936. weight: math.unit(2000, "kg"),
  61937. preyCapacity: math.unit(3, "people"),
  61938. name: "Front",
  61939. image: {
  61940. source: "./media/characters/zeanlain/front.svg",
  61941. extra: 1087/938,
  61942. bottom: 93/1180
  61943. },
  61944. extraAttributes: {
  61945. "wingspan": {
  61946. name: "Wingspan",
  61947. power: 1,
  61948. type: "length",
  61949. base: math.unit(10, "meters")
  61950. },
  61951. "footSize": {
  61952. name: "Foot Size",
  61953. power: 1,
  61954. type: "length",
  61955. base: math.unit(0.68, "meters")
  61956. },
  61957. }
  61958. },
  61959. },
  61960. [
  61961. {
  61962. name: "Normal",
  61963. height: math.unit(5, "meters"),
  61964. default: true
  61965. },
  61966. ]
  61967. ))
  61968. characterMakers.push(() => makeCharacter(
  61969. { name: "Airamis", species: ["aeromorph", "dragon"], tags: ["anthro"] },
  61970. {
  61971. front: {
  61972. height: math.unit(10, "meters"),
  61973. weight: math.unit(250000, "kg"),
  61974. name: "Front",
  61975. image: {
  61976. source: "./media/characters/airamis/front.svg",
  61977. extra: 865/835,
  61978. bottom: 13/878
  61979. }
  61980. },
  61981. },
  61982. [
  61983. {
  61984. name: "Normal",
  61985. height: math.unit(10, "meters"),
  61986. default: true
  61987. },
  61988. ]
  61989. ))
  61990. characterMakers.push(() => makeCharacter(
  61991. { name: "Corra Tourmaline", species: ["vaporeon"], tags: ["anthro"] },
  61992. {
  61993. front: {
  61994. height: math.unit(3 + 3/12, "feet"),
  61995. weight: math.unit(75, "lb"),
  61996. name: "Front",
  61997. image: {
  61998. source: "./media/characters/corra-tourmaline/front.svg",
  61999. extra: 1037/864,
  62000. bottom: 39/1076
  62001. }
  62002. },
  62003. back: {
  62004. height: math.unit(3 + 3/12, "feet"),
  62005. weight: math.unit(75, "lb"),
  62006. name: "Back",
  62007. image: {
  62008. source: "./media/characters/corra-tourmaline/back.svg",
  62009. extra: 1022/849,
  62010. bottom: 26/1048
  62011. }
  62012. },
  62013. dressed: {
  62014. height: math.unit(3 + 3/12, "feet"),
  62015. weight: math.unit(75, "lb"),
  62016. name: "Dressed",
  62017. image: {
  62018. source: "./media/characters/corra-tourmaline/dressed.svg",
  62019. extra: 1037/864,
  62020. bottom: 39/1076
  62021. }
  62022. },
  62023. beans: {
  62024. height: math.unit(0.37, "feet"),
  62025. name: "Beans",
  62026. image: {
  62027. source: "./media/characters/corra-tourmaline/beans.svg"
  62028. }
  62029. },
  62030. },
  62031. [
  62032. {
  62033. name: "Normal",
  62034. height: math.unit(3 + 3/12, "feet"),
  62035. default: true
  62036. },
  62037. {
  62038. name: "Macro",
  62039. height: math.unit(32, "feet")
  62040. },
  62041. ]
  62042. ))
  62043. characterMakers.push(() => makeCharacter(
  62044. { name: "Maki Kawa", species: ["sabertooth-tiger", "serval"], tags: ["anthro"] },
  62045. {
  62046. front: {
  62047. height: math.unit(6 + 2/12, "feet"),
  62048. weight: math.unit(203, "lb"),
  62049. name: "Front",
  62050. image: {
  62051. source: "./media/characters/maki-kawa/front.svg",
  62052. extra: 950/890,
  62053. bottom: 62/1012
  62054. }
  62055. },
  62056. back: {
  62057. height: math.unit(6 + 2/12, "feet"),
  62058. weight: math.unit(203, "lb"),
  62059. name: "Back",
  62060. image: {
  62061. source: "./media/characters/maki-kawa/back.svg",
  62062. extra: 953/878,
  62063. bottom: 49/1002
  62064. }
  62065. },
  62066. frontBarista: {
  62067. height: math.unit(6 + 2/12, "feet"),
  62068. weight: math.unit(203, "lb"),
  62069. name: "Front (Barista)",
  62070. image: {
  62071. source: "./media/characters/maki-kawa/front-barista.svg",
  62072. extra: 943/883,
  62073. bottom: 69/1012
  62074. }
  62075. },
  62076. backBarista: {
  62077. height: math.unit(6 + 2/12, "feet"),
  62078. weight: math.unit(203, "lb"),
  62079. name: "Back (Barista)",
  62080. image: {
  62081. source: "./media/characters/maki-kawa/back-barista.svg",
  62082. extra: 953/878,
  62083. bottom: 49/1002
  62084. }
  62085. },
  62086. frontWrestler: {
  62087. height: math.unit(6 + 2/12, "feet"),
  62088. weight: math.unit(203, "lb"),
  62089. name: "Front (Wrestler)",
  62090. image: {
  62091. source: "./media/characters/maki-kawa/front-wrestler.svg",
  62092. extra: 950/890,
  62093. bottom: 62/1012
  62094. }
  62095. },
  62096. backWrestler: {
  62097. height: math.unit(6 + 2/12, "feet"),
  62098. weight: math.unit(203, "lb"),
  62099. name: "Back (Wrestler)",
  62100. image: {
  62101. source: "./media/characters/maki-kawa/back-wrestler.svg",
  62102. extra: 953/878,
  62103. bottom: 49/1002
  62104. }
  62105. },
  62106. headFront: {
  62107. height: math.unit(1.64, "feet"),
  62108. name: "Head (Front)",
  62109. image: {
  62110. source: "./media/characters/maki-kawa/head-front.svg"
  62111. }
  62112. },
  62113. headSide: {
  62114. height: math.unit(1.59, "feet"),
  62115. name: "Head (Side)",
  62116. image: {
  62117. source: "./media/characters/maki-kawa/head-side.svg"
  62118. }
  62119. },
  62120. paw: {
  62121. height: math.unit(0.9, "feet"),
  62122. name: "Paw",
  62123. image: {
  62124. source: "./media/characters/maki-kawa/paw.svg"
  62125. }
  62126. },
  62127. },
  62128. [
  62129. {
  62130. name: "Normal",
  62131. height: math.unit(6 + 2/12, "feet"),
  62132. default: true
  62133. },
  62134. {
  62135. name: "Macro",
  62136. height: math.unit(617, "feet")
  62137. },
  62138. ]
  62139. ))
  62140. characterMakers.push(() => makeCharacter(
  62141. { name: "Lennox", species: ["wolf"], tags: ["anthro"] },
  62142. {
  62143. front: {
  62144. height: math.unit(10, "feet"),
  62145. weight: math.unit(1500, "lb"),
  62146. name: "Front",
  62147. image: {
  62148. source: "./media/characters/lennox/front.svg",
  62149. extra: 1623/1496,
  62150. bottom: 18/1641
  62151. }
  62152. },
  62153. back: {
  62154. height: math.unit(10, "feet"),
  62155. weight: math.unit(1500, "lb"),
  62156. name: "Back",
  62157. image: {
  62158. source: "./media/characters/lennox/back.svg",
  62159. extra: 1641/1481,
  62160. bottom: 13/1654
  62161. }
  62162. },
  62163. maw: {
  62164. height: math.unit(2.94, "feet"),
  62165. name: "Maw",
  62166. image: {
  62167. source: "./media/characters/lennox/maw.svg"
  62168. }
  62169. },
  62170. },
  62171. [
  62172. {
  62173. name: "Micro",
  62174. height: math.unit(1, "inch")
  62175. },
  62176. {
  62177. name: "Normal",
  62178. height: math.unit(10, "feet"),
  62179. default: true
  62180. },
  62181. {
  62182. name: "Macro",
  62183. height: math.unit(200, "feet")
  62184. },
  62185. ]
  62186. ))
  62187. characterMakers.push(() => makeCharacter(
  62188. { name: "Vyse Iron-Thunder", species: ["luxray", "shiny"], tags: ["anthro"] },
  62189. {
  62190. frontDressed: {
  62191. height: math.unit(15 + 7/12, "feet"),
  62192. weight: math.unit(5000, "lb"),
  62193. name: "Front (Dressed)",
  62194. image: {
  62195. source: "./media/characters/vyse-iron-thunder/front-dressed.svg",
  62196. extra: 1136/1023,
  62197. bottom: 51/1187
  62198. }
  62199. },
  62200. backDressed: {
  62201. height: math.unit(15 + 7/12, "feet"),
  62202. weight: math.unit(5000, "lb"),
  62203. name: "Back (Dressed)",
  62204. image: {
  62205. source: "./media/characters/vyse-iron-thunder/back-dressed.svg",
  62206. extra: 2359/2143,
  62207. bottom: 103/2462
  62208. }
  62209. },
  62210. front: {
  62211. height: math.unit(15 + 7/12, "feet"),
  62212. weight: math.unit(5000, "lb"),
  62213. name: "Front",
  62214. image: {
  62215. source: "./media/characters/vyse-iron-thunder/front.svg",
  62216. extra: 1136/1023,
  62217. bottom: 51/1187
  62218. }
  62219. },
  62220. hand: {
  62221. height: math.unit(2.36, "feet"),
  62222. name: "Hand",
  62223. image: {
  62224. source: "./media/characters/vyse-iron-thunder/hand.svg"
  62225. }
  62226. },
  62227. foot: {
  62228. height: math.unit(1.72, "feet"),
  62229. name: "Foot",
  62230. image: {
  62231. source: "./media/characters/vyse-iron-thunder/foot.svg"
  62232. }
  62233. },
  62234. mouth: {
  62235. height: math.unit(2, "feet"),
  62236. name: "Mouth",
  62237. image: {
  62238. source: "./media/characters/vyse-iron-thunder/mouth.svg"
  62239. }
  62240. },
  62241. eye: {
  62242. height: math.unit(0.58, "feet"),
  62243. name: "Eye",
  62244. image: {
  62245. source: "./media/characters/vyse-iron-thunder/eye.svg"
  62246. }
  62247. },
  62248. },
  62249. [
  62250. {
  62251. name: "Normal",
  62252. height: math.unit(15 + 7/12, "feet"),
  62253. default: true
  62254. },
  62255. {
  62256. name: "Macro",
  62257. height: math.unit(157, "feet")
  62258. },
  62259. {
  62260. name: "Macro+",
  62261. height: math.unit(1570, "feet")
  62262. },
  62263. {
  62264. name: "Macro++",
  62265. height: math.unit(15700, "feet")
  62266. },
  62267. {
  62268. name: "Macro+++",
  62269. height: math.unit(157000, "feet")
  62270. },
  62271. {
  62272. name: "Macro++++",
  62273. height: math.unit(1570000, "feet")
  62274. },
  62275. ]
  62276. ))
  62277. characterMakers.push(() => makeCharacter(
  62278. { name: "Moonbeam", species: ["latex", "wolf"], tags: ["feral"] },
  62279. {
  62280. side: {
  62281. height: math.unit(6, "feet"),
  62282. weight: math.unit(115, "lb"),
  62283. name: "Side",
  62284. image: {
  62285. source: "./media/characters/moonbeam/side.svg",
  62286. extra: 839/485,
  62287. bottom: 60/899
  62288. }
  62289. },
  62290. },
  62291. [
  62292. {
  62293. name: "Normal",
  62294. height: math.unit(6, "feet"),
  62295. default: true
  62296. },
  62297. ]
  62298. ))
  62299. characterMakers.push(() => makeCharacter(
  62300. { name: "Baltica", species: ["orca"], tags: ["anthro"] },
  62301. {
  62302. front: {
  62303. height: math.unit(3500, "miles"),
  62304. weight: math.unit(1659, "petatonnes"),
  62305. name: "Front",
  62306. image: {
  62307. source: "./media/characters/baltica/front.svg",
  62308. extra: 429/428,
  62309. bottom: 41/470
  62310. }
  62311. },
  62312. back: {
  62313. height: math.unit(3500, "miles"),
  62314. weight: math.unit(1659, "petatonnes"),
  62315. name: "Back",
  62316. image: {
  62317. source: "./media/characters/baltica/back.svg",
  62318. extra: 452/451,
  62319. bottom: 8/460
  62320. }
  62321. },
  62322. },
  62323. [
  62324. {
  62325. name: "Gigamacro",
  62326. height: math.unit(3500, "miles"),
  62327. default: true
  62328. },
  62329. ]
  62330. ))
  62331. characterMakers.push(() => makeCharacter(
  62332. { name: "Shadow (Wolf)", species: ["wolf", "demi"], tags: ["anthro"] },
  62333. {
  62334. front: {
  62335. height: math.unit(6 + 10/12, "feet"),
  62336. weight: math.unit(200, "lb"),
  62337. name: "Front",
  62338. image: {
  62339. source: "./media/characters/shadow-wolf/front.svg",
  62340. extra: 1931/1760,
  62341. bottom: 88/2019
  62342. }
  62343. },
  62344. },
  62345. [
  62346. {
  62347. name: "Normal",
  62348. height: math.unit(6 + 10/12, "feet"),
  62349. default: true
  62350. },
  62351. ]
  62352. ))
  62353. characterMakers.push(() => makeCharacter(
  62354. { name: "Quincy (Praying Mantis)", species: ["praying-mantis"], tags: ["anthro"] },
  62355. {
  62356. front: {
  62357. height: math.unit(5 + 10/12, "feet"),
  62358. name: "Front",
  62359. image: {
  62360. source: "./media/characters/quincy-praying-mantis/front.svg",
  62361. extra: 1055/891,
  62362. bottom: 92/1147
  62363. }
  62364. },
  62365. soles: {
  62366. height: math.unit(0.85, "feet"),
  62367. name: "Soles",
  62368. image: {
  62369. source: "./media/characters/quincy-praying-mantis/soles.svg",
  62370. extra: 429/324,
  62371. bottom: 89/518
  62372. },
  62373. extraAttributes: {
  62374. "shoeSize": {
  62375. name: "Shoe Size",
  62376. power: 1,
  62377. type: "length",
  62378. base: math.unit(23, "ShoeSizeMensUS"),
  62379. defaultUnit: "ShoeSizeMensUS"
  62380. },
  62381. }
  62382. },
  62383. foot: {
  62384. height: math.unit(0.72, "feet"),
  62385. name: "Foot",
  62386. image: {
  62387. source: "./media/characters/quincy-praying-mantis/foot.svg",
  62388. extra: 349/349,
  62389. bottom: 76/425
  62390. }
  62391. },
  62392. },
  62393. [
  62394. {
  62395. name: "Normal",
  62396. height: math.unit(5 + 10/12, "feet"),
  62397. default: true
  62398. },
  62399. ]
  62400. ))
  62401. characterMakers.push(() => makeCharacter(
  62402. { name: "Christopher Redwood", species: ["gray-wolf"], tags: ["anthro"] },
  62403. {
  62404. front: {
  62405. height: math.unit(6, "feet"),
  62406. name: "Front",
  62407. image: {
  62408. source: "./media/characters/christopher-redwood/front.svg",
  62409. extra: 1402/1341,
  62410. bottom: 23/1425
  62411. }
  62412. },
  62413. back: {
  62414. height: math.unit(6, "feet"),
  62415. name: "Back",
  62416. image: {
  62417. source: "./media/characters/christopher-redwood/back.svg",
  62418. extra: 1406/1345,
  62419. bottom: 36/1442
  62420. }
  62421. },
  62422. head: {
  62423. height: math.unit(1.685, "feet"),
  62424. name: "Head",
  62425. image: {
  62426. source: "./media/characters/christopher-redwood/head.svg"
  62427. }
  62428. },
  62429. },
  62430. [
  62431. {
  62432. name: "Normal",
  62433. height: math.unit(6, "feet"),
  62434. default: true
  62435. },
  62436. ]
  62437. ))
  62438. characterMakers.push(() => makeCharacter(
  62439. { name: "Kara (Fox)", species: ["fox"], tags: ["anthro"] },
  62440. {
  62441. front: {
  62442. height: math.unit(1.9, "meters"),
  62443. weight: math.unit(140, "lb"),
  62444. name: "Front",
  62445. image: {
  62446. source: "./media/characters/kara-fox/front.svg",
  62447. extra: 766/711,
  62448. bottom: 41/807
  62449. }
  62450. },
  62451. back: {
  62452. height: math.unit(1.9, "meters"),
  62453. weight: math.unit(140, "lb"),
  62454. name: "Back",
  62455. image: {
  62456. source: "./media/characters/kara-fox/back.svg",
  62457. extra: 766/596,
  62458. bottom: 29/795
  62459. }
  62460. },
  62461. maw: {
  62462. height: math.unit(0.78, "feet"),
  62463. name: "Maw",
  62464. image: {
  62465. source: "./media/characters/kara-fox/maw.svg"
  62466. }
  62467. },
  62468. pawpads: {
  62469. height: math.unit(0.96, "feet"),
  62470. name: "Pawpads",
  62471. image: {
  62472. source: "./media/characters/kara-fox/pawpads.svg"
  62473. }
  62474. },
  62475. },
  62476. [
  62477. {
  62478. name: "Normal",
  62479. height: math.unit(1.9, "meters"),
  62480. default: true
  62481. },
  62482. {
  62483. name: "Giantess",
  62484. height: math.unit(80, "meters")
  62485. },
  62486. ]
  62487. ))
  62488. characterMakers.push(() => makeCharacter(
  62489. { name: "Naomi (Espeon)", species: ["espeon"], tags: ["anthro"] },
  62490. {
  62491. front: {
  62492. height: math.unit(12, "feet"),
  62493. name: "Front",
  62494. image: {
  62495. source: "./media/characters/naomi-espeon/front.svg",
  62496. extra: 892/797,
  62497. bottom: 5/897
  62498. }
  62499. },
  62500. back: {
  62501. height: math.unit(12, "feet"),
  62502. name: "Back",
  62503. image: {
  62504. source: "./media/characters/naomi-espeon/back.svg",
  62505. extra: 890/785,
  62506. bottom: 12/902
  62507. }
  62508. },
  62509. },
  62510. [
  62511. {
  62512. name: "Normal",
  62513. height: math.unit(12, "feet"),
  62514. default: true
  62515. },
  62516. ]
  62517. ))
  62518. characterMakers.push(() => makeCharacter(
  62519. { name: "Asher Heulfyrn", species: ["skullwolf"], tags: ["anthro", "taur"] },
  62520. {
  62521. anthro_front: {
  62522. height: math.unit(8, "feet"),
  62523. weight: math.unit(625, "lb"),
  62524. name: "Front",
  62525. image: {
  62526. source: "./media/characters/asher-heulfyrn/anthro-front.svg",
  62527. extra: 638/574,
  62528. bottom: 73/711
  62529. },
  62530. form: "anthro",
  62531. default: true
  62532. },
  62533. anthro_back: {
  62534. height: math.unit(8, "feet"),
  62535. weight: math.unit(625, "lb"),
  62536. name: "Back",
  62537. image: {
  62538. source: "./media/characters/asher-heulfyrn/anthro-back.svg",
  62539. extra: 674/614,
  62540. bottom: 7/681
  62541. },
  62542. form: "anthro",
  62543. },
  62544. taur_side: {
  62545. height: math.unit(16, "feet"),
  62546. weight: math.unit(4.5, "tons"),
  62547. name: "Side",
  62548. image: {
  62549. source: "./media/characters/asher-heulfyrn/taur-side.svg",
  62550. extra: 704/646,
  62551. bottom: 132/836
  62552. },
  62553. form: "taur",
  62554. default: true
  62555. },
  62556. },
  62557. [
  62558. {
  62559. name: "Normal",
  62560. height: math.unit(8, "feet"),
  62561. default: true,
  62562. form: "anthro"
  62563. },
  62564. {
  62565. name: "Normal",
  62566. height: math.unit(16, "feet"),
  62567. default: true,
  62568. form: "taur"
  62569. },
  62570. ],
  62571. {
  62572. "anthro": {
  62573. name: "Anthro",
  62574. default: true
  62575. },
  62576. "taur": {
  62577. name: "Taur",
  62578. },
  62579. }
  62580. ))
  62581. characterMakers.push(() => makeCharacter(
  62582. { name: "Amelie", species: ["ferrin"], tags: ["anthro"] },
  62583. {
  62584. front: {
  62585. height: math.unit(190, "cm"),
  62586. weight: math.unit(110, "kg"),
  62587. name: "Front",
  62588. image: {
  62589. source: "./media/characters/amelie/front.svg",
  62590. extra: 530/442,
  62591. bottom: 35/565
  62592. }
  62593. },
  62594. },
  62595. [
  62596. {
  62597. name: "Normal",
  62598. height: math.unit(190, "cm"),
  62599. default: true
  62600. },
  62601. ]
  62602. ))
  62603. characterMakers.push(() => makeCharacter(
  62604. { name: "Valence", species: ["skulldragon"], tags: ["anthro"] },
  62605. {
  62606. front: {
  62607. height: math.unit(21, "feet"),
  62608. weight: math.unit(30000, "lb"),
  62609. name: "Front",
  62610. image: {
  62611. source: "./media/characters/valence/front.svg",
  62612. extra: 1430/1306,
  62613. bottom: 51/1481
  62614. }
  62615. },
  62616. },
  62617. [
  62618. {
  62619. name: "Normal",
  62620. height: math.unit(21, "feet"),
  62621. default: true
  62622. },
  62623. ]
  62624. ))
  62625. characterMakers.push(() => makeCharacter(
  62626. { name: "Aurora Adkins", species: ["rusty-spotted-cat"], tags: ["anthro"] },
  62627. {
  62628. front: {
  62629. height: math.unit(5 + 9/12, "feet"),
  62630. weight: math.unit(170, "lb"),
  62631. name: "Front",
  62632. image: {
  62633. source: "./media/characters/aurora-adkins/front.svg",
  62634. extra: 1141/1089,
  62635. bottom: 41/1182
  62636. }
  62637. },
  62638. },
  62639. [
  62640. {
  62641. name: "Tiny",
  62642. height: math.unit(7, "mm")
  62643. },
  62644. {
  62645. name: "Small",
  62646. height: math.unit(3.4, "inches")
  62647. },
  62648. {
  62649. name: "Normal",
  62650. height: math.unit(5 + 9/12, "feet"),
  62651. default: true
  62652. },
  62653. {
  62654. name: "Big",
  62655. height: math.unit(31, "feet")
  62656. },
  62657. {
  62658. name: "Giant",
  62659. height: math.unit(300, "feet")
  62660. },
  62661. ]
  62662. ))
  62663. characterMakers.push(() => makeCharacter(
  62664. { name: "Cyber", species: ["maned-wolf", "lynx", "deity"], tags: ["anthro"] },
  62665. {
  62666. front: {
  62667. height: math.unit(5 + 6/12, "feet"),
  62668. weight: math.unit(210, "lb"),
  62669. name: "Front",
  62670. image: {
  62671. source: "./media/characters/cyber/front.svg",
  62672. extra: 1968/1798,
  62673. bottom: 10/1978
  62674. },
  62675. extraAttributes: {
  62676. "shoeSize": {
  62677. name: "Shoe Size",
  62678. power: 1,
  62679. type: "length",
  62680. base: math.unit(30, "ShoeSizeMensUS")
  62681. },
  62682. }
  62683. },
  62684. },
  62685. [
  62686. {
  62687. name: "Normal",
  62688. height: math.unit(5 + 6/12, "feet"),
  62689. default: true
  62690. },
  62691. ]
  62692. ))
  62693. characterMakers.push(() => makeCharacter(
  62694. { name: "Sapphire Wairimea", species: ["elf"], tags: ["anthro"] },
  62695. {
  62696. front: {
  62697. height: math.unit(6 + 6/12, "feet"),
  62698. weight: math.unit(140, "lb"),
  62699. name: "Front",
  62700. image: {
  62701. source: "./media/characters/sapphire-wairimea/front.svg",
  62702. extra: 475/458,
  62703. bottom: 14/489
  62704. }
  62705. },
  62706. },
  62707. [
  62708. {
  62709. name: "Normal",
  62710. height: math.unit(6 + 6/12, "feet")
  62711. },
  62712. {
  62713. name: "Macro",
  62714. height: math.unit(132, "feet"),
  62715. default: true
  62716. },
  62717. ]
  62718. ))
  62719. characterMakers.push(() => makeCharacter(
  62720. { name: "Cirkazi", species: ["elf"], tags: ["anthro"] },
  62721. {
  62722. front: {
  62723. height: math.unit(1.6, "meters"),
  62724. weight: math.unit(100, "lb"),
  62725. name: "Front",
  62726. image: {
  62727. source: "./media/characters/cirkazi/front.svg",
  62728. extra: 489/477,
  62729. bottom: 0/489
  62730. }
  62731. },
  62732. },
  62733. [
  62734. {
  62735. name: "Normal",
  62736. height: math.unit(1.6, "meters")
  62737. },
  62738. {
  62739. name: "Macro",
  62740. height: math.unit(800, "feet"),
  62741. default: true
  62742. },
  62743. ]
  62744. ))
  62745. characterMakers.push(() => makeCharacter(
  62746. { name: "Corrin Cavelli", species: ["human"], tags: ["anthro"] },
  62747. {
  62748. front: {
  62749. height: math.unit(5 + 10/12, "feet"),
  62750. weight: math.unit(145, "lb"),
  62751. name: "Front",
  62752. image: {
  62753. source: "./media/characters/corrin-cavelli/front.svg",
  62754. extra: 483/464,
  62755. bottom: 6/489
  62756. }
  62757. },
  62758. },
  62759. [
  62760. {
  62761. name: "Human",
  62762. height: math.unit(5 + 10/12, "feet")
  62763. },
  62764. {
  62765. name: "Giant",
  62766. height: math.unit(210, "feet"),
  62767. default: true
  62768. },
  62769. ]
  62770. ))
  62771. characterMakers.push(() => makeCharacter(
  62772. { name: "Lori Lopez", species: ["human"], tags: ["anthro"] },
  62773. {
  62774. back: {
  62775. height: math.unit(5 + 6/12, "feet"),
  62776. weight: math.unit(115, "lb"),
  62777. name: "Back",
  62778. image: {
  62779. source: "./media/characters/lori-lopez/back.svg",
  62780. extra: 483/474,
  62781. bottom: 6/489
  62782. }
  62783. },
  62784. },
  62785. [
  62786. {
  62787. name: "Human",
  62788. height: math.unit(5 + 6/12, "feet")
  62789. },
  62790. {
  62791. name: "Macro",
  62792. height: math.unit(198, "feet"),
  62793. default: true
  62794. },
  62795. ]
  62796. ))
  62797. characterMakers.push(() => makeCharacter(
  62798. { name: "Sylvia Beauregard", species: ["human"], tags: ["anthro"] },
  62799. {
  62800. front: {
  62801. height: math.unit(6, "feet"),
  62802. weight: math.unit(220, "lb"),
  62803. name: "Front",
  62804. image: {
  62805. source: "./media/characters/sylvia-beauregard/front.svg",
  62806. extra: 483/479,
  62807. bottom: 6/489
  62808. }
  62809. },
  62810. },
  62811. [
  62812. {
  62813. name: "Macro",
  62814. height: math.unit(2071, "feet"),
  62815. default: true
  62816. },
  62817. ]
  62818. ))
  62819. characterMakers.push(() => makeCharacter(
  62820. { name: "Akiko Takahashi", species: ["human"], tags: ["anthro"] },
  62821. {
  62822. back: {
  62823. height: math.unit(5 + 6/12, "feet"),
  62824. weight: math.unit(160, "lb"),
  62825. name: "Back",
  62826. image: {
  62827. source: "./media/characters/akiko-takahashi/back.svg",
  62828. extra: 459/454,
  62829. bottom: 27/486
  62830. }
  62831. },
  62832. },
  62833. [
  62834. {
  62835. name: "Human",
  62836. height: math.unit(5 + 6/12, "feet")
  62837. },
  62838. {
  62839. name: "Macro",
  62840. height: math.unit(198, "feet"),
  62841. default: true
  62842. },
  62843. {
  62844. name: "Megamacro",
  62845. height: math.unit(7128, "feet")
  62846. },
  62847. ]
  62848. ))
  62849. characterMakers.push(() => makeCharacter(
  62850. { name: "Velvet Garza", species: ["human"], tags: ["anthro"] },
  62851. {
  62852. front: {
  62853. height: math.unit(6, "feet"),
  62854. weight: math.unit(140, "lb"),
  62855. name: "Front",
  62856. image: {
  62857. source: "./media/characters/velvet-garza/front.svg",
  62858. extra: 480/462,
  62859. bottom: 7/487
  62860. }
  62861. },
  62862. },
  62863. [
  62864. {
  62865. name: "Macro",
  62866. height: math.unit(37, "feet"),
  62867. default: true
  62868. },
  62869. ]
  62870. ))
  62871. characterMakers.push(() => makeCharacter(
  62872. { name: "Gaia", species: ["deity", "human"], tags: ["anthro"] },
  62873. {
  62874. front: {
  62875. height: math.unit(7 + 6/12, "feet"),
  62876. weight: math.unit(400, "lb"),
  62877. name: "Front",
  62878. image: {
  62879. source: "./media/characters/gaia/front.svg",
  62880. extra: 474/463,
  62881. bottom: 13/487
  62882. }
  62883. },
  62884. },
  62885. [
  62886. {
  62887. name: "MiniMacro",
  62888. height: math.unit(7 + 6/12, "feet")
  62889. },
  62890. {
  62891. name: "GigaMacro",
  62892. height: math.unit(14500, "feet"),
  62893. default: true
  62894. },
  62895. ]
  62896. ))
  62897. characterMakers.push(() => makeCharacter(
  62898. { name: "Tim", species: ["rabbit"], tags: ["anthro"] },
  62899. {
  62900. front: {
  62901. height: math.unit(6, "feet"),
  62902. weight: math.unit(150, "lb"),
  62903. name: "Front",
  62904. image: {
  62905. source: "./media/characters/tim/front.svg",
  62906. extra: 1878/1743,
  62907. bottom: 9/1887
  62908. }
  62909. },
  62910. frontDressed: {
  62911. height: math.unit(6, "feet"),
  62912. weight: math.unit(150, "lb"),
  62913. name: "Front (Dressed)",
  62914. image: {
  62915. source: "./media/characters/tim/front-dressed.svg",
  62916. extra: 1765/1485,
  62917. bottom: 48/1813
  62918. }
  62919. },
  62920. backDressed: {
  62921. height: math.unit(6, "feet"),
  62922. weight: math.unit(150, "lb"),
  62923. name: "Back (Dressed)",
  62924. image: {
  62925. source: "./media/characters/tim/back-dressed.svg",
  62926. extra: 1750/1465,
  62927. bottom: 25/1775
  62928. }
  62929. },
  62930. dick: {
  62931. height: math.unit(1.5, "feet"),
  62932. weight: math.unit(6, "lb"),
  62933. name: "Dick",
  62934. image: {
  62935. source: "./media/characters/tim/dick.svg"
  62936. }
  62937. },
  62938. hand: {
  62939. height: math.unit(0.522, "feet"),
  62940. name: "Hand",
  62941. image: {
  62942. source: "./media/characters/tim/hand.svg"
  62943. }
  62944. },
  62945. palm: {
  62946. height: math.unit(0.48, "feet"),
  62947. name: "Palm",
  62948. image: {
  62949. source: "./media/characters/tim/palm.svg"
  62950. }
  62951. },
  62952. paw: {
  62953. height: math.unit(0.9, "feet"),
  62954. name: "Paw",
  62955. image: {
  62956. source: "./media/characters/tim/paw.svg"
  62957. }
  62958. },
  62959. sole: {
  62960. height: math.unit(0.88, "feet"),
  62961. name: "Sole",
  62962. image: {
  62963. source: "./media/characters/tim/sole.svg"
  62964. }
  62965. },
  62966. },
  62967. [
  62968. {
  62969. name: "Macro",
  62970. height: math.unit(1000, "feet")
  62971. },
  62972. {
  62973. name: "Megamacro",
  62974. height: math.unit(10000, "feet"),
  62975. default: true
  62976. },
  62977. {
  62978. name: "Megamacro+",
  62979. height: math.unit(50000, "feet")
  62980. },
  62981. {
  62982. name: "Gigamacro",
  62983. height: math.unit(150000, "km")
  62984. },
  62985. ]
  62986. ))
  62987. characterMakers.push(() => makeCharacter(
  62988. { name: "Abel Delreoux", species: ["maine-coon"], tags: ["anthro"] },
  62989. {
  62990. front: {
  62991. height: math.unit(5 + 8/12, "feet"),
  62992. weight: math.unit(170, "lb"),
  62993. name: "Front",
  62994. image: {
  62995. source: "./media/characters/abel-delreoux/front.svg",
  62996. extra: 1615/1500,
  62997. bottom: 82/1697
  62998. }
  62999. },
  63000. back: {
  63001. height: math.unit(5 + 8/12, "feet"),
  63002. weight: math.unit(170, "lb"),
  63003. name: "Back",
  63004. image: {
  63005. source: "./media/characters/abel-delreoux/back.svg",
  63006. extra: 1644/1534,
  63007. bottom: 24/1668
  63008. }
  63009. },
  63010. casual: {
  63011. height: math.unit(5 + 8/12, "feet"),
  63012. weight: math.unit(170, "lb"),
  63013. name: "Casual",
  63014. image: {
  63015. source: "./media/characters/abel-delreoux/casual.svg",
  63016. extra: 1716/1598,
  63017. bottom: 29/1745
  63018. }
  63019. },
  63020. sleepy: {
  63021. height: math.unit(5 + 8/12, "feet"),
  63022. weight: math.unit(170, "lb"),
  63023. name: "Sleepy",
  63024. image: {
  63025. source: "./media/characters/abel-delreoux/sleepy.svg",
  63026. extra: 1649/1573,
  63027. bottom: 22/1671
  63028. }
  63029. },
  63030. fem: {
  63031. height: math.unit(5 + 8/12, "feet"),
  63032. weight: math.unit(170, "lb"),
  63033. name: "Fem",
  63034. image: {
  63035. source: "./media/characters/abel-delreoux/fem.svg",
  63036. extra: 1680/1564,
  63037. bottom: 17/1697
  63038. }
  63039. },
  63040. hand: {
  63041. height: math.unit(0.78, "feet"),
  63042. name: "Hand",
  63043. image: {
  63044. source: "./media/characters/abel-delreoux/hand.svg"
  63045. }
  63046. },
  63047. paw: {
  63048. height: math.unit(0.78, "feet"),
  63049. name: "Paw",
  63050. image: {
  63051. source: "./media/characters/abel-delreoux/paw.svg"
  63052. }
  63053. },
  63054. },
  63055. [
  63056. {
  63057. name: "Normal",
  63058. height: math.unit(5 + 8/12, "feet"),
  63059. default: true
  63060. },
  63061. ]
  63062. ))
  63063. characterMakers.push(() => makeCharacter(
  63064. { name: "Meus", species: ["phoenix"], tags: ["anthro"] },
  63065. {
  63066. front: {
  63067. height: math.unit(6, "feet"),
  63068. weight: math.unit(159, "lb"),
  63069. name: "Front",
  63070. image: {
  63071. source: "./media/characters/meus/front.svg",
  63072. extra: 938/843,
  63073. bottom: 37/975
  63074. }
  63075. },
  63076. back: {
  63077. height: math.unit(6, "feet"),
  63078. weight: math.unit(159, "lb"),
  63079. name: "Back",
  63080. image: {
  63081. source: "./media/characters/meus/back.svg",
  63082. extra: 967/873,
  63083. bottom: 12/979
  63084. }
  63085. },
  63086. },
  63087. [
  63088. {
  63089. name: "Micro",
  63090. height: math.unit(2, "inches")
  63091. },
  63092. {
  63093. name: "Mini",
  63094. height: math.unit(6, "inches")
  63095. },
  63096. {
  63097. name: "Normal",
  63098. height: math.unit(6, "feet"),
  63099. default: true
  63100. },
  63101. {
  63102. name: "Macro",
  63103. height: math.unit(84, "feet")
  63104. },
  63105. ]
  63106. ))
  63107. characterMakers.push(() => makeCharacter(
  63108. { name: "Yamato", species: ["kobold"], tags: ["anthro"] },
  63109. {
  63110. front: {
  63111. height: math.unit(60, "cm"),
  63112. weight: math.unit(18, "kg"),
  63113. name: "Front",
  63114. image: {
  63115. source: "./media/characters/yamato/front.svg",
  63116. extra: 733/688,
  63117. bottom: 29/762
  63118. }
  63119. },
  63120. },
  63121. [
  63122. {
  63123. name: "Micro",
  63124. height: math.unit(6, "cm")
  63125. },
  63126. {
  63127. name: "Normal",
  63128. height: math.unit(60, "cm"),
  63129. default: true
  63130. },
  63131. ]
  63132. ))
  63133. characterMakers.push(() => makeCharacter(
  63134. { name: "Barus", species: ["deity"], tags: ["anthro"] },
  63135. {
  63136. front: {
  63137. height: math.unit(9, "feet"),
  63138. weight: math.unit(518, "lb"),
  63139. name: "Front",
  63140. image: {
  63141. source: "./media/characters/barus/front.svg",
  63142. extra: 1877/1795,
  63143. bottom: 55/1932
  63144. }
  63145. },
  63146. },
  63147. [
  63148. {
  63149. name: "Base Height",
  63150. height: math.unit(9, "feet"),
  63151. default: true
  63152. },
  63153. {
  63154. name: "Large",
  63155. height: math.unit(18, "feet")
  63156. },
  63157. {
  63158. name: "Giant",
  63159. height: math.unit(100, "feet")
  63160. },
  63161. {
  63162. name: "Huge",
  63163. height: math.unit(500, "feet")
  63164. },
  63165. {
  63166. name: "Enormous",
  63167. height: math.unit(300, "meters")
  63168. },
  63169. {
  63170. name: "Deity Among Man",
  63171. height: math.unit(3000, "meters")
  63172. },
  63173. ]
  63174. ))
  63175. //characters
  63176. function makeCharacters() {
  63177. const results = [];
  63178. characterMakers.forEach(character => {
  63179. results.push(character());
  63180. });
  63181. return results;
  63182. }