less copy protection, more size visualization
25'ten fazla konu seçemezsiniz Konular bir harf veya rakamla başlamalı, kısa çizgiler ('-') içerebilir ve en fazla 35 karakter uzunluğunda olabilir.
 
 
 

66429 satır
1.7 MiB

  1. const characterMakers = [];
  2. function makeCharacter(info, viewInfo, defaultSizes, forms) {
  3. views = {};
  4. Object.entries(viewInfo).forEach(([key, value]) => {
  5. views[key] = {
  6. attributes: {
  7. height: {
  8. name: "Height",
  9. power: 1,
  10. type: "length",
  11. base: value.height
  12. }
  13. },
  14. image: value.image,
  15. form: value.form,
  16. name: value.name,
  17. info: value.info,
  18. rename: value.rename,
  19. default: value.default
  20. }
  21. if (value.weight) {
  22. views[key].attributes.weight = {
  23. name: "Mass",
  24. power: 3,
  25. type: "mass",
  26. base: value.weight
  27. };
  28. }
  29. if (value.volume) {
  30. views[key].attributes.volume = {
  31. name: "Volume",
  32. power: 3,
  33. type: "volume",
  34. base: value.volume
  35. };
  36. }
  37. if (value.capacity) {
  38. views[key].attributes.capacity = {
  39. name: "Capacity",
  40. power: 3,
  41. type: "volume",
  42. base: value.capacity
  43. }
  44. }
  45. if (value.preyCapacity) {
  46. views[key].attributes.preyCapacity = {
  47. name: "Prey Capacity",
  48. power: 3,
  49. type: "volume",
  50. base: value.preyCapacity,
  51. defaultUnit: "people"
  52. }
  53. }
  54. if (value.energyNeed) {
  55. views[key].attributes.capacity = {
  56. name: "Food Intake",
  57. power: 3 * 3 / 4,
  58. type: "energy",
  59. base: value.energyNeed
  60. }
  61. }
  62. if (value.extraAttributes) {
  63. Object.entries(value.extraAttributes).forEach(([attrKey, attrValue]) => {
  64. views[key].attributes[attrKey] = attrValue
  65. })
  66. }
  67. });
  68. return createEntityMaker(info, views, defaultSizes, forms);
  69. }
  70. const speciesData = {
  71. animal: {
  72. name: "Animal"
  73. },
  74. dog: {
  75. name: "Dog",
  76. parents: [
  77. "canine"
  78. ]
  79. },
  80. canine: {
  81. name: "Canine",
  82. parents: [
  83. "mammal"
  84. ]
  85. },
  86. crux: {
  87. name: "Crux",
  88. parents: [
  89. "mammal"
  90. ]
  91. },
  92. mammal: {
  93. name: "Mammal",
  94. parents: [
  95. "animal"
  96. ]
  97. },
  98. "rough-collie": {
  99. name: "Rough Collie",
  100. parents: [
  101. "dog"
  102. ]
  103. },
  104. dragon: {
  105. name: "Dragon",
  106. parents: [
  107. "reptile"
  108. ]
  109. },
  110. reptile: {
  111. name: "Reptile",
  112. parents: [
  113. "animal"
  114. ]
  115. },
  116. woodpecker: {
  117. name: "Woodpecker",
  118. parents: [
  119. "avian"
  120. ]
  121. },
  122. avian: {
  123. name: "Avian",
  124. parents: [
  125. "animal"
  126. ]
  127. },
  128. kitsune: {
  129. name: "Kitsune",
  130. parents: [
  131. "fox"
  132. ]
  133. },
  134. fox: {
  135. name: "Fox",
  136. parents: [
  137. "mammal"
  138. ]
  139. },
  140. pokemon: {
  141. name: "Pokemon",
  142. parents: [
  143. "video-games"
  144. ]
  145. },
  146. tiger: {
  147. name: "Tiger",
  148. parents: [
  149. "cat"
  150. ]
  151. },
  152. cat: {
  153. name: "Cat",
  154. parents: [
  155. "feliform"
  156. ]
  157. },
  158. "blue-jay": {
  159. name: "Blue Jay",
  160. parents: [
  161. "corvid"
  162. ]
  163. },
  164. wolf: {
  165. name: "Wolf",
  166. parents: [
  167. "mammal"
  168. ]
  169. },
  170. coyote: {
  171. name: "Coyote",
  172. parents: [
  173. "mammal"
  174. ]
  175. },
  176. raccoon: {
  177. name: "Raccoon",
  178. parents: [
  179. "mammal"
  180. ]
  181. },
  182. weasel: {
  183. name: "Weasel",
  184. parents: [
  185. "mustelid"
  186. ]
  187. },
  188. "red-panda": {
  189. name: "Red Panda",
  190. parents: [
  191. "mammal"
  192. ]
  193. },
  194. dolphin: {
  195. name: "Dolphin",
  196. parents: [
  197. "mammal"
  198. ]
  199. },
  200. "african-wild-dog": {
  201. name: "African Wild Dog",
  202. parents: [
  203. "canine"
  204. ]
  205. },
  206. "hyena": {
  207. name: "Hyena",
  208. parents: [
  209. "feliform"
  210. ]
  211. },
  212. "carbuncle": {
  213. name: "Carbuncle",
  214. parents: [
  215. "animal"
  216. ]
  217. },
  218. bat: {
  219. name: "Bat",
  220. parents: [
  221. "mammal"
  222. ]
  223. },
  224. "leaf-nosed-bat": {
  225. name: "Leaf-Nosed Bat",
  226. parents: [
  227. "bat"
  228. ]
  229. },
  230. "fish": {
  231. name: "Fish",
  232. parents: [
  233. "animal",
  234. "aquatic"
  235. ]
  236. },
  237. "ram": {
  238. name: "Ram",
  239. parents: [
  240. "mammal"
  241. ]
  242. },
  243. "demon": {
  244. name: "Demon",
  245. parents: [
  246. "supernatural"
  247. ]
  248. },
  249. "cougar": {
  250. name: "Cougar",
  251. parents: [
  252. "cat"
  253. ]
  254. },
  255. "goat": {
  256. name: "Goat",
  257. parents: [
  258. "mammal"
  259. ]
  260. },
  261. "lion": {
  262. name: "Lion",
  263. parents: [
  264. "cat"
  265. ]
  266. },
  267. "harpy-eager": {
  268. name: "Harpy Eagle",
  269. parents: [
  270. "avian"
  271. ]
  272. },
  273. "deer": {
  274. name: "Deer",
  275. parents: [
  276. "mammal"
  277. ]
  278. },
  279. "phoenix": {
  280. name: "Phoenix",
  281. parents: [
  282. "avian"
  283. ]
  284. },
  285. "aeromorph": {
  286. name: "Aeromorph",
  287. parents: [
  288. "machine"
  289. ]
  290. },
  291. "machine": {
  292. name: "Machine",
  293. },
  294. "android": {
  295. name: "Android",
  296. parents: [
  297. "machine"
  298. ]
  299. },
  300. "jackal": {
  301. name: "Jackal",
  302. parents: [
  303. "canine"
  304. ]
  305. },
  306. "corvid": {
  307. name: "Corvid",
  308. parents: [
  309. "passerine"
  310. ]
  311. },
  312. "pharaoh-hound": {
  313. name: "Pharaoh Hound",
  314. parents: [
  315. "dog"
  316. ]
  317. },
  318. "skunk": {
  319. name: "Skunk",
  320. parents: [
  321. "mammal"
  322. ]
  323. },
  324. "shark": {
  325. name: "Shark",
  326. parents: [
  327. "fish"
  328. ]
  329. },
  330. "black-panther": {
  331. name: "Black Panther",
  332. parents: [
  333. "cat"
  334. ]
  335. },
  336. "umbra": {
  337. name: "Umbra",
  338. parents: [
  339. "animal"
  340. ]
  341. },
  342. "raven": {
  343. name: "Raven",
  344. parents: [
  345. "corvid"
  346. ]
  347. },
  348. "snow-leopard": {
  349. name: "Snow Leopard",
  350. parents: [
  351. "cat"
  352. ]
  353. },
  354. "barbary-lion": {
  355. name: "Barbary Lion",
  356. parents: [
  357. "lion"
  358. ]
  359. },
  360. "dra'gal": {
  361. name: "Dra'Gal",
  362. parents: [
  363. "mammal"
  364. ]
  365. },
  366. "german-shepherd": {
  367. name: "German Shepherd",
  368. parents: [
  369. "dog"
  370. ]
  371. },
  372. "bayleef": {
  373. name: "Bayleef",
  374. parents: [
  375. "pokemon",
  376. "plant",
  377. "animal"
  378. ]
  379. },
  380. "mouse": {
  381. name: "Mouse",
  382. parents: [
  383. "rodent"
  384. ]
  385. },
  386. "rat": {
  387. name: "Rat",
  388. parents: [
  389. "mammal"
  390. ]
  391. },
  392. "hoshiko-beast": {
  393. name: "Hoshiko Beast",
  394. parents: ["animal"]
  395. },
  396. "snow-jugani": {
  397. name: "Snow Jugani",
  398. parents: ["cat"]
  399. },
  400. "patamon": {
  401. name: "Patamon",
  402. parents: ["digimon", "guinea-pig"]
  403. },
  404. "digimon": {
  405. name: "Digimon",
  406. parents: [
  407. "video-games"
  408. ]
  409. },
  410. "jugani": {
  411. name: "Jugani",
  412. parents: ["cat"]
  413. },
  414. "luxray": {
  415. name: "Luxray",
  416. parents: ["pokemon", "lion"]
  417. },
  418. "mech": {
  419. name: "Mech",
  420. parents: ["machine"]
  421. },
  422. "zoid": {
  423. name: "Zoid",
  424. parents: ["mech"]
  425. },
  426. "monster": {
  427. name: "Monster",
  428. parents: ["animal"]
  429. },
  430. "foo-dog": {
  431. name: "Foo Dog",
  432. parents: ["mammal"]
  433. },
  434. "elephant": {
  435. name: "Elephant",
  436. parents: ["mammal"]
  437. },
  438. "eagle": {
  439. name: "Eagle",
  440. parents: ["bird-of-prey"]
  441. },
  442. "cow": {
  443. name: "Cow",
  444. parents: ["mammal"]
  445. },
  446. "crocodile": {
  447. name: "Crocodile",
  448. parents: ["reptile"]
  449. },
  450. "borzoi": {
  451. name: "Borzoi",
  452. parents: ["dog"]
  453. },
  454. "snake": {
  455. name: "Snake",
  456. parents: ["reptile"]
  457. },
  458. "horned-bush-viper": {
  459. name: "Horned Bush Viper",
  460. parents: ["viper"]
  461. },
  462. "cobra": {
  463. name: "Cobra",
  464. parents: ["snake"]
  465. },
  466. "harpy-eagle": {
  467. name: "Harpy Eagle",
  468. parents: ["eagle"]
  469. },
  470. "raptor": {
  471. name: "Raptor",
  472. parents: ["dinosaur"]
  473. },
  474. "dinosaur": {
  475. name: "Dinosaur",
  476. parents: ["saurian"]
  477. },
  478. "saurian": {
  479. name: "Saurian",
  480. parents: ["lizard"]
  481. },
  482. "veilhound": {
  483. name: "Veilhound",
  484. parents: ["hellhound"]
  485. },
  486. "hellhound": {
  487. name: "Hellhound",
  488. parents: ["canine", "demon"]
  489. },
  490. "insect": {
  491. name: "Insect",
  492. parents: ["animal"]
  493. },
  494. "beetle": {
  495. name: "Beetle",
  496. parents: ["insect"]
  497. },
  498. "moth": {
  499. name: "Moth",
  500. parents: ["insect"]
  501. },
  502. "eastern-dragon": {
  503. name: "Eastern Dragon",
  504. parents: ["dragon"]
  505. },
  506. "jaguar": {
  507. name: "Jaguar",
  508. parents: ["cat"]
  509. },
  510. "horse": {
  511. name: "Horse",
  512. parents: ["mammal"]
  513. },
  514. "sergal": {
  515. name: "Sergal",
  516. parents: ["mammal", "avian", "vilous"]
  517. },
  518. "gryphon": {
  519. name: "Gryphon",
  520. parents: ["lion", "eagle"]
  521. },
  522. "robot": {
  523. name: "Robot",
  524. parents: ["machine"]
  525. },
  526. "medihound": {
  527. name: "Medihound",
  528. parents: ["robot", "dog"]
  529. },
  530. "sylveon": {
  531. name: "Sylveon",
  532. parents: ["pokemon"]
  533. },
  534. "catgirl": {
  535. name: "Catgirl",
  536. parents: ["mammal"]
  537. },
  538. "cowgirl": {
  539. name: "Cowgirl",
  540. parents: ["mammal"]
  541. },
  542. "pony": {
  543. name: "Pony",
  544. parents: ["horse"]
  545. },
  546. "rabbit": {
  547. name: "Rabbit",
  548. parents: ["leporidae"]
  549. },
  550. "fennec-fox": {
  551. name: "Fennec Fox",
  552. parents: ["fox"]
  553. },
  554. "azodian": {
  555. name: "Azodian",
  556. parents: ["mouse"]
  557. },
  558. "shiba-inu": {
  559. name: "Shiba Inu",
  560. parents: ["dog"]
  561. },
  562. "changeling": {
  563. name: "Changeling",
  564. parents: ["insect"]
  565. },
  566. "cheetah": {
  567. name: "Cheetah",
  568. parents: ["cat"]
  569. },
  570. "golden-jackal": {
  571. name: "Golden Jackal",
  572. parents: ["jackal"]
  573. },
  574. "manectric": {
  575. name: "Manectric",
  576. parents: ["pokemon", "wolf"]
  577. },
  578. "rat": {
  579. name: "Rat",
  580. parents: ["rodent"]
  581. },
  582. "rodent": {
  583. name: "Rodent",
  584. parents: ["mammal"]
  585. },
  586. "octocoon": {
  587. name: "Octocoon",
  588. parents: ["raccoon", "octopus"]
  589. },
  590. "octopus": {
  591. name: "Octopus",
  592. parents: ["fish"]
  593. },
  594. "werewolf": {
  595. name: "Werewolf",
  596. parents: ["wolf", "werebeast"]
  597. },
  598. "werebeast": {
  599. name: "Werebeast",
  600. parents: ["monster"]
  601. },
  602. "meerkat": {
  603. name: "Meerkat",
  604. parents: ["mammal"]
  605. },
  606. "human": {
  607. name: "Human",
  608. parents: ["mammal", "humanoid"]
  609. },
  610. "geth": {
  611. name: "Geth",
  612. parents: ["android"]
  613. },
  614. "husky": {
  615. name: "Husky",
  616. parents: ["dog"]
  617. },
  618. "long-eared-bat": {
  619. name: "Long Eared Bat",
  620. parents: ["bat"]
  621. },
  622. "lizard": {
  623. name: "Lizard",
  624. parents: ["reptile"]
  625. },
  626. "salamander": {
  627. name: "Salamander",
  628. parents: ["lizard"]
  629. },
  630. "chameleon": {
  631. name: "Chameleon",
  632. parents: ["lizard"]
  633. },
  634. "gecko": {
  635. name: "Gecko",
  636. parents: ["lizard"]
  637. },
  638. "kobold": {
  639. name: "Kobold",
  640. parents: ["reptile"]
  641. },
  642. "charizard": {
  643. name: "Charizard",
  644. parents: ["pokemon", "dragon"]
  645. },
  646. "lugia": {
  647. name: "Lugia",
  648. parents: ["pokemon", "avian"]
  649. },
  650. "cerberus": {
  651. name: "Cerberus",
  652. parents: ["dog"]
  653. },
  654. "tyrantrum": {
  655. name: "Tyrantrum",
  656. parents: ["pokemon"]
  657. },
  658. "lemur": {
  659. name: "Lemur",
  660. parents: ["mammal"]
  661. },
  662. "kelpie": {
  663. name: "Kelpie",
  664. parents: ["horse", "monster"]
  665. },
  666. "labrador": {
  667. name: "Labrador",
  668. parents: ["dog"]
  669. },
  670. "sylveon": {
  671. name: "Sylveon",
  672. parents: ["eeveelution"]
  673. },
  674. "eeveelution": {
  675. name: "Eeveelution",
  676. parents: ["pokemon", "cat"]
  677. },
  678. "polar-bear": {
  679. name: "Polar Bear",
  680. parents: ["bear"]
  681. },
  682. "bear": {
  683. name: "Bear",
  684. parents: ["mammal"]
  685. },
  686. "absol": {
  687. name: "Absol",
  688. parents: ["pokemon", "cat"]
  689. },
  690. "wolver": {
  691. name: "Wolver",
  692. parents: ["mammal"]
  693. },
  694. "rottweiler": {
  695. name: "Rottweiler",
  696. parents: ["dog"]
  697. },
  698. "zebra": {
  699. name: "Zebra",
  700. parents: ["horse"]
  701. },
  702. "yoshi": {
  703. name: "Yoshi",
  704. parents: ["dinosaur"]
  705. },
  706. "lynx": {
  707. name: "Lynx",
  708. parents: ["cat"]
  709. },
  710. "unknown": {
  711. name: "Unknown",
  712. parents: []
  713. },
  714. "thylacine": {
  715. name: "Thylacine",
  716. parents: ["mammal"]
  717. },
  718. "gabumon": {
  719. name: "Gabumon",
  720. parents: ["digimon"]
  721. },
  722. "border-collie": {
  723. name: "Border Collie",
  724. parents: ["dog"]
  725. },
  726. "imp": {
  727. name: "Imp",
  728. parents: ["demon"]
  729. },
  730. "kangaroo": {
  731. name: "Kangaroo",
  732. parents: ["marsupial"]
  733. },
  734. "renamon": {
  735. name: "Renamon",
  736. parents: ["digimon", "fox"]
  737. },
  738. "candy-orca-dragon": {
  739. name: "Candy Orca Dragon",
  740. parents: ["fish", "dragon", "candy"]
  741. },
  742. "sabertooth-tiger": {
  743. name: "Sabertooth Tiger",
  744. parents: ["cat"]
  745. },
  746. "espurr": {
  747. name: "Espurr",
  748. parents: ["pokemon", "cat"]
  749. },
  750. "otter": {
  751. name: "Otter",
  752. parents: ["mustelid"]
  753. },
  754. "elemental": {
  755. name: "Elemental",
  756. parents: ["mammal"]
  757. },
  758. "mew": {
  759. name: "Mew",
  760. parents: ["pokemon"]
  761. },
  762. "goodra": {
  763. name: "Goodra",
  764. parents: ["pokemon"]
  765. },
  766. "fairy": {
  767. name: "Fairy",
  768. parents: ["magical"]
  769. },
  770. "typhlosion": {
  771. name: "Typhlosion",
  772. parents: ["pokemon"]
  773. },
  774. "magical": {
  775. name: "Magical",
  776. parents: []
  777. },
  778. "xenomorph": {
  779. name: "Xenomorph",
  780. parents: ["monster", "alien"]
  781. },
  782. "charr": {
  783. name: "Charr",
  784. parents: ["cat"]
  785. },
  786. "siberian-husky": {
  787. name: "Siberian Husky",
  788. parents: ["husky"]
  789. },
  790. "alligator": {
  791. name: "Alligator",
  792. parents: ["reptile"]
  793. },
  794. "bernese-mountain-dog": {
  795. name: "Bernese Mountain Dog",
  796. parents: ["dog"]
  797. },
  798. "reshiram": {
  799. name: "Reshiram",
  800. parents: ["pokemon", "dragon"]
  801. },
  802. "grizzly-bear": {
  803. name: "Grizzly Bear",
  804. parents: ["bear"]
  805. },
  806. "water-monitor": {
  807. name: "Water Monitor",
  808. parents: ["lizard"]
  809. },
  810. "banchofossa": {
  811. name: "Banchofossa",
  812. parents: ["mammal"]
  813. },
  814. "kirin": {
  815. name: "Kirin",
  816. parents: ["monster"]
  817. },
  818. "quilava": {
  819. name: "Quilava",
  820. parents: ["pokemon"]
  821. },
  822. "seviper": {
  823. name: "Seviper",
  824. parents: ["pokemon", "viper"]
  825. },
  826. "flying-fox": {
  827. name: "Flying Fox",
  828. parents: ["bat"]
  829. },
  830. "keynain": {
  831. name: "Keynain",
  832. parents: ["avian"]
  833. },
  834. "lucario": {
  835. name: "Lucario",
  836. parents: ["pokemon", "jackal"]
  837. },
  838. "siamese-cat": {
  839. name: "Siamese Cat",
  840. parents: ["cat"]
  841. },
  842. "spider": {
  843. name: "Spider",
  844. parents: ["insect"]
  845. },
  846. "samurott": {
  847. name: "Samurott",
  848. parents: ["pokemon", "otter"]
  849. },
  850. "megalodon": {
  851. name: "Megalodon",
  852. parents: ["shark"]
  853. },
  854. "unicorn": {
  855. name: "Unicorn",
  856. parents: ["horse"]
  857. },
  858. "greninja": {
  859. name: "Greninja",
  860. parents: ["pokemon", "frog"]
  861. },
  862. "water-dragon": {
  863. name: "Water Dragon",
  864. parents: ["dragon"]
  865. },
  866. "cross-fox": {
  867. name: "Cross Fox",
  868. parents: ["fox"]
  869. },
  870. "synth": {
  871. name: "Synth",
  872. parents: ["machine"]
  873. },
  874. "construct": {
  875. name: "Construct",
  876. parents: []
  877. },
  878. "mexican-wolf": {
  879. name: "Mexican Wolf",
  880. parents: ["wolf"]
  881. },
  882. "leopard": {
  883. name: "Leopard",
  884. parents: ["cat"]
  885. },
  886. "pig": {
  887. name: "Pig",
  888. parents: ["mammal"]
  889. },
  890. "ampharos": {
  891. name: "Ampharos",
  892. parents: ["pokemon", "sheep"]
  893. },
  894. "orca": {
  895. name: "Orca",
  896. parents: ["fish"]
  897. },
  898. "lycanroc": {
  899. name: "Lycanroc",
  900. parents: ["pokemon", "wolf"]
  901. },
  902. "surkanu": {
  903. name: "Surkanu",
  904. parents: ["monster"]
  905. },
  906. "seal": {
  907. name: "Seal",
  908. parents: ["mammal"]
  909. },
  910. "keldeo": {
  911. name: "Keldeo",
  912. parents: ["pokemon"]
  913. },
  914. "great-dane": {
  915. name: "Great Dane",
  916. parents: ["dog"]
  917. },
  918. "black-backed-jackal": {
  919. name: "Black Backed Jackal",
  920. parents: ["jackal"]
  921. },
  922. "sheep": {
  923. name: "Sheep",
  924. parents: ["mammal"]
  925. },
  926. "leopard-seal": {
  927. name: "Leopard Seal",
  928. parents: ["seal"]
  929. },
  930. "zoroark": {
  931. name: "Zoroark",
  932. parents: ["pokemon", "fox"]
  933. },
  934. "maned-wolf": {
  935. name: "Maned Wolf",
  936. parents: ["canine"]
  937. },
  938. "dracha": {
  939. name: "Dracha",
  940. parents: ["dragon"]
  941. },
  942. "wolxi": {
  943. name: "Wolxi",
  944. parents: ["mammal", "alien"]
  945. },
  946. "dratini": {
  947. name: "Dratini",
  948. parents: ["pokemon", "dragon"]
  949. },
  950. "skaven": {
  951. name: "Skaven",
  952. parents: ["rat"]
  953. },
  954. "mongoose": {
  955. name: "Mongoose",
  956. parents: ["mammal"]
  957. },
  958. "lopunny": {
  959. name: "Lopunny",
  960. parents: ["pokemon", "rabbit"]
  961. },
  962. "feraligatr": {
  963. name: "Feraligatr",
  964. parents: ["pokemon", "alligator"]
  965. },
  966. "houndoom": {
  967. name: "Houndoom",
  968. parents: ["pokemon", "dog"]
  969. },
  970. "protogen": {
  971. name: "Protogen",
  972. parents: ["machine"]
  973. },
  974. "saint-bernard": {
  975. name: "Saint Bernard",
  976. parents: ["dog"]
  977. },
  978. "crow": {
  979. name: "Crow",
  980. parents: ["corvid"]
  981. },
  982. "delphox": {
  983. name: "Delphox",
  984. parents: ["pokemon", "fox"]
  985. },
  986. "moose": {
  987. name: "Moose",
  988. parents: ["mammal"]
  989. },
  990. "joraxian": {
  991. name: "Joraxian",
  992. parents: ["monster", "canine", "demon"]
  993. },
  994. "nimbat": {
  995. name: "Nimbat",
  996. parents: ["mammal"]
  997. },
  998. "aardwolf": {
  999. name: "Aardwolf",
  1000. parents: ["canine"]
  1001. },
  1002. "fluudrani": {
  1003. name: "Fluudrani",
  1004. parents: ["animal"]
  1005. },
  1006. "arcanine": {
  1007. name: "Arcanine",
  1008. parents: ["pokemon", "dog"]
  1009. },
  1010. "inteleon": {
  1011. name: "Inteleon",
  1012. parents: ["pokemon", "fish"]
  1013. },
  1014. "ninetales": {
  1015. name: "Ninetales",
  1016. parents: ["pokemon", "kitsune"]
  1017. },
  1018. "tigrex": {
  1019. name: "Tigrex",
  1020. parents: ["wyvern", "monster-hunter"]
  1021. },
  1022. "zorua": {
  1023. name: "Zorua",
  1024. parents: ["pokemon", "fox"]
  1025. },
  1026. "vulpix": {
  1027. name: "Vulpix",
  1028. parents: ["pokemon", "fox"]
  1029. },
  1030. "barghest": {
  1031. name: "Barghest",
  1032. parents: ["monster"]
  1033. },
  1034. "gray-wolf": {
  1035. name: "Gray Wolf",
  1036. parents: ["wolf"]
  1037. },
  1038. "ruppells-fox": {
  1039. name: "Rüppell's Fox",
  1040. parents: ["fox"]
  1041. },
  1042. "bull-terrier": {
  1043. name: "Bull Terrier",
  1044. parents: ["dog"]
  1045. },
  1046. "european-honey-buzzard": {
  1047. name: "European Honey Buzzard",
  1048. parents: ["avian"]
  1049. },
  1050. "t-rex": {
  1051. name: "Tyrannosaurus Rex",
  1052. parents: ["theropod"]
  1053. },
  1054. "mactarian": {
  1055. name: "Mactarian",
  1056. parents: ["shark", "monster"]
  1057. },
  1058. "mewtwo-y": {
  1059. name: "Mewtwo Y",
  1060. parents: ["mewtwo"]
  1061. },
  1062. "mewtwo": {
  1063. name: "Mewtwo",
  1064. parents: ["pokemon"]
  1065. },
  1066. "eevee": {
  1067. name: "Eevee",
  1068. parents: ["eeveelution"]
  1069. },
  1070. "mienshao": {
  1071. name: "Mienshao",
  1072. parents: ["pokemon"]
  1073. },
  1074. "sugar-glider": {
  1075. name: "Sugar Glider",
  1076. parents: ["opossum"]
  1077. },
  1078. "spectral-bat": {
  1079. name: "Spectral Bat",
  1080. parents: ["bat"]
  1081. },
  1082. "scolipede": {
  1083. name: "Scolipede",
  1084. parents: ["pokemon", "insect"]
  1085. },
  1086. "jackalope": {
  1087. name: "Jackalope",
  1088. parents: ["rabbit", "antelope"]
  1089. },
  1090. "caracal": {
  1091. name: "Caracal",
  1092. parents: ["cat"]
  1093. },
  1094. "stoat": {
  1095. name: "Stoat",
  1096. parents: ["mammal"]
  1097. },
  1098. "african-golden-cat": {
  1099. name: "African Golden Cat",
  1100. parents: ["cat"]
  1101. },
  1102. "gigantosaurus": {
  1103. name: "Gigantosaurus",
  1104. parents: ["dinosaur"]
  1105. },
  1106. "zorgoia": {
  1107. name: "Zorgoia",
  1108. parents: ["mammal"]
  1109. },
  1110. "monitor-lizard": {
  1111. name: "Monitor Lizard",
  1112. parents: ["lizard"]
  1113. },
  1114. "ziralkia": {
  1115. name: "Ziralkia",
  1116. parents: ["mammal"]
  1117. },
  1118. "kiiasi": {
  1119. name: "Kiiasi",
  1120. parents: ["animal"]
  1121. },
  1122. "synx": {
  1123. name: "Synx",
  1124. parents: ["monster"]
  1125. },
  1126. "panther": {
  1127. name: "Panther",
  1128. parents: ["cat"]
  1129. },
  1130. "azumarill": {
  1131. name: "Azumarill",
  1132. parents: ["pokemon"]
  1133. },
  1134. "river-snaptail": {
  1135. name: "River Snaptail",
  1136. parents: ["otter", "crocodile"]
  1137. },
  1138. "great-blue-heron": {
  1139. name: "Great Blue Heron",
  1140. parents: ["avian"]
  1141. },
  1142. "smeargle": {
  1143. name: "Smeargle",
  1144. parents: ["pokemon"]
  1145. },
  1146. "vendeilen": {
  1147. name: "Vendeilen",
  1148. parents: ["monster"]
  1149. },
  1150. "ventura": {
  1151. name: "Ventura",
  1152. parents: ["canine"]
  1153. },
  1154. "clouded-leopard": {
  1155. name: "Clouded Leopard",
  1156. parents: ["leopard"]
  1157. },
  1158. "argonian": {
  1159. name: "Argonian",
  1160. parents: ["lizard"]
  1161. },
  1162. "salazzle": {
  1163. name: "Salazzle",
  1164. parents: ["pokemon", "lizard"]
  1165. },
  1166. "je-stoff-drachen": {
  1167. name: "Je-Stoff Drachen",
  1168. parents: ["dragon"]
  1169. },
  1170. "finnish-spitz-dog": {
  1171. name: "Finnish Spitz Dog",
  1172. parents: ["dog"]
  1173. },
  1174. "gray-fox": {
  1175. name: "Gray Fox",
  1176. parents: ["fox"]
  1177. },
  1178. "opossum": {
  1179. name: "Opossum",
  1180. parents: ["mammal"]
  1181. },
  1182. "antelope": {
  1183. name: "Antelope",
  1184. parents: ["mammal"]
  1185. },
  1186. "weavile": {
  1187. name: "Weavile",
  1188. parents: ["pokemon"]
  1189. },
  1190. "pikachu": {
  1191. name: "Pikachu",
  1192. parents: ["pokemon", "mouse"]
  1193. },
  1194. "grovyle": {
  1195. name: "Grovyle",
  1196. parents: ["pokemon", "plant"]
  1197. },
  1198. "sthara": {
  1199. name: "Sthara",
  1200. parents: ["snow-leopard", "reptile"]
  1201. },
  1202. "star-warrior": {
  1203. name: "Star Warrior",
  1204. parents: ["magical"]
  1205. },
  1206. "dragonoid": {
  1207. name: "Dragonoid",
  1208. parents: ["dragon"]
  1209. },
  1210. "suicune": {
  1211. name: "Suicune",
  1212. parents: ["pokemon"]
  1213. },
  1214. "vole": {
  1215. name: "Vole",
  1216. parents: ["mammal"]
  1217. },
  1218. "blaziken": {
  1219. name: "Blaziken",
  1220. parents: ["pokemon", "avian"]
  1221. },
  1222. "buizel": {
  1223. name: "Buizel",
  1224. parents: ["pokemon", "fish"]
  1225. },
  1226. "floatzel": {
  1227. name: "Floatzel",
  1228. parents: ["pokemon", "fish"]
  1229. },
  1230. "umok": {
  1231. name: "Umok",
  1232. parents: ["avian"]
  1233. },
  1234. "sea-monster": {
  1235. name: "Sea Monster",
  1236. parents: ["monster", "fish"]
  1237. },
  1238. "egyptian-vulture": {
  1239. name: "Egyptian Vulture",
  1240. parents: ["avian"]
  1241. },
  1242. "doberman": {
  1243. name: "Doberman",
  1244. parents: ["dog"]
  1245. },
  1246. "zangoose": {
  1247. name: "Zangoose",
  1248. parents: ["pokemon", "mongoose"]
  1249. },
  1250. "mongoose": {
  1251. name: "Mongoose",
  1252. parents: ["mammal"]
  1253. },
  1254. "wickerbeast": {
  1255. name: "Wickerbeast",
  1256. parents: ["monster"]
  1257. },
  1258. "zenari": {
  1259. name: "Zenari",
  1260. parents: ["lizard"]
  1261. },
  1262. "plant": {
  1263. name: "Plant",
  1264. parents: []
  1265. },
  1266. "raskatox": {
  1267. name: "Raskatox",
  1268. parents: ["raccoon", "skunk", "cat", "fox"]
  1269. },
  1270. "mikromare": {
  1271. name: "mikromare",
  1272. parents: ["alien"]
  1273. },
  1274. "alien": {
  1275. name: "Alien",
  1276. parents: ["animal"]
  1277. },
  1278. "deity": {
  1279. name: "Deity",
  1280. parents: []
  1281. },
  1282. "skarlan": {
  1283. name: "Skarlan",
  1284. parents: ["slug", "dragon"]
  1285. },
  1286. "slug": {
  1287. name: "Slug",
  1288. parents: ["mollusk"]
  1289. },
  1290. "mollusk": {
  1291. name: "Mollusk",
  1292. parents: ["animal"]
  1293. },
  1294. "chimera": {
  1295. name: "Chimera",
  1296. parents: ["monster"]
  1297. },
  1298. "gestalt": {
  1299. name: "Gestalt",
  1300. parents: ["construct"]
  1301. },
  1302. "mimic": {
  1303. name: "Mimic",
  1304. parents: ["monster"]
  1305. },
  1306. "calico-rat": {
  1307. name: "Calico Rat",
  1308. parents: ["rat"]
  1309. },
  1310. "panda": {
  1311. name: "Panda",
  1312. parents: ["mammal"]
  1313. },
  1314. "oni": {
  1315. name: "Oni",
  1316. parents: ["monster"]
  1317. },
  1318. "pegasus": {
  1319. name: "Pegasus",
  1320. parents: ["horse"]
  1321. },
  1322. "vulpera": {
  1323. name: "Vulpera",
  1324. parents: ["fennec-fox"]
  1325. },
  1326. "ceratosaurus": {
  1327. name: "Ceratosaurus",
  1328. parents: ["dinosaur"]
  1329. },
  1330. "nykur": {
  1331. name: "Nykur",
  1332. parents: ["horse", "monster"]
  1333. },
  1334. "giraffe": {
  1335. name: "Giraffe",
  1336. parents: ["mammal"]
  1337. },
  1338. "tauren": {
  1339. name: "Tauren",
  1340. parents: ["cow"]
  1341. },
  1342. "draconi": {
  1343. name: "Draconi",
  1344. parents: ["alien", "cat", "cyborg"]
  1345. },
  1346. "dire-wolf": {
  1347. name: "Dire Wolf",
  1348. parents: ["wolf"]
  1349. },
  1350. "ferromorph": {
  1351. name: "Ferromorph",
  1352. parents: ["construct"]
  1353. },
  1354. "meowth": {
  1355. name: "Meowth",
  1356. parents: ["cat", "pokemon"]
  1357. },
  1358. "pavodragon": {
  1359. name: "Pavodragon",
  1360. parents: ["dragon"]
  1361. },
  1362. "aaltranae": {
  1363. name: "Aaltranae",
  1364. parents: ["dragon"]
  1365. },
  1366. "cyborg": {
  1367. name: "Cyborg",
  1368. parents: ["machine"]
  1369. },
  1370. "draptor": {
  1371. name: "Draptor",
  1372. parents: ["dragon"]
  1373. },
  1374. "candy": {
  1375. name: "Candy",
  1376. parents: []
  1377. },
  1378. "drenath": {
  1379. name: "Drenath",
  1380. parents: ["dragon", "snake", "rabbit"]
  1381. },
  1382. "coyju": {
  1383. name: "Coyju",
  1384. parents: ["coyote", "kaiju"]
  1385. },
  1386. "kaiju": {
  1387. name: "Kaiju",
  1388. parents: ["monster"]
  1389. },
  1390. "nickit": {
  1391. name: "Nickit",
  1392. parents: ["pokemon", "cat"]
  1393. },
  1394. "lopunny": {
  1395. name: "Lopunny",
  1396. parents: ["pokemon", "rabbit"]
  1397. },
  1398. "korean-jindo-dog": {
  1399. name: "Korean Jindo Dog",
  1400. parents: ["dog"]
  1401. },
  1402. "naga": {
  1403. name: "Naga",
  1404. parents: ["snake", "monster"]
  1405. },
  1406. "undead": {
  1407. name: "Undead",
  1408. parents: ["monster"]
  1409. },
  1410. "whale": {
  1411. name: "Whale",
  1412. parents: ["fish"]
  1413. },
  1414. "gelato-bee": {
  1415. name: "Gelato Bee",
  1416. parents: ["bee"]
  1417. },
  1418. "bee": {
  1419. name: "Bee",
  1420. parents: ["insect"]
  1421. },
  1422. "gardevoir": {
  1423. name: "Gardevoir",
  1424. parents: ["pokemon"]
  1425. },
  1426. "ant": {
  1427. name: "Ant",
  1428. parents: ["insect"]
  1429. },
  1430. "frog": {
  1431. name: "Frog",
  1432. parents: ["amphibian"]
  1433. },
  1434. "amphibian": {
  1435. name: "Amphibian",
  1436. parents: ["animal", "aquatic"]
  1437. },
  1438. "pangolin": {
  1439. name: "Pangolin",
  1440. parents: ["mammal"]
  1441. },
  1442. "uragi'viidorn": {
  1443. name: "Uragi'viidorn",
  1444. parents: ["avian", "bear"]
  1445. },
  1446. "gryphdelphais": {
  1447. name: "Gryphdelphais",
  1448. parents: ["dolphin", "gryphon"]
  1449. },
  1450. "plush": {
  1451. name: "Plush",
  1452. parents: ["construct"]
  1453. },
  1454. "draiger": {
  1455. name: "Draiger",
  1456. parents: ["dragon","tiger"]
  1457. },
  1458. "foxsky": {
  1459. name: "Foxsky",
  1460. parents: ["fox", "husky"]
  1461. },
  1462. "umbreon": {
  1463. name: "Umbreon",
  1464. parents: ["eeveelution"]
  1465. },
  1466. "slime-dragon": {
  1467. name: "Slime Dragon",
  1468. parents: ["dragon", "goo"]
  1469. },
  1470. "enderman": {
  1471. name: "Enderman",
  1472. parents: ["monster"]
  1473. },
  1474. "gremlin": {
  1475. name: "Gremlin",
  1476. parents: ["monster"]
  1477. },
  1478. "dragonsune": {
  1479. name: "Dragonsune",
  1480. parents: ["dragon", "kitsune"]
  1481. },
  1482. "ghost": {
  1483. name: "Ghost",
  1484. parents: ["supernatural"]
  1485. },
  1486. "false-vampire-bat": {
  1487. name: "False Vampire Bat",
  1488. parents: ["bat"]
  1489. },
  1490. "succubus": {
  1491. name: "Succubus",
  1492. parents: ["demon"]
  1493. },
  1494. "mia": {
  1495. name: "Mia",
  1496. parents: ["canine"]
  1497. },
  1498. "rainbow": {
  1499. name: "Rainbow",
  1500. parents: ["monster"]
  1501. },
  1502. "solgaleo": {
  1503. name: "Solgaleo",
  1504. parents: ["pokemon"]
  1505. },
  1506. "lucent-nargacuga": {
  1507. name: "Lucent Nargacuga",
  1508. parents: ["nargacuga"]
  1509. },
  1510. "monster-hunter": {
  1511. name: "Monster Hunter",
  1512. parents: ["monster", "video-games"]
  1513. },
  1514. "leviathan": {
  1515. "name": "Leviathan",
  1516. "url": "sea-monster"
  1517. },
  1518. "bull": {
  1519. name: "Bull",
  1520. parents: ["mammal"]
  1521. },
  1522. "tanuki": {
  1523. name: "Tanuki",
  1524. parents: ["monster"]
  1525. },
  1526. "chakat": {
  1527. name: "Chakat",
  1528. parents: ["cat"]
  1529. },
  1530. "hydra": {
  1531. name: "Hydra",
  1532. parents: ["monster"]
  1533. },
  1534. "zigzagoon": {
  1535. name: "Zigzagoon",
  1536. parents: ["raccoon", "pokemon"]
  1537. },
  1538. "vulture": {
  1539. name: "Vulture",
  1540. parents: ["avian"]
  1541. },
  1542. "eastern-dragon": {
  1543. name: "Eastern Dragon",
  1544. parents: ["dragon"]
  1545. },
  1546. "gryffon": {
  1547. name: "Gryffon",
  1548. parents: ["phoenix", "red-panda"]
  1549. },
  1550. "amtsvane": {
  1551. name: "Amtsvane",
  1552. parents: ["reptile"]
  1553. },
  1554. "kigavi": {
  1555. name: "Kigavi",
  1556. parents: ["avian"]
  1557. },
  1558. "turian": {
  1559. name: "Turian",
  1560. parents: ["avian"]
  1561. },
  1562. "zeraora": {
  1563. name: "Zeraora",
  1564. parents: ["pokemon", "cat"]
  1565. },
  1566. "sandshrew": {
  1567. name: "Sandshrew",
  1568. parents: ["pokemon", "pangolin"]
  1569. },
  1570. "valais-blacknose-sheep": {
  1571. name: "Valais Blacknose Sheep",
  1572. parents: ["sheep"]
  1573. },
  1574. "novaleit": {
  1575. name: "Novaleit",
  1576. parents: ["mammal"]
  1577. },
  1578. "dunnoh": {
  1579. name: "Dunnoh",
  1580. parents: ["mammal"]
  1581. },
  1582. "lunaral-dragon": {
  1583. name: "Lunaral Dragon",
  1584. parents: ["dragon"]
  1585. },
  1586. "arctic-wolf": {
  1587. name: "Arctic Wolf",
  1588. parents: ["wolf"]
  1589. },
  1590. "donkey": {
  1591. name: "Donkey",
  1592. parents: ["horse"]
  1593. },
  1594. "chinchilla": {
  1595. name: "Chinchilla",
  1596. parents: ["rodent"]
  1597. },
  1598. "felkin": {
  1599. name: "Felkin",
  1600. parents: ["dragon"]
  1601. },
  1602. "tykeriel": {
  1603. name: "Tykeriel",
  1604. parents: ["avian"]
  1605. },
  1606. "folf": {
  1607. name: "Folf",
  1608. parents: ["fox", "wolf"]
  1609. },
  1610. "pooltoy": {
  1611. name: "Pooltoy",
  1612. parents: ["construct"]
  1613. },
  1614. "demi": {
  1615. name: "Demi",
  1616. parents: ["human"]
  1617. },
  1618. "stegosaurus": {
  1619. name: "Stegosaurus",
  1620. parents: ["dinosaur"]
  1621. },
  1622. "computer-virus": {
  1623. name: "Computer Virus",
  1624. parents: ["program"]
  1625. },
  1626. "program": {
  1627. name: "Program",
  1628. parents: ["construct"]
  1629. },
  1630. "space-springhare": {
  1631. name: "Space Springhare",
  1632. parents: ["hare"]
  1633. },
  1634. "river-drake": {
  1635. name: "River Drake",
  1636. parents: ["dragon"]
  1637. },
  1638. "djinn": {
  1639. "name": "Djinn",
  1640. "url": "supernatural"
  1641. },
  1642. "supernatural": {
  1643. name: "Supernatural",
  1644. parents: ["monster"]
  1645. },
  1646. "grasshopper-mouse": {
  1647. name: "Grasshopper Mouse",
  1648. parents: ["mouse"]
  1649. },
  1650. "somali-cat": {
  1651. name: "Somali Cat",
  1652. parents: ["cat"]
  1653. },
  1654. "minccino": {
  1655. name: "Minccino",
  1656. parents: ["pokemon", "chinchilla"]
  1657. },
  1658. "pine-marten": {
  1659. name: "Pine Marten",
  1660. parents: ["marten"]
  1661. },
  1662. "marten": {
  1663. name: "Marten",
  1664. parents: ["mustelid"]
  1665. },
  1666. "mustelid": {
  1667. name: "Mustelid",
  1668. parents: ["mammal"]
  1669. },
  1670. "caribou": {
  1671. name: "Caribou",
  1672. parents: ["deer"]
  1673. },
  1674. "gnoll": {
  1675. name: "Gnoll",
  1676. parents: ["hyena", "monster"]
  1677. },
  1678. "peacekeeper": {
  1679. name: "Peacekeeper",
  1680. parents: ["human"]
  1681. },
  1682. "river-otter": {
  1683. name: "River Otter",
  1684. parents: ["otter"]
  1685. },
  1686. "dhole": {
  1687. name: "Dhole",
  1688. parents: ["canine"]
  1689. },
  1690. "springbok": {
  1691. name: "Springbok",
  1692. parents: ["antelope"]
  1693. },
  1694. "marsupial": {
  1695. name: "Marsupial",
  1696. parents: ["mammal"]
  1697. },
  1698. "townsend-big-eared-bat": {
  1699. name: "Townsend Big-eared Bat",
  1700. parents: ["bat"]
  1701. },
  1702. "squirrel": {
  1703. name: "Squirrel",
  1704. parents: ["rodent"]
  1705. },
  1706. "magpie": {
  1707. name: "Magpie",
  1708. parents: ["corvid"]
  1709. },
  1710. "civet": {
  1711. name: "Civet",
  1712. parents: ["feliform"]
  1713. },
  1714. "feliform": {
  1715. name: "Feliform",
  1716. parents: ["mammal"]
  1717. },
  1718. "tiefling": {
  1719. name: "Tiefling",
  1720. parents: ["devil"]
  1721. },
  1722. "devil": {
  1723. name: "Devil",
  1724. parents: ["supernatural"]
  1725. },
  1726. "sika-deer": {
  1727. name: "Sika Deer",
  1728. parents: ["deer"]
  1729. },
  1730. "vaporeon": {
  1731. name: "Vaporeon",
  1732. parents: ["eeveelution"]
  1733. },
  1734. "leafeon": {
  1735. name: "Leafeon",
  1736. parents: ["eeveelution"]
  1737. },
  1738. "jolteon": {
  1739. name: "Jolteon",
  1740. parents: ["eeveelution"]
  1741. },
  1742. "spireborn": {
  1743. name: "Spireborn",
  1744. parents: ["zorgoia"]
  1745. },
  1746. "vampire": {
  1747. name: "Vampire",
  1748. parents: ["monster"]
  1749. },
  1750. "extraplanar": {
  1751. name: "Extraplanar",
  1752. parents: []
  1753. },
  1754. "goo": {
  1755. name: "Goo",
  1756. parents: []
  1757. },
  1758. "skink": {
  1759. name: "Skink",
  1760. parents: ["lizard"]
  1761. },
  1762. "bat-eared-fox": {
  1763. name: "Bat-eared Fox",
  1764. parents: ["fox"]
  1765. },
  1766. "belted-kingfisher": {
  1767. name: "Belted Kingfisher",
  1768. parents: ["avian"]
  1769. },
  1770. "omnifalcon": {
  1771. name: "Omnifalcon",
  1772. parents: ["gryphon", "falcon", "harpy-eagle"]
  1773. },
  1774. "falcon": {
  1775. name: "Falcon",
  1776. parents: ["bird-of-prey"]
  1777. },
  1778. "avali": {
  1779. name: "Avali",
  1780. parents: ["avian", "alien"]
  1781. },
  1782. "arctic-fox": {
  1783. name: "Arctic Fox",
  1784. parents: ["fox"]
  1785. },
  1786. "snow-tiger": {
  1787. name: "Snow Tiger",
  1788. parents: ["tiger"]
  1789. },
  1790. "marble-fox": {
  1791. name: "Marble Fox",
  1792. parents: ["fox"]
  1793. },
  1794. "king-wickerbeast": {
  1795. name: "King Wickerbeast",
  1796. parents: ["wickerbeast"]
  1797. },
  1798. "wickerbeast": {
  1799. name: "Wickerbeast",
  1800. parents: ["mammal"]
  1801. },
  1802. "european-polecat": {
  1803. name: "European Polecat",
  1804. parents: ["polecat"]
  1805. },
  1806. "polecat": {
  1807. name: "Polecat",
  1808. parents: ["mustelid"]
  1809. },
  1810. "teshari": {
  1811. name: "Teshari",
  1812. parents: ["avian", "raptor"]
  1813. },
  1814. "alicorn": {
  1815. name: "Alicorn",
  1816. parents: ["horse"]
  1817. },
  1818. "atlas-moth": {
  1819. name: "Atlas Moth",
  1820. parents: ["moth"]
  1821. },
  1822. "owlbear": {
  1823. name: "Owlbear",
  1824. parents: ["owl", "bear", "monster"]
  1825. },
  1826. "owl": {
  1827. name: "Owl",
  1828. parents: ["avian"]
  1829. },
  1830. "silvertongue": {
  1831. name: "Silvertongue",
  1832. parents: ["reptile"]
  1833. },
  1834. "ahuizotl": {
  1835. name: "Ahuizotl",
  1836. parents: ["monster"]
  1837. },
  1838. "ender-dragon": {
  1839. name: "Ender Dragon",
  1840. parents: ["dragon"]
  1841. },
  1842. "bruhathkayosaurus": {
  1843. name: "Bruhathkayosaurus",
  1844. parents: ["sauropod"]
  1845. },
  1846. "sauropod": {
  1847. name: "Sauropod",
  1848. parents: ["dinosaur"]
  1849. },
  1850. "black-sable-antelope": {
  1851. name: "Black Sable Antelope",
  1852. parents: ["antelope"]
  1853. },
  1854. "slime": {
  1855. name: "Slime",
  1856. parents: ["goo"]
  1857. },
  1858. "utahraptor": {
  1859. name: "Utahraptor",
  1860. parents: ["raptor"]
  1861. },
  1862. "indian-giant-squirrel": {
  1863. name: "Indian Giant Squirrel",
  1864. parents: ["squirrel"]
  1865. },
  1866. "golden-retriever": {
  1867. name: "Golden Retriever",
  1868. parents: ["dog"]
  1869. },
  1870. "triceratops": {
  1871. name: "Triceratops",
  1872. parents: ["dinosaur"]
  1873. },
  1874. "drake": {
  1875. name: "Drake",
  1876. parents: ["dragon"]
  1877. },
  1878. "okapi": {
  1879. name: "Okapi",
  1880. parents: ["giraffe"]
  1881. },
  1882. "arctic-hare": {
  1883. name: "Arctic Hare",
  1884. parents: ["hare"]
  1885. },
  1886. "hare": {
  1887. name: "Hare",
  1888. parents: ["leporidae"]
  1889. },
  1890. "leporidae": {
  1891. name: "Leporidae",
  1892. parents: ["mammal"]
  1893. },
  1894. "leopard-gecko": {
  1895. name: "Leopard Gecko",
  1896. parents: ["gecko"]
  1897. },
  1898. "dreamspawn": {
  1899. name: "Dreamspawn",
  1900. parents: ["illusion"]
  1901. },
  1902. "illusion": {
  1903. name: "Illusion",
  1904. parents: []
  1905. },
  1906. "purrloin": {
  1907. name: "Purrloin",
  1908. parents: ["cat", "pokemon"]
  1909. },
  1910. "noivern": {
  1911. name: "Noivern",
  1912. parents: ["bat", "dragon", "pokemon"]
  1913. },
  1914. "hedgehog": {
  1915. name: "Hedgehog",
  1916. parents: ["mammal"]
  1917. },
  1918. "liger": {
  1919. name: "Liger",
  1920. parents: ["lion", "tiger", "hybrid"]
  1921. },
  1922. "hybrid": {
  1923. name: "Hybrid",
  1924. parents: []
  1925. },
  1926. "drider": {
  1927. name: "Drider",
  1928. parents: ["spider"]
  1929. },
  1930. "sabresune": {
  1931. name: "Sabresune",
  1932. parents: ["kitsune", "sabertooth-tiger"]
  1933. },
  1934. "ditto": {
  1935. name: "Ditto",
  1936. parents: ["pokemon", "goo"]
  1937. },
  1938. "amogus": {
  1939. name: "Amogus",
  1940. parents: ["deity"]
  1941. },
  1942. "ferret": {
  1943. name: "Ferret",
  1944. parents: ["mustelid"]
  1945. },
  1946. "guinea-pig": {
  1947. name: "Guinea Pig",
  1948. parents: ["rodent"]
  1949. },
  1950. "viper": {
  1951. name: "Viper",
  1952. parents: ["snake"]
  1953. },
  1954. "cinderace": {
  1955. name: "Cinderace",
  1956. parents: ["pokemon", "rabbit"]
  1957. },
  1958. "caudin": {
  1959. name: "Caudin",
  1960. parents: ["dragon"]
  1961. },
  1962. "red-winged-blackbird": {
  1963. name: "Red-Winged Blackbird",
  1964. parents: ["avian"]
  1965. },
  1966. "hooded-wheater": {
  1967. name: "Hooded Wheater",
  1968. parents: ["passerine"]
  1969. },
  1970. "passerine": {
  1971. name: "Passerine",
  1972. parents: ["avian"]
  1973. },
  1974. "gieeg": {
  1975. name: "Gieeg",
  1976. parents: ["alien"]
  1977. },
  1978. "ringtail": {
  1979. name: "Ringtail",
  1980. parents: ["raccoon"]
  1981. },
  1982. "hisuian-zoroark": {
  1983. name: "Hisuian Zoroark",
  1984. parents: ["zoroark", "hisuian"]
  1985. },
  1986. "hisuian": {
  1987. name: "Hisuian",
  1988. parents: ["regional-pokemon"]
  1989. },
  1990. "regional-pokemon": {
  1991. name: "Regional Pokemon",
  1992. parents: ["pokemon"]
  1993. },
  1994. "cybeast": {
  1995. name: "Cybeast",
  1996. parents: ["computer-virus"]
  1997. },
  1998. "javira-dragon": {
  1999. name: "Javira Dragon",
  2000. parents: ["dragon"]
  2001. },
  2002. "koopew": {
  2003. name: "Koopew",
  2004. parents: ["dragon", "alien"]
  2005. },
  2006. "nevrean": {
  2007. name: "Nevrean",
  2008. parents: ["avian", "vilous"]
  2009. },
  2010. "vilous": {
  2011. name: "Vilous Species",
  2012. parents: []
  2013. },
  2014. "titanoboa": {
  2015. name: "Titanoboa",
  2016. parents: ["snake"]
  2017. },
  2018. "raichu": {
  2019. name: "Raichu",
  2020. parents: ["pikachu"]
  2021. },
  2022. "taur": {
  2023. name: "Taur",
  2024. parents: []
  2025. },
  2026. "continental-giant-rabbit": {
  2027. name: "Continental Giant Rabbit",
  2028. parents: ["rabbit"]
  2029. },
  2030. "demigryph": {
  2031. name: "Demigryph",
  2032. parents: ["lion", "eagle"]
  2033. },
  2034. "bald-eagle": {
  2035. name: "Bald Eagle",
  2036. parents: ["eagle"]
  2037. },
  2038. "kestrel": {
  2039. name: "Kestrel",
  2040. parents: ["falcon"]
  2041. },
  2042. "mockingbird": {
  2043. name: "Mockingbird",
  2044. parents: ["songbird"]
  2045. },
  2046. "songbird": {
  2047. name: "Songbird",
  2048. parents: ["avian"]
  2049. },
  2050. "bird-of-prey": {
  2051. name: "Bird of Prey",
  2052. parents: ["avian"]
  2053. },
  2054. "marowak": {
  2055. name: "Marowak",
  2056. parents: ["pokemon", "reptile"]
  2057. },
  2058. "joltik": {
  2059. name: "Joltik",
  2060. parents: ["pokemon", "insect"]
  2061. },
  2062. "mink": {
  2063. name: "Mink",
  2064. parents: ["mustelid"]
  2065. },
  2066. "sandcat": {
  2067. name: "Sandcat",
  2068. parents: ["cat"]
  2069. },
  2070. "hrothgar": {
  2071. name: "Hrothgar",
  2072. parents: ["cat"]
  2073. },
  2074. "garchomp": {
  2075. name: "Garchomp",
  2076. parents: ["dragon", "pokemon"]
  2077. },
  2078. "nargacuga": {
  2079. name: "Nargacuga",
  2080. parents: ["monster-hunter"]
  2081. },
  2082. "sable": {
  2083. name: "Sable",
  2084. parents: ["marten"]
  2085. },
  2086. "deino": {
  2087. name: "Deino",
  2088. parents: ["pokemon", "dinosaur"]
  2089. },
  2090. "housecat": {
  2091. name: "Housecat",
  2092. parents: ["cat"]
  2093. },
  2094. "bombay-cat": {
  2095. name: "Bombay Cat",
  2096. parents: ["housecat"]
  2097. },
  2098. "maine-coon": {
  2099. name: "Maine Coon",
  2100. parents: ["housecat"]
  2101. },
  2102. "coelacanth": {
  2103. name: "Coelacanth",
  2104. parents: ["fish"]
  2105. },
  2106. "silvally": {
  2107. name: "Silvally",
  2108. parents: ["legendary-pokemon"]
  2109. },
  2110. "legendary-pokemon": {
  2111. name: "Legendary Pokemon",
  2112. parents: ["pokemon"]
  2113. },
  2114. "great-maccao": {
  2115. name: "Great Maccao",
  2116. parents: ["monster-hunter", "raptor"]
  2117. },
  2118. "shapeshifter": {
  2119. name: "shapeshifter",
  2120. parents: []
  2121. },
  2122. "obstagoon": {
  2123. name: "Obstagoon",
  2124. parents: ["zigzagoon"]
  2125. },
  2126. "thomsons-gazelle": {
  2127. name: "Thomsons Gazelle",
  2128. parents: ["gazelle"]
  2129. },
  2130. "gazelle": {
  2131. name: "Gazelle",
  2132. parents: ["antelope"]
  2133. },
  2134. "monkey": {
  2135. name: "Monkey",
  2136. parents: ["primate"]
  2137. },
  2138. "serval": {
  2139. name: "Serval",
  2140. parents: ["cat"]
  2141. },
  2142. "swampert": {
  2143. name: "Swampert",
  2144. parents: ["pokemon"]
  2145. },
  2146. "red-fox": {
  2147. name: "Red Fox",
  2148. parents: ["fox"]
  2149. },
  2150. "sliver": {
  2151. name: "Sliver",
  2152. parents: ["alien"]
  2153. },
  2154. "sergix": {
  2155. name: "Sergix",
  2156. parents: ["demon", "sergal", "phoenix"]
  2157. },
  2158. "behemoth": {
  2159. name: "Behemoth",
  2160. parents: ["monster", "dragon", "final-fantasy"]
  2161. },
  2162. "final-fantasy": {
  2163. name: "Final Fantasy",
  2164. parents: ["video-games"]
  2165. },
  2166. "video-games": {
  2167. name: "Video Games",
  2168. parents: []
  2169. },
  2170. "eastern-cottontail-rabbit": {
  2171. name: "Eastern Cottontail Rabbit",
  2172. parents: ["rabbit"]
  2173. },
  2174. "thresher-shark": {
  2175. name: "Thresher Shark",
  2176. parents: ["shark"]
  2177. },
  2178. "ai": {
  2179. name: "AI",
  2180. parents: []
  2181. },
  2182. "black-tip-reef-shark": {
  2183. name: "Black Tip Reef Shark",
  2184. parents: ["shark"]
  2185. },
  2186. "quetzalcoatlus-northropi": {
  2187. name: "Quetzalcoatlus Northropi",
  2188. parents: ["dinosaur"]
  2189. },
  2190. "snivy": {
  2191. name: "Snivy",
  2192. parents: ["pokemon", "snake"]
  2193. },
  2194. "nedynvor": {
  2195. name: "Nedynvor",
  2196. parents: ["avian"]
  2197. },
  2198. "marbled-polecat": {
  2199. name: "Marbled Polecat",
  2200. parents: ["polecat"]
  2201. },
  2202. "ape": {
  2203. name: "Ape",
  2204. parents: ["primate"]
  2205. },
  2206. "primate": {
  2207. name: "Primate",
  2208. parents: ["mammal"]
  2209. },
  2210. "kulve-taroth": {
  2211. name: "Kulve Taroth",
  2212. parents: ["monster-hunter", "dragon"]
  2213. },
  2214. "irthos": {
  2215. name: "Irthos",
  2216. parents: ["dragon"]
  2217. },
  2218. "furred-dragon": {
  2219. name: "Furred Dragon",
  2220. parents: ["dragon"]
  2221. },
  2222. "hippogriff": {
  2223. name: "Hippogriff",
  2224. parents: ["gryphon", "horse"]
  2225. },
  2226. "peregrine-falcon": {
  2227. name: "Peregrine Falcon",
  2228. parents: ["falcon"]
  2229. },
  2230. "deinonychus": {
  2231. name: "Deinonychus",
  2232. parents: ["theropod"]
  2233. },
  2234. "theropod": {
  2235. name: "Theropod",
  2236. parents: ["dinosaur"]
  2237. },
  2238. "chocobo": {
  2239. name: "Chocobo",
  2240. parents: ["avian"]
  2241. },
  2242. "stilio": {
  2243. name: "Stilio",
  2244. parents: ["snake"]
  2245. },
  2246. "kardox": {
  2247. name: "Kardox",
  2248. parents: ["wolf", "dragon", "horse"]
  2249. },
  2250. "food": {
  2251. name: "Food",
  2252. parents: ["object"]
  2253. },
  2254. "object": {
  2255. name: "Object",
  2256. parents: []
  2257. },
  2258. "honey-badger": {
  2259. name: "honey-badger",
  2260. parents: ["badger"]
  2261. },
  2262. "badger": {
  2263. name: "Badger",
  2264. parents: ["mustelid"]
  2265. },
  2266. "rattlesnake": {
  2267. name: "Rattlesnake",
  2268. parents: ["snake"]
  2269. },
  2270. "diamondback": {
  2271. name: "Diamondback",
  2272. parents: ["snake"]
  2273. },
  2274. "spidox": {
  2275. name: "Spidox",
  2276. parents: ["spider", "fox"]
  2277. },
  2278. "kodiak-bear": {
  2279. name: "Kodiak Bear",
  2280. parents: ["bear"]
  2281. },
  2282. "alurean": {
  2283. name: "Alurean",
  2284. parents: ["saurian", "aquatic", "alien"]
  2285. },
  2286. "aquatic": {
  2287. name: "Aquatic",
  2288. parents: []
  2289. },
  2290. "wyvern": {
  2291. name: "Wyvern",
  2292. parents: ["dragon"]
  2293. },
  2294. "catfish": {
  2295. name: "Catfish",
  2296. parents: ["fish"]
  2297. },
  2298. "vesempress": {
  2299. name: "Vesempress",
  2300. parents: ["vespiquen"]
  2301. },
  2302. "vespiquen": {
  2303. name: "Vespiquen",
  2304. parents: ["pokemon", "bee"]
  2305. },
  2306. "gaelterranian": {
  2307. name: "Gaelterranian",
  2308. parents: ["alien"]
  2309. },
  2310. "pistrogre": {
  2311. name: "Pistrogre",
  2312. parents: ["alien", "deity", "insect", "reptile"]
  2313. },
  2314. "komodo-dragon": {
  2315. name: "Komodo Dragon",
  2316. parents: ["lizard"]
  2317. },
  2318. "shiny": {
  2319. name: "Shiny",
  2320. parents: ["pokemon"]
  2321. },
  2322. "latex": {
  2323. name: "Latex",
  2324. parents: []
  2325. },
  2326. "praying-mantis": {
  2327. name: "Praying Mantis",
  2328. parents: ["insect"]
  2329. },
  2330. "espeon": {
  2331. name: "Espeon",
  2332. parents: ["eeveelution"]
  2333. },
  2334. "skullwolf": {
  2335. name: "Skullwolf",
  2336. parents: ["wolf", "skullmonster"]
  2337. },
  2338. "skulldragon": {
  2339. name: "Skulldragon",
  2340. parents: ["dragon", "skullmonster"]
  2341. },
  2342. "skullmonster": {
  2343. name: "Skullmonster",
  2344. parents: ["monster"]
  2345. },
  2346. "ferrin": {
  2347. name: "Ferrin",
  2348. parents: ["dragon"]
  2349. },
  2350. "rusty-spotted-cat": {
  2351. name: "Rusty-Spotted Cat",
  2352. parents: ["cat"]
  2353. },
  2354. "elf": {
  2355. name: "Elf",
  2356. parents: ["humanoid"]
  2357. },
  2358. "humanoid": {
  2359. name: "Humanoid",
  2360. parents: []
  2361. },
  2362. "allusus": {
  2363. name: "Allusus",
  2364. parents: ["humanoid"]
  2365. },
  2366. "saltwater-crocodile": {
  2367. name: "Saltwater Crocodile",
  2368. parents: ["crocodile"]
  2369. },
  2370. "eastern-grey-kangaroo": {
  2371. name: "Eastern Grey Kangaroo",
  2372. parents: ["kangaroo"]
  2373. },
  2374. "latenivenatrix": {
  2375. name: "Latenivenatrix",
  2376. parents: ["troodontidae"]
  2377. },
  2378. "troodontidae": {
  2379. name: "Troodontidae",
  2380. parents: ["theropod", "avian"]
  2381. },
  2382. "duck": {
  2383. name: "Duck",
  2384. parents: ["waterfowl"]
  2385. },
  2386. "waterfowl": {
  2387. name: "Waterfowl",
  2388. parents: ["avian"]
  2389. },
  2390. "earless-monitor-lizard": {
  2391. name: "Earless Monitor Lizard",
  2392. parents: ["monitor-lizard"]
  2393. },
  2394. "aerosynth": {
  2395. name: "Aerosynth",
  2396. parents: ["aeromorph", "synth"]
  2397. },
  2398. "phenx": {
  2399. name: "Phenx",
  2400. parents: ["uragi"]
  2401. },
  2402. "uragi": {
  2403. name: "Uragi",
  2404. parents: ["avian", "bear"]
  2405. },
  2406. "driger": {
  2407. name: "Driger",
  2408. parents: ["dragon", "tiger"]
  2409. },
  2410. "homestuck-troll": {
  2411. name: "Troll (Homestuck)",
  2412. parents: ["humanoid"]
  2413. },
  2414. "riolu": {
  2415. name: "Riolu",
  2416. parents: ["pokemon"]
  2417. },
  2418. "king-cheetah": {
  2419. name: "King Cheetah",
  2420. parents: ["cheetah"]
  2421. },
  2422. "secretary-bird": {
  2423. name: "Secretary Bird",
  2424. parents: ["bird-of-prey"]
  2425. },
  2426. }
  2427. //species
  2428. function getSpeciesInfo(speciesList) {
  2429. let result = new Set();
  2430. speciesList.flatMap(getSpeciesInfoHelper).forEach(entry => {
  2431. result.add(entry)
  2432. });
  2433. return Array.from(result);
  2434. };
  2435. function getSpeciesInfoHelper(species) {
  2436. if (!speciesData[species]) {
  2437. console.warn(species + " doesn't exist");
  2438. return [];
  2439. }
  2440. if (speciesData[species].parents) {
  2441. return [species].concat(speciesData[species].parents.flatMap(parent => getSpeciesInfoHelper(parent)));
  2442. } else {
  2443. return [species];
  2444. }
  2445. }
  2446. characterMakers.push(() => makeCharacter(
  2447. {
  2448. name: "Fen",
  2449. species: ["crux"],
  2450. description: {
  2451. title: "Bio",
  2452. text: "Very furry. Sheds on everything."
  2453. },
  2454. tags: [
  2455. "anthro",
  2456. "goo"
  2457. ]
  2458. },
  2459. {
  2460. front: {
  2461. height: math.unit(12, "feet"),
  2462. weight: math.unit(2400, "lb"),
  2463. preyCapacity: math.unit(1, "people"),
  2464. name: "Front",
  2465. image: {
  2466. source: "./media/characters/fen/front.svg",
  2467. extra: 1804/1562,
  2468. bottom: 205/2009
  2469. },
  2470. extraAttributes: {
  2471. pawSize: {
  2472. name: "Paw Size",
  2473. power: 2,
  2474. type: "area",
  2475. base: math.unit(0.35, "m^2")
  2476. }
  2477. }
  2478. },
  2479. diving: {
  2480. height: math.unit(4.9, "meters"),
  2481. weight: math.unit(2400, "lb"),
  2482. name: "Diving",
  2483. image: {
  2484. source: "./media/characters/fen/diving.svg"
  2485. }
  2486. },
  2487. sleeby: {
  2488. height: math.unit(3.45, "meters"),
  2489. weight: math.unit(2400, "lb"),
  2490. name: "Sleeby",
  2491. image: {
  2492. source: "./media/characters/fen/sleeby.svg"
  2493. }
  2494. },
  2495. goo: {
  2496. height: math.unit(12, "feet"),
  2497. weight: math.unit(3600, "lb"),
  2498. volume: math.unit(1000, "liters"),
  2499. preyCapacity: math.unit(6, "people"),
  2500. name: "Goo",
  2501. image: {
  2502. source: "./media/characters/fen/goo.svg",
  2503. extra: 1307/1071,
  2504. bottom: 134/1441
  2505. }
  2506. },
  2507. horror: {
  2508. height: math.unit(13.6, "feet"),
  2509. weight: math.unit(2400, "lb"),
  2510. preyCapacity: math.unit(1, "people"),
  2511. name: "Horror",
  2512. image: {
  2513. source: "./media/characters/fen/horror.svg",
  2514. extra: 893/797,
  2515. bottom: 0/893
  2516. }
  2517. },
  2518. gooNsfw: {
  2519. height: math.unit(12, "feet"),
  2520. weight: math.unit(3750, "lb"),
  2521. volume: math.unit(1000, "liters"),
  2522. preyCapacity: math.unit(6, "people"),
  2523. name: "Goo (NSFW)",
  2524. image: {
  2525. source: "./media/characters/fen/goo-nsfw.svg",
  2526. extra: 1875/1734,
  2527. bottom: 122/1997
  2528. }
  2529. },
  2530. maw: {
  2531. height: math.unit(5.03, "feet"),
  2532. name: "Maw",
  2533. image: {
  2534. source: "./media/characters/fen/maw.svg"
  2535. }
  2536. },
  2537. gooCeiling: {
  2538. height: math.unit(6.6, "feet"),
  2539. weight: math.unit(3000, "lb"),
  2540. volume: math.unit(1000, "liters"),
  2541. preyCapacity: math.unit(6, "people"),
  2542. name: "Maw (Goo)",
  2543. image: {
  2544. source: "./media/characters/fen/goo-maw.svg"
  2545. }
  2546. },
  2547. paw: {
  2548. height: math.unit(3.77, "feet"),
  2549. name: "Paw",
  2550. image: {
  2551. source: "./media/characters/fen/paw.svg"
  2552. },
  2553. extraAttributes: {
  2554. "toeSize": {
  2555. name: "Toe Size",
  2556. power: 2,
  2557. type: "area",
  2558. base: math.unit(0.02875, "m^2")
  2559. },
  2560. "pawSize": {
  2561. name: "Paw Size",
  2562. power: 2,
  2563. type: "area",
  2564. base: math.unit(0.378, "m^2")
  2565. },
  2566. }
  2567. },
  2568. tail: {
  2569. height: math.unit(12.1, "feet"),
  2570. name: "Tail",
  2571. image: {
  2572. source: "./media/characters/fen/tail.svg"
  2573. }
  2574. },
  2575. tailFull: {
  2576. height: math.unit(12.1, "feet"),
  2577. name: "Full Tail",
  2578. image: {
  2579. source: "./media/characters/fen/tail-full.svg"
  2580. }
  2581. },
  2582. back: {
  2583. height: math.unit(12, "feet"),
  2584. weight: math.unit(2400, "lb"),
  2585. name: "Back",
  2586. image: {
  2587. source: "./media/characters/fen/back.svg",
  2588. },
  2589. info: {
  2590. description: {
  2591. mode: "append",
  2592. text: "\n\nHe is not currently looking at you."
  2593. }
  2594. }
  2595. },
  2596. full: {
  2597. height: math.unit(1.85, "meter"),
  2598. weight: math.unit(3200, "lb"),
  2599. preyCapacity: math.unit(3, "people"),
  2600. name: "Full",
  2601. image: {
  2602. source: "./media/characters/fen/full.svg",
  2603. extra: 1133/859,
  2604. bottom: 145/1278
  2605. },
  2606. info: {
  2607. description: {
  2608. mode: "append",
  2609. text: "\n\nMunch."
  2610. }
  2611. }
  2612. },
  2613. gooLounging: {
  2614. height: math.unit(4.53, "feet"),
  2615. weight: math.unit(3000, "lb"),
  2616. preyCapacity: math.unit(6, "people"),
  2617. name: "Goo (Lounging)",
  2618. image: {
  2619. source: "./media/characters/fen/goo-lounging.svg",
  2620. bottom: 116 / 613
  2621. }
  2622. },
  2623. lounging: {
  2624. height: math.unit(10.52, "feet"),
  2625. weight: math.unit(2400, "lb"),
  2626. name: "Lounging",
  2627. image: {
  2628. source: "./media/characters/fen/lounging.svg"
  2629. }
  2630. },
  2631. },
  2632. [
  2633. {
  2634. name: "Small",
  2635. height: math.unit(2.2428, "meter")
  2636. },
  2637. {
  2638. name: "Normal",
  2639. height: math.unit(12, "feet"),
  2640. default: true,
  2641. },
  2642. {
  2643. name: "Big",
  2644. height: math.unit(20, "feet")
  2645. },
  2646. {
  2647. name: "Minimacro",
  2648. height: math.unit(40, "feet"),
  2649. info: {
  2650. description: {
  2651. mode: "append",
  2652. text: "\n\nTOO DAMN BIG"
  2653. }
  2654. }
  2655. },
  2656. {
  2657. name: "Macro",
  2658. height: math.unit(100, "feet"),
  2659. info: {
  2660. description: {
  2661. mode: "append",
  2662. text: "\n\nTOO DAMN BIG"
  2663. }
  2664. }
  2665. },
  2666. {
  2667. name: "Megamacro",
  2668. height: math.unit(2, "miles")
  2669. },
  2670. {
  2671. name: "Gigamacro",
  2672. height: math.unit(10, "earths")
  2673. },
  2674. ]
  2675. ))
  2676. characterMakers.push(() => makeCharacter(
  2677. { name: "Sofia Fluttertail", species: ["rough-collie"], tags: ["anthro"] },
  2678. {
  2679. front: {
  2680. height: math.unit(183, "cm"),
  2681. weight: math.unit(80, "kg"),
  2682. name: "Front",
  2683. image: {
  2684. source: "./media/characters/sofia-fluttertail/front.svg",
  2685. bottom: 0.01,
  2686. extra: 2154 / 2081
  2687. }
  2688. },
  2689. frontAlt: {
  2690. height: math.unit(183, "cm"),
  2691. weight: math.unit(80, "kg"),
  2692. name: "Front (alt)",
  2693. image: {
  2694. source: "./media/characters/sofia-fluttertail/front-alt.svg"
  2695. }
  2696. },
  2697. back: {
  2698. height: math.unit(183, "cm"),
  2699. weight: math.unit(80, "kg"),
  2700. name: "Back",
  2701. image: {
  2702. source: "./media/characters/sofia-fluttertail/back.svg"
  2703. }
  2704. },
  2705. kneeling: {
  2706. height: math.unit(125, "cm"),
  2707. weight: math.unit(80, "kg"),
  2708. name: "Kneeling",
  2709. image: {
  2710. source: "./media/characters/sofia-fluttertail/kneeling.svg",
  2711. extra: 1033 / 977,
  2712. bottom: 23.7 / 1057
  2713. }
  2714. },
  2715. maw: {
  2716. height: math.unit(183 / 5, "cm"),
  2717. name: "Maw",
  2718. image: {
  2719. source: "./media/characters/sofia-fluttertail/maw.svg"
  2720. }
  2721. },
  2722. mawcloseup: {
  2723. height: math.unit(183 / 5 * 0.41, "cm"),
  2724. name: "Maw (Closeup)",
  2725. image: {
  2726. source: "./media/characters/sofia-fluttertail/maw-closeup.svg"
  2727. }
  2728. },
  2729. paws: {
  2730. height: math.unit(1.17, "feet"),
  2731. name: "Paws",
  2732. image: {
  2733. source: "./media/characters/sofia-fluttertail/paws.svg",
  2734. extra: 851 / 851,
  2735. bottom: 17 / 868
  2736. }
  2737. },
  2738. },
  2739. [
  2740. {
  2741. name: "Normal",
  2742. height: math.unit(1.83, "meter")
  2743. },
  2744. {
  2745. name: "Size Thief",
  2746. height: math.unit(18, "feet")
  2747. },
  2748. {
  2749. name: "50 Foot Collie",
  2750. height: math.unit(50, "feet")
  2751. },
  2752. {
  2753. name: "Macro",
  2754. height: math.unit(96, "feet"),
  2755. default: true
  2756. },
  2757. {
  2758. name: "Megamerger",
  2759. height: math.unit(650, "feet")
  2760. },
  2761. ]
  2762. ))
  2763. characterMakers.push(() => makeCharacter(
  2764. { name: "March", species: ["dragon"], tags: ["anthro"] },
  2765. {
  2766. front: {
  2767. height: math.unit(7, "feet"),
  2768. weight: math.unit(100, "kg"),
  2769. name: "Front",
  2770. image: {
  2771. source: "./media/characters/march/front.svg",
  2772. extra: 1992/1851,
  2773. bottom: 39/2031
  2774. }
  2775. },
  2776. foot: {
  2777. height: math.unit(0.9, "feet"),
  2778. name: "Foot",
  2779. image: {
  2780. source: "./media/characters/march/foot.svg"
  2781. }
  2782. },
  2783. },
  2784. [
  2785. {
  2786. name: "Normal",
  2787. height: math.unit(7.9, "feet")
  2788. },
  2789. {
  2790. name: "Macro",
  2791. height: math.unit(220, "meters")
  2792. },
  2793. {
  2794. name: "Megamacro",
  2795. height: math.unit(2.98, "km"),
  2796. default: true
  2797. },
  2798. {
  2799. name: "Gigamacro",
  2800. height: math.unit(15963, "km")
  2801. },
  2802. {
  2803. name: "Teramacro",
  2804. height: math.unit(2980000000, "km")
  2805. },
  2806. {
  2807. name: "Examacro",
  2808. height: math.unit(250, "parsecs")
  2809. },
  2810. ]
  2811. ))
  2812. characterMakers.push(() => makeCharacter(
  2813. { name: "Noir", species: ["woodpecker"], tags: ["anthro"] },
  2814. {
  2815. front: {
  2816. height: math.unit(6, "feet"),
  2817. weight: math.unit(60, "kg"),
  2818. name: "Front",
  2819. image: {
  2820. source: "./media/characters/noir/front.svg",
  2821. extra: 1,
  2822. bottom: 0.032
  2823. }
  2824. },
  2825. },
  2826. [
  2827. {
  2828. name: "Normal",
  2829. height: math.unit(6.6, "feet")
  2830. },
  2831. {
  2832. name: "Macro",
  2833. height: math.unit(500, "feet")
  2834. },
  2835. {
  2836. name: "Megamacro",
  2837. height: math.unit(2.5, "km"),
  2838. default: true
  2839. },
  2840. {
  2841. name: "Gigamacro",
  2842. height: math.unit(22500, "km")
  2843. },
  2844. {
  2845. name: "Teramacro",
  2846. height: math.unit(2500000000, "km")
  2847. },
  2848. {
  2849. name: "Examacro",
  2850. height: math.unit(200, "parsecs")
  2851. },
  2852. ]
  2853. ))
  2854. characterMakers.push(() => makeCharacter(
  2855. { name: "Okuri", species: ["sabresune"], tags: ["anthro"] },
  2856. {
  2857. front: {
  2858. height: math.unit(7, "feet"),
  2859. weight: math.unit(100, "kg"),
  2860. name: "Front",
  2861. image: {
  2862. source: "./media/characters/okuri/front.svg",
  2863. extra: 739/665,
  2864. bottom: 39/778
  2865. }
  2866. },
  2867. back: {
  2868. height: math.unit(7, "feet"),
  2869. weight: math.unit(100, "kg"),
  2870. name: "Back",
  2871. image: {
  2872. source: "./media/characters/okuri/back.svg",
  2873. extra: 734/653,
  2874. bottom: 13/747
  2875. }
  2876. },
  2877. sitting: {
  2878. height: math.unit(2.95, "feet"),
  2879. weight: math.unit(100, "kg"),
  2880. name: "Sitting",
  2881. image: {
  2882. source: "./media/characters/okuri/sitting.svg",
  2883. extra: 370/318,
  2884. bottom: 99/469
  2885. }
  2886. },
  2887. },
  2888. [
  2889. {
  2890. name: "Smallest",
  2891. height: math.unit(5 + 2/12, "feet")
  2892. },
  2893. {
  2894. name: "Smaller",
  2895. height: math.unit(300, "feet")
  2896. },
  2897. {
  2898. name: "Small",
  2899. height: math.unit(1000, "feet")
  2900. },
  2901. {
  2902. name: "Macro",
  2903. height: math.unit(1, "mile")
  2904. },
  2905. {
  2906. name: "Mega Macro (Small)",
  2907. height: math.unit(20, "km")
  2908. },
  2909. {
  2910. name: "Mega Macro (Large)",
  2911. height: math.unit(600, "km")
  2912. },
  2913. {
  2914. name: "Giga Macro",
  2915. height: math.unit(10000, "km")
  2916. },
  2917. {
  2918. name: "Normal",
  2919. height: math.unit(577560, "km"),
  2920. default: true
  2921. },
  2922. {
  2923. name: "Large",
  2924. height: math.unit(4, "galaxies")
  2925. },
  2926. {
  2927. name: "Largest",
  2928. height: math.unit(15, "multiverses")
  2929. },
  2930. ]
  2931. ))
  2932. characterMakers.push(() => makeCharacter(
  2933. { name: "Manny", species: ["manectric"], tags: ["anthro"] },
  2934. {
  2935. front: {
  2936. height: math.unit(7, "feet"),
  2937. weight: math.unit(100, "kg"),
  2938. name: "Front",
  2939. image: {
  2940. source: "./media/characters/manny/front.svg",
  2941. extra: 1,
  2942. bottom: 0.06
  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/manny/back.svg",
  2951. extra: 1,
  2952. bottom: 0.014
  2953. }
  2954. },
  2955. },
  2956. [
  2957. {
  2958. name: "Normal",
  2959. height: math.unit(7, "feet"),
  2960. },
  2961. {
  2962. name: "Macro",
  2963. height: math.unit(78, "feet"),
  2964. default: true
  2965. },
  2966. {
  2967. name: "Macro+",
  2968. height: math.unit(300, "meters")
  2969. },
  2970. {
  2971. name: "Macro++",
  2972. height: math.unit(2400, "meters")
  2973. },
  2974. {
  2975. name: "Megamacro",
  2976. height: math.unit(5167, "meters")
  2977. },
  2978. {
  2979. name: "Gigamacro",
  2980. height: math.unit(41769, "miles")
  2981. },
  2982. ]
  2983. ))
  2984. characterMakers.push(() => makeCharacter(
  2985. { name: "Adake", species: ["tiger"], tags: ["anthro"] },
  2986. {
  2987. front: {
  2988. height: math.unit(7, "feet"),
  2989. weight: math.unit(100, "kg"),
  2990. name: "Front",
  2991. image: {
  2992. source: "./media/characters/adake/front-1.svg"
  2993. }
  2994. },
  2995. frontAlt: {
  2996. height: math.unit(7, "feet"),
  2997. weight: math.unit(100, "kg"),
  2998. name: "Front (Alt)",
  2999. image: {
  3000. source: "./media/characters/adake/front-2.svg",
  3001. extra: 1,
  3002. bottom: 0.01
  3003. }
  3004. },
  3005. back: {
  3006. height: math.unit(7, "feet"),
  3007. weight: math.unit(100, "kg"),
  3008. name: "Back",
  3009. image: {
  3010. source: "./media/characters/adake/back.svg",
  3011. }
  3012. },
  3013. kneel: {
  3014. height: math.unit(5.385, "feet"),
  3015. weight: math.unit(100, "kg"),
  3016. name: "Kneeling",
  3017. image: {
  3018. source: "./media/characters/adake/kneel.svg",
  3019. bottom: 0.052
  3020. }
  3021. },
  3022. },
  3023. [
  3024. {
  3025. name: "Normal",
  3026. height: math.unit(7, "feet"),
  3027. },
  3028. {
  3029. name: "Macro",
  3030. height: math.unit(78, "feet"),
  3031. default: true
  3032. },
  3033. {
  3034. name: "Macro+",
  3035. height: math.unit(300, "meters")
  3036. },
  3037. {
  3038. name: "Macro++",
  3039. height: math.unit(2400, "meters")
  3040. },
  3041. {
  3042. name: "Megamacro",
  3043. height: math.unit(5167, "meters")
  3044. },
  3045. {
  3046. name: "Gigamacro",
  3047. height: math.unit(41769, "miles")
  3048. },
  3049. ]
  3050. ))
  3051. characterMakers.push(() => makeCharacter(
  3052. { name: "Elijah", species: ["blue-jay"], tags: ["anthro"] },
  3053. {
  3054. front: {
  3055. height: math.unit(1.65, "meters"),
  3056. weight: math.unit(50, "kg"),
  3057. name: "Front",
  3058. image: {
  3059. source: "./media/characters/elijah/front.svg",
  3060. extra: 858 / 830,
  3061. bottom: 95.5 / 953.8559
  3062. }
  3063. },
  3064. back: {
  3065. height: math.unit(1.65, "meters"),
  3066. weight: math.unit(50, "kg"),
  3067. name: "Back",
  3068. image: {
  3069. source: "./media/characters/elijah/back.svg",
  3070. extra: 895 / 850,
  3071. bottom: 5.3 / 897.956
  3072. }
  3073. },
  3074. frontNsfw: {
  3075. height: math.unit(1.65, "meters"),
  3076. weight: math.unit(50, "kg"),
  3077. name: "Front (NSFW)",
  3078. image: {
  3079. source: "./media/characters/elijah/front-nsfw.svg",
  3080. extra: 858 / 830,
  3081. bottom: 95.5 / 953.8559
  3082. }
  3083. },
  3084. backNsfw: {
  3085. height: math.unit(1.65, "meters"),
  3086. weight: math.unit(50, "kg"),
  3087. name: "Back (NSFW)",
  3088. image: {
  3089. source: "./media/characters/elijah/back-nsfw.svg",
  3090. extra: 895 / 850,
  3091. bottom: 5.3 / 897.956
  3092. }
  3093. },
  3094. dick: {
  3095. height: math.unit(1, "feet"),
  3096. name: "Dick",
  3097. image: {
  3098. source: "./media/characters/elijah/dick.svg"
  3099. }
  3100. },
  3101. beakOpen: {
  3102. height: math.unit(1.25, "feet"),
  3103. name: "Beak (Open)",
  3104. image: {
  3105. source: "./media/characters/elijah/beak-open.svg"
  3106. }
  3107. },
  3108. beakShut: {
  3109. height: math.unit(1.25, "feet"),
  3110. name: "Beak (Shut)",
  3111. image: {
  3112. source: "./media/characters/elijah/beak-shut.svg"
  3113. }
  3114. },
  3115. footFlexing: {
  3116. height: math.unit(1.61, "feet"),
  3117. name: "Foot (Flexing)",
  3118. image: {
  3119. source: "./media/characters/elijah/foot-flexing.svg"
  3120. }
  3121. },
  3122. footStepping: {
  3123. height: math.unit(1.44, "feet"),
  3124. name: "Foot (Stepping)",
  3125. image: {
  3126. source: "./media/characters/elijah/foot-stepping.svg"
  3127. }
  3128. },
  3129. plantigradeLeg: {
  3130. height: math.unit(2.34, "feet"),
  3131. name: "Plantigrade Leg",
  3132. image: {
  3133. source: "./media/characters/elijah/plantigrade-leg.svg"
  3134. }
  3135. },
  3136. plantigradeFootLeft: {
  3137. height: math.unit(0.9, "feet"),
  3138. name: "Plantigrade Foot (Left)",
  3139. image: {
  3140. source: "./media/characters/elijah/plantigrade-foot-left.svg"
  3141. }
  3142. },
  3143. plantigradeFootRight: {
  3144. height: math.unit(0.9, "feet"),
  3145. name: "Plantigrade Foot (Right)",
  3146. image: {
  3147. source: "./media/characters/elijah/plantigrade-foot-right.svg"
  3148. }
  3149. },
  3150. },
  3151. [
  3152. {
  3153. name: "Normal",
  3154. height: math.unit(1.65, "meters")
  3155. },
  3156. {
  3157. name: "Macro",
  3158. height: math.unit(55, "meters"),
  3159. default: true
  3160. },
  3161. {
  3162. name: "Macro+",
  3163. height: math.unit(105, "meters")
  3164. },
  3165. ]
  3166. ))
  3167. characterMakers.push(() => makeCharacter(
  3168. { name: "Rai", species: ["wolf"], tags: ["anthro"] },
  3169. {
  3170. front: {
  3171. height: math.unit(7 + 2/12, "feet"),
  3172. weight: math.unit(320, "kg"),
  3173. preyCapacity: math.unit(0.276549935, "people"),
  3174. name: "Front",
  3175. image: {
  3176. source: "./media/characters/rai/front.svg",
  3177. extra: 1802/1696,
  3178. bottom: 68/1870
  3179. },
  3180. form: "anthro",
  3181. default: true
  3182. },
  3183. frontDressed: {
  3184. height: math.unit(7 + 2/12, "feet"),
  3185. weight: math.unit(320, "kg"),
  3186. preyCapacity: math.unit(0.276549935, "people"),
  3187. name: "Front (Dressed)",
  3188. image: {
  3189. source: "./media/characters/rai/front-dressed.svg",
  3190. extra: 1802/1696,
  3191. bottom: 68/1870
  3192. },
  3193. form: "anthro"
  3194. },
  3195. side: {
  3196. height: math.unit(7 + 2/12, "feet"),
  3197. weight: math.unit(320, "kg"),
  3198. preyCapacity: math.unit(0.276549935, "people"),
  3199. name: "Side",
  3200. image: {
  3201. source: "./media/characters/rai/side.svg",
  3202. extra: 1789/1710,
  3203. bottom: 115/1904
  3204. },
  3205. form: "anthro"
  3206. },
  3207. back: {
  3208. height: math.unit(7 + 2/12, "feet"),
  3209. weight: math.unit(320, "kg"),
  3210. preyCapacity: math.unit(0.276549935, "people"),
  3211. name: "Back",
  3212. image: {
  3213. source: "./media/characters/rai/back.svg",
  3214. extra: 1770/1707,
  3215. bottom: 28/1798
  3216. },
  3217. form: "anthro"
  3218. },
  3219. feral: {
  3220. height: math.unit(9.5, "feet"),
  3221. weight: math.unit(640, "kg"),
  3222. preyCapacity: math.unit(4, "people"),
  3223. name: "Feral",
  3224. image: {
  3225. source: "./media/characters/rai/feral.svg",
  3226. extra: 945/553,
  3227. bottom: 176/1121
  3228. },
  3229. form: "feral",
  3230. default: true
  3231. },
  3232. dragon: {
  3233. height: math.unit(23, "feet"),
  3234. weight: math.unit(50000, "lb"),
  3235. name: "Dragon",
  3236. image: {
  3237. source: "./media/characters/rai/dragon.svg",
  3238. extra: 2498 / 2030,
  3239. bottom: 85.2 / 2584
  3240. },
  3241. form: "dragon",
  3242. default: true
  3243. },
  3244. maw: {
  3245. height: math.unit(1.69, "feet"),
  3246. name: "Maw",
  3247. image: {
  3248. source: "./media/characters/rai/maw.svg"
  3249. },
  3250. form: "anthro"
  3251. },
  3252. },
  3253. [
  3254. {
  3255. name: "Normal",
  3256. height: math.unit(7 + 2/12, "feet"),
  3257. form: "anthro"
  3258. },
  3259. {
  3260. name: "Big",
  3261. height: math.unit(11, "feet"),
  3262. form: "anthro"
  3263. },
  3264. {
  3265. name: "Minimacro",
  3266. height: math.unit(77, "feet"),
  3267. form: "anthro"
  3268. },
  3269. {
  3270. name: "Macro",
  3271. height: math.unit(302, "feet"),
  3272. default: true,
  3273. form: "anthro"
  3274. },
  3275. {
  3276. name: "Normal",
  3277. height: math.unit(9.5, "feet"),
  3278. form: "feral",
  3279. default: true
  3280. },
  3281. {
  3282. name: "Normal",
  3283. height: math.unit(23, "feet"),
  3284. form: "dragon",
  3285. default: true
  3286. }
  3287. ],
  3288. {
  3289. "anthro": {
  3290. name: "Anthro",
  3291. default: true
  3292. },
  3293. "feral": {
  3294. name: "Feral",
  3295. },
  3296. "dragon": {
  3297. name: "Dragon",
  3298. },
  3299. }
  3300. ))
  3301. characterMakers.push(() => makeCharacter(
  3302. { name: "Jazzy", species: ["coyote", "wolf"], tags: ["anthro"] },
  3303. {
  3304. frontDressed: {
  3305. height: math.unit(216, "feet"),
  3306. weight: math.unit(7000000, "lb"),
  3307. preyCapacity: math.unit(1321, "people"),
  3308. name: "Front (Dressed)",
  3309. image: {
  3310. source: "./media/characters/jazzy/front-dressed.svg",
  3311. extra: 2738 / 2651,
  3312. bottom: 41.8 / 2786
  3313. }
  3314. },
  3315. backDressed: {
  3316. height: math.unit(216, "feet"),
  3317. weight: math.unit(7000000, "lb"),
  3318. preyCapacity: math.unit(1321, "people"),
  3319. name: "Back (Dressed)",
  3320. image: {
  3321. source: "./media/characters/jazzy/back-dressed.svg",
  3322. extra: 2775 / 2673,
  3323. bottom: 36.8 / 2817
  3324. }
  3325. },
  3326. front: {
  3327. height: math.unit(216, "feet"),
  3328. weight: math.unit(7000000, "lb"),
  3329. preyCapacity: math.unit(1321, "people"),
  3330. name: "Front",
  3331. image: {
  3332. source: "./media/characters/jazzy/front.svg",
  3333. extra: 2738 / 2651,
  3334. bottom: 41.8 / 2786
  3335. }
  3336. },
  3337. back: {
  3338. height: math.unit(216, "feet"),
  3339. weight: math.unit(7000000, "lb"),
  3340. preyCapacity: math.unit(1321, "people"),
  3341. name: "Back",
  3342. image: {
  3343. source: "./media/characters/jazzy/back.svg",
  3344. extra: 2775 / 2673,
  3345. bottom: 36.8 / 2817
  3346. }
  3347. },
  3348. maw: {
  3349. height: math.unit(20, "feet"),
  3350. name: "Maw",
  3351. image: {
  3352. source: "./media/characters/jazzy/maw.svg"
  3353. }
  3354. },
  3355. paws: {
  3356. height: math.unit(27.5, "feet"),
  3357. name: "Paws",
  3358. image: {
  3359. source: "./media/characters/jazzy/paws.svg"
  3360. }
  3361. },
  3362. eye: {
  3363. height: math.unit(4.4, "feet"),
  3364. name: "Eye",
  3365. image: {
  3366. source: "./media/characters/jazzy/eye.svg"
  3367. }
  3368. },
  3369. droneOffense: {
  3370. height: math.unit(9.5, "inches"),
  3371. name: "Drone (Offense)",
  3372. image: {
  3373. source: "./media/characters/jazzy/drone-offense.svg"
  3374. }
  3375. },
  3376. droneRecon: {
  3377. height: math.unit(9.5, "inches"),
  3378. name: "Drone (Recon)",
  3379. image: {
  3380. source: "./media/characters/jazzy/drone-recon.svg"
  3381. }
  3382. },
  3383. droneDefense: {
  3384. height: math.unit(9.5, "inches"),
  3385. name: "Drone (Defense)",
  3386. image: {
  3387. source: "./media/characters/jazzy/drone-defense.svg"
  3388. }
  3389. },
  3390. },
  3391. [
  3392. {
  3393. name: "Macro",
  3394. height: math.unit(216, "feet"),
  3395. default: true
  3396. },
  3397. ]
  3398. ))
  3399. characterMakers.push(() => makeCharacter(
  3400. { name: "Flamm", species: ["cat"], tags: ["anthro"] },
  3401. {
  3402. front: {
  3403. height: math.unit(9 + 6/12, "feet"),
  3404. weight: math.unit(700, "lb"),
  3405. name: "Front",
  3406. image: {
  3407. source: "./media/characters/flamm/front.svg",
  3408. extra: 1736/1596,
  3409. bottom: 93/1829
  3410. }
  3411. },
  3412. buff: {
  3413. height: math.unit(9 + 6/12, "feet"),
  3414. weight: math.unit(950, "lb"),
  3415. name: "Buff",
  3416. image: {
  3417. source: "./media/characters/flamm/buff.svg",
  3418. extra: 3018/2874,
  3419. bottom: 221/3239
  3420. }
  3421. },
  3422. },
  3423. [
  3424. {
  3425. name: "Normal",
  3426. height: math.unit(9.5, "feet")
  3427. },
  3428. {
  3429. name: "Macro",
  3430. height: math.unit(200, "feet"),
  3431. default: true
  3432. },
  3433. ]
  3434. ))
  3435. characterMakers.push(() => makeCharacter(
  3436. { name: "Zephiro", species: ["raccoon"], tags: ["anthro"] },
  3437. {
  3438. front: {
  3439. height: math.unit(5 + 3/12, "feet"),
  3440. weight: math.unit(60, "kg"),
  3441. name: "Front",
  3442. image: {
  3443. source: "./media/characters/zephiro/front.svg",
  3444. extra: 1873/1761,
  3445. bottom: 147/2020
  3446. }
  3447. },
  3448. side: {
  3449. height: math.unit(5 + 3/12, "feet"),
  3450. weight: math.unit(60, "kg"),
  3451. name: "Side",
  3452. image: {
  3453. source: "./media/characters/zephiro/side.svg",
  3454. extra: 1929/1827,
  3455. bottom: 65/1994
  3456. }
  3457. },
  3458. back: {
  3459. height: math.unit(5 + 3/12, "feet"),
  3460. weight: math.unit(60, "kg"),
  3461. name: "Back",
  3462. image: {
  3463. source: "./media/characters/zephiro/back.svg",
  3464. extra: 1926/1816,
  3465. bottom: 41/1967
  3466. }
  3467. },
  3468. hand: {
  3469. height: math.unit(0.68, "feet"),
  3470. name: "Hand",
  3471. image: {
  3472. source: "./media/characters/zephiro/hand.svg"
  3473. }
  3474. },
  3475. paw: {
  3476. height: math.unit(1, "feet"),
  3477. name: "Paw",
  3478. image: {
  3479. source: "./media/characters/zephiro/paw.svg"
  3480. }
  3481. },
  3482. beans: {
  3483. height: math.unit(0.93, "feet"),
  3484. name: "Beans",
  3485. image: {
  3486. source: "./media/characters/zephiro/beans.svg"
  3487. }
  3488. },
  3489. },
  3490. [
  3491. {
  3492. name: "Micro",
  3493. height: math.unit(3, "inches")
  3494. },
  3495. {
  3496. name: "Normal",
  3497. height: math.unit(5 + 3 / 12, "feet"),
  3498. default: true
  3499. },
  3500. {
  3501. name: "Macro",
  3502. height: math.unit(118, "feet")
  3503. },
  3504. ]
  3505. ))
  3506. characterMakers.push(() => makeCharacter(
  3507. { name: "Fory", species: ["weasel", "rabbit"], tags: ["anthro"] },
  3508. {
  3509. front: {
  3510. height: math.unit(5, "feet"),
  3511. weight: math.unit(90, "kg"),
  3512. preyCapacity: math.unit(14, "people"),
  3513. name: "Front",
  3514. image: {
  3515. source: "./media/characters/fory/front.svg",
  3516. extra: 2862 / 2674,
  3517. bottom: 180 / 3043.8
  3518. },
  3519. form: "weaselbun",
  3520. default: true,
  3521. extraAttributes: {
  3522. "pawSize": {
  3523. name: "Paw Size",
  3524. power: 2,
  3525. type: "area",
  3526. base: math.unit(0.1596, "m^2")
  3527. },
  3528. "pawLength": {
  3529. name: "Paw Length",
  3530. power: 1,
  3531. type: "length",
  3532. base: math.unit(0.7, "m")
  3533. }
  3534. }
  3535. },
  3536. back: {
  3537. height: math.unit(5, "feet"),
  3538. weight: math.unit(90, "kg"),
  3539. preyCapacity: math.unit(14, "people"),
  3540. name: "Back",
  3541. image: {
  3542. source: "./media/characters/fory/back.svg",
  3543. extra: 1790/1672,
  3544. bottom: 84/1874
  3545. },
  3546. form: "weaselbun",
  3547. extraAttributes: {
  3548. "pawSize": {
  3549. name: "Paw Size",
  3550. power: 2,
  3551. type: "area",
  3552. base: math.unit(0.1596, "m^2")
  3553. },
  3554. "pawLength": {
  3555. name: "Paw Length",
  3556. power: 1,
  3557. type: "length",
  3558. base: math.unit(0.7, "m")
  3559. }
  3560. }
  3561. },
  3562. paw: {
  3563. height: math.unit(2.14, "feet"),
  3564. name: "Paw",
  3565. image: {
  3566. source: "./media/characters/fory/paw.svg"
  3567. },
  3568. form: "weaselbun",
  3569. extraAttributes: {
  3570. "pawSize": {
  3571. name: "Paw Size",
  3572. power: 2,
  3573. type: "area",
  3574. base: math.unit(0.1596, "m^2")
  3575. },
  3576. "pawLength": {
  3577. name: "Paw Length",
  3578. power: 1,
  3579. type: "length",
  3580. base: math.unit(0.48, "m")
  3581. }
  3582. }
  3583. },
  3584. bunBack: {
  3585. height: math.unit(3, "feet"),
  3586. weight: math.unit(20, "kg"),
  3587. preyCapacity: math.unit(3, "people"),
  3588. name: "Back",
  3589. image: {
  3590. source: "./media/characters/fory/bun-back.svg",
  3591. extra: 1749/1564,
  3592. bottom: 246/1995
  3593. },
  3594. form: "bun",
  3595. default: true,
  3596. extraAttributes: {
  3597. "pawSize": {
  3598. name: "Paw Size",
  3599. power: 2,
  3600. type: "area",
  3601. base: math.unit(0.072, "m^2")
  3602. },
  3603. "pawLength": {
  3604. name: "Paw Length",
  3605. power: 1,
  3606. type: "length",
  3607. base: math.unit(0.45, "m")
  3608. }
  3609. }
  3610. },
  3611. },
  3612. [
  3613. {
  3614. name: "Normal",
  3615. height: math.unit(5, "feet"),
  3616. form: "weaselbun"
  3617. },
  3618. {
  3619. name: "Macro",
  3620. height: math.unit(50, "feet"),
  3621. default: true,
  3622. form: "weaselbun"
  3623. },
  3624. {
  3625. name: "Megamacro",
  3626. height: math.unit(10, "miles"),
  3627. form: "weaselbun"
  3628. },
  3629. {
  3630. name: "Gigamacro",
  3631. height: math.unit(5, "earths"),
  3632. form: "weaselbun"
  3633. },
  3634. {
  3635. name: "Normal",
  3636. height: math.unit(3, "feet"),
  3637. default: true,
  3638. form: "bun"
  3639. },
  3640. {
  3641. name: "Fun-Size",
  3642. height: math.unit(12, "feet"),
  3643. form: "bun"
  3644. },
  3645. {
  3646. name: "Macro",
  3647. height: math.unit(100, "feet"),
  3648. form: "bun"
  3649. },
  3650. {
  3651. name: "Planetary",
  3652. height: math.unit(3, "earths"),
  3653. form: "bun"
  3654. },
  3655. ],
  3656. {
  3657. "weaselbun": {
  3658. name: "Weaselbun",
  3659. default: true
  3660. },
  3661. "bun": {
  3662. name: "Bun",
  3663. },
  3664. }
  3665. ))
  3666. characterMakers.push(() => makeCharacter(
  3667. { name: "Kurrikage", species: ["dragon"], tags: ["anthro"] },
  3668. {
  3669. front: {
  3670. height: math.unit(7, "feet"),
  3671. weight: math.unit(90, "kg"),
  3672. name: "Front",
  3673. image: {
  3674. source: "./media/characters/kurrikage/front.svg",
  3675. extra: 1845/1733,
  3676. bottom: 119/1964
  3677. }
  3678. },
  3679. back: {
  3680. height: math.unit(7, "feet"),
  3681. weight: math.unit(90, "kg"),
  3682. name: "Back",
  3683. image: {
  3684. source: "./media/characters/kurrikage/back.svg",
  3685. extra: 1790/1677,
  3686. bottom: 61/1851
  3687. }
  3688. },
  3689. dressed: {
  3690. height: math.unit(7, "feet"),
  3691. weight: math.unit(90, "kg"),
  3692. name: "Dressed",
  3693. image: {
  3694. source: "./media/characters/kurrikage/dressed.svg",
  3695. extra: 1845/1733,
  3696. bottom: 119/1964
  3697. }
  3698. },
  3699. foot: {
  3700. height: math.unit(1.5, "feet"),
  3701. name: "Foot",
  3702. image: {
  3703. source: "./media/characters/kurrikage/foot.svg"
  3704. }
  3705. },
  3706. staff: {
  3707. height: math.unit(6.7, "feet"),
  3708. name: "Staff",
  3709. image: {
  3710. source: "./media/characters/kurrikage/staff.svg"
  3711. }
  3712. },
  3713. peek: {
  3714. height: math.unit(1.05, "feet"),
  3715. name: "Peeking",
  3716. image: {
  3717. source: "./media/characters/kurrikage/peek.svg",
  3718. bottom: 0.08
  3719. }
  3720. },
  3721. },
  3722. [
  3723. {
  3724. name: "Normal",
  3725. height: math.unit(12, "feet"),
  3726. default: true
  3727. },
  3728. {
  3729. name: "Big",
  3730. height: math.unit(20, "feet")
  3731. },
  3732. {
  3733. name: "Macro",
  3734. height: math.unit(500, "feet")
  3735. },
  3736. {
  3737. name: "Megamacro",
  3738. height: math.unit(20, "miles")
  3739. },
  3740. ]
  3741. ))
  3742. characterMakers.push(() => makeCharacter(
  3743. { name: "Shingo", species: ["red-panda"], tags: ["anthro"] },
  3744. {
  3745. front: {
  3746. height: math.unit(6, "feet"),
  3747. weight: math.unit(75, "kg"),
  3748. name: "Front",
  3749. image: {
  3750. source: "./media/characters/shingo/front.svg",
  3751. extra: 1900/1825,
  3752. bottom: 82/1982
  3753. }
  3754. },
  3755. side: {
  3756. height: math.unit(6, "feet"),
  3757. weight: math.unit(75, "kg"),
  3758. name: "Side",
  3759. image: {
  3760. source: "./media/characters/shingo/side.svg",
  3761. extra: 1930/1865,
  3762. bottom: 16/1946
  3763. }
  3764. },
  3765. back: {
  3766. height: math.unit(6, "feet"),
  3767. weight: math.unit(75, "kg"),
  3768. name: "Back",
  3769. image: {
  3770. source: "./media/characters/shingo/back.svg",
  3771. extra: 1922/1852,
  3772. bottom: 16/1938
  3773. }
  3774. },
  3775. frontDressed: {
  3776. height: math.unit(6, "feet"),
  3777. weight: math.unit(150, "lb"),
  3778. name: "Front-dressed",
  3779. image: {
  3780. source: "./media/characters/shingo/front-dressed.svg",
  3781. extra: 1900/1825,
  3782. bottom: 82/1982
  3783. }
  3784. },
  3785. paw: {
  3786. height: math.unit(1.29, "feet"),
  3787. name: "Paw",
  3788. image: {
  3789. source: "./media/characters/shingo/paw.svg"
  3790. }
  3791. },
  3792. hand: {
  3793. height: math.unit(1.07, "feet"),
  3794. name: "Hand",
  3795. image: {
  3796. source: "./media/characters/shingo/hand.svg"
  3797. }
  3798. },
  3799. frontAlt: {
  3800. height: math.unit(6, "feet"),
  3801. weight: math.unit(75, "kg"),
  3802. name: "Front (Alt)",
  3803. image: {
  3804. source: "./media/characters/shingo/front-alt.svg",
  3805. extra: 3511 / 3338,
  3806. bottom: 0.005
  3807. }
  3808. },
  3809. frontAlt2: {
  3810. height: math.unit(6, "feet"),
  3811. weight: math.unit(75, "kg"),
  3812. name: "Front (Alt 2)",
  3813. image: {
  3814. source: "./media/characters/shingo/front-alt-2.svg",
  3815. extra: 706/681,
  3816. bottom: 11/717
  3817. }
  3818. },
  3819. pawAlt: {
  3820. height: math.unit(1, "feet"),
  3821. name: "Paw (Alt)",
  3822. image: {
  3823. source: "./media/characters/shingo/paw-alt.svg"
  3824. }
  3825. },
  3826. },
  3827. [
  3828. {
  3829. name: "Micro",
  3830. height: math.unit(4, "inches")
  3831. },
  3832. {
  3833. name: "Normal",
  3834. height: math.unit(6, "feet"),
  3835. default: true
  3836. },
  3837. {
  3838. name: "Macro",
  3839. height: math.unit(108, "feet")
  3840. },
  3841. {
  3842. name: "Macro+",
  3843. height: math.unit(1500, "feet")
  3844. },
  3845. ]
  3846. ))
  3847. characterMakers.push(() => makeCharacter(
  3848. { name: "Aigey", species: ["wolf", "dolphin"], tags: ["anthro"] },
  3849. {
  3850. side: {
  3851. height: math.unit(6, "feet"),
  3852. weight: math.unit(75, "kg"),
  3853. name: "Side",
  3854. image: {
  3855. source: "./media/characters/aigey/side.svg"
  3856. }
  3857. },
  3858. },
  3859. [
  3860. {
  3861. name: "Macro",
  3862. height: math.unit(200, "feet"),
  3863. default: true
  3864. },
  3865. {
  3866. name: "Megamacro",
  3867. height: math.unit(100, "miles")
  3868. },
  3869. ]
  3870. )
  3871. )
  3872. characterMakers.push(() => makeCharacter(
  3873. { name: "Natasha", species: ["african-wild-dog"], tags: ["anthro"] },
  3874. {
  3875. front: {
  3876. height: math.unit(13, "feet"),
  3877. weight: math.unit(1036.80, "kg"),
  3878. name: "Front",
  3879. image: {
  3880. source: "./media/characters/natasha/front.svg",
  3881. extra: 1301/1210,
  3882. bottom: 39/1340
  3883. }
  3884. },
  3885. back: {
  3886. height: math.unit(13, "feet"),
  3887. weight: math.unit(1036.80, "kg"),
  3888. name: "Back",
  3889. image: {
  3890. source: "./media/characters/natasha/back.svg",
  3891. extra: 1342/1252,
  3892. bottom: 20/1362
  3893. }
  3894. },
  3895. head: {
  3896. height: math.unit(3.48, "feet"),
  3897. name: "Head",
  3898. image: {
  3899. source: "./media/characters/natasha/head.svg"
  3900. }
  3901. },
  3902. jaws: {
  3903. height: math.unit(3.52, "feet"),
  3904. name: "Jaws",
  3905. image: {
  3906. source: "./media/characters/natasha/jaws.svg"
  3907. }
  3908. },
  3909. paws: {
  3910. height: math.unit(2.7, "feet"),
  3911. name: "Paws",
  3912. image: {
  3913. source: "./media/characters/natasha/paws.svg"
  3914. }
  3915. },
  3916. collar: {
  3917. height: math.unit(0.89, "feet"),
  3918. name: "Collar",
  3919. image: {
  3920. source: "./media/characters/natasha/collar.svg"
  3921. }
  3922. },
  3923. gauge: {
  3924. height: math.unit(0.36, "feet"),
  3925. name: "Gauge",
  3926. image: {
  3927. source: "./media/characters/natasha/gauge.svg"
  3928. }
  3929. },
  3930. },
  3931. [
  3932. {
  3933. name: "Shortstack",
  3934. height: math.unit(3, "feet")
  3935. },
  3936. {
  3937. name: "Normal",
  3938. height: math.unit(13, "feet"),
  3939. default: true
  3940. },
  3941. {
  3942. name: "Macro",
  3943. height: math.unit(100, "feet")
  3944. },
  3945. {
  3946. name: "Macro+",
  3947. height: math.unit(260, "feet")
  3948. },
  3949. {
  3950. name: "Macro++",
  3951. height: math.unit(1, "mile")
  3952. },
  3953. ]
  3954. ))
  3955. characterMakers.push(() => makeCharacter(
  3956. { name: "Malik", species: ["hyena"], tags: ["anthro"] },
  3957. {
  3958. front: {
  3959. height: math.unit(6, "feet"),
  3960. weight: math.unit(75, "kg"),
  3961. name: "Front",
  3962. image: {
  3963. source: "./media/characters/malik/front.svg",
  3964. extra: 1750/1561,
  3965. bottom: 80/1830
  3966. },
  3967. extraAttributes: {
  3968. "toeSize": {
  3969. name: "Toe Size",
  3970. power: 2,
  3971. type: "area",
  3972. base: math.unit(0.0159, "m^2")
  3973. },
  3974. "pawSize": {
  3975. name: "Paw Size",
  3976. power: 2,
  3977. type: "area",
  3978. base: math.unit(0.09834, "m^2")
  3979. },
  3980. }
  3981. },
  3982. side: {
  3983. height: math.unit(6, "feet"),
  3984. weight: math.unit(75, "kg"),
  3985. name: "Side",
  3986. image: {
  3987. source: "./media/characters/malik/side.svg",
  3988. extra: 1802/1685,
  3989. bottom: 42/1844
  3990. },
  3991. extraAttributes: {
  3992. "toeSize": {
  3993. name: "Toe Size",
  3994. power: 2,
  3995. type: "area",
  3996. base: math.unit(0.0159, "m^2")
  3997. },
  3998. "pawSize": {
  3999. name: "Paw Size",
  4000. power: 2,
  4001. type: "area",
  4002. base: math.unit(0.09834, "m^2")
  4003. },
  4004. }
  4005. },
  4006. back: {
  4007. height: math.unit(6, "feet"),
  4008. weight: math.unit(75, "kg"),
  4009. name: "Back",
  4010. image: {
  4011. source: "./media/characters/malik/back.svg",
  4012. extra: 1803/1607,
  4013. bottom: 33/1836
  4014. },
  4015. extraAttributes: {
  4016. "toeSize": {
  4017. name: "Toe Size",
  4018. power: 2,
  4019. type: "area",
  4020. base: math.unit(0.0159, "m^2")
  4021. },
  4022. "pawSize": {
  4023. name: "Paw Size",
  4024. power: 2,
  4025. type: "area",
  4026. base: math.unit(0.09834, "m^2")
  4027. },
  4028. }
  4029. },
  4030. },
  4031. [
  4032. {
  4033. name: "Macro",
  4034. height: math.unit(156, "feet"),
  4035. default: true
  4036. },
  4037. {
  4038. name: "Macro+",
  4039. height: math.unit(1188, "feet")
  4040. },
  4041. ]
  4042. ))
  4043. characterMakers.push(() => makeCharacter(
  4044. { name: "Sefer", species: ["carbuncle"], tags: ["anthro"] },
  4045. {
  4046. front: {
  4047. height: math.unit(6, "feet"),
  4048. weight: math.unit(75, "kg"),
  4049. name: "Front",
  4050. image: {
  4051. source: "./media/characters/sefer/front.svg",
  4052. extra: 848 / 659,
  4053. bottom: 28.3 / 876.442
  4054. }
  4055. },
  4056. back: {
  4057. height: math.unit(6, "feet"),
  4058. weight: math.unit(75, "kg"),
  4059. name: "Back",
  4060. image: {
  4061. source: "./media/characters/sefer/back.svg",
  4062. extra: 864 / 695,
  4063. bottom: 10 / 871
  4064. }
  4065. },
  4066. frontDressed: {
  4067. height: math.unit(6, "feet"),
  4068. weight: math.unit(75, "kg"),
  4069. name: "Dressed",
  4070. image: {
  4071. source: "./media/characters/sefer/dressed.svg",
  4072. extra: 839 / 653,
  4073. bottom: 37.6 / 878
  4074. }
  4075. },
  4076. },
  4077. [
  4078. {
  4079. name: "Normal",
  4080. height: math.unit(6, "feet"),
  4081. default: true
  4082. },
  4083. {
  4084. name: "Big",
  4085. height: math.unit(8, "meters")
  4086. },
  4087. ]
  4088. ))
  4089. characterMakers.push(() => makeCharacter(
  4090. { name: "North", species: ["leaf-nosed-bat"], tags: ["anthro"] },
  4091. {
  4092. body: {
  4093. height: math.unit(2.2428, "meter"),
  4094. weight: math.unit(124.738, "kg"),
  4095. name: "Body",
  4096. image: {
  4097. extra: 1225 / 1050,
  4098. source: "./media/characters/north/front.svg"
  4099. }
  4100. }
  4101. },
  4102. [
  4103. {
  4104. name: "Micro",
  4105. height: math.unit(4, "inches")
  4106. },
  4107. {
  4108. name: "Macro",
  4109. height: math.unit(63, "meters")
  4110. },
  4111. {
  4112. name: "Megamacro",
  4113. height: math.unit(101, "miles"),
  4114. default: true
  4115. }
  4116. ]
  4117. ))
  4118. characterMakers.push(() => makeCharacter(
  4119. { name: "Talan", species: ["dragon", "fish"], tags: ["anthro"] },
  4120. {
  4121. angled: {
  4122. height: math.unit(4, "meter"),
  4123. weight: math.unit(150, "kg"),
  4124. name: "Angled",
  4125. image: {
  4126. source: "./media/characters/talan/angled-sfw.svg",
  4127. bottom: 29 / 3734
  4128. }
  4129. },
  4130. angledNsfw: {
  4131. height: math.unit(4, "meter"),
  4132. weight: math.unit(150, "kg"),
  4133. name: "Angled (NSFW)",
  4134. image: {
  4135. source: "./media/characters/talan/angled-nsfw.svg",
  4136. bottom: 29 / 3734
  4137. }
  4138. },
  4139. frontNsfw: {
  4140. height: math.unit(4, "meter"),
  4141. weight: math.unit(150, "kg"),
  4142. name: "Front (NSFW)",
  4143. image: {
  4144. source: "./media/characters/talan/front-nsfw.svg",
  4145. bottom: 29 / 3734
  4146. }
  4147. },
  4148. sideNsfw: {
  4149. height: math.unit(4, "meter"),
  4150. weight: math.unit(150, "kg"),
  4151. name: "Side (NSFW)",
  4152. image: {
  4153. source: "./media/characters/talan/side-nsfw.svg",
  4154. bottom: 29 / 3734
  4155. }
  4156. },
  4157. back: {
  4158. height: math.unit(4, "meter"),
  4159. weight: math.unit(150, "kg"),
  4160. name: "Back",
  4161. image: {
  4162. source: "./media/characters/talan/back.svg"
  4163. }
  4164. },
  4165. dickBottom: {
  4166. height: math.unit(0.621, "meter"),
  4167. name: "Dick (Bottom)",
  4168. image: {
  4169. source: "./media/characters/talan/dick-bottom.svg"
  4170. }
  4171. },
  4172. dickTop: {
  4173. height: math.unit(0.621, "meter"),
  4174. name: "Dick (Top)",
  4175. image: {
  4176. source: "./media/characters/talan/dick-top.svg"
  4177. }
  4178. },
  4179. dickSide: {
  4180. height: math.unit(0.305, "meter"),
  4181. name: "Dick (Side)",
  4182. image: {
  4183. source: "./media/characters/talan/dick-side.svg"
  4184. }
  4185. },
  4186. dickFront: {
  4187. height: math.unit(0.305, "meter"),
  4188. name: "Dick (Front)",
  4189. image: {
  4190. source: "./media/characters/talan/dick-front.svg"
  4191. }
  4192. },
  4193. },
  4194. [
  4195. {
  4196. name: "Normal",
  4197. height: math.unit(4, "meters")
  4198. },
  4199. {
  4200. name: "Macro",
  4201. height: math.unit(100, "meters")
  4202. },
  4203. {
  4204. name: "Megamacro",
  4205. height: math.unit(2, "miles"),
  4206. default: true
  4207. },
  4208. {
  4209. name: "Gigamacro",
  4210. height: math.unit(5000, "miles")
  4211. },
  4212. {
  4213. name: "Teramacro",
  4214. height: math.unit(100, "parsecs")
  4215. }
  4216. ]
  4217. ))
  4218. characterMakers.push(() => makeCharacter(
  4219. { name: "Gael'Rathus", species: ["ram", "demon"], tags: ["anthro"] },
  4220. {
  4221. front: {
  4222. height: math.unit(2, "meter"),
  4223. weight: math.unit(90, "kg"),
  4224. name: "Front",
  4225. image: {
  4226. source: "./media/characters/gael'rathus/front.svg"
  4227. }
  4228. },
  4229. frontAlt: {
  4230. height: math.unit(2, "meter"),
  4231. weight: math.unit(90, "kg"),
  4232. name: "Front (alt)",
  4233. image: {
  4234. source: "./media/characters/gael'rathus/front-alt.svg"
  4235. }
  4236. },
  4237. frontAlt2: {
  4238. height: math.unit(2, "meter"),
  4239. weight: math.unit(90, "kg"),
  4240. name: "Front (alt 2)",
  4241. image: {
  4242. source: "./media/characters/gael'rathus/front-alt-2.svg"
  4243. }
  4244. }
  4245. },
  4246. [
  4247. {
  4248. name: "Normal",
  4249. height: math.unit(9, "feet"),
  4250. default: true
  4251. },
  4252. {
  4253. name: "Large",
  4254. height: math.unit(25, "feet")
  4255. },
  4256. {
  4257. name: "Macro",
  4258. height: math.unit(0.25, "miles")
  4259. },
  4260. {
  4261. name: "Megamacro",
  4262. height: math.unit(10, "miles")
  4263. }
  4264. ]
  4265. ))
  4266. characterMakers.push(() => makeCharacter(
  4267. { name: "Sosha", species: ["cougar"], tags: ["feral"] },
  4268. {
  4269. side: {
  4270. height: math.unit(2, "meter"),
  4271. weight: math.unit(140, "kg"),
  4272. name: "Side",
  4273. image: {
  4274. source: "./media/characters/sosha/side.svg",
  4275. extra: 1170/1006,
  4276. bottom: 94/1264
  4277. }
  4278. },
  4279. maw: {
  4280. height: math.unit(2.87, "feet"),
  4281. name: "Maw",
  4282. image: {
  4283. source: "./media/characters/sosha/maw.svg",
  4284. extra: 966/865,
  4285. bottom: 0/966
  4286. }
  4287. },
  4288. cooch: {
  4289. height: math.unit(5.6, "feet"),
  4290. name: "Cooch",
  4291. image: {
  4292. source: "./media/characters/sosha/cooch.svg"
  4293. }
  4294. },
  4295. },
  4296. [
  4297. {
  4298. name: "Normal",
  4299. height: math.unit(12, "feet"),
  4300. default: true
  4301. }
  4302. ]
  4303. ))
  4304. characterMakers.push(() => makeCharacter(
  4305. { name: "RuNNoLa", species: ["wolf"], tags: ["feral"] },
  4306. {
  4307. side: {
  4308. height: math.unit(5 + 5 / 12, "feet"),
  4309. weight: math.unit(170, "kg"),
  4310. name: "Side",
  4311. image: {
  4312. source: "./media/characters/runnola/side.svg",
  4313. extra: 741 / 448,
  4314. bottom: 0.05
  4315. }
  4316. },
  4317. },
  4318. [
  4319. {
  4320. name: "Small",
  4321. height: math.unit(3, "feet")
  4322. },
  4323. {
  4324. name: "Normal",
  4325. height: math.unit(5 + 5 / 12, "feet"),
  4326. default: true
  4327. },
  4328. {
  4329. name: "Big",
  4330. height: math.unit(10, "feet")
  4331. },
  4332. ]
  4333. ))
  4334. characterMakers.push(() => makeCharacter(
  4335. { name: "Kurribird", species: ["avian"], tags: ["anthro"] },
  4336. {
  4337. front: {
  4338. height: math.unit(2, "meter"),
  4339. weight: math.unit(50, "kg"),
  4340. name: "Front",
  4341. image: {
  4342. source: "./media/characters/kurribird/front.svg",
  4343. bottom: 0.015
  4344. }
  4345. },
  4346. frontAlt: {
  4347. height: math.unit(1.5, "meter"),
  4348. weight: math.unit(50, "kg"),
  4349. name: "Front (Alt)",
  4350. image: {
  4351. source: "./media/characters/kurribird/front-alt.svg",
  4352. extra: 1.45
  4353. }
  4354. },
  4355. },
  4356. [
  4357. {
  4358. name: "Normal",
  4359. height: math.unit(7, "feet")
  4360. },
  4361. {
  4362. name: "Big",
  4363. height: math.unit(12, "feet"),
  4364. default: true
  4365. },
  4366. {
  4367. name: "Macro",
  4368. height: math.unit(1500, "feet")
  4369. },
  4370. {
  4371. name: "Megamacro",
  4372. height: math.unit(2, "miles")
  4373. }
  4374. ]
  4375. ))
  4376. characterMakers.push(() => makeCharacter(
  4377. { name: "Elbial", species: ["goat", "lion", "demon", "deity"], tags: ["anthro"] },
  4378. {
  4379. front: {
  4380. height: math.unit(2, "meter"),
  4381. weight: math.unit(80, "kg"),
  4382. name: "Front",
  4383. image: {
  4384. source: "./media/characters/elbial/front.svg",
  4385. extra: 1643 / 1556,
  4386. bottom: 60.2 / 1696
  4387. }
  4388. },
  4389. side: {
  4390. height: math.unit(2, "meter"),
  4391. weight: math.unit(80, "kg"),
  4392. name: "Side",
  4393. image: {
  4394. source: "./media/characters/elbial/side.svg",
  4395. extra: 1601/1528,
  4396. bottom: 97/1698
  4397. }
  4398. },
  4399. back: {
  4400. height: math.unit(2, "meter"),
  4401. weight: math.unit(80, "kg"),
  4402. name: "Back",
  4403. image: {
  4404. source: "./media/characters/elbial/back.svg",
  4405. extra: 1653/1569,
  4406. bottom: 20/1673
  4407. }
  4408. },
  4409. frontDressed: {
  4410. height: math.unit(2, "meter"),
  4411. weight: math.unit(80, "kg"),
  4412. name: "Front (Dressed)",
  4413. image: {
  4414. source: "./media/characters/elbial/front-dressed.svg",
  4415. extra: 1638/1569,
  4416. bottom: 70/1708
  4417. }
  4418. },
  4419. genitals: {
  4420. height: math.unit(2 / 3.367, "meter"),
  4421. name: "Genitals",
  4422. image: {
  4423. source: "./media/characters/elbial/genitals.svg"
  4424. }
  4425. },
  4426. },
  4427. [
  4428. {
  4429. name: "Large",
  4430. height: math.unit(100, "feet")
  4431. },
  4432. {
  4433. name: "Macro",
  4434. height: math.unit(500, "feet"),
  4435. default: true
  4436. },
  4437. {
  4438. name: "Megamacro",
  4439. height: math.unit(10, "miles")
  4440. },
  4441. {
  4442. name: "Gigamacro",
  4443. height: math.unit(25000, "miles")
  4444. },
  4445. {
  4446. name: "Full-Size",
  4447. height: math.unit(8000000, "gigaparsecs")
  4448. }
  4449. ]
  4450. ))
  4451. characterMakers.push(() => makeCharacter(
  4452. { name: "Noah", species: ["harpy-eagle"], tags: ["anthro"] },
  4453. {
  4454. front: {
  4455. height: math.unit(2, "meter"),
  4456. weight: math.unit(60, "kg"),
  4457. name: "Front",
  4458. image: {
  4459. source: "./media/characters/noah/front.svg",
  4460. extra: 1383/1313,
  4461. bottom: 104/1487
  4462. }
  4463. },
  4464. hand: {
  4465. height: math.unit(0.6, "feet"),
  4466. name: "Hand",
  4467. image: {
  4468. source: "./media/characters/noah/hand.svg"
  4469. }
  4470. },
  4471. talons: {
  4472. height: math.unit(1.385, "feet"),
  4473. name: "Talons",
  4474. image: {
  4475. source: "./media/characters/noah/talons.svg"
  4476. }
  4477. },
  4478. beak: {
  4479. height: math.unit(0.43, "feet"),
  4480. name: "Beak",
  4481. image: {
  4482. source: "./media/characters/noah/beak.svg"
  4483. }
  4484. },
  4485. collar: {
  4486. height: math.unit(0.88, "feet"),
  4487. name: "Collar",
  4488. image: {
  4489. source: "./media/characters/noah/collar.svg"
  4490. }
  4491. },
  4492. eyeNarrow: {
  4493. height: math.unit(0.18, "feet"),
  4494. name: "Eye (Narrow)",
  4495. image: {
  4496. source: "./media/characters/noah/eye-narrow.svg"
  4497. }
  4498. },
  4499. eyeNormal: {
  4500. height: math.unit(0.18, "feet"),
  4501. name: "Eye (Normal)",
  4502. image: {
  4503. source: "./media/characters/noah/eye-normal.svg"
  4504. }
  4505. },
  4506. eyeWide: {
  4507. height: math.unit(0.18, "feet"),
  4508. name: "Eye (Wide)",
  4509. image: {
  4510. source: "./media/characters/noah/eye-wide.svg"
  4511. }
  4512. },
  4513. ear: {
  4514. height: math.unit(0.64, "feet"),
  4515. name: "Ear",
  4516. image: {
  4517. source: "./media/characters/noah/ear.svg"
  4518. }
  4519. },
  4520. },
  4521. [
  4522. {
  4523. name: "Large",
  4524. height: math.unit(50, "feet")
  4525. },
  4526. {
  4527. name: "Macro",
  4528. height: math.unit(750, "feet"),
  4529. default: true
  4530. },
  4531. {
  4532. name: "Megamacro",
  4533. height: math.unit(50, "miles")
  4534. },
  4535. {
  4536. name: "Gigamacro",
  4537. height: math.unit(100000, "miles")
  4538. },
  4539. {
  4540. name: "Full-Size",
  4541. height: math.unit(3000000000, "miles")
  4542. }
  4543. ]
  4544. ))
  4545. characterMakers.push(() => makeCharacter(
  4546. { name: "Natalya", species: ["wolf"], tags: ["anthro"] },
  4547. {
  4548. front: {
  4549. height: math.unit(2, "meter"),
  4550. weight: math.unit(80, "kg"),
  4551. name: "Front",
  4552. image: {
  4553. source: "./media/characters/natalya/front.svg"
  4554. }
  4555. },
  4556. back: {
  4557. height: math.unit(2, "meter"),
  4558. weight: math.unit(80, "kg"),
  4559. name: "Back",
  4560. image: {
  4561. source: "./media/characters/natalya/back.svg"
  4562. }
  4563. }
  4564. },
  4565. [
  4566. {
  4567. name: "Normal",
  4568. height: math.unit(150, "feet"),
  4569. default: true
  4570. },
  4571. {
  4572. name: "Megamacro",
  4573. height: math.unit(5, "miles")
  4574. },
  4575. {
  4576. name: "Full-Size",
  4577. height: math.unit(600, "kiloparsecs")
  4578. }
  4579. ]
  4580. ))
  4581. characterMakers.push(() => makeCharacter(
  4582. { name: "Erestrebah", species: ["avian", "deer"], tags: ["anthro"] },
  4583. {
  4584. front: {
  4585. height: math.unit(2, "meter"),
  4586. weight: math.unit(50, "kg"),
  4587. name: "Front",
  4588. image: {
  4589. source: "./media/characters/erestrebah/front.svg",
  4590. extra: 1262/1162,
  4591. bottom: 96/1358
  4592. }
  4593. },
  4594. back: {
  4595. height: math.unit(2, "meter"),
  4596. weight: math.unit(50, "kg"),
  4597. name: "Back",
  4598. image: {
  4599. source: "./media/characters/erestrebah/back.svg",
  4600. extra: 1257/1139,
  4601. bottom: 13/1270
  4602. }
  4603. },
  4604. wing: {
  4605. height: math.unit(2, "meter"),
  4606. weight: math.unit(50, "kg"),
  4607. name: "Wing",
  4608. image: {
  4609. source: "./media/characters/erestrebah/wing.svg",
  4610. extra: 1262/1162,
  4611. bottom: 96/1358
  4612. }
  4613. },
  4614. mouth: {
  4615. height: math.unit(0.39, "feet"),
  4616. name: "Mouth",
  4617. image: {
  4618. source: "./media/characters/erestrebah/mouth.svg"
  4619. }
  4620. }
  4621. },
  4622. [
  4623. {
  4624. name: "Normal",
  4625. height: math.unit(10, "feet")
  4626. },
  4627. {
  4628. name: "Large",
  4629. height: math.unit(50, "feet"),
  4630. default: true
  4631. },
  4632. {
  4633. name: "Macro",
  4634. height: math.unit(300, "feet")
  4635. },
  4636. {
  4637. name: "Macro+",
  4638. height: math.unit(750, "feet")
  4639. },
  4640. {
  4641. name: "Megamacro",
  4642. height: math.unit(3, "miles")
  4643. }
  4644. ]
  4645. ))
  4646. characterMakers.push(() => makeCharacter(
  4647. { name: "Jennifer", species: ["rat", "demon"], tags: ["anthro"] },
  4648. {
  4649. front: {
  4650. height: math.unit(2, "meter"),
  4651. weight: math.unit(80, "kg"),
  4652. name: "Front",
  4653. image: {
  4654. source: "./media/characters/jennifer/front.svg",
  4655. bottom: 0.11,
  4656. extra: 1.16
  4657. }
  4658. },
  4659. frontAlt: {
  4660. height: math.unit(2, "meter"),
  4661. weight: math.unit(80, "kg"),
  4662. name: "Front (Alt)",
  4663. image: {
  4664. source: "./media/characters/jennifer/front-alt.svg"
  4665. }
  4666. }
  4667. },
  4668. [
  4669. {
  4670. name: "Canon Height",
  4671. height: math.unit(120, "feet"),
  4672. default: true
  4673. },
  4674. {
  4675. name: "Macro+",
  4676. height: math.unit(300, "feet")
  4677. },
  4678. {
  4679. name: "Megamacro",
  4680. height: math.unit(20000, "feet")
  4681. }
  4682. ]
  4683. ))
  4684. characterMakers.push(() => makeCharacter(
  4685. { name: "Kalista", species: ["phoenix"], tags: ["anthro"] },
  4686. {
  4687. front: {
  4688. height: math.unit(2, "meter"),
  4689. weight: math.unit(50, "kg"),
  4690. name: "Front",
  4691. image: {
  4692. source: "./media/characters/kalista/front.svg",
  4693. extra: 1314/1145,
  4694. bottom: 101/1415
  4695. }
  4696. },
  4697. back: {
  4698. height: math.unit(2, "meter"),
  4699. weight: math.unit(50, "kg"),
  4700. name: "Back",
  4701. image: {
  4702. source: "./media/characters/kalista/back.svg",
  4703. extra: 1366 / 1156,
  4704. bottom: 33.9 / 1362.78
  4705. }
  4706. }
  4707. },
  4708. [
  4709. {
  4710. name: "Uncomfortably Small",
  4711. height: math.unit(10, "feet")
  4712. },
  4713. {
  4714. name: "Small",
  4715. height: math.unit(30, "feet")
  4716. },
  4717. {
  4718. name: "Macro",
  4719. height: math.unit(100, "feet"),
  4720. default: true
  4721. },
  4722. {
  4723. name: "Macro+",
  4724. height: math.unit(2000, "feet")
  4725. },
  4726. {
  4727. name: "True Form",
  4728. height: math.unit(8924, "miles")
  4729. }
  4730. ]
  4731. ))
  4732. characterMakers.push(() => makeCharacter(
  4733. { name: "GiantGrowingVixen", species: ["fox"], tags: ["anthro"] },
  4734. {
  4735. front: {
  4736. height: math.unit(2, "meter"),
  4737. weight: math.unit(120, "kg"),
  4738. name: "Front",
  4739. image: {
  4740. source: "./media/characters/ggv/front.svg"
  4741. }
  4742. },
  4743. side: {
  4744. height: math.unit(2, "meter"),
  4745. weight: math.unit(120, "kg"),
  4746. name: "Side",
  4747. image: {
  4748. source: "./media/characters/ggv/side.svg"
  4749. }
  4750. }
  4751. },
  4752. [
  4753. {
  4754. name: "Extremely Puny",
  4755. height: math.unit(9 + 5 / 12, "feet")
  4756. },
  4757. {
  4758. name: "Horribly Small",
  4759. height: math.unit(47.7, "miles"),
  4760. default: true
  4761. },
  4762. {
  4763. name: "Reasonably Sized",
  4764. height: math.unit(25000, "parsecs")
  4765. },
  4766. {
  4767. name: "Slightly Uncompressed",
  4768. height: math.unit(7.77e31, "parsecs")
  4769. },
  4770. {
  4771. name: "Omniversal",
  4772. height: math.unit(1e300, "meters")
  4773. },
  4774. ]
  4775. ))
  4776. characterMakers.push(() => makeCharacter(
  4777. { name: "Napalm", species: ["aeromorph"], tags: ["anthro"] },
  4778. {
  4779. front: {
  4780. height: math.unit(2, "meter"),
  4781. weight: math.unit(75, "lb"),
  4782. name: "Front",
  4783. image: {
  4784. source: "./media/characters/napalm/front.svg"
  4785. }
  4786. },
  4787. back: {
  4788. height: math.unit(2, "meter"),
  4789. weight: math.unit(75, "lb"),
  4790. name: "Back",
  4791. image: {
  4792. source: "./media/characters/napalm/back.svg"
  4793. }
  4794. }
  4795. },
  4796. [
  4797. {
  4798. name: "Standard",
  4799. height: math.unit(55, "feet"),
  4800. default: true
  4801. }
  4802. ]
  4803. ))
  4804. characterMakers.push(() => makeCharacter(
  4805. { name: "Asana", species: ["android", "jackal"], tags: ["anthro"] },
  4806. {
  4807. front: {
  4808. height: math.unit(7 + 5 / 6, "feet"),
  4809. weight: math.unit(325, "lb"),
  4810. name: "Front",
  4811. image: {
  4812. source: "./media/characters/asana/front.svg",
  4813. extra: 1133 / 1060,
  4814. bottom: 15.2 / 1148.6
  4815. }
  4816. },
  4817. back: {
  4818. height: math.unit(7 + 5 / 6, "feet"),
  4819. weight: math.unit(325, "lb"),
  4820. name: "Back",
  4821. image: {
  4822. source: "./media/characters/asana/back.svg",
  4823. extra: 1114 / 1043,
  4824. bottom: 5 / 1120
  4825. }
  4826. },
  4827. dressedDark: {
  4828. height: math.unit(7 + 5 / 6, "feet"),
  4829. weight: math.unit(325, "lb"),
  4830. name: "Dressed (Dark)",
  4831. image: {
  4832. source: "./media/characters/asana/dressed-dark.svg",
  4833. extra: 1133 / 1060,
  4834. bottom: 15.2 / 1148.6
  4835. }
  4836. },
  4837. dressedLight: {
  4838. height: math.unit(7 + 5 / 6, "feet"),
  4839. weight: math.unit(325, "lb"),
  4840. name: "Dressed (Light)",
  4841. image: {
  4842. source: "./media/characters/asana/dressed-light.svg",
  4843. extra: 1133 / 1060,
  4844. bottom: 15.2 / 1148.6
  4845. }
  4846. },
  4847. },
  4848. [
  4849. {
  4850. name: "Standard",
  4851. height: math.unit(7 + 5 / 6, "feet"),
  4852. default: true
  4853. },
  4854. {
  4855. name: "Large",
  4856. height: math.unit(10, "meters")
  4857. },
  4858. {
  4859. name: "Macro",
  4860. height: math.unit(2500, "meters")
  4861. },
  4862. {
  4863. name: "Megamacro",
  4864. height: math.unit(5e6, "meters")
  4865. },
  4866. {
  4867. name: "Examacro",
  4868. height: math.unit(5e12, "lightyears")
  4869. },
  4870. {
  4871. name: "Max Size",
  4872. height: math.unit(1e31, "lightyears")
  4873. }
  4874. ]
  4875. ))
  4876. characterMakers.push(() => makeCharacter(
  4877. { name: "Ebony", species: ["hoshiko-beast"], tags: ["anthro"] },
  4878. {
  4879. front: {
  4880. height: math.unit(2, "meter"),
  4881. weight: math.unit(60, "kg"),
  4882. name: "Front",
  4883. image: {
  4884. source: "./media/characters/ebony/front.svg",
  4885. bottom: 0.03,
  4886. extra: 1045 / 810 + 0.03
  4887. }
  4888. },
  4889. side: {
  4890. height: math.unit(2, "meter"),
  4891. weight: math.unit(60, "kg"),
  4892. name: "Side",
  4893. image: {
  4894. source: "./media/characters/ebony/side.svg",
  4895. bottom: 0.03,
  4896. extra: 1045 / 810 + 0.03
  4897. }
  4898. },
  4899. back: {
  4900. height: math.unit(2, "meter"),
  4901. weight: math.unit(60, "kg"),
  4902. name: "Back",
  4903. image: {
  4904. source: "./media/characters/ebony/back.svg",
  4905. bottom: 0.01,
  4906. extra: 1045 / 810 + 0.01
  4907. }
  4908. },
  4909. },
  4910. [
  4911. // TODO check why I did this lol
  4912. {
  4913. name: "Standard",
  4914. height: math.unit(9 / 8 * (7 + 5 / 12), "feet"),
  4915. default: true
  4916. },
  4917. {
  4918. name: "Macro",
  4919. height: math.unit(200, "feet")
  4920. },
  4921. {
  4922. name: "Gigamacro",
  4923. height: math.unit(13000, "km")
  4924. }
  4925. ]
  4926. ))
  4927. characterMakers.push(() => makeCharacter(
  4928. { name: "Mountain", species: ["snow-jugani"], tags: ["anthro"] },
  4929. {
  4930. front: {
  4931. height: math.unit(6, "feet"),
  4932. weight: math.unit(175, "lb"),
  4933. name: "Front",
  4934. image: {
  4935. source: "./media/characters/mountain/front.svg",
  4936. extra: 972 / 955,
  4937. bottom: 64 / 1036.6
  4938. }
  4939. },
  4940. back: {
  4941. height: math.unit(6, "feet"),
  4942. weight: math.unit(175, "lb"),
  4943. name: "Back",
  4944. image: {
  4945. source: "./media/characters/mountain/back.svg",
  4946. extra: 970 / 950,
  4947. bottom: 28.25 / 999
  4948. }
  4949. },
  4950. },
  4951. [
  4952. {
  4953. name: "Large",
  4954. height: math.unit(20, "meters")
  4955. },
  4956. {
  4957. name: "Macro",
  4958. height: math.unit(300, "meters")
  4959. },
  4960. {
  4961. name: "Gigamacro",
  4962. height: math.unit(10000, "km"),
  4963. default: true
  4964. },
  4965. {
  4966. name: "Examacro",
  4967. height: math.unit(10e9, "lightyears")
  4968. }
  4969. ]
  4970. ))
  4971. characterMakers.push(() => makeCharacter(
  4972. { name: "Rick", species: ["lion"], tags: ["anthro"] },
  4973. {
  4974. front: {
  4975. height: math.unit(8, "feet"),
  4976. weight: math.unit(500, "lb"),
  4977. name: "Front",
  4978. image: {
  4979. source: "./media/characters/rick/front.svg"
  4980. }
  4981. }
  4982. },
  4983. [
  4984. {
  4985. name: "Normal",
  4986. height: math.unit(8, "feet"),
  4987. default: true
  4988. },
  4989. {
  4990. name: "Macro",
  4991. height: math.unit(5, "km")
  4992. }
  4993. ]
  4994. ))
  4995. characterMakers.push(() => makeCharacter(
  4996. { name: "Ona", species: ["raven"], tags: ["anthro"] },
  4997. {
  4998. front: {
  4999. height: math.unit(8, "feet"),
  5000. weight: math.unit(120, "lb"),
  5001. name: "Front",
  5002. image: {
  5003. source: "./media/characters/ona/front.svg"
  5004. }
  5005. },
  5006. frontAlt: {
  5007. height: math.unit(8, "feet"),
  5008. weight: math.unit(120, "lb"),
  5009. name: "Front (Alt)",
  5010. image: {
  5011. source: "./media/characters/ona/front-alt.svg"
  5012. }
  5013. },
  5014. back: {
  5015. height: math.unit(8, "feet"),
  5016. weight: math.unit(120, "lb"),
  5017. name: "Back",
  5018. image: {
  5019. source: "./media/characters/ona/back.svg"
  5020. }
  5021. },
  5022. foot: {
  5023. height: math.unit(1.1, "feet"),
  5024. name: "Foot",
  5025. image: {
  5026. source: "./media/characters/ona/foot.svg"
  5027. }
  5028. }
  5029. },
  5030. [
  5031. {
  5032. name: "Megamacro",
  5033. height: math.unit(70, "km"),
  5034. default: true
  5035. },
  5036. {
  5037. name: "Gigamacro",
  5038. height: math.unit(681818, "miles")
  5039. },
  5040. {
  5041. name: "Examacro",
  5042. height: math.unit(3800000, "lightyears")
  5043. },
  5044. ]
  5045. ))
  5046. characterMakers.push(() => makeCharacter(
  5047. { name: "Mech", species: ["dragon"], tags: ["anthro"] },
  5048. {
  5049. front: {
  5050. height: math.unit(12, "feet"),
  5051. weight: math.unit(3000, "lb"),
  5052. name: "Front",
  5053. image: {
  5054. source: "./media/characters/mech/front.svg",
  5055. extra: 2900 / 2770,
  5056. bottom: 110 / 3010
  5057. }
  5058. },
  5059. back: {
  5060. height: math.unit(12, "feet"),
  5061. weight: math.unit(3000, "lb"),
  5062. name: "Back",
  5063. image: {
  5064. source: "./media/characters/mech/back.svg",
  5065. extra: 3011 / 2890,
  5066. bottom: 94 / 3105
  5067. }
  5068. },
  5069. maw: {
  5070. height: math.unit(3.07, "feet"),
  5071. name: "Maw",
  5072. image: {
  5073. source: "./media/characters/mech/maw.svg"
  5074. }
  5075. },
  5076. head: {
  5077. height: math.unit(3.07, "feet"),
  5078. name: "Head",
  5079. image: {
  5080. source: "./media/characters/mech/head.svg"
  5081. }
  5082. },
  5083. dick: {
  5084. height: math.unit(1.43, "feet"),
  5085. name: "Dick",
  5086. image: {
  5087. source: "./media/characters/mech/dick.svg"
  5088. }
  5089. },
  5090. },
  5091. [
  5092. {
  5093. name: "Normal",
  5094. height: math.unit(12, "feet")
  5095. },
  5096. {
  5097. name: "Macro",
  5098. height: math.unit(300, "feet"),
  5099. default: true
  5100. },
  5101. {
  5102. name: "Macro+",
  5103. height: math.unit(1500, "feet")
  5104. },
  5105. ]
  5106. ))
  5107. characterMakers.push(() => makeCharacter(
  5108. { name: "Gregory", species: ["goat"], tags: ["anthro"] },
  5109. {
  5110. front: {
  5111. height: math.unit(1.3, "meter"),
  5112. weight: math.unit(30, "kg"),
  5113. name: "Front",
  5114. image: {
  5115. source: "./media/characters/gregory/front.svg",
  5116. }
  5117. }
  5118. },
  5119. [
  5120. {
  5121. name: "Normal",
  5122. height: math.unit(1.3, "meter"),
  5123. default: true
  5124. },
  5125. {
  5126. name: "Macro",
  5127. height: math.unit(20, "meter")
  5128. }
  5129. ]
  5130. ))
  5131. characterMakers.push(() => makeCharacter(
  5132. { name: "Elory", species: ["goat"], tags: ["anthro"] },
  5133. {
  5134. front: {
  5135. height: math.unit(2.8, "meter"),
  5136. weight: math.unit(200, "kg"),
  5137. name: "Front",
  5138. image: {
  5139. source: "./media/characters/elory/front.svg",
  5140. }
  5141. }
  5142. },
  5143. [
  5144. {
  5145. name: "Normal",
  5146. height: math.unit(2.8, "meter"),
  5147. default: true
  5148. },
  5149. {
  5150. name: "Macro",
  5151. height: math.unit(38, "meter")
  5152. }
  5153. ]
  5154. ))
  5155. characterMakers.push(() => makeCharacter(
  5156. { name: "Angelpatamon", species: ["patamon", "deity"], tags: ["anthro"] },
  5157. {
  5158. front: {
  5159. height: math.unit(470, "feet"),
  5160. weight: math.unit(924, "tons"),
  5161. name: "Front",
  5162. image: {
  5163. source: "./media/characters/angelpatamon/front.svg",
  5164. }
  5165. }
  5166. },
  5167. [
  5168. {
  5169. name: "Normal",
  5170. height: math.unit(470, "feet"),
  5171. default: true
  5172. },
  5173. {
  5174. name: "Deity Size I",
  5175. height: math.unit(28651.2, "km")
  5176. },
  5177. {
  5178. name: "Deity Size II",
  5179. height: math.unit(171907.2, "km")
  5180. }
  5181. ]
  5182. ))
  5183. characterMakers.push(() => makeCharacter(
  5184. { name: "Cryae", species: ["dragon"], tags: ["feral"] },
  5185. {
  5186. side: {
  5187. height: math.unit(7.2, "meter"),
  5188. weight: math.unit(8.2, "tons"),
  5189. name: "Side",
  5190. image: {
  5191. source: "./media/characters/cryae/side.svg",
  5192. extra: 3500 / 1500
  5193. }
  5194. }
  5195. },
  5196. [
  5197. {
  5198. name: "Normal",
  5199. height: math.unit(7.2, "meter"),
  5200. default: true
  5201. }
  5202. ]
  5203. ))
  5204. characterMakers.push(() => makeCharacter(
  5205. { name: "Xera", species: ["jugani"], tags: ["anthro"] },
  5206. {
  5207. front: {
  5208. height: math.unit(6, "feet"),
  5209. weight: math.unit(175, "lb"),
  5210. name: "Front",
  5211. image: {
  5212. source: "./media/characters/xera/front.svg",
  5213. extra: 2377 / 1972,
  5214. bottom: 75.5 / 2452
  5215. }
  5216. },
  5217. side: {
  5218. height: math.unit(6, "feet"),
  5219. weight: math.unit(175, "lb"),
  5220. name: "Side",
  5221. image: {
  5222. source: "./media/characters/xera/side.svg",
  5223. extra: 2345 / 2019,
  5224. bottom: 39.7 / 2384
  5225. }
  5226. },
  5227. back: {
  5228. height: math.unit(6, "feet"),
  5229. weight: math.unit(175, "lb"),
  5230. name: "Back",
  5231. image: {
  5232. source: "./media/characters/xera/back.svg",
  5233. extra: 2095 / 1984,
  5234. bottom: 67 / 2166
  5235. }
  5236. },
  5237. },
  5238. [
  5239. {
  5240. name: "Small",
  5241. height: math.unit(10, "feet")
  5242. },
  5243. {
  5244. name: "Macro",
  5245. height: math.unit(500, "meters"),
  5246. default: true
  5247. },
  5248. {
  5249. name: "Macro+",
  5250. height: math.unit(10, "km")
  5251. },
  5252. {
  5253. name: "Gigamacro",
  5254. height: math.unit(25000, "km")
  5255. },
  5256. {
  5257. name: "Teramacro",
  5258. height: math.unit(3e6, "km")
  5259. }
  5260. ]
  5261. ))
  5262. characterMakers.push(() => makeCharacter(
  5263. { name: "Nebula", species: ["dragon", "wolf"], tags: ["anthro"] },
  5264. {
  5265. front: {
  5266. height: math.unit(6, "feet"),
  5267. weight: math.unit(175, "lb"),
  5268. name: "Front",
  5269. image: {
  5270. source: "./media/characters/nebula/front.svg",
  5271. extra: 2566 / 2362,
  5272. bottom: 81 / 2644
  5273. }
  5274. }
  5275. },
  5276. [
  5277. {
  5278. name: "Small",
  5279. height: math.unit(4.5, "meters")
  5280. },
  5281. {
  5282. name: "Macro",
  5283. height: math.unit(1500, "meters"),
  5284. default: true
  5285. },
  5286. {
  5287. name: "Megamacro",
  5288. height: math.unit(150, "km")
  5289. },
  5290. {
  5291. name: "Gigamacro",
  5292. height: math.unit(27000, "km")
  5293. }
  5294. ]
  5295. ))
  5296. characterMakers.push(() => makeCharacter(
  5297. { name: "Abysgar", species: ["raptor"], tags: ["anthro"] },
  5298. {
  5299. front: {
  5300. height: math.unit(6, "feet"),
  5301. weight: math.unit(225, "lb"),
  5302. name: "Front",
  5303. image: {
  5304. source: "./media/characters/abysgar/front.svg",
  5305. extra: 1739/1614,
  5306. bottom: 71/1810
  5307. }
  5308. },
  5309. frontNsfw: {
  5310. height: math.unit(6, "feet"),
  5311. weight: math.unit(225, "lb"),
  5312. name: "Front (NSFW)",
  5313. image: {
  5314. source: "./media/characters/abysgar/front-nsfw.svg",
  5315. extra: 1739/1614,
  5316. bottom: 71/1810
  5317. }
  5318. },
  5319. back: {
  5320. height: math.unit(4.6, "feet"),
  5321. weight: math.unit(225, "lb"),
  5322. name: "Back",
  5323. image: {
  5324. source: "./media/characters/abysgar/back.svg",
  5325. extra: 1384/1327,
  5326. bottom: 0/1384
  5327. }
  5328. },
  5329. head: {
  5330. height: math.unit(1.25, "feet"),
  5331. name: "Head",
  5332. image: {
  5333. source: "./media/characters/abysgar/head.svg",
  5334. extra: 669/569,
  5335. bottom: 0/669
  5336. }
  5337. },
  5338. },
  5339. [
  5340. {
  5341. name: "Small",
  5342. height: math.unit(4.5, "meters")
  5343. },
  5344. {
  5345. name: "Macro",
  5346. height: math.unit(1250, "meters"),
  5347. default: true
  5348. },
  5349. {
  5350. name: "Megamacro",
  5351. height: math.unit(125, "km")
  5352. },
  5353. {
  5354. name: "Gigamacro",
  5355. height: math.unit(26000, "km")
  5356. }
  5357. ]
  5358. ))
  5359. characterMakers.push(() => makeCharacter(
  5360. { name: "Yakuz", species: ["wolf"], tags: ["anthro"] },
  5361. {
  5362. front: {
  5363. height: math.unit(6, "feet"),
  5364. weight: math.unit(180, "lb"),
  5365. name: "Front",
  5366. image: {
  5367. source: "./media/characters/yakuz/front.svg"
  5368. }
  5369. }
  5370. },
  5371. [
  5372. {
  5373. name: "Small",
  5374. height: math.unit(5, "meters")
  5375. },
  5376. {
  5377. name: "Macro",
  5378. height: math.unit(1500, "meters"),
  5379. default: true
  5380. },
  5381. {
  5382. name: "Megamacro",
  5383. height: math.unit(200, "km")
  5384. },
  5385. {
  5386. name: "Gigamacro",
  5387. height: math.unit(100000, "km")
  5388. }
  5389. ]
  5390. ))
  5391. characterMakers.push(() => makeCharacter(
  5392. { name: "Mirova", species: ["luxray", "shark"], tags: ["anthro"] },
  5393. {
  5394. front: {
  5395. height: math.unit(6, "feet"),
  5396. weight: math.unit(175, "lb"),
  5397. name: "Front",
  5398. image: {
  5399. source: "./media/characters/mirova/front.svg",
  5400. extra: 3334 / 3071,
  5401. bottom: 42 / 3375.6
  5402. }
  5403. }
  5404. },
  5405. [
  5406. {
  5407. name: "Small",
  5408. height: math.unit(5, "meters")
  5409. },
  5410. {
  5411. name: "Macro",
  5412. height: math.unit(900, "meters"),
  5413. default: true
  5414. },
  5415. {
  5416. name: "Megamacro",
  5417. height: math.unit(135, "km")
  5418. },
  5419. {
  5420. name: "Gigamacro",
  5421. height: math.unit(20000, "km")
  5422. }
  5423. ]
  5424. ))
  5425. characterMakers.push(() => makeCharacter(
  5426. { name: "Asana (Mech)", species: ["zoid"], tags: ["feral"] },
  5427. {
  5428. side: {
  5429. height: math.unit(28.35, "feet"),
  5430. weight: math.unit(99.75, "tons"),
  5431. name: "Side",
  5432. image: {
  5433. source: "./media/characters/asana-mech/side.svg",
  5434. extra: 923 / 699,
  5435. bottom: 50 / 975
  5436. }
  5437. },
  5438. chaingun: {
  5439. height: math.unit(7, "feet"),
  5440. weight: math.unit(2400, "lb"),
  5441. name: "Chaingun",
  5442. image: {
  5443. source: "./media/characters/asana-mech/chaingun.svg"
  5444. }
  5445. },
  5446. laser: {
  5447. height: math.unit(7.12, "feet"),
  5448. weight: math.unit(2000, "lb"),
  5449. name: "Laser",
  5450. image: {
  5451. source: "./media/characters/asana-mech/laser.svg"
  5452. }
  5453. },
  5454. },
  5455. [
  5456. {
  5457. name: "Normal",
  5458. height: math.unit(28.35, "feet"),
  5459. default: true
  5460. },
  5461. {
  5462. name: "Macro",
  5463. height: math.unit(2500, "feet")
  5464. },
  5465. {
  5466. name: "Megamacro",
  5467. height: math.unit(25, "miles")
  5468. },
  5469. {
  5470. name: "Examacro",
  5471. height: math.unit(6e8, "lightyears")
  5472. },
  5473. ]
  5474. ))
  5475. characterMakers.push(() => makeCharacter(
  5476. { name: "Asche", species: ["fox", "dragon", "lion"], tags: ["anthro"] },
  5477. {
  5478. front: {
  5479. height: math.unit(5, "meters"),
  5480. weight: math.unit(1000, "kg"),
  5481. name: "Front",
  5482. image: {
  5483. source: "./media/characters/asche/front.svg",
  5484. extra: 1258 / 1190,
  5485. bottom: 47 / 1305
  5486. }
  5487. },
  5488. frontUnderwear: {
  5489. height: math.unit(5, "meters"),
  5490. weight: math.unit(1000, "kg"),
  5491. name: "Front (Underwear)",
  5492. image: {
  5493. source: "./media/characters/asche/front-underwear.svg",
  5494. extra: 1258 / 1190,
  5495. bottom: 47 / 1305
  5496. }
  5497. },
  5498. frontDressed: {
  5499. height: math.unit(5, "meters"),
  5500. weight: math.unit(1000, "kg"),
  5501. name: "Front (Dressed)",
  5502. image: {
  5503. source: "./media/characters/asche/front-dressed.svg",
  5504. extra: 1258 / 1190,
  5505. bottom: 47 / 1305
  5506. }
  5507. },
  5508. frontArmor: {
  5509. height: math.unit(5, "meters"),
  5510. weight: math.unit(1000, "kg"),
  5511. name: "Front (Armored)",
  5512. image: {
  5513. source: "./media/characters/asche/front-armored.svg",
  5514. extra: 1374 / 1308,
  5515. bottom: 23 / 1397
  5516. }
  5517. },
  5518. mp724: {
  5519. height: math.unit(0.96, "meters"),
  5520. weight: math.unit(38, "kg"),
  5521. name: "H&K MP724",
  5522. image: {
  5523. source: "./media/characters/asche/h&k-mp724.svg"
  5524. }
  5525. },
  5526. side: {
  5527. height: math.unit(5, "meters"),
  5528. weight: math.unit(1000, "kg"),
  5529. name: "Side",
  5530. image: {
  5531. source: "./media/characters/asche/side.svg",
  5532. extra: 1717 / 1609,
  5533. bottom: 0.005
  5534. }
  5535. },
  5536. back: {
  5537. height: math.unit(5, "meters"),
  5538. weight: math.unit(1000, "kg"),
  5539. name: "Back",
  5540. image: {
  5541. source: "./media/characters/asche/back.svg",
  5542. extra: 1570 / 1501
  5543. }
  5544. },
  5545. },
  5546. [
  5547. {
  5548. name: "DEFCON 5",
  5549. height: math.unit(5, "meters")
  5550. },
  5551. {
  5552. name: "DEFCON 4",
  5553. height: math.unit(500, "meters"),
  5554. default: true
  5555. },
  5556. {
  5557. name: "DEFCON 3",
  5558. height: math.unit(5, "km")
  5559. },
  5560. {
  5561. name: "DEFCON 2",
  5562. height: math.unit(500, "km")
  5563. },
  5564. {
  5565. name: "DEFCON 1",
  5566. height: math.unit(500000, "km")
  5567. },
  5568. {
  5569. name: "DEFCON 0",
  5570. height: math.unit(3, "gigaparsecs")
  5571. },
  5572. ]
  5573. ))
  5574. characterMakers.push(() => makeCharacter(
  5575. { name: "Gale", species: ["monster"], tags: ["anthro"] },
  5576. {
  5577. front: {
  5578. height: math.unit(7, "feet"),
  5579. weight: math.unit(92.7, "kg"),
  5580. name: "Front",
  5581. image: {
  5582. source: "./media/characters/gale/front.svg",
  5583. extra: 977/919,
  5584. bottom: 105/1082
  5585. }
  5586. },
  5587. side: {
  5588. height: math.unit(6.7, "feet"),
  5589. weight: math.unit(92.7, "kg"),
  5590. name: "Side",
  5591. image: {
  5592. source: "./media/characters/gale/side.svg",
  5593. extra: 978/922,
  5594. bottom: 140/1118
  5595. }
  5596. },
  5597. back: {
  5598. height: math.unit(7, "feet"),
  5599. weight: math.unit(92.7, "kg"),
  5600. name: "Back",
  5601. image: {
  5602. source: "./media/characters/gale/back.svg",
  5603. extra: 966/920,
  5604. bottom: 61/1027
  5605. }
  5606. },
  5607. maw: {
  5608. height: math.unit(2.23, "feet"),
  5609. name: "Maw",
  5610. image: {
  5611. source: "./media/characters/gale/maw.svg"
  5612. }
  5613. },
  5614. foot: {
  5615. height: math.unit(2.1, "feet"),
  5616. name: "Foot",
  5617. image: {
  5618. source: "./media/characters/gale/foot.svg"
  5619. }
  5620. },
  5621. },
  5622. [
  5623. {
  5624. name: "Normal",
  5625. height: math.unit(7, "feet")
  5626. },
  5627. {
  5628. name: "Macro",
  5629. height: math.unit(150, "feet"),
  5630. default: true
  5631. },
  5632. {
  5633. name: "Macro+",
  5634. height: math.unit(300, "feet")
  5635. },
  5636. ]
  5637. ))
  5638. characterMakers.push(() => makeCharacter(
  5639. { name: "Draylen", species: ["coyote"], tags: ["anthro"] },
  5640. {
  5641. front: {
  5642. height: math.unit(5 + 10/12, "feet"),
  5643. weight: math.unit(67, "kg"),
  5644. name: "Front",
  5645. image: {
  5646. source: "./media/characters/draylen/front.svg",
  5647. extra: 832/777,
  5648. bottom: 85/917
  5649. }
  5650. }
  5651. },
  5652. [
  5653. {
  5654. name: "Normal",
  5655. height: math.unit(5 + 10/12, "feet")
  5656. },
  5657. {
  5658. name: "Macro",
  5659. height: math.unit(150, "feet"),
  5660. default: true
  5661. }
  5662. ]
  5663. ))
  5664. characterMakers.push(() => makeCharacter(
  5665. { name: "Chez", species: ["foo-dog"], tags: ["anthro"] },
  5666. {
  5667. front: {
  5668. height: math.unit(7 + 9 / 12, "feet"),
  5669. weight: math.unit(379, "lbs"),
  5670. name: "Front",
  5671. image: {
  5672. source: "./media/characters/chez/front.svg"
  5673. }
  5674. },
  5675. side: {
  5676. height: math.unit(7 + 9 / 12, "feet"),
  5677. weight: math.unit(379, "lbs"),
  5678. name: "Side",
  5679. image: {
  5680. source: "./media/characters/chez/side.svg"
  5681. }
  5682. }
  5683. },
  5684. [
  5685. {
  5686. name: "Normal",
  5687. height: math.unit(7 + 9 / 12, "feet"),
  5688. default: true
  5689. },
  5690. {
  5691. name: "God King",
  5692. height: math.unit(9750000, "meters")
  5693. }
  5694. ]
  5695. ))
  5696. characterMakers.push(() => makeCharacter(
  5697. { name: "Kaylum", species: ["dragon", "shark"], tags: ["anthro"] },
  5698. {
  5699. front: {
  5700. height: math.unit(6, "feet"),
  5701. weight: math.unit(275, "lbs"),
  5702. name: "Front",
  5703. image: {
  5704. source: "./media/characters/kaylum/front.svg",
  5705. bottom: 0.01,
  5706. extra: 1166 / 1031
  5707. }
  5708. },
  5709. frontWingless: {
  5710. height: math.unit(6, "feet"),
  5711. weight: math.unit(275, "lbs"),
  5712. name: "Front (Wingless)",
  5713. image: {
  5714. source: "./media/characters/kaylum/front-wingless.svg",
  5715. bottom: 0.01,
  5716. extra: 1117 / 1031
  5717. }
  5718. }
  5719. },
  5720. [
  5721. {
  5722. name: "Normal",
  5723. height: math.unit(3.05, "meters")
  5724. },
  5725. {
  5726. name: "Master",
  5727. height: math.unit(5.5, "meters")
  5728. },
  5729. {
  5730. name: "Rampage",
  5731. height: math.unit(19, "meters")
  5732. },
  5733. {
  5734. name: "Macro Lite",
  5735. height: math.unit(37, "meters")
  5736. },
  5737. {
  5738. name: "Hyper Predator",
  5739. height: math.unit(61, "meters")
  5740. },
  5741. {
  5742. name: "Macro",
  5743. height: math.unit(138, "meters"),
  5744. default: true
  5745. }
  5746. ]
  5747. ))
  5748. characterMakers.push(() => makeCharacter(
  5749. { name: "Geta", species: ["fox"], tags: ["anthro"] },
  5750. {
  5751. front: {
  5752. height: math.unit(5 + 5 / 12, "feet"),
  5753. weight: math.unit(120, "lbs"),
  5754. name: "Front",
  5755. image: {
  5756. source: "./media/characters/geta/front.svg",
  5757. extra: 1003/933,
  5758. bottom: 21/1024
  5759. }
  5760. },
  5761. paw: {
  5762. height: math.unit(0.35, "feet"),
  5763. name: "Paw",
  5764. image: {
  5765. source: "./media/characters/geta/paw.svg"
  5766. }
  5767. },
  5768. },
  5769. [
  5770. {
  5771. name: "Micro",
  5772. height: math.unit(3, "inches"),
  5773. default: true
  5774. },
  5775. {
  5776. name: "Normal",
  5777. height: math.unit(5 + 5 / 12, "feet")
  5778. }
  5779. ]
  5780. ))
  5781. characterMakers.push(() => makeCharacter(
  5782. { name: "Tyrnn", species: ["dragon"], tags: ["anthro"] },
  5783. {
  5784. front: {
  5785. height: math.unit(6, "feet"),
  5786. weight: math.unit(300, "lbs"),
  5787. name: "Front",
  5788. image: {
  5789. source: "./media/characters/tyrnn/front.svg"
  5790. }
  5791. }
  5792. },
  5793. [
  5794. {
  5795. name: "Main Height",
  5796. height: math.unit(355, "feet"),
  5797. default: true
  5798. },
  5799. {
  5800. name: "Fave. Height",
  5801. height: math.unit(2400, "feet")
  5802. }
  5803. ]
  5804. ))
  5805. characterMakers.push(() => makeCharacter(
  5806. { name: "Apple", species: ["elephant"], tags: ["anthro"] },
  5807. {
  5808. front: {
  5809. height: math.unit(6, "feet"),
  5810. weight: math.unit(300, "lbs"),
  5811. name: "Front",
  5812. image: {
  5813. source: "./media/characters/appledectomy/front.svg"
  5814. }
  5815. }
  5816. },
  5817. [
  5818. {
  5819. name: "Macro",
  5820. height: math.unit(2500, "feet")
  5821. },
  5822. {
  5823. name: "Megamacro",
  5824. height: math.unit(50, "miles"),
  5825. default: true
  5826. },
  5827. {
  5828. name: "Gigamacro",
  5829. height: math.unit(5000, "miles")
  5830. },
  5831. {
  5832. name: "Teramacro",
  5833. height: math.unit(250000, "miles")
  5834. },
  5835. ]
  5836. ))
  5837. characterMakers.push(() => makeCharacter(
  5838. { name: "Vulpes", species: ["fox"], tags: ["anthro"] },
  5839. {
  5840. front: {
  5841. height: math.unit(6, "feet"),
  5842. weight: math.unit(200, "lbs"),
  5843. name: "Front",
  5844. image: {
  5845. source: "./media/characters/vulpes/front.svg",
  5846. extra: 573 / 543,
  5847. bottom: 0.033
  5848. }
  5849. },
  5850. side: {
  5851. height: math.unit(6, "feet"),
  5852. weight: math.unit(200, "lbs"),
  5853. name: "Side",
  5854. image: {
  5855. source: "./media/characters/vulpes/side.svg",
  5856. extra: 577 / 549,
  5857. bottom: 11 / 588
  5858. }
  5859. },
  5860. back: {
  5861. height: math.unit(6, "feet"),
  5862. weight: math.unit(200, "lbs"),
  5863. name: "Back",
  5864. image: {
  5865. source: "./media/characters/vulpes/back.svg",
  5866. extra: 573 / 549,
  5867. bottom: 20 / 593
  5868. }
  5869. },
  5870. feet: {
  5871. height: math.unit(1.276, "feet"),
  5872. name: "Feet",
  5873. image: {
  5874. source: "./media/characters/vulpes/feet.svg"
  5875. }
  5876. },
  5877. maw: {
  5878. height: math.unit(1.18, "feet"),
  5879. name: "Maw",
  5880. image: {
  5881. source: "./media/characters/vulpes/maw.svg"
  5882. }
  5883. },
  5884. },
  5885. [
  5886. {
  5887. name: "Micro",
  5888. height: math.unit(2, "inches")
  5889. },
  5890. {
  5891. name: "Normal",
  5892. height: math.unit(6.3, "feet")
  5893. },
  5894. {
  5895. name: "Macro",
  5896. height: math.unit(850, "feet")
  5897. },
  5898. {
  5899. name: "Megamacro",
  5900. height: math.unit(7500, "feet"),
  5901. default: true
  5902. },
  5903. {
  5904. name: "Gigamacro",
  5905. height: math.unit(570000, "miles")
  5906. }
  5907. ]
  5908. ))
  5909. characterMakers.push(() => makeCharacter(
  5910. { name: "Rain Fallen", species: ["wolf", "demon"], tags: ["anthro", "feral"] },
  5911. {
  5912. front: {
  5913. height: math.unit(6, "feet"),
  5914. weight: math.unit(210, "lbs"),
  5915. name: "Front",
  5916. image: {
  5917. source: "./media/characters/rain-fallen/front.svg"
  5918. }
  5919. },
  5920. side: {
  5921. height: math.unit(6, "feet"),
  5922. weight: math.unit(210, "lbs"),
  5923. name: "Side",
  5924. image: {
  5925. source: "./media/characters/rain-fallen/side.svg"
  5926. }
  5927. },
  5928. back: {
  5929. height: math.unit(6, "feet"),
  5930. weight: math.unit(210, "lbs"),
  5931. name: "Back",
  5932. image: {
  5933. source: "./media/characters/rain-fallen/back.svg"
  5934. }
  5935. },
  5936. feral: {
  5937. height: math.unit(9, "feet"),
  5938. weight: math.unit(700, "lbs"),
  5939. name: "Feral",
  5940. image: {
  5941. source: "./media/characters/rain-fallen/feral.svg"
  5942. }
  5943. },
  5944. },
  5945. [
  5946. {
  5947. name: "Meddling with Mortals",
  5948. height: math.unit(8 + 8/12, "feet")
  5949. },
  5950. {
  5951. name: "Normal",
  5952. height: math.unit(5, "meter")
  5953. },
  5954. {
  5955. name: "Macro",
  5956. height: math.unit(150, "meter"),
  5957. default: true
  5958. },
  5959. {
  5960. name: "Megamacro",
  5961. height: math.unit(278e6, "meter")
  5962. },
  5963. {
  5964. name: "Gigamacro",
  5965. height: math.unit(2e9, "meter")
  5966. },
  5967. {
  5968. name: "Teramacro",
  5969. height: math.unit(8e12, "meter")
  5970. },
  5971. {
  5972. name: "Devourer",
  5973. height: math.unit(14, "zettameters")
  5974. },
  5975. {
  5976. name: "Scarlet King",
  5977. height: math.unit(18, "yottameters")
  5978. },
  5979. {
  5980. name: "Void",
  5981. height: math.unit(1e88, "yottameters")
  5982. }
  5983. ]
  5984. ))
  5985. characterMakers.push(() => makeCharacter(
  5986. { name: "Zaakira", species: ["wolf"], tags: ["anthro"] },
  5987. {
  5988. standing: {
  5989. height: math.unit(6, "feet"),
  5990. weight: math.unit(180, "lbs"),
  5991. name: "Standing",
  5992. image: {
  5993. source: "./media/characters/zaakira/standing.svg",
  5994. extra: 1599/1504,
  5995. bottom: 39/1638
  5996. }
  5997. },
  5998. laying: {
  5999. height: math.unit(3.3, "feet"),
  6000. weight: math.unit(180, "lbs"),
  6001. name: "Laying",
  6002. image: {
  6003. source: "./media/characters/zaakira/laying.svg"
  6004. }
  6005. },
  6006. },
  6007. [
  6008. {
  6009. name: "Normal",
  6010. height: math.unit(12, "feet")
  6011. },
  6012. {
  6013. name: "Macro",
  6014. height: math.unit(279, "feet"),
  6015. default: true
  6016. }
  6017. ]
  6018. ))
  6019. characterMakers.push(() => makeCharacter(
  6020. { name: "Sigvald", species: ["dragon"], tags: ["anthro"] },
  6021. {
  6022. femSfw: {
  6023. height: math.unit(8, "feet"),
  6024. weight: math.unit(350, "lb"),
  6025. name: "Fem",
  6026. image: {
  6027. source: "./media/characters/sigvald/fem-sfw.svg",
  6028. extra: 182 / 164,
  6029. bottom: 8.7 / 190.5
  6030. }
  6031. },
  6032. femNsfw: {
  6033. height: math.unit(8, "feet"),
  6034. weight: math.unit(350, "lb"),
  6035. name: "Fem (NSFW)",
  6036. image: {
  6037. source: "./media/characters/sigvald/fem-nsfw.svg",
  6038. extra: 182 / 164,
  6039. bottom: 8.7 / 190.5
  6040. }
  6041. },
  6042. maleNsfw: {
  6043. height: math.unit(8, "feet"),
  6044. weight: math.unit(350, "lb"),
  6045. name: "Male (NSFW)",
  6046. image: {
  6047. source: "./media/characters/sigvald/male-nsfw.svg",
  6048. extra: 182 / 164,
  6049. bottom: 8.7 / 190.5
  6050. }
  6051. },
  6052. hermNsfw: {
  6053. height: math.unit(8, "feet"),
  6054. weight: math.unit(350, "lb"),
  6055. name: "Herm (NSFW)",
  6056. image: {
  6057. source: "./media/characters/sigvald/herm-nsfw.svg",
  6058. extra: 182 / 164,
  6059. bottom: 8.7 / 190.5
  6060. }
  6061. },
  6062. dick: {
  6063. height: math.unit(2.36, "feet"),
  6064. name: "Dick",
  6065. image: {
  6066. source: "./media/characters/sigvald/dick.svg"
  6067. }
  6068. },
  6069. eye: {
  6070. height: math.unit(0.31, "feet"),
  6071. name: "Eye",
  6072. image: {
  6073. source: "./media/characters/sigvald/eye.svg"
  6074. }
  6075. },
  6076. mouth: {
  6077. height: math.unit(0.92, "feet"),
  6078. name: "Mouth",
  6079. image: {
  6080. source: "./media/characters/sigvald/mouth.svg"
  6081. }
  6082. },
  6083. paws: {
  6084. height: math.unit(2.2, "feet"),
  6085. name: "Paws",
  6086. image: {
  6087. source: "./media/characters/sigvald/paws.svg"
  6088. }
  6089. }
  6090. },
  6091. [
  6092. {
  6093. name: "Normal",
  6094. height: math.unit(8, "feet")
  6095. },
  6096. {
  6097. name: "Large",
  6098. height: math.unit(12, "feet")
  6099. },
  6100. {
  6101. name: "Larger",
  6102. height: math.unit(20, "feet")
  6103. },
  6104. {
  6105. name: "Macro",
  6106. height: math.unit(150, "feet")
  6107. },
  6108. {
  6109. name: "Macro+",
  6110. height: math.unit(200, "feet"),
  6111. default: true
  6112. },
  6113. ]
  6114. ))
  6115. characterMakers.push(() => makeCharacter(
  6116. { name: "Scott", species: ["fox"], tags: ["taur"] },
  6117. {
  6118. side: {
  6119. height: math.unit(12, "feet"),
  6120. weight: math.unit(2000, "kg"),
  6121. name: "Side",
  6122. image: {
  6123. source: "./media/characters/scott/side.svg",
  6124. extra: 754 / 724,
  6125. bottom: 0.069
  6126. }
  6127. },
  6128. upright: {
  6129. height: math.unit(12, "feet"),
  6130. weight: math.unit(2000, "kg"),
  6131. name: "Upright",
  6132. image: {
  6133. source: "./media/characters/scott/upright.svg",
  6134. extra: 3881 / 3722,
  6135. bottom: 0.05
  6136. }
  6137. },
  6138. },
  6139. [
  6140. {
  6141. name: "Normal",
  6142. height: math.unit(12, "feet"),
  6143. default: true
  6144. },
  6145. ]
  6146. ))
  6147. characterMakers.push(() => makeCharacter(
  6148. { name: "Tobias", species: ["dragon"], tags: ["feral"] },
  6149. {
  6150. side: {
  6151. height: math.unit(8, "meters"),
  6152. weight: math.unit(84755, "lbs"),
  6153. name: "Side",
  6154. image: {
  6155. source: "./media/characters/tobias/side.svg",
  6156. extra: 1474 / 1096,
  6157. bottom: 38.9 / 1513.1235
  6158. }
  6159. },
  6160. maw: {
  6161. height: math.unit(2.3, "meters"),
  6162. name: "Maw",
  6163. image: {
  6164. source: "./media/characters/tobias/maw.svg"
  6165. }
  6166. },
  6167. burp: {
  6168. height: math.unit(2.85, "meters"),
  6169. name: "Burp",
  6170. image: {
  6171. source: "./media/characters/tobias/burp.svg"
  6172. }
  6173. },
  6174. },
  6175. [
  6176. {
  6177. name: "Normal",
  6178. height: math.unit(8, "meters"),
  6179. default: true
  6180. },
  6181. ]
  6182. ))
  6183. characterMakers.push(() => makeCharacter(
  6184. { name: "Kieran", species: ["wolf"], tags: ["taur"] },
  6185. {
  6186. front: {
  6187. height: math.unit(5.5, "feet"),
  6188. weight: math.unit(400, "lbs"),
  6189. name: "Front",
  6190. image: {
  6191. source: "./media/characters/kieran/front.svg",
  6192. extra: 2694 / 2364,
  6193. bottom: 217 / 2908
  6194. }
  6195. },
  6196. side: {
  6197. height: math.unit(5.5, "feet"),
  6198. weight: math.unit(400, "lbs"),
  6199. name: "Side",
  6200. image: {
  6201. source: "./media/characters/kieran/side.svg",
  6202. extra: 875 / 777,
  6203. bottom: 84.6 / 959
  6204. }
  6205. },
  6206. },
  6207. [
  6208. {
  6209. name: "Normal",
  6210. height: math.unit(5.5, "feet"),
  6211. default: true
  6212. },
  6213. ]
  6214. ))
  6215. characterMakers.push(() => makeCharacter(
  6216. { name: "Sanya", species: ["eagle"], tags: ["anthro"] },
  6217. {
  6218. side: {
  6219. height: math.unit(2, "meters"),
  6220. weight: math.unit(70, "kg"),
  6221. name: "Side",
  6222. image: {
  6223. source: "./media/characters/sanya/side.svg",
  6224. bottom: 0.02,
  6225. extra: 1.02
  6226. }
  6227. },
  6228. },
  6229. [
  6230. {
  6231. name: "Small",
  6232. height: math.unit(2, "meters")
  6233. },
  6234. {
  6235. name: "Normal",
  6236. height: math.unit(3, "meters")
  6237. },
  6238. {
  6239. name: "Macro",
  6240. height: math.unit(16, "meters"),
  6241. default: true
  6242. },
  6243. ]
  6244. ))
  6245. characterMakers.push(() => makeCharacter(
  6246. { name: "Miranda", species: ["dragon"], tags: ["anthro"] },
  6247. {
  6248. front: {
  6249. height: math.unit(2, "meters"),
  6250. weight: math.unit(120, "kg"),
  6251. name: "Front",
  6252. image: {
  6253. source: "./media/characters/miranda/front.svg",
  6254. extra: 195 / 185,
  6255. bottom: 10.9 / 206.5
  6256. }
  6257. },
  6258. back: {
  6259. height: math.unit(2, "meters"),
  6260. weight: math.unit(120, "kg"),
  6261. name: "Back",
  6262. image: {
  6263. source: "./media/characters/miranda/back.svg",
  6264. extra: 201 / 193,
  6265. bottom: 2.3 / 203.7
  6266. }
  6267. },
  6268. },
  6269. [
  6270. {
  6271. name: "Normal",
  6272. height: math.unit(10, "feet"),
  6273. default: true
  6274. }
  6275. ]
  6276. ))
  6277. characterMakers.push(() => makeCharacter(
  6278. { name: "James", species: ["deer"], tags: ["anthro"] },
  6279. {
  6280. side: {
  6281. height: math.unit(2, "meters"),
  6282. weight: math.unit(100, "kg"),
  6283. name: "Front",
  6284. image: {
  6285. source: "./media/characters/james/front.svg",
  6286. extra: 10 / 8.5
  6287. }
  6288. },
  6289. },
  6290. [
  6291. {
  6292. name: "Normal",
  6293. height: math.unit(8.5, "feet"),
  6294. default: true
  6295. }
  6296. ]
  6297. ))
  6298. characterMakers.push(() => makeCharacter(
  6299. { name: "Heather", species: ["cow"], tags: ["taur"] },
  6300. {
  6301. side: {
  6302. height: math.unit(9.5, "feet"),
  6303. weight: math.unit(2500, "lbs"),
  6304. name: "Side",
  6305. image: {
  6306. source: "./media/characters/heather/side.svg"
  6307. }
  6308. },
  6309. },
  6310. [
  6311. {
  6312. name: "Normal",
  6313. height: math.unit(9.5, "feet"),
  6314. default: true
  6315. }
  6316. ]
  6317. ))
  6318. characterMakers.push(() => makeCharacter(
  6319. { name: "Lukas", species: ["dog"], tags: ["feral"] },
  6320. {
  6321. side: {
  6322. height: math.unit(6.5, "feet"),
  6323. weight: math.unit(400, "lbs"),
  6324. name: "Side",
  6325. image: {
  6326. source: "./media/characters/lukas/side.svg",
  6327. extra: 7.25 / 6.5
  6328. }
  6329. },
  6330. },
  6331. [
  6332. {
  6333. name: "Normal",
  6334. height: math.unit(6.5, "feet"),
  6335. default: true
  6336. }
  6337. ]
  6338. ))
  6339. characterMakers.push(() => makeCharacter(
  6340. { name: "Louise", species: ["crocodile"], tags: ["feral"] },
  6341. {
  6342. side: {
  6343. height: math.unit(5, "feet"),
  6344. weight: math.unit(3000, "lbs"),
  6345. name: "Side",
  6346. image: {
  6347. source: "./media/characters/louise/side.svg"
  6348. }
  6349. },
  6350. },
  6351. [
  6352. {
  6353. name: "Normal",
  6354. height: math.unit(5, "feet"),
  6355. default: true
  6356. }
  6357. ]
  6358. ))
  6359. characterMakers.push(() => makeCharacter(
  6360. { name: "Ramona", species: ["borzoi"], tags: ["anthro"] },
  6361. {
  6362. side: {
  6363. height: math.unit(6, "feet"),
  6364. weight: math.unit(150, "lbs"),
  6365. name: "Side",
  6366. image: {
  6367. source: "./media/characters/ramona/side.svg",
  6368. extra: 871/854,
  6369. bottom: 41/912
  6370. }
  6371. },
  6372. },
  6373. [
  6374. {
  6375. name: "Normal",
  6376. height: math.unit(6 + 4/12, "feet")
  6377. },
  6378. {
  6379. name: "Minimacro",
  6380. height: math.unit(5.3, "meters"),
  6381. default: true
  6382. },
  6383. {
  6384. name: "Macro",
  6385. height: math.unit(20, "stories")
  6386. },
  6387. {
  6388. name: "Macro+",
  6389. height: math.unit(50, "stories")
  6390. },
  6391. ]
  6392. ))
  6393. characterMakers.push(() => makeCharacter(
  6394. { name: "Deerpuff", species: ["deer"], tags: ["anthro"] },
  6395. {
  6396. standing: {
  6397. height: math.unit(5.75, "feet"),
  6398. weight: math.unit(160, "lbs"),
  6399. name: "Standing",
  6400. image: {
  6401. source: "./media/characters/deerpuff/standing.svg",
  6402. extra: 682 / 624
  6403. }
  6404. },
  6405. sitting: {
  6406. height: math.unit(5.75 / 1.79, "feet"),
  6407. weight: math.unit(160, "lbs"),
  6408. name: "Sitting",
  6409. image: {
  6410. source: "./media/characters/deerpuff/sitting.svg",
  6411. bottom: 44 / 400,
  6412. extra: 1
  6413. }
  6414. },
  6415. taurLaying: {
  6416. height: math.unit(6, "feet"),
  6417. weight: math.unit(400, "lbs"),
  6418. name: "Taur (Laying)",
  6419. image: {
  6420. source: "./media/characters/deerpuff/taur-laying.svg"
  6421. }
  6422. },
  6423. },
  6424. [
  6425. {
  6426. name: "Puffball",
  6427. height: math.unit(6, "inches")
  6428. },
  6429. {
  6430. name: "Normalpuff",
  6431. height: math.unit(5.75, "feet")
  6432. },
  6433. {
  6434. name: "Macropuff",
  6435. height: math.unit(1500, "feet"),
  6436. default: true
  6437. },
  6438. {
  6439. name: "Megapuff",
  6440. height: math.unit(500, "miles")
  6441. },
  6442. {
  6443. name: "Gigapuff",
  6444. height: math.unit(250000, "miles")
  6445. },
  6446. {
  6447. name: "Omegapuff",
  6448. height: math.unit(1000, "lightyears")
  6449. },
  6450. ]
  6451. ))
  6452. characterMakers.push(() => makeCharacter(
  6453. { name: "Vivian", species: ["wolf"], tags: ["anthro"] },
  6454. {
  6455. stomping: {
  6456. height: math.unit(6, "feet"),
  6457. weight: math.unit(170, "lbs"),
  6458. name: "Stomping",
  6459. image: {
  6460. source: "./media/characters/vivian/stomping.svg"
  6461. }
  6462. },
  6463. sitting: {
  6464. height: math.unit(6 / 1.75, "feet"),
  6465. weight: math.unit(170, "lbs"),
  6466. name: "Sitting",
  6467. image: {
  6468. source: "./media/characters/vivian/sitting.svg",
  6469. bottom: 1 / 6.4,
  6470. extra: 1,
  6471. }
  6472. },
  6473. },
  6474. [
  6475. {
  6476. name: "Normal",
  6477. height: math.unit(7, "feet"),
  6478. default: true
  6479. },
  6480. {
  6481. name: "Macro",
  6482. height: math.unit(10, "stories")
  6483. },
  6484. {
  6485. name: "Macro+",
  6486. height: math.unit(30, "stories")
  6487. },
  6488. {
  6489. name: "Megamacro",
  6490. height: math.unit(10, "miles")
  6491. },
  6492. {
  6493. name: "Megamacro+",
  6494. height: math.unit(2750000, "meters")
  6495. },
  6496. ]
  6497. ))
  6498. characterMakers.push(() => makeCharacter(
  6499. { name: "Prince", species: ["deer"], tags: ["anthro"] },
  6500. {
  6501. front: {
  6502. height: math.unit(6, "feet"),
  6503. weight: math.unit(160, "lbs"),
  6504. name: "Front",
  6505. image: {
  6506. source: "./media/characters/prince/front.svg",
  6507. extra: 1938/1682,
  6508. bottom: 45/1983
  6509. }
  6510. },
  6511. back: {
  6512. height: math.unit(6, "feet"),
  6513. weight: math.unit(160, "lbs"),
  6514. name: "Back",
  6515. image: {
  6516. source: "./media/characters/prince/back.svg",
  6517. extra: 1955/1726,
  6518. bottom: 6/1961
  6519. }
  6520. },
  6521. },
  6522. [
  6523. {
  6524. name: "Normal",
  6525. height: math.unit(7.75, "feet"),
  6526. default: true
  6527. },
  6528. {
  6529. name: "Not cute",
  6530. height: math.unit(17, "feet")
  6531. },
  6532. {
  6533. name: "I said NOT",
  6534. height: math.unit(91, "feet")
  6535. },
  6536. {
  6537. name: "Please stop",
  6538. height: math.unit(560, "feet")
  6539. },
  6540. {
  6541. name: "What have you done",
  6542. height: math.unit(2200, "feet")
  6543. },
  6544. {
  6545. name: "Deer God",
  6546. height: math.unit(3.6, "miles")
  6547. },
  6548. ]
  6549. ))
  6550. characterMakers.push(() => makeCharacter(
  6551. { name: "Psymon", species: ["horned-bush-viper", "cobra"], tags: ["anthro", "feral"] },
  6552. {
  6553. standing: {
  6554. height: math.unit(6, "feet"),
  6555. weight: math.unit(300, "lbs"),
  6556. name: "Standing",
  6557. image: {
  6558. source: "./media/characters/psymon/standing.svg",
  6559. extra: 1888 / 1810,
  6560. bottom: 0.05
  6561. }
  6562. },
  6563. slithering: {
  6564. height: math.unit(6, "feet"),
  6565. weight: math.unit(300, "lbs"),
  6566. name: "Slithering",
  6567. image: {
  6568. source: "./media/characters/psymon/slithering.svg",
  6569. extra: 1330 / 1224
  6570. }
  6571. },
  6572. slitheringAlt: {
  6573. height: math.unit(6, "feet"),
  6574. weight: math.unit(300, "lbs"),
  6575. name: "Slithering (Alt)",
  6576. image: {
  6577. source: "./media/characters/psymon/slithering-alt.svg",
  6578. extra: 1330 / 1224
  6579. }
  6580. },
  6581. },
  6582. [
  6583. {
  6584. name: "Normal",
  6585. height: math.unit(11.25, "feet"),
  6586. default: true
  6587. },
  6588. {
  6589. name: "Large",
  6590. height: math.unit(27, "feet")
  6591. },
  6592. {
  6593. name: "Giant",
  6594. height: math.unit(87, "feet")
  6595. },
  6596. {
  6597. name: "Macro",
  6598. height: math.unit(365, "feet")
  6599. },
  6600. {
  6601. name: "Megamacro",
  6602. height: math.unit(3, "miles")
  6603. },
  6604. {
  6605. name: "World Serpent",
  6606. height: math.unit(8000, "miles")
  6607. },
  6608. ]
  6609. ))
  6610. characterMakers.push(() => makeCharacter(
  6611. { name: "Daimos", species: ["veilhound"], tags: ["anthro"] },
  6612. {
  6613. front: {
  6614. height: math.unit(6, "feet"),
  6615. weight: math.unit(180, "lbs"),
  6616. name: "Front",
  6617. image: {
  6618. source: "./media/characters/daimos/front.svg",
  6619. extra: 4160 / 3897,
  6620. bottom: 0.021
  6621. }
  6622. }
  6623. },
  6624. [
  6625. {
  6626. name: "Normal",
  6627. height: math.unit(8, "feet"),
  6628. default: true
  6629. },
  6630. {
  6631. name: "Big Dog",
  6632. height: math.unit(22, "feet")
  6633. },
  6634. {
  6635. name: "Macro",
  6636. height: math.unit(127, "feet")
  6637. },
  6638. {
  6639. name: "Megamacro",
  6640. height: math.unit(3600, "feet")
  6641. },
  6642. ]
  6643. ))
  6644. characterMakers.push(() => makeCharacter(
  6645. { name: "Blake", species: ["raptor"], tags: ["feral"] },
  6646. {
  6647. side: {
  6648. height: math.unit(6, "feet"),
  6649. weight: math.unit(180, "lbs"),
  6650. name: "Side",
  6651. image: {
  6652. source: "./media/characters/blake/side.svg",
  6653. extra: 1212 / 1120,
  6654. bottom: 0.05
  6655. }
  6656. },
  6657. crouched: {
  6658. height: math.unit(6 * 0.57, "feet"),
  6659. weight: math.unit(180, "lbs"),
  6660. name: "Crouched",
  6661. image: {
  6662. source: "./media/characters/blake/crouched.svg",
  6663. extra: 840 / 587,
  6664. bottom: 0.04
  6665. }
  6666. },
  6667. bent: {
  6668. height: math.unit(6 * 0.75, "feet"),
  6669. weight: math.unit(180, "lbs"),
  6670. name: "Bent",
  6671. image: {
  6672. source: "./media/characters/blake/bent.svg",
  6673. extra: 592 / 544,
  6674. bottom: 0.035
  6675. }
  6676. },
  6677. },
  6678. [
  6679. {
  6680. name: "Normal",
  6681. height: math.unit(8 + 1 / 6, "feet"),
  6682. default: true
  6683. },
  6684. {
  6685. name: "Big Backside",
  6686. height: math.unit(37, "feet")
  6687. },
  6688. {
  6689. name: "Subway Shredder",
  6690. height: math.unit(72, "feet")
  6691. },
  6692. {
  6693. name: "City Carver",
  6694. height: math.unit(1675, "feet")
  6695. },
  6696. {
  6697. name: "Tectonic Tweaker",
  6698. height: math.unit(2300, "miles")
  6699. },
  6700. ]
  6701. ))
  6702. characterMakers.push(() => makeCharacter(
  6703. { name: "Guisetto", species: ["beetle", "moth"], tags: ["anthro"] },
  6704. {
  6705. front: {
  6706. height: math.unit(6, "feet"),
  6707. weight: math.unit(180, "lbs"),
  6708. name: "Front",
  6709. image: {
  6710. source: "./media/characters/guisetto/front.svg",
  6711. extra: 856 / 817,
  6712. bottom: 0.06
  6713. }
  6714. },
  6715. airborne: {
  6716. height: math.unit(6, "feet"),
  6717. weight: math.unit(180, "lbs"),
  6718. name: "Airborne",
  6719. image: {
  6720. source: "./media/characters/guisetto/airborne.svg",
  6721. extra: 584 / 525
  6722. }
  6723. },
  6724. },
  6725. [
  6726. {
  6727. name: "Normal",
  6728. height: math.unit(10 + 11 / 12, "feet"),
  6729. default: true
  6730. },
  6731. {
  6732. name: "Large",
  6733. height: math.unit(35, "feet")
  6734. },
  6735. {
  6736. name: "Macro",
  6737. height: math.unit(475, "feet")
  6738. },
  6739. ]
  6740. ))
  6741. characterMakers.push(() => makeCharacter(
  6742. { name: "Luxor", species: ["moth"], tags: ["anthro"] },
  6743. {
  6744. front: {
  6745. height: math.unit(6, "feet"),
  6746. weight: math.unit(180, "lbs"),
  6747. name: "Front",
  6748. image: {
  6749. source: "./media/characters/luxor/front.svg",
  6750. extra: 2940 / 2152
  6751. }
  6752. },
  6753. back: {
  6754. height: math.unit(6, "feet"),
  6755. weight: math.unit(180, "lbs"),
  6756. name: "Back",
  6757. image: {
  6758. source: "./media/characters/luxor/back.svg",
  6759. extra: 1083 / 960
  6760. }
  6761. },
  6762. },
  6763. [
  6764. {
  6765. name: "Normal",
  6766. height: math.unit(5 + 5 / 6, "feet"),
  6767. default: true
  6768. },
  6769. {
  6770. name: "Lamp",
  6771. height: math.unit(50, "feet")
  6772. },
  6773. {
  6774. name: "Lämp",
  6775. height: math.unit(300, "feet")
  6776. },
  6777. {
  6778. name: "The sun is a lamp",
  6779. height: math.unit(250000, "miles")
  6780. },
  6781. ]
  6782. ))
  6783. characterMakers.push(() => makeCharacter(
  6784. { name: "Huoyan", species: ["eastern-dragon"], tags: ["feral"] },
  6785. {
  6786. front: {
  6787. height: math.unit(6, "feet"),
  6788. weight: math.unit(50, "lbs"),
  6789. name: "Front",
  6790. image: {
  6791. source: "./media/characters/huoyan/front.svg"
  6792. }
  6793. },
  6794. side: {
  6795. height: math.unit(6, "feet"),
  6796. weight: math.unit(180, "lbs"),
  6797. name: "Side",
  6798. image: {
  6799. source: "./media/characters/huoyan/side.svg"
  6800. }
  6801. },
  6802. },
  6803. [
  6804. {
  6805. name: "Chef",
  6806. height: math.unit(9, "feet")
  6807. },
  6808. {
  6809. name: "Normal",
  6810. height: math.unit(65, "feet"),
  6811. default: true
  6812. },
  6813. {
  6814. name: "Macro",
  6815. height: math.unit(780, "feet")
  6816. },
  6817. {
  6818. name: "Flaming Mountain",
  6819. height: math.unit(4.8, "miles")
  6820. },
  6821. {
  6822. name: "Celestial",
  6823. height: math.unit(765000, "miles")
  6824. },
  6825. ]
  6826. ))
  6827. characterMakers.push(() => makeCharacter(
  6828. { name: "Tails", species: ["coyote"], tags: ["anthro"] },
  6829. {
  6830. front: {
  6831. height: math.unit(5 + 3 / 4, "feet"),
  6832. weight: math.unit(120, "lbs"),
  6833. name: "Front",
  6834. image: {
  6835. source: "./media/characters/tails/front.svg"
  6836. }
  6837. }
  6838. },
  6839. [
  6840. {
  6841. name: "Normal",
  6842. height: math.unit(5 + 3 / 4, "feet"),
  6843. default: true
  6844. }
  6845. ]
  6846. ))
  6847. characterMakers.push(() => makeCharacter(
  6848. { name: "Rainy", species: ["jaguar"], tags: ["anthro"] },
  6849. {
  6850. front: {
  6851. height: math.unit(4, "feet"),
  6852. weight: math.unit(50, "lbs"),
  6853. name: "Front",
  6854. image: {
  6855. source: "./media/characters/rainy/front.svg"
  6856. }
  6857. }
  6858. },
  6859. [
  6860. {
  6861. name: "Macro",
  6862. height: math.unit(800, "feet"),
  6863. default: true
  6864. }
  6865. ]
  6866. ))
  6867. characterMakers.push(() => makeCharacter(
  6868. { name: "Rainier", species: ["snow-leopard"], tags: ["anthro"] },
  6869. {
  6870. front: {
  6871. height: math.unit(6, "feet"),
  6872. weight: math.unit(150, "lbs"),
  6873. name: "Front",
  6874. image: {
  6875. source: "./media/characters/rainier/front.svg"
  6876. }
  6877. }
  6878. },
  6879. [
  6880. {
  6881. name: "Micro",
  6882. height: math.unit(2, "mm"),
  6883. default: true
  6884. }
  6885. ]
  6886. ))
  6887. characterMakers.push(() => makeCharacter(
  6888. { name: "Andy Renard", species: ["fox"], tags: ["anthro"] },
  6889. {
  6890. front: {
  6891. height: math.unit(8 + 4/12, "feet"),
  6892. weight: math.unit(450, "kilograms"),
  6893. name: "Front",
  6894. image: {
  6895. source: "./media/characters/andy-renard/front.svg",
  6896. extra: 862/809,
  6897. bottom: 85/947
  6898. },
  6899. extraAttributes: {
  6900. "pawSize": {
  6901. name: "Paw Size",
  6902. power: 2,
  6903. type: "area",
  6904. base: math.unit(0.45*0.3, "meters^2")
  6905. },
  6906. "handSize": {
  6907. name: "Hand Size",
  6908. power: 2,
  6909. type: "area",
  6910. base: math.unit(0.4 * 0.3, "meters^2")
  6911. },
  6912. "cockSize": {
  6913. name: "Cock Length",
  6914. power: 1,
  6915. type: "length",
  6916. base: math.unit(0.75, "meters")
  6917. },
  6918. "ballDiameter": {
  6919. name: "Ball Diameter",
  6920. power: 1,
  6921. type: "length",
  6922. base: math.unit(0.3, "meters")
  6923. },
  6924. "ballVolume": {
  6925. name: "Ball Volume",
  6926. power: 3,
  6927. type: "volume",
  6928. base: math.unit(0.01413716694, "meters^3")
  6929. },
  6930. }
  6931. },
  6932. back: {
  6933. height: math.unit(8 + 4/12, "feet"),
  6934. weight: math.unit(450, "kilograms"),
  6935. name: "Back",
  6936. image: {
  6937. source: "./media/characters/andy-renard/back.svg",
  6938. extra: 1112/1033,
  6939. bottom: 64/1176
  6940. },
  6941. extraAttributes: {
  6942. "pawSize": {
  6943. name: "Paw Size",
  6944. power: 2,
  6945. type: "area",
  6946. base: math.unit(0.45*0.3, "meters^2")
  6947. },
  6948. "handSize": {
  6949. name: "Hand Size",
  6950. power: 2,
  6951. type: "area",
  6952. base: math.unit(0.4 * 0.3, "meters^2")
  6953. },
  6954. "cockSize": {
  6955. name: "Cock Length",
  6956. power: 1,
  6957. type: "length",
  6958. base: math.unit(0.75, "meters")
  6959. },
  6960. "ballDiameter": {
  6961. name: "Ball Diameter",
  6962. power: 1,
  6963. type: "length",
  6964. base: math.unit(0.3, "meters")
  6965. },
  6966. "ballVolume": {
  6967. name: "Ball Volume",
  6968. power: 3,
  6969. type: "volume",
  6970. base: math.unit(0.01413716694, "meters^3")
  6971. },
  6972. }
  6973. },
  6974. },
  6975. [
  6976. {
  6977. name: "Tall",
  6978. height: math.unit(6 + 8/12, "feet")
  6979. },
  6980. {
  6981. name: "Very Tall",
  6982. height: math.unit(8 + 4/12, "feet")
  6983. },
  6984. {
  6985. name: "Mini Macro",
  6986. height: math.unit(15, "feet"),
  6987. default: true
  6988. },
  6989. {
  6990. name: "Giant",
  6991. height: math.unit(50, "feet")
  6992. },
  6993. {
  6994. name: "Nice",
  6995. height: math.unit(69, "feet")
  6996. },
  6997. {
  6998. name: "Macro",
  6999. height: math.unit(100, "feet")
  7000. },
  7001. {
  7002. name: "Enormous",
  7003. height: math.unit(500, "feet")
  7004. },
  7005. {
  7006. name: "Gargantuan",
  7007. height: math.unit(1000, "feet")
  7008. },
  7009. {
  7010. name: "Mega",
  7011. height: math.unit(1, "mile")
  7012. },
  7013. {
  7014. name: "Giga",
  7015. height: math.unit(50, "miles")
  7016. },
  7017. {
  7018. name: "Tera",
  7019. height: math.unit(1000, "miles")
  7020. },
  7021. {
  7022. name: "Cosmic",
  7023. height: math.unit(1.5, "galaxies")
  7024. },
  7025. {
  7026. name: "God",
  7027. height: math.unit(1.5, "universes")
  7028. },
  7029. {
  7030. name: "Chief Execute God",
  7031. height: math.unit(1.5, "multiverses")
  7032. },
  7033. ]
  7034. ))
  7035. characterMakers.push(() => makeCharacter(
  7036. { name: "Cimmaron", species: ["horse"], tags: ["anthro"] },
  7037. {
  7038. front: {
  7039. height: math.unit(6, "feet"),
  7040. weight: math.unit(210, "lbs"),
  7041. name: "Front",
  7042. image: {
  7043. source: "./media/characters/cimmaron/front-sfw.svg",
  7044. extra: 701 / 676,
  7045. bottom: 0.046
  7046. }
  7047. },
  7048. back: {
  7049. height: math.unit(6, "feet"),
  7050. weight: math.unit(210, "lbs"),
  7051. name: "Back",
  7052. image: {
  7053. source: "./media/characters/cimmaron/back-sfw.svg",
  7054. extra: 701 / 676,
  7055. bottom: 0.046
  7056. }
  7057. },
  7058. frontNsfw: {
  7059. height: math.unit(6, "feet"),
  7060. weight: math.unit(210, "lbs"),
  7061. name: "Front (NSFW)",
  7062. image: {
  7063. source: "./media/characters/cimmaron/front-nsfw.svg",
  7064. extra: 701 / 676,
  7065. bottom: 0.046
  7066. }
  7067. },
  7068. backNsfw: {
  7069. height: math.unit(6, "feet"),
  7070. weight: math.unit(210, "lbs"),
  7071. name: "Back (NSFW)",
  7072. image: {
  7073. source: "./media/characters/cimmaron/back-nsfw.svg",
  7074. extra: 701 / 676,
  7075. bottom: 0.046
  7076. }
  7077. },
  7078. dick: {
  7079. height: math.unit(1.714, "feet"),
  7080. name: "Dick",
  7081. image: {
  7082. source: "./media/characters/cimmaron/dick.svg"
  7083. }
  7084. },
  7085. },
  7086. [
  7087. {
  7088. name: "Normal",
  7089. height: math.unit(6, "feet"),
  7090. default: true
  7091. },
  7092. {
  7093. name: "Macro Mayor",
  7094. height: math.unit(350, "meters")
  7095. },
  7096. ]
  7097. ))
  7098. characterMakers.push(() => makeCharacter(
  7099. { name: "Akari Kaen", species: ["sergal"], tags: ["anthro"] },
  7100. {
  7101. front: {
  7102. height: math.unit(6, "feet"),
  7103. weight: math.unit(200, "lbs"),
  7104. name: "Front",
  7105. image: {
  7106. source: "./media/characters/akari/front.svg",
  7107. extra: 962 / 901,
  7108. bottom: 0.04
  7109. }
  7110. }
  7111. },
  7112. [
  7113. {
  7114. name: "Micro",
  7115. height: math.unit(5, "inches"),
  7116. default: true
  7117. },
  7118. {
  7119. name: "Normal",
  7120. height: math.unit(7, "feet")
  7121. },
  7122. ]
  7123. ))
  7124. characterMakers.push(() => makeCharacter(
  7125. { name: "Cynosura", species: ["gryphon"], tags: ["anthro"] },
  7126. {
  7127. front: {
  7128. height: math.unit(6, "feet"),
  7129. weight: math.unit(140, "lbs"),
  7130. name: "Front",
  7131. image: {
  7132. source: "./media/characters/cynosura/front.svg",
  7133. extra: 437/410,
  7134. bottom: 9/446
  7135. }
  7136. },
  7137. back: {
  7138. height: math.unit(6, "feet"),
  7139. weight: math.unit(140, "lbs"),
  7140. name: "Back",
  7141. image: {
  7142. source: "./media/characters/cynosura/back.svg",
  7143. extra: 1304/1160,
  7144. bottom: 71/1375
  7145. }
  7146. },
  7147. },
  7148. [
  7149. {
  7150. name: "Micro",
  7151. height: math.unit(4, "inches")
  7152. },
  7153. {
  7154. name: "Normal",
  7155. height: math.unit(5.75, "feet"),
  7156. default: true
  7157. },
  7158. {
  7159. name: "Tall",
  7160. height: math.unit(10, "feet")
  7161. },
  7162. {
  7163. name: "Big",
  7164. height: math.unit(20, "feet")
  7165. },
  7166. {
  7167. name: "Macro",
  7168. height: math.unit(50, "feet")
  7169. },
  7170. ]
  7171. ))
  7172. characterMakers.push(() => makeCharacter(
  7173. { name: "Gin", species: ["dragon"], tags: ["anthro"] },
  7174. {
  7175. front: {
  7176. height: math.unit(13 + 2/12, "feet"),
  7177. weight: math.unit(800, "kg"),
  7178. name: "Front",
  7179. image: {
  7180. source: "./media/characters/gin/front.svg",
  7181. extra: 1312/1191,
  7182. bottom: 45/1357
  7183. }
  7184. },
  7185. mouth: {
  7186. height: math.unit(2.39 * 1.8, "feet"),
  7187. name: "Mouth",
  7188. image: {
  7189. source: "./media/characters/gin/mouth.svg"
  7190. }
  7191. },
  7192. hand: {
  7193. height: math.unit(1.57 * 2.19, "feet"),
  7194. name: "Hand",
  7195. image: {
  7196. source: "./media/characters/gin/hand.svg"
  7197. }
  7198. },
  7199. foot: {
  7200. height: math.unit(6 / 4.25 * 2.19, "feet"),
  7201. name: "Foot",
  7202. image: {
  7203. source: "./media/characters/gin/foot.svg"
  7204. }
  7205. },
  7206. sole: {
  7207. height: math.unit(6 / 4.40 * 2.19, "feet"),
  7208. name: "Sole",
  7209. image: {
  7210. source: "./media/characters/gin/sole.svg"
  7211. }
  7212. },
  7213. },
  7214. [
  7215. {
  7216. name: "Very Small",
  7217. height: math.unit(13 + 2 / 12, "feet")
  7218. },
  7219. {
  7220. name: "Micro",
  7221. height: math.unit(600, "miles")
  7222. },
  7223. {
  7224. name: "Regular",
  7225. height: math.unit(20, "earths"),
  7226. default: true
  7227. },
  7228. {
  7229. name: "Macro",
  7230. height: math.unit(2.2, "solarradii")
  7231. },
  7232. {
  7233. name: "Teramacro",
  7234. height: math.unit(1.2, "galaxies")
  7235. },
  7236. {
  7237. name: "Omegamacro",
  7238. height: math.unit(200, "universes")
  7239. },
  7240. ]
  7241. ))
  7242. characterMakers.push(() => makeCharacter(
  7243. { name: "Guy", species: ["bat"], tags: ["anthro"] },
  7244. {
  7245. front: {
  7246. height: math.unit(6 + 1 / 6, "feet"),
  7247. weight: math.unit(178, "lbs"),
  7248. name: "Front",
  7249. image: {
  7250. source: "./media/characters/guy/front.svg"
  7251. }
  7252. }
  7253. },
  7254. [
  7255. {
  7256. name: "Normal",
  7257. height: math.unit(6 + 1 / 6, "feet"),
  7258. default: true
  7259. },
  7260. {
  7261. name: "Large",
  7262. height: math.unit(25 + 7 / 12, "feet")
  7263. },
  7264. {
  7265. name: "Macro",
  7266. height: math.unit(60 + 9 / 12, "feet")
  7267. },
  7268. {
  7269. name: "Macro+",
  7270. height: math.unit(246, "feet")
  7271. },
  7272. {
  7273. name: "Macro++",
  7274. height: math.unit(878, "feet")
  7275. }
  7276. ]
  7277. ))
  7278. characterMakers.push(() => makeCharacter(
  7279. { name: "Tiberius", species: ["jackal", "robot"], tags: ["anthro"] },
  7280. {
  7281. front: {
  7282. height: math.unit(9, "feet"),
  7283. weight: math.unit(800, "lbs"),
  7284. name: "Front",
  7285. image: {
  7286. source: "./media/characters/tiberius/front.svg",
  7287. extra: 2295 / 2071
  7288. }
  7289. },
  7290. back: {
  7291. height: math.unit(9, "feet"),
  7292. weight: math.unit(800, "lbs"),
  7293. name: "Back",
  7294. image: {
  7295. source: "./media/characters/tiberius/back.svg",
  7296. extra: 2373 / 2160
  7297. }
  7298. },
  7299. },
  7300. [
  7301. {
  7302. name: "Normal",
  7303. height: math.unit(9, "feet"),
  7304. default: true
  7305. }
  7306. ]
  7307. ))
  7308. characterMakers.push(() => makeCharacter(
  7309. { name: "Surgo", species: ["medihound"], tags: ["feral"] },
  7310. {
  7311. front: {
  7312. height: math.unit(6, "feet"),
  7313. weight: math.unit(600, "lbs"),
  7314. name: "Front",
  7315. image: {
  7316. source: "./media/characters/surgo/front.svg",
  7317. extra: 3591 / 2227
  7318. }
  7319. },
  7320. back: {
  7321. height: math.unit(6, "feet"),
  7322. weight: math.unit(600, "lbs"),
  7323. name: "Back",
  7324. image: {
  7325. source: "./media/characters/surgo/back.svg",
  7326. extra: 3557 / 2228
  7327. }
  7328. },
  7329. laying: {
  7330. height: math.unit(6 * 0.85, "feet"),
  7331. weight: math.unit(600, "lbs"),
  7332. name: "Laying",
  7333. image: {
  7334. source: "./media/characters/surgo/laying.svg"
  7335. }
  7336. },
  7337. },
  7338. [
  7339. {
  7340. name: "Normal",
  7341. height: math.unit(6, "feet"),
  7342. default: true
  7343. }
  7344. ]
  7345. ))
  7346. characterMakers.push(() => makeCharacter(
  7347. { name: "Cibus", species: ["dragon"], tags: ["feral"] },
  7348. {
  7349. side: {
  7350. height: math.unit(6, "feet"),
  7351. weight: math.unit(150, "lbs"),
  7352. name: "Side",
  7353. image: {
  7354. source: "./media/characters/cibus/side.svg",
  7355. extra: 800 / 400
  7356. }
  7357. },
  7358. },
  7359. [
  7360. {
  7361. name: "Normal",
  7362. height: math.unit(6, "feet"),
  7363. default: true
  7364. }
  7365. ]
  7366. ))
  7367. characterMakers.push(() => makeCharacter(
  7368. { name: "Nibbles", species: ["shark", "android"], tags: ["anthro"] },
  7369. {
  7370. front: {
  7371. height: math.unit(6, "feet"),
  7372. weight: math.unit(240, "lbs"),
  7373. name: "Front",
  7374. image: {
  7375. source: "./media/characters/nibbles/front.svg"
  7376. }
  7377. },
  7378. side: {
  7379. height: math.unit(6, "feet"),
  7380. weight: math.unit(240, "lbs"),
  7381. name: "Side",
  7382. image: {
  7383. source: "./media/characters/nibbles/side.svg"
  7384. }
  7385. },
  7386. },
  7387. [
  7388. {
  7389. name: "Normal",
  7390. height: math.unit(9, "feet"),
  7391. default: true
  7392. }
  7393. ]
  7394. ))
  7395. characterMakers.push(() => makeCharacter(
  7396. { name: "Rikky", species: ["coyote"], tags: ["anthro"] },
  7397. {
  7398. side: {
  7399. height: math.unit(5 + 1 / 6, "feet"),
  7400. weight: math.unit(130, "lbs"),
  7401. name: "Side",
  7402. image: {
  7403. source: "./media/characters/rikky/side.svg",
  7404. extra: 851 / 801
  7405. }
  7406. },
  7407. },
  7408. [
  7409. {
  7410. name: "Normal",
  7411. height: math.unit(5 + 1 / 6, "feet")
  7412. },
  7413. {
  7414. name: "Macro",
  7415. height: math.unit(152, "feet"),
  7416. default: true
  7417. },
  7418. {
  7419. name: "Megamacro",
  7420. height: math.unit(7, "miles")
  7421. }
  7422. ]
  7423. ))
  7424. characterMakers.push(() => makeCharacter(
  7425. { name: "Malfressa", species: ["dragon"], tags: ["anthro", "feral"] },
  7426. {
  7427. side: {
  7428. height: math.unit(370, "cm"),
  7429. weight: math.unit(350, "lbs"),
  7430. name: "Side",
  7431. image: {
  7432. source: "./media/characters/malfressa/side.svg"
  7433. }
  7434. },
  7435. walking: {
  7436. height: math.unit(370, "cm"),
  7437. weight: math.unit(350, "lbs"),
  7438. name: "Walking",
  7439. image: {
  7440. source: "./media/characters/malfressa/walking.svg"
  7441. }
  7442. },
  7443. feral: {
  7444. height: math.unit(2500, "cm"),
  7445. weight: math.unit(100000, "lbs"),
  7446. name: "Feral",
  7447. image: {
  7448. source: "./media/characters/malfressa/feral.svg",
  7449. extra: 2108 / 837,
  7450. bottom: 0.02
  7451. }
  7452. },
  7453. },
  7454. [
  7455. {
  7456. name: "Normal",
  7457. height: math.unit(370, "cm")
  7458. },
  7459. {
  7460. name: "Macro",
  7461. height: math.unit(300, "meters"),
  7462. default: true
  7463. }
  7464. ]
  7465. ))
  7466. characterMakers.push(() => makeCharacter(
  7467. { name: "Jaro", species: ["dragon"], tags: ["anthro"] },
  7468. {
  7469. front: {
  7470. height: math.unit(6, "feet"),
  7471. weight: math.unit(60, "kg"),
  7472. name: "Front",
  7473. image: {
  7474. source: "./media/characters/jaro/front.svg",
  7475. extra: 845/817,
  7476. bottom: 45/890
  7477. }
  7478. },
  7479. back: {
  7480. height: math.unit(6, "feet"),
  7481. weight: math.unit(60, "kg"),
  7482. name: "Back",
  7483. image: {
  7484. source: "./media/characters/jaro/back.svg",
  7485. extra: 847/817,
  7486. bottom: 34/881
  7487. }
  7488. },
  7489. },
  7490. [
  7491. {
  7492. name: "Micro",
  7493. height: math.unit(7, "inches")
  7494. },
  7495. {
  7496. name: "Normal",
  7497. height: math.unit(5.5, "feet"),
  7498. default: true
  7499. },
  7500. {
  7501. name: "Minimacro",
  7502. height: math.unit(20, "feet")
  7503. },
  7504. {
  7505. name: "Macro",
  7506. height: math.unit(200, "meters")
  7507. }
  7508. ]
  7509. ))
  7510. characterMakers.push(() => makeCharacter(
  7511. { name: "Rogue", species: ["wolf"], tags: ["anthro"] },
  7512. {
  7513. front: {
  7514. height: math.unit(6, "feet"),
  7515. weight: math.unit(195, "lb"),
  7516. name: "Front",
  7517. image: {
  7518. source: "./media/characters/rogue/front.svg"
  7519. }
  7520. },
  7521. },
  7522. [
  7523. {
  7524. name: "Macro",
  7525. height: math.unit(90, "feet"),
  7526. default: true
  7527. },
  7528. ]
  7529. ))
  7530. characterMakers.push(() => makeCharacter(
  7531. { name: "Piper", species: ["deer"], tags: ["anthro"] },
  7532. {
  7533. standing: {
  7534. height: math.unit(5 + 8 / 12, "feet"),
  7535. weight: math.unit(140, "lb"),
  7536. name: "Standing",
  7537. image: {
  7538. source: "./media/characters/piper/standing.svg",
  7539. extra: 1440/1284,
  7540. bottom: 66/1506
  7541. }
  7542. },
  7543. running: {
  7544. height: math.unit(5 + 8 / 12, "feet"),
  7545. weight: math.unit(140, "lb"),
  7546. name: "Running",
  7547. image: {
  7548. source: "./media/characters/piper/running.svg",
  7549. extra: 3948/3655,
  7550. bottom: 0/3948
  7551. }
  7552. },
  7553. sole: {
  7554. height: math.unit(0.81, "feet"),
  7555. weight: math.unit(2, "kg"),
  7556. name: "Sole",
  7557. image: {
  7558. source: "./media/characters/piper/sole.svg"
  7559. }
  7560. },
  7561. nipple: {
  7562. height: math.unit(0.25, "feet"),
  7563. weight: math.unit(1.5, "lb"),
  7564. name: "Nipple",
  7565. image: {
  7566. source: "./media/characters/piper/nipple.svg"
  7567. }
  7568. },
  7569. head: {
  7570. height: math.unit(1.1, "feet"),
  7571. name: "Head",
  7572. image: {
  7573. source: "./media/characters/piper/head.svg"
  7574. }
  7575. },
  7576. },
  7577. [
  7578. {
  7579. name: "Micro",
  7580. height: math.unit(2, "inches")
  7581. },
  7582. {
  7583. name: "Normal",
  7584. height: math.unit(5 + 8 / 12, "feet")
  7585. },
  7586. {
  7587. name: "Macro",
  7588. height: math.unit(250, "feet"),
  7589. default: true
  7590. },
  7591. {
  7592. name: "Megamacro",
  7593. height: math.unit(7, "miles")
  7594. },
  7595. ]
  7596. ))
  7597. characterMakers.push(() => makeCharacter(
  7598. { name: "Gemini", species: ["mouse"], tags: ["anthro"] },
  7599. {
  7600. front: {
  7601. height: math.unit(6, "feet"),
  7602. weight: math.unit(220, "lb"),
  7603. name: "Front",
  7604. image: {
  7605. source: "./media/characters/gemini/front.svg"
  7606. }
  7607. },
  7608. back: {
  7609. height: math.unit(6, "feet"),
  7610. weight: math.unit(220, "lb"),
  7611. name: "Back",
  7612. image: {
  7613. source: "./media/characters/gemini/back.svg"
  7614. }
  7615. },
  7616. kneeling: {
  7617. height: math.unit(6 / 1.5, "feet"),
  7618. weight: math.unit(220, "lb"),
  7619. name: "Kneeling",
  7620. image: {
  7621. source: "./media/characters/gemini/kneeling.svg",
  7622. bottom: 0.02
  7623. }
  7624. },
  7625. },
  7626. [
  7627. {
  7628. name: "Macro",
  7629. height: math.unit(300, "meters"),
  7630. default: true
  7631. },
  7632. {
  7633. name: "Megamacro",
  7634. height: math.unit(6900, "meters")
  7635. },
  7636. ]
  7637. ))
  7638. characterMakers.push(() => makeCharacter(
  7639. { name: "Alicia", species: ["dragon", "cat", "canine"], tags: ["anthro"] },
  7640. {
  7641. anthro: {
  7642. height: math.unit(2.35, "meters"),
  7643. weight: math.unit(73, "kg"),
  7644. name: "Anthro",
  7645. image: {
  7646. source: "./media/characters/alicia/anthro.svg",
  7647. extra: 2571 / 2385,
  7648. bottom: 75 / 2648
  7649. }
  7650. },
  7651. paw: {
  7652. height: math.unit(1.32, "feet"),
  7653. name: "Paw",
  7654. image: {
  7655. source: "./media/characters/alicia/paw.svg"
  7656. }
  7657. },
  7658. feral: {
  7659. height: math.unit(1.69, "meters"),
  7660. weight: math.unit(73, "kg"),
  7661. name: "Feral",
  7662. image: {
  7663. source: "./media/characters/alicia/feral.svg",
  7664. extra: 2123 / 1715,
  7665. bottom: 222 / 2349
  7666. }
  7667. },
  7668. },
  7669. [
  7670. {
  7671. name: "Normal",
  7672. height: math.unit(2.35, "meters")
  7673. },
  7674. {
  7675. name: "Macro",
  7676. height: math.unit(60, "meters"),
  7677. default: true
  7678. },
  7679. {
  7680. name: "Megamacro",
  7681. height: math.unit(10000, "kilometers")
  7682. },
  7683. ]
  7684. ))
  7685. characterMakers.push(() => makeCharacter(
  7686. { name: "Archy", species: ["snow-leopard"], tags: ["anthro"] },
  7687. {
  7688. front: {
  7689. height: math.unit(7, "feet"),
  7690. weight: math.unit(250, "lbs"),
  7691. name: "Front",
  7692. image: {
  7693. source: "./media/characters/archy/front.svg"
  7694. }
  7695. }
  7696. },
  7697. [
  7698. {
  7699. name: "Micro",
  7700. height: math.unit(1, "inch")
  7701. },
  7702. {
  7703. name: "Shorty",
  7704. height: math.unit(5, "feet")
  7705. },
  7706. {
  7707. name: "Normal",
  7708. height: math.unit(7, "feet")
  7709. },
  7710. {
  7711. name: "Macro",
  7712. height: math.unit(600, "meters"),
  7713. default: true
  7714. },
  7715. {
  7716. name: "Megamacro",
  7717. height: math.unit(1, "mile")
  7718. },
  7719. ]
  7720. ))
  7721. characterMakers.push(() => makeCharacter(
  7722. { name: "Berri", species: ["rabbit"], tags: ["anthro"] },
  7723. {
  7724. front: {
  7725. height: math.unit(1.65, "meters"),
  7726. weight: math.unit(74, "kg"),
  7727. name: "Front",
  7728. image: {
  7729. source: "./media/characters/berri/front.svg",
  7730. extra: 857 / 837,
  7731. bottom: 18 / 877
  7732. }
  7733. },
  7734. bum: {
  7735. height: math.unit(1.46, "feet"),
  7736. name: "Bum",
  7737. image: {
  7738. source: "./media/characters/berri/bum.svg"
  7739. }
  7740. },
  7741. mouth: {
  7742. height: math.unit(0.44, "feet"),
  7743. name: "Mouth",
  7744. image: {
  7745. source: "./media/characters/berri/mouth.svg"
  7746. }
  7747. },
  7748. paw: {
  7749. height: math.unit(0.826, "feet"),
  7750. name: "Paw",
  7751. image: {
  7752. source: "./media/characters/berri/paw.svg"
  7753. }
  7754. },
  7755. },
  7756. [
  7757. {
  7758. name: "Normal",
  7759. height: math.unit(1.65, "meters")
  7760. },
  7761. {
  7762. name: "Macro",
  7763. height: math.unit(60, "m"),
  7764. default: true
  7765. },
  7766. {
  7767. name: "Megamacro",
  7768. height: math.unit(9.213, "km")
  7769. },
  7770. {
  7771. name: "Planet Eater",
  7772. height: math.unit(489, "megameters")
  7773. },
  7774. {
  7775. name: "Teramacro",
  7776. height: math.unit(2471635000000, "meters")
  7777. },
  7778. {
  7779. name: "Examacro",
  7780. height: math.unit(8.0624e+26, "meters")
  7781. }
  7782. ]
  7783. ))
  7784. characterMakers.push(() => makeCharacter(
  7785. { name: "Lexi", species: ["fennec-fox"], tags: ["anthro"] },
  7786. {
  7787. front: {
  7788. height: math.unit(1.72, "meters"),
  7789. weight: math.unit(68, "kg"),
  7790. name: "Front",
  7791. image: {
  7792. source: "./media/characters/lexi/front.svg"
  7793. }
  7794. }
  7795. },
  7796. [
  7797. {
  7798. name: "Very Smol",
  7799. height: math.unit(10, "mm")
  7800. },
  7801. {
  7802. name: "Micro",
  7803. height: math.unit(6.8, "cm"),
  7804. default: true
  7805. },
  7806. {
  7807. name: "Normal",
  7808. height: math.unit(1.72, "m")
  7809. }
  7810. ]
  7811. ))
  7812. characterMakers.push(() => makeCharacter(
  7813. { name: "Martin", species: ["azodian"], tags: ["anthro"] },
  7814. {
  7815. front: {
  7816. height: math.unit(1.69, "meters"),
  7817. weight: math.unit(68, "kg"),
  7818. name: "Front",
  7819. image: {
  7820. source: "./media/characters/martin/front.svg",
  7821. extra: 596 / 581
  7822. }
  7823. }
  7824. },
  7825. [
  7826. {
  7827. name: "Micro",
  7828. height: math.unit(6.85, "cm"),
  7829. default: true
  7830. },
  7831. {
  7832. name: "Normal",
  7833. height: math.unit(1.69, "m")
  7834. }
  7835. ]
  7836. ))
  7837. characterMakers.push(() => makeCharacter(
  7838. { name: "Juno", species: ["shiba-inu", "deity"], tags: ["anthro"] },
  7839. {
  7840. front: {
  7841. height: math.unit(1.69, "meters"),
  7842. weight: math.unit(68, "kg"),
  7843. name: "Front",
  7844. image: {
  7845. source: "./media/characters/juno/front.svg"
  7846. }
  7847. }
  7848. },
  7849. [
  7850. {
  7851. name: "Micro",
  7852. height: math.unit(7, "cm")
  7853. },
  7854. {
  7855. name: "Normal",
  7856. height: math.unit(1.89, "m")
  7857. },
  7858. {
  7859. name: "Macro",
  7860. height: math.unit(353, "meters"),
  7861. default: true
  7862. }
  7863. ]
  7864. ))
  7865. characterMakers.push(() => makeCharacter(
  7866. { name: "Samantha", species: ["canine", "deity"], tags: ["anthro"] },
  7867. {
  7868. front: {
  7869. height: math.unit(1.93, "meters"),
  7870. weight: math.unit(83, "kg"),
  7871. name: "Front",
  7872. image: {
  7873. source: "./media/characters/samantha/front.svg"
  7874. }
  7875. },
  7876. frontClothed: {
  7877. height: math.unit(1.93, "meters"),
  7878. weight: math.unit(83, "kg"),
  7879. name: "Front (Clothed)",
  7880. image: {
  7881. source: "./media/characters/samantha/front-clothed.svg"
  7882. }
  7883. },
  7884. back: {
  7885. height: math.unit(1.93, "meters"),
  7886. weight: math.unit(83, "kg"),
  7887. name: "Back",
  7888. image: {
  7889. source: "./media/characters/samantha/back.svg"
  7890. }
  7891. },
  7892. },
  7893. [
  7894. {
  7895. name: "Normal",
  7896. height: math.unit(1.93, "m")
  7897. },
  7898. {
  7899. name: "Macro",
  7900. height: math.unit(74, "meters"),
  7901. default: true
  7902. },
  7903. {
  7904. name: "Macro+",
  7905. height: math.unit(223, "meters"),
  7906. },
  7907. {
  7908. name: "Megamacro",
  7909. height: math.unit(8381, "meters"),
  7910. },
  7911. {
  7912. name: "Megamacro+",
  7913. height: math.unit(12000, "kilometers")
  7914. },
  7915. ]
  7916. ))
  7917. characterMakers.push(() => makeCharacter(
  7918. { name: "Dr. Clay", species: ["canine"], tags: ["anthro"] },
  7919. {
  7920. front: {
  7921. height: math.unit(1.92, "meters"),
  7922. weight: math.unit(80, "kg"),
  7923. name: "Front",
  7924. image: {
  7925. source: "./media/characters/dr-clay/front.svg"
  7926. }
  7927. },
  7928. frontClothed: {
  7929. height: math.unit(1.92, "meters"),
  7930. weight: math.unit(80, "kg"),
  7931. name: "Front (Clothed)",
  7932. image: {
  7933. source: "./media/characters/dr-clay/front-clothed.svg"
  7934. }
  7935. }
  7936. },
  7937. [
  7938. {
  7939. name: "Normal",
  7940. height: math.unit(1.92, "m")
  7941. },
  7942. {
  7943. name: "Macro",
  7944. height: math.unit(214, "meters"),
  7945. default: true
  7946. },
  7947. {
  7948. name: "Macro+",
  7949. height: math.unit(12.237, "meters"),
  7950. },
  7951. {
  7952. name: "Megamacro",
  7953. height: math.unit(557, "megameters"),
  7954. },
  7955. {
  7956. name: "Unimaginable",
  7957. height: math.unit(120e9, "lightyears")
  7958. },
  7959. ]
  7960. ))
  7961. characterMakers.push(() => makeCharacter(
  7962. { name: "Wyvrn Ripsnarl", species: ["dragon", "wolf"], tags: ["anthro"] },
  7963. {
  7964. front: {
  7965. height: math.unit(2, "meters"),
  7966. weight: math.unit(80, "kg"),
  7967. name: "Front",
  7968. image: {
  7969. source: "./media/characters/wyvrn-ripsnarl/front.svg"
  7970. }
  7971. }
  7972. },
  7973. [
  7974. {
  7975. name: "Teramacro",
  7976. height: math.unit(500000, "lightyears"),
  7977. default: true
  7978. },
  7979. ]
  7980. ))
  7981. characterMakers.push(() => makeCharacter(
  7982. { name: "Vemus", species: ["crux", "skunk", "tanuki"], tags: ["anthro", "goo"] },
  7983. {
  7984. crux: {
  7985. height: math.unit(2, "meters"),
  7986. weight: math.unit(150, "kg"),
  7987. name: "Crux",
  7988. image: {
  7989. source: "./media/characters/vemus/crux.svg",
  7990. extra: 1074/936,
  7991. bottom: 23/1097
  7992. }
  7993. },
  7994. skunkTanuki: {
  7995. height: math.unit(2, "meters"),
  7996. weight: math.unit(150, "kg"),
  7997. name: "Skunk-Tanuki",
  7998. image: {
  7999. source: "./media/characters/vemus/skunk-tanuki.svg",
  8000. extra: 926/893,
  8001. bottom: 20/946
  8002. }
  8003. },
  8004. },
  8005. [
  8006. {
  8007. name: "Normal",
  8008. height: math.unit(4, "meters"),
  8009. default: true
  8010. },
  8011. {
  8012. name: "Big",
  8013. height: math.unit(8, "meters")
  8014. },
  8015. {
  8016. name: "Macro",
  8017. height: math.unit(100, "meters")
  8018. },
  8019. {
  8020. name: "Macro+",
  8021. height: math.unit(1500, "meters")
  8022. },
  8023. {
  8024. name: "Stellar",
  8025. height: math.unit(14e8, "meters")
  8026. },
  8027. ]
  8028. ))
  8029. characterMakers.push(() => makeCharacter(
  8030. { name: "Beherit", species: ["monster"], tags: ["anthro"] },
  8031. {
  8032. front: {
  8033. height: math.unit(2, "meters"),
  8034. weight: math.unit(70, "kg"),
  8035. name: "Front",
  8036. image: {
  8037. source: "./media/characters/beherit/front.svg",
  8038. extra: 1234/1109,
  8039. bottom: 55/1289
  8040. }
  8041. }
  8042. },
  8043. [
  8044. {
  8045. name: "Normal",
  8046. height: math.unit(6, "feet")
  8047. },
  8048. {
  8049. name: "Lorg",
  8050. height: math.unit(25, "feet"),
  8051. default: true
  8052. },
  8053. {
  8054. name: "Lorger",
  8055. height: math.unit(75, "feet")
  8056. },
  8057. {
  8058. name: "Macro",
  8059. height: math.unit(200, "meters")
  8060. },
  8061. ]
  8062. ))
  8063. characterMakers.push(() => makeCharacter(
  8064. { name: "Everett", species: ["dragon"], tags: ["anthro"] },
  8065. {
  8066. front: {
  8067. height: math.unit(2, "meters"),
  8068. weight: math.unit(150, "kg"),
  8069. name: "Front",
  8070. image: {
  8071. source: "./media/characters/everett/front.svg",
  8072. extra: 1017/866,
  8073. bottom: 86/1103
  8074. }
  8075. },
  8076. paw: {
  8077. height: math.unit(2 / 3.6, "meters"),
  8078. name: "Paw",
  8079. image: {
  8080. source: "./media/characters/everett/paw.svg"
  8081. }
  8082. },
  8083. },
  8084. [
  8085. {
  8086. name: "Normal",
  8087. height: math.unit(15, "feet"),
  8088. default: true
  8089. },
  8090. {
  8091. name: "Lorg",
  8092. height: math.unit(70, "feet"),
  8093. default: true
  8094. },
  8095. {
  8096. name: "Lorger",
  8097. height: math.unit(250, "feet")
  8098. },
  8099. {
  8100. name: "Macro",
  8101. height: math.unit(500, "meters")
  8102. },
  8103. ]
  8104. ))
  8105. characterMakers.push(() => makeCharacter(
  8106. { name: "Rose", species: ["lion", "mouse", "plush"], tags: ["anthro"] },
  8107. {
  8108. front: {
  8109. height: math.unit(2, "meters"),
  8110. weight: math.unit(86, "kg"),
  8111. name: "Front",
  8112. image: {
  8113. source: "./media/characters/rose/front.svg",
  8114. extra: 1785/1636,
  8115. bottom: 30/1815
  8116. },
  8117. form: "liom",
  8118. default: true
  8119. },
  8120. frontSporty: {
  8121. height: math.unit(2, "meters"),
  8122. weight: math.unit(86, "kg"),
  8123. name: "Front (Sporty)",
  8124. image: {
  8125. source: "./media/characters/rose/front-sporty.svg",
  8126. extra: 350/335,
  8127. bottom: 10/360
  8128. },
  8129. form: "liom"
  8130. },
  8131. frontAlt: {
  8132. height: math.unit(1.6, "meters"),
  8133. weight: math.unit(86, "kg"),
  8134. name: "Front (Alt)",
  8135. image: {
  8136. source: "./media/characters/rose/front-alt.svg",
  8137. extra: 299/283,
  8138. bottom: 3/302
  8139. },
  8140. form: "liom"
  8141. },
  8142. plush: {
  8143. height: math.unit(2, "meters"),
  8144. weight: math.unit(86/3, "kg"),
  8145. name: "Plush",
  8146. image: {
  8147. source: "./media/characters/rose/plush.svg",
  8148. extra: 361/337,
  8149. bottom: 11/372
  8150. },
  8151. form: "plush",
  8152. default: true
  8153. },
  8154. faeStanding: {
  8155. height: math.unit(10, "cm"),
  8156. weight: math.unit(10, "grams"),
  8157. name: "Standing",
  8158. image: {
  8159. source: "./media/characters/rose/fae-standing.svg",
  8160. extra: 1189/1060,
  8161. bottom: 27/1216
  8162. },
  8163. form: "fae",
  8164. default: true
  8165. },
  8166. faeSitting: {
  8167. height: math.unit(5, "cm"),
  8168. weight: math.unit(10, "grams"),
  8169. name: "Sitting",
  8170. image: {
  8171. source: "./media/characters/rose/fae-sitting.svg",
  8172. extra: 737/577,
  8173. bottom: 356/1093
  8174. },
  8175. form: "fae"
  8176. },
  8177. faePaw: {
  8178. height: math.unit(1.35, "cm"),
  8179. name: "Paw",
  8180. image: {
  8181. source: "./media/characters/rose/fae-paw.svg"
  8182. },
  8183. form: "fae"
  8184. },
  8185. },
  8186. [
  8187. {
  8188. name: "True Micro",
  8189. height: math.unit(9, "cm"),
  8190. form: "liom"
  8191. },
  8192. {
  8193. name: "Micro",
  8194. height: math.unit(16, "cm"),
  8195. form: "liom"
  8196. },
  8197. {
  8198. name: "Normal",
  8199. height: math.unit(1.85, "meters"),
  8200. default: true,
  8201. form: "liom"
  8202. },
  8203. {
  8204. name: "Mini-Macro",
  8205. height: math.unit(5, "meters"),
  8206. form: "liom"
  8207. },
  8208. {
  8209. name: "Macro",
  8210. height: math.unit(15, "meters"),
  8211. form: "liom"
  8212. },
  8213. {
  8214. name: "True Macro",
  8215. height: math.unit(40, "meters"),
  8216. form: "liom"
  8217. },
  8218. {
  8219. name: "City Scale",
  8220. height: math.unit(1, "km"),
  8221. form: "liom"
  8222. },
  8223. {
  8224. name: "Plushie",
  8225. height: math.unit(9, "cm"),
  8226. form: "plush",
  8227. default: true
  8228. },
  8229. {
  8230. name: "Fae",
  8231. height: math.unit(10, "cm"),
  8232. form: "fae",
  8233. default: true
  8234. },
  8235. ],
  8236. {
  8237. "liom": {
  8238. name: "Liom"
  8239. },
  8240. "plush": {
  8241. name: "Plush"
  8242. },
  8243. "fae": {
  8244. name: "Fae Fox",
  8245. default: true
  8246. }
  8247. }
  8248. ))
  8249. characterMakers.push(() => makeCharacter(
  8250. { name: "Regal", species: ["changeling"], tags: ["anthro"] },
  8251. {
  8252. front: {
  8253. height: math.unit(2, "meters"),
  8254. weight: math.unit(350, "lbs"),
  8255. name: "Front",
  8256. image: {
  8257. source: "./media/characters/regal/front.svg"
  8258. }
  8259. },
  8260. back: {
  8261. height: math.unit(2, "meters"),
  8262. weight: math.unit(350, "lbs"),
  8263. name: "Back",
  8264. image: {
  8265. source: "./media/characters/regal/back.svg"
  8266. }
  8267. },
  8268. },
  8269. [
  8270. {
  8271. name: "Macro",
  8272. height: math.unit(350, "feet"),
  8273. default: true
  8274. }
  8275. ]
  8276. ))
  8277. characterMakers.push(() => makeCharacter(
  8278. { name: "Opal", species: ["rabbit", "deity"], tags: ["anthro"] },
  8279. {
  8280. standing: {
  8281. height: math.unit(4 + 11/12, "feet"),
  8282. weight: math.unit(100, "lb"),
  8283. name: "Standing",
  8284. image: {
  8285. source: "./media/characters/opal/standing.svg",
  8286. extra: 1588/1513,
  8287. bottom: 23/1611
  8288. }
  8289. },
  8290. sitting: {
  8291. height: math.unit(2.3, "feet"),
  8292. weight: math.unit(100, "lb"),
  8293. name: "Sitting",
  8294. image: {
  8295. source: "./media/characters/opal/sitting.svg",
  8296. extra: 1031/892,
  8297. bottom: 142/1173
  8298. }
  8299. },
  8300. hand: {
  8301. height: math.unit(0.59, "feet"),
  8302. name: "Hand",
  8303. image: {
  8304. source: "./media/characters/opal/hand.svg"
  8305. }
  8306. },
  8307. foot: {
  8308. height: math.unit(0.61, "feet"),
  8309. name: "Foot",
  8310. image: {
  8311. source: "./media/characters/opal/foot.svg"
  8312. }
  8313. },
  8314. },
  8315. [
  8316. {
  8317. name: "Small",
  8318. height: math.unit(4 + 11 / 12, "feet")
  8319. },
  8320. {
  8321. name: "Normal",
  8322. height: math.unit(20, "feet"),
  8323. default: true
  8324. },
  8325. {
  8326. name: "Macro",
  8327. height: math.unit(120, "feet")
  8328. },
  8329. {
  8330. name: "Megamacro",
  8331. height: math.unit(80, "miles")
  8332. },
  8333. {
  8334. name: "True Size",
  8335. height: math.unit(100000, "lightyears")
  8336. },
  8337. ]
  8338. ))
  8339. characterMakers.push(() => makeCharacter(
  8340. { name: "Vector Wuff", species: ["wolf"], tags: ["anthro"] },
  8341. {
  8342. front: {
  8343. height: math.unit(6, "feet"),
  8344. weight: math.unit(200, "lbs"),
  8345. name: "Front",
  8346. image: {
  8347. source: "./media/characters/vector-wuff/front.svg"
  8348. }
  8349. }
  8350. },
  8351. [
  8352. {
  8353. name: "Normal",
  8354. height: math.unit(2.8, "meters")
  8355. },
  8356. {
  8357. name: "Macro",
  8358. height: math.unit(450, "meters"),
  8359. default: true
  8360. },
  8361. {
  8362. name: "Megamacro",
  8363. height: math.unit(15, "kilometers")
  8364. }
  8365. ]
  8366. ))
  8367. characterMakers.push(() => makeCharacter(
  8368. { name: "Dannik", species: ["gryphon"], tags: ["anthro"] },
  8369. {
  8370. front: {
  8371. height: math.unit(6, "feet"),
  8372. weight: math.unit(256, "lbs"),
  8373. name: "Front",
  8374. image: {
  8375. source: "./media/characters/dannik/front.svg"
  8376. }
  8377. }
  8378. },
  8379. [
  8380. {
  8381. name: "Macro",
  8382. height: math.unit(69.57, "meters"),
  8383. default: true
  8384. },
  8385. ]
  8386. ))
  8387. characterMakers.push(() => makeCharacter(
  8388. { name: "Azura Saharah", species: ["cheetah"], tags: ["anthro"] },
  8389. {
  8390. front: {
  8391. height: math.unit(6, "feet"),
  8392. weight: math.unit(120, "lbs"),
  8393. name: "Front",
  8394. image: {
  8395. source: "./media/characters/azura-saharah/front.svg"
  8396. }
  8397. },
  8398. back: {
  8399. height: math.unit(6, "feet"),
  8400. weight: math.unit(120, "lbs"),
  8401. name: "Back",
  8402. image: {
  8403. source: "./media/characters/azura-saharah/back.svg"
  8404. }
  8405. },
  8406. },
  8407. [
  8408. {
  8409. name: "Macro",
  8410. height: math.unit(100, "feet"),
  8411. default: true
  8412. },
  8413. ]
  8414. ))
  8415. characterMakers.push(() => makeCharacter(
  8416. { name: "Kennedy", species: ["dog"], tags: ["anthro"] },
  8417. {
  8418. side: {
  8419. height: math.unit(5 + 4 / 12, "feet"),
  8420. weight: math.unit(163, "lbs"),
  8421. name: "Side",
  8422. image: {
  8423. source: "./media/characters/kennedy/side.svg"
  8424. }
  8425. }
  8426. },
  8427. [
  8428. {
  8429. name: "Standard Doggo",
  8430. height: math.unit(5 + 4 / 12, "feet")
  8431. },
  8432. {
  8433. name: "Big Doggo",
  8434. height: math.unit(25 + 3 / 12, "feet"),
  8435. default: true
  8436. },
  8437. ]
  8438. ))
  8439. characterMakers.push(() => makeCharacter(
  8440. { name: "Odios De Lunar", species: ["golden-jackal"], tags: ["anthro"] },
  8441. {
  8442. front: {
  8443. height: math.unit(5 + 5/12, "feet"),
  8444. weight: math.unit(100, "lbs"),
  8445. name: "Front",
  8446. image: {
  8447. source: "./media/characters/odios-de-lunar/front.svg",
  8448. extra: 1468/1323,
  8449. bottom: 22/1490
  8450. }
  8451. }
  8452. },
  8453. [
  8454. {
  8455. name: "Micro",
  8456. height: math.unit(3, "inches")
  8457. },
  8458. {
  8459. name: "Normal",
  8460. height: math.unit(5.5, "feet"),
  8461. default: true
  8462. },
  8463. {
  8464. name: "Macro",
  8465. height: math.unit(100, "feet")
  8466. },
  8467. ]
  8468. ))
  8469. characterMakers.push(() => makeCharacter(
  8470. { name: "Mandake", species: ["manectric", "tiger"], tags: ["anthro"] },
  8471. {
  8472. back: {
  8473. height: math.unit(6, "feet"),
  8474. weight: math.unit(220, "lbs"),
  8475. name: "Back",
  8476. image: {
  8477. source: "./media/characters/mandake/back.svg"
  8478. }
  8479. }
  8480. },
  8481. [
  8482. {
  8483. name: "Normal",
  8484. height: math.unit(7, "feet"),
  8485. default: true
  8486. },
  8487. {
  8488. name: "Macro",
  8489. height: math.unit(78, "feet")
  8490. },
  8491. {
  8492. name: "Macro+",
  8493. height: math.unit(300, "meters")
  8494. },
  8495. {
  8496. name: "Macro++",
  8497. height: math.unit(2400, "feet")
  8498. },
  8499. {
  8500. name: "Megamacro",
  8501. height: math.unit(5167, "meters")
  8502. },
  8503. {
  8504. name: "Gigamacro",
  8505. height: math.unit(41769, "miles")
  8506. },
  8507. ]
  8508. ))
  8509. characterMakers.push(() => makeCharacter(
  8510. { name: "Yozey", species: ["rat"], tags: ["anthro"] },
  8511. {
  8512. front: {
  8513. height: math.unit(6, "feet"),
  8514. weight: math.unit(120, "lbs"),
  8515. name: "Front",
  8516. image: {
  8517. source: "./media/characters/yozey/front.svg"
  8518. }
  8519. },
  8520. frontAlt: {
  8521. height: math.unit(6, "feet"),
  8522. weight: math.unit(120, "lbs"),
  8523. name: "Front (Alt)",
  8524. image: {
  8525. source: "./media/characters/yozey/front-alt.svg"
  8526. }
  8527. },
  8528. side: {
  8529. height: math.unit(6, "feet"),
  8530. weight: math.unit(120, "lbs"),
  8531. name: "Side",
  8532. image: {
  8533. source: "./media/characters/yozey/side.svg"
  8534. }
  8535. },
  8536. },
  8537. [
  8538. {
  8539. name: "Micro",
  8540. height: math.unit(3, "inches"),
  8541. default: true
  8542. },
  8543. {
  8544. name: "Normal",
  8545. height: math.unit(6, "feet")
  8546. }
  8547. ]
  8548. ))
  8549. characterMakers.push(() => makeCharacter(
  8550. { name: "Valeska Voss", species: ["fox"], tags: ["anthro"] },
  8551. {
  8552. front: {
  8553. height: math.unit(6, "feet"),
  8554. weight: math.unit(103, "lbs"),
  8555. name: "Front",
  8556. image: {
  8557. source: "./media/characters/valeska-voss/front.svg"
  8558. }
  8559. }
  8560. },
  8561. [
  8562. {
  8563. name: "Mini-Sized Sub",
  8564. height: math.unit(3.1, "inches")
  8565. },
  8566. {
  8567. name: "Mid-Sized Sub",
  8568. height: math.unit(6.2, "inches")
  8569. },
  8570. {
  8571. name: "Full-Sized Sub",
  8572. height: math.unit(9.3, "inches")
  8573. },
  8574. {
  8575. name: "Normal",
  8576. height: math.unit(5 + 2 / 12, "foot"),
  8577. default: true
  8578. },
  8579. ]
  8580. ))
  8581. characterMakers.push(() => makeCharacter(
  8582. { name: "Gene Zeta", species: ["raptor"], tags: ["anthro"] },
  8583. {
  8584. front: {
  8585. height: math.unit(6, "feet"),
  8586. weight: math.unit(160, "lbs"),
  8587. name: "Front",
  8588. image: {
  8589. source: "./media/characters/gene-zeta/front.svg",
  8590. extra: 3006 / 2826,
  8591. bottom: 182 / 3188
  8592. }
  8593. }
  8594. },
  8595. [
  8596. {
  8597. name: "Micro",
  8598. height: math.unit(6, "inches")
  8599. },
  8600. {
  8601. name: "Normal",
  8602. height: math.unit(5 + 11 / 12, "foot"),
  8603. default: true
  8604. },
  8605. {
  8606. name: "Macro",
  8607. height: math.unit(140, "feet")
  8608. },
  8609. {
  8610. name: "Supercharged",
  8611. height: math.unit(2500, "feet")
  8612. },
  8613. ]
  8614. ))
  8615. characterMakers.push(() => makeCharacter(
  8616. { name: "Razinox", species: ["dragon"], tags: ["anthro"] },
  8617. {
  8618. front: {
  8619. height: math.unit(6, "feet"),
  8620. weight: math.unit(350, "lbs"),
  8621. name: "Front",
  8622. image: {
  8623. source: "./media/characters/razinox/front.svg",
  8624. extra: 1686 / 1548,
  8625. bottom: 28.2 / 1868
  8626. }
  8627. },
  8628. back: {
  8629. height: math.unit(6, "feet"),
  8630. weight: math.unit(350, "lbs"),
  8631. name: "Back",
  8632. image: {
  8633. source: "./media/characters/razinox/back.svg",
  8634. extra: 1660 / 1590,
  8635. bottom: 15 / 1665
  8636. }
  8637. },
  8638. },
  8639. [
  8640. {
  8641. name: "Normal",
  8642. height: math.unit(10 + 8 / 12, "foot")
  8643. },
  8644. {
  8645. name: "Minimacro",
  8646. height: math.unit(15, "foot")
  8647. },
  8648. {
  8649. name: "Macro",
  8650. height: math.unit(60, "foot"),
  8651. default: true
  8652. },
  8653. {
  8654. name: "Megamacro",
  8655. height: math.unit(5, "miles")
  8656. },
  8657. {
  8658. name: "Gigamacro",
  8659. height: math.unit(6000, "miles")
  8660. },
  8661. ]
  8662. ))
  8663. characterMakers.push(() => makeCharacter(
  8664. { name: "Cobalt", species: ["cat", "weasel"], tags: ["anthro"] },
  8665. {
  8666. front: {
  8667. height: math.unit(6, "feet"),
  8668. weight: math.unit(150, "lbs"),
  8669. name: "Front",
  8670. image: {
  8671. source: "./media/characters/cobalt/front.svg"
  8672. }
  8673. }
  8674. },
  8675. [
  8676. {
  8677. name: "Normal",
  8678. height: math.unit(8 + 1 / 12, "foot")
  8679. },
  8680. {
  8681. name: "Macro",
  8682. height: math.unit(111, "foot"),
  8683. default: true
  8684. },
  8685. {
  8686. name: "Supracosmic",
  8687. height: math.unit(1e42, "feet")
  8688. },
  8689. ]
  8690. ))
  8691. characterMakers.push(() => makeCharacter(
  8692. { name: "Amanda", species: ["mouse"], tags: ["anthro"] },
  8693. {
  8694. front: {
  8695. height: math.unit(5, "inches"),
  8696. name: "Front",
  8697. image: {
  8698. source: "./media/characters/amanda/front.svg",
  8699. extra: 926/791,
  8700. bottom: 38/964
  8701. }
  8702. },
  8703. back: {
  8704. height: math.unit(5, "inches"),
  8705. name: "Back",
  8706. image: {
  8707. source: "./media/characters/amanda/back.svg",
  8708. extra: 909/805,
  8709. bottom: 43/952
  8710. }
  8711. },
  8712. },
  8713. [
  8714. {
  8715. name: "Micro",
  8716. height: math.unit(5, "inches"),
  8717. default: true
  8718. },
  8719. ]
  8720. ))
  8721. characterMakers.push(() => makeCharacter(
  8722. { name: "Teal", species: ["octocoon"], tags: ["anthro"] },
  8723. {
  8724. front: {
  8725. height: math.unit(2.75, "meters"),
  8726. weight: math.unit(1200, "lb"),
  8727. name: "Front",
  8728. image: {
  8729. source: "./media/characters/teal/front.svg",
  8730. extra: 2463 / 2320,
  8731. bottom: 166 / 2629
  8732. }
  8733. },
  8734. back: {
  8735. height: math.unit(2.75, "meters"),
  8736. weight: math.unit(1200, "lb"),
  8737. name: "Back",
  8738. image: {
  8739. source: "./media/characters/teal/back.svg",
  8740. extra: 2580 / 2489,
  8741. bottom: 151 / 2731
  8742. }
  8743. },
  8744. sitting: {
  8745. height: math.unit(1.9, "meters"),
  8746. weight: math.unit(1200, "lb"),
  8747. name: "Sitting",
  8748. image: {
  8749. source: "./media/characters/teal/sitting.svg",
  8750. extra: 623 / 590,
  8751. bottom: 121 / 744
  8752. }
  8753. },
  8754. standing: {
  8755. height: math.unit(2.75, "meters"),
  8756. weight: math.unit(1200, "lb"),
  8757. name: "Standing",
  8758. image: {
  8759. source: "./media/characters/teal/standing.svg",
  8760. extra: 923 / 893,
  8761. bottom: 60 / 983
  8762. }
  8763. },
  8764. stretching: {
  8765. height: math.unit(3.65, "meters"),
  8766. weight: math.unit(1200, "lb"),
  8767. name: "Stretching",
  8768. image: {
  8769. source: "./media/characters/teal/stretching.svg",
  8770. extra: 1276 / 1244,
  8771. bottom: 0 / 1276
  8772. }
  8773. },
  8774. legged: {
  8775. height: math.unit(1.3, "meters"),
  8776. weight: math.unit(100, "lb"),
  8777. name: "Legged",
  8778. image: {
  8779. source: "./media/characters/teal/legged.svg",
  8780. extra: 462 / 437,
  8781. bottom: 24 / 486
  8782. }
  8783. },
  8784. naga: {
  8785. height: math.unit(5.4, "meters"),
  8786. weight: math.unit(4000, "lb"),
  8787. name: "Naga",
  8788. image: {
  8789. source: "./media/characters/teal/naga.svg",
  8790. extra: 1902 / 1858,
  8791. bottom: 0 / 1902
  8792. }
  8793. },
  8794. hand: {
  8795. height: math.unit(0.52, "meters"),
  8796. name: "Hand",
  8797. image: {
  8798. source: "./media/characters/teal/hand.svg"
  8799. }
  8800. },
  8801. maw: {
  8802. height: math.unit(0.43, "meters"),
  8803. name: "Maw",
  8804. image: {
  8805. source: "./media/characters/teal/maw.svg"
  8806. }
  8807. },
  8808. slit: {
  8809. height: math.unit(0.25, "meters"),
  8810. name: "Slit",
  8811. image: {
  8812. source: "./media/characters/teal/slit.svg"
  8813. }
  8814. },
  8815. },
  8816. [
  8817. {
  8818. name: "Normal",
  8819. height: math.unit(2.75, "meters"),
  8820. default: true
  8821. },
  8822. {
  8823. name: "Macro",
  8824. height: math.unit(300, "feet")
  8825. },
  8826. {
  8827. name: "Macro+",
  8828. height: math.unit(2000, "feet")
  8829. },
  8830. ]
  8831. ))
  8832. characterMakers.push(() => makeCharacter(
  8833. { name: "Ravin Amulet", species: ["cat", "werewolf"], tags: ["anthro"] },
  8834. {
  8835. frontCat: {
  8836. height: math.unit(6, "feet"),
  8837. weight: math.unit(180, "lbs"),
  8838. name: "Front (Cat)",
  8839. image: {
  8840. source: "./media/characters/ravin-amulet/front-cat.svg"
  8841. }
  8842. },
  8843. frontCatAlt: {
  8844. height: math.unit(6, "feet"),
  8845. weight: math.unit(180, "lbs"),
  8846. name: "Front (Alt, Cat)",
  8847. image: {
  8848. source: "./media/characters/ravin-amulet/front-cat-alt.svg"
  8849. }
  8850. },
  8851. frontWerewolf: {
  8852. height: math.unit(6 * 1.2, "feet"),
  8853. weight: math.unit(225, "lbs"),
  8854. name: "Front (Werewolf)",
  8855. image: {
  8856. source: "./media/characters/ravin-amulet/front-werewolf.svg"
  8857. }
  8858. },
  8859. backWerewolf: {
  8860. height: math.unit(6 * 1.2, "feet"),
  8861. weight: math.unit(225, "lbs"),
  8862. name: "Back (Werewolf)",
  8863. image: {
  8864. source: "./media/characters/ravin-amulet/back-werewolf.svg"
  8865. }
  8866. },
  8867. },
  8868. [
  8869. {
  8870. name: "Nano",
  8871. height: math.unit(1, "micrometer")
  8872. },
  8873. {
  8874. name: "Micro",
  8875. height: math.unit(1, "inch")
  8876. },
  8877. {
  8878. name: "Normal",
  8879. height: math.unit(6, "feet"),
  8880. default: true
  8881. },
  8882. {
  8883. name: "Macro",
  8884. height: math.unit(60, "feet")
  8885. }
  8886. ]
  8887. ))
  8888. characterMakers.push(() => makeCharacter(
  8889. { name: "Fluoresce", species: ["snow-leopard"], tags: ["anthro"] },
  8890. {
  8891. front: {
  8892. height: math.unit(6, "feet"),
  8893. weight: math.unit(165, "lbs"),
  8894. name: "Front",
  8895. image: {
  8896. source: "./media/characters/fluoresce/front.svg"
  8897. }
  8898. }
  8899. },
  8900. [
  8901. {
  8902. name: "Micro",
  8903. height: math.unit(6, "cm")
  8904. },
  8905. {
  8906. name: "Normal",
  8907. height: math.unit(5 + 7 / 12, "feet"),
  8908. default: true
  8909. },
  8910. {
  8911. name: "Macro",
  8912. height: math.unit(56, "feet")
  8913. },
  8914. {
  8915. name: "Megamacro",
  8916. height: math.unit(1.9, "miles")
  8917. },
  8918. ]
  8919. ))
  8920. characterMakers.push(() => makeCharacter(
  8921. { name: "Aurora", species: ["dragon"], tags: ["anthro"] },
  8922. {
  8923. front: {
  8924. height: math.unit(9 + 6 / 12, "feet"),
  8925. weight: math.unit(523, "lbs"),
  8926. name: "Side",
  8927. image: {
  8928. source: "./media/characters/aurora/side.svg",
  8929. extra: 474/393,
  8930. bottom: 5/479
  8931. }
  8932. }
  8933. },
  8934. [
  8935. {
  8936. name: "Normal",
  8937. height: math.unit(9 + 6 / 12, "feet")
  8938. },
  8939. {
  8940. name: "Macro",
  8941. height: math.unit(96, "feet"),
  8942. default: true
  8943. },
  8944. {
  8945. name: "Macro+",
  8946. height: math.unit(243, "feet")
  8947. },
  8948. ]
  8949. ))
  8950. characterMakers.push(() => makeCharacter(
  8951. { name: "Ranek", species: ["meerkat"], tags: ["anthro"] },
  8952. {
  8953. front: {
  8954. height: math.unit(194, "cm"),
  8955. weight: math.unit(90, "kg"),
  8956. name: "Front",
  8957. image: {
  8958. source: "./media/characters/ranek/front.svg",
  8959. extra: 1862/1791,
  8960. bottom: 80/1942
  8961. }
  8962. },
  8963. back: {
  8964. height: math.unit(194, "cm"),
  8965. weight: math.unit(90, "kg"),
  8966. name: "Back",
  8967. image: {
  8968. source: "./media/characters/ranek/back.svg",
  8969. extra: 1853/1787,
  8970. bottom: 74/1927
  8971. }
  8972. },
  8973. feral: {
  8974. height: math.unit(30, "cm"),
  8975. weight: math.unit(1.6, "lbs"),
  8976. name: "Feral",
  8977. image: {
  8978. source: "./media/characters/ranek/feral.svg",
  8979. extra: 990/631,
  8980. bottom: 29/1019
  8981. }
  8982. },
  8983. },
  8984. [
  8985. {
  8986. name: "Normal",
  8987. height: math.unit(194, "cm"),
  8988. default: true
  8989. },
  8990. {
  8991. name: "Macro",
  8992. height: math.unit(100, "meters")
  8993. },
  8994. ]
  8995. ))
  8996. characterMakers.push(() => makeCharacter(
  8997. { name: "Andrew Cooper", species: ["human"], tags: ["anthro"] },
  8998. {
  8999. front: {
  9000. height: math.unit(5 + 6 / 12, "feet"),
  9001. weight: math.unit(153, "lbs"),
  9002. name: "Front",
  9003. image: {
  9004. source: "./media/characters/andrew-cooper/front.svg"
  9005. }
  9006. },
  9007. },
  9008. [
  9009. {
  9010. name: "Nano",
  9011. height: math.unit(1, "mm")
  9012. },
  9013. {
  9014. name: "Micro",
  9015. height: math.unit(2, "inches")
  9016. },
  9017. {
  9018. name: "Normal",
  9019. height: math.unit(5 + 6 / 12, "feet"),
  9020. default: true
  9021. }
  9022. ]
  9023. ))
  9024. characterMakers.push(() => makeCharacter(
  9025. { name: "Akane Sato", species: ["wolf", "dragon"], tags: ["anthro"] },
  9026. {
  9027. front: {
  9028. height: math.unit(6, "feet"),
  9029. weight: math.unit(180, "lbs"),
  9030. name: "Front",
  9031. image: {
  9032. source: "./media/characters/akane-sato/front.svg",
  9033. extra: 1219 / 1140
  9034. }
  9035. },
  9036. back: {
  9037. height: math.unit(6, "feet"),
  9038. weight: math.unit(180, "lbs"),
  9039. name: "Back",
  9040. image: {
  9041. source: "./media/characters/akane-sato/back.svg",
  9042. extra: 1219 / 1170
  9043. }
  9044. },
  9045. },
  9046. [
  9047. {
  9048. name: "Normal",
  9049. height: math.unit(2.5, "meters")
  9050. },
  9051. {
  9052. name: "Macro",
  9053. height: math.unit(250, "meters"),
  9054. default: true
  9055. },
  9056. {
  9057. name: "Megamacro",
  9058. height: math.unit(25, "km")
  9059. },
  9060. ]
  9061. ))
  9062. characterMakers.push(() => makeCharacter(
  9063. { name: "Rook", species: ["corvid"], tags: ["anthro"] },
  9064. {
  9065. front: {
  9066. height: math.unit(6, "feet"),
  9067. weight: math.unit(65, "kg"),
  9068. name: "Front",
  9069. image: {
  9070. source: "./media/characters/rook/front.svg",
  9071. extra: 960 / 950
  9072. }
  9073. }
  9074. },
  9075. [
  9076. {
  9077. name: "Normal",
  9078. height: math.unit(8.8, "feet")
  9079. },
  9080. {
  9081. name: "Macro",
  9082. height: math.unit(88, "feet"),
  9083. default: true
  9084. },
  9085. {
  9086. name: "Megamacro",
  9087. height: math.unit(8, "miles")
  9088. },
  9089. ]
  9090. ))
  9091. characterMakers.push(() => makeCharacter(
  9092. { name: "Prodigy", species: ["geth"], tags: ["anthro"] },
  9093. {
  9094. front: {
  9095. height: math.unit(12 + 2 / 12, "feet"),
  9096. weight: math.unit(808, "lbs"),
  9097. name: "Front",
  9098. image: {
  9099. source: "./media/characters/prodigy/front.svg"
  9100. }
  9101. }
  9102. },
  9103. [
  9104. {
  9105. name: "Normal",
  9106. height: math.unit(12 + 2 / 12, "feet"),
  9107. default: true
  9108. },
  9109. {
  9110. name: "Macro",
  9111. height: math.unit(143, "feet")
  9112. },
  9113. {
  9114. name: "Macro+",
  9115. height: math.unit(400, "feet")
  9116. },
  9117. ]
  9118. ))
  9119. characterMakers.push(() => makeCharacter(
  9120. { name: "Daniel", species: ["husky"], tags: ["anthro"] },
  9121. {
  9122. front: {
  9123. height: math.unit(6, "feet"),
  9124. weight: math.unit(225, "lbs"),
  9125. name: "Front",
  9126. image: {
  9127. source: "./media/characters/daniel/front.svg"
  9128. }
  9129. },
  9130. leaning: {
  9131. height: math.unit(6, "feet"),
  9132. weight: math.unit(225, "lbs"),
  9133. name: "Leaning",
  9134. image: {
  9135. source: "./media/characters/daniel/leaning.svg"
  9136. }
  9137. },
  9138. },
  9139. [
  9140. {
  9141. name: "Macro",
  9142. height: math.unit(1000, "feet"),
  9143. default: true
  9144. },
  9145. ]
  9146. ))
  9147. characterMakers.push(() => makeCharacter(
  9148. { name: "Chiros", species: ["long-eared-bat"], tags: ["anthro"] },
  9149. {
  9150. front: {
  9151. height: math.unit(6, "feet"),
  9152. weight: math.unit(88, "lbs"),
  9153. name: "Front",
  9154. image: {
  9155. source: "./media/characters/chiros/front.svg",
  9156. extra: 306 / 226
  9157. }
  9158. },
  9159. side: {
  9160. height: math.unit(6, "feet"),
  9161. weight: math.unit(88, "lbs"),
  9162. name: "Side",
  9163. image: {
  9164. source: "./media/characters/chiros/side.svg",
  9165. extra: 306 / 226
  9166. }
  9167. },
  9168. },
  9169. [
  9170. {
  9171. name: "Normal",
  9172. height: math.unit(6, "cm"),
  9173. default: true
  9174. },
  9175. ]
  9176. ))
  9177. characterMakers.push(() => makeCharacter(
  9178. { name: "Selka", species: ["snake"], tags: ["naga"] },
  9179. {
  9180. front: {
  9181. height: math.unit(6, "feet"),
  9182. weight: math.unit(100, "lbs"),
  9183. name: "Front",
  9184. image: {
  9185. source: "./media/characters/selka/front.svg",
  9186. extra: 947 / 887
  9187. }
  9188. }
  9189. },
  9190. [
  9191. {
  9192. name: "Normal",
  9193. height: math.unit(5, "cm"),
  9194. default: true
  9195. },
  9196. ]
  9197. ))
  9198. characterMakers.push(() => makeCharacter(
  9199. { name: "Verin", species: ["dragon"], tags: ["anthro"] },
  9200. {
  9201. front: {
  9202. height: math.unit(8 + 3 / 12, "feet"),
  9203. weight: math.unit(424, "lbs"),
  9204. name: "Front",
  9205. image: {
  9206. source: "./media/characters/verin/front.svg",
  9207. extra: 1845 / 1550
  9208. }
  9209. },
  9210. frontArmored: {
  9211. height: math.unit(8 + 3 / 12, "feet"),
  9212. weight: math.unit(424, "lbs"),
  9213. name: "Front (Armored)",
  9214. image: {
  9215. source: "./media/characters/verin/front-armor.svg",
  9216. extra: 1845 / 1550,
  9217. bottom: 0.01
  9218. }
  9219. },
  9220. back: {
  9221. height: math.unit(8 + 3 / 12, "feet"),
  9222. weight: math.unit(424, "lbs"),
  9223. name: "Back",
  9224. image: {
  9225. source: "./media/characters/verin/back.svg",
  9226. bottom: 0.1,
  9227. extra: 1
  9228. }
  9229. },
  9230. foot: {
  9231. height: math.unit((8 + 3 / 12) / 4.7, "feet"),
  9232. name: "Foot",
  9233. image: {
  9234. source: "./media/characters/verin/foot.svg"
  9235. }
  9236. },
  9237. },
  9238. [
  9239. {
  9240. name: "Normal",
  9241. height: math.unit(8 + 3 / 12, "feet")
  9242. },
  9243. {
  9244. name: "Minimacro",
  9245. height: math.unit(21, "feet"),
  9246. default: true
  9247. },
  9248. {
  9249. name: "Macro",
  9250. height: math.unit(626, "feet")
  9251. },
  9252. ]
  9253. ))
  9254. characterMakers.push(() => makeCharacter(
  9255. { name: "Sovrim Terraquian", species: ["salamander", "chameleon"], tags: ["anthro"] },
  9256. {
  9257. front: {
  9258. height: math.unit(2.718, "meters"),
  9259. weight: math.unit(150, "lbs"),
  9260. name: "Front",
  9261. image: {
  9262. source: "./media/characters/sovrim-terraquian/front.svg",
  9263. extra: 1752/1689,
  9264. bottom: 36/1788
  9265. }
  9266. },
  9267. back: {
  9268. height: math.unit(2.718, "meters"),
  9269. weight: math.unit(150, "lbs"),
  9270. name: "Back",
  9271. image: {
  9272. source: "./media/characters/sovrim-terraquian/back.svg",
  9273. extra: 1698/1657,
  9274. bottom: 58/1756
  9275. }
  9276. },
  9277. tongue: {
  9278. height: math.unit(2.865, "feet"),
  9279. name: "Tongue",
  9280. image: {
  9281. source: "./media/characters/sovrim-terraquian/tongue.svg"
  9282. }
  9283. },
  9284. hand: {
  9285. height: math.unit(1.61, "feet"),
  9286. name: "Hand",
  9287. image: {
  9288. source: "./media/characters/sovrim-terraquian/hand.svg"
  9289. }
  9290. },
  9291. foot: {
  9292. height: math.unit(1.05, "feet"),
  9293. name: "Foot",
  9294. image: {
  9295. source: "./media/characters/sovrim-terraquian/foot.svg"
  9296. }
  9297. },
  9298. footAlt: {
  9299. height: math.unit(0.88, "feet"),
  9300. name: "Foot (Alt)",
  9301. image: {
  9302. source: "./media/characters/sovrim-terraquian/foot-alt.svg"
  9303. }
  9304. },
  9305. },
  9306. [
  9307. {
  9308. name: "Micro",
  9309. height: math.unit(2, "inches")
  9310. },
  9311. {
  9312. name: "Small",
  9313. height: math.unit(1, "meter")
  9314. },
  9315. {
  9316. name: "Normal",
  9317. height: math.unit(Math.E, "meters"),
  9318. default: true
  9319. },
  9320. {
  9321. name: "Macro",
  9322. height: math.unit(20, "meters")
  9323. },
  9324. {
  9325. name: "Macro+",
  9326. height: math.unit(400, "meters")
  9327. },
  9328. ]
  9329. ))
  9330. characterMakers.push(() => makeCharacter(
  9331. { name: "Reece Silvermane", species: ["horse"], tags: ["anthro"] },
  9332. {
  9333. front: {
  9334. height: math.unit(7, "feet"),
  9335. weight: math.unit(489, "lbs"),
  9336. name: "Front",
  9337. image: {
  9338. source: "./media/characters/reece-silvermane/front.svg",
  9339. bottom: 0.02,
  9340. extra: 1
  9341. }
  9342. },
  9343. },
  9344. [
  9345. {
  9346. name: "Macro",
  9347. height: math.unit(1.5, "miles"),
  9348. default: true
  9349. },
  9350. ]
  9351. ))
  9352. characterMakers.push(() => makeCharacter(
  9353. { name: "Kane", species: ["demon", "wolf"], tags: ["anthro"] },
  9354. {
  9355. front: {
  9356. height: math.unit(6, "feet"),
  9357. weight: math.unit(78, "kg"),
  9358. name: "Front",
  9359. image: {
  9360. source: "./media/characters/kane/front.svg",
  9361. extra: 978 / 899
  9362. }
  9363. },
  9364. back: {
  9365. height: math.unit(6, "feet"),
  9366. weight: math.unit(78, "kg"),
  9367. name: "Back",
  9368. image: {
  9369. source: "./media/characters/kane/back.svg",
  9370. extra: 1966/1800,
  9371. bottom: 0/1966
  9372. }
  9373. },
  9374. head: {
  9375. height: math.unit(1.4, "feet"),
  9376. name: "Head",
  9377. image: {
  9378. source: "./media/characters/kane/head.svg"
  9379. }
  9380. },
  9381. },
  9382. [
  9383. {
  9384. name: "Normal",
  9385. height: math.unit(2.1, "m"),
  9386. },
  9387. {
  9388. name: "Macro",
  9389. height: math.unit(1, "km"),
  9390. default: true
  9391. },
  9392. ]
  9393. ))
  9394. characterMakers.push(() => makeCharacter(
  9395. { name: "Tegon", species: ["dragon"], tags: ["anthro"] },
  9396. {
  9397. front: {
  9398. height: math.unit(6, "feet"),
  9399. weight: math.unit(200, "kg"),
  9400. name: "Front",
  9401. image: {
  9402. source: "./media/characters/tegon/front.svg",
  9403. bottom: 0.01,
  9404. extra: 1
  9405. }
  9406. },
  9407. },
  9408. [
  9409. {
  9410. name: "Micro",
  9411. height: math.unit(1, "inch")
  9412. },
  9413. {
  9414. name: "Normal",
  9415. height: math.unit(6 + 3 / 12, "feet"),
  9416. default: true
  9417. },
  9418. {
  9419. name: "Macro",
  9420. height: math.unit(300, "feet")
  9421. },
  9422. {
  9423. name: "Megamacro",
  9424. height: math.unit(69, "miles")
  9425. },
  9426. ]
  9427. ))
  9428. characterMakers.push(() => makeCharacter(
  9429. { name: "Arcturax", species: ["bat", "gryphon"], tags: ["anthro"] },
  9430. {
  9431. side: {
  9432. height: math.unit(6, "feet"),
  9433. weight: math.unit(2304, "lbs"),
  9434. name: "Side",
  9435. image: {
  9436. source: "./media/characters/arcturax/side.svg",
  9437. extra: 790 / 376,
  9438. bottom: 0.01
  9439. }
  9440. },
  9441. },
  9442. [
  9443. {
  9444. name: "Micro",
  9445. height: math.unit(2, "inch")
  9446. },
  9447. {
  9448. name: "Normal",
  9449. height: math.unit(6, "feet")
  9450. },
  9451. {
  9452. name: "Macro",
  9453. height: math.unit(39, "feet"),
  9454. default: true
  9455. },
  9456. {
  9457. name: "Megamacro",
  9458. height: math.unit(7, "miles")
  9459. },
  9460. ]
  9461. ))
  9462. characterMakers.push(() => makeCharacter(
  9463. { name: "Sentri", species: ["eagle"], tags: ["anthro"] },
  9464. {
  9465. front: {
  9466. height: math.unit(6, "feet"),
  9467. weight: math.unit(50, "lbs"),
  9468. name: "Front",
  9469. image: {
  9470. source: "./media/characters/sentri/front.svg",
  9471. extra: 1750 / 1570,
  9472. bottom: 0.025
  9473. }
  9474. },
  9475. frontAlt: {
  9476. height: math.unit(6, "feet"),
  9477. weight: math.unit(50, "lbs"),
  9478. name: "Front (Alt)",
  9479. image: {
  9480. source: "./media/characters/sentri/front-alt.svg",
  9481. extra: 1750 / 1570,
  9482. bottom: 0.025
  9483. }
  9484. },
  9485. },
  9486. [
  9487. {
  9488. name: "Normal",
  9489. height: math.unit(15, "feet"),
  9490. default: true
  9491. },
  9492. {
  9493. name: "Macro",
  9494. height: math.unit(2500, "feet")
  9495. }
  9496. ]
  9497. ))
  9498. characterMakers.push(() => makeCharacter(
  9499. { name: "Corvin", species: ["gecko"], tags: ["anthro"] },
  9500. {
  9501. front: {
  9502. height: math.unit(5 + 8 / 12, "feet"),
  9503. weight: math.unit(130, "lbs"),
  9504. name: "Front",
  9505. image: {
  9506. source: "./media/characters/corvin/front.svg",
  9507. extra: 1803 / 1629
  9508. }
  9509. },
  9510. frontShirt: {
  9511. height: math.unit(5 + 8 / 12, "feet"),
  9512. weight: math.unit(130, "lbs"),
  9513. name: "Front (Shirt)",
  9514. image: {
  9515. source: "./media/characters/corvin/front-shirt.svg",
  9516. extra: 1803 / 1629
  9517. }
  9518. },
  9519. frontPoncho: {
  9520. height: math.unit(5 + 8 / 12, "feet"),
  9521. weight: math.unit(130, "lbs"),
  9522. name: "Front (Poncho)",
  9523. image: {
  9524. source: "./media/characters/corvin/front-poncho.svg",
  9525. extra: 1803 / 1629
  9526. }
  9527. },
  9528. side: {
  9529. height: math.unit(5 + 8 / 12, "feet"),
  9530. weight: math.unit(130, "lbs"),
  9531. name: "Side",
  9532. image: {
  9533. source: "./media/characters/corvin/side.svg",
  9534. extra: 1012 / 945
  9535. }
  9536. },
  9537. back: {
  9538. height: math.unit(5 + 8 / 12, "feet"),
  9539. weight: math.unit(130, "lbs"),
  9540. name: "Back",
  9541. image: {
  9542. source: "./media/characters/corvin/back.svg",
  9543. extra: 1803 / 1629
  9544. }
  9545. },
  9546. },
  9547. [
  9548. {
  9549. name: "Micro",
  9550. height: math.unit(3, "inches")
  9551. },
  9552. {
  9553. name: "Normal",
  9554. height: math.unit(5 + 8 / 12, "feet")
  9555. },
  9556. {
  9557. name: "Macro",
  9558. height: math.unit(300, "feet"),
  9559. default: true
  9560. },
  9561. {
  9562. name: "Megamacro",
  9563. height: math.unit(500, "miles")
  9564. }
  9565. ]
  9566. ))
  9567. characterMakers.push(() => makeCharacter(
  9568. { name: "Q", species: ["wolf"], tags: ["anthro"] },
  9569. {
  9570. front: {
  9571. height: math.unit(6, "feet"),
  9572. weight: math.unit(135, "lbs"),
  9573. name: "Front",
  9574. image: {
  9575. source: "./media/characters/q/front.svg",
  9576. extra: 854 / 752,
  9577. bottom: 0.005
  9578. }
  9579. },
  9580. back: {
  9581. height: math.unit(6, "feet"),
  9582. weight: math.unit(130, "lbs"),
  9583. name: "Back",
  9584. image: {
  9585. source: "./media/characters/q/back.svg",
  9586. extra: 854 / 752
  9587. }
  9588. },
  9589. },
  9590. [
  9591. {
  9592. name: "Macro",
  9593. height: math.unit(90, "feet"),
  9594. default: true
  9595. },
  9596. {
  9597. name: "Extra Macro",
  9598. height: math.unit(300, "feet"),
  9599. },
  9600. {
  9601. name: "BIG WALF",
  9602. height: math.unit(750, "feet"),
  9603. },
  9604. ]
  9605. ))
  9606. characterMakers.push(() => makeCharacter(
  9607. { name: "Citrine", species: ["kobold"], tags: ["anthro"] },
  9608. {
  9609. front: {
  9610. height: math.unit(3, "feet"),
  9611. weight: math.unit(28, "lbs"),
  9612. name: "Front",
  9613. image: {
  9614. source: "./media/characters/citrine/front.svg"
  9615. }
  9616. }
  9617. },
  9618. [
  9619. {
  9620. name: "Normal",
  9621. height: math.unit(3, "feet"),
  9622. default: true
  9623. }
  9624. ]
  9625. ))
  9626. characterMakers.push(() => makeCharacter(
  9627. { name: "Aura Starwind", species: ["fox"], tags: ["anthro", "taur"] },
  9628. {
  9629. front: {
  9630. height: math.unit(14, "feet"),
  9631. weight: math.unit(1450, "kg"),
  9632. preyCapacity: math.unit(15, "people"),
  9633. name: "Front",
  9634. image: {
  9635. source: "./media/characters/aura-starwind/front.svg",
  9636. extra: 1440/1327,
  9637. bottom: 11/1451
  9638. }
  9639. },
  9640. side: {
  9641. height: math.unit(14, "feet"),
  9642. weight: math.unit(1450, "kg"),
  9643. preyCapacity: math.unit(15, "people"),
  9644. name: "Side",
  9645. image: {
  9646. source: "./media/characters/aura-starwind/side.svg",
  9647. extra: 1654 / 1497
  9648. }
  9649. },
  9650. taur: {
  9651. height: math.unit(18, "feet"),
  9652. weight: math.unit(5500, "kg"),
  9653. preyCapacity: math.unit(50, "people"),
  9654. name: "Taur",
  9655. image: {
  9656. source: "./media/characters/aura-starwind/taur.svg",
  9657. extra: 1760 / 1650
  9658. }
  9659. },
  9660. feral: {
  9661. height: math.unit(46, "feet"),
  9662. weight: math.unit(25000, "kg"),
  9663. preyCapacity: math.unit(120, "people"),
  9664. name: "Feral",
  9665. image: {
  9666. source: "./media/characters/aura-starwind/feral.svg"
  9667. }
  9668. },
  9669. },
  9670. [
  9671. {
  9672. name: "Normal",
  9673. height: math.unit(14, "feet"),
  9674. default: true
  9675. },
  9676. {
  9677. name: "Macro",
  9678. height: math.unit(50, "meters")
  9679. },
  9680. {
  9681. name: "Megamacro",
  9682. height: math.unit(5000, "meters")
  9683. },
  9684. {
  9685. name: "Gigamacro",
  9686. height: math.unit(100000, "kilometers")
  9687. },
  9688. ]
  9689. ))
  9690. characterMakers.push(() => makeCharacter(
  9691. { name: "Rivet", species: ["kobold"], tags: ["anthro"] },
  9692. {
  9693. front: {
  9694. height: math.unit(2 + 7 / 12, "feet"),
  9695. weight: math.unit(32, "lbs"),
  9696. name: "Front",
  9697. image: {
  9698. source: "./media/characters/rivet/front.svg",
  9699. extra: 1716 / 1658,
  9700. bottom: 0.03
  9701. }
  9702. },
  9703. foot: {
  9704. height: math.unit(0.551, "feet"),
  9705. name: "Rivet's Foot",
  9706. image: {
  9707. source: "./media/characters/rivet/foot.svg"
  9708. },
  9709. rename: true
  9710. }
  9711. },
  9712. [
  9713. {
  9714. name: "Micro",
  9715. height: math.unit(1.5, "inches"),
  9716. },
  9717. {
  9718. name: "Normal",
  9719. height: math.unit(2 + 7 / 12, "feet"),
  9720. default: true
  9721. },
  9722. {
  9723. name: "Macro",
  9724. height: math.unit(85, "feet")
  9725. },
  9726. {
  9727. name: "Megamacro",
  9728. height: math.unit(2.2, "km")
  9729. }
  9730. ]
  9731. ))
  9732. characterMakers.push(() => makeCharacter(
  9733. { name: "Coffee", species: ["dog"], tags: ["anthro"] },
  9734. {
  9735. front: {
  9736. height: math.unit(5 + 9 / 12, "feet"),
  9737. weight: math.unit(150, "lbs"),
  9738. name: "Front",
  9739. image: {
  9740. source: "./media/characters/coffee/front.svg",
  9741. extra: 946/880,
  9742. bottom: 66/1012
  9743. }
  9744. },
  9745. foot: {
  9746. height: math.unit(1.29, "feet"),
  9747. name: "Foot",
  9748. image: {
  9749. source: "./media/characters/coffee/foot.svg"
  9750. }
  9751. },
  9752. },
  9753. [
  9754. {
  9755. name: "Micro",
  9756. height: math.unit(2, "inches"),
  9757. },
  9758. {
  9759. name: "Normal",
  9760. height: math.unit(5 + 9 / 12, "feet"),
  9761. default: true
  9762. },
  9763. {
  9764. name: "Macro",
  9765. height: math.unit(800, "feet")
  9766. },
  9767. {
  9768. name: "Megamacro",
  9769. height: math.unit(25, "miles")
  9770. }
  9771. ]
  9772. ))
  9773. characterMakers.push(() => makeCharacter(
  9774. { name: "Chari-Gal", species: ["charizard"], tags: ["anthro"] },
  9775. {
  9776. front: {
  9777. height: math.unit(6, "feet"),
  9778. weight: math.unit(200, "lbs"),
  9779. name: "Front",
  9780. image: {
  9781. source: "./media/characters/chari-gal/front.svg",
  9782. extra: 735/649,
  9783. bottom: 55/790
  9784. },
  9785. form: "normal",
  9786. default: true
  9787. },
  9788. back: {
  9789. height: math.unit(6, "feet"),
  9790. weight: math.unit(200, "lb"),
  9791. name: "Back",
  9792. image: {
  9793. source: "./media/characters/chari-gal/back.svg",
  9794. extra: 762/666,
  9795. bottom: 31/793
  9796. },
  9797. form: "normal"
  9798. },
  9799. mouth: {
  9800. height: math.unit(1.35, "feet"),
  9801. name: "Mouth",
  9802. image: {
  9803. source: "./media/characters/chari-gal/mouth.svg"
  9804. },
  9805. form: "normal"
  9806. },
  9807. gigantamax: {
  9808. height: math.unit(6 * 16, "feet"),
  9809. weight: math.unit(200 * 16 * 16 * 16, "lbs"),
  9810. name: "Gigantamax",
  9811. image: {
  9812. source: "./media/characters/chari-gal/gigantamax-front.svg",
  9813. extra: 1507/1149,
  9814. bottom: 254/1761
  9815. },
  9816. form: "gigantamax",
  9817. default: true
  9818. },
  9819. },
  9820. [
  9821. {
  9822. name: "Normal",
  9823. height: math.unit(5 + 7 / 12, "feet"),
  9824. form: "normal",
  9825. },
  9826. {
  9827. name: "Macro",
  9828. height: math.unit(200, "feet"),
  9829. default: true,
  9830. form: "normal"
  9831. },
  9832. {
  9833. name: "Normal",
  9834. height: math.unit(16 * (5 + 7 / 12), "feet"),
  9835. form: "gigantamax",
  9836. },
  9837. {
  9838. name: "Macro",
  9839. height: math.unit(16 * 200, "feet"),
  9840. default: true,
  9841. form: "gigantamax"
  9842. },
  9843. ],
  9844. {
  9845. "normal": {
  9846. name: "Normal",
  9847. default: true
  9848. },
  9849. "gigantamax": {
  9850. name: "Gigantamax",
  9851. },
  9852. }
  9853. ))
  9854. characterMakers.push(() => makeCharacter(
  9855. { name: "Nova", species: ["wolf"], tags: ["anthro"] },
  9856. {
  9857. front: {
  9858. height: math.unit(6, "feet"),
  9859. weight: math.unit(150, "lbs"),
  9860. name: "Front",
  9861. image: {
  9862. source: "./media/characters/nova/front.svg",
  9863. extra: 5000 / 4722,
  9864. bottom: 0.02
  9865. }
  9866. }
  9867. },
  9868. [
  9869. {
  9870. name: "Micro-",
  9871. height: math.unit(0.8, "inches")
  9872. },
  9873. {
  9874. name: "Micro",
  9875. height: math.unit(2, "inches"),
  9876. default: true
  9877. },
  9878. ]
  9879. ))
  9880. characterMakers.push(() => makeCharacter(
  9881. { name: "Argent", species: ["kobold"], tags: ["anthro"] },
  9882. {
  9883. koboldFront: {
  9884. height: math.unit(3 + 1 / 12, "feet"),
  9885. weight: math.unit(21.7, "lbs"),
  9886. name: "Front",
  9887. image: {
  9888. source: "./media/characters/argent/kobold-front.svg",
  9889. extra: 1471 / 1331,
  9890. bottom: 100.8 / 1575.5
  9891. },
  9892. form: "kobold",
  9893. default: true
  9894. },
  9895. dragonFront: {
  9896. height: math.unit(75, "inches"),
  9897. name: "Front",
  9898. image: {
  9899. source: "./media/characters/argent/dragon-front.svg",
  9900. extra: 1389/1248,
  9901. bottom: 54/1443
  9902. },
  9903. form: "dragon",
  9904. },
  9905. dragonBack: {
  9906. height: math.unit(75, "inches"),
  9907. name: "Back",
  9908. image: {
  9909. source: "./media/characters/argent/dragon-back.svg",
  9910. extra: 1399/1271,
  9911. bottom: 23/1422
  9912. },
  9913. form: "dragon",
  9914. },
  9915. dragonDressed: {
  9916. height: math.unit(75, "inches"),
  9917. name: "Dressed",
  9918. image: {
  9919. source: "./media/characters/argent/dragon-dressed.svg",
  9920. extra: 1350/1215,
  9921. bottom: 26/1376
  9922. },
  9923. form: "dragon"
  9924. },
  9925. dragonHead: {
  9926. height: math.unit(23.5, "inches"),
  9927. name: "Head",
  9928. image: {
  9929. source: "./media/characters/argent/dragon-head.svg"
  9930. },
  9931. form: "dragon",
  9932. },
  9933. },
  9934. [
  9935. {
  9936. name: "Micro",
  9937. height: math.unit(2, "inches"),
  9938. form: "kobold",
  9939. },
  9940. {
  9941. name: "Normal",
  9942. height: math.unit(3 + 1 / 12, "feet"),
  9943. form: "kobold",
  9944. default: true
  9945. },
  9946. {
  9947. name: "Macro",
  9948. height: math.unit(120, "feet"),
  9949. form: "kobold",
  9950. },
  9951. {
  9952. name: "Speck",
  9953. height: math.unit(1, "mm"),
  9954. form: "dragon",
  9955. },
  9956. {
  9957. name: "Tiny",
  9958. height: math.unit(1, "cm"),
  9959. form: "dragon",
  9960. },
  9961. {
  9962. name: "Micro",
  9963. height: math.unit(5, "cm"),
  9964. form: "dragon",
  9965. },
  9966. {
  9967. name: "Normal",
  9968. height: math.unit(75, "inches"),
  9969. form: "dragon",
  9970. default: true
  9971. },
  9972. {
  9973. name: "Extra Tall",
  9974. height: math.unit(9, "feet"),
  9975. form: "dragon",
  9976. },
  9977. {
  9978. name: "Inconvenient",
  9979. height: math.unit(5, "meters"),
  9980. form: "dragon",
  9981. },
  9982. {
  9983. name: "Macro",
  9984. height: math.unit(70, "meters"),
  9985. form: "dragon",
  9986. },
  9987. {
  9988. name: "Macro+",
  9989. height: math.unit(250, "meters"),
  9990. form: "dragon",
  9991. },
  9992. {
  9993. name: "Megamacro",
  9994. height: math.unit(20, "km"),
  9995. form: "dragon",
  9996. },
  9997. {
  9998. name: "Mountainous",
  9999. height: math.unit(100, "km"),
  10000. form: "dragon",
  10001. },
  10002. {
  10003. name: "Continental",
  10004. height: math.unit(2, "megameters"),
  10005. form: "dragon",
  10006. },
  10007. {
  10008. name: "Too Big",
  10009. height: math.unit(900, "megameters"),
  10010. form: "dragon",
  10011. },
  10012. ],
  10013. {
  10014. "kobold": {
  10015. name: "Kobold",
  10016. default: true
  10017. },
  10018. "dragon": {
  10019. name: "Dragon",
  10020. },
  10021. }
  10022. ))
  10023. characterMakers.push(() => makeCharacter(
  10024. { name: "Mira al-Cul", species: ["snake"], tags: ["naga"] },
  10025. {
  10026. lamp: {
  10027. height: math.unit(7 * 1559 / 989, "feet"),
  10028. name: "Magic Lamp",
  10029. image: {
  10030. source: "./media/characters/mira-al-cul/lamp.svg",
  10031. extra: 1617 / 1559
  10032. }
  10033. },
  10034. front: {
  10035. height: math.unit(7, "feet"),
  10036. name: "Front",
  10037. image: {
  10038. source: "./media/characters/mira-al-cul/front.svg",
  10039. extra: 1044 / 990
  10040. }
  10041. },
  10042. },
  10043. [
  10044. {
  10045. name: "Heavily Restricted",
  10046. height: math.unit(7 * 1559 / 989, "feet")
  10047. },
  10048. {
  10049. name: "Freshly Freed",
  10050. height: math.unit(50 * 1559 / 989, "feet")
  10051. },
  10052. {
  10053. name: "World Encompassing",
  10054. height: math.unit(10000 * 1559 / 989, "miles")
  10055. },
  10056. {
  10057. name: "Galactic",
  10058. height: math.unit(1.433 * 1559 / 989, "zettameters")
  10059. },
  10060. {
  10061. name: "Palmed Universe",
  10062. height: math.unit(6000 * 1559 / 989, "yottameters"),
  10063. default: true
  10064. },
  10065. {
  10066. name: "Multiversal Matriarch",
  10067. height: math.unit(8.87e10, "yottameters")
  10068. },
  10069. {
  10070. name: "Void Mother",
  10071. height: math.unit(3.14e110, "yottaparsecs")
  10072. },
  10073. {
  10074. name: "Toying with Transcendence",
  10075. height: math.unit(1e307, "meters")
  10076. },
  10077. ]
  10078. ))
  10079. characterMakers.push(() => makeCharacter(
  10080. { name: "Kuro-shi Uchū", species: ["lugia"], tags: ["feral"] },
  10081. {
  10082. front: {
  10083. height: math.unit(17 + 1 / 12, "feet"),
  10084. weight: math.unit(476.2 * 5, "lbs"),
  10085. name: "Front",
  10086. image: {
  10087. source: "./media/characters/kuro-shi-uchū/front.svg",
  10088. extra: 2329 / 1835,
  10089. bottom: 0.02
  10090. }
  10091. },
  10092. },
  10093. [
  10094. {
  10095. name: "Micro",
  10096. height: math.unit(2, "inches")
  10097. },
  10098. {
  10099. name: "Normal",
  10100. height: math.unit(12, "meters")
  10101. },
  10102. {
  10103. name: "Planetary",
  10104. height: math.unit(0.00929, "AU"),
  10105. default: true
  10106. },
  10107. {
  10108. name: "Universal",
  10109. height: math.unit(20, "gigaparsecs")
  10110. },
  10111. ]
  10112. ))
  10113. characterMakers.push(() => makeCharacter(
  10114. { name: "Katherine", species: ["fox"], tags: ["anthro"] },
  10115. {
  10116. front: {
  10117. height: math.unit(5 + 2 / 12, "feet"),
  10118. weight: math.unit(120, "lbs"),
  10119. name: "Front",
  10120. image: {
  10121. source: "./media/characters/katherine/front.svg",
  10122. extra: 2075 / 1969
  10123. }
  10124. },
  10125. dress: {
  10126. height: math.unit(5 + 2 / 12, "feet"),
  10127. weight: math.unit(120, "lbs"),
  10128. name: "Dress",
  10129. image: {
  10130. source: "./media/characters/katherine/dress.svg",
  10131. extra: 2258 / 2064
  10132. }
  10133. },
  10134. },
  10135. [
  10136. {
  10137. name: "Micro",
  10138. height: math.unit(1, "inches"),
  10139. default: true
  10140. },
  10141. {
  10142. name: "Normal",
  10143. height: math.unit(5 + 2 / 12, "feet")
  10144. },
  10145. {
  10146. name: "Macro",
  10147. height: math.unit(100, "meters")
  10148. },
  10149. {
  10150. name: "Megamacro",
  10151. height: math.unit(80, "miles")
  10152. },
  10153. ]
  10154. ))
  10155. characterMakers.push(() => makeCharacter(
  10156. { name: "Yevis", species: ["cerberus"], tags: ["anthro"] },
  10157. {
  10158. front: {
  10159. height: math.unit(7 + 8 / 12, "feet"),
  10160. weight: math.unit(250, "lbs"),
  10161. name: "Front",
  10162. image: {
  10163. source: "./media/characters/yevis/front.svg",
  10164. extra: 1938 / 1755
  10165. }
  10166. }
  10167. },
  10168. [
  10169. {
  10170. name: "Mortal",
  10171. height: math.unit(7 + 8 / 12, "feet")
  10172. },
  10173. {
  10174. name: "Battle",
  10175. height: math.unit(25 + 11 / 12, "feet")
  10176. },
  10177. {
  10178. name: "Wrath",
  10179. height: math.unit(1654 + 11 / 12, "feet")
  10180. },
  10181. {
  10182. name: "Planet Destroyer",
  10183. height: math.unit(12000, "miles")
  10184. },
  10185. {
  10186. name: "Galaxy Conqueror",
  10187. height: math.unit(1.45, "zettameters"),
  10188. default: true
  10189. },
  10190. {
  10191. name: "Universal War",
  10192. height: math.unit(184, "gigaparsecs")
  10193. },
  10194. {
  10195. name: "Eternity War",
  10196. height: math.unit(1.98e55, "yottaparsecs")
  10197. },
  10198. ]
  10199. ))
  10200. characterMakers.push(() => makeCharacter(
  10201. { name: "Xavier", species: ["fox"], tags: ["anthro"] },
  10202. {
  10203. front: {
  10204. height: math.unit(5 + 8 / 12, "feet"),
  10205. weight: math.unit(63, "kg"),
  10206. name: "Front",
  10207. image: {
  10208. source: "./media/characters/xavier/front.svg",
  10209. extra: 944 / 883
  10210. }
  10211. },
  10212. frontStretch: {
  10213. height: math.unit(5 + 8 / 12, "feet"),
  10214. weight: math.unit(63, "kg"),
  10215. name: "Stretching",
  10216. image: {
  10217. source: "./media/characters/xavier/front-stretch.svg",
  10218. extra: 962 / 820
  10219. }
  10220. },
  10221. },
  10222. [
  10223. {
  10224. name: "Normal",
  10225. height: math.unit(5 + 8 / 12, "feet")
  10226. },
  10227. {
  10228. name: "Macro",
  10229. height: math.unit(100, "meters"),
  10230. default: true
  10231. },
  10232. {
  10233. name: "McLargeHuge",
  10234. height: math.unit(10, "miles")
  10235. },
  10236. ]
  10237. ))
  10238. characterMakers.push(() => makeCharacter(
  10239. { name: "Joshii", species: ["cat", "rabbit", "demon"], tags: ["anthro"] },
  10240. {
  10241. front: {
  10242. height: math.unit(5 + 5 / 12, "feet"),
  10243. weight: math.unit(150, "lb"),
  10244. name: "Front",
  10245. image: {
  10246. source: "./media/characters/joshii/front.svg",
  10247. extra: 765 / 653,
  10248. bottom: 51 / 816
  10249. }
  10250. },
  10251. foot: {
  10252. height: math.unit((5 + 5 / 12) * 0.1676, "feet"),
  10253. name: "Foot",
  10254. image: {
  10255. source: "./media/characters/joshii/foot.svg"
  10256. }
  10257. },
  10258. },
  10259. [
  10260. {
  10261. name: "Micro",
  10262. height: math.unit(2, "inches")
  10263. },
  10264. {
  10265. name: "Normal",
  10266. height: math.unit(5 + 5 / 12, "feet")
  10267. },
  10268. {
  10269. name: "Macro",
  10270. height: math.unit(785, "feet"),
  10271. default: true
  10272. },
  10273. {
  10274. name: "Megamacro",
  10275. height: math.unit(24.5, "miles")
  10276. },
  10277. ]
  10278. ))
  10279. characterMakers.push(() => makeCharacter(
  10280. { name: "Goddess Elizabeth", species: ["wolf", "deity"], tags: ["anthro"] },
  10281. {
  10282. front: {
  10283. height: math.unit(6, "feet"),
  10284. weight: math.unit(150, "lb"),
  10285. name: "Front",
  10286. image: {
  10287. source: "./media/characters/goddess-elizabeth/front.svg",
  10288. extra: 1800 / 1525,
  10289. bottom: 0.005
  10290. }
  10291. },
  10292. foot: {
  10293. height: math.unit(6 * 0.25436 * 1800 / 1525 / 2, "feet"),
  10294. name: "Foot",
  10295. image: {
  10296. source: "./media/characters/goddess-elizabeth/foot.svg"
  10297. }
  10298. },
  10299. mouth: {
  10300. height: math.unit(6, "feet"),
  10301. name: "Mouth",
  10302. image: {
  10303. source: "./media/characters/goddess-elizabeth/mouth.svg"
  10304. }
  10305. },
  10306. },
  10307. [
  10308. {
  10309. name: "Micro",
  10310. height: math.unit(12, "feet")
  10311. },
  10312. {
  10313. name: "Normal",
  10314. height: math.unit(80, "miles"),
  10315. default: true
  10316. },
  10317. {
  10318. name: "Macro",
  10319. height: math.unit(15000, "parsecs")
  10320. },
  10321. ]
  10322. ))
  10323. characterMakers.push(() => makeCharacter(
  10324. { name: "Kara", species: ["wolf"], tags: ["anthro"] },
  10325. {
  10326. front: {
  10327. height: math.unit(5 + 9 / 12, "feet"),
  10328. weight: math.unit(144, "lb"),
  10329. name: "Front",
  10330. image: {
  10331. source: "./media/characters/kara/front.svg"
  10332. }
  10333. },
  10334. feet: {
  10335. height: math.unit(6 / 6.765, "feet"),
  10336. name: "Kara's Feet",
  10337. rename: true,
  10338. image: {
  10339. source: "./media/characters/kara/feet.svg"
  10340. }
  10341. },
  10342. },
  10343. [
  10344. {
  10345. name: "Normal",
  10346. height: math.unit(5 + 9 / 12, "feet")
  10347. },
  10348. {
  10349. name: "Macro",
  10350. height: math.unit(174, "feet"),
  10351. default: true
  10352. },
  10353. ]
  10354. ))
  10355. characterMakers.push(() => makeCharacter(
  10356. { name: "Tyrone", species: ["tyrantrum"], tags: ["anthro"] },
  10357. {
  10358. front: {
  10359. height: math.unit(18, "feet"),
  10360. weight: math.unit(4050, "lb"),
  10361. name: "Front",
  10362. image: {
  10363. source: "./media/characters/tyrone/front.svg",
  10364. extra: 2405 / 2270,
  10365. bottom: 182 / 2587
  10366. }
  10367. },
  10368. },
  10369. [
  10370. {
  10371. name: "Normal",
  10372. height: math.unit(18, "feet"),
  10373. default: true
  10374. },
  10375. {
  10376. name: "Macro",
  10377. height: math.unit(300, "feet")
  10378. },
  10379. {
  10380. name: "Megamacro",
  10381. height: math.unit(15, "km")
  10382. },
  10383. {
  10384. name: "Gigamacro",
  10385. height: math.unit(500, "km")
  10386. },
  10387. {
  10388. name: "Teramacro",
  10389. height: math.unit(0.5, "gigameters")
  10390. },
  10391. {
  10392. name: "Omnimacro",
  10393. height: math.unit(1e252, "yottauniverse")
  10394. },
  10395. ]
  10396. ))
  10397. characterMakers.push(() => makeCharacter(
  10398. { name: "Danny", species: ["gryphon"], tags: ["anthro"] },
  10399. {
  10400. front: {
  10401. height: math.unit(7 + 8 / 12, "feet"),
  10402. weight: math.unit(120, "lb"),
  10403. name: "Front",
  10404. image: {
  10405. source: "./media/characters/danny/front.svg",
  10406. extra: 1490 / 1350
  10407. }
  10408. },
  10409. back: {
  10410. height: math.unit(7 + 8 / 12, "feet"),
  10411. weight: math.unit(120, "lb"),
  10412. name: "Back",
  10413. image: {
  10414. source: "./media/characters/danny/back.svg",
  10415. extra: 1490 / 1350
  10416. }
  10417. },
  10418. },
  10419. [
  10420. {
  10421. name: "Normal",
  10422. height: math.unit(7 + 8 / 12, "feet"),
  10423. default: true
  10424. },
  10425. ]
  10426. ))
  10427. characterMakers.push(() => makeCharacter(
  10428. { name: "Mallow", species: ["mouse"], tags: ["anthro"] },
  10429. {
  10430. front: {
  10431. height: math.unit(3.5, "inches"),
  10432. weight: math.unit(19, "grams"),
  10433. name: "Front",
  10434. image: {
  10435. source: "./media/characters/mallow/front.svg",
  10436. extra: 471 / 431
  10437. }
  10438. },
  10439. back: {
  10440. height: math.unit(3.5, "inches"),
  10441. weight: math.unit(19, "grams"),
  10442. name: "Back",
  10443. image: {
  10444. source: "./media/characters/mallow/back.svg",
  10445. extra: 471 / 431
  10446. }
  10447. },
  10448. },
  10449. [
  10450. {
  10451. name: "Normal",
  10452. height: math.unit(3.5, "inches"),
  10453. default: true
  10454. },
  10455. ]
  10456. ))
  10457. characterMakers.push(() => makeCharacter(
  10458. { name: "Starry Aqua", species: ["fennec-fox"], tags: ["anthro"] },
  10459. {
  10460. front: {
  10461. height: math.unit(9, "feet"),
  10462. weight: math.unit(230, "kg"),
  10463. name: "Front",
  10464. image: {
  10465. source: "./media/characters/starry-aqua/front.svg"
  10466. }
  10467. },
  10468. back: {
  10469. height: math.unit(9, "feet"),
  10470. weight: math.unit(230, "kg"),
  10471. name: "Back",
  10472. image: {
  10473. source: "./media/characters/starry-aqua/back.svg"
  10474. }
  10475. },
  10476. hand: {
  10477. height: math.unit(9 * 0.1168, "feet"),
  10478. name: "Hand",
  10479. image: {
  10480. source: "./media/characters/starry-aqua/hand.svg"
  10481. }
  10482. },
  10483. foot: {
  10484. height: math.unit(9 * 0.18, "feet"),
  10485. name: "Foot",
  10486. image: {
  10487. source: "./media/characters/starry-aqua/foot.svg"
  10488. }
  10489. }
  10490. },
  10491. [
  10492. {
  10493. name: "Micro",
  10494. height: math.unit(3, "inches")
  10495. },
  10496. {
  10497. name: "Normal",
  10498. height: math.unit(9, "feet")
  10499. },
  10500. {
  10501. name: "Macro",
  10502. height: math.unit(300, "feet"),
  10503. default: true
  10504. },
  10505. {
  10506. name: "Megamacro",
  10507. height: math.unit(3200, "feet")
  10508. }
  10509. ]
  10510. ))
  10511. characterMakers.push(() => makeCharacter(
  10512. { name: "Luka Towers", species: ["kangaroo"], tags: ["anthro"] },
  10513. {
  10514. front: {
  10515. height: math.unit(15, "feet"),
  10516. weight: math.unit(5026, "lb"),
  10517. name: "Front",
  10518. image: {
  10519. source: "./media/characters/luka-towers/front.svg",
  10520. extra: 1269/1133,
  10521. bottom: 51/1320
  10522. }
  10523. },
  10524. },
  10525. [
  10526. {
  10527. name: "Normal",
  10528. height: math.unit(15, "feet"),
  10529. default: true
  10530. },
  10531. {
  10532. name: "Minimacro",
  10533. height: math.unit(25, "feet")
  10534. },
  10535. {
  10536. name: "Macro",
  10537. height: math.unit(320, "feet")
  10538. },
  10539. {
  10540. name: "Megamacro",
  10541. height: math.unit(35000, "feet")
  10542. },
  10543. {
  10544. name: "Gigamacro",
  10545. height: math.unit(4000, "miles")
  10546. },
  10547. {
  10548. name: "Teramacro",
  10549. height: math.unit(15000, "miles")
  10550. },
  10551. ]
  10552. ))
  10553. characterMakers.push(() => makeCharacter(
  10554. { name: "Natalie Nightring", species: ["lemur"], tags: ["anthro"] },
  10555. {
  10556. front: {
  10557. height: math.unit(6, "feet"),
  10558. weight: math.unit(150, "lb"),
  10559. name: "Front",
  10560. image: {
  10561. source: "./media/characters/natalie-nightring/front.svg",
  10562. extra: 1,
  10563. bottom: 0.06
  10564. }
  10565. },
  10566. },
  10567. [
  10568. {
  10569. name: "Uh Oh",
  10570. height: math.unit(0.1, "mm")
  10571. },
  10572. {
  10573. name: "Small",
  10574. height: math.unit(3, "inches")
  10575. },
  10576. {
  10577. name: "Human Scale",
  10578. height: math.unit(6, "feet")
  10579. },
  10580. {
  10581. name: "Librarian",
  10582. height: math.unit(50, "feet"),
  10583. default: true
  10584. },
  10585. {
  10586. name: "Immense",
  10587. height: math.unit(200, "miles")
  10588. },
  10589. ]
  10590. ))
  10591. characterMakers.push(() => makeCharacter(
  10592. { name: "Danni Rosie", species: ["fox"], tags: ["anthro"] },
  10593. {
  10594. front: {
  10595. height: math.unit(6, "feet"),
  10596. weight: math.unit(180, "lbs"),
  10597. name: "Front",
  10598. image: {
  10599. source: "./media/characters/danni-rosie/front.svg",
  10600. extra: 1260 / 1128,
  10601. bottom: 0.022
  10602. }
  10603. },
  10604. },
  10605. [
  10606. {
  10607. name: "Micro",
  10608. height: math.unit(2, "inches"),
  10609. default: true
  10610. },
  10611. ]
  10612. ))
  10613. characterMakers.push(() => makeCharacter(
  10614. { name: "Samantha Kruse", species: ["human"], tags: ["anthro"] },
  10615. {
  10616. front: {
  10617. height: math.unit(5 + 9 / 12, "feet"),
  10618. weight: math.unit(220, "lb"),
  10619. name: "Front",
  10620. image: {
  10621. source: "./media/characters/samantha-kruse/front.svg",
  10622. extra: (985 / 935),
  10623. bottom: 0.03
  10624. }
  10625. },
  10626. frontUndressed: {
  10627. height: math.unit(5 + 9 / 12, "feet"),
  10628. weight: math.unit(220, "lb"),
  10629. name: "Front (Undressed)",
  10630. image: {
  10631. source: "./media/characters/samantha-kruse/front-undressed.svg",
  10632. extra: (973 / 923),
  10633. bottom: 0.025
  10634. }
  10635. },
  10636. fat: {
  10637. height: math.unit(5 + 9 / 12, "feet"),
  10638. weight: math.unit(900, "lb"),
  10639. name: "Front (Fat)",
  10640. image: {
  10641. source: "./media/characters/samantha-kruse/fat.svg",
  10642. extra: 2688 / 2561
  10643. }
  10644. },
  10645. },
  10646. [
  10647. {
  10648. name: "Normal",
  10649. height: math.unit(5 + 9 / 12, "feet"),
  10650. default: true
  10651. }
  10652. ]
  10653. ))
  10654. characterMakers.push(() => makeCharacter(
  10655. { name: "Amelia Rosie", species: ["human"], tags: ["anthro"] },
  10656. {
  10657. back: {
  10658. height: math.unit(5 + 4 / 12, "feet"),
  10659. weight: math.unit(4963, "lb"),
  10660. name: "Back",
  10661. image: {
  10662. source: "./media/characters/amelia-rosie/back.svg",
  10663. extra: 1113 / 963,
  10664. bottom: 0.01
  10665. }
  10666. },
  10667. },
  10668. [
  10669. {
  10670. name: "Level 0",
  10671. height: math.unit(5 + 4 / 12, "feet")
  10672. },
  10673. {
  10674. name: "Level 1",
  10675. height: math.unit(164597, "feet"),
  10676. default: true
  10677. },
  10678. {
  10679. name: "Level 2",
  10680. height: math.unit(956243, "miles")
  10681. },
  10682. {
  10683. name: "Level 3",
  10684. height: math.unit(29421709423, "miles")
  10685. },
  10686. {
  10687. name: "Level 4",
  10688. height: math.unit(154, "lightyears")
  10689. },
  10690. {
  10691. name: "Level 5",
  10692. height: math.unit(4738272, "lightyears")
  10693. },
  10694. {
  10695. name: "Level 6",
  10696. height: math.unit(145787152896, "lightyears")
  10697. },
  10698. ]
  10699. ))
  10700. characterMakers.push(() => makeCharacter(
  10701. { name: "Rook Kitara", species: ["raskatox"], tags: ["anthro"] },
  10702. {
  10703. front: {
  10704. height: math.unit(5 + 11 / 12, "feet"),
  10705. weight: math.unit(65, "kg"),
  10706. name: "Front",
  10707. image: {
  10708. source: "./media/characters/rook-kitara/front.svg",
  10709. extra: 1347 / 1274,
  10710. bottom: 0.005
  10711. }
  10712. },
  10713. },
  10714. [
  10715. {
  10716. name: "Totally Unfair",
  10717. height: math.unit(1.8, "mm")
  10718. },
  10719. {
  10720. name: "Lap Rookie",
  10721. height: math.unit(1.4, "feet")
  10722. },
  10723. {
  10724. name: "Normal",
  10725. height: math.unit(5 + 11 / 12, "feet"),
  10726. default: true
  10727. },
  10728. {
  10729. name: "How Did This Happen",
  10730. height: math.unit(80, "miles")
  10731. }
  10732. ]
  10733. ))
  10734. characterMakers.push(() => makeCharacter(
  10735. { name: "Pisces", species: ["kelpie"], tags: ["anthro"] },
  10736. {
  10737. front: {
  10738. height: math.unit(7, "feet"),
  10739. weight: math.unit(300, "lb"),
  10740. name: "Front",
  10741. image: {
  10742. source: "./media/characters/pisces/front.svg",
  10743. extra: 2255 / 2115,
  10744. bottom: 0.03
  10745. }
  10746. },
  10747. back: {
  10748. height: math.unit(7, "feet"),
  10749. weight: math.unit(300, "lb"),
  10750. name: "Back",
  10751. image: {
  10752. source: "./media/characters/pisces/back.svg",
  10753. extra: 2146 / 2055,
  10754. bottom: 0.04
  10755. }
  10756. },
  10757. },
  10758. [
  10759. {
  10760. name: "Normal",
  10761. height: math.unit(7, "feet"),
  10762. default: true
  10763. },
  10764. {
  10765. name: "Swimming Pool",
  10766. height: math.unit(12.2, "meters")
  10767. },
  10768. {
  10769. name: "Olympic Swimming Pool",
  10770. height: math.unit(56.3, "meters")
  10771. },
  10772. {
  10773. name: "Lake Superior",
  10774. height: math.unit(93900, "meters")
  10775. },
  10776. {
  10777. name: "Mediterranean Sea",
  10778. height: math.unit(644457, "meters")
  10779. },
  10780. {
  10781. name: "World's Oceans",
  10782. height: math.unit(4567491, "meters")
  10783. },
  10784. ]
  10785. ))
  10786. characterMakers.push(() => makeCharacter(
  10787. { name: "Zelas", species: ["rabbit", "demon"], tags: ["anthro"] },
  10788. {
  10789. front: {
  10790. height: math.unit(2.3, "meters"),
  10791. weight: math.unit(120, "kg"),
  10792. name: "Front",
  10793. image: {
  10794. source: "./media/characters/zelas/front.svg"
  10795. }
  10796. },
  10797. side: {
  10798. height: math.unit(2.3, "meters"),
  10799. weight: math.unit(120, "kg"),
  10800. name: "Side",
  10801. image: {
  10802. source: "./media/characters/zelas/side.svg"
  10803. }
  10804. },
  10805. back: {
  10806. height: math.unit(2.3, "meters"),
  10807. weight: math.unit(120, "kg"),
  10808. name: "Back",
  10809. image: {
  10810. source: "./media/characters/zelas/back.svg"
  10811. }
  10812. },
  10813. foot: {
  10814. height: math.unit(1.116, "feet"),
  10815. name: "Foot",
  10816. image: {
  10817. source: "./media/characters/zelas/foot.svg"
  10818. }
  10819. },
  10820. },
  10821. [
  10822. {
  10823. name: "Normal",
  10824. height: math.unit(2.3, "meters")
  10825. },
  10826. {
  10827. name: "Macro",
  10828. height: math.unit(30, "meters"),
  10829. default: true
  10830. },
  10831. ]
  10832. ))
  10833. characterMakers.push(() => makeCharacter(
  10834. { name: "Talbot", species: ["husky", "labrador"], tags: ["anthro"] },
  10835. {
  10836. front: {
  10837. height: math.unit(1, "inch"),
  10838. weight: math.unit(0.21, "grams"),
  10839. name: "Front",
  10840. image: {
  10841. source: "./media/characters/talbot/front.svg",
  10842. extra: 594 / 544
  10843. }
  10844. },
  10845. },
  10846. [
  10847. {
  10848. name: "Micro",
  10849. height: math.unit(1, "inch"),
  10850. default: true
  10851. },
  10852. ]
  10853. ))
  10854. characterMakers.push(() => makeCharacter(
  10855. { name: "Fliss", species: ["sylveon"], tags: ["feral"] },
  10856. {
  10857. front: {
  10858. height: math.unit(3 + 3 / 12, "feet"),
  10859. weight: math.unit(51.8, "lb"),
  10860. name: "Front",
  10861. image: {
  10862. source: "./media/characters/fliss/front.svg",
  10863. extra: 840 / 640
  10864. }
  10865. },
  10866. },
  10867. [
  10868. {
  10869. name: "Teeny Tiny",
  10870. height: math.unit(1, "mm")
  10871. },
  10872. {
  10873. name: "Small",
  10874. height: math.unit(1, "inch"),
  10875. default: true
  10876. },
  10877. {
  10878. name: "Standard Sylveon",
  10879. height: math.unit(3 + 3 / 12, "feet")
  10880. },
  10881. {
  10882. name: "Large Nuisance",
  10883. height: math.unit(33, "feet")
  10884. },
  10885. {
  10886. name: "City Filler",
  10887. height: math.unit(3000, "feet")
  10888. },
  10889. {
  10890. name: "New Horizon",
  10891. height: math.unit(6000, "miles")
  10892. },
  10893. ]
  10894. ))
  10895. characterMakers.push(() => makeCharacter(
  10896. { name: "Fleta", species: ["lion"], tags: ["anthro"] },
  10897. {
  10898. front: {
  10899. height: math.unit(5, "cm"),
  10900. weight: math.unit(1.94, "g"),
  10901. name: "Front",
  10902. image: {
  10903. source: "./media/characters/fleta/front.svg",
  10904. extra: 835 / 803
  10905. }
  10906. },
  10907. back: {
  10908. height: math.unit(5, "cm"),
  10909. weight: math.unit(1.94, "g"),
  10910. name: "Back",
  10911. image: {
  10912. source: "./media/characters/fleta/back.svg",
  10913. extra: 835 / 803
  10914. }
  10915. },
  10916. },
  10917. [
  10918. {
  10919. name: "Micro",
  10920. height: math.unit(5, "cm"),
  10921. default: true
  10922. },
  10923. ]
  10924. ))
  10925. characterMakers.push(() => makeCharacter(
  10926. { name: "Dominic", species: ["dragon"], tags: ["anthro"] },
  10927. {
  10928. front: {
  10929. height: math.unit(6, "feet"),
  10930. weight: math.unit(225, "lb"),
  10931. name: "Front",
  10932. image: {
  10933. source: "./media/characters/dominic/front.svg",
  10934. extra: 1770 / 1620,
  10935. bottom: 0.025
  10936. }
  10937. },
  10938. back: {
  10939. height: math.unit(6, "feet"),
  10940. weight: math.unit(225, "lb"),
  10941. name: "Back",
  10942. image: {
  10943. source: "./media/characters/dominic/back.svg",
  10944. extra: 1745 / 1620,
  10945. bottom: 0.065
  10946. }
  10947. },
  10948. },
  10949. [
  10950. {
  10951. name: "Nano",
  10952. height: math.unit(0.1, "mm")
  10953. },
  10954. {
  10955. name: "Micro-",
  10956. height: math.unit(1, "mm")
  10957. },
  10958. {
  10959. name: "Micro",
  10960. height: math.unit(4, "inches")
  10961. },
  10962. {
  10963. name: "Normal",
  10964. height: math.unit(6 + 4 / 12, "feet"),
  10965. default: true
  10966. },
  10967. {
  10968. name: "Macro",
  10969. height: math.unit(115, "feet")
  10970. },
  10971. {
  10972. name: "Macro+",
  10973. height: math.unit(955, "feet")
  10974. },
  10975. {
  10976. name: "Megamacro",
  10977. height: math.unit(8990, "feet")
  10978. },
  10979. {
  10980. name: "Gigmacro",
  10981. height: math.unit(9310, "miles")
  10982. },
  10983. {
  10984. name: "Teramacro",
  10985. height: math.unit(1567005010, "miles")
  10986. },
  10987. {
  10988. name: "Examacro",
  10989. height: math.unit(1425, "parsecs")
  10990. },
  10991. ]
  10992. ))
  10993. characterMakers.push(() => makeCharacter(
  10994. { name: "Major Colonel", species: ["polar-bear"], tags: ["anthro"] },
  10995. {
  10996. front: {
  10997. height: math.unit(400, "feet"),
  10998. weight: math.unit(44444444, "lb"),
  10999. name: "Front",
  11000. image: {
  11001. source: "./media/characters/major-colonel/front.svg"
  11002. }
  11003. },
  11004. back: {
  11005. height: math.unit(400, "feet"),
  11006. weight: math.unit(44444444, "lb"),
  11007. name: "Back",
  11008. image: {
  11009. source: "./media/characters/major-colonel/back.svg"
  11010. }
  11011. },
  11012. },
  11013. [
  11014. {
  11015. name: "Macro",
  11016. height: math.unit(400, "feet"),
  11017. default: true
  11018. },
  11019. ]
  11020. ))
  11021. characterMakers.push(() => makeCharacter(
  11022. { name: "Axel Lycan", species: ["cat", "wolf"], tags: ["anthro"] },
  11023. {
  11024. catFront: {
  11025. height: math.unit(6, "feet"),
  11026. weight: math.unit(120, "lb"),
  11027. name: "Front (Cat Side)",
  11028. image: {
  11029. source: "./media/characters/axel-lycan/cat-front.svg",
  11030. extra: 430 / 402,
  11031. bottom: 43 / 472.35
  11032. }
  11033. },
  11034. catBack: {
  11035. height: math.unit(6, "feet"),
  11036. weight: math.unit(120, "lb"),
  11037. name: "Back (Cat Side)",
  11038. image: {
  11039. source: "./media/characters/axel-lycan/cat-back.svg",
  11040. extra: 447 / 419,
  11041. bottom: 23.3 / 469
  11042. }
  11043. },
  11044. wolfFront: {
  11045. height: math.unit(6, "feet"),
  11046. weight: math.unit(120, "lb"),
  11047. name: "Front (Wolf Side)",
  11048. image: {
  11049. source: "./media/characters/axel-lycan/wolf-front.svg",
  11050. extra: 485 / 456,
  11051. bottom: 19 / 504
  11052. }
  11053. },
  11054. wolfBack: {
  11055. height: math.unit(6, "feet"),
  11056. weight: math.unit(120, "lb"),
  11057. name: "Back (Wolf Side)",
  11058. image: {
  11059. source: "./media/characters/axel-lycan/wolf-back.svg",
  11060. extra: 475 / 438,
  11061. bottom: 39.2 / 514
  11062. }
  11063. },
  11064. },
  11065. [
  11066. {
  11067. name: "Macro",
  11068. height: math.unit(1, "km"),
  11069. default: true
  11070. },
  11071. ]
  11072. ))
  11073. characterMakers.push(() => makeCharacter(
  11074. { name: "Vanrel (Hyena)", species: ["hyena"], tags: ["anthro"] },
  11075. {
  11076. front: {
  11077. height: math.unit(5 + 9 / 12, "feet"),
  11078. weight: math.unit(175, "lb"),
  11079. name: "Front",
  11080. image: {
  11081. source: "./media/characters/vanrel-hyena/front.svg",
  11082. extra: 1086 / 1010,
  11083. bottom: 0.04
  11084. }
  11085. },
  11086. },
  11087. [
  11088. {
  11089. name: "Normal",
  11090. height: math.unit(5 + 9 / 12, "feet"),
  11091. default: true
  11092. },
  11093. ]
  11094. ))
  11095. characterMakers.push(() => makeCharacter(
  11096. { name: "Abbott Absol", species: ["absol"], tags: ["anthro"] },
  11097. {
  11098. front: {
  11099. height: math.unit(6, "feet"),
  11100. weight: math.unit(103, "lb"),
  11101. name: "Front",
  11102. image: {
  11103. source: "./media/characters/abbott-absol/front.svg",
  11104. extra: 765/694,
  11105. bottom: 47/812
  11106. }
  11107. },
  11108. },
  11109. [
  11110. {
  11111. name: "Megamicro",
  11112. height: math.unit(0.1, "mm")
  11113. },
  11114. {
  11115. name: "Micro",
  11116. height: math.unit(1, "inch")
  11117. },
  11118. {
  11119. name: "Normal",
  11120. height: math.unit(6, "feet"),
  11121. default: true
  11122. },
  11123. ]
  11124. ))
  11125. characterMakers.push(() => makeCharacter(
  11126. { name: "Hector", species: ["werewolf"], tags: ["anthro"] },
  11127. {
  11128. front: {
  11129. height: math.unit(6, "feet"),
  11130. weight: math.unit(264, "lb"),
  11131. name: "Front",
  11132. image: {
  11133. source: "./media/characters/hector/front.svg",
  11134. extra: 2280 / 2130,
  11135. bottom: 0.07
  11136. }
  11137. },
  11138. },
  11139. [
  11140. {
  11141. name: "Normal",
  11142. height: math.unit(12.25, "foot"),
  11143. default: true
  11144. },
  11145. {
  11146. name: "Macro",
  11147. height: math.unit(160, "feet")
  11148. },
  11149. ]
  11150. ))
  11151. characterMakers.push(() => makeCharacter(
  11152. { name: "Sal", species: ["deer"], tags: ["anthro"] },
  11153. {
  11154. front: {
  11155. height: math.unit(6, "feet"),
  11156. weight: math.unit(150, "lb"),
  11157. name: "Front",
  11158. image: {
  11159. source: "./media/characters/sal/front.svg",
  11160. extra: 1846 / 1699,
  11161. bottom: 0.04
  11162. }
  11163. },
  11164. },
  11165. [
  11166. {
  11167. name: "Megamacro",
  11168. height: math.unit(10, "miles"),
  11169. default: true
  11170. },
  11171. ]
  11172. ))
  11173. characterMakers.push(() => makeCharacter(
  11174. { name: "Ranger", species: ["dragon"], tags: ["feral"] },
  11175. {
  11176. front: {
  11177. height: math.unit(3, "meters"),
  11178. weight: math.unit(450, "kg"),
  11179. name: "front",
  11180. image: {
  11181. source: "./media/characters/ranger/front.svg",
  11182. extra: 2401 / 2243,
  11183. bottom: 0.05
  11184. }
  11185. },
  11186. },
  11187. [
  11188. {
  11189. name: "Normal",
  11190. height: math.unit(3, "meters"),
  11191. default: true
  11192. },
  11193. ]
  11194. ))
  11195. characterMakers.push(() => makeCharacter(
  11196. { name: "Theresa", species: ["sergal"], tags: ["anthro"] },
  11197. {
  11198. front: {
  11199. height: math.unit(14, "feet"),
  11200. weight: math.unit(800, "kg"),
  11201. name: "Front",
  11202. image: {
  11203. source: "./media/characters/theresa/front.svg",
  11204. extra: 3575 / 3346,
  11205. bottom: 0.03
  11206. }
  11207. },
  11208. },
  11209. [
  11210. {
  11211. name: "Normal",
  11212. height: math.unit(14, "feet"),
  11213. default: true
  11214. },
  11215. ]
  11216. ))
  11217. characterMakers.push(() => makeCharacter(
  11218. { name: "Ine", species: ["wolver"], tags: ["feral"] },
  11219. {
  11220. front: {
  11221. height: math.unit(6, "feet"),
  11222. weight: math.unit(3, "kg"),
  11223. name: "Front",
  11224. image: {
  11225. source: "./media/characters/ine/front.svg",
  11226. extra: 678 / 539,
  11227. bottom: 0.023
  11228. }
  11229. },
  11230. },
  11231. [
  11232. {
  11233. name: "Normal",
  11234. height: math.unit(2.265, "feet"),
  11235. default: true
  11236. },
  11237. ]
  11238. ))
  11239. characterMakers.push(() => makeCharacter(
  11240. { name: "Vial", species: ["crux"], tags: ["anthro"] },
  11241. {
  11242. front: {
  11243. height: math.unit(5, "feet"),
  11244. weight: math.unit(30, "kg"),
  11245. name: "Front",
  11246. image: {
  11247. source: "./media/characters/vial/front.svg",
  11248. extra: 1365 / 1277,
  11249. bottom: 0.04
  11250. }
  11251. },
  11252. },
  11253. [
  11254. {
  11255. name: "Normal",
  11256. height: math.unit(5, "feet"),
  11257. default: true
  11258. },
  11259. ]
  11260. ))
  11261. characterMakers.push(() => makeCharacter(
  11262. { name: "Rovoska", species: ["gryphon"], tags: ["feral"] },
  11263. {
  11264. side: {
  11265. height: math.unit(3.4, "meters"),
  11266. weight: math.unit(1000, "lb"),
  11267. name: "Side",
  11268. image: {
  11269. source: "./media/characters/rovoska/side.svg",
  11270. extra: 4403 / 1515
  11271. }
  11272. },
  11273. },
  11274. [
  11275. {
  11276. name: "Normal",
  11277. height: math.unit(3.4, "meters"),
  11278. default: true
  11279. },
  11280. ]
  11281. ))
  11282. characterMakers.push(() => makeCharacter(
  11283. { name: "Gunner Rotthbauer", species: ["rottweiler"], tags: ["anthro"] },
  11284. {
  11285. front: {
  11286. height: math.unit(8, "feet"),
  11287. weight: math.unit(315, "lb"),
  11288. name: "Front",
  11289. image: {
  11290. source: "./media/characters/gunner-rotthbauer/front.svg"
  11291. }
  11292. },
  11293. back: {
  11294. height: math.unit(8, "feet"),
  11295. weight: math.unit(315, "lb"),
  11296. name: "Back",
  11297. image: {
  11298. source: "./media/characters/gunner-rotthbauer/back.svg"
  11299. }
  11300. },
  11301. },
  11302. [
  11303. {
  11304. name: "Micro",
  11305. height: math.unit(3.5, "inches")
  11306. },
  11307. {
  11308. name: "Normal",
  11309. height: math.unit(8, "feet"),
  11310. default: true
  11311. },
  11312. {
  11313. name: "Macro",
  11314. height: math.unit(250, "feet")
  11315. },
  11316. {
  11317. name: "Megamacro",
  11318. height: math.unit(1, "AU")
  11319. },
  11320. ]
  11321. ))
  11322. characterMakers.push(() => makeCharacter(
  11323. { name: "Allatia", species: ["tiger"], tags: ["anthro"] },
  11324. {
  11325. front: {
  11326. height: math.unit(5 + 5 / 12, "feet"),
  11327. weight: math.unit(140, "lb"),
  11328. name: "Front",
  11329. image: {
  11330. source: "./media/characters/allatia/front.svg",
  11331. extra: 1227 / 1180,
  11332. bottom: 0.027
  11333. }
  11334. },
  11335. },
  11336. [
  11337. {
  11338. name: "Normal",
  11339. height: math.unit(5 + 5 / 12, "feet")
  11340. },
  11341. {
  11342. name: "Macro",
  11343. height: math.unit(250, "feet"),
  11344. default: true
  11345. },
  11346. {
  11347. name: "Megamacro",
  11348. height: math.unit(8, "miles")
  11349. }
  11350. ]
  11351. ))
  11352. characterMakers.push(() => makeCharacter(
  11353. { name: "Tene", species: ["dragon", "fox"], tags: ["anthro"] },
  11354. {
  11355. front: {
  11356. height: math.unit(6, "feet"),
  11357. weight: math.unit(120, "lb"),
  11358. name: "Front",
  11359. image: {
  11360. source: "./media/characters/tene/front.svg",
  11361. extra: 814/750,
  11362. bottom: 36/850
  11363. }
  11364. },
  11365. stomping: {
  11366. height: math.unit(2.025, "meters"),
  11367. weight: math.unit(120, "lb"),
  11368. name: "Stomping",
  11369. image: {
  11370. source: "./media/characters/tene/stomping.svg",
  11371. extra: 885/821,
  11372. bottom: 15/900
  11373. }
  11374. },
  11375. sitting: {
  11376. height: math.unit(1, "meter"),
  11377. weight: math.unit(120, "lb"),
  11378. name: "Sitting",
  11379. image: {
  11380. source: "./media/characters/tene/sitting.svg",
  11381. extra: 396/366,
  11382. bottom: 79/475
  11383. }
  11384. },
  11385. smiling: {
  11386. height: math.unit(1.2, "feet"),
  11387. name: "Smiling",
  11388. image: {
  11389. source: "./media/characters/tene/smiling.svg",
  11390. extra: 1364/1071,
  11391. bottom: 0/1364
  11392. }
  11393. },
  11394. smug: {
  11395. height: math.unit(1.3, "feet"),
  11396. name: "Smug",
  11397. image: {
  11398. source: "./media/characters/tene/smug.svg",
  11399. extra: 1323/1082,
  11400. bottom: 0/1323
  11401. }
  11402. },
  11403. feral: {
  11404. height: math.unit(3.9, "feet"),
  11405. weight: math.unit(250, "lb"),
  11406. name: "Feral",
  11407. image: {
  11408. source: "./media/characters/tene/feral.svg",
  11409. extra: 717 / 458,
  11410. bottom: 0.179
  11411. }
  11412. },
  11413. },
  11414. [
  11415. {
  11416. name: "Normal",
  11417. height: math.unit(6, "feet")
  11418. },
  11419. {
  11420. name: "Macro",
  11421. height: math.unit(300, "feet"),
  11422. default: true
  11423. },
  11424. {
  11425. name: "Megamacro",
  11426. height: math.unit(5, "miles")
  11427. },
  11428. ]
  11429. ))
  11430. characterMakers.push(() => makeCharacter(
  11431. { name: "Evander", species: ["gryphon"], tags: ["feral"] },
  11432. {
  11433. side: {
  11434. height: math.unit(6, "feet"),
  11435. name: "Side",
  11436. image: {
  11437. source: "./media/characters/evander/side.svg",
  11438. extra: 877 / 477
  11439. }
  11440. },
  11441. },
  11442. [
  11443. {
  11444. name: "Normal",
  11445. height: math.unit(0.83, "meters"),
  11446. default: true
  11447. },
  11448. ]
  11449. ))
  11450. characterMakers.push(() => makeCharacter(
  11451. { name: "Ka'Tamra \"Spaz\" Ci'Karan", species: ["dragon"], tags: ["anthro"] },
  11452. {
  11453. front: {
  11454. height: math.unit(12, "feet"),
  11455. weight: math.unit(1000, "lb"),
  11456. name: "Front",
  11457. image: {
  11458. source: "./media/characters/ka'tamra-spaz-ci'karan/front.svg",
  11459. extra: 1762 / 1611
  11460. }
  11461. },
  11462. back: {
  11463. height: math.unit(12, "feet"),
  11464. weight: math.unit(1000, "lb"),
  11465. name: "Back",
  11466. image: {
  11467. source: "./media/characters/ka'tamra-spaz-ci'karan/back.svg",
  11468. extra: 1762 / 1611
  11469. }
  11470. },
  11471. },
  11472. [
  11473. {
  11474. name: "Normal",
  11475. height: math.unit(12, "feet"),
  11476. default: true
  11477. },
  11478. {
  11479. name: "Kaiju",
  11480. height: math.unit(150, "feet")
  11481. },
  11482. ]
  11483. ))
  11484. characterMakers.push(() => makeCharacter(
  11485. { name: "Zero Alurus", species: ["zebra"], tags: ["anthro"] },
  11486. {
  11487. front: {
  11488. height: math.unit(5 + 11/12, "feet"),
  11489. weight: math.unit(180, "lb"),
  11490. name: "Front",
  11491. image: {
  11492. source: "./media/characters/zero-alurus/front.svg",
  11493. extra: 1032/957,
  11494. bottom: 10/1042
  11495. }
  11496. },
  11497. back: {
  11498. height: math.unit(5 + 11/12, "feet"),
  11499. weight: math.unit(180, "lb"),
  11500. name: "Back",
  11501. image: {
  11502. source: "./media/characters/zero-alurus/back.svg",
  11503. extra: 1027/950,
  11504. bottom: 12/1039
  11505. }
  11506. },
  11507. },
  11508. [
  11509. {
  11510. name: "Normal",
  11511. height: math.unit(5 + 11 / 12, "feet")
  11512. },
  11513. {
  11514. name: "Mini-Macro",
  11515. height: math.unit(25, "feet")
  11516. },
  11517. {
  11518. name: "Macro",
  11519. height: math.unit(90, "feet"),
  11520. default: true
  11521. },
  11522. {
  11523. name: "Macro+",
  11524. height: math.unit(500, "feet")
  11525. },
  11526. {
  11527. name: "Megamacro",
  11528. height: math.unit(1200, "feet")
  11529. },
  11530. ]
  11531. ))
  11532. characterMakers.push(() => makeCharacter(
  11533. { name: "Mega Shi", species: ["yoshi"], tags: ["anthro"] },
  11534. {
  11535. front: {
  11536. height: math.unit(6, "feet"),
  11537. weight: math.unit(200, "lb"),
  11538. name: "Front",
  11539. image: {
  11540. source: "./media/characters/mega-shi/front.svg",
  11541. extra: 1279 / 1250,
  11542. bottom: 0.02
  11543. }
  11544. },
  11545. back: {
  11546. height: math.unit(6, "feet"),
  11547. weight: math.unit(200, "lb"),
  11548. name: "Back",
  11549. image: {
  11550. source: "./media/characters/mega-shi/back.svg",
  11551. extra: 1279 / 1250,
  11552. bottom: 0.02
  11553. }
  11554. },
  11555. },
  11556. [
  11557. {
  11558. name: "Micro",
  11559. height: math.unit(16 + 6 / 12, "feet")
  11560. },
  11561. {
  11562. name: "Third Dimension",
  11563. height: math.unit(40, "meters")
  11564. },
  11565. {
  11566. name: "Normal",
  11567. height: math.unit(660, "feet"),
  11568. default: true
  11569. },
  11570. {
  11571. name: "Megamacro",
  11572. height: math.unit(10, "miles")
  11573. },
  11574. {
  11575. name: "Planetary Launch",
  11576. height: math.unit(500, "miles")
  11577. },
  11578. {
  11579. name: "Interstellar",
  11580. height: math.unit(1e9, "miles")
  11581. },
  11582. {
  11583. name: "Leaving the Universe",
  11584. height: math.unit(1, "gigaparsec")
  11585. },
  11586. {
  11587. name: "Travelling Universes",
  11588. height: math.unit(30e15, "parsecs")
  11589. },
  11590. ]
  11591. ))
  11592. characterMakers.push(() => makeCharacter(
  11593. { name: "Odyssey", species: ["lynx"], tags: ["anthro"] },
  11594. {
  11595. front: {
  11596. height: math.unit(5 + 4/12, "feet"),
  11597. weight: math.unit(120, "lb"),
  11598. name: "Front",
  11599. image: {
  11600. source: "./media/characters/odyssey/front.svg",
  11601. extra: 1747/1571,
  11602. bottom: 47/1794
  11603. }
  11604. },
  11605. side: {
  11606. height: math.unit(5.1, "feet"),
  11607. weight: math.unit(120, "lb"),
  11608. name: "Side",
  11609. image: {
  11610. source: "./media/characters/odyssey/side.svg",
  11611. extra: 1847/1619,
  11612. bottom: 47/1894
  11613. }
  11614. },
  11615. lounging: {
  11616. height: math.unit(1.464, "feet"),
  11617. weight: math.unit(120, "lb"),
  11618. name: "Lounging",
  11619. image: {
  11620. source: "./media/characters/odyssey/lounging.svg",
  11621. extra: 1235/837,
  11622. bottom: 551/1786
  11623. }
  11624. },
  11625. },
  11626. [
  11627. {
  11628. name: "Normal",
  11629. height: math.unit(5 + 4 / 12, "feet")
  11630. },
  11631. {
  11632. name: "Macro",
  11633. height: math.unit(1, "km")
  11634. },
  11635. {
  11636. name: "Megamacro",
  11637. height: math.unit(3000, "km")
  11638. },
  11639. {
  11640. name: "Gigamacro",
  11641. height: math.unit(1, "AU"),
  11642. default: true
  11643. },
  11644. {
  11645. name: "Omniversal",
  11646. height: math.unit(100e14, "lightyears")
  11647. },
  11648. ]
  11649. ))
  11650. characterMakers.push(() => makeCharacter(
  11651. { name: "Mekuto", species: ["red-panda", "kitsune"], tags: ["anthro"] },
  11652. {
  11653. front: {
  11654. height: math.unit(5 + 10/12, "feet"),
  11655. name: "Front",
  11656. image: {
  11657. source: "./media/characters/mekuto/front.svg",
  11658. extra: 875/835,
  11659. bottom: 46/921
  11660. }
  11661. },
  11662. },
  11663. [
  11664. {
  11665. name: "Minimicro",
  11666. height: math.unit(0.2, "inches")
  11667. },
  11668. {
  11669. name: "Micro",
  11670. height: math.unit(1.5, "inches")
  11671. },
  11672. {
  11673. name: "Normal",
  11674. height: math.unit(5 + 10 / 12, "feet"),
  11675. default: true
  11676. },
  11677. {
  11678. name: "Minimacro",
  11679. height: math.unit(17 + 9 / 12, "feet")
  11680. },
  11681. {
  11682. name: "Macro",
  11683. height: math.unit(177.5, "feet")
  11684. },
  11685. {
  11686. name: "Megamacro",
  11687. height: math.unit(152, "miles")
  11688. },
  11689. ]
  11690. ))
  11691. characterMakers.push(() => makeCharacter(
  11692. { name: "Dafydd Tomos", species: ["mikromare"], tags: ["anthro"] },
  11693. {
  11694. front: {
  11695. height: math.unit(6.5, "inches"),
  11696. weight: math.unit(13, "oz"),
  11697. name: "Front",
  11698. image: {
  11699. source: "./media/characters/dafydd-tomos/front.svg",
  11700. extra: 2990 / 2603,
  11701. bottom: 0.03
  11702. }
  11703. },
  11704. },
  11705. [
  11706. {
  11707. name: "Micro",
  11708. height: math.unit(6.5, "inches"),
  11709. default: true
  11710. },
  11711. ]
  11712. ))
  11713. characterMakers.push(() => makeCharacter(
  11714. { name: "Splinter", species: ["thylacine"], tags: ["anthro"] },
  11715. {
  11716. front: {
  11717. height: math.unit(6, "feet"),
  11718. weight: math.unit(150, "lb"),
  11719. name: "Front",
  11720. image: {
  11721. source: "./media/characters/splinter/front.svg",
  11722. extra: 2990 / 2882,
  11723. bottom: 0.04
  11724. }
  11725. },
  11726. back: {
  11727. height: math.unit(6, "feet"),
  11728. weight: math.unit(150, "lb"),
  11729. name: "Back",
  11730. image: {
  11731. source: "./media/characters/splinter/back.svg",
  11732. extra: 2990 / 2882,
  11733. bottom: 0.04
  11734. }
  11735. },
  11736. },
  11737. [
  11738. {
  11739. name: "Normal",
  11740. height: math.unit(6, "feet")
  11741. },
  11742. {
  11743. name: "Macro",
  11744. height: math.unit(230, "meters"),
  11745. default: true
  11746. },
  11747. ]
  11748. ))
  11749. characterMakers.push(() => makeCharacter(
  11750. { name: "SnowGabumon", species: ["gabumon"], tags: ["anthro"] },
  11751. {
  11752. front: {
  11753. height: math.unit(4 + 10 / 12, "feet"),
  11754. weight: math.unit(480, "lb"),
  11755. name: "Front",
  11756. image: {
  11757. source: "./media/characters/snow-gabumon/front.svg",
  11758. extra: 1140 / 963,
  11759. bottom: 0.058
  11760. }
  11761. },
  11762. back: {
  11763. height: math.unit(4 + 10 / 12, "feet"),
  11764. weight: math.unit(480, "lb"),
  11765. name: "Back",
  11766. image: {
  11767. source: "./media/characters/snow-gabumon/back.svg",
  11768. extra: 1115 / 962,
  11769. bottom: 0.041
  11770. }
  11771. },
  11772. frontUndresed: {
  11773. height: math.unit(4 + 10 / 12, "feet"),
  11774. weight: math.unit(480, "lb"),
  11775. name: "Front (Undressed)",
  11776. image: {
  11777. source: "./media/characters/snow-gabumon/front-undressed.svg",
  11778. extra: 1061 / 960,
  11779. bottom: 0.045
  11780. }
  11781. },
  11782. },
  11783. [
  11784. {
  11785. name: "Micro",
  11786. height: math.unit(1, "inch")
  11787. },
  11788. {
  11789. name: "Normal",
  11790. height: math.unit(4 + 10 / 12, "feet"),
  11791. default: true
  11792. },
  11793. {
  11794. name: "Macro",
  11795. height: math.unit(200, "feet")
  11796. },
  11797. {
  11798. name: "Megamacro",
  11799. height: math.unit(120, "miles")
  11800. },
  11801. {
  11802. name: "Gigamacro",
  11803. height: math.unit(9800, "miles")
  11804. },
  11805. ]
  11806. ))
  11807. characterMakers.push(() => makeCharacter(
  11808. { name: "Moody", species: ["dog"], tags: ["anthro"] },
  11809. {
  11810. front: {
  11811. height: math.unit(1.7, "meters"),
  11812. weight: math.unit(140, "lb"),
  11813. name: "Front",
  11814. image: {
  11815. source: "./media/characters/moody/front.svg",
  11816. extra: 3226 / 3007,
  11817. bottom: 0.087
  11818. }
  11819. },
  11820. },
  11821. [
  11822. {
  11823. name: "Micro",
  11824. height: math.unit(1, "mm")
  11825. },
  11826. {
  11827. name: "Normal",
  11828. height: math.unit(1.7, "meters"),
  11829. default: true
  11830. },
  11831. {
  11832. name: "Macro",
  11833. height: math.unit(80, "meters")
  11834. },
  11835. {
  11836. name: "Macro+",
  11837. height: math.unit(500, "meters")
  11838. },
  11839. ]
  11840. ))
  11841. characterMakers.push(() => makeCharacter(
  11842. { name: "Zyas", species: ["lion", "tiger"], tags: ["anthro"] },
  11843. {
  11844. front: {
  11845. height: math.unit(6, "feet"),
  11846. weight: math.unit(150, "lb"),
  11847. name: "Front",
  11848. image: {
  11849. source: "./media/characters/zyas/front.svg",
  11850. extra: 1180 / 1120,
  11851. bottom: 0.045
  11852. }
  11853. },
  11854. },
  11855. [
  11856. {
  11857. name: "Normal",
  11858. height: math.unit(10, "feet"),
  11859. default: true
  11860. },
  11861. {
  11862. name: "Macro",
  11863. height: math.unit(500, "feet")
  11864. },
  11865. {
  11866. name: "Megamacro",
  11867. height: math.unit(5, "miles")
  11868. },
  11869. {
  11870. name: "Teramacro",
  11871. height: math.unit(150000, "miles")
  11872. },
  11873. ]
  11874. ))
  11875. characterMakers.push(() => makeCharacter(
  11876. { name: "Cuon", species: ["border-collie"], tags: ["anthro"] },
  11877. {
  11878. front: {
  11879. height: math.unit(6, "feet"),
  11880. weight: math.unit(150, "lb"),
  11881. name: "Front",
  11882. image: {
  11883. source: "./media/characters/cuon/front.svg",
  11884. extra: 1390 / 1320,
  11885. bottom: 0.008
  11886. }
  11887. },
  11888. },
  11889. [
  11890. {
  11891. name: "Micro",
  11892. height: math.unit(3, "inches")
  11893. },
  11894. {
  11895. name: "Normal",
  11896. height: math.unit(18 + 9 / 12, "feet"),
  11897. default: true
  11898. },
  11899. {
  11900. name: "Macro",
  11901. height: math.unit(360, "feet")
  11902. },
  11903. {
  11904. name: "Megamacro",
  11905. height: math.unit(360, "miles")
  11906. },
  11907. ]
  11908. ))
  11909. characterMakers.push(() => makeCharacter(
  11910. { name: "Nyanuxk", species: ["dragon"], tags: ["anthro"] },
  11911. {
  11912. front: {
  11913. height: math.unit(2.4, "meters"),
  11914. weight: math.unit(70, "kg"),
  11915. name: "Front",
  11916. image: {
  11917. source: "./media/characters/nyanuxk/front.svg",
  11918. extra: 1172 / 1084,
  11919. bottom: 0.065
  11920. }
  11921. },
  11922. side: {
  11923. height: math.unit(2.4, "meters"),
  11924. weight: math.unit(70, "kg"),
  11925. name: "Side",
  11926. image: {
  11927. source: "./media/characters/nyanuxk/side.svg",
  11928. extra: 1190 / 1132,
  11929. bottom: 0.007
  11930. }
  11931. },
  11932. back: {
  11933. height: math.unit(2.4, "meters"),
  11934. weight: math.unit(70, "kg"),
  11935. name: "Back",
  11936. image: {
  11937. source: "./media/characters/nyanuxk/back.svg",
  11938. extra: 1200 / 1141,
  11939. bottom: 0.015
  11940. }
  11941. },
  11942. foot: {
  11943. height: math.unit(0.52, "meters"),
  11944. name: "Foot",
  11945. image: {
  11946. source: "./media/characters/nyanuxk/foot.svg"
  11947. }
  11948. },
  11949. },
  11950. [
  11951. {
  11952. name: "Micro",
  11953. height: math.unit(2, "cm")
  11954. },
  11955. {
  11956. name: "Normal",
  11957. height: math.unit(2.4, "meters"),
  11958. default: true
  11959. },
  11960. {
  11961. name: "Smaller Macro",
  11962. height: math.unit(120, "meters")
  11963. },
  11964. {
  11965. name: "Bigger Macro",
  11966. height: math.unit(1.2, "km")
  11967. },
  11968. {
  11969. name: "Megamacro",
  11970. height: math.unit(15, "kilometers")
  11971. },
  11972. {
  11973. name: "Gigamacro",
  11974. height: math.unit(2000, "km")
  11975. },
  11976. {
  11977. name: "Teramacro",
  11978. height: math.unit(500000, "km")
  11979. },
  11980. ]
  11981. ))
  11982. characterMakers.push(() => makeCharacter(
  11983. { name: "Ailbhe", species: ["gryphon"], tags: ["feral"] },
  11984. {
  11985. side: {
  11986. height: math.unit(6, "feet"),
  11987. name: "Side",
  11988. image: {
  11989. source: "./media/characters/ailbhe/side.svg",
  11990. extra: 757 / 464,
  11991. bottom: 0.041
  11992. }
  11993. },
  11994. },
  11995. [
  11996. {
  11997. name: "Normal",
  11998. height: math.unit(1.07, "meters"),
  11999. default: true
  12000. },
  12001. ]
  12002. ))
  12003. characterMakers.push(() => makeCharacter(
  12004. { name: "Zevulfius", species: ["werewolf"], tags: ["anthro"] },
  12005. {
  12006. front: {
  12007. height: math.unit(6, "feet"),
  12008. weight: math.unit(120, "kg"),
  12009. name: "Front",
  12010. image: {
  12011. source: "./media/characters/zevulfius/front.svg",
  12012. extra: 965 / 903
  12013. }
  12014. },
  12015. side: {
  12016. height: math.unit(6, "feet"),
  12017. weight: math.unit(120, "kg"),
  12018. name: "Side",
  12019. image: {
  12020. source: "./media/characters/zevulfius/side.svg",
  12021. extra: 939 / 900
  12022. }
  12023. },
  12024. back: {
  12025. height: math.unit(6, "feet"),
  12026. weight: math.unit(120, "kg"),
  12027. name: "Back",
  12028. image: {
  12029. source: "./media/characters/zevulfius/back.svg",
  12030. extra: 918 / 854,
  12031. bottom: 0.005
  12032. }
  12033. },
  12034. foot: {
  12035. height: math.unit(6 / 3.72, "feet"),
  12036. name: "Foot",
  12037. image: {
  12038. source: "./media/characters/zevulfius/foot.svg"
  12039. }
  12040. },
  12041. },
  12042. [
  12043. {
  12044. name: "Macro",
  12045. height: math.unit(750, "meters")
  12046. },
  12047. {
  12048. name: "Megamacro",
  12049. height: math.unit(20, "km"),
  12050. default: true
  12051. },
  12052. {
  12053. name: "Gigamacro",
  12054. height: math.unit(2000, "km")
  12055. },
  12056. {
  12057. name: "Teramacro",
  12058. height: math.unit(250000, "km")
  12059. },
  12060. ]
  12061. ))
  12062. characterMakers.push(() => makeCharacter(
  12063. { name: "Rikes", species: ["german-shepherd"], tags: ["anthro"] },
  12064. {
  12065. front: {
  12066. height: math.unit(100, "feet"),
  12067. weight: math.unit(350, "kg"),
  12068. name: "Front",
  12069. image: {
  12070. source: "./media/characters/rikes/front.svg",
  12071. extra: 1565 / 1483,
  12072. bottom: 0.017
  12073. }
  12074. },
  12075. },
  12076. [
  12077. {
  12078. name: "Macro",
  12079. height: math.unit(100, "feet"),
  12080. default: true
  12081. },
  12082. ]
  12083. ))
  12084. characterMakers.push(() => makeCharacter(
  12085. { name: "Adam Silver-Mane", species: ["horse"], tags: ["anthro"] },
  12086. {
  12087. front: {
  12088. height: math.unit(8, "feet"),
  12089. weight: math.unit(356, "lb"),
  12090. name: "Front",
  12091. image: {
  12092. source: "./media/characters/adam-silver-mane/front.svg",
  12093. extra: 1036/937,
  12094. bottom: 63/1099
  12095. }
  12096. },
  12097. side: {
  12098. height: math.unit(8, "feet"),
  12099. weight: math.unit(356, "lb"),
  12100. name: "Side",
  12101. image: {
  12102. source: "./media/characters/adam-silver-mane/side.svg",
  12103. extra: 997/901,
  12104. bottom: 59/1056
  12105. }
  12106. },
  12107. frontNsfw: {
  12108. height: math.unit(8, "feet"),
  12109. weight: math.unit(356, "lb"),
  12110. name: "Front (NSFW)",
  12111. image: {
  12112. source: "./media/characters/adam-silver-mane/front-nsfw.svg",
  12113. extra: 1036/937,
  12114. bottom: 63/1099
  12115. }
  12116. },
  12117. sideNsfw: {
  12118. height: math.unit(8, "feet"),
  12119. weight: math.unit(356, "lb"),
  12120. name: "Side (NSFW)",
  12121. image: {
  12122. source: "./media/characters/adam-silver-mane/side-nsfw.svg",
  12123. extra: 997/901,
  12124. bottom: 59/1056
  12125. }
  12126. },
  12127. dick: {
  12128. height: math.unit(2.1, "feet"),
  12129. name: "Dick",
  12130. image: {
  12131. source: "./media/characters/adam-silver-mane/dick.svg"
  12132. }
  12133. },
  12134. taur: {
  12135. height: math.unit(16, "feet"),
  12136. weight: math.unit(1500, "kg"),
  12137. name: "Taur",
  12138. image: {
  12139. source: "./media/characters/adam-silver-mane/taur.svg",
  12140. extra: 1713 / 1571,
  12141. bottom: 0.01
  12142. }
  12143. },
  12144. },
  12145. [
  12146. {
  12147. name: "Normal",
  12148. height: math.unit(8, "feet")
  12149. },
  12150. {
  12151. name: "Minimacro",
  12152. height: math.unit(80, "feet")
  12153. },
  12154. {
  12155. name: "MDA",
  12156. height: math.unit(80, "meters")
  12157. },
  12158. {
  12159. name: "Macro",
  12160. height: math.unit(800, "feet"),
  12161. default: true
  12162. },
  12163. {
  12164. name: "Megamacro",
  12165. height: math.unit(8000, "feet")
  12166. },
  12167. {
  12168. name: "Gigamacro",
  12169. height: math.unit(800, "miles")
  12170. },
  12171. {
  12172. name: "Teramacro",
  12173. height: math.unit(80000, "miles")
  12174. },
  12175. {
  12176. name: "Celestial",
  12177. height: math.unit(8e6, "miles")
  12178. },
  12179. {
  12180. name: "Star Dragon",
  12181. height: math.unit(800000, "parsecs")
  12182. },
  12183. {
  12184. name: "Godly",
  12185. height: math.unit(800, "teraparsecs")
  12186. },
  12187. ]
  12188. ))
  12189. characterMakers.push(() => makeCharacter(
  12190. { name: "Ky'owin", species: ["dragon", "cat"], tags: ["anthro"] },
  12191. {
  12192. front: {
  12193. height: math.unit(6, "feet"),
  12194. weight: math.unit(150, "lb"),
  12195. name: "Front",
  12196. image: {
  12197. source: "./media/characters/ky'owin/front.svg",
  12198. extra: 3862/3053,
  12199. bottom: 74/3936
  12200. }
  12201. },
  12202. },
  12203. [
  12204. {
  12205. name: "Normal",
  12206. height: math.unit(6 + 8 / 12, "feet")
  12207. },
  12208. {
  12209. name: "Large",
  12210. height: math.unit(68, "feet")
  12211. },
  12212. {
  12213. name: "Macro",
  12214. height: math.unit(132, "feet")
  12215. },
  12216. {
  12217. name: "Macro+",
  12218. height: math.unit(340, "feet")
  12219. },
  12220. {
  12221. name: "Macro++",
  12222. height: math.unit(680, "feet"),
  12223. default: true
  12224. },
  12225. {
  12226. name: "Megamacro",
  12227. height: math.unit(1, "mile")
  12228. },
  12229. {
  12230. name: "Megamacro+",
  12231. height: math.unit(10, "miles")
  12232. },
  12233. ]
  12234. ))
  12235. characterMakers.push(() => makeCharacter(
  12236. { name: "Mal", species: ["imp"], tags: ["anthro"] },
  12237. {
  12238. front: {
  12239. height: math.unit(4, "feet"),
  12240. weight: math.unit(50, "lb"),
  12241. name: "Front",
  12242. image: {
  12243. source: "./media/characters/mal/front.svg",
  12244. extra: 785 / 724,
  12245. bottom: 0.07
  12246. }
  12247. },
  12248. },
  12249. [
  12250. {
  12251. name: "Micro",
  12252. height: math.unit(4, "inches")
  12253. },
  12254. {
  12255. name: "Normal",
  12256. height: math.unit(4, "feet"),
  12257. default: true
  12258. },
  12259. {
  12260. name: "Macro",
  12261. height: math.unit(200, "feet")
  12262. },
  12263. ]
  12264. ))
  12265. characterMakers.push(() => makeCharacter(
  12266. { name: "Jordan Deware", species: ["otter"], tags: ["anthro"] },
  12267. {
  12268. front: {
  12269. height: math.unit(6, "feet"),
  12270. weight: math.unit(150, "lb"),
  12271. name: "Front",
  12272. image: {
  12273. source: "./media/characters/jordan-deware/front.svg",
  12274. extra: 1191 / 1012
  12275. }
  12276. },
  12277. },
  12278. [
  12279. {
  12280. name: "Nano",
  12281. height: math.unit(0.01, "mm")
  12282. },
  12283. {
  12284. name: "Minimicro",
  12285. height: math.unit(1, "mm")
  12286. },
  12287. {
  12288. name: "Micro",
  12289. height: math.unit(0.5, "inches")
  12290. },
  12291. {
  12292. name: "Normal",
  12293. height: math.unit(4, "feet"),
  12294. default: true
  12295. },
  12296. {
  12297. name: "Minimacro",
  12298. height: math.unit(40, "meters")
  12299. },
  12300. {
  12301. name: "Small Macro",
  12302. height: math.unit(400, "meters")
  12303. },
  12304. {
  12305. name: "Macro",
  12306. height: math.unit(4, "miles")
  12307. },
  12308. {
  12309. name: "Megamacro",
  12310. height: math.unit(40, "miles")
  12311. },
  12312. {
  12313. name: "Megamacro+",
  12314. height: math.unit(400, "miles")
  12315. },
  12316. {
  12317. name: "Gigamacro",
  12318. height: math.unit(400000, "miles")
  12319. },
  12320. ]
  12321. ))
  12322. characterMakers.push(() => makeCharacter(
  12323. { name: "Kimiko", species: ["eastern-dragon"], tags: ["anthro"] },
  12324. {
  12325. side: {
  12326. height: math.unit(6, "feet"),
  12327. weight: math.unit(150, "lb"),
  12328. name: "Side",
  12329. image: {
  12330. source: "./media/characters/kimiko/side.svg",
  12331. extra: 600 / 358
  12332. }
  12333. },
  12334. },
  12335. [
  12336. {
  12337. name: "Normal",
  12338. height: math.unit(15, "feet"),
  12339. default: true
  12340. },
  12341. {
  12342. name: "Macro",
  12343. height: math.unit(220, "feet")
  12344. },
  12345. {
  12346. name: "Macro+",
  12347. height: math.unit(1450, "feet")
  12348. },
  12349. {
  12350. name: "Megamacro",
  12351. height: math.unit(11500, "feet")
  12352. },
  12353. {
  12354. name: "Gigamacro",
  12355. height: math.unit(9500, "miles")
  12356. },
  12357. {
  12358. name: "Teramacro",
  12359. height: math.unit(2208005005, "miles")
  12360. },
  12361. {
  12362. name: "Examacro",
  12363. height: math.unit(2750, "parsecs")
  12364. },
  12365. {
  12366. name: "Zettamacro",
  12367. height: math.unit(101500, "parsecs")
  12368. },
  12369. ]
  12370. ))
  12371. characterMakers.push(() => makeCharacter(
  12372. { name: "Andrew Sleepy", species: ["human"], tags: ["anthro"] },
  12373. {
  12374. front: {
  12375. height: math.unit(6, "feet"),
  12376. weight: math.unit(70, "kg"),
  12377. name: "Front",
  12378. image: {
  12379. source: "./media/characters/andrew-sleepy/front.svg"
  12380. }
  12381. },
  12382. side: {
  12383. height: math.unit(6, "feet"),
  12384. weight: math.unit(70, "kg"),
  12385. name: "Side",
  12386. image: {
  12387. source: "./media/characters/andrew-sleepy/side.svg"
  12388. }
  12389. },
  12390. },
  12391. [
  12392. {
  12393. name: "Micro",
  12394. height: math.unit(1, "mm"),
  12395. default: true
  12396. },
  12397. ]
  12398. ))
  12399. characterMakers.push(() => makeCharacter(
  12400. { name: "Judio", species: ["rabbit"], tags: ["anthro"] },
  12401. {
  12402. front: {
  12403. height: math.unit(6, "feet"),
  12404. weight: math.unit(150, "lb"),
  12405. name: "Front",
  12406. image: {
  12407. source: "./media/characters/judio/front.svg",
  12408. extra: 1258 / 1110
  12409. }
  12410. },
  12411. },
  12412. [
  12413. {
  12414. name: "Normal",
  12415. height: math.unit(5 + 6 / 12, "feet")
  12416. },
  12417. {
  12418. name: "Macro",
  12419. height: math.unit(1000, "feet"),
  12420. default: true
  12421. },
  12422. {
  12423. name: "Megamacro",
  12424. height: math.unit(10, "miles")
  12425. },
  12426. ]
  12427. ))
  12428. characterMakers.push(() => makeCharacter(
  12429. { name: "Nomaxice", species: ["lynx", "raccoon"], tags: ["anthro"] },
  12430. {
  12431. frontDressed: {
  12432. height: math.unit(6, "feet"),
  12433. weight: math.unit(68, "kg"),
  12434. name: "Front (Dressed)",
  12435. image: {
  12436. source: "./media/characters/nomaxice/front-dressed.svg",
  12437. extra: 1137/824,
  12438. bottom: 74/1211
  12439. }
  12440. },
  12441. frontShorts: {
  12442. height: math.unit(6, "feet"),
  12443. weight: math.unit(68, "kg"),
  12444. name: "Front (Shorts)",
  12445. image: {
  12446. source: "./media/characters/nomaxice/front-shorts.svg",
  12447. extra: 1137/824,
  12448. bottom: 74/1211
  12449. }
  12450. },
  12451. back: {
  12452. height: math.unit(6, "feet"),
  12453. weight: math.unit(68, "kg"),
  12454. name: "Back",
  12455. image: {
  12456. source: "./media/characters/nomaxice/back.svg",
  12457. extra: 822/786,
  12458. bottom: 39/861
  12459. }
  12460. },
  12461. hand: {
  12462. height: math.unit(0.565, "feet"),
  12463. name: "Hand",
  12464. image: {
  12465. source: "./media/characters/nomaxice/hand.svg"
  12466. }
  12467. },
  12468. foot: {
  12469. height: math.unit(1, "feet"),
  12470. name: "Foot",
  12471. image: {
  12472. source: "./media/characters/nomaxice/foot.svg"
  12473. }
  12474. },
  12475. },
  12476. [
  12477. {
  12478. name: "Micro",
  12479. height: math.unit(8, "cm")
  12480. },
  12481. {
  12482. name: "Norm",
  12483. height: math.unit(1.82, "m")
  12484. },
  12485. {
  12486. name: "Norm+",
  12487. height: math.unit(8.8, "feet"),
  12488. default: true
  12489. },
  12490. {
  12491. name: "Big",
  12492. height: math.unit(8, "meters")
  12493. },
  12494. {
  12495. name: "Macro",
  12496. height: math.unit(18, "meters")
  12497. },
  12498. {
  12499. name: "Macro+",
  12500. height: math.unit(88, "meters")
  12501. },
  12502. ]
  12503. ))
  12504. characterMakers.push(() => makeCharacter(
  12505. { name: "Dydros", species: ["dragon"], tags: ["anthro"] },
  12506. {
  12507. front: {
  12508. height: math.unit(12, "feet"),
  12509. weight: math.unit(1.5, "tons"),
  12510. name: "Front",
  12511. image: {
  12512. source: "./media/characters/dydros/front.svg",
  12513. extra: 863 / 800,
  12514. bottom: 0.015
  12515. }
  12516. },
  12517. back: {
  12518. height: math.unit(12, "feet"),
  12519. weight: math.unit(1.5, "tons"),
  12520. name: "Back",
  12521. image: {
  12522. source: "./media/characters/dydros/back.svg",
  12523. extra: 900 / 843,
  12524. bottom: 0.005
  12525. }
  12526. },
  12527. },
  12528. [
  12529. {
  12530. name: "Normal",
  12531. height: math.unit(12, "feet"),
  12532. default: true
  12533. },
  12534. ]
  12535. ))
  12536. characterMakers.push(() => makeCharacter(
  12537. { name: "Riggi", species: ["tiger", "wolf"], tags: ["anthro"] },
  12538. {
  12539. front: {
  12540. height: math.unit(6, "feet"),
  12541. weight: math.unit(100, "kg"),
  12542. name: "Front",
  12543. image: {
  12544. source: "./media/characters/riggi/front.svg",
  12545. extra: 5787 / 5303
  12546. }
  12547. },
  12548. hyper: {
  12549. height: math.unit(6 * 5 / 3, "feet"),
  12550. weight: math.unit(400 * 5 / 3 * 5 / 3 * 5 / 3, "kg"),
  12551. name: "Hyper",
  12552. image: {
  12553. source: "./media/characters/riggi/hyper.svg",
  12554. extra: 3595 / 3485
  12555. }
  12556. },
  12557. },
  12558. [
  12559. {
  12560. name: "Small Macro",
  12561. height: math.unit(50, "feet")
  12562. },
  12563. {
  12564. name: "Default",
  12565. height: math.unit(200, "feet"),
  12566. default: true
  12567. },
  12568. {
  12569. name: "Loom",
  12570. height: math.unit(10000, "feet")
  12571. },
  12572. {
  12573. name: "Cruising Altitude",
  12574. height: math.unit(30000, "feet")
  12575. },
  12576. {
  12577. name: "Megamacro",
  12578. height: math.unit(100, "miles")
  12579. },
  12580. {
  12581. name: "Continent Sized",
  12582. height: math.unit(2800, "miles")
  12583. },
  12584. {
  12585. name: "Earth Sized",
  12586. height: math.unit(8000, "miles")
  12587. },
  12588. ]
  12589. ))
  12590. characterMakers.push(() => makeCharacter(
  12591. { name: "Alexi", species: ["werewolf"], tags: ["anthro"] },
  12592. {
  12593. front: {
  12594. height: math.unit(6, "feet"),
  12595. weight: math.unit(250, "lb"),
  12596. name: "Front",
  12597. image: {
  12598. source: "./media/characters/alexi/front.svg",
  12599. extra: 3483 / 3291,
  12600. bottom: 0.04
  12601. }
  12602. },
  12603. back: {
  12604. height: math.unit(6, "feet"),
  12605. weight: math.unit(250, "lb"),
  12606. name: "Back",
  12607. image: {
  12608. source: "./media/characters/alexi/back.svg",
  12609. extra: 3533 / 3356,
  12610. bottom: 0.021
  12611. }
  12612. },
  12613. frontTransforming: {
  12614. height: math.unit(8.58, "feet"),
  12615. weight: math.unit(1300, "lb"),
  12616. name: "Transforming",
  12617. image: {
  12618. source: "./media/characters/alexi/front-transforming.svg",
  12619. extra: 437 / 409,
  12620. bottom: 19 / 458.66
  12621. }
  12622. },
  12623. frontTransformed: {
  12624. height: math.unit(12.5, "feet"),
  12625. weight: math.unit(4000, "lb"),
  12626. name: "Transformed",
  12627. image: {
  12628. source: "./media/characters/alexi/front-transformed.svg",
  12629. extra: 639 / 614,
  12630. bottom: 30.55 / 671
  12631. }
  12632. },
  12633. },
  12634. [
  12635. {
  12636. name: "Normal",
  12637. height: math.unit(14, "feet"),
  12638. default: true
  12639. },
  12640. {
  12641. name: "Minimacro",
  12642. height: math.unit(30, "meters")
  12643. },
  12644. {
  12645. name: "Macro",
  12646. height: math.unit(500, "meters")
  12647. },
  12648. {
  12649. name: "Megamacro",
  12650. height: math.unit(9000, "km")
  12651. },
  12652. {
  12653. name: "Teramacro",
  12654. height: math.unit(384000, "km")
  12655. },
  12656. ]
  12657. ))
  12658. characterMakers.push(() => makeCharacter(
  12659. { name: "Kayroo", species: ["kangaroo"], tags: ["anthro"] },
  12660. {
  12661. front: {
  12662. height: math.unit(6, "feet"),
  12663. weight: math.unit(150, "lb"),
  12664. name: "Front",
  12665. image: {
  12666. source: "./media/characters/kayroo/front.svg",
  12667. extra: 1153 / 1038,
  12668. bottom: 0.06
  12669. }
  12670. },
  12671. foot: {
  12672. height: math.unit(6, "feet"),
  12673. weight: math.unit(150, "lb"),
  12674. name: "Foot",
  12675. image: {
  12676. source: "./media/characters/kayroo/foot.svg"
  12677. }
  12678. },
  12679. },
  12680. [
  12681. {
  12682. name: "Normal",
  12683. height: math.unit(8, "feet"),
  12684. default: true
  12685. },
  12686. {
  12687. name: "Minimacro",
  12688. height: math.unit(250, "feet")
  12689. },
  12690. {
  12691. name: "Macro",
  12692. height: math.unit(2800, "feet")
  12693. },
  12694. {
  12695. name: "Megamacro",
  12696. height: math.unit(5200, "feet")
  12697. },
  12698. {
  12699. name: "Gigamacro",
  12700. height: math.unit(27000, "feet")
  12701. },
  12702. {
  12703. name: "Omega",
  12704. height: math.unit(45000, "feet")
  12705. },
  12706. ]
  12707. ))
  12708. characterMakers.push(() => makeCharacter(
  12709. { name: "Rhys", species: ["renamon"], tags: ["anthro"] },
  12710. {
  12711. front: {
  12712. height: math.unit(18, "feet"),
  12713. weight: math.unit(5800, "lb"),
  12714. name: "Front",
  12715. image: {
  12716. source: "./media/characters/rhys/front.svg",
  12717. extra: 3386 / 3090,
  12718. bottom: 0.07
  12719. }
  12720. },
  12721. },
  12722. [
  12723. {
  12724. name: "Normal",
  12725. height: math.unit(18, "feet"),
  12726. default: true
  12727. },
  12728. {
  12729. name: "Working Size",
  12730. height: math.unit(200, "feet")
  12731. },
  12732. {
  12733. name: "Demolition Size",
  12734. height: math.unit(2000, "feet")
  12735. },
  12736. {
  12737. name: "Maximum Licensed Size",
  12738. height: math.unit(5, "miles")
  12739. },
  12740. {
  12741. name: "Maximum Observed Size",
  12742. height: math.unit(10, "yottameters")
  12743. },
  12744. ]
  12745. ))
  12746. characterMakers.push(() => makeCharacter(
  12747. { name: "Toto", species: ["dragon"], tags: ["anthro"] },
  12748. {
  12749. front: {
  12750. height: math.unit(6, "feet"),
  12751. weight: math.unit(250, "lb"),
  12752. name: "Front",
  12753. image: {
  12754. source: "./media/characters/toto/front.svg",
  12755. extra: 527 / 479,
  12756. bottom: 0.05
  12757. }
  12758. },
  12759. },
  12760. [
  12761. {
  12762. name: "Micro",
  12763. height: math.unit(3, "feet")
  12764. },
  12765. {
  12766. name: "Normal",
  12767. height: math.unit(10, "feet")
  12768. },
  12769. {
  12770. name: "Macro",
  12771. height: math.unit(150, "feet"),
  12772. default: true
  12773. },
  12774. {
  12775. name: "Megamacro",
  12776. height: math.unit(1200, "feet")
  12777. },
  12778. ]
  12779. ))
  12780. characterMakers.push(() => makeCharacter(
  12781. { name: "King", species: ["lion"], tags: ["anthro"] },
  12782. {
  12783. back: {
  12784. height: math.unit(6, "feet"),
  12785. weight: math.unit(150, "lb"),
  12786. name: "Back",
  12787. image: {
  12788. source: "./media/characters/king/back.svg"
  12789. }
  12790. },
  12791. },
  12792. [
  12793. {
  12794. name: "Micro",
  12795. height: math.unit(2, "inches")
  12796. },
  12797. {
  12798. name: "Normal",
  12799. height: math.unit(8, "feet")
  12800. },
  12801. {
  12802. name: "Macro",
  12803. height: math.unit(200, "feet"),
  12804. default: true
  12805. },
  12806. {
  12807. name: "Megamacro",
  12808. height: math.unit(50, "miles")
  12809. },
  12810. ]
  12811. ))
  12812. characterMakers.push(() => makeCharacter(
  12813. { name: "Cordite", species: ["candy-orca-dragon"], tags: ["anthro"] },
  12814. {
  12815. front: {
  12816. height: math.unit(11, "feet"),
  12817. weight: math.unit(1400, "lb"),
  12818. name: "Front",
  12819. image: {
  12820. source: "./media/characters/cordite/front.svg",
  12821. extra: 1919/1827,
  12822. bottom: 40/1959
  12823. }
  12824. },
  12825. side: {
  12826. height: math.unit(11, "feet"),
  12827. weight: math.unit(1400, "lb"),
  12828. name: "Side",
  12829. image: {
  12830. source: "./media/characters/cordite/side.svg",
  12831. extra: 1908/1793,
  12832. bottom: 38/1946
  12833. }
  12834. },
  12835. back: {
  12836. height: math.unit(11, "feet"),
  12837. weight: math.unit(1400, "lb"),
  12838. name: "Back",
  12839. image: {
  12840. source: "./media/characters/cordite/back.svg",
  12841. extra: 1938/1837,
  12842. bottom: 10/1948
  12843. }
  12844. },
  12845. feral: {
  12846. height: math.unit(2, "feet"),
  12847. weight: math.unit(90, "lb"),
  12848. name: "Feral",
  12849. image: {
  12850. source: "./media/characters/cordite/feral.svg",
  12851. extra: 1260 / 755,
  12852. bottom: 0.05
  12853. }
  12854. },
  12855. },
  12856. [
  12857. {
  12858. name: "Normal",
  12859. height: math.unit(11, "feet"),
  12860. default: true
  12861. },
  12862. ]
  12863. ))
  12864. characterMakers.push(() => makeCharacter(
  12865. { name: "Pianostrong", species: ["husky"], tags: ["anthro"] },
  12866. {
  12867. front: {
  12868. height: math.unit(6, "feet"),
  12869. weight: math.unit(150, "lb"),
  12870. name: "Front",
  12871. image: {
  12872. source: "./media/characters/pianostrong/front.svg",
  12873. extra: 6577 / 6254,
  12874. bottom: 0.02
  12875. }
  12876. },
  12877. side: {
  12878. height: math.unit(6, "feet"),
  12879. weight: math.unit(150, "lb"),
  12880. name: "Side",
  12881. image: {
  12882. source: "./media/characters/pianostrong/side.svg",
  12883. extra: 6106 / 5730
  12884. }
  12885. },
  12886. back: {
  12887. height: math.unit(6, "feet"),
  12888. weight: math.unit(150, "lb"),
  12889. name: "Back",
  12890. image: {
  12891. source: "./media/characters/pianostrong/back.svg",
  12892. extra: 6085 / 5733,
  12893. bottom: 0.01
  12894. }
  12895. },
  12896. },
  12897. [
  12898. {
  12899. name: "Macro",
  12900. height: math.unit(100, "feet")
  12901. },
  12902. {
  12903. name: "Macro+",
  12904. height: math.unit(300, "feet"),
  12905. default: true
  12906. },
  12907. {
  12908. name: "Macro++",
  12909. height: math.unit(1000, "feet")
  12910. },
  12911. ]
  12912. ))
  12913. characterMakers.push(() => makeCharacter(
  12914. { name: "Kona", species: ["deer"], tags: ["anthro"] },
  12915. {
  12916. front: {
  12917. height: math.unit(6, "feet"),
  12918. weight: math.unit(150, "lb"),
  12919. name: "Front",
  12920. image: {
  12921. source: "./media/characters/kona/front.svg",
  12922. extra: 2960 / 2629,
  12923. bottom: 0.005
  12924. }
  12925. },
  12926. },
  12927. [
  12928. {
  12929. name: "Normal",
  12930. height: math.unit(11 + 8 / 12, "feet")
  12931. },
  12932. {
  12933. name: "Macro",
  12934. height: math.unit(850, "feet"),
  12935. default: true
  12936. },
  12937. {
  12938. name: "Macro+",
  12939. height: math.unit(1.5, "km"),
  12940. default: true
  12941. },
  12942. {
  12943. name: "Megamacro",
  12944. height: math.unit(80, "miles")
  12945. },
  12946. {
  12947. name: "Gigamacro",
  12948. height: math.unit(3500, "miles")
  12949. },
  12950. ]
  12951. ))
  12952. characterMakers.push(() => makeCharacter(
  12953. { name: "Levi", species: ["dragon"], tags: ["anthro"] },
  12954. {
  12955. side: {
  12956. height: math.unit(1.9, "meters"),
  12957. weight: math.unit(326, "kg"),
  12958. name: "Side",
  12959. image: {
  12960. source: "./media/characters/levi/side.svg",
  12961. extra: 1704 / 1334,
  12962. bottom: 0.02
  12963. }
  12964. },
  12965. },
  12966. [
  12967. {
  12968. name: "Normal",
  12969. height: math.unit(1.9, "meters"),
  12970. default: true
  12971. },
  12972. {
  12973. name: "Macro",
  12974. height: math.unit(20, "meters")
  12975. },
  12976. {
  12977. name: "Macro+",
  12978. height: math.unit(200, "meters")
  12979. },
  12980. {
  12981. name: "Megamacro",
  12982. height: math.unit(2, "km")
  12983. },
  12984. {
  12985. name: "Megamacro+",
  12986. height: math.unit(20, "km")
  12987. },
  12988. {
  12989. name: "Gigamacro",
  12990. height: math.unit(2500, "km")
  12991. },
  12992. {
  12993. name: "Gigamacro+",
  12994. height: math.unit(120000, "km")
  12995. },
  12996. {
  12997. name: "Teramacro",
  12998. height: math.unit(7.77e6, "km")
  12999. },
  13000. ]
  13001. ))
  13002. characterMakers.push(() => makeCharacter(
  13003. { name: "BMC", species: ["sabertooth-tiger", "cougar"], tags: ["anthro"] },
  13004. {
  13005. front: {
  13006. height: math.unit(6 + 4/12, "feet"),
  13007. weight: math.unit(190, "lb"),
  13008. name: "Front",
  13009. image: {
  13010. source: "./media/characters/bmc/front.svg",
  13011. extra: 1626/1472,
  13012. bottom: 79/1705
  13013. }
  13014. },
  13015. back: {
  13016. height: math.unit(6 + 4/12, "feet"),
  13017. weight: math.unit(190, "lb"),
  13018. name: "Back",
  13019. image: {
  13020. source: "./media/characters/bmc/back.svg",
  13021. extra: 1640/1479,
  13022. bottom: 45/1685
  13023. }
  13024. },
  13025. frontArmor: {
  13026. height: math.unit(6 + 4/12, "feet"),
  13027. weight: math.unit(190, "lb"),
  13028. name: "Front-armor",
  13029. image: {
  13030. source: "./media/characters/bmc/front-armor.svg",
  13031. extra: 1538/1468,
  13032. bottom: 79/1617
  13033. }
  13034. },
  13035. },
  13036. [
  13037. {
  13038. name: "Human-sized",
  13039. height: math.unit(6 + 4 / 12, "feet")
  13040. },
  13041. {
  13042. name: "Interactive Size",
  13043. height: math.unit(25, "feet")
  13044. },
  13045. {
  13046. name: "Small",
  13047. height: math.unit(250, "feet")
  13048. },
  13049. {
  13050. name: "Normal",
  13051. height: math.unit(1250, "feet"),
  13052. default: true
  13053. },
  13054. {
  13055. name: "Good Day",
  13056. height: math.unit(88, "miles")
  13057. },
  13058. {
  13059. name: "Largest Measured Size",
  13060. height: math.unit(105.960, "galaxies")
  13061. },
  13062. ]
  13063. ))
  13064. characterMakers.push(() => makeCharacter(
  13065. { name: "Sven the Kaiju", species: ["monster", "fairy"], tags: ["anthro"] },
  13066. {
  13067. front: {
  13068. height: math.unit(20, "feet"),
  13069. weight: math.unit(2016, "kg"),
  13070. name: "Front",
  13071. image: {
  13072. source: "./media/characters/sven-the-kaiju/front.svg",
  13073. extra: 1277/1250,
  13074. bottom: 35/1312
  13075. }
  13076. },
  13077. mouth: {
  13078. height: math.unit(1.85, "feet"),
  13079. name: "Mouth",
  13080. image: {
  13081. source: "./media/characters/sven-the-kaiju/mouth.svg"
  13082. }
  13083. },
  13084. },
  13085. [
  13086. {
  13087. name: "Fairy",
  13088. height: math.unit(6, "inches")
  13089. },
  13090. {
  13091. name: "Normal",
  13092. height: math.unit(20, "feet"),
  13093. default: true
  13094. },
  13095. {
  13096. name: "Rampage",
  13097. height: math.unit(200, "feet")
  13098. },
  13099. {
  13100. name: "Archfey Forest Guardian",
  13101. height: math.unit(1, "mile")
  13102. },
  13103. ]
  13104. ))
  13105. characterMakers.push(() => makeCharacter(
  13106. { name: "Marik", species: ["dragon"], tags: ["anthro"] },
  13107. {
  13108. front: {
  13109. height: math.unit(4, "meters"),
  13110. weight: math.unit(2, "tons"),
  13111. name: "Front",
  13112. image: {
  13113. source: "./media/characters/marik/front.svg",
  13114. extra: 1057 / 1003,
  13115. bottom: 0.08
  13116. }
  13117. },
  13118. },
  13119. [
  13120. {
  13121. name: "Normal",
  13122. height: math.unit(4, "meters"),
  13123. default: true
  13124. },
  13125. {
  13126. name: "Macro",
  13127. height: math.unit(20, "meters")
  13128. },
  13129. {
  13130. name: "Megamacro",
  13131. height: math.unit(50, "km")
  13132. },
  13133. {
  13134. name: "Gigamacro",
  13135. height: math.unit(100, "km")
  13136. },
  13137. {
  13138. name: "Alpha Macro",
  13139. height: math.unit(7.88e7, "yottameters")
  13140. },
  13141. ]
  13142. ))
  13143. characterMakers.push(() => makeCharacter(
  13144. { name: "Mel", species: ["human", "moth"], tags: ["anthro"] },
  13145. {
  13146. front: {
  13147. height: math.unit(6, "feet"),
  13148. weight: math.unit(110, "lb"),
  13149. name: "Front",
  13150. image: {
  13151. source: "./media/characters/mel/front.svg",
  13152. extra: 736 / 617,
  13153. bottom: 0.017
  13154. }
  13155. },
  13156. },
  13157. [
  13158. {
  13159. name: "Pico",
  13160. height: math.unit(3, "pm")
  13161. },
  13162. {
  13163. name: "Nano",
  13164. height: math.unit(3, "nm")
  13165. },
  13166. {
  13167. name: "Micro",
  13168. height: math.unit(0.3, "mm"),
  13169. default: true
  13170. },
  13171. {
  13172. name: "Micro+",
  13173. height: math.unit(3, "mm")
  13174. },
  13175. {
  13176. name: "Normal",
  13177. height: math.unit(5 + 10.5 / 12, "feet")
  13178. },
  13179. ]
  13180. ))
  13181. characterMakers.push(() => makeCharacter(
  13182. { name: "Lykonous", species: ["monster"], tags: ["anthro"] },
  13183. {
  13184. kaiju: {
  13185. height: math.unit(1.75, "meters"),
  13186. weight: math.unit(55, "kg"),
  13187. name: "Kaiju",
  13188. image: {
  13189. source: "./media/characters/lykonous/kaiju.svg",
  13190. extra: 1055 / 946,
  13191. bottom: 0.135
  13192. }
  13193. },
  13194. },
  13195. [
  13196. {
  13197. name: "Normal",
  13198. height: math.unit(2.5, "meters"),
  13199. default: true
  13200. },
  13201. {
  13202. name: "Kaiju Dragon",
  13203. height: math.unit(60, "meters")
  13204. },
  13205. {
  13206. name: "Mega Kaiju",
  13207. height: math.unit(120, "km")
  13208. },
  13209. {
  13210. name: "Giga Kaiju",
  13211. height: math.unit(200, "megameters")
  13212. },
  13213. {
  13214. name: "Terra Kaiju",
  13215. height: math.unit(400, "gigameters")
  13216. },
  13217. {
  13218. name: "Kaiju Dragon God",
  13219. height: math.unit(13000, "exaparsecs")
  13220. },
  13221. ]
  13222. ))
  13223. characterMakers.push(() => makeCharacter(
  13224. { name: "Blü", species: ["dragon"], tags: ["anthro"] },
  13225. {
  13226. front: {
  13227. height: math.unit(6, "feet"),
  13228. weight: math.unit(150, "lb"),
  13229. name: "Front",
  13230. image: {
  13231. source: "./media/characters/blü/front.svg",
  13232. extra: 1883 / 1564,
  13233. bottom: 0.031
  13234. }
  13235. },
  13236. },
  13237. [
  13238. {
  13239. name: "Normal",
  13240. height: math.unit(13, "feet"),
  13241. default: true
  13242. },
  13243. {
  13244. name: "Big Boi",
  13245. height: math.unit(150, "meters")
  13246. },
  13247. {
  13248. name: "Mini Stomper",
  13249. height: math.unit(300, "meters")
  13250. },
  13251. {
  13252. name: "Macro",
  13253. height: math.unit(1000, "meters")
  13254. },
  13255. {
  13256. name: "Megamacro",
  13257. height: math.unit(11000, "meters")
  13258. },
  13259. {
  13260. name: "Gigamacro",
  13261. height: math.unit(11000, "km")
  13262. },
  13263. {
  13264. name: "Teramacro",
  13265. height: math.unit(420000, "km")
  13266. },
  13267. {
  13268. name: "Examacro",
  13269. height: math.unit(120, "parsecs")
  13270. },
  13271. {
  13272. name: "God Tho",
  13273. height: math.unit(98000000000, "parsecs")
  13274. },
  13275. ]
  13276. ))
  13277. characterMakers.push(() => makeCharacter(
  13278. { name: "Scales", species: ["dragon"], tags: ["taur"] },
  13279. {
  13280. taurFront: {
  13281. height: math.unit(6, "feet"),
  13282. weight: math.unit(200, "lb"),
  13283. name: "Taur (Front)",
  13284. image: {
  13285. source: "./media/characters/scales/taur-front.svg",
  13286. extra: 1,
  13287. bottom: 0.05
  13288. }
  13289. },
  13290. taurBack: {
  13291. height: math.unit(6, "feet"),
  13292. weight: math.unit(200, "lb"),
  13293. name: "Taur (Back)",
  13294. image: {
  13295. source: "./media/characters/scales/taur-back.svg",
  13296. extra: 1,
  13297. bottom: 0.08
  13298. }
  13299. },
  13300. anthro: {
  13301. height: math.unit(6 * 7 / 12, "feet"),
  13302. weight: math.unit(100, "lb"),
  13303. name: "Anthro",
  13304. image: {
  13305. source: "./media/characters/scales/anthro.svg",
  13306. extra: 1,
  13307. bottom: 0.06
  13308. }
  13309. },
  13310. },
  13311. [
  13312. {
  13313. name: "Normal",
  13314. height: math.unit(12, "feet"),
  13315. default: true
  13316. },
  13317. ]
  13318. ))
  13319. characterMakers.push(() => makeCharacter(
  13320. { name: "Koragos", species: ["lizard"], tags: ["anthro"] },
  13321. {
  13322. front: {
  13323. height: math.unit(6, "feet"),
  13324. weight: math.unit(150, "lb"),
  13325. name: "Front",
  13326. image: {
  13327. source: "./media/characters/koragos/front.svg",
  13328. extra: 841 / 794,
  13329. bottom: 0.035
  13330. }
  13331. },
  13332. back: {
  13333. height: math.unit(6, "feet"),
  13334. weight: math.unit(150, "lb"),
  13335. name: "Back",
  13336. image: {
  13337. source: "./media/characters/koragos/back.svg",
  13338. extra: 841 / 810,
  13339. bottom: 0.022
  13340. }
  13341. },
  13342. },
  13343. [
  13344. {
  13345. name: "Normal",
  13346. height: math.unit(6 + 11 / 12, "feet"),
  13347. default: true
  13348. },
  13349. {
  13350. name: "Macro",
  13351. height: math.unit(490, "feet")
  13352. },
  13353. {
  13354. name: "Megamacro",
  13355. height: math.unit(10, "miles")
  13356. },
  13357. {
  13358. name: "Gigamacro",
  13359. height: math.unit(50, "miles")
  13360. },
  13361. ]
  13362. ))
  13363. characterMakers.push(() => makeCharacter(
  13364. { name: "Xylrem", species: ["dragon"], tags: ["anthro"] },
  13365. {
  13366. front: {
  13367. height: math.unit(6, "feet"),
  13368. weight: math.unit(250, "lb"),
  13369. name: "Front",
  13370. image: {
  13371. source: "./media/characters/xylrem/front.svg",
  13372. extra: 3323 / 3050,
  13373. bottom: 0.065
  13374. }
  13375. },
  13376. },
  13377. [
  13378. {
  13379. name: "Micro",
  13380. height: math.unit(4, "feet")
  13381. },
  13382. {
  13383. name: "Normal",
  13384. height: math.unit(16, "feet"),
  13385. default: true
  13386. },
  13387. {
  13388. name: "Macro",
  13389. height: math.unit(2720, "feet")
  13390. },
  13391. {
  13392. name: "Megamacro",
  13393. height: math.unit(25000, "miles")
  13394. },
  13395. ]
  13396. ))
  13397. characterMakers.push(() => makeCharacter(
  13398. { name: "Ikideru", species: ["german-shepherd"], tags: ["anthro"] },
  13399. {
  13400. front: {
  13401. height: math.unit(8, "feet"),
  13402. weight: math.unit(250, "kg"),
  13403. name: "Front",
  13404. image: {
  13405. source: "./media/characters/ikideru/front.svg",
  13406. extra: 930 / 870,
  13407. bottom: 0.087
  13408. }
  13409. },
  13410. back: {
  13411. height: math.unit(8, "feet"),
  13412. weight: math.unit(250, "kg"),
  13413. name: "Back",
  13414. image: {
  13415. source: "./media/characters/ikideru/back.svg",
  13416. extra: 919 / 852,
  13417. bottom: 0.055
  13418. }
  13419. },
  13420. },
  13421. [
  13422. {
  13423. name: "Rare",
  13424. height: math.unit(8, "feet"),
  13425. default: true
  13426. },
  13427. {
  13428. name: "Playful Loom",
  13429. height: math.unit(80, "feet")
  13430. },
  13431. {
  13432. name: "City Leaner",
  13433. height: math.unit(230, "feet")
  13434. },
  13435. {
  13436. name: "Megamacro",
  13437. height: math.unit(2500, "feet")
  13438. },
  13439. {
  13440. name: "Gigamacro",
  13441. height: math.unit(26400, "feet")
  13442. },
  13443. {
  13444. name: "Tectonic Shifter",
  13445. height: math.unit(1.7, "megameters")
  13446. },
  13447. {
  13448. name: "Planet Carer",
  13449. height: math.unit(21, "megameters")
  13450. },
  13451. {
  13452. name: "God",
  13453. height: math.unit(11157.22, "parsecs")
  13454. },
  13455. ]
  13456. ))
  13457. characterMakers.push(() => makeCharacter(
  13458. { name: "Neo", species: ["dragon"], tags: ["anthro"] },
  13459. {
  13460. front: {
  13461. height: math.unit(6, "feet"),
  13462. weight: math.unit(120, "lb"),
  13463. name: "Front",
  13464. image: {
  13465. source: "./media/characters/neo/front.svg"
  13466. }
  13467. },
  13468. },
  13469. [
  13470. {
  13471. name: "Micro",
  13472. height: math.unit(2, "inches"),
  13473. default: true
  13474. },
  13475. {
  13476. name: "Human Size",
  13477. height: math.unit(5 + 8 / 12, "feet")
  13478. },
  13479. ]
  13480. ))
  13481. characterMakers.push(() => makeCharacter(
  13482. { name: "Chauncey (Chantz)", species: ["dragon"], tags: ["anthro"] },
  13483. {
  13484. front: {
  13485. height: math.unit(13 + 10 / 12, "feet"),
  13486. weight: math.unit(5320, "lb"),
  13487. name: "Front",
  13488. image: {
  13489. source: "./media/characters/chauncey-chantz/front.svg",
  13490. extra: 1587 / 1435,
  13491. bottom: 0.02
  13492. }
  13493. },
  13494. },
  13495. [
  13496. {
  13497. name: "Normal",
  13498. height: math.unit(13 + 10 / 12, "feet"),
  13499. default: true
  13500. },
  13501. {
  13502. name: "Macro",
  13503. height: math.unit(45, "feet")
  13504. },
  13505. {
  13506. name: "Megamacro",
  13507. height: math.unit(250, "miles")
  13508. },
  13509. {
  13510. name: "Planetary",
  13511. height: math.unit(10000, "miles")
  13512. },
  13513. {
  13514. name: "Galactic",
  13515. height: math.unit(40000, "parsecs")
  13516. },
  13517. {
  13518. name: "Universal",
  13519. height: math.unit(1, "yottameter")
  13520. },
  13521. ]
  13522. ))
  13523. characterMakers.push(() => makeCharacter(
  13524. { name: "Epifox", species: ["snake", "fox"], tags: ["naga"] },
  13525. {
  13526. front: {
  13527. height: math.unit(6, "feet"),
  13528. weight: math.unit(150, "lb"),
  13529. name: "Front",
  13530. image: {
  13531. source: "./media/characters/epifox/front.svg",
  13532. extra: 1,
  13533. bottom: 0.075
  13534. }
  13535. },
  13536. },
  13537. [
  13538. {
  13539. name: "Micro",
  13540. height: math.unit(6, "inches")
  13541. },
  13542. {
  13543. name: "Normal",
  13544. height: math.unit(12, "feet"),
  13545. default: true
  13546. },
  13547. {
  13548. name: "Macro",
  13549. height: math.unit(3810, "feet")
  13550. },
  13551. {
  13552. name: "Megamacro",
  13553. height: math.unit(500, "miles")
  13554. },
  13555. ]
  13556. ))
  13557. characterMakers.push(() => makeCharacter(
  13558. { name: "Colin T.", species: ["dragon"], tags: ["anthro"] },
  13559. {
  13560. front: {
  13561. height: math.unit(1.8796, "m"),
  13562. weight: math.unit(230, "lb"),
  13563. name: "Front",
  13564. image: {
  13565. source: "./media/characters/colin-t/front.svg",
  13566. extra: 1272 / 1193,
  13567. bottom: 0.07
  13568. }
  13569. },
  13570. },
  13571. [
  13572. {
  13573. name: "Micro",
  13574. height: math.unit(0.571, "meters")
  13575. },
  13576. {
  13577. name: "Normal",
  13578. height: math.unit(1.8796, "meters"),
  13579. default: true
  13580. },
  13581. {
  13582. name: "Tall",
  13583. height: math.unit(4, "meters")
  13584. },
  13585. {
  13586. name: "Macro",
  13587. height: math.unit(67.241, "meters")
  13588. },
  13589. {
  13590. name: "Megamacro",
  13591. height: math.unit(371.856, "meters")
  13592. },
  13593. {
  13594. name: "Planetary",
  13595. height: math.unit(12631.5689, "km")
  13596. },
  13597. ]
  13598. ))
  13599. characterMakers.push(() => makeCharacter(
  13600. { name: "Matvei", species: ["shark"], tags: ["anthro"] },
  13601. {
  13602. front: {
  13603. height: math.unit(1.85, "meters"),
  13604. weight: math.unit(80, "kg"),
  13605. name: "Front",
  13606. image: {
  13607. source: "./media/characters/matvei/front.svg",
  13608. extra: 456/447,
  13609. bottom: 8/464
  13610. }
  13611. },
  13612. back: {
  13613. height: math.unit(1.85, "meters"),
  13614. weight: math.unit(80, "kg"),
  13615. name: "Back",
  13616. image: {
  13617. source: "./media/characters/matvei/back.svg",
  13618. extra: 434/427,
  13619. bottom: 11/445
  13620. }
  13621. },
  13622. },
  13623. [
  13624. {
  13625. name: "Normal",
  13626. height: math.unit(1.85, "meters"),
  13627. default: true
  13628. },
  13629. ]
  13630. ))
  13631. characterMakers.push(() => makeCharacter(
  13632. { name: "Quincy", species: ["phoenix"], tags: ["anthro"] },
  13633. {
  13634. front: {
  13635. height: math.unit(5 + 9 / 12, "feet"),
  13636. weight: math.unit(70, "lb"),
  13637. name: "Front",
  13638. image: {
  13639. source: "./media/characters/quincy/front.svg",
  13640. extra: 3041 / 2751
  13641. }
  13642. },
  13643. back: {
  13644. height: math.unit(5 + 9 / 12, "feet"),
  13645. weight: math.unit(70, "lb"),
  13646. name: "Back",
  13647. image: {
  13648. source: "./media/characters/quincy/back.svg",
  13649. extra: 3041 / 2751
  13650. }
  13651. },
  13652. flying: {
  13653. height: math.unit(5 + 4 / 12, "feet"),
  13654. weight: math.unit(70, "lb"),
  13655. name: "Flying",
  13656. image: {
  13657. source: "./media/characters/quincy/flying.svg",
  13658. extra: 1044 / 930
  13659. }
  13660. },
  13661. },
  13662. [
  13663. {
  13664. name: "Micro",
  13665. height: math.unit(3, "cm")
  13666. },
  13667. {
  13668. name: "Normal",
  13669. height: math.unit(5 + 9 / 12, "feet")
  13670. },
  13671. {
  13672. name: "Macro",
  13673. height: math.unit(200, "meters"),
  13674. default: true
  13675. },
  13676. {
  13677. name: "Megamacro",
  13678. height: math.unit(1000, "meters")
  13679. },
  13680. ]
  13681. ))
  13682. characterMakers.push(() => makeCharacter(
  13683. { name: "Vanrel", species: ["fennec-fox"], tags: ["anthro"] },
  13684. {
  13685. front: {
  13686. height: math.unit(3 + 11/12, "feet"),
  13687. weight: math.unit(50, "lb"),
  13688. name: "Front",
  13689. image: {
  13690. source: "./media/characters/vanrel/front.svg",
  13691. extra: 1104/949,
  13692. bottom: 52/1156
  13693. }
  13694. },
  13695. back: {
  13696. height: math.unit(3 + 11/12, "feet"),
  13697. weight: math.unit(50, "lb"),
  13698. name: "Back",
  13699. image: {
  13700. source: "./media/characters/vanrel/back.svg",
  13701. extra: 1119/976,
  13702. bottom: 37/1156
  13703. }
  13704. },
  13705. tome: {
  13706. height: math.unit(1.35, "feet"),
  13707. weight: math.unit(10, "lb"),
  13708. name: "Vanrel's Tome",
  13709. rename: true,
  13710. image: {
  13711. source: "./media/characters/vanrel/tome.svg"
  13712. }
  13713. },
  13714. beans: {
  13715. height: math.unit(0.89, "feet"),
  13716. name: "Beans",
  13717. image: {
  13718. source: "./media/characters/vanrel/beans.svg"
  13719. }
  13720. },
  13721. },
  13722. [
  13723. {
  13724. name: "Normal",
  13725. height: math.unit(3 + 11/12, "feet"),
  13726. default: true
  13727. },
  13728. ]
  13729. ))
  13730. characterMakers.push(() => makeCharacter(
  13731. { name: "Kuiper Vanrel", species: ["elemental", "meerkat"], tags: ["anthro"] },
  13732. {
  13733. front: {
  13734. height: math.unit(7 + 5 / 12, "feet"),
  13735. name: "Front",
  13736. image: {
  13737. source: "./media/characters/kuiper-vanrel/front.svg",
  13738. extra: 1219/1169,
  13739. bottom: 69/1288
  13740. }
  13741. },
  13742. back: {
  13743. height: math.unit(7 + 5 / 12, "feet"),
  13744. name: "Back",
  13745. image: {
  13746. source: "./media/characters/kuiper-vanrel/back.svg",
  13747. extra: 1236/1193,
  13748. bottom: 27/1263
  13749. }
  13750. },
  13751. foot: {
  13752. height: math.unit(0.55, "meters"),
  13753. name: "Foot",
  13754. image: {
  13755. source: "./media/characters/kuiper-vanrel/foot.svg",
  13756. }
  13757. },
  13758. battle: {
  13759. height: math.unit(6.824, "feet"),
  13760. name: "Battle",
  13761. image: {
  13762. source: "./media/characters/kuiper-vanrel/battle.svg",
  13763. extra: 1466 / 1327,
  13764. bottom: 29 / 1492.5
  13765. }
  13766. },
  13767. meerkui: {
  13768. height: math.unit(18, "inches"),
  13769. name: "Meerkui",
  13770. image: {
  13771. source: "./media/characters/kuiper-vanrel/meerkui.svg",
  13772. extra: 1354/1289,
  13773. bottom: 69/1423
  13774. }
  13775. },
  13776. },
  13777. [
  13778. {
  13779. name: "Normal",
  13780. height: math.unit(7 + 5 / 12, "feet"),
  13781. default: true
  13782. },
  13783. ]
  13784. ))
  13785. characterMakers.push(() => makeCharacter(
  13786. { name: "Keset Vanrel", species: ["elemental", "hyena"], tags: ["anthro"] },
  13787. {
  13788. front: {
  13789. height: math.unit(8 + 5 / 12, "feet"),
  13790. name: "Front",
  13791. image: {
  13792. source: "./media/characters/keset-vanrel/front.svg",
  13793. extra: 1231/1148,
  13794. bottom: 82/1313
  13795. }
  13796. },
  13797. back: {
  13798. height: math.unit(8 + 5 / 12, "feet"),
  13799. name: "Back",
  13800. image: {
  13801. source: "./media/characters/keset-vanrel/back.svg",
  13802. extra: 1240/1174,
  13803. bottom: 33/1273
  13804. }
  13805. },
  13806. hand: {
  13807. height: math.unit(0.6, "meters"),
  13808. name: "Hand",
  13809. image: {
  13810. source: "./media/characters/keset-vanrel/hand.svg"
  13811. }
  13812. },
  13813. foot: {
  13814. height: math.unit(0.94978, "meters"),
  13815. name: "Foot",
  13816. image: {
  13817. source: "./media/characters/keset-vanrel/foot.svg"
  13818. }
  13819. },
  13820. battle: {
  13821. height: math.unit(7.408, "feet"),
  13822. name: "Battle",
  13823. image: {
  13824. source: "./media/characters/keset-vanrel/battle.svg",
  13825. extra: 1890 / 1386,
  13826. bottom: 73.28 / 1970
  13827. }
  13828. },
  13829. },
  13830. [
  13831. {
  13832. name: "Normal",
  13833. height: math.unit(8 + 5 / 12, "feet"),
  13834. default: true
  13835. },
  13836. ]
  13837. ))
  13838. characterMakers.push(() => makeCharacter(
  13839. { name: "Neos", species: ["mew"], tags: ["anthro"] },
  13840. {
  13841. front: {
  13842. height: math.unit(6, "feet"),
  13843. weight: math.unit(150, "lb"),
  13844. name: "Front",
  13845. image: {
  13846. source: "./media/characters/neos/front.svg",
  13847. extra: 1696 / 992,
  13848. bottom: 0.14
  13849. }
  13850. },
  13851. },
  13852. [
  13853. {
  13854. name: "Normal",
  13855. height: math.unit(54, "cm"),
  13856. default: true
  13857. },
  13858. {
  13859. name: "Macro",
  13860. height: math.unit(100, "m")
  13861. },
  13862. {
  13863. name: "Megamacro",
  13864. height: math.unit(10, "km")
  13865. },
  13866. {
  13867. name: "Megamacro+",
  13868. height: math.unit(100, "km")
  13869. },
  13870. {
  13871. name: "Gigamacro",
  13872. height: math.unit(100, "Mm")
  13873. },
  13874. {
  13875. name: "Teramacro",
  13876. height: math.unit(100, "Gm")
  13877. },
  13878. {
  13879. name: "Examacro",
  13880. height: math.unit(100, "Em")
  13881. },
  13882. {
  13883. name: "Godly",
  13884. height: math.unit(10000, "Ym")
  13885. },
  13886. {
  13887. name: "Beyond Godly",
  13888. height: math.unit(25, "multiverses")
  13889. },
  13890. ]
  13891. ))
  13892. characterMakers.push(() => makeCharacter(
  13893. { name: "Sammy Mouse", species: ["mouse"], tags: ["anthro"] },
  13894. {
  13895. fluide_tame: {
  13896. height: math.unit(5, "feet"),
  13897. name: "Tame",
  13898. image: {
  13899. source: "./media/characters/sammy-mouse/fluide-tame.svg",
  13900. extra: 1655/1574,
  13901. bottom: 231/1886
  13902. },
  13903. form: "fluide",
  13904. default: true
  13905. },
  13906. fluide_nude: {
  13907. height: math.unit(5, "feet"),
  13908. name: "Nude",
  13909. image: {
  13910. source: "./media/characters/sammy-mouse/fluide-nude.svg",
  13911. extra: 1655/1574,
  13912. bottom: 231/1886
  13913. },
  13914. form: "fluide",
  13915. },
  13916. male_tame: {
  13917. height: math.unit(5, "feet"),
  13918. name: "Tame",
  13919. image: {
  13920. source: "./media/characters/sammy-mouse/male-tame.svg",
  13921. extra: 1655/1574,
  13922. bottom: 231/1886
  13923. },
  13924. form: "male",
  13925. default: true
  13926. },
  13927. male_nude: {
  13928. height: math.unit(5, "feet"),
  13929. name: "Nude",
  13930. image: {
  13931. source: "./media/characters/sammy-mouse/male-nude.svg",
  13932. extra: 1655/1574,
  13933. bottom: 231/1886
  13934. },
  13935. form: "male",
  13936. },
  13937. female_nude: {
  13938. height: math.unit(5, "feet"),
  13939. name: "Nude",
  13940. image: {
  13941. source: "./media/characters/sammy-mouse/female-nude.svg",
  13942. extra: 1655/1574,
  13943. bottom: 231/1886
  13944. },
  13945. form: "female",
  13946. default: true
  13947. },
  13948. mouth: {
  13949. height: math.unit(0.32, "feet"),
  13950. name: "Mouth",
  13951. image: {
  13952. source: "./media/characters/sammy-mouse/mouth.svg"
  13953. },
  13954. allForms: true
  13955. },
  13956. paw: {
  13957. height: math.unit(0.42, "feet"),
  13958. name: "Paw",
  13959. image: {
  13960. source: "./media/characters/sammy-mouse/paw.svg"
  13961. },
  13962. allForms: true
  13963. },
  13964. },
  13965. [
  13966. {
  13967. name: "Micro",
  13968. height: math.unit(5, "inches"),
  13969. allForms: true
  13970. },
  13971. {
  13972. name: "Normal",
  13973. height: math.unit(5, "feet"),
  13974. default: true,
  13975. allForms: true
  13976. },
  13977. {
  13978. name: "Macro",
  13979. height: math.unit(60, "feet"),
  13980. allForms: true
  13981. },
  13982. ],
  13983. {
  13984. "fluide": {
  13985. name: "Fluide",
  13986. default: true
  13987. },
  13988. "male": {
  13989. name: "Male",
  13990. },
  13991. "female": {
  13992. name: "Female",
  13993. },
  13994. }
  13995. ))
  13996. characterMakers.push(() => makeCharacter(
  13997. { name: "Kole", species: ["kobold"], tags: ["anthro"] },
  13998. {
  13999. front: {
  14000. height: math.unit(4, "feet"),
  14001. weight: math.unit(50, "lb"),
  14002. name: "Front",
  14003. image: {
  14004. source: "./media/characters/kole/front.svg",
  14005. extra: 1423 / 1303,
  14006. bottom: 0.025
  14007. }
  14008. },
  14009. back: {
  14010. height: math.unit(4, "feet"),
  14011. weight: math.unit(50, "lb"),
  14012. name: "Back",
  14013. image: {
  14014. source: "./media/characters/kole/back.svg",
  14015. extra: 1426 / 1280,
  14016. bottom: 0.02
  14017. }
  14018. },
  14019. },
  14020. [
  14021. {
  14022. name: "Normal",
  14023. height: math.unit(4, "feet"),
  14024. default: true
  14025. },
  14026. ]
  14027. ))
  14028. characterMakers.push(() => makeCharacter(
  14029. { name: "Rufran", species: ["moth", "avian", "kobold"], tags: ["anthro"] },
  14030. {
  14031. front: {
  14032. height: math.unit(2.5, "feet"),
  14033. weight: math.unit(32, "lb"),
  14034. name: "Front",
  14035. image: {
  14036. source: "./media/characters/rufran/front.svg",
  14037. extra: 1313/885,
  14038. bottom: 94/1407
  14039. }
  14040. },
  14041. side: {
  14042. height: math.unit(2.5, "feet"),
  14043. weight: math.unit(32, "lb"),
  14044. name: "Side",
  14045. image: {
  14046. source: "./media/characters/rufran/side.svg",
  14047. extra: 1109/852,
  14048. bottom: 118/1227
  14049. }
  14050. },
  14051. back: {
  14052. height: math.unit(2.5, "feet"),
  14053. weight: math.unit(32, "lb"),
  14054. name: "Back",
  14055. image: {
  14056. source: "./media/characters/rufran/back.svg",
  14057. extra: 1280/878,
  14058. bottom: 131/1411
  14059. }
  14060. },
  14061. mouth: {
  14062. height: math.unit(1.13, "feet"),
  14063. name: "Mouth",
  14064. image: {
  14065. source: "./media/characters/rufran/mouth.svg"
  14066. }
  14067. },
  14068. foot: {
  14069. height: math.unit(1.33, "feet"),
  14070. name: "Foot",
  14071. image: {
  14072. source: "./media/characters/rufran/foot.svg"
  14073. }
  14074. },
  14075. koboldFront: {
  14076. height: math.unit(2 + 6 / 12, "feet"),
  14077. weight: math.unit(20, "lb"),
  14078. name: "Front (Kobold)",
  14079. image: {
  14080. source: "./media/characters/rufran/kobold-front.svg",
  14081. extra: 2041 / 1839,
  14082. bottom: 0.055
  14083. }
  14084. },
  14085. koboldBack: {
  14086. height: math.unit(2 + 6 / 12, "feet"),
  14087. weight: math.unit(20, "lb"),
  14088. name: "Back (Kobold)",
  14089. image: {
  14090. source: "./media/characters/rufran/kobold-back.svg",
  14091. extra: 2054 / 1839,
  14092. bottom: 0.01
  14093. }
  14094. },
  14095. koboldHand: {
  14096. height: math.unit(0.2166, "meters"),
  14097. name: "Hand (Kobold)",
  14098. image: {
  14099. source: "./media/characters/rufran/kobold-hand.svg"
  14100. }
  14101. },
  14102. koboldFoot: {
  14103. height: math.unit(0.185, "meters"),
  14104. name: "Foot (Kobold)",
  14105. image: {
  14106. source: "./media/characters/rufran/kobold-foot.svg"
  14107. }
  14108. },
  14109. },
  14110. [
  14111. {
  14112. name: "Micro",
  14113. height: math.unit(1, "inch")
  14114. },
  14115. {
  14116. name: "Normal",
  14117. height: math.unit(2 + 6 / 12, "feet"),
  14118. default: true
  14119. },
  14120. {
  14121. name: "Big",
  14122. height: math.unit(60, "feet")
  14123. },
  14124. {
  14125. name: "Macro",
  14126. height: math.unit(325, "feet")
  14127. },
  14128. ]
  14129. ))
  14130. characterMakers.push(() => makeCharacter(
  14131. { name: "Chip", species: ["espurr"], tags: ["anthro"] },
  14132. {
  14133. front: {
  14134. height: math.unit(0.3, "meters"),
  14135. weight: math.unit(3.5, "kg"),
  14136. name: "Front",
  14137. image: {
  14138. source: "./media/characters/chip/front.svg",
  14139. extra: 748 / 674
  14140. }
  14141. },
  14142. },
  14143. [
  14144. {
  14145. name: "Micro",
  14146. height: math.unit(1, "inch"),
  14147. default: true
  14148. },
  14149. ]
  14150. ))
  14151. characterMakers.push(() => makeCharacter(
  14152. { name: "Torvid", species: ["gryphon"], tags: ["feral"] },
  14153. {
  14154. side: {
  14155. height: math.unit(2.3, "meters"),
  14156. weight: math.unit(3500, "lb"),
  14157. name: "Side",
  14158. image: {
  14159. source: "./media/characters/torvid/side.svg",
  14160. extra: 1972 / 722,
  14161. bottom: 0.035
  14162. }
  14163. },
  14164. },
  14165. [
  14166. {
  14167. name: "Normal",
  14168. height: math.unit(2.3, "meters"),
  14169. default: true
  14170. },
  14171. ]
  14172. ))
  14173. characterMakers.push(() => makeCharacter(
  14174. { name: "Susan", species: ["goodra"], tags: ["anthro"] },
  14175. {
  14176. front: {
  14177. height: math.unit(2, "meters"),
  14178. weight: math.unit(150.5, "kg"),
  14179. name: "Front",
  14180. image: {
  14181. source: "./media/characters/susan/front.svg",
  14182. extra: 693 / 635,
  14183. bottom: 0.05
  14184. }
  14185. },
  14186. },
  14187. [
  14188. {
  14189. name: "Megamacro",
  14190. height: math.unit(505, "miles"),
  14191. default: true
  14192. },
  14193. ]
  14194. ))
  14195. characterMakers.push(() => makeCharacter(
  14196. { name: "Raindrops", species: ["fox"], tags: ["anthro"] },
  14197. {
  14198. front: {
  14199. height: math.unit(6, "feet"),
  14200. weight: math.unit(150, "lb"),
  14201. name: "Front",
  14202. image: {
  14203. source: "./media/characters/raindrops/front.svg",
  14204. extra: 2655 / 2461,
  14205. bottom: 49 / 2705
  14206. }
  14207. },
  14208. back: {
  14209. height: math.unit(6, "feet"),
  14210. weight: math.unit(150, "lb"),
  14211. name: "Back",
  14212. image: {
  14213. source: "./media/characters/raindrops/back.svg",
  14214. extra: 2574 / 2400,
  14215. bottom: 65 / 2634
  14216. }
  14217. },
  14218. },
  14219. [
  14220. {
  14221. name: "Micro",
  14222. height: math.unit(6, "inches")
  14223. },
  14224. {
  14225. name: "Normal",
  14226. height: math.unit(6 + 2 / 12, "feet")
  14227. },
  14228. {
  14229. name: "Macro",
  14230. height: math.unit(131, "feet"),
  14231. default: true
  14232. },
  14233. {
  14234. name: "Megamacro",
  14235. height: math.unit(15, "miles")
  14236. },
  14237. {
  14238. name: "Gigamacro",
  14239. height: math.unit(4000, "miles")
  14240. },
  14241. {
  14242. name: "Teramacro",
  14243. height: math.unit(315000, "miles")
  14244. },
  14245. ]
  14246. ))
  14247. characterMakers.push(() => makeCharacter(
  14248. { name: "Tezwa", species: ["lion"], tags: ["anthro"] },
  14249. {
  14250. front: {
  14251. height: math.unit(2.794, "meters"),
  14252. weight: math.unit(325, "kg"),
  14253. name: "Front",
  14254. image: {
  14255. source: "./media/characters/tezwa/front.svg",
  14256. extra: 2083 / 1906,
  14257. bottom: 0.031
  14258. }
  14259. },
  14260. foot: {
  14261. height: math.unit(0.687, "meters"),
  14262. name: "Foot",
  14263. image: {
  14264. source: "./media/characters/tezwa/foot.svg"
  14265. }
  14266. },
  14267. },
  14268. [
  14269. {
  14270. name: "Normal",
  14271. height: math.unit(9 + 2 / 12, "feet"),
  14272. default: true
  14273. },
  14274. ]
  14275. ))
  14276. characterMakers.push(() => makeCharacter(
  14277. { name: "Typhus", species: ["typhlosion", "demon"], tags: ["anthro"] },
  14278. {
  14279. front: {
  14280. height: math.unit(58, "feet"),
  14281. weight: math.unit(89000, "lb"),
  14282. name: "Front",
  14283. image: {
  14284. source: "./media/characters/typhus/front.svg",
  14285. extra: 816 / 800,
  14286. bottom: 0.065
  14287. }
  14288. },
  14289. },
  14290. [
  14291. {
  14292. name: "Macro",
  14293. height: math.unit(58, "feet"),
  14294. default: true
  14295. },
  14296. ]
  14297. ))
  14298. characterMakers.push(() => makeCharacter(
  14299. { name: "Lyra Von Wulf", species: ["snake"], tags: ["anthro"] },
  14300. {
  14301. front: {
  14302. height: math.unit(12, "feet"),
  14303. weight: math.unit(6, "tonnes"),
  14304. name: "Front",
  14305. image: {
  14306. source: "./media/characters/lyra-von-wulf/front.svg",
  14307. extra: 1,
  14308. bottom: 0.10
  14309. }
  14310. },
  14311. frontMecha: {
  14312. height: math.unit(12, "feet"),
  14313. weight: math.unit(12, "tonnes"),
  14314. name: "Front (Mecha)",
  14315. image: {
  14316. source: "./media/characters/lyra-von-wulf/front-mecha.svg",
  14317. extra: 1,
  14318. bottom: 0.042
  14319. }
  14320. },
  14321. maw: {
  14322. height: math.unit(2.2, "feet"),
  14323. name: "Maw",
  14324. image: {
  14325. source: "./media/characters/lyra-von-wulf/maw.svg"
  14326. }
  14327. },
  14328. },
  14329. [
  14330. {
  14331. name: "Normal",
  14332. height: math.unit(12, "feet"),
  14333. default: true
  14334. },
  14335. {
  14336. name: "Classic",
  14337. height: math.unit(50, "feet")
  14338. },
  14339. {
  14340. name: "Macro",
  14341. height: math.unit(500, "feet")
  14342. },
  14343. {
  14344. name: "Megamacro",
  14345. height: math.unit(1, "mile")
  14346. },
  14347. {
  14348. name: "Gigamacro",
  14349. height: math.unit(400, "miles")
  14350. },
  14351. {
  14352. name: "Teramacro",
  14353. height: math.unit(22000, "miles")
  14354. },
  14355. {
  14356. name: "Solarmacro",
  14357. height: math.unit(8600000, "miles")
  14358. },
  14359. {
  14360. name: "Galactic",
  14361. height: math.unit(1057000, "lightyears")
  14362. },
  14363. ]
  14364. ))
  14365. characterMakers.push(() => makeCharacter(
  14366. { name: "Dixon", species: ["canine"], tags: ["anthro"] },
  14367. {
  14368. front: {
  14369. height: math.unit(6 + 10 / 12, "feet"),
  14370. weight: math.unit(150, "lb"),
  14371. name: "Front",
  14372. image: {
  14373. source: "./media/characters/dixon/front.svg",
  14374. extra: 3361 / 3209,
  14375. bottom: 0.01
  14376. }
  14377. },
  14378. },
  14379. [
  14380. {
  14381. name: "Normal",
  14382. height: math.unit(6 + 10 / 12, "feet"),
  14383. default: true
  14384. },
  14385. {
  14386. name: "Big",
  14387. height: math.unit(12, "meters")
  14388. },
  14389. {
  14390. name: "Macro",
  14391. height: math.unit(500, "meters")
  14392. },
  14393. {
  14394. name: "Megamacro",
  14395. height: math.unit(2, "km")
  14396. },
  14397. ]
  14398. ))
  14399. characterMakers.push(() => makeCharacter(
  14400. { name: "Kauko", species: ["wolf", "king-cheetah"], tags: ["anthro"] },
  14401. {
  14402. kingCheetah_front: {
  14403. height: math.unit(1.85, "meters"),
  14404. weight: math.unit(68, "kg"),
  14405. name: "Front",
  14406. image: {
  14407. source: "./media/characters/kauko/king-cheetah-front.svg",
  14408. extra: 1007/972,
  14409. bottom: 35/1042
  14410. },
  14411. form: "king-cheetah",
  14412. default: true
  14413. },
  14414. kingCheetah_back: {
  14415. height: math.unit(1.85, "meters"),
  14416. weight: math.unit(68, "kg"),
  14417. name: "Back",
  14418. image: {
  14419. source: "./media/characters/kauko/king-cheetah-back.svg",
  14420. extra: 1015/980,
  14421. bottom: 11/1026
  14422. },
  14423. form: "king-cheetah",
  14424. },
  14425. kingCheetah_hand: {
  14426. height: math.unit(0.23, "meters"),
  14427. name: "Hand",
  14428. image: {
  14429. source: "./media/characters/kauko/king-cheetah-hand.svg"
  14430. },
  14431. form: "king-cheetah",
  14432. },
  14433. kingCheetah_paw: {
  14434. height: math.unit(0.38, "meters"),
  14435. name: "Paw",
  14436. image: {
  14437. source: "./media/characters/kauko/king-cheetah-paw.svg"
  14438. },
  14439. form: "king-cheetah",
  14440. },
  14441. kingCheetah_nape: {
  14442. height: math.unit(0.23, "meters"),
  14443. name: "Nape",
  14444. image: {
  14445. source: "./media/characters/kauko/king-cheetah-nape.svg"
  14446. },
  14447. form: "king-cheetah",
  14448. },
  14449. wolf_front: {
  14450. height: math.unit(1.88, "meters"),
  14451. weight: math.unit(74, "kg"),
  14452. name: "Front",
  14453. image: {
  14454. source: "./media/characters/kauko/wolf-front.svg",
  14455. extra: 952/908,
  14456. bottom: 64/1016
  14457. },
  14458. form: "wolf",
  14459. default: true
  14460. },
  14461. wolf_dressed: {
  14462. height: math.unit(1.88, "meters"),
  14463. weight: math.unit(74, "kg"),
  14464. name: "Dressed",
  14465. image: {
  14466. source: "./media/characters/kauko/wolf-dressed.svg",
  14467. extra: 963/916,
  14468. bottom: 101/1064
  14469. },
  14470. form: "wolf",
  14471. },
  14472. wolf_hand: {
  14473. height: math.unit(0.3, "meters"),
  14474. name: "Hand",
  14475. image: {
  14476. source: "./media/characters/kauko/wolf-hand.svg"
  14477. },
  14478. form: "wolf",
  14479. },
  14480. wolf_paw: {
  14481. height: math.unit(0.407, "meters"),
  14482. name: "Paw",
  14483. image: {
  14484. source: "./media/characters/kauko/wolf-paw.svg"
  14485. },
  14486. form: "wolf",
  14487. },
  14488. wolf_nape: {
  14489. height: math.unit(0.25, "meters"),
  14490. name: "Nape",
  14491. image: {
  14492. source: "./media/characters/kauko/wolf-nape.svg"
  14493. },
  14494. form: "wolf",
  14495. },
  14496. },
  14497. [
  14498. {
  14499. name: "Normal",
  14500. height: math.unit(1.85, "m"),
  14501. default: true,
  14502. form: "king-cheetah"
  14503. },
  14504. {
  14505. name: "Normal",
  14506. height: math.unit(1.88, "m"),
  14507. default: true,
  14508. form: "wolf"
  14509. },
  14510. ],
  14511. {
  14512. "king-cheetah": {
  14513. name: "King Cheetah",
  14514. default: true
  14515. },
  14516. "wolf": {
  14517. name: "Wolf",
  14518. },
  14519. }
  14520. ))
  14521. characterMakers.push(() => makeCharacter(
  14522. { name: "Varg", species: ["dragon"], tags: ["anthro"] },
  14523. {
  14524. frontSfw: {
  14525. height: math.unit(5, "meters"),
  14526. weight: math.unit(4250, "lb"),
  14527. name: "Front",
  14528. image: {
  14529. source: "./media/characters/varg/front-sfw.svg",
  14530. extra: 1103/1010,
  14531. bottom: 50/1153
  14532. },
  14533. form: "anthro",
  14534. default: true
  14535. },
  14536. backSfw: {
  14537. height: math.unit(5, "meters"),
  14538. weight: math.unit(4250, "lb"),
  14539. name: "Back",
  14540. image: {
  14541. source: "./media/characters/varg/back-sfw.svg",
  14542. extra: 1038/1022,
  14543. bottom: 36/1074
  14544. },
  14545. form: "anthro"
  14546. },
  14547. frontNsfw: {
  14548. height: math.unit(5, "meters"),
  14549. weight: math.unit(4250, "lb"),
  14550. name: "Front (NSFW)",
  14551. image: {
  14552. source: "./media/characters/varg/front-nsfw.svg",
  14553. extra: 1103/1010,
  14554. bottom: 50/1153
  14555. },
  14556. form: "anthro"
  14557. },
  14558. sheath: {
  14559. height: math.unit(3.8, "feet"),
  14560. weight: math.unit(90, "kilograms"),
  14561. name: "Sheath",
  14562. image: {
  14563. source: "./media/characters/varg/sheath.svg"
  14564. },
  14565. form: "anthro"
  14566. },
  14567. dick: {
  14568. height: math.unit(4.6, "feet"),
  14569. weight: math.unit(451, "kilograms"),
  14570. name: "Dick",
  14571. image: {
  14572. source: "./media/characters/varg/dick.svg"
  14573. },
  14574. form: "anthro"
  14575. },
  14576. feralSfw: {
  14577. height: math.unit(5, "meters"),
  14578. weight: math.unit(100000, "lb"),
  14579. name: "Side",
  14580. image: {
  14581. source: "./media/characters/varg/feral-sfw.svg",
  14582. extra: 1065/511,
  14583. bottom: 211/1276
  14584. },
  14585. form: "feral",
  14586. default: true
  14587. },
  14588. feralNsfw: {
  14589. height: math.unit(5, "meters"),
  14590. weight: math.unit(100000, "lb"),
  14591. name: "Side (NSFW)",
  14592. image: {
  14593. source: "./media/characters/varg/feral-nsfw.svg",
  14594. extra: 1065/511,
  14595. bottom: 211/1276
  14596. },
  14597. form: "feral",
  14598. },
  14599. feralSheath: {
  14600. height: math.unit(9.8, "feet"),
  14601. weight: math.unit(2000, "kilograms"),
  14602. name: "Sheath",
  14603. image: {
  14604. source: "./media/characters/varg/sheath.svg"
  14605. },
  14606. form: "feral"
  14607. },
  14608. feralDick: {
  14609. height: math.unit(13.11, "feet"),
  14610. weight: math.unit(10440, "kilograms"),
  14611. name: "Dick",
  14612. image: {
  14613. source: "./media/characters/varg/dick.svg"
  14614. },
  14615. form: "feral"
  14616. },
  14617. },
  14618. [
  14619. {
  14620. name: "Normal",
  14621. height: math.unit(5, "meters"),
  14622. form: "anthro"
  14623. },
  14624. {
  14625. name: "Macro",
  14626. height: math.unit(200, "meters"),
  14627. form: "anthro"
  14628. },
  14629. {
  14630. name: "Megamacro",
  14631. height: math.unit(20, "kilometers"),
  14632. form: "anthro"
  14633. },
  14634. {
  14635. name: "True Size",
  14636. height: math.unit(211, "km"),
  14637. form: "anthro",
  14638. default: true
  14639. },
  14640. {
  14641. name: "Gigamacro",
  14642. height: math.unit(1000, "km"),
  14643. form: "anthro"
  14644. },
  14645. {
  14646. name: "Gigamacro+",
  14647. height: math.unit(8000, "km"),
  14648. form: "anthro"
  14649. },
  14650. {
  14651. name: "Teramacro",
  14652. height: math.unit(1000000, "km"),
  14653. form: "anthro"
  14654. },
  14655. {
  14656. name: "Normal",
  14657. height: math.unit(5, "meters"),
  14658. form: "feral"
  14659. },
  14660. {
  14661. name: "Macro",
  14662. height: math.unit(200, "meters"),
  14663. form: "feral"
  14664. },
  14665. {
  14666. name: "Megamacro",
  14667. height: math.unit(20, "kilometers"),
  14668. form: "feral"
  14669. },
  14670. {
  14671. name: "True Size",
  14672. height: math.unit(211, "km"),
  14673. form: "feral",
  14674. default: true
  14675. },
  14676. {
  14677. name: "Gigamacro",
  14678. height: math.unit(1000, "km"),
  14679. form: "feral"
  14680. },
  14681. {
  14682. name: "Gigamacro+",
  14683. height: math.unit(8000, "km"),
  14684. form: "feral"
  14685. },
  14686. {
  14687. name: "Teramacro",
  14688. height: math.unit(1000000, "km"),
  14689. form: "feral"
  14690. },
  14691. ],
  14692. {
  14693. "anthro": {
  14694. name: "Anthro",
  14695. default: true
  14696. },
  14697. "feral": {
  14698. name: "Feral",
  14699. },
  14700. }
  14701. ))
  14702. characterMakers.push(() => makeCharacter(
  14703. { name: "Dayza", species: ["sergal"], tags: ["anthro"] },
  14704. {
  14705. front: {
  14706. height: math.unit(7 + 7 / 12, "feet"),
  14707. weight: math.unit(267, "lb"),
  14708. name: "Front",
  14709. image: {
  14710. source: "./media/characters/dayza/front.svg",
  14711. extra: 1262 / 1200,
  14712. bottom: 0.035
  14713. }
  14714. },
  14715. side: {
  14716. height: math.unit(7 + 7 / 12, "feet"),
  14717. weight: math.unit(267, "lb"),
  14718. name: "Side",
  14719. image: {
  14720. source: "./media/characters/dayza/side.svg",
  14721. extra: 1295 / 1245,
  14722. bottom: 0.05
  14723. }
  14724. },
  14725. back: {
  14726. height: math.unit(7 + 7 / 12, "feet"),
  14727. weight: math.unit(267, "lb"),
  14728. name: "Back",
  14729. image: {
  14730. source: "./media/characters/dayza/back.svg",
  14731. extra: 1241 / 1170
  14732. }
  14733. },
  14734. },
  14735. [
  14736. {
  14737. name: "Normal",
  14738. height: math.unit(7 + 7 / 12, "feet"),
  14739. default: true
  14740. },
  14741. {
  14742. name: "Macro",
  14743. height: math.unit(155, "feet")
  14744. },
  14745. ]
  14746. ))
  14747. characterMakers.push(() => makeCharacter(
  14748. { name: "Xanthos", species: ["xenomorph"], tags: ["anthro"] },
  14749. {
  14750. front: {
  14751. height: math.unit(6 + 5 / 12, "feet"),
  14752. weight: math.unit(160, "lb"),
  14753. name: "Front",
  14754. image: {
  14755. source: "./media/characters/xanthos/front.svg",
  14756. extra: 1,
  14757. bottom: 0.04
  14758. }
  14759. },
  14760. back: {
  14761. height: math.unit(6 + 5 / 12, "feet"),
  14762. weight: math.unit(160, "lb"),
  14763. name: "Back",
  14764. image: {
  14765. source: "./media/characters/xanthos/back.svg",
  14766. extra: 1,
  14767. bottom: 0.03
  14768. }
  14769. },
  14770. hand: {
  14771. height: math.unit(0.928, "feet"),
  14772. name: "Hand",
  14773. image: {
  14774. source: "./media/characters/xanthos/hand.svg"
  14775. }
  14776. },
  14777. foot: {
  14778. height: math.unit(1.286, "feet"),
  14779. name: "Foot",
  14780. image: {
  14781. source: "./media/characters/xanthos/foot.svg"
  14782. }
  14783. },
  14784. },
  14785. [
  14786. {
  14787. name: "Normal",
  14788. height: math.unit(6 + 5 / 12, "feet"),
  14789. default: true
  14790. },
  14791. {
  14792. name: "Normal+",
  14793. height: math.unit(6, "meters")
  14794. },
  14795. {
  14796. name: "Macro",
  14797. height: math.unit(40, "feet")
  14798. },
  14799. {
  14800. name: "Macro+",
  14801. height: math.unit(200, "meters")
  14802. },
  14803. {
  14804. name: "Megamacro",
  14805. height: math.unit(20, "km")
  14806. },
  14807. {
  14808. name: "Megamacro+",
  14809. height: math.unit(100, "km")
  14810. },
  14811. {
  14812. name: "Gigamacro",
  14813. height: math.unit(200, "megameters")
  14814. },
  14815. {
  14816. name: "Gigamacro+",
  14817. height: math.unit(1.5, "gigameters")
  14818. },
  14819. ]
  14820. ))
  14821. characterMakers.push(() => makeCharacter(
  14822. { name: "Grynn", species: ["charr"], tags: ["anthro"] },
  14823. {
  14824. front: {
  14825. height: math.unit(6 + 3 / 12, "feet"),
  14826. weight: math.unit(215, "lb"),
  14827. name: "Front",
  14828. image: {
  14829. source: "./media/characters/grynn/front.svg",
  14830. extra: 4627 / 4209,
  14831. bottom: 0.047
  14832. }
  14833. },
  14834. },
  14835. [
  14836. {
  14837. name: "Micro",
  14838. height: math.unit(6, "inches")
  14839. },
  14840. {
  14841. name: "Normal",
  14842. height: math.unit(6 + 3 / 12, "feet"),
  14843. default: true
  14844. },
  14845. {
  14846. name: "Big",
  14847. height: math.unit(104, "feet")
  14848. },
  14849. {
  14850. name: "Macro",
  14851. height: math.unit(944, "feet")
  14852. },
  14853. {
  14854. name: "Macro+",
  14855. height: math.unit(9480, "feet")
  14856. },
  14857. {
  14858. name: "Megamacro",
  14859. height: math.unit(78752, "feet")
  14860. },
  14861. {
  14862. name: "Megamacro+",
  14863. height: math.unit(630128, "feet")
  14864. },
  14865. {
  14866. name: "Megamacro++",
  14867. height: math.unit(3150695, "feet")
  14868. },
  14869. ]
  14870. ))
  14871. characterMakers.push(() => makeCharacter(
  14872. { name: "Mocha Aura", species: ["siberian-husky"], tags: ["anthro"] },
  14873. {
  14874. front: {
  14875. height: math.unit(7 + 5 / 12, "feet"),
  14876. weight: math.unit(450, "lb"),
  14877. name: "Front",
  14878. image: {
  14879. source: "./media/characters/mocha-aura/front.svg",
  14880. extra: 1907 / 1817,
  14881. bottom: 0.04
  14882. }
  14883. },
  14884. back: {
  14885. height: math.unit(7 + 5 / 12, "feet"),
  14886. weight: math.unit(450, "lb"),
  14887. name: "Back",
  14888. image: {
  14889. source: "./media/characters/mocha-aura/back.svg",
  14890. extra: 1900 / 1825,
  14891. bottom: 0.045
  14892. }
  14893. },
  14894. },
  14895. [
  14896. {
  14897. name: "Nano",
  14898. height: math.unit(1, "nm")
  14899. },
  14900. {
  14901. name: "Megamicro",
  14902. height: math.unit(1, "mm")
  14903. },
  14904. {
  14905. name: "Micro",
  14906. height: math.unit(3, "inches")
  14907. },
  14908. {
  14909. name: "Normal",
  14910. height: math.unit(7 + 5 / 12, "feet"),
  14911. default: true
  14912. },
  14913. {
  14914. name: "Macro",
  14915. height: math.unit(30, "feet")
  14916. },
  14917. {
  14918. name: "Megamacro",
  14919. height: math.unit(3500, "feet")
  14920. },
  14921. {
  14922. name: "Teramacro",
  14923. height: math.unit(500000, "miles")
  14924. },
  14925. {
  14926. name: "Petamacro",
  14927. height: math.unit(50000000000000000, "parsecs")
  14928. },
  14929. ]
  14930. ))
  14931. characterMakers.push(() => makeCharacter(
  14932. { name: "Ilisha Devya", species: ["alligator", "cobra", "deity"], tags: ["anthro"] },
  14933. {
  14934. front: {
  14935. height: math.unit(6, "feet"),
  14936. weight: math.unit(150, "lb"),
  14937. name: "Front",
  14938. image: {
  14939. source: "./media/characters/ilisha-devya/front.svg",
  14940. extra: 1053/1049,
  14941. bottom: 270/1323
  14942. }
  14943. },
  14944. back: {
  14945. height: math.unit(6, "feet"),
  14946. weight: math.unit(150, "lb"),
  14947. name: "Back",
  14948. image: {
  14949. source: "./media/characters/ilisha-devya/back.svg",
  14950. extra: 1131/1128,
  14951. bottom: 39/1170
  14952. }
  14953. },
  14954. },
  14955. [
  14956. {
  14957. name: "Macro",
  14958. height: math.unit(500, "feet"),
  14959. default: true
  14960. },
  14961. {
  14962. name: "Megamacro",
  14963. height: math.unit(10, "miles")
  14964. },
  14965. {
  14966. name: "Gigamacro",
  14967. height: math.unit(100000, "miles")
  14968. },
  14969. {
  14970. name: "Examacro",
  14971. height: math.unit(1e9, "lightyears")
  14972. },
  14973. {
  14974. name: "Omniversal",
  14975. height: math.unit(1e33, "lightyears")
  14976. },
  14977. {
  14978. name: "Beyond Infinite",
  14979. height: math.unit(1e100, "lightyears")
  14980. },
  14981. ]
  14982. ))
  14983. characterMakers.push(() => makeCharacter(
  14984. { name: "Mira", species: ["dragon"], tags: ["anthro"] },
  14985. {
  14986. Side: {
  14987. height: math.unit(6, "feet"),
  14988. weight: math.unit(150, "lb"),
  14989. name: "Side",
  14990. image: {
  14991. source: "./media/characters/mira/side.svg",
  14992. extra: 900 / 799,
  14993. bottom: 0.02
  14994. }
  14995. },
  14996. },
  14997. [
  14998. {
  14999. name: "Human Size",
  15000. height: math.unit(6, "feet")
  15001. },
  15002. {
  15003. name: "Macro",
  15004. height: math.unit(100, "feet"),
  15005. default: true
  15006. },
  15007. {
  15008. name: "Megamacro",
  15009. height: math.unit(10, "miles")
  15010. },
  15011. {
  15012. name: "Gigamacro",
  15013. height: math.unit(25000, "miles")
  15014. },
  15015. {
  15016. name: "Teramacro",
  15017. height: math.unit(300, "AU")
  15018. },
  15019. {
  15020. name: "Full Size",
  15021. height: math.unit(4.5e10, "lightyears")
  15022. },
  15023. ]
  15024. ))
  15025. characterMakers.push(() => makeCharacter(
  15026. { name: "Holly", species: ["hyena"], tags: ["anthro"] },
  15027. {
  15028. front: {
  15029. height: math.unit(6, "feet"),
  15030. weight: math.unit(150, "lb"),
  15031. name: "Front",
  15032. image: {
  15033. source: "./media/characters/holly/front.svg",
  15034. extra: 639 / 606
  15035. }
  15036. },
  15037. back: {
  15038. height: math.unit(6, "feet"),
  15039. weight: math.unit(150, "lb"),
  15040. name: "Back",
  15041. image: {
  15042. source: "./media/characters/holly/back.svg",
  15043. extra: 623 / 598
  15044. }
  15045. },
  15046. frontWorking: {
  15047. height: math.unit(6, "feet"),
  15048. weight: math.unit(150, "lb"),
  15049. name: "Front (Working)",
  15050. image: {
  15051. source: "./media/characters/holly/front-working.svg",
  15052. extra: 607 / 577,
  15053. bottom: 0.048
  15054. }
  15055. },
  15056. },
  15057. [
  15058. {
  15059. name: "Normal",
  15060. height: math.unit(12 + 3 / 12, "feet"),
  15061. default: true
  15062. },
  15063. ]
  15064. ))
  15065. characterMakers.push(() => makeCharacter(
  15066. { name: "Porter", species: ["bernese-mountain-dog"], tags: ["anthro"] },
  15067. {
  15068. front: {
  15069. height: math.unit(6, "feet"),
  15070. weight: math.unit(150, "lb"),
  15071. name: "Front",
  15072. image: {
  15073. source: "./media/characters/porter/front.svg",
  15074. extra: 1,
  15075. bottom: 0.01
  15076. }
  15077. },
  15078. frontRobes: {
  15079. height: math.unit(6, "feet"),
  15080. weight: math.unit(150, "lb"),
  15081. name: "Front (Robes)",
  15082. image: {
  15083. source: "./media/characters/porter/front-robes.svg",
  15084. extra: 1.01,
  15085. bottom: 0.01
  15086. }
  15087. },
  15088. },
  15089. [
  15090. {
  15091. name: "Normal",
  15092. height: math.unit(11 + 9 / 12, "feet"),
  15093. default: true
  15094. },
  15095. ]
  15096. ))
  15097. characterMakers.push(() => makeCharacter(
  15098. { name: "Lucy", species: ["reshiram"], tags: ["anthro"] },
  15099. {
  15100. legendary: {
  15101. height: math.unit(6, "feet"),
  15102. weight: math.unit(150, "lb"),
  15103. name: "Legendary",
  15104. image: {
  15105. source: "./media/characters/lucy/legendary.svg",
  15106. extra: 1355 / 1100,
  15107. bottom: 0.045
  15108. }
  15109. },
  15110. },
  15111. [
  15112. {
  15113. name: "Legendary",
  15114. height: math.unit(86882 * 2, "miles"),
  15115. default: true
  15116. },
  15117. ]
  15118. ))
  15119. characterMakers.push(() => makeCharacter(
  15120. { name: "Drusilla", species: ["grizzly-bear", "fox"], tags: ["anthro"] },
  15121. {
  15122. front: {
  15123. height: math.unit(6, "feet"),
  15124. weight: math.unit(150, "lb"),
  15125. name: "Front",
  15126. image: {
  15127. source: "./media/characters/drusilla/front.svg",
  15128. extra: 678 / 635,
  15129. bottom: 0.03
  15130. }
  15131. },
  15132. back: {
  15133. height: math.unit(6, "feet"),
  15134. weight: math.unit(150, "lb"),
  15135. name: "Back",
  15136. image: {
  15137. source: "./media/characters/drusilla/back.svg",
  15138. extra: 678 / 635,
  15139. bottom: 0.005
  15140. }
  15141. },
  15142. },
  15143. [
  15144. {
  15145. name: "Macro",
  15146. height: math.unit(100, "feet")
  15147. },
  15148. {
  15149. name: "Canon Height",
  15150. height: math.unit(2000, "feet"),
  15151. default: true
  15152. },
  15153. ]
  15154. ))
  15155. characterMakers.push(() => makeCharacter(
  15156. { name: "Renard Thatch", species: ["fox"], tags: ["anthro"] },
  15157. {
  15158. front: {
  15159. height: math.unit(6, "feet"),
  15160. weight: math.unit(180, "lb"),
  15161. name: "Front",
  15162. image: {
  15163. source: "./media/characters/renard-thatch/front.svg",
  15164. extra: 2411 / 2275,
  15165. bottom: 0.01
  15166. }
  15167. },
  15168. frontPosing: {
  15169. height: math.unit(6, "feet"),
  15170. weight: math.unit(180, "lb"),
  15171. name: "Front (Posing)",
  15172. image: {
  15173. source: "./media/characters/renard-thatch/front-posing.svg",
  15174. extra: 2381 / 2261,
  15175. bottom: 0.01
  15176. }
  15177. },
  15178. back: {
  15179. height: math.unit(6, "feet"),
  15180. weight: math.unit(180, "lb"),
  15181. name: "Back",
  15182. image: {
  15183. source: "./media/characters/renard-thatch/back.svg",
  15184. extra: 2428 / 2288
  15185. }
  15186. },
  15187. },
  15188. [
  15189. {
  15190. name: "Micro",
  15191. height: math.unit(3, "inches")
  15192. },
  15193. {
  15194. name: "Default",
  15195. height: math.unit(6, "feet"),
  15196. default: true
  15197. },
  15198. {
  15199. name: "Macro",
  15200. height: math.unit(75, "feet")
  15201. },
  15202. ]
  15203. ))
  15204. characterMakers.push(() => makeCharacter(
  15205. { name: "Sekvra", species: ["water-monitor"], tags: ["anthro"] },
  15206. {
  15207. front: {
  15208. height: math.unit(1450, "feet"),
  15209. weight: math.unit(1.21e6, "tons"),
  15210. name: "Front",
  15211. image: {
  15212. source: "./media/characters/sekvra/front.svg",
  15213. extra: 1193/1190,
  15214. bottom: 78/1271
  15215. }
  15216. },
  15217. side: {
  15218. height: math.unit(1450, "feet"),
  15219. weight: math.unit(1.21e6, "tons"),
  15220. name: "Side",
  15221. image: {
  15222. source: "./media/characters/sekvra/side.svg",
  15223. extra: 1193/1190,
  15224. bottom: 52/1245
  15225. }
  15226. },
  15227. back: {
  15228. height: math.unit(1450, "feet"),
  15229. weight: math.unit(1.21e6, "tons"),
  15230. name: "Back",
  15231. image: {
  15232. source: "./media/characters/sekvra/back.svg",
  15233. extra: 1219/1216,
  15234. bottom: 21/1240
  15235. }
  15236. },
  15237. frontClothed: {
  15238. height: math.unit(1450, "feet"),
  15239. weight: math.unit(1.21e6, "tons"),
  15240. name: "Front (Clothed)",
  15241. image: {
  15242. source: "./media/characters/sekvra/front-clothed.svg",
  15243. extra: 1192/1189,
  15244. bottom: 79/1271
  15245. }
  15246. },
  15247. },
  15248. [
  15249. {
  15250. name: "Macro",
  15251. height: math.unit(1450, "feet"),
  15252. default: true
  15253. },
  15254. {
  15255. name: "Megamacro",
  15256. height: math.unit(15000, "feet")
  15257. },
  15258. ]
  15259. ))
  15260. characterMakers.push(() => makeCharacter(
  15261. { name: "Carmine", species: ["otter"], tags: ["anthro"] },
  15262. {
  15263. front: {
  15264. height: math.unit(6, "feet"),
  15265. weight: math.unit(150, "lb"),
  15266. name: "Front",
  15267. image: {
  15268. source: "./media/characters/carmine/front.svg",
  15269. extra: 1557/1538,
  15270. bottom: 68/1625
  15271. }
  15272. },
  15273. frontArmor: {
  15274. height: math.unit(6, "feet"),
  15275. weight: math.unit(150, "lb"),
  15276. name: "Front (Armor)",
  15277. image: {
  15278. source: "./media/characters/carmine/front-armor.svg",
  15279. extra: 1549/1530,
  15280. bottom: 82/1631
  15281. }
  15282. },
  15283. mouth: {
  15284. height: math.unit(0.55, "feet"),
  15285. name: "Mouth",
  15286. image: {
  15287. source: "./media/characters/carmine/mouth.svg"
  15288. }
  15289. },
  15290. hand: {
  15291. height: math.unit(1.05, "feet"),
  15292. name: "Hand",
  15293. image: {
  15294. source: "./media/characters/carmine/hand.svg"
  15295. }
  15296. },
  15297. foot: {
  15298. height: math.unit(0.6, "feet"),
  15299. name: "Foot",
  15300. image: {
  15301. source: "./media/characters/carmine/foot.svg"
  15302. }
  15303. },
  15304. },
  15305. [
  15306. {
  15307. name: "Large",
  15308. height: math.unit(1, "mile")
  15309. },
  15310. {
  15311. name: "Huge",
  15312. height: math.unit(40, "miles"),
  15313. default: true
  15314. },
  15315. {
  15316. name: "Colossal",
  15317. height: math.unit(2500, "miles")
  15318. },
  15319. ]
  15320. ))
  15321. characterMakers.push(() => makeCharacter(
  15322. { name: "Elyssia", species: ["banchofossa"], tags: ["anthro"] },
  15323. {
  15324. front: {
  15325. height: math.unit(6, "feet"),
  15326. weight: math.unit(150, "lb"),
  15327. name: "Front",
  15328. image: {
  15329. source: "./media/characters/elyssia/front.svg",
  15330. extra: 2201 / 2035,
  15331. bottom: 0.05
  15332. }
  15333. },
  15334. frontClothed: {
  15335. height: math.unit(6, "feet"),
  15336. weight: math.unit(150, "lb"),
  15337. name: "Front (Clothed)",
  15338. image: {
  15339. source: "./media/characters/elyssia/front-clothed.svg",
  15340. extra: 2201 / 2035,
  15341. bottom: 0.05
  15342. }
  15343. },
  15344. back: {
  15345. height: math.unit(6, "feet"),
  15346. weight: math.unit(150, "lb"),
  15347. name: "Back",
  15348. image: {
  15349. source: "./media/characters/elyssia/back.svg",
  15350. extra: 2201 / 2035,
  15351. bottom: 0.013
  15352. }
  15353. },
  15354. },
  15355. [
  15356. {
  15357. name: "Smaller",
  15358. height: math.unit(150, "feet")
  15359. },
  15360. {
  15361. name: "Standard",
  15362. height: math.unit(1400, "feet"),
  15363. default: true
  15364. },
  15365. {
  15366. name: "Distracted",
  15367. height: math.unit(15000, "feet")
  15368. },
  15369. ]
  15370. ))
  15371. characterMakers.push(() => makeCharacter(
  15372. { name: "Geno Maxwell", species: ["kirin"], tags: ["anthro"] },
  15373. {
  15374. front: {
  15375. height: math.unit(7 + 4/12, "feet"),
  15376. weight: math.unit(690, "lb"),
  15377. name: "Front",
  15378. image: {
  15379. source: "./media/characters/geno-maxwell/front.svg",
  15380. extra: 984/856,
  15381. bottom: 87/1071
  15382. }
  15383. },
  15384. back: {
  15385. height: math.unit(7 + 4/12, "feet"),
  15386. weight: math.unit(690, "lb"),
  15387. name: "Back",
  15388. image: {
  15389. source: "./media/characters/geno-maxwell/back.svg",
  15390. extra: 981/854,
  15391. bottom: 57/1038
  15392. }
  15393. },
  15394. frontCostume: {
  15395. height: math.unit(7 + 4/12, "feet"),
  15396. weight: math.unit(690, "lb"),
  15397. name: "Front (Costume)",
  15398. image: {
  15399. source: "./media/characters/geno-maxwell/front-costume.svg",
  15400. extra: 984/856,
  15401. bottom: 87/1071
  15402. }
  15403. },
  15404. backcostume: {
  15405. height: math.unit(7 + 4/12, "feet"),
  15406. weight: math.unit(690, "lb"),
  15407. name: "Back (Costume)",
  15408. image: {
  15409. source: "./media/characters/geno-maxwell/back-costume.svg",
  15410. extra: 981/854,
  15411. bottom: 57/1038
  15412. }
  15413. },
  15414. },
  15415. [
  15416. {
  15417. name: "Micro",
  15418. height: math.unit(3, "inches")
  15419. },
  15420. {
  15421. name: "Normal",
  15422. height: math.unit(7 + 4 / 12, "feet"),
  15423. default: true
  15424. },
  15425. {
  15426. name: "Macro",
  15427. height: math.unit(220, "feet")
  15428. },
  15429. {
  15430. name: "Megamacro",
  15431. height: math.unit(11, "miles")
  15432. },
  15433. ]
  15434. ))
  15435. characterMakers.push(() => makeCharacter(
  15436. { name: "Regena Maxwell", species: ["kirin"], tags: ["anthro"] },
  15437. {
  15438. front: {
  15439. height: math.unit(7 + 4/12, "feet"),
  15440. weight: math.unit(750, "lb"),
  15441. name: "Front",
  15442. image: {
  15443. source: "./media/characters/regena-maxwell/front.svg",
  15444. extra: 984/856,
  15445. bottom: 87/1071
  15446. }
  15447. },
  15448. back: {
  15449. height: math.unit(7 + 4/12, "feet"),
  15450. weight: math.unit(750, "lb"),
  15451. name: "Back",
  15452. image: {
  15453. source: "./media/characters/regena-maxwell/back.svg",
  15454. extra: 981/854,
  15455. bottom: 57/1038
  15456. }
  15457. },
  15458. frontCostume: {
  15459. height: math.unit(7 + 4/12, "feet"),
  15460. weight: math.unit(750, "lb"),
  15461. name: "Front (Costume)",
  15462. image: {
  15463. source: "./media/characters/regena-maxwell/front-costume.svg",
  15464. extra: 984/856,
  15465. bottom: 87/1071
  15466. }
  15467. },
  15468. backcostume: {
  15469. height: math.unit(7 + 4/12, "feet"),
  15470. weight: math.unit(750, "lb"),
  15471. name: "Back (Costume)",
  15472. image: {
  15473. source: "./media/characters/regena-maxwell/back-costume.svg",
  15474. extra: 981/854,
  15475. bottom: 57/1038
  15476. }
  15477. },
  15478. },
  15479. [
  15480. {
  15481. name: "Normal",
  15482. height: math.unit(7 + 4 / 12, "feet"),
  15483. default: true
  15484. },
  15485. {
  15486. name: "Macro",
  15487. height: math.unit(220, "feet")
  15488. },
  15489. {
  15490. name: "Megamacro",
  15491. height: math.unit(11, "miles")
  15492. },
  15493. ]
  15494. ))
  15495. characterMakers.push(() => makeCharacter(
  15496. { name: "XGlidingDragonX", species: ["arcanine", "dragon", "phoenix"], tags: ["anthro"] },
  15497. {
  15498. front: {
  15499. height: math.unit(6, "feet"),
  15500. weight: math.unit(150, "lb"),
  15501. name: "Front",
  15502. image: {
  15503. source: "./media/characters/x-gliding-dragon-x/front.svg",
  15504. extra: 860 / 690,
  15505. bottom: 0.03
  15506. }
  15507. },
  15508. },
  15509. [
  15510. {
  15511. name: "Normal",
  15512. height: math.unit(1.7, "meters"),
  15513. default: true
  15514. },
  15515. ]
  15516. ))
  15517. characterMakers.push(() => makeCharacter(
  15518. { name: "Quilly", species: ["quilava"], tags: ["anthro"] },
  15519. {
  15520. front: {
  15521. height: math.unit(6, "feet"),
  15522. weight: math.unit(150, "lb"),
  15523. name: "Front",
  15524. image: {
  15525. source: "./media/characters/quilly/front.svg",
  15526. extra: 890 / 776
  15527. }
  15528. },
  15529. },
  15530. [
  15531. {
  15532. name: "Gigamacro",
  15533. height: math.unit(404090, "miles"),
  15534. default: true
  15535. },
  15536. ]
  15537. ))
  15538. characterMakers.push(() => makeCharacter(
  15539. { name: "Tempest", species: ["lugia"], tags: ["anthro"] },
  15540. {
  15541. front: {
  15542. height: math.unit(7 + 8 / 12, "feet"),
  15543. weight: math.unit(350, "lb"),
  15544. name: "Front",
  15545. image: {
  15546. source: "./media/characters/tempest/front.svg",
  15547. extra: 1175 / 1086,
  15548. bottom: 0.02
  15549. }
  15550. },
  15551. },
  15552. [
  15553. {
  15554. name: "Normal",
  15555. height: math.unit(7 + 8 / 12, "feet"),
  15556. default: true
  15557. },
  15558. ]
  15559. ))
  15560. characterMakers.push(() => makeCharacter(
  15561. { name: "Rodger", species: ["mouse"], tags: ["anthro"] },
  15562. {
  15563. side: {
  15564. height: math.unit(4 + 5 / 12, "feet"),
  15565. weight: math.unit(80, "lb"),
  15566. name: "Side",
  15567. image: {
  15568. source: "./media/characters/rodger/side.svg",
  15569. extra: 1235 / 1118
  15570. }
  15571. },
  15572. },
  15573. [
  15574. {
  15575. name: "Micro",
  15576. height: math.unit(1, "inch")
  15577. },
  15578. {
  15579. name: "Normal",
  15580. height: math.unit(4 + 5 / 12, "feet"),
  15581. default: true
  15582. },
  15583. {
  15584. name: "Macro",
  15585. height: math.unit(120, "feet")
  15586. },
  15587. ]
  15588. ))
  15589. characterMakers.push(() => makeCharacter(
  15590. { name: "Danyel", species: ["dragon"], tags: ["anthro"] },
  15591. {
  15592. front: {
  15593. height: math.unit(6, "feet"),
  15594. weight: math.unit(150, "lb"),
  15595. name: "Front",
  15596. image: {
  15597. source: "./media/characters/danyel/front.svg",
  15598. extra: 1185 / 1123,
  15599. bottom: 0.05
  15600. }
  15601. },
  15602. },
  15603. [
  15604. {
  15605. name: "Shrunken",
  15606. height: math.unit(0.5, "mm")
  15607. },
  15608. {
  15609. name: "Micro",
  15610. height: math.unit(1, "mm"),
  15611. default: true
  15612. },
  15613. {
  15614. name: "Upsized",
  15615. height: math.unit(5 + 5 / 12, "feet")
  15616. },
  15617. ]
  15618. ))
  15619. characterMakers.push(() => makeCharacter(
  15620. { name: "Vivian Bijoux", species: ["seviper"], tags: ["anthro"] },
  15621. {
  15622. front: {
  15623. height: math.unit(5 + 6 / 12, "feet"),
  15624. weight: math.unit(200, "lb"),
  15625. name: "Front",
  15626. image: {
  15627. source: "./media/characters/vivian-bijoux/front.svg",
  15628. extra: 1217/1209,
  15629. bottom: 76/1293
  15630. }
  15631. },
  15632. back: {
  15633. height: math.unit(5 + 6 / 12, "feet"),
  15634. weight: math.unit(200, "lb"),
  15635. name: "Back",
  15636. image: {
  15637. source: "./media/characters/vivian-bijoux/back.svg",
  15638. extra: 1214/1208,
  15639. bottom: 51/1265
  15640. }
  15641. },
  15642. dressed: {
  15643. height: math.unit(5 + 6 / 12, "feet"),
  15644. weight: math.unit(200, "lb"),
  15645. name: "Dressed",
  15646. image: {
  15647. source: "./media/characters/vivian-bijoux/dressed.svg",
  15648. extra: 1217/1209,
  15649. bottom: 76/1293
  15650. }
  15651. },
  15652. },
  15653. [
  15654. {
  15655. name: "Normal",
  15656. height: math.unit(5 + 6 / 12, "feet"),
  15657. default: true
  15658. },
  15659. {
  15660. name: "Bad Dream",
  15661. height: math.unit(500, "feet")
  15662. },
  15663. {
  15664. name: "Nightmare",
  15665. height: math.unit(500, "miles")
  15666. },
  15667. ]
  15668. ))
  15669. characterMakers.push(() => makeCharacter(
  15670. { name: "Zeta", species: ["bear", "otter"], tags: ["anthro"] },
  15671. {
  15672. front: {
  15673. height: math.unit(6 + 1 / 12, "feet"),
  15674. weight: math.unit(260, "lb"),
  15675. name: "Front",
  15676. image: {
  15677. source: "./media/characters/zeta/front.svg",
  15678. extra: 1968 / 1889,
  15679. bottom: 0.06
  15680. }
  15681. },
  15682. back: {
  15683. height: math.unit(6 + 1 / 12, "feet"),
  15684. weight: math.unit(260, "lb"),
  15685. name: "Back",
  15686. image: {
  15687. source: "./media/characters/zeta/back.svg",
  15688. extra: 1944 / 1858,
  15689. bottom: 0.03
  15690. }
  15691. },
  15692. hand: {
  15693. height: math.unit(1.112, "feet"),
  15694. name: "Hand",
  15695. image: {
  15696. source: "./media/characters/zeta/hand.svg"
  15697. }
  15698. },
  15699. foot: {
  15700. height: math.unit(1.48, "feet"),
  15701. name: "Foot",
  15702. image: {
  15703. source: "./media/characters/zeta/foot.svg"
  15704. }
  15705. },
  15706. },
  15707. [
  15708. {
  15709. name: "Micro",
  15710. height: math.unit(6, "inches")
  15711. },
  15712. {
  15713. name: "Normal",
  15714. height: math.unit(6 + 1 / 12, "feet"),
  15715. default: true
  15716. },
  15717. {
  15718. name: "Macro",
  15719. height: math.unit(20, "feet")
  15720. },
  15721. ]
  15722. ))
  15723. characterMakers.push(() => makeCharacter(
  15724. { name: "Jamie Larsen", species: ["rabbit"], tags: ["anthro"] },
  15725. {
  15726. front: {
  15727. height: math.unit(6, "feet"),
  15728. weight: math.unit(150, "lb"),
  15729. name: "Front",
  15730. image: {
  15731. source: "./media/characters/jamie-larsen/front.svg",
  15732. extra: 962 / 933,
  15733. bottom: 0.02
  15734. }
  15735. },
  15736. back: {
  15737. height: math.unit(6, "feet"),
  15738. weight: math.unit(150, "lb"),
  15739. name: "Back",
  15740. image: {
  15741. source: "./media/characters/jamie-larsen/back.svg",
  15742. extra: 997 / 946
  15743. }
  15744. },
  15745. },
  15746. [
  15747. {
  15748. name: "Macro",
  15749. height: math.unit(28 + 7 / 12, "feet"),
  15750. default: true
  15751. },
  15752. {
  15753. name: "Macro+",
  15754. height: math.unit(180, "feet")
  15755. },
  15756. {
  15757. name: "Megamacro",
  15758. height: math.unit(10, "miles")
  15759. },
  15760. {
  15761. name: "Gigamacro",
  15762. height: math.unit(200000, "miles")
  15763. },
  15764. ]
  15765. ))
  15766. characterMakers.push(() => makeCharacter(
  15767. { name: "Vance", species: ["flying-fox"], tags: ["anthro"] },
  15768. {
  15769. front: {
  15770. height: math.unit(6, "feet"),
  15771. weight: math.unit(120, "lb"),
  15772. name: "Front",
  15773. image: {
  15774. source: "./media/characters/vance/front.svg",
  15775. extra: 1980 / 1890,
  15776. bottom: 0.09
  15777. }
  15778. },
  15779. back: {
  15780. height: math.unit(6, "feet"),
  15781. weight: math.unit(120, "lb"),
  15782. name: "Back",
  15783. image: {
  15784. source: "./media/characters/vance/back.svg",
  15785. extra: 2081 / 1994,
  15786. bottom: 0.014
  15787. }
  15788. },
  15789. hand: {
  15790. height: math.unit(0.88, "feet"),
  15791. name: "Hand",
  15792. image: {
  15793. source: "./media/characters/vance/hand.svg"
  15794. }
  15795. },
  15796. foot: {
  15797. height: math.unit(0.64, "feet"),
  15798. name: "Foot",
  15799. image: {
  15800. source: "./media/characters/vance/foot.svg"
  15801. }
  15802. },
  15803. },
  15804. [
  15805. {
  15806. name: "Small",
  15807. height: math.unit(90, "feet"),
  15808. default: true
  15809. },
  15810. {
  15811. name: "Macro",
  15812. height: math.unit(100, "meters")
  15813. },
  15814. {
  15815. name: "Megamacro",
  15816. height: math.unit(15, "miles")
  15817. },
  15818. ]
  15819. ))
  15820. characterMakers.push(() => makeCharacter(
  15821. { name: "Xochitl", species: ["jaguar"], tags: ["anthro"] },
  15822. {
  15823. front: {
  15824. height: math.unit(6, "feet"),
  15825. weight: math.unit(180, "lb"),
  15826. name: "Front",
  15827. image: {
  15828. source: "./media/characters/xochitl/front.svg",
  15829. extra: 2297 / 2261,
  15830. bottom: 0.065
  15831. }
  15832. },
  15833. back: {
  15834. height: math.unit(6, "feet"),
  15835. weight: math.unit(180, "lb"),
  15836. name: "Back",
  15837. image: {
  15838. source: "./media/characters/xochitl/back.svg",
  15839. extra: 2386 / 2354,
  15840. bottom: 0.01
  15841. }
  15842. },
  15843. foot: {
  15844. height: math.unit(6 / 5 * 1.15, "feet"),
  15845. weight: math.unit(150, "lb"),
  15846. name: "Foot",
  15847. image: {
  15848. source: "./media/characters/xochitl/foot.svg"
  15849. }
  15850. },
  15851. },
  15852. [
  15853. {
  15854. name: "Macro",
  15855. height: math.unit(80, "feet")
  15856. },
  15857. {
  15858. name: "Macro+",
  15859. height: math.unit(400, "feet"),
  15860. default: true
  15861. },
  15862. {
  15863. name: "Gigamacro",
  15864. height: math.unit(80000, "miles")
  15865. },
  15866. {
  15867. name: "Gigamacro+",
  15868. height: math.unit(400000, "miles")
  15869. },
  15870. {
  15871. name: "Teramacro",
  15872. height: math.unit(300, "AU")
  15873. },
  15874. ]
  15875. ))
  15876. characterMakers.push(() => makeCharacter(
  15877. { name: "Vincent", species: ["egyptian-vulture"], tags: ["anthro"] },
  15878. {
  15879. front: {
  15880. height: math.unit(6, "feet"),
  15881. weight: math.unit(150, "lb"),
  15882. name: "Front",
  15883. image: {
  15884. source: "./media/characters/vincent/front.svg",
  15885. extra: 1130 / 1080,
  15886. bottom: 0.055
  15887. }
  15888. },
  15889. beak: {
  15890. height: math.unit(6 * 0.1, "feet"),
  15891. name: "Beak",
  15892. image: {
  15893. source: "./media/characters/vincent/beak.svg"
  15894. }
  15895. },
  15896. hand: {
  15897. height: math.unit(6 * 0.85, "feet"),
  15898. weight: math.unit(150, "lb"),
  15899. name: "Hand",
  15900. image: {
  15901. source: "./media/characters/vincent/hand.svg"
  15902. }
  15903. },
  15904. foot: {
  15905. height: math.unit(6 * 0.19, "feet"),
  15906. weight: math.unit(150, "lb"),
  15907. name: "Foot",
  15908. image: {
  15909. source: "./media/characters/vincent/foot.svg"
  15910. }
  15911. },
  15912. },
  15913. [
  15914. {
  15915. name: "Base",
  15916. height: math.unit(6 + 5 / 12, "feet"),
  15917. default: true
  15918. },
  15919. {
  15920. name: "Macro",
  15921. height: math.unit(300, "feet")
  15922. },
  15923. {
  15924. name: "Megamacro",
  15925. height: math.unit(2, "miles")
  15926. },
  15927. {
  15928. name: "Gigamacro",
  15929. height: math.unit(1000, "miles")
  15930. },
  15931. ]
  15932. ))
  15933. characterMakers.push(() => makeCharacter(
  15934. { name: "Coatl", species: ["dragon"], tags: ["anthro"] },
  15935. {
  15936. front: {
  15937. height: math.unit(2, "meters"),
  15938. weight: math.unit(500, "kg"),
  15939. name: "Front",
  15940. image: {
  15941. source: "./media/characters/coatl/front.svg",
  15942. extra: 3948 / 3500,
  15943. bottom: 0.082
  15944. }
  15945. },
  15946. },
  15947. [
  15948. {
  15949. name: "Normal",
  15950. height: math.unit(4, "meters")
  15951. },
  15952. {
  15953. name: "Macro",
  15954. height: math.unit(100, "meters"),
  15955. default: true
  15956. },
  15957. {
  15958. name: "Macro+",
  15959. height: math.unit(300, "meters")
  15960. },
  15961. {
  15962. name: "Megamacro",
  15963. height: math.unit(3, "gigameters")
  15964. },
  15965. {
  15966. name: "Megamacro+",
  15967. height: math.unit(300, "terameters")
  15968. },
  15969. {
  15970. name: "Megamacro++",
  15971. height: math.unit(3, "lightyears")
  15972. },
  15973. ]
  15974. ))
  15975. characterMakers.push(() => makeCharacter(
  15976. { name: "Shiroryu", species: ["dragon", "deity"], tags: ["anthro"] },
  15977. {
  15978. front: {
  15979. height: math.unit(6, "feet"),
  15980. weight: math.unit(50, "kg"),
  15981. name: "front",
  15982. image: {
  15983. source: "./media/characters/shiroryu/front.svg",
  15984. extra: 1990 / 1935
  15985. }
  15986. },
  15987. },
  15988. [
  15989. {
  15990. name: "Mortal Mingling",
  15991. height: math.unit(3, "meters")
  15992. },
  15993. {
  15994. name: "Kaiju-ish",
  15995. height: math.unit(250, "meters")
  15996. },
  15997. {
  15998. name: "Somewhat Godly",
  15999. height: math.unit(400, "km"),
  16000. default: true
  16001. },
  16002. {
  16003. name: "Planetary",
  16004. height: math.unit(300, "megameters")
  16005. },
  16006. {
  16007. name: "Galaxy-dwarfing",
  16008. height: math.unit(450, "kiloparsecs")
  16009. },
  16010. {
  16011. name: "Universe Eater",
  16012. height: math.unit(150, "gigaparsecs")
  16013. },
  16014. {
  16015. name: "Almost Immeasurable",
  16016. height: math.unit(1.3e266, "yottaparsecs")
  16017. },
  16018. ]
  16019. ))
  16020. characterMakers.push(() => makeCharacter(
  16021. { name: "Umeko", species: ["eastern-dragon"], tags: ["anthro"] },
  16022. {
  16023. front: {
  16024. height: math.unit(6, "feet"),
  16025. weight: math.unit(150, "lb"),
  16026. name: "Front",
  16027. image: {
  16028. source: "./media/characters/umeko/front.svg",
  16029. extra: 1,
  16030. bottom: 0.019
  16031. }
  16032. },
  16033. frontArmored: {
  16034. height: math.unit(6, "feet"),
  16035. weight: math.unit(150, "lb"),
  16036. name: "Front (Armored)",
  16037. image: {
  16038. source: "./media/characters/umeko/front-armored.svg",
  16039. extra: 1,
  16040. bottom: 0.021
  16041. }
  16042. },
  16043. },
  16044. [
  16045. {
  16046. name: "Macro",
  16047. height: math.unit(220, "feet"),
  16048. default: true
  16049. },
  16050. {
  16051. name: "Guardian Dragon",
  16052. height: math.unit(50, "miles")
  16053. },
  16054. {
  16055. name: "Cosmic",
  16056. height: math.unit(800000, "miles")
  16057. },
  16058. ]
  16059. ))
  16060. characterMakers.push(() => makeCharacter(
  16061. { name: "Cassidy", species: ["leopard-seal"], tags: ["anthro"] },
  16062. {
  16063. front: {
  16064. height: math.unit(6, "feet"),
  16065. weight: math.unit(150, "lb"),
  16066. name: "Front",
  16067. image: {
  16068. source: "./media/characters/cassidy/front.svg",
  16069. extra: 810/808,
  16070. bottom: 41/851
  16071. }
  16072. },
  16073. },
  16074. [
  16075. {
  16076. name: "Canon Height",
  16077. height: math.unit(120, "feet"),
  16078. default: true
  16079. },
  16080. {
  16081. name: "Macro+",
  16082. height: math.unit(400, "feet")
  16083. },
  16084. {
  16085. name: "Macro++",
  16086. height: math.unit(4000, "feet")
  16087. },
  16088. {
  16089. name: "Megamacro",
  16090. height: math.unit(3, "miles")
  16091. },
  16092. ]
  16093. ))
  16094. characterMakers.push(() => makeCharacter(
  16095. { name: "Isaac", species: ["moose"], tags: ["anthro"] },
  16096. {
  16097. front: {
  16098. height: math.unit(6, "feet"),
  16099. weight: math.unit(150, "lb"),
  16100. name: "Front",
  16101. image: {
  16102. source: "./media/characters/isaac/front.svg",
  16103. extra: 896 / 815,
  16104. bottom: 0.11
  16105. }
  16106. },
  16107. },
  16108. [
  16109. {
  16110. name: "Human Size",
  16111. height: math.unit(8, "feet"),
  16112. default: true
  16113. },
  16114. {
  16115. name: "Macro",
  16116. height: math.unit(400, "feet")
  16117. },
  16118. {
  16119. name: "Megamacro",
  16120. height: math.unit(50, "miles")
  16121. },
  16122. {
  16123. name: "Canon Height",
  16124. height: math.unit(200, "AU")
  16125. },
  16126. ]
  16127. ))
  16128. characterMakers.push(() => makeCharacter(
  16129. { name: "Sleekit", species: ["rat"], tags: ["anthro"] },
  16130. {
  16131. front: {
  16132. height: math.unit(6, "feet"),
  16133. weight: math.unit(72, "kg"),
  16134. name: "Front",
  16135. image: {
  16136. source: "./media/characters/sleekit/front.svg",
  16137. extra: 4693 / 4487,
  16138. bottom: 0.012
  16139. }
  16140. },
  16141. },
  16142. [
  16143. {
  16144. name: "Minimum Height",
  16145. height: math.unit(10, "meters")
  16146. },
  16147. {
  16148. name: "Smaller",
  16149. height: math.unit(25, "meters")
  16150. },
  16151. {
  16152. name: "Larger",
  16153. height: math.unit(38, "meters"),
  16154. default: true
  16155. },
  16156. {
  16157. name: "Maximum height",
  16158. height: math.unit(100, "meters")
  16159. },
  16160. ]
  16161. ))
  16162. characterMakers.push(() => makeCharacter(
  16163. { name: "Nillia", species: ["caracal"], tags: ["anthro"] },
  16164. {
  16165. front: {
  16166. height: math.unit(6, "feet"),
  16167. weight: math.unit(150, "lb"),
  16168. name: "Front",
  16169. image: {
  16170. source: "./media/characters/nillia/front.svg",
  16171. extra: 719/665,
  16172. bottom: 6/725
  16173. }
  16174. },
  16175. back: {
  16176. height: math.unit(6, "feet"),
  16177. weight: math.unit(150, "lb"),
  16178. name: "Back",
  16179. image: {
  16180. source: "./media/characters/nillia/back.svg",
  16181. extra: 705/651,
  16182. bottom: 5/710
  16183. }
  16184. },
  16185. },
  16186. [
  16187. {
  16188. name: "Canon Height",
  16189. height: math.unit(489, "feet"),
  16190. default: true
  16191. }
  16192. ]
  16193. ))
  16194. characterMakers.push(() => makeCharacter(
  16195. { name: "Mesmyriza", species: ["shark", "dragon", "robot", "deity"], tags: ["anthro"] },
  16196. {
  16197. front: {
  16198. height: math.unit(6, "feet"),
  16199. weight: math.unit(150, "lb"),
  16200. name: "Front",
  16201. image: {
  16202. source: "./media/characters/mesmyriza/front.svg",
  16203. extra: 1541/1291,
  16204. bottom: 87/1628
  16205. }
  16206. },
  16207. foot: {
  16208. height: math.unit(6 / (250 / 35), "feet"),
  16209. name: "Foot",
  16210. image: {
  16211. source: "./media/characters/mesmyriza/foot.svg"
  16212. }
  16213. },
  16214. },
  16215. [
  16216. {
  16217. name: "Macro",
  16218. height: math.unit(457, "meters"),
  16219. default: true
  16220. },
  16221. {
  16222. name: "Megamacro",
  16223. height: math.unit(8, "megameters")
  16224. },
  16225. ]
  16226. ))
  16227. characterMakers.push(() => makeCharacter(
  16228. { name: "Saudade", species: ["goat"], tags: ["anthro"] },
  16229. {
  16230. front: {
  16231. height: math.unit(6, "feet"),
  16232. weight: math.unit(250, "lb"),
  16233. name: "Front",
  16234. image: {
  16235. source: "./media/characters/saudade/front.svg",
  16236. extra: 1172 / 1139,
  16237. bottom: 0.035
  16238. }
  16239. },
  16240. },
  16241. [
  16242. {
  16243. name: "Micro",
  16244. height: math.unit(3, "inches")
  16245. },
  16246. {
  16247. name: "Normal",
  16248. height: math.unit(6, "feet"),
  16249. default: true
  16250. },
  16251. {
  16252. name: "Macro",
  16253. height: math.unit(50, "feet")
  16254. },
  16255. {
  16256. name: "Megamacro",
  16257. height: math.unit(2800, "feet")
  16258. },
  16259. ]
  16260. ))
  16261. characterMakers.push(() => makeCharacter(
  16262. { name: "Keireer", species: ["keynain"], tags: ["anthro"] },
  16263. {
  16264. front: {
  16265. height: math.unit(5 + 4 / 12, "feet"),
  16266. weight: math.unit(100, "lb"),
  16267. name: "Front",
  16268. image: {
  16269. source: "./media/characters/keireer/front.svg",
  16270. extra: 716 / 666,
  16271. bottom: 0.05
  16272. }
  16273. },
  16274. },
  16275. [
  16276. {
  16277. name: "Normal",
  16278. height: math.unit(5 + 4 / 12, "feet"),
  16279. default: true
  16280. },
  16281. ]
  16282. ))
  16283. characterMakers.push(() => makeCharacter(
  16284. { name: "Mirja", species: ["dragon"], tags: ["anthro"] },
  16285. {
  16286. front: {
  16287. height: math.unit(5.5, "feet"),
  16288. weight: math.unit(90, "kg"),
  16289. name: "Front",
  16290. image: {
  16291. source: "./media/characters/mirja/front.svg",
  16292. extra: 1452/1262,
  16293. bottom: 67/1519
  16294. }
  16295. },
  16296. frontDressed: {
  16297. height: math.unit(5.5, "feet"),
  16298. weight: math.unit(90, "lb"),
  16299. name: "Front (Dressed)",
  16300. image: {
  16301. source: "./media/characters/mirja/dressed.svg",
  16302. extra: 1452/1262,
  16303. bottom: 67/1519
  16304. }
  16305. },
  16306. back: {
  16307. height: math.unit(6, "feet"),
  16308. weight: math.unit(90, "lb"),
  16309. name: "Back",
  16310. image: {
  16311. source: "./media/characters/mirja/back.svg",
  16312. extra: 1892/1795,
  16313. bottom: 48/1940
  16314. }
  16315. },
  16316. maw: {
  16317. height: math.unit(1.312, "feet"),
  16318. name: "Maw",
  16319. image: {
  16320. source: "./media/characters/mirja/maw.svg"
  16321. }
  16322. },
  16323. paw: {
  16324. height: math.unit(1.15, "feet"),
  16325. name: "Paw",
  16326. image: {
  16327. source: "./media/characters/mirja/paw.svg"
  16328. }
  16329. },
  16330. },
  16331. [
  16332. {
  16333. name: "\"Incognito\"",
  16334. height: math.unit(3, "meters")
  16335. },
  16336. {
  16337. name: "Strolling Size",
  16338. height: math.unit(15, "km")
  16339. },
  16340. {
  16341. name: "Larger Strolling Size",
  16342. height: math.unit(400, "km")
  16343. },
  16344. {
  16345. name: "Preferred Size",
  16346. height: math.unit(5000, "km"),
  16347. default: true
  16348. },
  16349. {
  16350. name: "True Size",
  16351. height: math.unit(30657809462086840000000000000000, "parsecs"),
  16352. },
  16353. ]
  16354. ))
  16355. characterMakers.push(() => makeCharacter(
  16356. { name: "Nightraver", species: ["dragon"], tags: ["anthro"] },
  16357. {
  16358. front: {
  16359. height: math.unit(15, "feet"),
  16360. weight: math.unit(880, "kg"),
  16361. name: "Front",
  16362. image: {
  16363. source: "./media/characters/nightraver/front.svg",
  16364. extra: 2444 / 2160,
  16365. bottom: 0.027
  16366. }
  16367. },
  16368. back: {
  16369. height: math.unit(15, "feet"),
  16370. weight: math.unit(880, "kg"),
  16371. name: "Back",
  16372. image: {
  16373. source: "./media/characters/nightraver/back.svg",
  16374. extra: 2309 / 2180,
  16375. bottom: 0.005
  16376. }
  16377. },
  16378. sole: {
  16379. height: math.unit(2.878, "feet"),
  16380. name: "Sole",
  16381. image: {
  16382. source: "./media/characters/nightraver/sole.svg"
  16383. }
  16384. },
  16385. foot: {
  16386. height: math.unit(2.285, "feet"),
  16387. name: "Foot",
  16388. image: {
  16389. source: "./media/characters/nightraver/foot.svg"
  16390. }
  16391. },
  16392. maw: {
  16393. height: math.unit(2.67, "feet"),
  16394. name: "Maw",
  16395. image: {
  16396. source: "./media/characters/nightraver/maw.svg"
  16397. }
  16398. },
  16399. },
  16400. [
  16401. {
  16402. name: "Micro",
  16403. height: math.unit(1, "cm")
  16404. },
  16405. {
  16406. name: "Normal",
  16407. height: math.unit(15, "feet"),
  16408. default: true
  16409. },
  16410. {
  16411. name: "Macro",
  16412. height: math.unit(300, "feet")
  16413. },
  16414. {
  16415. name: "Megamacro",
  16416. height: math.unit(300, "miles")
  16417. },
  16418. {
  16419. name: "Gigamacro",
  16420. height: math.unit(10000, "miles")
  16421. },
  16422. ]
  16423. ))
  16424. characterMakers.push(() => makeCharacter(
  16425. { name: "Arc", species: ["raptor"], tags: ["anthro"] },
  16426. {
  16427. side: {
  16428. height: math.unit(2, "inches"),
  16429. weight: math.unit(5, "grams"),
  16430. name: "Side",
  16431. image: {
  16432. source: "./media/characters/arc/side.svg"
  16433. }
  16434. },
  16435. },
  16436. [
  16437. {
  16438. name: "Micro",
  16439. height: math.unit(2, "inches"),
  16440. default: true
  16441. },
  16442. ]
  16443. ))
  16444. characterMakers.push(() => makeCharacter(
  16445. { name: "Nebula Shahar", species: ["lucario"], tags: ["anthro"] },
  16446. {
  16447. front: {
  16448. height: math.unit(1.1938, "meters"),
  16449. weight: math.unit(54, "kg"),
  16450. name: "Front",
  16451. image: {
  16452. source: "./media/characters/nebula-shahar/front.svg",
  16453. extra: 1642 / 1436,
  16454. bottom: 0.06
  16455. }
  16456. },
  16457. },
  16458. [
  16459. {
  16460. name: "Megamicro",
  16461. height: math.unit(0.3, "mm")
  16462. },
  16463. {
  16464. name: "Micro",
  16465. height: math.unit(3, "cm")
  16466. },
  16467. {
  16468. name: "Normal",
  16469. height: math.unit(138, "cm"),
  16470. default: true
  16471. },
  16472. {
  16473. name: "Macro",
  16474. height: math.unit(30, "m")
  16475. },
  16476. ]
  16477. ))
  16478. characterMakers.push(() => makeCharacter(
  16479. { name: "Shayla", species: ["otter"], tags: ["anthro"] },
  16480. {
  16481. front: {
  16482. height: math.unit(5.24, "feet"),
  16483. weight: math.unit(150, "lb"),
  16484. name: "Front",
  16485. image: {
  16486. source: "./media/characters/shayla/front.svg",
  16487. extra: 1512 / 1414,
  16488. bottom: 0.01
  16489. }
  16490. },
  16491. back: {
  16492. height: math.unit(5.24, "feet"),
  16493. weight: math.unit(150, "lb"),
  16494. name: "Back",
  16495. image: {
  16496. source: "./media/characters/shayla/back.svg",
  16497. extra: 1512 / 1414
  16498. }
  16499. },
  16500. hand: {
  16501. height: math.unit(0.7781496062992126, "feet"),
  16502. name: "Hand",
  16503. image: {
  16504. source: "./media/characters/shayla/hand.svg"
  16505. }
  16506. },
  16507. foot: {
  16508. height: math.unit(1.4206036745406823, "feet"),
  16509. name: "Foot",
  16510. image: {
  16511. source: "./media/characters/shayla/foot.svg"
  16512. }
  16513. },
  16514. },
  16515. [
  16516. {
  16517. name: "Micro",
  16518. height: math.unit(0.32, "feet")
  16519. },
  16520. {
  16521. name: "Normal",
  16522. height: math.unit(5.24, "feet"),
  16523. default: true
  16524. },
  16525. {
  16526. name: "Macro",
  16527. height: math.unit(492.12, "feet")
  16528. },
  16529. {
  16530. name: "Megamacro",
  16531. height: math.unit(186.41, "miles")
  16532. },
  16533. ]
  16534. ))
  16535. characterMakers.push(() => makeCharacter(
  16536. { name: "Pia Jr.", species: ["ziralkia"], tags: ["anthro"] },
  16537. {
  16538. front: {
  16539. height: math.unit(2.2, "m"),
  16540. weight: math.unit(120, "kg"),
  16541. name: "Front",
  16542. image: {
  16543. source: "./media/characters/pia-jr/front.svg",
  16544. extra: 1000 / 970,
  16545. bottom: 0.035
  16546. }
  16547. },
  16548. hand: {
  16549. height: math.unit(0.759 * 7.21 / 6, "feet"),
  16550. name: "Hand",
  16551. image: {
  16552. source: "./media/characters/pia-jr/hand.svg"
  16553. }
  16554. },
  16555. paw: {
  16556. height: math.unit(1.185 * 7.21 / 6, "feet"),
  16557. name: "Paw",
  16558. image: {
  16559. source: "./media/characters/pia-jr/paw.svg"
  16560. }
  16561. },
  16562. },
  16563. [
  16564. {
  16565. name: "Micro",
  16566. height: math.unit(1.2, "cm")
  16567. },
  16568. {
  16569. name: "Normal",
  16570. height: math.unit(2.2, "m"),
  16571. default: true
  16572. },
  16573. {
  16574. name: "Macro",
  16575. height: math.unit(180, "m")
  16576. },
  16577. {
  16578. name: "Megamacro",
  16579. height: math.unit(420, "km")
  16580. },
  16581. ]
  16582. ))
  16583. characterMakers.push(() => makeCharacter(
  16584. { name: "Pia Sr.", species: ["ziralkia"], tags: ["anthro"] },
  16585. {
  16586. front: {
  16587. height: math.unit(2, "m"),
  16588. weight: math.unit(115, "kg"),
  16589. name: "Front",
  16590. image: {
  16591. source: "./media/characters/pia-sr/front.svg",
  16592. extra: 760 / 730,
  16593. bottom: 0.015
  16594. }
  16595. },
  16596. back: {
  16597. height: math.unit(2, "m"),
  16598. weight: math.unit(115, "kg"),
  16599. name: "Back",
  16600. image: {
  16601. source: "./media/characters/pia-sr/back.svg",
  16602. extra: 760 / 730,
  16603. bottom: 0.01
  16604. }
  16605. },
  16606. hand: {
  16607. height: math.unit(0.89 * 6.56 / 6, "feet"),
  16608. name: "Hand",
  16609. image: {
  16610. source: "./media/characters/pia-sr/hand.svg"
  16611. }
  16612. },
  16613. foot: {
  16614. height: math.unit(1.83, "feet"),
  16615. name: "Foot",
  16616. image: {
  16617. source: "./media/characters/pia-sr/foot.svg"
  16618. }
  16619. },
  16620. },
  16621. [
  16622. {
  16623. name: "Micro",
  16624. height: math.unit(88, "mm")
  16625. },
  16626. {
  16627. name: "Normal",
  16628. height: math.unit(2, "m"),
  16629. default: true
  16630. },
  16631. {
  16632. name: "Macro",
  16633. height: math.unit(200, "m")
  16634. },
  16635. {
  16636. name: "Megamacro",
  16637. height: math.unit(420, "km")
  16638. },
  16639. ]
  16640. ))
  16641. characterMakers.push(() => makeCharacter(
  16642. { name: "KIBIBYTE", species: ["bat", "demon"], tags: ["anthro"] },
  16643. {
  16644. front: {
  16645. height: math.unit(8 + 2 / 12, "feet"),
  16646. weight: math.unit(300, "lb"),
  16647. name: "Front",
  16648. image: {
  16649. source: "./media/characters/kibibyte/front.svg",
  16650. extra: 2221 / 2098,
  16651. bottom: 0.04
  16652. }
  16653. },
  16654. },
  16655. [
  16656. {
  16657. name: "Normal",
  16658. height: math.unit(8 + 2 / 12, "feet"),
  16659. default: true
  16660. },
  16661. {
  16662. name: "Socialable Macro",
  16663. height: math.unit(50, "feet")
  16664. },
  16665. {
  16666. name: "Macro",
  16667. height: math.unit(300, "feet")
  16668. },
  16669. {
  16670. name: "Megamacro",
  16671. height: math.unit(500, "miles")
  16672. },
  16673. ]
  16674. ))
  16675. characterMakers.push(() => makeCharacter(
  16676. { name: "Felix", species: ["siamese-cat"], tags: ["anthro"] },
  16677. {
  16678. front: {
  16679. height: math.unit(6, "feet"),
  16680. weight: math.unit(150, "lb"),
  16681. name: "Front",
  16682. image: {
  16683. source: "./media/characters/felix/front.svg",
  16684. extra: 762 / 722,
  16685. bottom: 0.02
  16686. }
  16687. },
  16688. frontClothed: {
  16689. height: math.unit(6, "feet"),
  16690. weight: math.unit(150, "lb"),
  16691. name: "Front (Clothed)",
  16692. image: {
  16693. source: "./media/characters/felix/front-clothed.svg",
  16694. extra: 762 / 722,
  16695. bottom: 0.02
  16696. }
  16697. },
  16698. },
  16699. [
  16700. {
  16701. name: "Normal",
  16702. height: math.unit(6 + 8 / 12, "feet"),
  16703. default: true
  16704. },
  16705. {
  16706. name: "Macro",
  16707. height: math.unit(2600, "feet")
  16708. },
  16709. {
  16710. name: "Megamacro",
  16711. height: math.unit(450, "miles")
  16712. },
  16713. ]
  16714. ))
  16715. characterMakers.push(() => makeCharacter(
  16716. { name: "Tobo", species: ["mouse"], tags: ["anthro"] },
  16717. {
  16718. front: {
  16719. height: math.unit(6 + 1 / 12, "feet"),
  16720. weight: math.unit(250, "lb"),
  16721. name: "Front",
  16722. image: {
  16723. source: "./media/characters/tobo/front.svg",
  16724. extra: 608 / 586,
  16725. bottom: 0.023
  16726. }
  16727. },
  16728. back: {
  16729. height: math.unit(6 + 1 / 12, "feet"),
  16730. weight: math.unit(250, "lb"),
  16731. name: "Back",
  16732. image: {
  16733. source: "./media/characters/tobo/back.svg",
  16734. extra: 608 / 586
  16735. }
  16736. },
  16737. },
  16738. [
  16739. {
  16740. name: "Nano",
  16741. height: math.unit(2, "nm")
  16742. },
  16743. {
  16744. name: "Megamicro",
  16745. height: math.unit(0.1, "mm")
  16746. },
  16747. {
  16748. name: "Micro",
  16749. height: math.unit(1, "inch"),
  16750. default: true
  16751. },
  16752. {
  16753. name: "Human-sized",
  16754. height: math.unit(6 + 1 / 12, "feet")
  16755. },
  16756. {
  16757. name: "Macro",
  16758. height: math.unit(250, "feet")
  16759. },
  16760. {
  16761. name: "Megamacro",
  16762. height: math.unit(75, "miles")
  16763. },
  16764. {
  16765. name: "Texas-sized",
  16766. height: math.unit(750, "miles")
  16767. },
  16768. {
  16769. name: "Teramacro",
  16770. height: math.unit(50000, "miles")
  16771. },
  16772. ]
  16773. ))
  16774. characterMakers.push(() => makeCharacter(
  16775. { name: "Danny Kapowsky", species: ["husky"], tags: ["anthro"] },
  16776. {
  16777. front: {
  16778. height: math.unit(6, "feet"),
  16779. weight: math.unit(269, "lb"),
  16780. name: "Front",
  16781. image: {
  16782. source: "./media/characters/danny-kapowsky/front.svg",
  16783. extra: 766 / 736,
  16784. bottom: 0.044
  16785. }
  16786. },
  16787. back: {
  16788. height: math.unit(6, "feet"),
  16789. weight: math.unit(269, "lb"),
  16790. name: "Back",
  16791. image: {
  16792. source: "./media/characters/danny-kapowsky/back.svg",
  16793. extra: 797 / 760,
  16794. bottom: 0.025
  16795. }
  16796. },
  16797. },
  16798. [
  16799. {
  16800. name: "Macro",
  16801. height: math.unit(150, "feet"),
  16802. default: true
  16803. },
  16804. {
  16805. name: "Macro+",
  16806. height: math.unit(200, "feet")
  16807. },
  16808. {
  16809. name: "Macro++",
  16810. height: math.unit(300, "feet")
  16811. },
  16812. {
  16813. name: "Macro+++",
  16814. height: math.unit(400, "feet")
  16815. },
  16816. ]
  16817. ))
  16818. characterMakers.push(() => makeCharacter(
  16819. { name: "Finn", species: ["fennec-fox"], tags: ["anthro"] },
  16820. {
  16821. side: {
  16822. height: math.unit(6, "feet"),
  16823. weight: math.unit(170, "lb"),
  16824. name: "Side",
  16825. image: {
  16826. source: "./media/characters/finn/side.svg",
  16827. extra: 1953 / 1807,
  16828. bottom: 0.057
  16829. }
  16830. },
  16831. },
  16832. [
  16833. {
  16834. name: "Megamacro",
  16835. height: math.unit(14445, "feet"),
  16836. default: true
  16837. },
  16838. ]
  16839. ))
  16840. characterMakers.push(() => makeCharacter(
  16841. { name: "Roy", species: ["chameleon"], tags: ["anthro"] },
  16842. {
  16843. front: {
  16844. height: math.unit(5 + 6 / 12, "feet"),
  16845. weight: math.unit(125, "lb"),
  16846. name: "Front",
  16847. image: {
  16848. source: "./media/characters/roy/front.svg",
  16849. extra: 1,
  16850. bottom: 0.11
  16851. }
  16852. },
  16853. },
  16854. [
  16855. {
  16856. name: "Micro",
  16857. height: math.unit(3, "inches"),
  16858. default: true
  16859. },
  16860. {
  16861. name: "Normal",
  16862. height: math.unit(5 + 6 / 12, "feet")
  16863. },
  16864. {
  16865. name: "Lesser Macro",
  16866. height: math.unit(60, "feet")
  16867. },
  16868. {
  16869. name: "Greater Macro",
  16870. height: math.unit(120, "feet")
  16871. },
  16872. ]
  16873. ))
  16874. characterMakers.push(() => makeCharacter(
  16875. { name: "Aevsivs", species: ["spider"], tags: ["anthro"] },
  16876. {
  16877. front: {
  16878. height: math.unit(6, "feet"),
  16879. weight: math.unit(100, "lb"),
  16880. name: "Front",
  16881. image: {
  16882. source: "./media/characters/aevsivs/front.svg",
  16883. extra: 1,
  16884. bottom: 0.03
  16885. }
  16886. },
  16887. back: {
  16888. height: math.unit(6, "feet"),
  16889. weight: math.unit(100, "lb"),
  16890. name: "Back",
  16891. image: {
  16892. source: "./media/characters/aevsivs/back.svg"
  16893. }
  16894. },
  16895. },
  16896. [
  16897. {
  16898. name: "Micro",
  16899. height: math.unit(2, "inches"),
  16900. default: true
  16901. },
  16902. {
  16903. name: "Normal",
  16904. height: math.unit(5, "feet")
  16905. },
  16906. ]
  16907. ))
  16908. characterMakers.push(() => makeCharacter(
  16909. { name: "Hildegard", species: ["lucario"], tags: ["anthro"] },
  16910. {
  16911. front: {
  16912. height: math.unit(5 + 7 / 12, "feet"),
  16913. weight: math.unit(159, "lb"),
  16914. name: "Front",
  16915. image: {
  16916. source: "./media/characters/hildegard/front.svg",
  16917. extra: 289 / 269,
  16918. bottom: 7.63 / 297.8
  16919. }
  16920. },
  16921. back: {
  16922. height: math.unit(5 + 7 / 12, "feet"),
  16923. weight: math.unit(159, "lb"),
  16924. name: "Back",
  16925. image: {
  16926. source: "./media/characters/hildegard/back.svg",
  16927. extra: 280 / 260,
  16928. bottom: 2.3 / 282
  16929. }
  16930. },
  16931. },
  16932. [
  16933. {
  16934. name: "Normal",
  16935. height: math.unit(5 + 7 / 12, "feet"),
  16936. default: true
  16937. },
  16938. ]
  16939. ))
  16940. characterMakers.push(() => makeCharacter(
  16941. { name: "Bernard & Wilder", species: ["lycanroc"], tags: ["anthro", "feral"] },
  16942. {
  16943. bernard: {
  16944. height: math.unit(2 + 7 / 12, "feet"),
  16945. weight: math.unit(66, "lb"),
  16946. name: "Bernard",
  16947. rename: true,
  16948. image: {
  16949. source: "./media/characters/bernard-wilder/bernard.svg",
  16950. extra: 192 / 128,
  16951. bottom: 0.05
  16952. }
  16953. },
  16954. wilder: {
  16955. height: math.unit(5 + 8 / 12, "feet"),
  16956. weight: math.unit(143, "lb"),
  16957. name: "Wilder",
  16958. rename: true,
  16959. image: {
  16960. source: "./media/characters/bernard-wilder/wilder.svg",
  16961. extra: 361 / 312,
  16962. bottom: 0.02
  16963. }
  16964. },
  16965. },
  16966. [
  16967. {
  16968. name: "Normal",
  16969. height: math.unit(2 + 7 / 12, "feet"),
  16970. default: true
  16971. },
  16972. ]
  16973. ))
  16974. characterMakers.push(() => makeCharacter(
  16975. { name: "Hearth", species: ["houndoom"], tags: ["anthro"] },
  16976. {
  16977. anthro: {
  16978. height: math.unit(6 + 1 / 12, "feet"),
  16979. weight: math.unit(155, "lb"),
  16980. name: "Anthro",
  16981. image: {
  16982. source: "./media/characters/hearth/anthro.svg",
  16983. extra: 1178/1136,
  16984. bottom: 28/1206
  16985. }
  16986. },
  16987. feral: {
  16988. height: math.unit(3.78, "feet"),
  16989. weight: math.unit(35, "kg"),
  16990. name: "Feral",
  16991. image: {
  16992. source: "./media/characters/hearth/feral.svg",
  16993. extra: 153 / 135,
  16994. bottom: 0.03
  16995. }
  16996. },
  16997. },
  16998. [
  16999. {
  17000. name: "Normal",
  17001. height: math.unit(6 + 1 / 12, "feet"),
  17002. default: true
  17003. },
  17004. ]
  17005. ))
  17006. characterMakers.push(() => makeCharacter(
  17007. { name: "Ingrid", species: ["delphox"], tags: ["anthro"] },
  17008. {
  17009. front: {
  17010. height: math.unit(6, "feet"),
  17011. weight: math.unit(182, "lb"),
  17012. name: "Front",
  17013. image: {
  17014. source: "./media/characters/ingrid/front.svg",
  17015. extra: 294 / 268,
  17016. bottom: 0.027
  17017. }
  17018. },
  17019. },
  17020. [
  17021. {
  17022. name: "Normal",
  17023. height: math.unit(6, "feet"),
  17024. default: true
  17025. },
  17026. ]
  17027. ))
  17028. characterMakers.push(() => makeCharacter(
  17029. { name: "Malgam", species: ["eevee"], tags: ["anthro"] },
  17030. {
  17031. eevee: {
  17032. height: math.unit(2 + 10 / 12, "feet"),
  17033. weight: math.unit(86, "lb"),
  17034. name: "Malgam",
  17035. image: {
  17036. source: "./media/characters/malgam/eevee.svg",
  17037. extra: 952/784,
  17038. bottom: 38/990
  17039. }
  17040. },
  17041. sylveon: {
  17042. height: math.unit(4, "feet"),
  17043. weight: math.unit(101, "lb"),
  17044. name: "Future Malgam",
  17045. rename: true,
  17046. image: {
  17047. source: "./media/characters/malgam/sylveon.svg",
  17048. extra: 371 / 325,
  17049. bottom: 0.015
  17050. }
  17051. },
  17052. gigantamax: {
  17053. height: math.unit(50, "feet"),
  17054. name: "Gigantamax Malgam",
  17055. rename: true,
  17056. image: {
  17057. source: "./media/characters/malgam/gigantamax.svg"
  17058. }
  17059. },
  17060. },
  17061. [
  17062. {
  17063. name: "Normal",
  17064. height: math.unit(2 + 10 / 12, "feet"),
  17065. default: true
  17066. },
  17067. ]
  17068. ))
  17069. characterMakers.push(() => makeCharacter(
  17070. { name: "Fleur", species: ["lopunny"], tags: ["anthro"] },
  17071. {
  17072. front: {
  17073. height: math.unit(5 + 11 / 12, "feet"),
  17074. weight: math.unit(188, "lb"),
  17075. name: "Front",
  17076. image: {
  17077. source: "./media/characters/fleur/front.svg",
  17078. extra: 309 / 283,
  17079. bottom: 0.007
  17080. }
  17081. },
  17082. },
  17083. [
  17084. {
  17085. name: "Normal",
  17086. height: math.unit(5 + 11 / 12, "feet"),
  17087. default: true
  17088. },
  17089. ]
  17090. ))
  17091. characterMakers.push(() => makeCharacter(
  17092. { name: "Jude", species: ["absol"], tags: ["anthro"] },
  17093. {
  17094. front: {
  17095. height: math.unit(5 + 4 / 12, "feet"),
  17096. weight: math.unit(122, "lb"),
  17097. name: "Front",
  17098. image: {
  17099. source: "./media/characters/jude/front.svg",
  17100. extra: 288 / 273,
  17101. bottom: 0.03
  17102. }
  17103. },
  17104. },
  17105. [
  17106. {
  17107. name: "Normal",
  17108. height: math.unit(5 + 4 / 12, "feet"),
  17109. default: true
  17110. },
  17111. ]
  17112. ))
  17113. characterMakers.push(() => makeCharacter(
  17114. { name: "Seara", species: ["salazzle"], tags: ["anthro"] },
  17115. {
  17116. front: {
  17117. height: math.unit(5 + 11 / 12, "feet"),
  17118. weight: math.unit(190, "lb"),
  17119. name: "Front",
  17120. image: {
  17121. source: "./media/characters/seara/front.svg",
  17122. extra: 1,
  17123. bottom: 0.05
  17124. }
  17125. },
  17126. },
  17127. [
  17128. {
  17129. name: "Normal",
  17130. height: math.unit(5 + 11 / 12, "feet"),
  17131. default: true
  17132. },
  17133. ]
  17134. ))
  17135. characterMakers.push(() => makeCharacter(
  17136. { name: "Caspian (Lugia)", species: ["lugia"], tags: ["anthro"] },
  17137. {
  17138. front: {
  17139. height: math.unit(16 + 5 / 12, "feet"),
  17140. weight: math.unit(524, "lb"),
  17141. name: "Front",
  17142. image: {
  17143. source: "./media/characters/caspian-lugia/front.svg",
  17144. extra: 1,
  17145. bottom: 0.04
  17146. }
  17147. },
  17148. },
  17149. [
  17150. {
  17151. name: "Normal",
  17152. height: math.unit(16 + 5 / 12, "feet"),
  17153. default: true
  17154. },
  17155. ]
  17156. ))
  17157. characterMakers.push(() => makeCharacter(
  17158. { name: "Mika", species: ["rabbit"], tags: ["anthro"] },
  17159. {
  17160. front: {
  17161. height: math.unit(5 + 7 / 12, "feet"),
  17162. weight: math.unit(170, "lb"),
  17163. name: "Front",
  17164. image: {
  17165. source: "./media/characters/mika/front.svg",
  17166. extra: 1,
  17167. bottom: 0.016
  17168. }
  17169. },
  17170. },
  17171. [
  17172. {
  17173. name: "Normal",
  17174. height: math.unit(5 + 7 / 12, "feet"),
  17175. default: true
  17176. },
  17177. ]
  17178. ))
  17179. characterMakers.push(() => makeCharacter(
  17180. { name: "Sol", species: ["grovyle"], tags: ["anthro"] },
  17181. {
  17182. front: {
  17183. height: math.unit(6 + 2 / 12, "feet"),
  17184. weight: math.unit(268, "lb"),
  17185. name: "Front",
  17186. image: {
  17187. source: "./media/characters/sol/front.svg",
  17188. extra: 247 / 231,
  17189. bottom: 0.05
  17190. }
  17191. },
  17192. },
  17193. [
  17194. {
  17195. name: "Normal",
  17196. height: math.unit(6 + 2 / 12, "feet"),
  17197. default: true
  17198. },
  17199. ]
  17200. ))
  17201. characterMakers.push(() => makeCharacter(
  17202. { name: "Umiko", species: ["buizel", "floatzel"], tags: ["anthro"] },
  17203. {
  17204. buizel: {
  17205. height: math.unit(2 + 5 / 12, "feet"),
  17206. weight: math.unit(87, "lb"),
  17207. name: "Front",
  17208. image: {
  17209. source: "./media/characters/umiko/buizel.svg",
  17210. extra: 172 / 157,
  17211. bottom: 0.01
  17212. },
  17213. form: "buizel",
  17214. default: true
  17215. },
  17216. floatzel: {
  17217. height: math.unit(5 + 9 / 12, "feet"),
  17218. weight: math.unit(250, "lb"),
  17219. name: "Front",
  17220. image: {
  17221. source: "./media/characters/umiko/floatzel.svg",
  17222. extra: 1076/1006,
  17223. bottom: 15/1091
  17224. },
  17225. form: "floatzel",
  17226. default: true
  17227. },
  17228. },
  17229. [
  17230. {
  17231. name: "Normal",
  17232. height: math.unit(2 + 5 / 12, "feet"),
  17233. form: "buizel",
  17234. default: true
  17235. },
  17236. {
  17237. name: "Normal",
  17238. height: math.unit(5 + 9 / 12, "feet"),
  17239. form: "floatzel",
  17240. default: true
  17241. },
  17242. ],
  17243. {
  17244. "buizel": {
  17245. name: "Buizel"
  17246. },
  17247. "floatzel": {
  17248. name: "Floatzel",
  17249. default: true
  17250. }
  17251. }
  17252. ))
  17253. characterMakers.push(() => makeCharacter(
  17254. { name: "Iliac", species: ["inteleon"], tags: ["anthro"] },
  17255. {
  17256. front: {
  17257. height: math.unit(6 + 2 / 12, "feet"),
  17258. weight: math.unit(146, "lb"),
  17259. name: "Front",
  17260. image: {
  17261. source: "./media/characters/iliac/front.svg",
  17262. extra: 389 / 365,
  17263. bottom: 0.035
  17264. }
  17265. },
  17266. },
  17267. [
  17268. {
  17269. name: "Normal",
  17270. height: math.unit(6 + 2 / 12, "feet"),
  17271. default: true
  17272. },
  17273. ]
  17274. ))
  17275. characterMakers.push(() => makeCharacter(
  17276. { name: "Topaz", species: ["blaziken"], tags: ["anthro"] },
  17277. {
  17278. front: {
  17279. height: math.unit(6, "feet"),
  17280. weight: math.unit(170, "lb"),
  17281. name: "Front",
  17282. image: {
  17283. source: "./media/characters/topaz/front.svg",
  17284. extra: 317 / 303,
  17285. bottom: 0.055
  17286. }
  17287. },
  17288. },
  17289. [
  17290. {
  17291. name: "Normal",
  17292. height: math.unit(6, "feet"),
  17293. default: true
  17294. },
  17295. ]
  17296. ))
  17297. characterMakers.push(() => makeCharacter(
  17298. { name: "Gabriel", species: ["lucario"], tags: ["anthro"] },
  17299. {
  17300. front: {
  17301. height: math.unit(5 + 11 / 12, "feet"),
  17302. weight: math.unit(144, "lb"),
  17303. name: "Front",
  17304. image: {
  17305. source: "./media/characters/gabriel/front.svg",
  17306. extra: 285 / 262,
  17307. bottom: 0.004
  17308. }
  17309. },
  17310. },
  17311. [
  17312. {
  17313. name: "Normal",
  17314. height: math.unit(5 + 11 / 12, "feet"),
  17315. default: true
  17316. },
  17317. ]
  17318. ))
  17319. characterMakers.push(() => makeCharacter(
  17320. { name: "Tempest (Suicune)", species: ["suicune"], tags: ["anthro"] },
  17321. {
  17322. side: {
  17323. height: math.unit(6 + 5 / 12, "feet"),
  17324. weight: math.unit(300, "lb"),
  17325. name: "Side",
  17326. image: {
  17327. source: "./media/characters/tempest-suicune/side.svg",
  17328. extra: 195 / 154,
  17329. bottom: 0.04
  17330. }
  17331. },
  17332. },
  17333. [
  17334. {
  17335. name: "Normal",
  17336. height: math.unit(6 + 5 / 12, "feet"),
  17337. default: true
  17338. },
  17339. ]
  17340. ))
  17341. characterMakers.push(() => makeCharacter(
  17342. { name: "Vulcan", species: ["charizard"], tags: ["anthro"] },
  17343. {
  17344. front: {
  17345. height: math.unit(7 + 2 / 12, "feet"),
  17346. weight: math.unit(322, "lb"),
  17347. name: "Front",
  17348. image: {
  17349. source: "./media/characters/vulcan/front.svg",
  17350. extra: 154 / 147,
  17351. bottom: 0.04
  17352. }
  17353. },
  17354. },
  17355. [
  17356. {
  17357. name: "Normal",
  17358. height: math.unit(7 + 2 / 12, "feet"),
  17359. default: true
  17360. },
  17361. ]
  17362. ))
  17363. characterMakers.push(() => makeCharacter(
  17364. { name: "Gault", species: ["feraligatr"], tags: ["anthro"] },
  17365. {
  17366. front: {
  17367. height: math.unit(5 + 10 / 12, "feet"),
  17368. weight: math.unit(264, "lb"),
  17369. name: "Front",
  17370. image: {
  17371. source: "./media/characters/gault/front.svg",
  17372. extra: 161 / 140,
  17373. bottom: 0.028
  17374. }
  17375. },
  17376. },
  17377. [
  17378. {
  17379. name: "Normal",
  17380. height: math.unit(5 + 10 / 12, "feet"),
  17381. default: true
  17382. },
  17383. ]
  17384. ))
  17385. characterMakers.push(() => makeCharacter(
  17386. { name: "Shard", species: ["weavile"], tags: ["anthro"] },
  17387. {
  17388. front: {
  17389. height: math.unit(6, "feet"),
  17390. weight: math.unit(150, "lb"),
  17391. name: "Front",
  17392. image: {
  17393. source: "./media/characters/shard/front.svg",
  17394. extra: 273 / 238,
  17395. bottom: 0.02
  17396. }
  17397. },
  17398. },
  17399. [
  17400. {
  17401. name: "Normal",
  17402. height: math.unit(3 + 6 / 12, "feet"),
  17403. default: true
  17404. },
  17405. ]
  17406. ))
  17407. characterMakers.push(() => makeCharacter(
  17408. { name: "Ashe", species: ["cat"], tags: ["anthro"] },
  17409. {
  17410. front: {
  17411. height: math.unit(5 + 11 / 12, "feet"),
  17412. weight: math.unit(146, "lb"),
  17413. name: "Front",
  17414. image: {
  17415. source: "./media/characters/ashe/front.svg",
  17416. extra: 400 / 373,
  17417. bottom: 0.01
  17418. }
  17419. },
  17420. },
  17421. [
  17422. {
  17423. name: "Normal",
  17424. height: math.unit(5 + 11 / 12, "feet"),
  17425. default: true
  17426. },
  17427. ]
  17428. ))
  17429. characterMakers.push(() => makeCharacter(
  17430. { name: "Beatrix", species: ["coyote"], tags: ["anthro"] },
  17431. {
  17432. front: {
  17433. height: math.unit(5 + 5 / 12, "feet"),
  17434. weight: math.unit(135, "lb"),
  17435. name: "Front",
  17436. image: {
  17437. source: "./media/characters/beatrix/front.svg",
  17438. extra: 392 / 379,
  17439. bottom: 0.01
  17440. }
  17441. },
  17442. },
  17443. [
  17444. {
  17445. name: "Normal",
  17446. height: math.unit(6, "feet"),
  17447. default: true
  17448. },
  17449. ]
  17450. ))
  17451. characterMakers.push(() => makeCharacter(
  17452. { name: "Ignatius", species: ["delphox"], tags: ["anthro"] },
  17453. {
  17454. front: {
  17455. height: math.unit(6 + 2/12, "feet"),
  17456. weight: math.unit(135, "lb"),
  17457. name: "Front",
  17458. image: {
  17459. source: "./media/characters/ignatius/front.svg",
  17460. extra: 1380/1259,
  17461. bottom: 27/1407
  17462. }
  17463. },
  17464. },
  17465. [
  17466. {
  17467. name: "Normal",
  17468. height: math.unit(6 + 2/12, "feet"),
  17469. default: true
  17470. },
  17471. ]
  17472. ))
  17473. characterMakers.push(() => makeCharacter(
  17474. { name: "Mei Li", species: ["mienshao"], tags: ["anthro"] },
  17475. {
  17476. front: {
  17477. height: math.unit(6 + 2 / 12, "feet"),
  17478. weight: math.unit(138, "lb"),
  17479. name: "Front",
  17480. image: {
  17481. source: "./media/characters/mei-li/front.svg",
  17482. extra: 237 / 229,
  17483. bottom: 0.03
  17484. }
  17485. },
  17486. },
  17487. [
  17488. {
  17489. name: "Normal",
  17490. height: math.unit(6 + 2 / 12, "feet"),
  17491. default: true
  17492. },
  17493. ]
  17494. ))
  17495. characterMakers.push(() => makeCharacter(
  17496. { name: "Puru", species: ["azumarill"], tags: ["anthro"] },
  17497. {
  17498. front: {
  17499. height: math.unit(2 + 4 / 12, "feet"),
  17500. weight: math.unit(62, "lb"),
  17501. name: "Front",
  17502. image: {
  17503. source: "./media/characters/puru/front.svg",
  17504. extra: 206 / 149,
  17505. bottom: 0.06
  17506. }
  17507. },
  17508. },
  17509. [
  17510. {
  17511. name: "Normal",
  17512. height: math.unit(2 + 4 / 12, "feet"),
  17513. default: true
  17514. },
  17515. ]
  17516. ))
  17517. characterMakers.push(() => makeCharacter(
  17518. { name: "Kee", species: ["aardwolf"], tags: ["anthro", "taur"] },
  17519. {
  17520. anthro: {
  17521. height: math.unit(5 + 8/12, "feet"),
  17522. weight: math.unit(200, "lb"),
  17523. energyNeed: math.unit(2000, "kcal"),
  17524. name: "Anthro",
  17525. image: {
  17526. source: "./media/characters/kee/anthro.svg",
  17527. extra: 3251/3184,
  17528. bottom: 250/3501
  17529. }
  17530. },
  17531. taur: {
  17532. height: math.unit(11, "feet"),
  17533. weight: math.unit(500, "lb"),
  17534. energyNeed: math.unit(5000, "kcal"),
  17535. name: "Taur",
  17536. image: {
  17537. source: "./media/characters/kee/taur.svg",
  17538. extra: 1362/1320,
  17539. bottom: 83/1445
  17540. }
  17541. },
  17542. },
  17543. [
  17544. {
  17545. name: "Normal",
  17546. height: math.unit(5 + 8/12, "feet"),
  17547. default: true
  17548. },
  17549. {
  17550. name: "Macro",
  17551. height: math.unit(35, "feet")
  17552. },
  17553. ]
  17554. ))
  17555. characterMakers.push(() => makeCharacter(
  17556. { name: "Cobalt (Dracha)", species: ["dracha"], tags: ["anthro"] },
  17557. {
  17558. anthro: {
  17559. height: math.unit(7, "feet"),
  17560. weight: math.unit(190, "lb"),
  17561. name: "Anthro",
  17562. image: {
  17563. source: "./media/characters/cobalt-dracha/anthro.svg",
  17564. extra: 231 / 225,
  17565. bottom: 0.04
  17566. }
  17567. },
  17568. feral: {
  17569. height: math.unit(9 + 7 / 12, "feet"),
  17570. weight: math.unit(294, "lb"),
  17571. name: "Feral",
  17572. image: {
  17573. source: "./media/characters/cobalt-dracha/feral.svg",
  17574. extra: 692 / 633,
  17575. bottom: 0.05
  17576. }
  17577. },
  17578. },
  17579. [
  17580. {
  17581. name: "Normal",
  17582. height: math.unit(7, "feet"),
  17583. default: true
  17584. },
  17585. ]
  17586. ))
  17587. characterMakers.push(() => makeCharacter(
  17588. { name: "Java", species: ["snake", "deity"], tags: ["naga"] },
  17589. {
  17590. fallen: {
  17591. height: math.unit(11 + 8 / 12, "feet"),
  17592. weight: math.unit(485, "lb"),
  17593. name: "Java (Fallen)",
  17594. rename: true,
  17595. image: {
  17596. source: "./media/characters/java/fallen.svg",
  17597. extra: 226 / 208,
  17598. bottom: 0.005
  17599. }
  17600. },
  17601. godkin: {
  17602. height: math.unit(10 + 6 / 12, "feet"),
  17603. weight: math.unit(328, "lb"),
  17604. name: "Java (Godkin)",
  17605. rename: true,
  17606. image: {
  17607. source: "./media/characters/java/godkin.svg",
  17608. extra: 1104/1068,
  17609. bottom: 36/1140
  17610. }
  17611. },
  17612. },
  17613. [
  17614. {
  17615. name: "Normal",
  17616. height: math.unit(11 + 8 / 12, "feet"),
  17617. default: true
  17618. },
  17619. ]
  17620. ))
  17621. characterMakers.push(() => makeCharacter(
  17622. { name: "Purna", species: ["panther"], tags: ["anthro"] },
  17623. {
  17624. front: {
  17625. height: math.unit(5 + 9 / 12, "feet"),
  17626. weight: math.unit(170, "lb"),
  17627. name: "Front",
  17628. image: {
  17629. source: "./media/characters/purna/front.svg",
  17630. extra: 239 / 229,
  17631. bottom: 0.01
  17632. }
  17633. },
  17634. },
  17635. [
  17636. {
  17637. name: "Normal",
  17638. height: math.unit(5 + 9 / 12, "feet"),
  17639. default: true
  17640. },
  17641. ]
  17642. ))
  17643. characterMakers.push(() => makeCharacter(
  17644. { name: "Kuva", species: ["cheetah"], tags: ["anthro"] },
  17645. {
  17646. front: {
  17647. height: math.unit(5 + 9 / 12, "feet"),
  17648. weight: math.unit(142, "lb"),
  17649. name: "Front",
  17650. image: {
  17651. source: "./media/characters/kuva/front.svg",
  17652. extra: 281 / 271,
  17653. bottom: 0.006
  17654. }
  17655. },
  17656. },
  17657. [
  17658. {
  17659. name: "Normal",
  17660. height: math.unit(5 + 9 / 12, "feet"),
  17661. default: true
  17662. },
  17663. ]
  17664. ))
  17665. characterMakers.push(() => makeCharacter(
  17666. { name: "Embra", species: ["dracha"], tags: ["anthro"] },
  17667. {
  17668. anthro: {
  17669. height: math.unit(9 + 2 / 12, "feet"),
  17670. weight: math.unit(270, "lb"),
  17671. name: "Anthro",
  17672. image: {
  17673. source: "./media/characters/embra/anthro.svg",
  17674. extra: 200 / 187,
  17675. bottom: 0.02
  17676. }
  17677. },
  17678. feral: {
  17679. height: math.unit(18 + 8 / 12, "feet"),
  17680. weight: math.unit(576, "lb"),
  17681. name: "Feral",
  17682. image: {
  17683. source: "./media/characters/embra/feral.svg",
  17684. extra: 152 / 137,
  17685. bottom: 0.037
  17686. }
  17687. },
  17688. },
  17689. [
  17690. {
  17691. name: "Normal",
  17692. height: math.unit(9 + 2 / 12, "feet"),
  17693. default: true
  17694. },
  17695. ]
  17696. ))
  17697. characterMakers.push(() => makeCharacter(
  17698. { name: "Grottos", species: ["dracha"], tags: ["anthro"] },
  17699. {
  17700. anthro: {
  17701. height: math.unit(10 + 9 / 12, "feet"),
  17702. weight: math.unit(224, "lb"),
  17703. name: "Anthro",
  17704. image: {
  17705. source: "./media/characters/grottos/anthro.svg",
  17706. extra: 350 / 332,
  17707. bottom: 0.045
  17708. }
  17709. },
  17710. feral: {
  17711. height: math.unit(20 + 7 / 12, "feet"),
  17712. weight: math.unit(629, "lb"),
  17713. name: "Feral",
  17714. image: {
  17715. source: "./media/characters/grottos/feral.svg",
  17716. extra: 207 / 190,
  17717. bottom: 0.05
  17718. }
  17719. },
  17720. },
  17721. [
  17722. {
  17723. name: "Normal",
  17724. height: math.unit(10 + 9 / 12, "feet"),
  17725. default: true
  17726. },
  17727. ]
  17728. ))
  17729. characterMakers.push(() => makeCharacter(
  17730. { name: "Frifna", species: ["dracha"], tags: ["anthro"] },
  17731. {
  17732. anthro: {
  17733. height: math.unit(9 + 6 / 12, "feet"),
  17734. weight: math.unit(298, "lb"),
  17735. name: "Anthro",
  17736. image: {
  17737. source: "./media/characters/frifna/anthro.svg",
  17738. extra: 282 / 269,
  17739. bottom: 0.015
  17740. }
  17741. },
  17742. feral: {
  17743. height: math.unit(16 + 2 / 12, "feet"),
  17744. weight: math.unit(624, "lb"),
  17745. name: "Feral",
  17746. image: {
  17747. source: "./media/characters/frifna/feral.svg"
  17748. }
  17749. },
  17750. },
  17751. [
  17752. {
  17753. name: "Normal",
  17754. height: math.unit(9 + 6 / 12, "feet"),
  17755. default: true
  17756. },
  17757. ]
  17758. ))
  17759. characterMakers.push(() => makeCharacter(
  17760. { name: "Elise", species: ["mongoose"], tags: ["anthro"] },
  17761. {
  17762. front: {
  17763. height: math.unit(6 + 2 / 12, "feet"),
  17764. weight: math.unit(168, "lb"),
  17765. name: "Front",
  17766. image: {
  17767. source: "./media/characters/elise/front.svg",
  17768. extra: 276 / 271
  17769. }
  17770. },
  17771. },
  17772. [
  17773. {
  17774. name: "Normal",
  17775. height: math.unit(6 + 2 / 12, "feet"),
  17776. default: true
  17777. },
  17778. ]
  17779. ))
  17780. characterMakers.push(() => makeCharacter(
  17781. { name: "Glade", species: ["wolf"], tags: ["anthro"] },
  17782. {
  17783. front: {
  17784. height: math.unit(5 + 10 / 12, "feet"),
  17785. weight: math.unit(210, "lb"),
  17786. name: "Front",
  17787. image: {
  17788. source: "./media/characters/glade/front.svg",
  17789. extra: 258 / 247,
  17790. bottom: 0.008
  17791. }
  17792. },
  17793. },
  17794. [
  17795. {
  17796. name: "Normal",
  17797. height: math.unit(5 + 10 / 12, "feet"),
  17798. default: true
  17799. },
  17800. ]
  17801. ))
  17802. characterMakers.push(() => makeCharacter(
  17803. { name: "Rina", species: ["fox"], tags: ["anthro"] },
  17804. {
  17805. front: {
  17806. height: math.unit(5 + 10 / 12, "feet"),
  17807. weight: math.unit(129, "lb"),
  17808. name: "Front",
  17809. image: {
  17810. source: "./media/characters/rina/front.svg",
  17811. extra: 266 / 255,
  17812. bottom: 0.005
  17813. }
  17814. },
  17815. },
  17816. [
  17817. {
  17818. name: "Normal",
  17819. height: math.unit(5 + 10 / 12, "feet"),
  17820. default: true
  17821. },
  17822. ]
  17823. ))
  17824. characterMakers.push(() => makeCharacter(
  17825. { name: "Veronica", species: ["fox", "synth"], tags: ["anthro"] },
  17826. {
  17827. front: {
  17828. height: math.unit(6 + 1 / 12, "feet"),
  17829. weight: math.unit(192, "lb"),
  17830. name: "Front",
  17831. image: {
  17832. source: "./media/characters/veronica/front.svg",
  17833. extra: 319 / 309,
  17834. bottom: 0.005
  17835. }
  17836. },
  17837. },
  17838. [
  17839. {
  17840. name: "Normal",
  17841. height: math.unit(6 + 1 / 12, "feet"),
  17842. default: true
  17843. },
  17844. ]
  17845. ))
  17846. characterMakers.push(() => makeCharacter(
  17847. { name: "Braxton", species: ["great-dane"], tags: ["anthro"] },
  17848. {
  17849. front: {
  17850. height: math.unit(9 + 3 / 12, "feet"),
  17851. weight: math.unit(1100, "lb"),
  17852. name: "Front",
  17853. image: {
  17854. source: "./media/characters/braxton/front.svg",
  17855. extra: 1057 / 984,
  17856. bottom: 0.05
  17857. }
  17858. },
  17859. },
  17860. [
  17861. {
  17862. name: "Normal",
  17863. height: math.unit(9 + 3 / 12, "feet")
  17864. },
  17865. {
  17866. name: "Giant",
  17867. height: math.unit(300, "feet"),
  17868. default: true
  17869. },
  17870. {
  17871. name: "Macro",
  17872. height: math.unit(700, "feet")
  17873. },
  17874. {
  17875. name: "Megamacro",
  17876. height: math.unit(6000, "feet")
  17877. },
  17878. ]
  17879. ))
  17880. characterMakers.push(() => makeCharacter(
  17881. { name: "Blue Feyonics", species: ["phoenix"], tags: ["anthro"] },
  17882. {
  17883. front: {
  17884. height: math.unit(6 + 7 / 12, "feet"),
  17885. weight: math.unit(150, "lb"),
  17886. name: "Front",
  17887. image: {
  17888. source: "./media/characters/blue-feyonics/front.svg",
  17889. extra: 1403 / 1306,
  17890. bottom: 0.047
  17891. }
  17892. },
  17893. },
  17894. [
  17895. {
  17896. name: "Normal",
  17897. height: math.unit(6 + 7 / 12, "feet"),
  17898. default: true
  17899. },
  17900. ]
  17901. ))
  17902. characterMakers.push(() => makeCharacter(
  17903. { name: "Maxwell", species: ["shiba-inu", "wolf"], tags: ["anthro"] },
  17904. {
  17905. front: {
  17906. height: math.unit(1.8, "meters"),
  17907. weight: math.unit(60, "kg"),
  17908. name: "Front",
  17909. image: {
  17910. source: "./media/characters/maxwell/front.svg",
  17911. extra: 2060 / 1873
  17912. }
  17913. },
  17914. },
  17915. [
  17916. {
  17917. name: "Micro",
  17918. height: math.unit(1, "mm")
  17919. },
  17920. {
  17921. name: "Normal",
  17922. height: math.unit(1.8, "meter"),
  17923. default: true
  17924. },
  17925. {
  17926. name: "Macro",
  17927. height: math.unit(30, "meters")
  17928. },
  17929. {
  17930. name: "Megamacro",
  17931. height: math.unit(10, "km")
  17932. },
  17933. ]
  17934. ))
  17935. characterMakers.push(() => makeCharacter(
  17936. { name: "Jack", species: ["wolf", "dragon"], tags: ["anthro"] },
  17937. {
  17938. front: {
  17939. height: math.unit(6, "feet"),
  17940. weight: math.unit(150, "lb"),
  17941. name: "Front",
  17942. image: {
  17943. source: "./media/characters/jack/front.svg",
  17944. extra: 1754 / 1640,
  17945. bottom: 0.01
  17946. }
  17947. },
  17948. },
  17949. [
  17950. {
  17951. name: "Normal",
  17952. height: math.unit(80000, "feet"),
  17953. default: true
  17954. },
  17955. {
  17956. name: "Max size",
  17957. height: math.unit(10, "lightyears")
  17958. },
  17959. ]
  17960. ))
  17961. characterMakers.push(() => makeCharacter(
  17962. { name: "Cafat", species: ["husky"], tags: ["taur"] },
  17963. {
  17964. urban: {
  17965. height: math.unit(5, "feet"),
  17966. weight: math.unit(240, "lb"),
  17967. name: "Urban",
  17968. image: {
  17969. source: "./media/characters/cafat/urban.svg",
  17970. extra: 1223/1126,
  17971. bottom: 205/1428
  17972. }
  17973. },
  17974. summer: {
  17975. height: math.unit(5, "feet"),
  17976. weight: math.unit(240, "lb"),
  17977. name: "Summer",
  17978. image: {
  17979. source: "./media/characters/cafat/summer.svg",
  17980. extra: 1223/1126,
  17981. bottom: 205/1428
  17982. }
  17983. },
  17984. winter: {
  17985. height: math.unit(5, "feet"),
  17986. weight: math.unit(240, "lb"),
  17987. name: "Winter",
  17988. image: {
  17989. source: "./media/characters/cafat/winter.svg",
  17990. extra: 1223/1126,
  17991. bottom: 205/1428
  17992. }
  17993. },
  17994. lingerie: {
  17995. height: math.unit(5, "feet"),
  17996. weight: math.unit(240, "lb"),
  17997. name: "Lingerie",
  17998. image: {
  17999. source: "./media/characters/cafat/lingerie.svg",
  18000. extra: 1223/1126,
  18001. bottom: 205/1428
  18002. }
  18003. },
  18004. upright: {
  18005. height: math.unit(6.3, "feet"),
  18006. weight: math.unit(240, "lb"),
  18007. name: "Upright",
  18008. image: {
  18009. source: "./media/characters/cafat/upright.svg",
  18010. bottom: 0.01
  18011. }
  18012. },
  18013. uprightFull: {
  18014. height: math.unit(6.3, "feet"),
  18015. weight: math.unit(240, "lb"),
  18016. name: "Upright (Full)",
  18017. image: {
  18018. source: "./media/characters/cafat/upright-full.svg",
  18019. bottom: 0.01
  18020. }
  18021. },
  18022. },
  18023. [
  18024. {
  18025. name: "Small",
  18026. height: math.unit(5, "feet"),
  18027. default: true
  18028. },
  18029. {
  18030. name: "Large",
  18031. height: math.unit(13, "feet")
  18032. },
  18033. ]
  18034. ))
  18035. characterMakers.push(() => makeCharacter(
  18036. { name: "Verin Raharra", species: ["sergal"], tags: ["anthro"] },
  18037. {
  18038. front: {
  18039. height: math.unit(6, "feet"),
  18040. weight: math.unit(150, "lb"),
  18041. name: "Front",
  18042. image: {
  18043. source: "./media/characters/verin-raharra/front.svg",
  18044. extra: 5019 / 4835,
  18045. bottom: 0.023
  18046. }
  18047. },
  18048. },
  18049. [
  18050. {
  18051. name: "Normal",
  18052. height: math.unit(7 + 5 / 12, "feet"),
  18053. default: true
  18054. },
  18055. {
  18056. name: "Upsized",
  18057. height: math.unit(20, "feet")
  18058. },
  18059. ]
  18060. ))
  18061. characterMakers.push(() => makeCharacter(
  18062. { name: "Nakata", species: ["hyena"], tags: ["anthro"] },
  18063. {
  18064. front: {
  18065. height: math.unit(7, "feet"),
  18066. weight: math.unit(230, "lb"),
  18067. name: "Front",
  18068. image: {
  18069. source: "./media/characters/nakata/front.svg",
  18070. extra: 1.005,
  18071. bottom: 0.01
  18072. }
  18073. },
  18074. },
  18075. [
  18076. {
  18077. name: "Normal",
  18078. height: math.unit(7, "feet"),
  18079. default: true
  18080. },
  18081. {
  18082. name: "Big",
  18083. height: math.unit(14, "feet")
  18084. },
  18085. {
  18086. name: "Macro",
  18087. height: math.unit(400, "feet")
  18088. },
  18089. ]
  18090. ))
  18091. characterMakers.push(() => makeCharacter(
  18092. { name: "Lily", species: ["ruppells-fox"], tags: ["anthro"] },
  18093. {
  18094. front: {
  18095. height: math.unit(4.91, "feet"),
  18096. weight: math.unit(100, "lb"),
  18097. name: "Front",
  18098. image: {
  18099. source: "./media/characters/lily/front.svg",
  18100. extra: 1585 / 1415,
  18101. bottom: 0.02
  18102. }
  18103. },
  18104. },
  18105. [
  18106. {
  18107. name: "Normal",
  18108. height: math.unit(4.91, "feet"),
  18109. default: true
  18110. },
  18111. ]
  18112. ))
  18113. characterMakers.push(() => makeCharacter(
  18114. { name: "Sheila", species: ["leopard-seal"], tags: ["anthro"] },
  18115. {
  18116. laying: {
  18117. height: math.unit(4 + 4 / 12, "feet"),
  18118. weight: math.unit(600, "lb"),
  18119. name: "Laying",
  18120. image: {
  18121. source: "./media/characters/sheila/laying.svg",
  18122. extra: 1333 / 1265,
  18123. bottom: 0.16
  18124. }
  18125. },
  18126. },
  18127. [
  18128. {
  18129. name: "Normal",
  18130. height: math.unit(4 + 4 / 12, "feet"),
  18131. default: true
  18132. },
  18133. ]
  18134. ))
  18135. characterMakers.push(() => makeCharacter(
  18136. { name: "Sax", species: ["argonian"], tags: ["anthro"] },
  18137. {
  18138. front: {
  18139. height: math.unit(6, "feet"),
  18140. weight: math.unit(190, "lb"),
  18141. name: "Front",
  18142. image: {
  18143. source: "./media/characters/sax/front.svg",
  18144. extra: 1187 / 973,
  18145. bottom: 0.042
  18146. }
  18147. },
  18148. },
  18149. [
  18150. {
  18151. name: "Micro",
  18152. height: math.unit(4, "inches"),
  18153. default: true
  18154. },
  18155. ]
  18156. ))
  18157. characterMakers.push(() => makeCharacter(
  18158. { name: "Pandora", species: ["fox"], tags: ["anthro"] },
  18159. {
  18160. front: {
  18161. height: math.unit(6, "feet"),
  18162. weight: math.unit(150, "lb"),
  18163. name: "Front",
  18164. image: {
  18165. source: "./media/characters/pandora/front.svg",
  18166. extra: 2720 / 2556,
  18167. bottom: 0.015
  18168. }
  18169. },
  18170. back: {
  18171. height: math.unit(6, "feet"),
  18172. weight: math.unit(150, "lb"),
  18173. name: "Back",
  18174. image: {
  18175. source: "./media/characters/pandora/back.svg",
  18176. extra: 2720 / 2556,
  18177. bottom: 0.01
  18178. }
  18179. },
  18180. beans: {
  18181. height: math.unit(6 / 8, "feet"),
  18182. name: "Beans",
  18183. image: {
  18184. source: "./media/characters/pandora/beans.svg"
  18185. }
  18186. },
  18187. collar: {
  18188. height: math.unit(0.31, "feet"),
  18189. name: "Collar",
  18190. image: {
  18191. source: "./media/characters/pandora/collar.svg"
  18192. }
  18193. },
  18194. skirt: {
  18195. height: math.unit(6, "feet"),
  18196. weight: math.unit(150, "lb"),
  18197. name: "Skirt",
  18198. image: {
  18199. source: "./media/characters/pandora/skirt.svg",
  18200. extra: 1622 / 1525,
  18201. bottom: 0.015
  18202. }
  18203. },
  18204. hoodie: {
  18205. height: math.unit(6, "feet"),
  18206. weight: math.unit(150, "lb"),
  18207. name: "Hoodie",
  18208. image: {
  18209. source: "./media/characters/pandora/hoodie.svg",
  18210. extra: 1622 / 1525,
  18211. bottom: 0.015
  18212. }
  18213. },
  18214. casual: {
  18215. height: math.unit(6, "feet"),
  18216. weight: math.unit(150, "lb"),
  18217. name: "Casual",
  18218. image: {
  18219. source: "./media/characters/pandora/casual.svg",
  18220. extra: 1622 / 1525,
  18221. bottom: 0.015
  18222. }
  18223. },
  18224. },
  18225. [
  18226. {
  18227. name: "Normal",
  18228. height: math.unit(6, "feet")
  18229. },
  18230. {
  18231. name: "Big Steppy",
  18232. height: math.unit(1, "km"),
  18233. default: true
  18234. },
  18235. {
  18236. name: "Galactic Steppy",
  18237. height: math.unit(2, "gigameters")
  18238. },
  18239. ]
  18240. ))
  18241. characterMakers.push(() => makeCharacter(
  18242. { name: "Venio Darcony", species: ["hyena"], tags: ["anthro"] },
  18243. {
  18244. side: {
  18245. height: math.unit(10, "feet"),
  18246. weight: math.unit(800, "kg"),
  18247. name: "Side",
  18248. image: {
  18249. source: "./media/characters/venio-darcony/side.svg",
  18250. extra: 1373 / 1003,
  18251. bottom: 0.037
  18252. }
  18253. },
  18254. front: {
  18255. height: math.unit(19, "feet"),
  18256. weight: math.unit(800, "kg"),
  18257. name: "Front",
  18258. image: {
  18259. source: "./media/characters/venio-darcony/front.svg"
  18260. }
  18261. },
  18262. back: {
  18263. height: math.unit(19, "feet"),
  18264. weight: math.unit(800, "kg"),
  18265. name: "Back",
  18266. image: {
  18267. source: "./media/characters/venio-darcony/back.svg"
  18268. }
  18269. },
  18270. sideNsfw: {
  18271. height: math.unit(10, "feet"),
  18272. weight: math.unit(800, "kg"),
  18273. name: "Side (NSFW)",
  18274. image: {
  18275. source: "./media/characters/venio-darcony/side-nsfw.svg",
  18276. extra: 1373 / 1003,
  18277. bottom: 0.037
  18278. }
  18279. },
  18280. frontNsfw: {
  18281. height: math.unit(19, "feet"),
  18282. weight: math.unit(800, "kg"),
  18283. name: "Front (NSFW)",
  18284. image: {
  18285. source: "./media/characters/venio-darcony/front-nsfw.svg"
  18286. }
  18287. },
  18288. backNsfw: {
  18289. height: math.unit(19, "feet"),
  18290. weight: math.unit(800, "kg"),
  18291. name: "Back (NSFW)",
  18292. image: {
  18293. source: "./media/characters/venio-darcony/back-nsfw.svg"
  18294. }
  18295. },
  18296. sideArmored: {
  18297. height: math.unit(10, "feet"),
  18298. weight: math.unit(800, "kg"),
  18299. name: "Side (Armored)",
  18300. image: {
  18301. source: "./media/characters/venio-darcony/side-armored.svg",
  18302. extra: 1373 / 1003,
  18303. bottom: 0.037
  18304. }
  18305. },
  18306. frontArmored: {
  18307. height: math.unit(19, "feet"),
  18308. weight: math.unit(900, "kg"),
  18309. name: "Front (Armored)",
  18310. image: {
  18311. source: "./media/characters/venio-darcony/front-armored.svg"
  18312. }
  18313. },
  18314. backArmored: {
  18315. height: math.unit(19, "feet"),
  18316. weight: math.unit(900, "kg"),
  18317. name: "Back (Armored)",
  18318. image: {
  18319. source: "./media/characters/venio-darcony/back-armored.svg"
  18320. }
  18321. },
  18322. sword: {
  18323. height: math.unit(10, "feet"),
  18324. weight: math.unit(50, "lb"),
  18325. name: "Sword",
  18326. image: {
  18327. source: "./media/characters/venio-darcony/sword.svg"
  18328. }
  18329. },
  18330. },
  18331. [
  18332. {
  18333. name: "Normal",
  18334. height: math.unit(10, "feet")
  18335. },
  18336. {
  18337. name: "Macro",
  18338. height: math.unit(130, "feet"),
  18339. default: true
  18340. },
  18341. {
  18342. name: "Macro+",
  18343. height: math.unit(240, "feet")
  18344. },
  18345. ]
  18346. ))
  18347. characterMakers.push(() => makeCharacter(
  18348. { name: "Veski", species: ["shark"], tags: ["anthro"] },
  18349. {
  18350. front: {
  18351. height: math.unit(6, "feet"),
  18352. weight: math.unit(150, "lb"),
  18353. name: "Front",
  18354. image: {
  18355. source: "./media/characters/veski/front.svg",
  18356. extra: 1299 / 1225,
  18357. bottom: 0.04
  18358. }
  18359. },
  18360. back: {
  18361. height: math.unit(6, "feet"),
  18362. weight: math.unit(150, "lb"),
  18363. name: "Back",
  18364. image: {
  18365. source: "./media/characters/veski/back.svg",
  18366. extra: 1299 / 1225,
  18367. bottom: 0.008
  18368. }
  18369. },
  18370. maw: {
  18371. height: math.unit(1.5 * 1.21, "feet"),
  18372. name: "Maw",
  18373. image: {
  18374. source: "./media/characters/veski/maw.svg"
  18375. }
  18376. },
  18377. },
  18378. [
  18379. {
  18380. name: "Macro",
  18381. height: math.unit(2, "km"),
  18382. default: true
  18383. },
  18384. ]
  18385. ))
  18386. characterMakers.push(() => makeCharacter(
  18387. { name: "Isabelle", species: ["wolf"], tags: ["anthro"] },
  18388. {
  18389. front: {
  18390. height: math.unit(5 + 7 / 12, "feet"),
  18391. name: "Front",
  18392. image: {
  18393. source: "./media/characters/isabelle/front.svg",
  18394. extra: 2130 / 1976,
  18395. bottom: 0.05
  18396. }
  18397. },
  18398. },
  18399. [
  18400. {
  18401. name: "Supermicro",
  18402. height: math.unit(10, "micrometers")
  18403. },
  18404. {
  18405. name: "Micro",
  18406. height: math.unit(1, "inch")
  18407. },
  18408. {
  18409. name: "Tiny",
  18410. height: math.unit(5, "inches")
  18411. },
  18412. {
  18413. name: "Standard",
  18414. height: math.unit(5 + 7 / 12, "inches")
  18415. },
  18416. {
  18417. name: "Macro",
  18418. height: math.unit(80, "meters"),
  18419. default: true
  18420. },
  18421. {
  18422. name: "Megamacro",
  18423. height: math.unit(250, "meters")
  18424. },
  18425. {
  18426. name: "Gigamacro",
  18427. height: math.unit(5, "km")
  18428. },
  18429. {
  18430. name: "Cosmic",
  18431. height: math.unit(2.5e6, "miles")
  18432. },
  18433. ]
  18434. ))
  18435. characterMakers.push(() => makeCharacter(
  18436. { name: "Hanzo", species: ["greninja"], tags: ["anthro"] },
  18437. {
  18438. front: {
  18439. height: math.unit(6, "feet"),
  18440. weight: math.unit(150, "lb"),
  18441. name: "Front",
  18442. image: {
  18443. source: "./media/characters/hanzo/front.svg",
  18444. extra: 374 / 344,
  18445. bottom: 0.02
  18446. }
  18447. },
  18448. },
  18449. [
  18450. {
  18451. name: "Normal",
  18452. height: math.unit(8, "feet"),
  18453. default: true
  18454. },
  18455. ]
  18456. ))
  18457. characterMakers.push(() => makeCharacter(
  18458. { name: "Anna", species: ["greninja"], tags: ["anthro"] },
  18459. {
  18460. front: {
  18461. height: math.unit(7, "feet"),
  18462. weight: math.unit(130, "lb"),
  18463. name: "Front",
  18464. image: {
  18465. source: "./media/characters/anna/front.svg",
  18466. extra: 169 / 145,
  18467. bottom: 0.06
  18468. }
  18469. },
  18470. full: {
  18471. height: math.unit(4.96, "feet"),
  18472. weight: math.unit(220, "lb"),
  18473. name: "Full",
  18474. image: {
  18475. source: "./media/characters/anna/full.svg",
  18476. extra: 138 / 114,
  18477. bottom: 0.15
  18478. }
  18479. },
  18480. tongue: {
  18481. height: math.unit(2.53, "feet"),
  18482. name: "Tongue",
  18483. image: {
  18484. source: "./media/characters/anna/tongue.svg"
  18485. }
  18486. },
  18487. },
  18488. [
  18489. {
  18490. name: "Normal",
  18491. height: math.unit(7, "feet"),
  18492. default: true
  18493. },
  18494. ]
  18495. ))
  18496. characterMakers.push(() => makeCharacter(
  18497. { name: "Ian Corvid", species: ["crow"], tags: ["anthro"] },
  18498. {
  18499. front: {
  18500. height: math.unit(7, "feet"),
  18501. weight: math.unit(150, "lb"),
  18502. name: "Front",
  18503. image: {
  18504. source: "./media/characters/ian-corvid/front.svg",
  18505. extra: 150 / 142,
  18506. bottom: 0.02
  18507. }
  18508. },
  18509. back: {
  18510. height: math.unit(7, "feet"),
  18511. weight: math.unit(150, "lb"),
  18512. name: "Back",
  18513. image: {
  18514. source: "./media/characters/ian-corvid/back.svg",
  18515. extra: 150 / 143,
  18516. bottom: 0.01
  18517. }
  18518. },
  18519. stomping: {
  18520. height: math.unit(7, "feet"),
  18521. weight: math.unit(150, "lb"),
  18522. name: "Stomping",
  18523. image: {
  18524. source: "./media/characters/ian-corvid/stomping.svg",
  18525. extra: 76 / 72
  18526. }
  18527. },
  18528. sitting: {
  18529. height: math.unit(7 / 1.8, "feet"),
  18530. weight: math.unit(150, "lb"),
  18531. name: "Sitting",
  18532. image: {
  18533. source: "./media/characters/ian-corvid/sitting.svg",
  18534. extra: 1400 / 1269,
  18535. bottom: 0.15
  18536. }
  18537. },
  18538. },
  18539. [
  18540. {
  18541. name: "Tiny Microw",
  18542. height: math.unit(1, "inch")
  18543. },
  18544. {
  18545. name: "Microw",
  18546. height: math.unit(6, "inches")
  18547. },
  18548. {
  18549. name: "Crow",
  18550. height: math.unit(7 + 1 / 12, "feet"),
  18551. default: true
  18552. },
  18553. {
  18554. name: "Macrow",
  18555. height: math.unit(176, "feet")
  18556. },
  18557. ]
  18558. ))
  18559. characterMakers.push(() => makeCharacter(
  18560. { name: "Natalie Kellon", species: ["fox"], tags: ["anthro"] },
  18561. {
  18562. front: {
  18563. height: math.unit(5 + 7 / 12, "feet"),
  18564. weight: math.unit(147, "lb"),
  18565. name: "Front",
  18566. image: {
  18567. source: "./media/characters/natalie-kellon/front.svg",
  18568. extra: 1214 / 1141,
  18569. bottom: 0.02
  18570. }
  18571. },
  18572. },
  18573. [
  18574. {
  18575. name: "Micro",
  18576. height: math.unit(1 / 16, "inch")
  18577. },
  18578. {
  18579. name: "Tiny",
  18580. height: math.unit(4, "inches")
  18581. },
  18582. {
  18583. name: "Normal",
  18584. height: math.unit(5 + 7 / 12, "feet"),
  18585. default: true
  18586. },
  18587. {
  18588. name: "Amazon",
  18589. height: math.unit(12, "feet")
  18590. },
  18591. {
  18592. name: "Giantess",
  18593. height: math.unit(160, "meters")
  18594. },
  18595. {
  18596. name: "Titaness",
  18597. height: math.unit(800, "meters")
  18598. },
  18599. ]
  18600. ))
  18601. characterMakers.push(() => makeCharacter(
  18602. { name: "Alluria", species: ["megalodon"], tags: ["anthro"] },
  18603. {
  18604. front: {
  18605. height: math.unit(6, "feet"),
  18606. weight: math.unit(150, "lb"),
  18607. name: "Front",
  18608. image: {
  18609. source: "./media/characters/alluria/front.svg",
  18610. extra: 806 / 738,
  18611. bottom: 0.01
  18612. }
  18613. },
  18614. side: {
  18615. height: math.unit(6, "feet"),
  18616. weight: math.unit(150, "lb"),
  18617. name: "Side",
  18618. image: {
  18619. source: "./media/characters/alluria/side.svg",
  18620. extra: 800 / 750,
  18621. }
  18622. },
  18623. back: {
  18624. height: math.unit(6, "feet"),
  18625. weight: math.unit(150, "lb"),
  18626. name: "Back",
  18627. image: {
  18628. source: "./media/characters/alluria/back.svg",
  18629. extra: 806 / 738,
  18630. }
  18631. },
  18632. frontMaid: {
  18633. height: math.unit(6, "feet"),
  18634. weight: math.unit(150, "lb"),
  18635. name: "Front (Maid)",
  18636. image: {
  18637. source: "./media/characters/alluria/front-maid.svg",
  18638. extra: 806 / 738,
  18639. bottom: 0.01
  18640. }
  18641. },
  18642. sideMaid: {
  18643. height: math.unit(6, "feet"),
  18644. weight: math.unit(150, "lb"),
  18645. name: "Side (Maid)",
  18646. image: {
  18647. source: "./media/characters/alluria/side-maid.svg",
  18648. extra: 800 / 750,
  18649. bottom: 0.005
  18650. }
  18651. },
  18652. backMaid: {
  18653. height: math.unit(6, "feet"),
  18654. weight: math.unit(150, "lb"),
  18655. name: "Back (Maid)",
  18656. image: {
  18657. source: "./media/characters/alluria/back-maid.svg",
  18658. extra: 806 / 738,
  18659. }
  18660. },
  18661. },
  18662. [
  18663. {
  18664. name: "Micro",
  18665. height: math.unit(6, "inches"),
  18666. default: true
  18667. },
  18668. ]
  18669. ))
  18670. characterMakers.push(() => makeCharacter(
  18671. { name: "Kyle", species: ["deer"], tags: ["anthro"] },
  18672. {
  18673. front: {
  18674. height: math.unit(6, "feet"),
  18675. weight: math.unit(150, "lb"),
  18676. name: "Front",
  18677. image: {
  18678. source: "./media/characters/kyle/front.svg",
  18679. extra: 1069 / 962,
  18680. bottom: 77.228 / 1727.45
  18681. }
  18682. },
  18683. },
  18684. [
  18685. {
  18686. name: "Macro",
  18687. height: math.unit(150, "feet"),
  18688. default: true
  18689. },
  18690. ]
  18691. ))
  18692. characterMakers.push(() => makeCharacter(
  18693. { name: "Duncan", species: ["kangaroo"], tags: ["anthro"] },
  18694. {
  18695. front: {
  18696. height: math.unit(6, "feet"),
  18697. weight: math.unit(300, "lb"),
  18698. name: "Front",
  18699. image: {
  18700. source: "./media/characters/duncan/front.svg",
  18701. extra: 1650 / 1482,
  18702. bottom: 0.05
  18703. }
  18704. },
  18705. },
  18706. [
  18707. {
  18708. name: "Macro",
  18709. height: math.unit(100, "feet"),
  18710. default: true
  18711. },
  18712. ]
  18713. ))
  18714. characterMakers.push(() => makeCharacter(
  18715. { name: "Memory", species: ["sugar-glider"], tags: ["anthro"] },
  18716. {
  18717. front: {
  18718. height: math.unit(5 + 4 / 12, "feet"),
  18719. weight: math.unit(220, "lb"),
  18720. name: "Front",
  18721. image: {
  18722. source: "./media/characters/memory/front.svg",
  18723. extra: 3641 / 3545,
  18724. bottom: 0.03
  18725. }
  18726. },
  18727. back: {
  18728. height: math.unit(5 + 4 / 12, "feet"),
  18729. weight: math.unit(220, "lb"),
  18730. name: "Back",
  18731. image: {
  18732. source: "./media/characters/memory/back.svg",
  18733. extra: 3641 / 3545,
  18734. bottom: 0.025
  18735. }
  18736. },
  18737. frontSkirt: {
  18738. height: math.unit(5 + 4 / 12, "feet"),
  18739. weight: math.unit(220, "lb"),
  18740. name: "Front (Skirt)",
  18741. image: {
  18742. source: "./media/characters/memory/front-skirt.svg",
  18743. extra: 3641 / 3545,
  18744. bottom: 0.03
  18745. }
  18746. },
  18747. frontDress: {
  18748. height: math.unit(5 + 4 / 12, "feet"),
  18749. weight: math.unit(220, "lb"),
  18750. name: "Front (Dress)",
  18751. image: {
  18752. source: "./media/characters/memory/front-dress.svg",
  18753. extra: 3641 / 3545,
  18754. bottom: 0.03
  18755. }
  18756. },
  18757. },
  18758. [
  18759. {
  18760. name: "Micro",
  18761. height: math.unit(6, "inches"),
  18762. default: true
  18763. },
  18764. {
  18765. name: "Normal",
  18766. height: math.unit(5 + 4 / 12, "feet")
  18767. },
  18768. ]
  18769. ))
  18770. characterMakers.push(() => makeCharacter(
  18771. { name: "Luno", species: ["rabbit"], tags: ["anthro"] },
  18772. {
  18773. front: {
  18774. height: math.unit(4 + 11 / 12, "feet"),
  18775. weight: math.unit(100, "lb"),
  18776. name: "Front",
  18777. image: {
  18778. source: "./media/characters/luno/front.svg",
  18779. extra: 1535 / 1487,
  18780. bottom: 0.03
  18781. }
  18782. },
  18783. },
  18784. [
  18785. {
  18786. name: "Micro",
  18787. height: math.unit(3, "inches")
  18788. },
  18789. {
  18790. name: "Normal",
  18791. height: math.unit(4 + 11 / 12, "feet"),
  18792. default: true
  18793. },
  18794. {
  18795. name: "Macro",
  18796. height: math.unit(300, "feet")
  18797. },
  18798. {
  18799. name: "Megamacro",
  18800. height: math.unit(700, "miles")
  18801. },
  18802. ]
  18803. ))
  18804. characterMakers.push(() => makeCharacter(
  18805. { name: "Jamesy", species: ["deer"], tags: ["anthro"] },
  18806. {
  18807. front: {
  18808. height: math.unit(6 + 2 / 12, "feet"),
  18809. weight: math.unit(170, "lb"),
  18810. name: "Front",
  18811. image: {
  18812. source: "./media/characters/jamesy/front.svg",
  18813. extra: 440 / 382,
  18814. bottom: 0.005
  18815. }
  18816. },
  18817. },
  18818. [
  18819. {
  18820. name: "Micro",
  18821. height: math.unit(3, "inches")
  18822. },
  18823. {
  18824. name: "Normal",
  18825. height: math.unit(6 + 2 / 12, "feet"),
  18826. default: true
  18827. },
  18828. {
  18829. name: "Macro",
  18830. height: math.unit(300, "feet")
  18831. },
  18832. {
  18833. name: "Megamacro",
  18834. height: math.unit(700, "miles")
  18835. },
  18836. ]
  18837. ))
  18838. characterMakers.push(() => makeCharacter(
  18839. { name: "Mark", species: ["fox"], tags: ["anthro"] },
  18840. {
  18841. front: {
  18842. height: math.unit(6, "feet"),
  18843. weight: math.unit(160, "lb"),
  18844. name: "Front",
  18845. image: {
  18846. source: "./media/characters/mark/front.svg",
  18847. extra: 3300 / 3100,
  18848. bottom: 136.42 / 3440.47
  18849. }
  18850. },
  18851. },
  18852. [
  18853. {
  18854. name: "Macro",
  18855. height: math.unit(120, "meters")
  18856. },
  18857. {
  18858. name: "Bigger Macro",
  18859. height: math.unit(350, "meters")
  18860. },
  18861. {
  18862. name: "Megamacro",
  18863. height: math.unit(8, "km"),
  18864. default: true
  18865. },
  18866. {
  18867. name: "Continental",
  18868. height: math.unit(4550, "km")
  18869. },
  18870. {
  18871. name: "Planetary",
  18872. height: math.unit(65000, "km")
  18873. },
  18874. ]
  18875. ))
  18876. characterMakers.push(() => makeCharacter(
  18877. { name: "Mac", species: ["t-rex"], tags: ["anthro"] },
  18878. {
  18879. front: {
  18880. height: math.unit(6, "feet"),
  18881. weight: math.unit(400, "lb"),
  18882. name: "Front",
  18883. image: {
  18884. source: "./media/characters/mac/front.svg",
  18885. extra: 1048 / 987.7,
  18886. bottom: 60 / 1107.6,
  18887. }
  18888. },
  18889. },
  18890. [
  18891. {
  18892. name: "Macro",
  18893. height: math.unit(500, "feet"),
  18894. default: true
  18895. },
  18896. ]
  18897. ))
  18898. characterMakers.push(() => makeCharacter(
  18899. { name: "Bari", species: ["ampharos"], tags: ["anthro"] },
  18900. {
  18901. front: {
  18902. height: math.unit(5 + 2 / 12, "feet"),
  18903. weight: math.unit(190, "lb"),
  18904. name: "Front",
  18905. image: {
  18906. source: "./media/characters/bari/front.svg",
  18907. extra: 3156 / 2880,
  18908. bottom: 0.03
  18909. }
  18910. },
  18911. back: {
  18912. height: math.unit(5 + 2 / 12, "feet"),
  18913. weight: math.unit(190, "lb"),
  18914. name: "Back",
  18915. image: {
  18916. source: "./media/characters/bari/back.svg",
  18917. extra: 3260 / 2834,
  18918. bottom: 0.025
  18919. }
  18920. },
  18921. frontPlush: {
  18922. height: math.unit(5 + 2 / 12, "feet"),
  18923. weight: math.unit(190, "lb"),
  18924. name: "Front (Plush)",
  18925. image: {
  18926. source: "./media/characters/bari/front-plush.svg",
  18927. extra: 1112 / 1061,
  18928. bottom: 0.002
  18929. }
  18930. },
  18931. },
  18932. [
  18933. {
  18934. name: "Micro",
  18935. height: math.unit(3, "inches")
  18936. },
  18937. {
  18938. name: "Normal",
  18939. height: math.unit(5 + 2 / 12, "feet"),
  18940. default: true
  18941. },
  18942. {
  18943. name: "Macro",
  18944. height: math.unit(20, "feet")
  18945. },
  18946. ]
  18947. ))
  18948. characterMakers.push(() => makeCharacter(
  18949. { name: "Hunter Misha Raven", species: ["saint-bernard"], tags: ["anthro"] },
  18950. {
  18951. front: {
  18952. height: math.unit(6 + 1 / 12, "feet"),
  18953. weight: math.unit(275, "lb"),
  18954. name: "Front",
  18955. image: {
  18956. source: "./media/characters/hunter-misha-raven/front.svg"
  18957. }
  18958. },
  18959. },
  18960. [
  18961. {
  18962. name: "Mortal",
  18963. height: math.unit(6 + 1 / 12, "feet")
  18964. },
  18965. {
  18966. name: "Divine",
  18967. height: math.unit(1.12134e34, "parsecs"),
  18968. default: true
  18969. },
  18970. ]
  18971. ))
  18972. characterMakers.push(() => makeCharacter(
  18973. { name: "Max Calore", species: ["typhlosion"], tags: ["anthro"] },
  18974. {
  18975. front: {
  18976. height: math.unit(6 + 3 / 12, "feet"),
  18977. weight: math.unit(220, "lb"),
  18978. name: "Front",
  18979. image: {
  18980. source: "./media/characters/max-calore/front.svg",
  18981. extra: 1700 / 1648,
  18982. bottom: 0.01
  18983. }
  18984. },
  18985. back: {
  18986. height: math.unit(6 + 3 / 12, "feet"),
  18987. weight: math.unit(220, "lb"),
  18988. name: "Back",
  18989. image: {
  18990. source: "./media/characters/max-calore/back.svg",
  18991. extra: 1700 / 1648,
  18992. bottom: 0.01
  18993. }
  18994. },
  18995. },
  18996. [
  18997. {
  18998. name: "Normal",
  18999. height: math.unit(6 + 3 / 12, "feet"),
  19000. default: true
  19001. },
  19002. ]
  19003. ))
  19004. characterMakers.push(() => makeCharacter(
  19005. { name: "Aspen", species: ["mexican-wolf"], tags: ["feral"] },
  19006. {
  19007. side: {
  19008. height: math.unit(2 + 8 / 12, "feet"),
  19009. weight: math.unit(99, "lb"),
  19010. name: "Side",
  19011. image: {
  19012. source: "./media/characters/aspen/side.svg",
  19013. extra: 152 / 138,
  19014. bottom: 0.032
  19015. }
  19016. },
  19017. },
  19018. [
  19019. {
  19020. name: "Normal",
  19021. height: math.unit(2 + 8 / 12, "feet"),
  19022. default: true
  19023. },
  19024. ]
  19025. ))
  19026. characterMakers.push(() => makeCharacter(
  19027. { name: "Sheila (Feral Wolf)", species: ["wolf"], tags: ["feral"] },
  19028. {
  19029. side: {
  19030. height: math.unit(3 + 2 / 12, "feet"),
  19031. weight: math.unit(224, "lb"),
  19032. name: "Side",
  19033. image: {
  19034. source: "./media/characters/sheila-feral-wolf/side.svg",
  19035. extra: 179 / 166,
  19036. bottom: 0.03
  19037. }
  19038. },
  19039. },
  19040. [
  19041. {
  19042. name: "Normal",
  19043. height: math.unit(3 + 2 / 12, "feet"),
  19044. default: true
  19045. },
  19046. ]
  19047. ))
  19048. characterMakers.push(() => makeCharacter(
  19049. { name: "Michelle", species: ["fox"], tags: ["feral"] },
  19050. {
  19051. side: {
  19052. height: math.unit(1 + 9 / 12, "feet"),
  19053. weight: math.unit(38, "lb"),
  19054. name: "Side",
  19055. image: {
  19056. source: "./media/characters/michelle/side.svg",
  19057. extra: 147 / 136.7,
  19058. bottom: 0.03
  19059. }
  19060. },
  19061. },
  19062. [
  19063. {
  19064. name: "Normal",
  19065. height: math.unit(1 + 9 / 12, "feet"),
  19066. default: true
  19067. },
  19068. ]
  19069. ))
  19070. characterMakers.push(() => makeCharacter(
  19071. { name: "Nino", species: ["stoat"], tags: ["anthro"] },
  19072. {
  19073. front: {
  19074. height: math.unit(1.54, "feet"),
  19075. weight: math.unit(50, "lb"),
  19076. name: "Front",
  19077. image: {
  19078. source: "./media/characters/nino/front.svg"
  19079. }
  19080. },
  19081. },
  19082. [
  19083. {
  19084. name: "Normal",
  19085. height: math.unit(1.54, "feet"),
  19086. default: true
  19087. },
  19088. ]
  19089. ))
  19090. characterMakers.push(() => makeCharacter(
  19091. { name: "Viola", species: ["stoat"], tags: ["anthro"] },
  19092. {
  19093. front: {
  19094. height: math.unit(1.49, "feet"),
  19095. weight: math.unit(45, "lb"),
  19096. name: "Front",
  19097. image: {
  19098. source: "./media/characters/viola/front.svg"
  19099. }
  19100. },
  19101. },
  19102. [
  19103. {
  19104. name: "Normal",
  19105. height: math.unit(1.49, "feet"),
  19106. default: true
  19107. },
  19108. ]
  19109. ))
  19110. characterMakers.push(() => makeCharacter(
  19111. { name: "Atlas", species: ["grizzly-bear"], tags: ["anthro"] },
  19112. {
  19113. front: {
  19114. height: math.unit(6 + 5 / 12, "feet"),
  19115. weight: math.unit(580, "lb"),
  19116. name: "Front",
  19117. image: {
  19118. source: "./media/characters/atlas/front.svg",
  19119. extra: 298.5 / 290,
  19120. bottom: 0.015
  19121. }
  19122. },
  19123. },
  19124. [
  19125. {
  19126. name: "Normal",
  19127. height: math.unit(6 + 5 / 12, "feet"),
  19128. default: true
  19129. },
  19130. ]
  19131. ))
  19132. characterMakers.push(() => makeCharacter(
  19133. { name: "Davy", species: ["cat"], tags: ["feral"] },
  19134. {
  19135. side: {
  19136. height: math.unit(15.6, "inches"),
  19137. weight: math.unit(10, "lb"),
  19138. name: "Side",
  19139. image: {
  19140. source: "./media/characters/davy/side.svg",
  19141. extra: 200 / 170,
  19142. bottom: 0.01
  19143. }
  19144. },
  19145. },
  19146. [
  19147. {
  19148. name: "Normal",
  19149. height: math.unit(15.6, "inches"),
  19150. default: true
  19151. },
  19152. ]
  19153. ))
  19154. characterMakers.push(() => makeCharacter(
  19155. { name: "Fiona", species: ["deer"], tags: ["feral"] },
  19156. {
  19157. side: {
  19158. height: math.unit(4 + 8 / 12, "feet"),
  19159. weight: math.unit(166, "lb"),
  19160. name: "Side",
  19161. image: {
  19162. source: "./media/characters/fiona/side.svg",
  19163. extra: 232 / 220,
  19164. bottom: 0.03
  19165. }
  19166. },
  19167. },
  19168. [
  19169. {
  19170. name: "Normal",
  19171. height: math.unit(4 + 8 / 12, "feet"),
  19172. default: true
  19173. },
  19174. ]
  19175. ))
  19176. characterMakers.push(() => makeCharacter(
  19177. { name: "Lyla", species: ["european-honey-buzzard"], tags: ["feral"] },
  19178. {
  19179. front: {
  19180. height: math.unit(26, "inches"),
  19181. weight: math.unit(35, "lb"),
  19182. name: "Front",
  19183. image: {
  19184. source: "./media/characters/lyla/front.svg",
  19185. bottom: 0.1
  19186. }
  19187. },
  19188. },
  19189. [
  19190. {
  19191. name: "Normal",
  19192. height: math.unit(3, "feet"),
  19193. default: true
  19194. },
  19195. ]
  19196. ))
  19197. characterMakers.push(() => makeCharacter(
  19198. { name: "Perseus", species: ["monitor-lizard", "deity"], tags: ["feral"] },
  19199. {
  19200. side: {
  19201. height: math.unit(1.8, "feet"),
  19202. weight: math.unit(44, "lb"),
  19203. name: "Side",
  19204. image: {
  19205. source: "./media/characters/perseus/side.svg",
  19206. bottom: 0.21
  19207. }
  19208. },
  19209. },
  19210. [
  19211. {
  19212. name: "Normal",
  19213. height: math.unit(1.8, "feet"),
  19214. default: true
  19215. },
  19216. ]
  19217. ))
  19218. characterMakers.push(() => makeCharacter(
  19219. { name: "Remus", species: ["great-blue-heron"], tags: ["feral"] },
  19220. {
  19221. side: {
  19222. height: math.unit(4 + 2 / 12, "feet"),
  19223. weight: math.unit(20, "lb"),
  19224. name: "Side",
  19225. image: {
  19226. source: "./media/characters/remus/side.svg"
  19227. }
  19228. },
  19229. },
  19230. [
  19231. {
  19232. name: "Normal",
  19233. height: math.unit(4 + 2 / 12, "feet"),
  19234. default: true
  19235. },
  19236. ]
  19237. ))
  19238. characterMakers.push(() => makeCharacter(
  19239. { name: "Raf", species: ["maned-wolf"], tags: ["anthro"] },
  19240. {
  19241. front: {
  19242. height: math.unit(4 + 11 / 12, "feet"),
  19243. weight: math.unit(114, "lb"),
  19244. name: "Front",
  19245. image: {
  19246. source: "./media/characters/raf/front.svg",
  19247. extra: 1504/1339,
  19248. bottom: 26/1530
  19249. }
  19250. },
  19251. side: {
  19252. height: math.unit(4 + 11 / 12, "feet"),
  19253. weight: math.unit(114, "lb"),
  19254. name: "Side",
  19255. image: {
  19256. source: "./media/characters/raf/side.svg",
  19257. extra: 1466/1316,
  19258. bottom: 29/1495
  19259. }
  19260. },
  19261. paw: {
  19262. height: math.unit(1.45, "feet"),
  19263. name: "Paw",
  19264. image: {
  19265. source: "./media/characters/raf/paw.svg"
  19266. },
  19267. extraAttributes: {
  19268. "toeSize": {
  19269. name: "Toe Size",
  19270. power: 2,
  19271. type: "area",
  19272. base: math.unit(0.004, "m^2")
  19273. },
  19274. "padSize": {
  19275. name: "Pad Size",
  19276. power: 2,
  19277. type: "area",
  19278. base: math.unit(0.04, "m^2")
  19279. },
  19280. "footSize": {
  19281. name: "Foot Size",
  19282. power: 2,
  19283. type: "area",
  19284. base: math.unit(0.08, "m^2")
  19285. },
  19286. }
  19287. },
  19288. },
  19289. [
  19290. {
  19291. name: "Micro",
  19292. height: math.unit(2, "inches")
  19293. },
  19294. {
  19295. name: "Normal",
  19296. height: math.unit(4 + 11 / 12, "feet"),
  19297. default: true
  19298. },
  19299. {
  19300. name: "Macro",
  19301. height: math.unit(70, "feet")
  19302. },
  19303. ]
  19304. ))
  19305. characterMakers.push(() => makeCharacter(
  19306. { name: "Liam Einarr", species: ["gray-wolf"], tags: ["anthro"] },
  19307. {
  19308. front: {
  19309. height: math.unit(1.5, "meters"),
  19310. weight: math.unit(68, "kg"),
  19311. name: "Front",
  19312. image: {
  19313. source: "./media/characters/liam-einarr/front.svg",
  19314. extra: 2822 / 2666
  19315. }
  19316. },
  19317. back: {
  19318. height: math.unit(1.5, "meters"),
  19319. weight: math.unit(68, "kg"),
  19320. name: "Back",
  19321. image: {
  19322. source: "./media/characters/liam-einarr/back.svg",
  19323. extra: 2822 / 2666,
  19324. bottom: 0.015
  19325. }
  19326. },
  19327. },
  19328. [
  19329. {
  19330. name: "Normal",
  19331. height: math.unit(1.5, "meters"),
  19332. default: true
  19333. },
  19334. {
  19335. name: "Macro",
  19336. height: math.unit(150, "meters")
  19337. },
  19338. {
  19339. name: "Megamacro",
  19340. height: math.unit(35, "km")
  19341. },
  19342. ]
  19343. ))
  19344. characterMakers.push(() => makeCharacter(
  19345. { name: "Linda", species: ["bull-terrier"], tags: ["anthro"] },
  19346. {
  19347. front: {
  19348. height: math.unit(6, "feet"),
  19349. weight: math.unit(75, "kg"),
  19350. name: "Front",
  19351. image: {
  19352. source: "./media/characters/linda/front.svg",
  19353. extra: 930 / 874,
  19354. bottom: 0.004
  19355. }
  19356. },
  19357. },
  19358. [
  19359. {
  19360. name: "Normal",
  19361. height: math.unit(6, "feet"),
  19362. default: true
  19363. },
  19364. ]
  19365. ))
  19366. characterMakers.push(() => makeCharacter(
  19367. { name: "Caylex", species: ["sergal"], tags: ["anthro"] },
  19368. {
  19369. front: {
  19370. height: math.unit(6 + 8 / 12, "feet"),
  19371. weight: math.unit(220, "lb"),
  19372. name: "Front",
  19373. image: {
  19374. source: "./media/characters/caylex/front.svg",
  19375. extra: 821 / 772,
  19376. bottom: 0.07
  19377. }
  19378. },
  19379. back: {
  19380. height: math.unit(6 + 8 / 12, "feet"),
  19381. weight: math.unit(220, "lb"),
  19382. name: "Back",
  19383. image: {
  19384. source: "./media/characters/caylex/back.svg",
  19385. extra: 821 / 772,
  19386. bottom: 0.022
  19387. }
  19388. },
  19389. hand: {
  19390. height: math.unit(1.25, "feet"),
  19391. name: "Hand",
  19392. image: {
  19393. source: "./media/characters/caylex/hand.svg"
  19394. }
  19395. },
  19396. foot: {
  19397. height: math.unit(1.6, "feet"),
  19398. name: "Foot",
  19399. image: {
  19400. source: "./media/characters/caylex/foot.svg"
  19401. }
  19402. },
  19403. armored: {
  19404. height: math.unit(6 + 8 / 12, "feet"),
  19405. weight: math.unit(250, "lb"),
  19406. name: "Armored",
  19407. image: {
  19408. source: "./media/characters/caylex/armored.svg",
  19409. extra: 1420 / 1310,
  19410. bottom: 0.045
  19411. }
  19412. },
  19413. },
  19414. [
  19415. {
  19416. name: "Normal",
  19417. height: math.unit(6 + 8 / 12, "feet"),
  19418. default: true
  19419. },
  19420. {
  19421. name: "Normal+",
  19422. height: math.unit(12, "feet")
  19423. },
  19424. ]
  19425. ))
  19426. characterMakers.push(() => makeCharacter(
  19427. { name: "Alana", species: ["wolf"], tags: ["anthro"] },
  19428. {
  19429. front: {
  19430. height: math.unit(7 + 6 / 12, "feet"),
  19431. weight: math.unit(288, "lb"),
  19432. name: "Front",
  19433. image: {
  19434. source: "./media/characters/alana/front.svg",
  19435. extra: 679 / 653,
  19436. bottom: 22.5 / 701
  19437. }
  19438. },
  19439. },
  19440. [
  19441. {
  19442. name: "Normal",
  19443. height: math.unit(7 + 6 / 12, "feet")
  19444. },
  19445. {
  19446. name: "Large",
  19447. height: math.unit(50, "feet")
  19448. },
  19449. {
  19450. name: "Macro",
  19451. height: math.unit(100, "feet"),
  19452. default: true
  19453. },
  19454. {
  19455. name: "Macro+",
  19456. height: math.unit(200, "feet")
  19457. },
  19458. ]
  19459. ))
  19460. characterMakers.push(() => makeCharacter(
  19461. { name: "Hasani", species: ["hyena"], tags: ["anthro"] },
  19462. {
  19463. front: {
  19464. height: math.unit(6 + 1 / 12, "feet"),
  19465. weight: math.unit(210, "lb"),
  19466. name: "Front",
  19467. image: {
  19468. source: "./media/characters/hasani/front.svg",
  19469. extra: 244 / 232,
  19470. bottom: 0.01
  19471. }
  19472. },
  19473. back: {
  19474. height: math.unit(6 + 1 / 12, "feet"),
  19475. weight: math.unit(210, "lb"),
  19476. name: "Back",
  19477. image: {
  19478. source: "./media/characters/hasani/back.svg",
  19479. extra: 244 / 232,
  19480. bottom: 0.01
  19481. }
  19482. },
  19483. },
  19484. [
  19485. {
  19486. name: "Normal",
  19487. height: math.unit(6 + 1 / 12, "feet")
  19488. },
  19489. {
  19490. name: "Macro",
  19491. height: math.unit(175, "feet"),
  19492. default: true
  19493. },
  19494. ]
  19495. ))
  19496. characterMakers.push(() => makeCharacter(
  19497. { name: "Nita", species: ["african-golden-cat"], tags: ["anthro"] },
  19498. {
  19499. front: {
  19500. height: math.unit(1.82, "meters"),
  19501. weight: math.unit(140, "lb"),
  19502. name: "Front",
  19503. image: {
  19504. source: "./media/characters/nita/front.svg",
  19505. extra: 2473 / 2363,
  19506. bottom: 0.01
  19507. }
  19508. },
  19509. },
  19510. [
  19511. {
  19512. name: "Normal",
  19513. height: math.unit(1.82, "m")
  19514. },
  19515. {
  19516. name: "Macro",
  19517. height: math.unit(300, "m")
  19518. },
  19519. {
  19520. name: "Mistake Canon",
  19521. height: math.unit(0.5, "miles"),
  19522. default: true
  19523. },
  19524. {
  19525. name: "Big Mistake",
  19526. height: math.unit(13, "miles")
  19527. },
  19528. {
  19529. name: "Playing God",
  19530. height: math.unit(2450, "miles")
  19531. },
  19532. ]
  19533. ))
  19534. characterMakers.push(() => makeCharacter(
  19535. { name: "Shiriko", species: ["kobold"], tags: ["anthro"] },
  19536. {
  19537. front: {
  19538. height: math.unit(4, "feet"),
  19539. weight: math.unit(120, "lb"),
  19540. name: "Front",
  19541. image: {
  19542. source: "./media/characters/shiriko/front.svg",
  19543. extra: 970/934,
  19544. bottom: 5/975
  19545. }
  19546. },
  19547. },
  19548. [
  19549. {
  19550. name: "Normal",
  19551. height: math.unit(4, "feet"),
  19552. default: true
  19553. },
  19554. ]
  19555. ))
  19556. characterMakers.push(() => makeCharacter(
  19557. { name: "Deja", species: ["kangaroo"], tags: ["anthro"] },
  19558. {
  19559. front: {
  19560. height: math.unit(6, "feet"),
  19561. name: "front",
  19562. image: {
  19563. source: "./media/characters/deja/front.svg",
  19564. extra: 926 / 840,
  19565. bottom: 0.07
  19566. }
  19567. },
  19568. },
  19569. [
  19570. {
  19571. name: "Planck Length",
  19572. height: math.unit(1.6e-35, "meters")
  19573. },
  19574. {
  19575. name: "Normal",
  19576. height: math.unit(30.48, "meters"),
  19577. default: true
  19578. },
  19579. {
  19580. name: "Universal",
  19581. height: math.unit(8.8e26, "meters")
  19582. },
  19583. ]
  19584. ))
  19585. characterMakers.push(() => makeCharacter(
  19586. { name: "Anima", species: ["black-panther"], tags: ["anthro"] },
  19587. {
  19588. side: {
  19589. height: math.unit(8, "feet"),
  19590. weight: math.unit(6300, "lb"),
  19591. name: "Side",
  19592. image: {
  19593. source: "./media/characters/anima/side.svg",
  19594. bottom: 0.035
  19595. }
  19596. },
  19597. },
  19598. [
  19599. {
  19600. name: "Normal",
  19601. height: math.unit(8, "feet"),
  19602. default: true
  19603. },
  19604. ]
  19605. ))
  19606. characterMakers.push(() => makeCharacter(
  19607. { name: "Bianca", species: ["cat", "rabbit"], tags: ["anthro"] },
  19608. {
  19609. front: {
  19610. height: math.unit(8, "feet"),
  19611. weight: math.unit(350, "lb"),
  19612. name: "Front",
  19613. image: {
  19614. source: "./media/characters/bianca/front.svg",
  19615. extra: 234 / 225,
  19616. bottom: 0.03
  19617. }
  19618. },
  19619. },
  19620. [
  19621. {
  19622. name: "Normal",
  19623. height: math.unit(8, "feet"),
  19624. default: true
  19625. },
  19626. ]
  19627. ))
  19628. characterMakers.push(() => makeCharacter(
  19629. { name: "Adinia", species: ["kelpie", "nykur"], tags: ["anthro"] },
  19630. {
  19631. front: {
  19632. height: math.unit(11 + 5/12, "feet"),
  19633. weight: math.unit(1200, "lb"),
  19634. name: "Front",
  19635. image: {
  19636. source: "./media/characters/adinia/front.svg",
  19637. extra: 1767/1641,
  19638. bottom: 44/1811
  19639. },
  19640. extraAttributes: {
  19641. "energyIntake": {
  19642. name: "Energy Intake",
  19643. power: 3,
  19644. type: "energy",
  19645. base: math.unit(2000 * 5 * 1200 / 150, "kcal")
  19646. },
  19647. }
  19648. },
  19649. back: {
  19650. height: math.unit(11 + 5/12, "feet"),
  19651. weight: math.unit(1200, "lb"),
  19652. name: "Back",
  19653. image: {
  19654. source: "./media/characters/adinia/back.svg",
  19655. extra: 1834/1684,
  19656. bottom: 14/1848
  19657. },
  19658. extraAttributes: {
  19659. "energyIntake": {
  19660. name: "Energy Intake",
  19661. power: 3,
  19662. type: "energy",
  19663. base: math.unit(2000 * 5 * 1200 / 150, "kcal")
  19664. },
  19665. }
  19666. },
  19667. maw: {
  19668. height: math.unit(3.79, "feet"),
  19669. name: "Maw",
  19670. image: {
  19671. source: "./media/characters/adinia/maw.svg"
  19672. }
  19673. },
  19674. rump: {
  19675. height: math.unit(4.6, "feet"),
  19676. name: "Rump",
  19677. image: {
  19678. source: "./media/characters/adinia/rump.svg"
  19679. }
  19680. },
  19681. },
  19682. [
  19683. {
  19684. name: "Normal",
  19685. height: math.unit(11 + 5 / 12, "feet"),
  19686. default: true
  19687. },
  19688. ]
  19689. ))
  19690. characterMakers.push(() => makeCharacter(
  19691. { name: "Lykasa", species: ["monster"], tags: ["anthro"] },
  19692. {
  19693. front: {
  19694. height: math.unit(3, "meters"),
  19695. weight: math.unit(200, "kg"),
  19696. name: "Front",
  19697. image: {
  19698. source: "./media/characters/lykasa/front.svg",
  19699. extra: 1076 / 976,
  19700. bottom: 0.06
  19701. }
  19702. },
  19703. },
  19704. [
  19705. {
  19706. name: "Normal",
  19707. height: math.unit(3, "meters")
  19708. },
  19709. {
  19710. name: "Kaiju",
  19711. height: math.unit(120, "meters"),
  19712. default: true
  19713. },
  19714. {
  19715. name: "Mega Kaiju",
  19716. height: math.unit(240, "km")
  19717. },
  19718. {
  19719. name: "Giga Kaiju",
  19720. height: math.unit(400, "megameters")
  19721. },
  19722. {
  19723. name: "Tera Kaiju",
  19724. height: math.unit(800, "gigameters")
  19725. },
  19726. {
  19727. name: "Kaiju Dragon Goddess",
  19728. height: math.unit(26, "zettaparsecs")
  19729. },
  19730. ]
  19731. ))
  19732. characterMakers.push(() => makeCharacter(
  19733. { name: "Malfaren", species: ["dragon"], tags: ["feral"] },
  19734. {
  19735. side: {
  19736. height: math.unit(283 / 124 * 6, "feet"),
  19737. weight: math.unit(35000, "lb"),
  19738. name: "Side",
  19739. image: {
  19740. source: "./media/characters/malfaren/side.svg",
  19741. extra: 1310/529,
  19742. bottom: 24/1334
  19743. }
  19744. },
  19745. front: {
  19746. height: math.unit(22.36, "feet"),
  19747. weight: math.unit(35000, "lb"),
  19748. name: "Front",
  19749. image: {
  19750. source: "./media/characters/malfaren/front.svg",
  19751. extra: 1237/1115,
  19752. bottom: 32/1269
  19753. }
  19754. },
  19755. maw: {
  19756. height: math.unit(6.9, "feet"),
  19757. name: "Maw",
  19758. image: {
  19759. source: "./media/characters/malfaren/maw.svg"
  19760. }
  19761. },
  19762. dick: {
  19763. height: math.unit(6.19, "feet"),
  19764. name: "Dick",
  19765. image: {
  19766. source: "./media/characters/malfaren/dick.svg"
  19767. }
  19768. },
  19769. eye: {
  19770. height: math.unit(0.69, "feet"),
  19771. name: "Eye",
  19772. image: {
  19773. source: "./media/characters/malfaren/eye.svg"
  19774. }
  19775. },
  19776. },
  19777. [
  19778. {
  19779. name: "Big",
  19780. height: math.unit(283 / 162 * 6, "feet"),
  19781. },
  19782. {
  19783. name: "Bigger",
  19784. height: math.unit(283 / 124 * 6, "feet")
  19785. },
  19786. {
  19787. name: "Massive",
  19788. height: math.unit(283 / 92 * 6, "feet"),
  19789. default: true
  19790. },
  19791. {
  19792. name: "👀💦",
  19793. height: math.unit(283 / 73 * 6, "feet"),
  19794. },
  19795. ]
  19796. ))
  19797. characterMakers.push(() => makeCharacter(
  19798. { name: "Kernel", species: ["wolf"], tags: ["anthro"] },
  19799. {
  19800. front: {
  19801. height: math.unit(1.7, "m"),
  19802. weight: math.unit(70, "kg"),
  19803. name: "Front",
  19804. image: {
  19805. source: "./media/characters/kernel/front.svg",
  19806. extra: 1960/1821,
  19807. bottom: 17/1977
  19808. }
  19809. },
  19810. },
  19811. [
  19812. {
  19813. name: "Nano",
  19814. height: math.unit(17, "micrometers")
  19815. },
  19816. {
  19817. name: "Micro",
  19818. height: math.unit(1.7, "mm")
  19819. },
  19820. {
  19821. name: "Small",
  19822. height: math.unit(1.7, "cm")
  19823. },
  19824. {
  19825. name: "Normal",
  19826. height: math.unit(1.7, "m"),
  19827. default: true
  19828. },
  19829. ]
  19830. ))
  19831. characterMakers.push(() => makeCharacter(
  19832. { name: "Jayne Folest", species: ["fox"], tags: ["anthro"] },
  19833. {
  19834. front: {
  19835. height: math.unit(1.75, "meters"),
  19836. weight: math.unit(65, "kg"),
  19837. name: "Front",
  19838. image: {
  19839. source: "./media/characters/jayne-folest/front.svg",
  19840. extra: 2115 / 2007,
  19841. bottom: 0.02
  19842. }
  19843. },
  19844. back: {
  19845. height: math.unit(1.75, "meters"),
  19846. weight: math.unit(65, "kg"),
  19847. name: "Back",
  19848. image: {
  19849. source: "./media/characters/jayne-folest/back.svg",
  19850. extra: 2115 / 2007,
  19851. bottom: 0.005
  19852. }
  19853. },
  19854. frontClothed: {
  19855. height: math.unit(1.75, "meters"),
  19856. weight: math.unit(65, "kg"),
  19857. name: "Front (Clothed)",
  19858. image: {
  19859. source: "./media/characters/jayne-folest/front-clothed.svg",
  19860. extra: 2115 / 2007,
  19861. bottom: 0.035
  19862. }
  19863. },
  19864. hand: {
  19865. height: math.unit(1 / 1.260, "feet"),
  19866. name: "Hand",
  19867. image: {
  19868. source: "./media/characters/jayne-folest/hand.svg"
  19869. }
  19870. },
  19871. foot: {
  19872. height: math.unit(1 / 0.918, "feet"),
  19873. name: "Foot",
  19874. image: {
  19875. source: "./media/characters/jayne-folest/foot.svg"
  19876. }
  19877. },
  19878. },
  19879. [
  19880. {
  19881. name: "Micro",
  19882. height: math.unit(4, "cm")
  19883. },
  19884. {
  19885. name: "Normal",
  19886. height: math.unit(1.75, "meters")
  19887. },
  19888. {
  19889. name: "Macro",
  19890. height: math.unit(47.5, "meters"),
  19891. default: true
  19892. },
  19893. ]
  19894. ))
  19895. characterMakers.push(() => makeCharacter(
  19896. { name: "Algier", species: ["mouse"], tags: ["anthro"] },
  19897. {
  19898. front: {
  19899. height: math.unit(180, "cm"),
  19900. weight: math.unit(70, "kg"),
  19901. name: "Front",
  19902. image: {
  19903. source: "./media/characters/algier/front.svg",
  19904. extra: 596 / 572,
  19905. bottom: 0.04
  19906. }
  19907. },
  19908. back: {
  19909. height: math.unit(180, "cm"),
  19910. weight: math.unit(70, "kg"),
  19911. name: "Back",
  19912. image: {
  19913. source: "./media/characters/algier/back.svg",
  19914. extra: 596 / 572,
  19915. bottom: 0.025
  19916. }
  19917. },
  19918. frontdressed: {
  19919. height: math.unit(180, "cm"),
  19920. weight: math.unit(150, "kg"),
  19921. name: "Front-dressed",
  19922. image: {
  19923. source: "./media/characters/algier/front-dressed.svg",
  19924. extra: 596 / 572,
  19925. bottom: 0.038
  19926. }
  19927. },
  19928. },
  19929. [
  19930. {
  19931. name: "Micro",
  19932. height: math.unit(5, "cm")
  19933. },
  19934. {
  19935. name: "Normal",
  19936. height: math.unit(180, "cm"),
  19937. default: true
  19938. },
  19939. {
  19940. name: "Macro",
  19941. height: math.unit(64, "m")
  19942. },
  19943. ]
  19944. ))
  19945. characterMakers.push(() => makeCharacter(
  19946. { name: "Pretzel", species: ["synx"], tags: ["anthro"] },
  19947. {
  19948. upright: {
  19949. height: math.unit(7, "feet"),
  19950. weight: math.unit(300, "lb"),
  19951. name: "Upright",
  19952. image: {
  19953. source: "./media/characters/pretzel/upright.svg",
  19954. extra: 534 / 522,
  19955. bottom: 0.065
  19956. }
  19957. },
  19958. sprawling: {
  19959. height: math.unit(3.75, "feet"),
  19960. weight: math.unit(300, "lb"),
  19961. name: "Sprawling",
  19962. image: {
  19963. source: "./media/characters/pretzel/sprawling.svg",
  19964. extra: 314 / 281,
  19965. bottom: 0.1
  19966. }
  19967. },
  19968. tongue: {
  19969. height: math.unit(2, "feet"),
  19970. name: "Tongue",
  19971. image: {
  19972. source: "./media/characters/pretzel/tongue.svg"
  19973. }
  19974. },
  19975. },
  19976. [
  19977. {
  19978. name: "Normal",
  19979. height: math.unit(7, "feet"),
  19980. default: true
  19981. },
  19982. {
  19983. name: "Oversized",
  19984. height: math.unit(15, "feet")
  19985. },
  19986. {
  19987. name: "Huge",
  19988. height: math.unit(30, "feet")
  19989. },
  19990. {
  19991. name: "Macro",
  19992. height: math.unit(250, "feet")
  19993. },
  19994. ]
  19995. ))
  19996. characterMakers.push(() => makeCharacter(
  19997. { name: "Roxi", species: ["fox"], tags: ["anthro", "feral"] },
  19998. {
  19999. sideFront: {
  20000. height: math.unit(5 + 2 / 12, "feet"),
  20001. weight: math.unit(120, "lb"),
  20002. name: "Front Side",
  20003. image: {
  20004. source: "./media/characters/roxi/side-front.svg",
  20005. extra: 2924 / 2717,
  20006. bottom: 0.08
  20007. }
  20008. },
  20009. sideBack: {
  20010. height: math.unit(5 + 2 / 12, "feet"),
  20011. weight: math.unit(120, "lb"),
  20012. name: "Back Side",
  20013. image: {
  20014. source: "./media/characters/roxi/side-back.svg",
  20015. extra: 2904 / 2693,
  20016. bottom: 0.06
  20017. }
  20018. },
  20019. front: {
  20020. height: math.unit(5 + 2 / 12, "feet"),
  20021. weight: math.unit(120, "lb"),
  20022. name: "Front",
  20023. image: {
  20024. source: "./media/characters/roxi/front.svg",
  20025. extra: 2028 / 1907,
  20026. bottom: 0.01
  20027. }
  20028. },
  20029. frontAlt: {
  20030. height: math.unit(5 + 2 / 12, "feet"),
  20031. weight: math.unit(120, "lb"),
  20032. name: "Front (Alt)",
  20033. image: {
  20034. source: "./media/characters/roxi/front-alt.svg",
  20035. extra: 1828 / 1798,
  20036. bottom: 0.01
  20037. }
  20038. },
  20039. sitting: {
  20040. height: math.unit(2.8, "feet"),
  20041. weight: math.unit(120, "lb"),
  20042. name: "Sitting",
  20043. image: {
  20044. source: "./media/characters/roxi/sitting.svg",
  20045. extra: 2660 / 2462,
  20046. bottom: 0.1
  20047. }
  20048. },
  20049. },
  20050. [
  20051. {
  20052. name: "Normal",
  20053. height: math.unit(5 + 2 / 12, "feet"),
  20054. default: true
  20055. },
  20056. ]
  20057. ))
  20058. characterMakers.push(() => makeCharacter(
  20059. { name: "Shadow", species: ["dragon"], tags: ["feral"] },
  20060. {
  20061. side: {
  20062. height: math.unit(55, "feet"),
  20063. weight: math.unit(153, "tons"),
  20064. name: "Side",
  20065. image: {
  20066. source: "./media/characters/shadow/side.svg",
  20067. extra: 701 / 628,
  20068. bottom: 0.02
  20069. }
  20070. },
  20071. flying: {
  20072. height: math.unit(145, "feet"),
  20073. weight: math.unit(153, "tons"),
  20074. name: "Flying",
  20075. image: {
  20076. source: "./media/characters/shadow/flying.svg"
  20077. }
  20078. },
  20079. },
  20080. [
  20081. {
  20082. name: "Normal",
  20083. height: math.unit(55, "feet"),
  20084. default: true
  20085. },
  20086. ]
  20087. ))
  20088. characterMakers.push(() => makeCharacter(
  20089. { name: "Marcie", species: ["kangaroo"], tags: ["anthro"] },
  20090. {
  20091. front: {
  20092. height: math.unit(6, "feet"),
  20093. weight: math.unit(200, "lb"),
  20094. name: "Front",
  20095. image: {
  20096. source: "./media/characters/marcie/front.svg",
  20097. extra: 960 / 876,
  20098. bottom: 58 / 1017.87
  20099. }
  20100. },
  20101. },
  20102. [
  20103. {
  20104. name: "Macro",
  20105. height: math.unit(1, "mile"),
  20106. default: true
  20107. },
  20108. ]
  20109. ))
  20110. characterMakers.push(() => makeCharacter(
  20111. { name: "Kachina", species: ["wolf"], tags: ["anthro"] },
  20112. {
  20113. front: {
  20114. height: math.unit(7, "feet"),
  20115. weight: math.unit(200, "lb"),
  20116. name: "Front",
  20117. image: {
  20118. source: "./media/characters/kachina/front.svg",
  20119. extra: 3206/2764,
  20120. bottom: 140/3346
  20121. }
  20122. },
  20123. },
  20124. [
  20125. {
  20126. name: "Normal",
  20127. height: math.unit(7, "feet"),
  20128. default: true
  20129. },
  20130. ]
  20131. ))
  20132. characterMakers.push(() => makeCharacter(
  20133. { name: "Kash", species: ["canine"], tags: ["feral"] },
  20134. {
  20135. looking: {
  20136. height: math.unit(2, "meters"),
  20137. weight: math.unit(300, "kg"),
  20138. name: "Looking",
  20139. image: {
  20140. source: "./media/characters/kash/looking.svg",
  20141. extra: 474 / 344,
  20142. bottom: 0.03
  20143. }
  20144. },
  20145. side: {
  20146. height: math.unit(2, "meters"),
  20147. weight: math.unit(300, "kg"),
  20148. name: "Side",
  20149. image: {
  20150. source: "./media/characters/kash/side.svg",
  20151. extra: 302 / 251,
  20152. bottom: 0.03
  20153. }
  20154. },
  20155. front: {
  20156. height: math.unit(2, "meters"),
  20157. weight: math.unit(300, "kg"),
  20158. name: "Front",
  20159. image: {
  20160. source: "./media/characters/kash/front.svg",
  20161. extra: 495 / 360,
  20162. bottom: 0.015
  20163. }
  20164. },
  20165. },
  20166. [
  20167. {
  20168. name: "Normal",
  20169. height: math.unit(2, "meters"),
  20170. default: true
  20171. },
  20172. {
  20173. name: "Big",
  20174. height: math.unit(3, "meters")
  20175. },
  20176. {
  20177. name: "Large",
  20178. height: math.unit(5, "meters")
  20179. },
  20180. ]
  20181. ))
  20182. characterMakers.push(() => makeCharacter(
  20183. { name: "Lalim", species: ["dragon"], tags: ["feral"] },
  20184. {
  20185. feeding: {
  20186. height: math.unit(6.7, "feet"),
  20187. weight: math.unit(350, "lb"),
  20188. name: "Feeding",
  20189. image: {
  20190. source: "./media/characters/lalim/feeding.svg",
  20191. }
  20192. },
  20193. },
  20194. [
  20195. {
  20196. name: "Normal",
  20197. height: math.unit(6.7, "feet"),
  20198. default: true
  20199. },
  20200. ]
  20201. ))
  20202. characterMakers.push(() => makeCharacter(
  20203. { name: "De'Vout", species: ["dragon"], tags: ["anthro"] },
  20204. {
  20205. front: {
  20206. height: math.unit(9.5, "feet"),
  20207. weight: math.unit(600, "lb"),
  20208. name: "Front",
  20209. image: {
  20210. source: "./media/characters/de'vout/front.svg",
  20211. extra: 1443 / 1328,
  20212. bottom: 0.025
  20213. }
  20214. },
  20215. back: {
  20216. height: math.unit(9.5, "feet"),
  20217. weight: math.unit(600, "lb"),
  20218. name: "Back",
  20219. image: {
  20220. source: "./media/characters/de'vout/back.svg",
  20221. extra: 1443 / 1328
  20222. }
  20223. },
  20224. frontDressed: {
  20225. height: math.unit(9.5, "feet"),
  20226. weight: math.unit(600, "lb"),
  20227. name: "Front (Dressed",
  20228. image: {
  20229. source: "./media/characters/de'vout/front-dressed.svg",
  20230. extra: 1443 / 1328,
  20231. bottom: 0.025
  20232. }
  20233. },
  20234. backDressed: {
  20235. height: math.unit(9.5, "feet"),
  20236. weight: math.unit(600, "lb"),
  20237. name: "Back (Dressed",
  20238. image: {
  20239. source: "./media/characters/de'vout/back-dressed.svg",
  20240. extra: 1443 / 1328
  20241. }
  20242. },
  20243. },
  20244. [
  20245. {
  20246. name: "Normal",
  20247. height: math.unit(9.5, "feet"),
  20248. default: true
  20249. },
  20250. ]
  20251. ))
  20252. characterMakers.push(() => makeCharacter(
  20253. { name: "Talana", species: ["dragon"], tags: ["anthro"] },
  20254. {
  20255. front: {
  20256. height: math.unit(8, "feet"),
  20257. weight: math.unit(225, "lb"),
  20258. name: "Front",
  20259. image: {
  20260. source: "./media/characters/talana/front.svg",
  20261. extra: 1410 / 1300,
  20262. bottom: 0.015
  20263. }
  20264. },
  20265. frontDressed: {
  20266. height: math.unit(8, "feet"),
  20267. weight: math.unit(225, "lb"),
  20268. name: "Front (Dressed",
  20269. image: {
  20270. source: "./media/characters/talana/front-dressed.svg",
  20271. extra: 1410 / 1300,
  20272. bottom: 0.015
  20273. }
  20274. },
  20275. },
  20276. [
  20277. {
  20278. name: "Normal",
  20279. height: math.unit(8, "feet"),
  20280. default: true
  20281. },
  20282. ]
  20283. ))
  20284. characterMakers.push(() => makeCharacter(
  20285. { name: "Xeauvok", species: ["monster"], tags: ["anthro"] },
  20286. {
  20287. side: {
  20288. height: math.unit(7.2, "feet"),
  20289. weight: math.unit(150, "lb"),
  20290. name: "Side",
  20291. image: {
  20292. source: "./media/characters/xeauvok/side.svg",
  20293. extra: 1975 / 1523,
  20294. bottom: 0.07
  20295. }
  20296. },
  20297. },
  20298. [
  20299. {
  20300. name: "Normal",
  20301. height: math.unit(7.2, "feet"),
  20302. default: true
  20303. },
  20304. ]
  20305. ))
  20306. characterMakers.push(() => makeCharacter(
  20307. { name: "Zara", species: ["human", "horse"], tags: ["taur"] },
  20308. {
  20309. side: {
  20310. height: math.unit(4, "meters"),
  20311. weight: math.unit(2200, "kg"),
  20312. name: "Side",
  20313. image: {
  20314. source: "./media/characters/zara/side.svg",
  20315. extra: 765/744,
  20316. bottom: 156/921
  20317. }
  20318. },
  20319. },
  20320. [
  20321. {
  20322. name: "Normal",
  20323. height: math.unit(4, "meters"),
  20324. default: true
  20325. },
  20326. ]
  20327. ))
  20328. characterMakers.push(() => makeCharacter(
  20329. { name: "Richard (Dragon)", species: ["dragon"], tags: ["feral"] },
  20330. {
  20331. side: {
  20332. height: math.unit(6, "feet"),
  20333. weight: math.unit(150, "lb"),
  20334. name: "Side",
  20335. image: {
  20336. source: "./media/characters/richard-dragon/side.svg",
  20337. extra: 845 / 340,
  20338. bottom: 0.017
  20339. }
  20340. },
  20341. maw: {
  20342. height: math.unit(2.97, "feet"),
  20343. name: "Maw",
  20344. image: {
  20345. source: "./media/characters/richard-dragon/maw.svg"
  20346. }
  20347. },
  20348. },
  20349. [
  20350. ]
  20351. ))
  20352. characterMakers.push(() => makeCharacter(
  20353. { name: "Richard (Smeargle)", species: ["smeargle"], tags: ["anthro"] },
  20354. {
  20355. front: {
  20356. height: math.unit(4, "feet"),
  20357. weight: math.unit(100, "lb"),
  20358. name: "Front",
  20359. image: {
  20360. source: "./media/characters/richard-smeargle/front.svg",
  20361. extra: 2952 / 2820,
  20362. bottom: 0.028
  20363. }
  20364. },
  20365. },
  20366. [
  20367. {
  20368. name: "Normal",
  20369. height: math.unit(4, "feet"),
  20370. default: true
  20371. },
  20372. {
  20373. name: "Dynamax",
  20374. height: math.unit(20, "meters")
  20375. },
  20376. ]
  20377. ))
  20378. characterMakers.push(() => makeCharacter(
  20379. { name: "Klay", species: ["flying-fox"], tags: ["anthro"] },
  20380. {
  20381. front: {
  20382. height: math.unit(6, "feet"),
  20383. weight: math.unit(110, "lb"),
  20384. name: "Front",
  20385. image: {
  20386. source: "./media/characters/klay/front.svg",
  20387. extra: 962 / 883,
  20388. bottom: 0.04
  20389. }
  20390. },
  20391. back: {
  20392. height: math.unit(6, "feet"),
  20393. weight: math.unit(110, "lb"),
  20394. name: "Back",
  20395. image: {
  20396. source: "./media/characters/klay/back.svg",
  20397. extra: 962 / 883
  20398. }
  20399. },
  20400. beans: {
  20401. height: math.unit(1.15, "feet"),
  20402. name: "Beans",
  20403. image: {
  20404. source: "./media/characters/klay/beans.svg"
  20405. }
  20406. },
  20407. },
  20408. [
  20409. {
  20410. name: "Micro",
  20411. height: math.unit(6, "inches")
  20412. },
  20413. {
  20414. name: "Mini",
  20415. height: math.unit(3, "feet")
  20416. },
  20417. {
  20418. name: "Normal",
  20419. height: math.unit(6, "feet"),
  20420. default: true
  20421. },
  20422. {
  20423. name: "Big",
  20424. height: math.unit(25, "feet")
  20425. },
  20426. {
  20427. name: "Macro",
  20428. height: math.unit(100, "feet")
  20429. },
  20430. {
  20431. name: "Megamacro",
  20432. height: math.unit(400, "feet")
  20433. },
  20434. ]
  20435. ))
  20436. characterMakers.push(() => makeCharacter(
  20437. { name: "Marcus", species: ["skunk"], tags: ["anthro"] },
  20438. {
  20439. front: {
  20440. height: math.unit(6, "feet"),
  20441. weight: math.unit(160, "lb"),
  20442. name: "Front",
  20443. image: {
  20444. source: "./media/characters/marcus/front.svg",
  20445. extra: 734 / 676,
  20446. bottom: 0.03
  20447. }
  20448. },
  20449. },
  20450. [
  20451. {
  20452. name: "Little",
  20453. height: math.unit(6, "feet")
  20454. },
  20455. {
  20456. name: "Normal",
  20457. height: math.unit(110, "feet"),
  20458. default: true
  20459. },
  20460. {
  20461. name: "Macro",
  20462. height: math.unit(250, "feet")
  20463. },
  20464. {
  20465. name: "Megamacro",
  20466. height: math.unit(1000, "feet")
  20467. },
  20468. ]
  20469. ))
  20470. characterMakers.push(() => makeCharacter(
  20471. { name: "Claude DelRoute", species: ["goat"], tags: ["anthro"] },
  20472. {
  20473. front: {
  20474. height: math.unit(7, "feet"),
  20475. weight: math.unit(275, "lb"),
  20476. name: "Front",
  20477. image: {
  20478. source: "./media/characters/claude-delroute/front.svg",
  20479. extra: 902/827,
  20480. bottom: 26/928
  20481. }
  20482. },
  20483. side: {
  20484. height: math.unit(7, "feet"),
  20485. weight: math.unit(275, "lb"),
  20486. name: "Side",
  20487. image: {
  20488. source: "./media/characters/claude-delroute/side.svg",
  20489. extra: 908/853,
  20490. bottom: 16/924
  20491. }
  20492. },
  20493. back: {
  20494. height: math.unit(7, "feet"),
  20495. weight: math.unit(275, "lb"),
  20496. name: "Back",
  20497. image: {
  20498. source: "./media/characters/claude-delroute/back.svg",
  20499. extra: 911/829,
  20500. bottom: 18/929
  20501. }
  20502. },
  20503. maw: {
  20504. height: math.unit(0.6407, "meters"),
  20505. name: "Maw",
  20506. image: {
  20507. source: "./media/characters/claude-delroute/maw.svg"
  20508. }
  20509. },
  20510. },
  20511. [
  20512. {
  20513. name: "Normal",
  20514. height: math.unit(7, "feet"),
  20515. default: true
  20516. },
  20517. {
  20518. name: "Lorge",
  20519. height: math.unit(20, "feet")
  20520. },
  20521. ]
  20522. ))
  20523. characterMakers.push(() => makeCharacter(
  20524. { name: "Dragonien", species: ["dragon"], tags: ["anthro"] },
  20525. {
  20526. front: {
  20527. height: math.unit(8 + 4 / 12, "feet"),
  20528. weight: math.unit(600, "lb"),
  20529. name: "Front",
  20530. image: {
  20531. source: "./media/characters/dragonien/front.svg",
  20532. extra: 100 / 94,
  20533. bottom: 3.3 / 103.3445
  20534. }
  20535. },
  20536. back: {
  20537. height: math.unit(8 + 4 / 12, "feet"),
  20538. weight: math.unit(600, "lb"),
  20539. name: "Back",
  20540. image: {
  20541. source: "./media/characters/dragonien/back.svg",
  20542. extra: 776 / 746,
  20543. bottom: 6.4 / 782.0616
  20544. }
  20545. },
  20546. foot: {
  20547. height: math.unit(1.54, "feet"),
  20548. name: "Foot",
  20549. image: {
  20550. source: "./media/characters/dragonien/foot.svg",
  20551. }
  20552. },
  20553. },
  20554. [
  20555. {
  20556. name: "Normal",
  20557. height: math.unit(8 + 4 / 12, "feet"),
  20558. default: true
  20559. },
  20560. {
  20561. name: "Macro",
  20562. height: math.unit(200, "feet")
  20563. },
  20564. {
  20565. name: "Megamacro",
  20566. height: math.unit(1, "mile")
  20567. },
  20568. {
  20569. name: "Gigamacro",
  20570. height: math.unit(1000, "miles")
  20571. },
  20572. ]
  20573. ))
  20574. characterMakers.push(() => makeCharacter(
  20575. { name: "Desta", species: ["dratini"], tags: ["anthro"] },
  20576. {
  20577. front: {
  20578. height: math.unit(5 + 2 / 12, "feet"),
  20579. weight: math.unit(110, "lb"),
  20580. name: "Front",
  20581. image: {
  20582. source: "./media/characters/desta/front.svg",
  20583. extra: 767 / 726,
  20584. bottom: 11.7 / 779
  20585. }
  20586. },
  20587. back: {
  20588. height: math.unit(5 + 2 / 12, "feet"),
  20589. weight: math.unit(110, "lb"),
  20590. name: "Back",
  20591. image: {
  20592. source: "./media/characters/desta/back.svg",
  20593. extra: 777 / 728,
  20594. bottom: 6 / 784
  20595. }
  20596. },
  20597. frontAlt: {
  20598. height: math.unit(5 + 2 / 12, "feet"),
  20599. weight: math.unit(110, "lb"),
  20600. name: "Front",
  20601. image: {
  20602. source: "./media/characters/desta/front-alt.svg",
  20603. extra: 1482 / 1417
  20604. }
  20605. },
  20606. side: {
  20607. height: math.unit(5 + 2 / 12, "feet"),
  20608. weight: math.unit(110, "lb"),
  20609. name: "Side",
  20610. image: {
  20611. source: "./media/characters/desta/side.svg",
  20612. extra: 2579 / 2491,
  20613. bottom: 0.053
  20614. }
  20615. },
  20616. },
  20617. [
  20618. {
  20619. name: "Micro",
  20620. height: math.unit(6, "inches")
  20621. },
  20622. {
  20623. name: "Normal",
  20624. height: math.unit(5 + 2 / 12, "feet"),
  20625. default: true
  20626. },
  20627. {
  20628. name: "Macro",
  20629. height: math.unit(62, "feet")
  20630. },
  20631. {
  20632. name: "Megamacro",
  20633. height: math.unit(1800, "feet")
  20634. },
  20635. ]
  20636. ))
  20637. characterMakers.push(() => makeCharacter(
  20638. { name: "Storm Alystar", species: ["demon"], tags: ["anthro"] },
  20639. {
  20640. front: {
  20641. height: math.unit(10, "feet"),
  20642. weight: math.unit(700, "lb"),
  20643. name: "Front",
  20644. image: {
  20645. source: "./media/characters/storm-alystar/front.svg",
  20646. extra: 2112 / 1898,
  20647. bottom: 0.034
  20648. }
  20649. },
  20650. },
  20651. [
  20652. {
  20653. name: "Micro",
  20654. height: math.unit(3.5, "inches")
  20655. },
  20656. {
  20657. name: "Normal",
  20658. height: math.unit(10, "feet"),
  20659. default: true
  20660. },
  20661. {
  20662. name: "Macro",
  20663. height: math.unit(400, "feet")
  20664. },
  20665. {
  20666. name: "Deific",
  20667. height: math.unit(60, "miles")
  20668. },
  20669. ]
  20670. ))
  20671. characterMakers.push(() => makeCharacter(
  20672. { name: "Ilia", species: ["fox"], tags: ["anthro"] },
  20673. {
  20674. front: {
  20675. height: math.unit(2.35, "meters"),
  20676. weight: math.unit(119, "kg"),
  20677. name: "Front",
  20678. image: {
  20679. source: "./media/characters/ilia/front.svg",
  20680. extra: 1285 / 1255,
  20681. bottom: 0.06
  20682. }
  20683. },
  20684. },
  20685. [
  20686. {
  20687. name: "Normal",
  20688. height: math.unit(2.35, "meters")
  20689. },
  20690. {
  20691. name: "Macro",
  20692. height: math.unit(140, "meters"),
  20693. default: true
  20694. },
  20695. {
  20696. name: "Megamacro",
  20697. height: math.unit(100, "miles")
  20698. },
  20699. ]
  20700. ))
  20701. characterMakers.push(() => makeCharacter(
  20702. { name: "KingDead", species: ["wolf"], tags: ["anthro"] },
  20703. {
  20704. front: {
  20705. height: math.unit(6 + 5 / 12, "feet"),
  20706. weight: math.unit(190, "lb"),
  20707. name: "Front",
  20708. image: {
  20709. source: "./media/characters/kingdead/front.svg",
  20710. extra: 1228 / 1177
  20711. }
  20712. },
  20713. },
  20714. [
  20715. {
  20716. name: "Micro",
  20717. height: math.unit(7, "inches")
  20718. },
  20719. {
  20720. name: "Normal",
  20721. height: math.unit(6 + 5 / 12, "feet")
  20722. },
  20723. {
  20724. name: "Macro",
  20725. height: math.unit(150, "feet"),
  20726. default: true
  20727. },
  20728. {
  20729. name: "Megamacro",
  20730. height: math.unit(200, "miles")
  20731. },
  20732. ]
  20733. ))
  20734. characterMakers.push(() => makeCharacter(
  20735. { name: "Kyrehx", species: ["tigrex"], tags: ["anthro"] },
  20736. {
  20737. front: {
  20738. height: math.unit(8, "feet"),
  20739. weight: math.unit(600, "lb"),
  20740. name: "Front",
  20741. image: {
  20742. source: "./media/characters/kyrehx/front.svg",
  20743. extra: 1195 / 1095,
  20744. bottom: 0.034
  20745. }
  20746. },
  20747. },
  20748. [
  20749. {
  20750. name: "Micro",
  20751. height: math.unit(2, "inches")
  20752. },
  20753. {
  20754. name: "Normal",
  20755. height: math.unit(8, "feet"),
  20756. default: true
  20757. },
  20758. {
  20759. name: "Macro",
  20760. height: math.unit(255, "feet")
  20761. },
  20762. ]
  20763. ))
  20764. characterMakers.push(() => makeCharacter(
  20765. { name: "Xang", species: ["zangoose"], tags: ["anthro"] },
  20766. {
  20767. front: {
  20768. height: math.unit(0.935 * (6 + 8 / 12), "feet"),
  20769. weight: math.unit(184, "lb"),
  20770. name: "Front",
  20771. image: {
  20772. source: "./media/characters/xang/front.svg",
  20773. extra: 845 / 755
  20774. }
  20775. },
  20776. },
  20777. [
  20778. {
  20779. name: "Normal",
  20780. height: math.unit(0.935 * (6 + 8 / 12), "feet"),
  20781. default: true
  20782. },
  20783. {
  20784. name: "Macro",
  20785. height: math.unit(0.935 * 146, "feet")
  20786. },
  20787. {
  20788. name: "Megamacro",
  20789. height: math.unit(0.935 * 3, "miles")
  20790. },
  20791. ]
  20792. ))
  20793. characterMakers.push(() => makeCharacter(
  20794. { name: "Doc Weardno", species: ["fennec-fox"], tags: ["anthro"] },
  20795. {
  20796. frontDressed: {
  20797. height: math.unit(5 + 7 / 12, "feet"),
  20798. weight: math.unit(140, "lb"),
  20799. name: "Front (Dressed)",
  20800. image: {
  20801. source: "./media/characters/doc-weardno/front-dressed.svg",
  20802. extra: 263 / 234
  20803. }
  20804. },
  20805. backDressed: {
  20806. height: math.unit(5 + 7 / 12, "feet"),
  20807. weight: math.unit(140, "lb"),
  20808. name: "Back (Dressed)",
  20809. image: {
  20810. source: "./media/characters/doc-weardno/back-dressed.svg",
  20811. extra: 266 / 238
  20812. }
  20813. },
  20814. front: {
  20815. height: math.unit(5 + 7 / 12, "feet"),
  20816. weight: math.unit(140, "lb"),
  20817. name: "Front",
  20818. image: {
  20819. source: "./media/characters/doc-weardno/front.svg",
  20820. extra: 254 / 233
  20821. }
  20822. },
  20823. },
  20824. [
  20825. {
  20826. name: "Micro",
  20827. height: math.unit(3, "inches")
  20828. },
  20829. {
  20830. name: "Normal",
  20831. height: math.unit(5 + 7 / 12, "feet"),
  20832. default: true
  20833. },
  20834. {
  20835. name: "Macro",
  20836. height: math.unit(25, "feet")
  20837. },
  20838. {
  20839. name: "Megamacro",
  20840. height: math.unit(2, "miles")
  20841. },
  20842. ]
  20843. ))
  20844. characterMakers.push(() => makeCharacter(
  20845. { name: "Seth Whilst", species: ["snake"], tags: ["anthro"] },
  20846. {
  20847. front: {
  20848. height: math.unit(6 + 2 / 12, "feet"),
  20849. weight: math.unit(153, "lb"),
  20850. name: "Front",
  20851. image: {
  20852. source: "./media/characters/seth-whilst/front.svg",
  20853. bottom: 0.07
  20854. }
  20855. },
  20856. },
  20857. [
  20858. {
  20859. name: "Micro",
  20860. height: math.unit(5, "inches")
  20861. },
  20862. {
  20863. name: "Normal",
  20864. height: math.unit(6 + 2 / 12, "feet"),
  20865. default: true
  20866. },
  20867. ]
  20868. ))
  20869. characterMakers.push(() => makeCharacter(
  20870. { name: "Pocket Jabari", species: ["mouse"], tags: ["anthro"] },
  20871. {
  20872. front: {
  20873. height: math.unit(3, "inches"),
  20874. weight: math.unit(8, "grams"),
  20875. name: "Front",
  20876. image: {
  20877. source: "./media/characters/pocket-jabari/front.svg",
  20878. extra: 1024 / 974,
  20879. bottom: 0.039
  20880. }
  20881. },
  20882. },
  20883. [
  20884. {
  20885. name: "Minimicro",
  20886. height: math.unit(8, "mm")
  20887. },
  20888. {
  20889. name: "Micro",
  20890. height: math.unit(3, "inches"),
  20891. default: true
  20892. },
  20893. {
  20894. name: "Normal",
  20895. height: math.unit(3, "feet")
  20896. },
  20897. ]
  20898. ))
  20899. characterMakers.push(() => makeCharacter(
  20900. { name: "Sapphy", species: ["dragon"], tags: ["anthro"] },
  20901. {
  20902. frontDressed: {
  20903. height: math.unit(15, "feet"),
  20904. weight: math.unit(3280, "lb"),
  20905. name: "Front (Dressed)",
  20906. image: {
  20907. source: "./media/characters/sapphy/front-dressed.svg",
  20908. extra: 1951/1654,
  20909. bottom: 194/2145
  20910. },
  20911. form: "anthro",
  20912. default: true
  20913. },
  20914. backDressed: {
  20915. height: math.unit(15, "feet"),
  20916. weight: math.unit(3280, "lb"),
  20917. name: "Back (Dressed)",
  20918. image: {
  20919. source: "./media/characters/sapphy/back-dressed.svg",
  20920. extra: 2058/1918,
  20921. bottom: 125/2183
  20922. },
  20923. form: "anthro"
  20924. },
  20925. frontNude: {
  20926. height: math.unit(15, "feet"),
  20927. weight: math.unit(3280, "lb"),
  20928. name: "Front (Nude)",
  20929. image: {
  20930. source: "./media/characters/sapphy/front-nude.svg",
  20931. extra: 1951/1654,
  20932. bottom: 194/2145
  20933. },
  20934. form: "anthro"
  20935. },
  20936. backNude: {
  20937. height: math.unit(15, "feet"),
  20938. weight: math.unit(3280, "lb"),
  20939. name: "Back (Nude)",
  20940. image: {
  20941. source: "./media/characters/sapphy/back-nude.svg",
  20942. extra: 2058/1918,
  20943. bottom: 125/2183
  20944. },
  20945. form: "anthro"
  20946. },
  20947. full: {
  20948. height: math.unit(15, "feet"),
  20949. weight: math.unit(3280, "lb"),
  20950. name: "Full",
  20951. image: {
  20952. source: "./media/characters/sapphy/full.svg",
  20953. extra: 1396/1317,
  20954. bottom: 44/1440
  20955. },
  20956. form: "anthro"
  20957. },
  20958. dick: {
  20959. height: math.unit(3.8, "feet"),
  20960. name: "Dick",
  20961. image: {
  20962. source: "./media/characters/sapphy/dick.svg"
  20963. },
  20964. form: "anthro"
  20965. },
  20966. feral: {
  20967. height: math.unit(35, "feet"),
  20968. weight: math.unit(160, "tons"),
  20969. name: "Feral",
  20970. image: {
  20971. source: "./media/characters/sapphy/feral.svg",
  20972. extra: 1050/573,
  20973. bottom: 60/1110
  20974. },
  20975. form: "feral",
  20976. default: true
  20977. },
  20978. },
  20979. [
  20980. {
  20981. name: "Normal",
  20982. height: math.unit(15, "feet"),
  20983. form: "anthro"
  20984. },
  20985. {
  20986. name: "Casual Macro",
  20987. height: math.unit(120, "feet"),
  20988. form: "anthro"
  20989. },
  20990. {
  20991. name: "Macro",
  20992. height: math.unit(2150, "feet"),
  20993. default: true,
  20994. form: "anthro"
  20995. },
  20996. {
  20997. name: "Megamacro",
  20998. height: math.unit(8, "miles"),
  20999. form: "anthro"
  21000. },
  21001. {
  21002. name: "Galaxy Mom",
  21003. height: math.unit(6, "megalightyears"),
  21004. form: "anthro"
  21005. },
  21006. {
  21007. name: "Normal",
  21008. height: math.unit(35, "feet"),
  21009. form: "feral",
  21010. default: true
  21011. },
  21012. {
  21013. name: "Macro",
  21014. height: math.unit(300, "feet"),
  21015. form: "feral"
  21016. },
  21017. {
  21018. name: "Galaxy Mom",
  21019. height: math.unit(10, "megalightyears"),
  21020. form: "feral"
  21021. },
  21022. ],
  21023. {
  21024. "anthro": {
  21025. name: "Anthro",
  21026. default: true
  21027. },
  21028. "feral": {
  21029. name: "Feral"
  21030. }
  21031. }
  21032. ))
  21033. characterMakers.push(() => makeCharacter(
  21034. { name: "Kiro", species: ["folf", "hyena"], tags: ["anthro"] },
  21035. {
  21036. hyenaFront: {
  21037. height: math.unit(6, "feet"),
  21038. weight: math.unit(190, "lb"),
  21039. name: "Front",
  21040. image: {
  21041. source: "./media/characters/kiro/hyena-front.svg",
  21042. extra: 927/839,
  21043. bottom: 91/1018
  21044. },
  21045. form: "hyena",
  21046. default: true
  21047. },
  21048. front: {
  21049. height: math.unit(6, "feet"),
  21050. weight: math.unit(170, "lb"),
  21051. name: "Front",
  21052. image: {
  21053. source: "./media/characters/kiro/front.svg",
  21054. extra: 1064 / 1012,
  21055. bottom: 0.052
  21056. },
  21057. form: "folf",
  21058. default: true
  21059. },
  21060. },
  21061. [
  21062. {
  21063. name: "Micro",
  21064. height: math.unit(6, "inches"),
  21065. form: "folf"
  21066. },
  21067. {
  21068. name: "Normal",
  21069. height: math.unit(6, "feet"),
  21070. form: "folf",
  21071. default: true
  21072. },
  21073. {
  21074. name: "Macro",
  21075. height: math.unit(72, "feet"),
  21076. form: "folf"
  21077. },
  21078. {
  21079. name: "Micro",
  21080. height: math.unit(6, "inches"),
  21081. form: "hyena"
  21082. },
  21083. {
  21084. name: "Normal",
  21085. height: math.unit(6, "feet"),
  21086. form: "hyena",
  21087. default: true
  21088. },
  21089. {
  21090. name: "Macro",
  21091. height: math.unit(72, "feet"),
  21092. form: "hyena"
  21093. },
  21094. ],
  21095. {
  21096. "hyena": {
  21097. name: "Hyena",
  21098. default: true
  21099. },
  21100. "folf": {
  21101. name: "Folf",
  21102. },
  21103. }
  21104. ))
  21105. characterMakers.push(() => makeCharacter(
  21106. { name: "Irishfox", species: ["fox"], tags: ["anthro"] },
  21107. {
  21108. front: {
  21109. height: math.unit(5 + 9 / 12, "feet"),
  21110. weight: math.unit(175, "lb"),
  21111. name: "Front",
  21112. image: {
  21113. source: "./media/characters/irishfox/front.svg",
  21114. extra: 1912 / 1680,
  21115. bottom: 0.02
  21116. }
  21117. },
  21118. },
  21119. [
  21120. {
  21121. name: "Nano",
  21122. height: math.unit(1, "mm")
  21123. },
  21124. {
  21125. name: "Micro",
  21126. height: math.unit(2, "inches")
  21127. },
  21128. {
  21129. name: "Normal",
  21130. height: math.unit(5 + 9 / 12, "feet"),
  21131. default: true
  21132. },
  21133. {
  21134. name: "Macro",
  21135. height: math.unit(45, "feet")
  21136. },
  21137. ]
  21138. ))
  21139. characterMakers.push(() => makeCharacter(
  21140. { name: "Aronai Sieyes", species: ["cross-fox", "synth"], tags: ["anthro"] },
  21141. {
  21142. front: {
  21143. height: math.unit(6 + 1 / 12, "feet"),
  21144. weight: math.unit(75, "lb"),
  21145. name: "Front",
  21146. image: {
  21147. source: "./media/characters/aronai-sieyes/front.svg",
  21148. extra: 1532/1450,
  21149. bottom: 42/1574
  21150. }
  21151. },
  21152. side: {
  21153. height: math.unit(6 + 1 / 12, "feet"),
  21154. weight: math.unit(75, "lb"),
  21155. name: "Side",
  21156. image: {
  21157. source: "./media/characters/aronai-sieyes/side.svg",
  21158. extra: 1422/1365,
  21159. bottom: 148/1570
  21160. }
  21161. },
  21162. back: {
  21163. height: math.unit(6 + 1 / 12, "feet"),
  21164. weight: math.unit(75, "lb"),
  21165. name: "Back",
  21166. image: {
  21167. source: "./media/characters/aronai-sieyes/back.svg",
  21168. extra: 1526/1464,
  21169. bottom: 51/1577
  21170. }
  21171. },
  21172. dressed: {
  21173. height: math.unit(6 + 1 / 12, "feet"),
  21174. weight: math.unit(75, "lb"),
  21175. name: "Dressed",
  21176. image: {
  21177. source: "./media/characters/aronai-sieyes/dressed.svg",
  21178. extra: 1559/1483,
  21179. bottom: 39/1598
  21180. }
  21181. },
  21182. slit: {
  21183. height: math.unit(1.3, "feet"),
  21184. name: "Slit",
  21185. image: {
  21186. source: "./media/characters/aronai-sieyes/slit.svg"
  21187. }
  21188. },
  21189. slitSpread: {
  21190. height: math.unit(0.9, "feet"),
  21191. name: "Slit (Spread)",
  21192. image: {
  21193. source: "./media/characters/aronai-sieyes/slit-spread.svg"
  21194. }
  21195. },
  21196. rump: {
  21197. height: math.unit(1.3, "feet"),
  21198. name: "Rump",
  21199. image: {
  21200. source: "./media/characters/aronai-sieyes/rump.svg"
  21201. }
  21202. },
  21203. maw: {
  21204. height: math.unit(1.25, "feet"),
  21205. name: "Maw",
  21206. image: {
  21207. source: "./media/characters/aronai-sieyes/maw.svg"
  21208. }
  21209. },
  21210. feral: {
  21211. height: math.unit(18, "feet"),
  21212. weight: math.unit(75 * 3 * 3 * 3, "lb"),
  21213. name: "Feral",
  21214. image: {
  21215. source: "./media/characters/aronai-sieyes/feral.svg",
  21216. extra: 1530 / 1240,
  21217. bottom: 0.035
  21218. }
  21219. },
  21220. },
  21221. [
  21222. {
  21223. name: "Micro",
  21224. height: math.unit(2, "inches")
  21225. },
  21226. {
  21227. name: "Normal",
  21228. height: math.unit(6 + 1 / 12, "feet"),
  21229. default: true
  21230. }
  21231. ]
  21232. ))
  21233. characterMakers.push(() => makeCharacter(
  21234. { name: "Xuna", species: ["wickerbeast"], tags: ["anthro"] },
  21235. {
  21236. front: {
  21237. height: math.unit(12, "feet"),
  21238. weight: math.unit(410, "kg"),
  21239. name: "Front",
  21240. image: {
  21241. source: "./media/characters/xuna/front.svg",
  21242. extra: 2184 / 1980
  21243. }
  21244. },
  21245. side: {
  21246. height: math.unit(12, "feet"),
  21247. weight: math.unit(410, "kg"),
  21248. name: "Side",
  21249. image: {
  21250. source: "./media/characters/xuna/side.svg",
  21251. extra: 2184 / 1980
  21252. }
  21253. },
  21254. back: {
  21255. height: math.unit(12, "feet"),
  21256. weight: math.unit(410, "kg"),
  21257. name: "Back",
  21258. image: {
  21259. source: "./media/characters/xuna/back.svg",
  21260. extra: 2184 / 1980
  21261. }
  21262. },
  21263. },
  21264. [
  21265. {
  21266. name: "Nano glow",
  21267. height: math.unit(10, "nm")
  21268. },
  21269. {
  21270. name: "Micro floof",
  21271. height: math.unit(0.3, "m")
  21272. },
  21273. {
  21274. name: "Huggable softy boi",
  21275. height: math.unit(3.6576, "m"),
  21276. default: true
  21277. },
  21278. {
  21279. name: "Admirable floof",
  21280. height: math.unit(80, "meters")
  21281. },
  21282. {
  21283. name: "Gentle macro",
  21284. height: math.unit(300, "meters")
  21285. },
  21286. {
  21287. name: "Very careful floof",
  21288. height: math.unit(3200, "meters")
  21289. },
  21290. {
  21291. name: "The mega floof",
  21292. height: math.unit(36000, "meters")
  21293. },
  21294. {
  21295. name: "Giga-fur-Wicker",
  21296. height: math.unit(4800000, "meters")
  21297. },
  21298. {
  21299. name: "Licky world",
  21300. height: math.unit(20000000, "meters")
  21301. },
  21302. {
  21303. name: "Floofy cyan sun",
  21304. height: math.unit(1500000000, "meters")
  21305. },
  21306. {
  21307. name: "Milky Wicker",
  21308. height: math.unit(1000000000000000000000, "meters")
  21309. },
  21310. {
  21311. name: "The observing Wicker",
  21312. height: math.unit(999999999999999999999999999, "meters")
  21313. },
  21314. ]
  21315. ))
  21316. characterMakers.push(() => makeCharacter(
  21317. { name: "Arokha Sieyes", species: ["kitsune"], tags: ["anthro"] },
  21318. {
  21319. front: {
  21320. height: math.unit(5 + 9 / 12, "feet"),
  21321. weight: math.unit(150, "lb"),
  21322. name: "Front",
  21323. image: {
  21324. source: "./media/characters/arokha-sieyes/front.svg",
  21325. extra: 1425 / 1284,
  21326. bottom: 0.05
  21327. }
  21328. },
  21329. },
  21330. [
  21331. {
  21332. name: "Normal",
  21333. height: math.unit(5 + 9 / 12, "feet")
  21334. },
  21335. {
  21336. name: "Macro",
  21337. height: math.unit(30, "meters"),
  21338. default: true
  21339. },
  21340. ]
  21341. ))
  21342. characterMakers.push(() => makeCharacter(
  21343. { name: "Arokh Sieyes", species: ["kitsune"], tags: ["anthro"] },
  21344. {
  21345. front: {
  21346. height: math.unit(6, "feet"),
  21347. weight: math.unit(180, "lb"),
  21348. name: "Front",
  21349. image: {
  21350. source: "./media/characters/arokh-sieyes/front.svg",
  21351. extra: 1830 / 1769,
  21352. bottom: 0.01
  21353. }
  21354. },
  21355. },
  21356. [
  21357. {
  21358. name: "Normal",
  21359. height: math.unit(6, "feet")
  21360. },
  21361. {
  21362. name: "Macro",
  21363. height: math.unit(30, "meters"),
  21364. default: true
  21365. },
  21366. ]
  21367. ))
  21368. characterMakers.push(() => makeCharacter(
  21369. { name: "Goldeneye", species: ["gryphon"], tags: ["feral"] },
  21370. {
  21371. side: {
  21372. height: math.unit(13 + 1 / 12, "feet"),
  21373. weight: math.unit(8.5, "tonnes"),
  21374. preyCapacity: math.unit(36, "people"),
  21375. name: "Side",
  21376. image: {
  21377. source: "./media/characters/goldeneye/side.svg",
  21378. extra: 1139/741,
  21379. bottom: 98/1237
  21380. }
  21381. },
  21382. front: {
  21383. height: math.unit(5.1, "feet"),
  21384. weight: math.unit(8.5, "tonnes"),
  21385. preyCapacity: math.unit(36, "people"),
  21386. name: "Front",
  21387. image: {
  21388. source: "./media/characters/goldeneye/front.svg",
  21389. extra: 635/365,
  21390. bottom: 598/1233
  21391. }
  21392. },
  21393. maw: {
  21394. height: math.unit(6.6, "feet"),
  21395. name: "Maw",
  21396. image: {
  21397. source: "./media/characters/goldeneye/maw.svg"
  21398. }
  21399. },
  21400. headFront: {
  21401. height: math.unit(8, "feet"),
  21402. name: "Head (Front)",
  21403. image: {
  21404. source: "./media/characters/goldeneye/head-front.svg"
  21405. }
  21406. },
  21407. headSide: {
  21408. height: math.unit(6, "feet"),
  21409. name: "Head (Side)",
  21410. image: {
  21411. source: "./media/characters/goldeneye/head-side.svg"
  21412. }
  21413. },
  21414. headBack: {
  21415. height: math.unit(8, "feet"),
  21416. name: "Head (Back)",
  21417. image: {
  21418. source: "./media/characters/goldeneye/head-back.svg"
  21419. }
  21420. },
  21421. paw: {
  21422. height: math.unit(3.4, "feet"),
  21423. name: "Paw",
  21424. image: {
  21425. source: "./media/characters/goldeneye/paw.svg"
  21426. }
  21427. },
  21428. toering: {
  21429. height: math.unit(0.45, "feet"),
  21430. name: "Toering",
  21431. image: {
  21432. source: "./media/characters/goldeneye/toering.svg"
  21433. }
  21434. },
  21435. eyes: {
  21436. height: math.unit(0.5, "feet"),
  21437. name: "Eyes",
  21438. image: {
  21439. source: "./media/characters/goldeneye/eyes.svg"
  21440. }
  21441. },
  21442. },
  21443. [
  21444. {
  21445. name: "Normal",
  21446. height: math.unit(13 + 1 / 12, "feet"),
  21447. default: true
  21448. },
  21449. ]
  21450. ))
  21451. characterMakers.push(() => makeCharacter(
  21452. { name: "Leonardo Lycheborne", species: ["wolf", "dog", "barghest", "werebeast"], tags: ["anthro", "feral", "taur"] },
  21453. {
  21454. front: {
  21455. height: math.unit(6 + 1 / 12, "feet"),
  21456. weight: math.unit(210, "lb"),
  21457. name: "Front",
  21458. image: {
  21459. source: "./media/characters/leonardo-lycheborne/front.svg",
  21460. extra: 776/723,
  21461. bottom: 34/810
  21462. }
  21463. },
  21464. side: {
  21465. height: math.unit(6 + 1 / 12, "feet"),
  21466. weight: math.unit(210, "lb"),
  21467. name: "Side",
  21468. image: {
  21469. source: "./media/characters/leonardo-lycheborne/side.svg",
  21470. extra: 780/728,
  21471. bottom: 12/792
  21472. }
  21473. },
  21474. back: {
  21475. height: math.unit(6 + 1 / 12, "feet"),
  21476. weight: math.unit(210, "lb"),
  21477. name: "Back",
  21478. image: {
  21479. source: "./media/characters/leonardo-lycheborne/back.svg",
  21480. extra: 775/721,
  21481. bottom: 17/792
  21482. }
  21483. },
  21484. hand: {
  21485. height: math.unit(1.08, "feet"),
  21486. name: "Hand",
  21487. image: {
  21488. source: "./media/characters/leonardo-lycheborne/hand.svg"
  21489. }
  21490. },
  21491. foot: {
  21492. height: math.unit(1.32, "feet"),
  21493. name: "Foot",
  21494. image: {
  21495. source: "./media/characters/leonardo-lycheborne/foot.svg"
  21496. }
  21497. },
  21498. maw: {
  21499. height: math.unit(1, "feet"),
  21500. name: "Maw",
  21501. image: {
  21502. source: "./media/characters/leonardo-lycheborne/maw.svg"
  21503. }
  21504. },
  21505. were: {
  21506. height: math.unit(20, "feet"),
  21507. weight: math.unit(7800, "lb"),
  21508. name: "Were",
  21509. image: {
  21510. source: "./media/characters/leonardo-lycheborne/were.svg",
  21511. extra: 1224/1165,
  21512. bottom: 72/1296
  21513. }
  21514. },
  21515. feral: {
  21516. height: math.unit(7.5, "feet"),
  21517. weight: math.unit(600, "lb"),
  21518. name: "Feral",
  21519. image: {
  21520. source: "./media/characters/leonardo-lycheborne/feral.svg",
  21521. extra: 797/702,
  21522. bottom: 139/936
  21523. }
  21524. },
  21525. taur: {
  21526. height: math.unit(11, "feet"),
  21527. weight: math.unit(3300, "lb"),
  21528. name: "Taur",
  21529. image: {
  21530. source: "./media/characters/leonardo-lycheborne/taur.svg",
  21531. extra: 1271/1197,
  21532. bottom: 47/1318
  21533. }
  21534. },
  21535. barghest: {
  21536. height: math.unit(11, "feet"),
  21537. weight: math.unit(1300, "lb"),
  21538. name: "Barghest",
  21539. image: {
  21540. source: "./media/characters/leonardo-lycheborne/barghest.svg",
  21541. extra: 1291/1204,
  21542. bottom: 37/1328
  21543. }
  21544. },
  21545. dick: {
  21546. height: math.unit((6 + 1 / 12) / 4.09, "feet"),
  21547. name: "Dick",
  21548. image: {
  21549. source: "./media/characters/leonardo-lycheborne/dick.svg"
  21550. }
  21551. },
  21552. dickWere: {
  21553. height: math.unit((20) / 3.8, "feet"),
  21554. name: "Dick (Were)",
  21555. image: {
  21556. source: "./media/characters/leonardo-lycheborne/dick-were.svg"
  21557. }
  21558. },
  21559. },
  21560. [
  21561. {
  21562. name: "Normal",
  21563. height: math.unit(6 + 1 / 12, "feet"),
  21564. default: true
  21565. },
  21566. ]
  21567. ))
  21568. characterMakers.push(() => makeCharacter(
  21569. { name: "Jet", species: ["hyena"], tags: ["anthro"] },
  21570. {
  21571. front: {
  21572. height: math.unit(10, "feet"),
  21573. weight: math.unit(350, "lb"),
  21574. name: "Front",
  21575. image: {
  21576. source: "./media/characters/jet/front.svg",
  21577. extra: 2050 / 1980,
  21578. bottom: 0.013
  21579. }
  21580. },
  21581. back: {
  21582. height: math.unit(10, "feet"),
  21583. weight: math.unit(350, "lb"),
  21584. name: "Back",
  21585. image: {
  21586. source: "./media/characters/jet/back.svg",
  21587. extra: 2050 / 1980,
  21588. bottom: 0.013
  21589. }
  21590. },
  21591. },
  21592. [
  21593. {
  21594. name: "Micro",
  21595. height: math.unit(6, "inches")
  21596. },
  21597. {
  21598. name: "Normal",
  21599. height: math.unit(10, "feet"),
  21600. default: true
  21601. },
  21602. {
  21603. name: "Macro",
  21604. height: math.unit(100, "feet")
  21605. },
  21606. ]
  21607. ))
  21608. characterMakers.push(() => makeCharacter(
  21609. { name: "Tanarath", species: ["dragonoid"], tags: ["anthro"] },
  21610. {
  21611. front: {
  21612. height: math.unit(15, "feet"),
  21613. weight: math.unit(2800, "lb"),
  21614. name: "Front",
  21615. image: {
  21616. source: "./media/characters/tanarath/front.svg",
  21617. extra: 2392 / 2220,
  21618. bottom: 0.03
  21619. }
  21620. },
  21621. back: {
  21622. height: math.unit(15, "feet"),
  21623. weight: math.unit(2800, "lb"),
  21624. name: "Back",
  21625. image: {
  21626. source: "./media/characters/tanarath/back.svg",
  21627. extra: 2392 / 2220,
  21628. bottom: 0.03
  21629. }
  21630. },
  21631. },
  21632. [
  21633. {
  21634. name: "Normal",
  21635. height: math.unit(15, "feet"),
  21636. default: true
  21637. },
  21638. ]
  21639. ))
  21640. characterMakers.push(() => makeCharacter(
  21641. { name: "Patty CattyBatty", species: ["cat", "bat"], tags: ["anthro"] },
  21642. {
  21643. front: {
  21644. height: math.unit(7 + 1 / 12, "feet"),
  21645. weight: math.unit(175, "lb"),
  21646. name: "Front",
  21647. image: {
  21648. source: "./media/characters/patty-cattybatty/front.svg",
  21649. extra: 908 / 874,
  21650. bottom: 0.025
  21651. }
  21652. },
  21653. },
  21654. [
  21655. {
  21656. name: "Micro",
  21657. height: math.unit(1, "inch")
  21658. },
  21659. {
  21660. name: "Normal",
  21661. height: math.unit(7 + 1 / 12, "feet")
  21662. },
  21663. {
  21664. name: "Mini Macro",
  21665. height: math.unit(155, "feet")
  21666. },
  21667. {
  21668. name: "Macro",
  21669. height: math.unit(1077, "feet")
  21670. },
  21671. {
  21672. name: "Mega Macro",
  21673. height: math.unit(47650, "feet"),
  21674. default: true
  21675. },
  21676. {
  21677. name: "Giga Macro",
  21678. height: math.unit(440, "miles")
  21679. },
  21680. {
  21681. name: "Tera Macro",
  21682. height: math.unit(8700, "miles")
  21683. },
  21684. {
  21685. name: "Planetary Macro",
  21686. height: math.unit(32700, "miles")
  21687. },
  21688. {
  21689. name: "Solar Macro",
  21690. height: math.unit(550000, "miles")
  21691. },
  21692. {
  21693. name: "Celestial Macro",
  21694. height: math.unit(2.5, "AU")
  21695. },
  21696. ]
  21697. ))
  21698. characterMakers.push(() => makeCharacter(
  21699. { name: "Cappu", species: ["sheep"], tags: ["anthro"] },
  21700. {
  21701. front: {
  21702. height: math.unit(4 + 5 / 12, "feet"),
  21703. weight: math.unit(90, "lb"),
  21704. name: "Front",
  21705. image: {
  21706. source: "./media/characters/cappu/front.svg",
  21707. extra: 1247 / 1152,
  21708. bottom: 0.012
  21709. }
  21710. },
  21711. },
  21712. [
  21713. {
  21714. name: "Normal",
  21715. height: math.unit(4 + 5 / 12, "feet"),
  21716. default: true
  21717. },
  21718. ]
  21719. ))
  21720. characterMakers.push(() => makeCharacter(
  21721. { name: "Sebi", species: ["cat", "demon", "wolf"], tags: ["anthro"] },
  21722. {
  21723. frontDressed: {
  21724. height: math.unit(70, "cm"),
  21725. weight: math.unit(6, "kg"),
  21726. name: "Front (Dressed)",
  21727. image: {
  21728. source: "./media/characters/sebi/front-dressed.svg",
  21729. extra: 713.5 / 686.5,
  21730. bottom: 0.003
  21731. }
  21732. },
  21733. front: {
  21734. height: math.unit(70, "cm"),
  21735. weight: math.unit(5, "kg"),
  21736. name: "Front",
  21737. image: {
  21738. source: "./media/characters/sebi/front.svg",
  21739. extra: 713.5 / 686.5,
  21740. bottom: 0.003
  21741. }
  21742. }
  21743. },
  21744. [
  21745. {
  21746. name: "Normal",
  21747. height: math.unit(70, "cm"),
  21748. default: true
  21749. },
  21750. {
  21751. name: "Macro",
  21752. height: math.unit(8, "meters")
  21753. },
  21754. ]
  21755. ))
  21756. characterMakers.push(() => makeCharacter(
  21757. { name: "Typhek", species: ["t-rex"], tags: ["anthro"] },
  21758. {
  21759. front: {
  21760. height: math.unit(6, "feet"),
  21761. weight: math.unit(150, "lb"),
  21762. name: "Front",
  21763. image: {
  21764. source: "./media/characters/typhek/front.svg",
  21765. extra: 1948 / 1929,
  21766. bottom: 0.025
  21767. }
  21768. },
  21769. side: {
  21770. height: math.unit(6, "feet"),
  21771. weight: math.unit(150, "lb"),
  21772. name: "Side",
  21773. image: {
  21774. source: "./media/characters/typhek/side.svg",
  21775. extra: 2034 / 2010,
  21776. bottom: 0.003
  21777. }
  21778. },
  21779. back: {
  21780. height: math.unit(6, "feet"),
  21781. weight: math.unit(150, "lb"),
  21782. name: "Back",
  21783. image: {
  21784. source: "./media/characters/typhek/back.svg",
  21785. extra: 2005 / 1978,
  21786. bottom: 0.004
  21787. }
  21788. },
  21789. palm: {
  21790. height: math.unit(1.2, "feet"),
  21791. name: "Palm",
  21792. image: {
  21793. source: "./media/characters/typhek/palm.svg"
  21794. }
  21795. },
  21796. fist: {
  21797. height: math.unit(1.1, "feet"),
  21798. name: "Fist",
  21799. image: {
  21800. source: "./media/characters/typhek/fist.svg"
  21801. }
  21802. },
  21803. foot: {
  21804. height: math.unit(1.57, "feet"),
  21805. name: "Foot",
  21806. image: {
  21807. source: "./media/characters/typhek/foot.svg"
  21808. }
  21809. },
  21810. sole: {
  21811. height: math.unit(2.05, "feet"),
  21812. name: "Sole",
  21813. image: {
  21814. source: "./media/characters/typhek/sole.svg"
  21815. }
  21816. },
  21817. },
  21818. [
  21819. {
  21820. name: "Macro",
  21821. height: math.unit(40, "stories"),
  21822. default: true
  21823. },
  21824. {
  21825. name: "Megamacro",
  21826. height: math.unit(1, "mile")
  21827. },
  21828. {
  21829. name: "Gigamacro",
  21830. height: math.unit(4000, "solarradii")
  21831. },
  21832. {
  21833. name: "Universal",
  21834. height: math.unit(1.1, "universes")
  21835. }
  21836. ]
  21837. ))
  21838. characterMakers.push(() => makeCharacter(
  21839. { name: "Kassy", species: ["sheep"], tags: ["anthro"] },
  21840. {
  21841. side: {
  21842. height: math.unit(5 + 7 / 12, "feet"),
  21843. weight: math.unit(150, "lb"),
  21844. name: "Side",
  21845. image: {
  21846. source: "./media/characters/kassy/side.svg",
  21847. extra: 1280 / 1225,
  21848. bottom: 0.002
  21849. }
  21850. },
  21851. front: {
  21852. height: math.unit(5 + 7 / 12, "feet"),
  21853. weight: math.unit(150, "lb"),
  21854. name: "Front",
  21855. image: {
  21856. source: "./media/characters/kassy/front.svg",
  21857. extra: 1280 / 1225,
  21858. bottom: 0.025
  21859. }
  21860. },
  21861. back: {
  21862. height: math.unit(5 + 7 / 12, "feet"),
  21863. weight: math.unit(150, "lb"),
  21864. name: "Back",
  21865. image: {
  21866. source: "./media/characters/kassy/back.svg",
  21867. extra: 1280 / 1225,
  21868. bottom: 0.002
  21869. }
  21870. },
  21871. foot: {
  21872. height: math.unit(1.266, "feet"),
  21873. name: "Foot",
  21874. image: {
  21875. source: "./media/characters/kassy/foot.svg"
  21876. }
  21877. },
  21878. },
  21879. [
  21880. {
  21881. name: "Normal",
  21882. height: math.unit(5 + 7 / 12, "feet")
  21883. },
  21884. {
  21885. name: "Macro",
  21886. height: math.unit(137, "feet"),
  21887. default: true
  21888. },
  21889. {
  21890. name: "Megamacro",
  21891. height: math.unit(1, "mile")
  21892. },
  21893. ]
  21894. ))
  21895. characterMakers.push(() => makeCharacter(
  21896. { name: "Neil", species: ["deer"], tags: ["anthro"] },
  21897. {
  21898. front: {
  21899. height: math.unit(6 + 1 / 12, "feet"),
  21900. weight: math.unit(200, "lb"),
  21901. name: "Front",
  21902. image: {
  21903. source: "./media/characters/neil/front.svg",
  21904. extra: 1326 / 1250,
  21905. bottom: 0.023
  21906. }
  21907. },
  21908. },
  21909. [
  21910. {
  21911. name: "Normal",
  21912. height: math.unit(6 + 1 / 12, "feet"),
  21913. default: true
  21914. },
  21915. {
  21916. name: "Macro",
  21917. height: math.unit(200, "feet")
  21918. },
  21919. ]
  21920. ))
  21921. characterMakers.push(() => makeCharacter(
  21922. { name: "Atticus", species: ["pig"], tags: ["anthro"] },
  21923. {
  21924. front: {
  21925. height: math.unit(5 + 9 / 12, "feet"),
  21926. weight: math.unit(190, "lb"),
  21927. name: "Front",
  21928. image: {
  21929. source: "./media/characters/atticus/front.svg",
  21930. extra: 2934 / 2785,
  21931. bottom: 0.025
  21932. }
  21933. },
  21934. },
  21935. [
  21936. {
  21937. name: "Normal",
  21938. height: math.unit(5 + 9 / 12, "feet"),
  21939. default: true
  21940. },
  21941. {
  21942. name: "Macro",
  21943. height: math.unit(180, "feet")
  21944. },
  21945. ]
  21946. ))
  21947. characterMakers.push(() => makeCharacter(
  21948. { name: "Milo", species: ["scolipede"], tags: ["feral"] },
  21949. {
  21950. side: {
  21951. height: math.unit(9, "feet"),
  21952. weight: math.unit(650, "lb"),
  21953. name: "Side",
  21954. image: {
  21955. source: "./media/characters/milo/side.svg",
  21956. extra: 2644 / 2310,
  21957. bottom: 0.032
  21958. }
  21959. },
  21960. },
  21961. [
  21962. {
  21963. name: "Normal",
  21964. height: math.unit(9, "feet"),
  21965. default: true
  21966. },
  21967. {
  21968. name: "Macro",
  21969. height: math.unit(300, "feet")
  21970. },
  21971. ]
  21972. ))
  21973. characterMakers.push(() => makeCharacter(
  21974. { name: "Ijzer", species: ["dragon"], tags: ["anthro"] },
  21975. {
  21976. side: {
  21977. height: math.unit(8, "meters"),
  21978. weight: math.unit(90000, "kg"),
  21979. name: "Side",
  21980. image: {
  21981. source: "./media/characters/ijzer/side.svg",
  21982. extra: 2756 / 1600,
  21983. bottom: 0.01
  21984. }
  21985. },
  21986. },
  21987. [
  21988. {
  21989. name: "Small",
  21990. height: math.unit(3, "meters")
  21991. },
  21992. {
  21993. name: "Normal",
  21994. height: math.unit(8, "meters"),
  21995. default: true
  21996. },
  21997. {
  21998. name: "Normal+",
  21999. height: math.unit(10, "meters")
  22000. },
  22001. {
  22002. name: "Bigger",
  22003. height: math.unit(24, "meters")
  22004. },
  22005. {
  22006. name: "Huge",
  22007. height: math.unit(80, "meters")
  22008. },
  22009. ]
  22010. ))
  22011. characterMakers.push(() => makeCharacter(
  22012. { name: "Luca Cervicum", species: ["deer"], tags: ["anthro"] },
  22013. {
  22014. front: {
  22015. height: math.unit(6 + 2 / 12, "feet"),
  22016. weight: math.unit(153, "lb"),
  22017. name: "Front",
  22018. image: {
  22019. source: "./media/characters/luca-cervicum/front.svg",
  22020. extra: 370 / 327,
  22021. bottom: 0.015
  22022. }
  22023. },
  22024. back: {
  22025. height: math.unit(6 + 2 / 12, "feet"),
  22026. weight: math.unit(153, "lb"),
  22027. name: "Back",
  22028. image: {
  22029. source: "./media/characters/luca-cervicum/back.svg",
  22030. extra: 367 / 333,
  22031. bottom: 0.005
  22032. }
  22033. },
  22034. frontGear: {
  22035. height: math.unit(6 + 2 / 12, "feet"),
  22036. weight: math.unit(173, "lb"),
  22037. name: "Front (Gear)",
  22038. image: {
  22039. source: "./media/characters/luca-cervicum/front-gear.svg",
  22040. extra: 377 / 333,
  22041. bottom: 0.006
  22042. }
  22043. },
  22044. },
  22045. [
  22046. {
  22047. name: "Normal",
  22048. height: math.unit(6 + 2 / 12, "feet"),
  22049. default: true
  22050. },
  22051. ]
  22052. ))
  22053. characterMakers.push(() => makeCharacter(
  22054. { name: "Oliver", species: ["goodra"], tags: ["anthro"] },
  22055. {
  22056. front: {
  22057. height: math.unit(6 + 1 / 12, "feet"),
  22058. weight: math.unit(304, "lb"),
  22059. name: "Front",
  22060. image: {
  22061. source: "./media/characters/oliver/front.svg",
  22062. extra: 157 / 143,
  22063. bottom: 0.08
  22064. }
  22065. },
  22066. },
  22067. [
  22068. {
  22069. name: "Normal",
  22070. height: math.unit(6 + 1 / 12, "feet"),
  22071. default: true
  22072. },
  22073. ]
  22074. ))
  22075. characterMakers.push(() => makeCharacter(
  22076. { name: "Shane", species: ["gray-fox"], tags: ["anthro"] },
  22077. {
  22078. front: {
  22079. height: math.unit(5 + 7 / 12, "feet"),
  22080. weight: math.unit(140, "lb"),
  22081. name: "Front",
  22082. image: {
  22083. source: "./media/characters/shane/front.svg",
  22084. extra: 304 / 289,
  22085. bottom: 0.005
  22086. }
  22087. },
  22088. },
  22089. [
  22090. {
  22091. name: "Normal",
  22092. height: math.unit(5 + 7 / 12, "feet"),
  22093. default: true
  22094. },
  22095. ]
  22096. ))
  22097. characterMakers.push(() => makeCharacter(
  22098. { name: "Shin", species: ["rat"], tags: ["anthro"] },
  22099. {
  22100. front: {
  22101. height: math.unit(5 + 9 / 12, "feet"),
  22102. weight: math.unit(178, "lb"),
  22103. name: "Front",
  22104. image: {
  22105. source: "./media/characters/shin/front.svg",
  22106. extra: 159 / 151,
  22107. bottom: 0.015
  22108. }
  22109. },
  22110. },
  22111. [
  22112. {
  22113. name: "Normal",
  22114. height: math.unit(5 + 9 / 12, "feet"),
  22115. default: true
  22116. },
  22117. ]
  22118. ))
  22119. characterMakers.push(() => makeCharacter(
  22120. { name: "Xerxes", species: ["zoroark"], tags: ["anthro"] },
  22121. {
  22122. front: {
  22123. height: math.unit(5 + 10 / 12, "feet"),
  22124. weight: math.unit(168, "lb"),
  22125. name: "Front",
  22126. image: {
  22127. source: "./media/characters/xerxes/front.svg",
  22128. extra: 282 / 260,
  22129. bottom: 0.045
  22130. }
  22131. },
  22132. },
  22133. [
  22134. {
  22135. name: "Normal",
  22136. height: math.unit(5 + 10 / 12, "feet"),
  22137. default: true
  22138. },
  22139. ]
  22140. ))
  22141. characterMakers.push(() => makeCharacter(
  22142. { name: "Chaska", species: ["maned-wolf"], tags: ["anthro"] },
  22143. {
  22144. front: {
  22145. height: math.unit(6 + 7 / 12, "feet"),
  22146. weight: math.unit(208, "lb"),
  22147. name: "Front",
  22148. image: {
  22149. source: "./media/characters/chaska/front.svg",
  22150. extra: 332 / 319,
  22151. bottom: 0.015
  22152. }
  22153. },
  22154. },
  22155. [
  22156. {
  22157. name: "Normal",
  22158. height: math.unit(6 + 7 / 12, "feet"),
  22159. default: true
  22160. },
  22161. ]
  22162. ))
  22163. characterMakers.push(() => makeCharacter(
  22164. { name: "Enuk", species: ["black-backed-jackal"], tags: ["anthro"] },
  22165. {
  22166. front: {
  22167. height: math.unit(5 + 8 / 12, "feet"),
  22168. weight: math.unit(208, "lb"),
  22169. name: "Front",
  22170. image: {
  22171. source: "./media/characters/enuk/front.svg",
  22172. extra: 437 / 406,
  22173. bottom: 0.02
  22174. }
  22175. },
  22176. },
  22177. [
  22178. {
  22179. name: "Normal",
  22180. height: math.unit(5 + 8 / 12, "feet"),
  22181. default: true
  22182. },
  22183. ]
  22184. ))
  22185. characterMakers.push(() => makeCharacter(
  22186. { name: "Bruun", species: ["black-backed-jackal"], tags: ["anthro"] },
  22187. {
  22188. front: {
  22189. height: math.unit(5 + 10 / 12, "feet"),
  22190. weight: math.unit(252, "lb"),
  22191. name: "Front",
  22192. image: {
  22193. source: "./media/characters/bruun/front.svg",
  22194. extra: 197 / 187,
  22195. bottom: 0.012
  22196. }
  22197. },
  22198. },
  22199. [
  22200. {
  22201. name: "Normal",
  22202. height: math.unit(5 + 10 / 12, "feet"),
  22203. default: true
  22204. },
  22205. ]
  22206. ))
  22207. characterMakers.push(() => makeCharacter(
  22208. { name: "Alexeev", species: ["samurott"], tags: ["anthro"] },
  22209. {
  22210. front: {
  22211. height: math.unit(6 + 10 / 12, "feet"),
  22212. weight: math.unit(255, "lb"),
  22213. name: "Front",
  22214. image: {
  22215. source: "./media/characters/alexeev/front.svg",
  22216. extra: 213 / 200,
  22217. bottom: 0.05
  22218. }
  22219. },
  22220. },
  22221. [
  22222. {
  22223. name: "Normal",
  22224. height: math.unit(6 + 10 / 12, "feet"),
  22225. default: true
  22226. },
  22227. ]
  22228. ))
  22229. characterMakers.push(() => makeCharacter(
  22230. { name: "Evelyn", species: ["thylacine"], tags: ["anthro"] },
  22231. {
  22232. front: {
  22233. height: math.unit(2 + 8 / 12, "feet"),
  22234. weight: math.unit(22, "lb"),
  22235. name: "Front",
  22236. image: {
  22237. source: "./media/characters/evelyn/front.svg",
  22238. extra: 208 / 180
  22239. }
  22240. },
  22241. },
  22242. [
  22243. {
  22244. name: "Normal",
  22245. height: math.unit(2 + 8 / 12, "feet"),
  22246. default: true
  22247. },
  22248. ]
  22249. ))
  22250. characterMakers.push(() => makeCharacter(
  22251. { name: "Inca", species: ["gecko"], tags: ["anthro"] },
  22252. {
  22253. front: {
  22254. height: math.unit(5 + 9 / 12, "feet"),
  22255. weight: math.unit(139, "lb"),
  22256. name: "Front",
  22257. image: {
  22258. source: "./media/characters/inca/front.svg",
  22259. extra: 294 / 291,
  22260. bottom: 0.03
  22261. }
  22262. },
  22263. },
  22264. [
  22265. {
  22266. name: "Normal",
  22267. height: math.unit(5 + 9 / 12, "feet"),
  22268. default: true
  22269. },
  22270. ]
  22271. ))
  22272. characterMakers.push(() => makeCharacter(
  22273. { name: "Mera", species: ["flying-fox", "spectral-bat"], tags: ["anthro"] },
  22274. {
  22275. front: {
  22276. height: math.unit(6 + 3 / 12, "feet"),
  22277. weight: math.unit(185, "lb"),
  22278. name: "Front",
  22279. image: {
  22280. source: "./media/characters/mera/front.svg",
  22281. extra: 291 / 277,
  22282. bottom: 0.03
  22283. }
  22284. },
  22285. },
  22286. [
  22287. {
  22288. name: "Normal",
  22289. height: math.unit(6 + 3 / 12, "feet"),
  22290. default: true
  22291. },
  22292. ]
  22293. ))
  22294. characterMakers.push(() => makeCharacter(
  22295. { name: "Ceres", species: ["zoroark"], tags: ["anthro"] },
  22296. {
  22297. front: {
  22298. height: math.unit(6 + 7 / 12, "feet"),
  22299. weight: math.unit(160, "lb"),
  22300. name: "Front",
  22301. image: {
  22302. source: "./media/characters/ceres/front.svg",
  22303. extra: 1023 / 950,
  22304. bottom: 0.027
  22305. }
  22306. },
  22307. back: {
  22308. height: math.unit(6 + 7 / 12, "feet"),
  22309. weight: math.unit(160, "lb"),
  22310. name: "Back",
  22311. image: {
  22312. source: "./media/characters/ceres/back.svg",
  22313. extra: 1023 / 950
  22314. }
  22315. },
  22316. },
  22317. [
  22318. {
  22319. name: "Normal",
  22320. height: math.unit(6 + 7 / 12, "feet"),
  22321. default: true
  22322. },
  22323. ]
  22324. ))
  22325. characterMakers.push(() => makeCharacter(
  22326. { name: "Kris", species: ["ninetales"], tags: ["anthro"] },
  22327. {
  22328. front: {
  22329. height: math.unit(5 + 10 / 12, "feet"),
  22330. weight: math.unit(150, "lb"),
  22331. name: "Front",
  22332. image: {
  22333. source: "./media/characters/kris/front.svg",
  22334. extra: 885 / 803,
  22335. bottom: 0.03
  22336. }
  22337. },
  22338. },
  22339. [
  22340. {
  22341. name: "Normal",
  22342. height: math.unit(5 + 10 / 12, "feet"),
  22343. default: true
  22344. },
  22345. ]
  22346. ))
  22347. characterMakers.push(() => makeCharacter(
  22348. { name: "Taluthus", species: ["kitsune"], tags: ["anthro"] },
  22349. {
  22350. dragon_front: {
  22351. height: math.unit(5, "feet"),
  22352. name: "Front",
  22353. image: {
  22354. source: "./media/characters/taluthus/dragon-front.svg",
  22355. extra: 1203/1098,
  22356. bottom: 46/1249
  22357. },
  22358. form: "dragon",
  22359. default: true
  22360. },
  22361. dragon_maw: {
  22362. height: math.unit(2.35, "feet"),
  22363. name: "Maw",
  22364. image: {
  22365. source: "./media/characters/taluthus/dragon-maw.svg"
  22366. },
  22367. form: "dragon",
  22368. },
  22369. kitsune_front: {
  22370. height: math.unit(7, "feet"),
  22371. name: "Front",
  22372. image: {
  22373. source: "./media/characters/taluthus/kitsune-front.svg",
  22374. extra: 900/841,
  22375. bottom: 65/965
  22376. },
  22377. form: "kitsune",
  22378. default: true
  22379. },
  22380. },
  22381. [
  22382. {
  22383. name: "Normal",
  22384. height: math.unit(5, "feet"),
  22385. form: "dragon",
  22386. default: true,
  22387. },
  22388. {
  22389. name: "Normal",
  22390. height: math.unit(7, "feet"),
  22391. form: "kitsune",
  22392. default: true
  22393. },
  22394. {
  22395. name: "Macro",
  22396. height: math.unit(300, "feet"),
  22397. allForms: true
  22398. },
  22399. ],
  22400. {
  22401. "dragon": {
  22402. name: "Dragon",
  22403. default: true
  22404. },
  22405. "kitsune": {
  22406. name: "Kitsune",
  22407. },
  22408. }
  22409. ))
  22410. characterMakers.push(() => makeCharacter(
  22411. { name: "Dawn", species: ["luxray"], tags: ["anthro"] },
  22412. {
  22413. front: {
  22414. height: math.unit(5 + 9 / 12, "feet"),
  22415. weight: math.unit(145, "lb"),
  22416. name: "Front",
  22417. image: {
  22418. source: "./media/characters/dawn/front.svg",
  22419. extra: 2094 / 2016,
  22420. bottom: 0.025
  22421. }
  22422. },
  22423. back: {
  22424. height: math.unit(5 + 9 / 12, "feet"),
  22425. weight: math.unit(160, "lb"),
  22426. name: "Back",
  22427. image: {
  22428. source: "./media/characters/dawn/back.svg",
  22429. extra: 2112 / 2080,
  22430. bottom: 0.005
  22431. }
  22432. },
  22433. },
  22434. [
  22435. {
  22436. name: "Normal",
  22437. height: math.unit(6 + 7 / 12, "feet"),
  22438. default: true
  22439. },
  22440. ]
  22441. ))
  22442. characterMakers.push(() => makeCharacter(
  22443. { name: "Arador", species: ["water-dragon"], tags: ["anthro"] },
  22444. {
  22445. anthro: {
  22446. height: math.unit(8 + 3 / 12, "feet"),
  22447. weight: math.unit(450, "lb"),
  22448. name: "Anthro",
  22449. image: {
  22450. source: "./media/characters/arador/anthro.svg",
  22451. extra: 1835 / 1718,
  22452. bottom: 0.025
  22453. }
  22454. },
  22455. feral: {
  22456. height: math.unit(4, "feet"),
  22457. weight: math.unit(200, "lb"),
  22458. name: "Feral",
  22459. image: {
  22460. source: "./media/characters/arador/feral.svg",
  22461. extra: 1683 / 1514,
  22462. bottom: 0.07
  22463. }
  22464. },
  22465. },
  22466. [
  22467. {
  22468. name: "Normal",
  22469. height: math.unit(8 + 3 / 12, "feet")
  22470. },
  22471. {
  22472. name: "Macro",
  22473. height: math.unit(82.5, "feet"),
  22474. default: true
  22475. },
  22476. ]
  22477. ))
  22478. characterMakers.push(() => makeCharacter(
  22479. { name: "Dharsi", species: ["dragon"], tags: ["anthro"] },
  22480. {
  22481. front: {
  22482. height: math.unit(5 + 10 / 12, "feet"),
  22483. weight: math.unit(125, "lb"),
  22484. name: "Front",
  22485. image: {
  22486. source: "./media/characters/dharsi/front.svg",
  22487. extra: 716 / 630,
  22488. bottom: 0.035
  22489. }
  22490. },
  22491. },
  22492. [
  22493. {
  22494. name: "Nano",
  22495. height: math.unit(100, "nm")
  22496. },
  22497. {
  22498. name: "Micro",
  22499. height: math.unit(2, "inches")
  22500. },
  22501. {
  22502. name: "Normal",
  22503. height: math.unit(5 + 10 / 12, "feet"),
  22504. default: true
  22505. },
  22506. {
  22507. name: "Macro",
  22508. height: math.unit(1000, "feet")
  22509. },
  22510. {
  22511. name: "Megamacro",
  22512. height: math.unit(10, "miles")
  22513. },
  22514. {
  22515. name: "Gigamacro",
  22516. height: math.unit(3000, "miles")
  22517. },
  22518. {
  22519. name: "Teramacro",
  22520. height: math.unit(500000, "miles")
  22521. },
  22522. {
  22523. name: "Teramacro+",
  22524. height: math.unit(30, "galaxies")
  22525. },
  22526. ]
  22527. ))
  22528. characterMakers.push(() => makeCharacter(
  22529. { name: "Deathy", species: ["wolf"], tags: ["anthro"] },
  22530. {
  22531. front: {
  22532. height: math.unit(6, "feet"),
  22533. weight: math.unit(150, "lb"),
  22534. name: "Front",
  22535. image: {
  22536. source: "./media/characters/deathy/front.svg",
  22537. extra: 1552 / 1463,
  22538. bottom: 0.025
  22539. }
  22540. },
  22541. side: {
  22542. height: math.unit(6, "feet"),
  22543. weight: math.unit(150, "lb"),
  22544. name: "Side",
  22545. image: {
  22546. source: "./media/characters/deathy/side.svg",
  22547. extra: 1604 / 1455,
  22548. bottom: 0.025
  22549. }
  22550. },
  22551. back: {
  22552. height: math.unit(6, "feet"),
  22553. weight: math.unit(150, "lb"),
  22554. name: "Back",
  22555. image: {
  22556. source: "./media/characters/deathy/back.svg",
  22557. extra: 1580 / 1463,
  22558. bottom: 0.005
  22559. }
  22560. },
  22561. },
  22562. [
  22563. {
  22564. name: "Micro",
  22565. height: math.unit(5, "millimeters")
  22566. },
  22567. {
  22568. name: "Normal",
  22569. height: math.unit(6 + 5 / 12, "feet"),
  22570. default: true
  22571. },
  22572. ]
  22573. ))
  22574. characterMakers.push(() => makeCharacter(
  22575. { name: "Juniper", species: ["snake"], tags: ["naga", "goo"] },
  22576. {
  22577. front: {
  22578. height: math.unit(16, "feet"),
  22579. weight: math.unit(4000, "lb"),
  22580. name: "Front",
  22581. image: {
  22582. source: "./media/characters/juniper/front.svg",
  22583. bottom: 0.04
  22584. }
  22585. },
  22586. },
  22587. [
  22588. {
  22589. name: "Normal",
  22590. height: math.unit(16, "feet"),
  22591. default: true
  22592. },
  22593. ]
  22594. ))
  22595. characterMakers.push(() => makeCharacter(
  22596. { name: "Hipster", species: ["fox"], tags: ["anthro"] },
  22597. {
  22598. front: {
  22599. height: math.unit(6, "feet"),
  22600. weight: math.unit(150, "lb"),
  22601. name: "Front",
  22602. image: {
  22603. source: "./media/characters/hipster/front.svg",
  22604. extra: 1312 / 1209,
  22605. bottom: 0.025
  22606. }
  22607. },
  22608. back: {
  22609. height: math.unit(6, "feet"),
  22610. weight: math.unit(150, "lb"),
  22611. name: "Back",
  22612. image: {
  22613. source: "./media/characters/hipster/back.svg",
  22614. extra: 1281 / 1196,
  22615. bottom: 0.01
  22616. }
  22617. },
  22618. },
  22619. [
  22620. {
  22621. name: "Micro",
  22622. height: math.unit(1, "mm")
  22623. },
  22624. {
  22625. name: "Normal",
  22626. height: math.unit(4, "inches"),
  22627. default: true
  22628. },
  22629. {
  22630. name: "Macro",
  22631. height: math.unit(500, "feet")
  22632. },
  22633. {
  22634. name: "Megamacro",
  22635. height: math.unit(1000, "miles")
  22636. },
  22637. ]
  22638. ))
  22639. characterMakers.push(() => makeCharacter(
  22640. { name: "Tendirmuldr", species: ["cow"], tags: ["anthro"] },
  22641. {
  22642. front: {
  22643. height: math.unit(6, "feet"),
  22644. weight: math.unit(150, "lb"),
  22645. name: "Front",
  22646. image: {
  22647. source: "./media/characters/tendirmuldr/front.svg",
  22648. extra: 1878 / 1772,
  22649. bottom: 0.015
  22650. }
  22651. },
  22652. },
  22653. [
  22654. {
  22655. name: "Megamacro",
  22656. height: math.unit(1500, "miles"),
  22657. default: true
  22658. },
  22659. ]
  22660. ))
  22661. characterMakers.push(() => makeCharacter(
  22662. { name: "Mort", species: ["demon"], tags: ["feral"] },
  22663. {
  22664. front: {
  22665. height: math.unit(14, "feet"),
  22666. weight: math.unit(12000, "lb"),
  22667. name: "Front",
  22668. image: {
  22669. source: "./media/characters/mort/front.svg",
  22670. extra: 365 / 318,
  22671. bottom: 0.01
  22672. }
  22673. },
  22674. side: {
  22675. height: math.unit(14, "feet"),
  22676. weight: math.unit(12000, "lb"),
  22677. name: "Side",
  22678. image: {
  22679. source: "./media/characters/mort/side.svg",
  22680. extra: 365 / 318,
  22681. bottom: 0.052
  22682. },
  22683. default: true
  22684. },
  22685. back: {
  22686. height: math.unit(14, "feet"),
  22687. weight: math.unit(12000, "lb"),
  22688. name: "Back",
  22689. image: {
  22690. source: "./media/characters/mort/back.svg",
  22691. extra: 371 / 332,
  22692. bottom: 0.18
  22693. }
  22694. },
  22695. },
  22696. [
  22697. {
  22698. name: "Normal",
  22699. height: math.unit(14, "feet"),
  22700. default: true
  22701. },
  22702. ]
  22703. ))
  22704. characterMakers.push(() => makeCharacter(
  22705. { name: "Lycoa", species: ["sergal"], tags: ["anthro", "goo"] },
  22706. {
  22707. front: {
  22708. height: math.unit(8, "feet"),
  22709. weight: math.unit(1, "ton"),
  22710. name: "Front",
  22711. image: {
  22712. source: "./media/characters/lycoa/front.svg",
  22713. extra: 1836/1728,
  22714. bottom: 81/1917
  22715. }
  22716. },
  22717. back: {
  22718. height: math.unit(8, "feet"),
  22719. weight: math.unit(1, "ton"),
  22720. name: "Back",
  22721. image: {
  22722. source: "./media/characters/lycoa/back.svg",
  22723. extra: 1785/1720,
  22724. bottom: 91/1876
  22725. }
  22726. },
  22727. head: {
  22728. height: math.unit(1.6243, "feet"),
  22729. name: "Head",
  22730. image: {
  22731. source: "./media/characters/lycoa/head.svg",
  22732. extra: 1011/782,
  22733. bottom: 0/1011
  22734. }
  22735. },
  22736. tailmaw: {
  22737. height: math.unit(1.9, "feet"),
  22738. name: "Tailmaw",
  22739. image: {
  22740. source: "./media/characters/lycoa/tailmaw.svg"
  22741. }
  22742. },
  22743. tentacles: {
  22744. height: math.unit(2.1, "feet"),
  22745. name: "Tentacles",
  22746. image: {
  22747. source: "./media/characters/lycoa/tentacles.svg"
  22748. }
  22749. },
  22750. dick: {
  22751. height: math.unit(1.73, "feet"),
  22752. name: "Dick",
  22753. image: {
  22754. source: "./media/characters/lycoa/dick.svg"
  22755. }
  22756. },
  22757. },
  22758. [
  22759. {
  22760. name: "Normal",
  22761. height: math.unit(8, "feet"),
  22762. default: true
  22763. },
  22764. {
  22765. name: "Macro",
  22766. height: math.unit(30, "feet")
  22767. },
  22768. ]
  22769. ))
  22770. characterMakers.push(() => makeCharacter(
  22771. { name: "Naldara", species: ["jackalope"], tags: ["anthro", "naga"] },
  22772. {
  22773. front: {
  22774. height: math.unit(4 + 2 / 12, "feet"),
  22775. weight: math.unit(70, "lb"),
  22776. name: "Front",
  22777. image: {
  22778. source: "./media/characters/naldara/front.svg",
  22779. extra: 1664/1387,
  22780. bottom: 81/1745
  22781. },
  22782. form: "anthro",
  22783. default: true
  22784. },
  22785. naga: {
  22786. height: math.unit(20, "feet"),
  22787. weight: math.unit(15000, "kg"),
  22788. name: "Front",
  22789. image: {
  22790. source: "./media/characters/naldara/naga.svg",
  22791. extra: 1590/1396,
  22792. bottom: 285/1875
  22793. },
  22794. form: "naga",
  22795. default: true
  22796. },
  22797. },
  22798. [
  22799. {
  22800. name: "Normal",
  22801. height: math.unit(4 + 2 / 12, "feet"),
  22802. form: "anthro",
  22803. default: true
  22804. },
  22805. {
  22806. name: "Normal",
  22807. height: math.unit(20, "feet"),
  22808. form: "naga",
  22809. default: true
  22810. },
  22811. ],
  22812. {
  22813. "anthro": {
  22814. name: "Anthro",
  22815. default: true
  22816. },
  22817. "naga": {
  22818. name: "Naga"
  22819. }
  22820. }
  22821. ))
  22822. characterMakers.push(() => makeCharacter(
  22823. { name: "Briar", species: ["hyena"], tags: ["anthro"] },
  22824. {
  22825. front: {
  22826. height: math.unit(13 + 7 / 12, "feet"),
  22827. weight: math.unit(1500, "lb"),
  22828. name: "Front",
  22829. image: {
  22830. source: "./media/characters/briar/front.svg",
  22831. extra: 1223/1157,
  22832. bottom: 123/1346
  22833. }
  22834. },
  22835. },
  22836. [
  22837. {
  22838. name: "Normal",
  22839. height: math.unit(13 + 7 / 12, "feet"),
  22840. default: true
  22841. },
  22842. ]
  22843. ))
  22844. characterMakers.push(() => makeCharacter(
  22845. { name: "Vanguard", species: ["otter", "alligator"], tags: ["anthro"] },
  22846. {
  22847. side: {
  22848. height: math.unit(16, "feet"),
  22849. weight: math.unit(500, "lb"),
  22850. name: "Side",
  22851. image: {
  22852. source: "./media/characters/vanguard/side.svg",
  22853. extra: 1022/914,
  22854. bottom: 30/1052
  22855. }
  22856. },
  22857. sideAlt: {
  22858. height: math.unit(10, "feet"),
  22859. weight: math.unit(500, "lb"),
  22860. name: "Side (Alt)",
  22861. image: {
  22862. source: "./media/characters/vanguard/side-alt.svg",
  22863. extra: 502 / 425,
  22864. bottom: 0.087
  22865. }
  22866. },
  22867. },
  22868. [
  22869. {
  22870. name: "Normal",
  22871. height: math.unit(17.71, "feet"),
  22872. default: true
  22873. },
  22874. ]
  22875. ))
  22876. characterMakers.push(() => makeCharacter(
  22877. { name: "Artemis", species: ["renamon", "construct"], tags: ["anthro"] },
  22878. {
  22879. front: {
  22880. height: math.unit(7.5, "feet"),
  22881. weight: math.unit(2, "lb"),
  22882. name: "Front",
  22883. image: {
  22884. source: "./media/characters/artemis/work-safe-front.svg",
  22885. extra: 1192 / 1075,
  22886. bottom: 0.07
  22887. },
  22888. form: "work-safe",
  22889. default: true
  22890. },
  22891. frontNsfw: {
  22892. height: math.unit(7.5, "feet"),
  22893. weight: math.unit(2, "lb"),
  22894. name: "Front",
  22895. image: {
  22896. source: "./media/characters/artemis/calibrating-front.svg",
  22897. extra: 1192 / 1075,
  22898. bottom: 0.07
  22899. },
  22900. form: "calibrating",
  22901. default: true
  22902. },
  22903. frontNsfwer: {
  22904. height: math.unit(7.5, "feet"),
  22905. weight: math.unit(2, "lb"),
  22906. name: "Front",
  22907. image: {
  22908. source: "./media/characters/artemis/oversize-load-front.svg",
  22909. extra: 1192 / 1075,
  22910. bottom: 0.07
  22911. },
  22912. form: "oversize-load",
  22913. default: true
  22914. },
  22915. side: {
  22916. height: math.unit(7.5, "feet"),
  22917. weight: math.unit(2, "lb"),
  22918. name: "Side",
  22919. image: {
  22920. source: "./media/characters/artemis/work-safe-side.svg",
  22921. extra: 1192 / 1075,
  22922. bottom: 0.07
  22923. },
  22924. form: "work-safe"
  22925. },
  22926. sideNsfw: {
  22927. height: math.unit(7.5, "feet"),
  22928. weight: math.unit(2, "lb"),
  22929. name: "Side",
  22930. image: {
  22931. source: "./media/characters/artemis/calibrating-side.svg",
  22932. extra: 1192 / 1075,
  22933. bottom: 0.07
  22934. },
  22935. form: "calibrating"
  22936. },
  22937. sideNsfwer: {
  22938. height: math.unit(7.5, "feet"),
  22939. weight: math.unit(2, "lb"),
  22940. name: "Side",
  22941. image: {
  22942. source: "./media/characters/artemis/oversize-load-side.svg",
  22943. extra: 1192 / 1075,
  22944. bottom: 0.07
  22945. },
  22946. form: "oversize-load"
  22947. },
  22948. maw: {
  22949. height: math.unit(1.1, "feet"),
  22950. name: "Maw",
  22951. image: {
  22952. source: "./media/characters/artemis/maw.svg"
  22953. },
  22954. form: "work-safe"
  22955. },
  22956. stomach: {
  22957. height: math.unit(0.95, "feet"),
  22958. name: "Stomach",
  22959. image: {
  22960. source: "./media/characters/artemis/stomach.svg"
  22961. },
  22962. form: "work-safe"
  22963. },
  22964. dickCanine: {
  22965. height: math.unit(1, "feet"),
  22966. name: "Dick (Canine)",
  22967. image: {
  22968. source: "./media/characters/artemis/dick-canine.svg"
  22969. },
  22970. form: "calibrating"
  22971. },
  22972. dickEquine: {
  22973. height: math.unit(0.85, "feet"),
  22974. name: "Dick (Equine)",
  22975. image: {
  22976. source: "./media/characters/artemis/dick-equine.svg"
  22977. },
  22978. form: "calibrating"
  22979. },
  22980. dickExotic: {
  22981. height: math.unit(0.85, "feet"),
  22982. name: "Dick (Exotic)",
  22983. image: {
  22984. source: "./media/characters/artemis/dick-exotic.svg"
  22985. },
  22986. form: "calibrating"
  22987. },
  22988. dickCanineBigger: {
  22989. height: math.unit(1 * 1.33, "feet"),
  22990. name: "Dick (Canine)",
  22991. image: {
  22992. source: "./media/characters/artemis/dick-canine.svg"
  22993. },
  22994. form: "oversize-load"
  22995. },
  22996. dickEquineBigger: {
  22997. height: math.unit(0.85 * 1.33, "feet"),
  22998. name: "Dick (Equine)",
  22999. image: {
  23000. source: "./media/characters/artemis/dick-equine.svg"
  23001. },
  23002. form: "oversize-load"
  23003. },
  23004. dickExoticBigger: {
  23005. height: math.unit(0.85 * 1.33, "feet"),
  23006. name: "Dick (Exotic)",
  23007. image: {
  23008. source: "./media/characters/artemis/dick-exotic.svg"
  23009. },
  23010. form: "oversize-load"
  23011. },
  23012. },
  23013. [
  23014. {
  23015. name: "Normal",
  23016. height: math.unit(7.5, "feet"),
  23017. form: "work-safe",
  23018. default: true
  23019. },
  23020. {
  23021. name: "Normal",
  23022. height: math.unit(7.5, "feet"),
  23023. form: "calibrating",
  23024. default: true
  23025. },
  23026. {
  23027. name: "Normal",
  23028. height: math.unit(7.5, "feet"),
  23029. form: "oversize-load",
  23030. default: true
  23031. },
  23032. {
  23033. name: "Enlarged",
  23034. height: math.unit(12, "feet"),
  23035. form: "work-safe",
  23036. },
  23037. {
  23038. name: "Enlarged",
  23039. height: math.unit(12, "feet"),
  23040. form: "calibrating",
  23041. },
  23042. {
  23043. name: "Enlarged",
  23044. height: math.unit(12, "feet"),
  23045. form: "oversize-load",
  23046. },
  23047. ],
  23048. {
  23049. "work-safe": {
  23050. name: "Work-Safe",
  23051. default: true
  23052. },
  23053. "calibrating": {
  23054. name: "Calibrating"
  23055. },
  23056. "oversize-load": {
  23057. name: "Oversize Load"
  23058. }
  23059. }
  23060. ))
  23061. characterMakers.push(() => makeCharacter(
  23062. { name: "Kira", species: ["fluudrani"], tags: ["anthro"] },
  23063. {
  23064. front: {
  23065. height: math.unit(5 + 3 / 12, "feet"),
  23066. weight: math.unit(160, "lb"),
  23067. name: "Front",
  23068. image: {
  23069. source: "./media/characters/kira/front.svg",
  23070. extra: 906 / 786,
  23071. bottom: 0.01
  23072. }
  23073. },
  23074. back: {
  23075. height: math.unit(5 + 3 / 12, "feet"),
  23076. weight: math.unit(160, "lb"),
  23077. name: "Back",
  23078. image: {
  23079. source: "./media/characters/kira/back.svg",
  23080. extra: 882 / 757,
  23081. bottom: 0.005
  23082. }
  23083. },
  23084. frontDressed: {
  23085. height: math.unit(5 + 3 / 12, "feet"),
  23086. weight: math.unit(160, "lb"),
  23087. name: "Front (Dressed)",
  23088. image: {
  23089. source: "./media/characters/kira/front-dressed.svg",
  23090. extra: 906 / 786,
  23091. bottom: 0.01
  23092. }
  23093. },
  23094. beans: {
  23095. height: math.unit(0.92, "feet"),
  23096. name: "Beans",
  23097. image: {
  23098. source: "./media/characters/kira/beans.svg"
  23099. }
  23100. },
  23101. },
  23102. [
  23103. {
  23104. name: "Normal",
  23105. height: math.unit(5 + 3 / 12, "feet"),
  23106. default: true
  23107. },
  23108. ]
  23109. ))
  23110. characterMakers.push(() => makeCharacter(
  23111. { name: "Scramble", species: ["surkanu"], tags: ["anthro"] },
  23112. {
  23113. front: {
  23114. height: math.unit(5 + 4 / 12, "feet"),
  23115. weight: math.unit(145, "lb"),
  23116. name: "Front",
  23117. image: {
  23118. source: "./media/characters/scramble/front.svg",
  23119. extra: 763 / 727,
  23120. bottom: 0.05
  23121. }
  23122. },
  23123. back: {
  23124. height: math.unit(5 + 4 / 12, "feet"),
  23125. weight: math.unit(145, "lb"),
  23126. name: "Back",
  23127. image: {
  23128. source: "./media/characters/scramble/back.svg",
  23129. extra: 826 / 737,
  23130. bottom: 0.002
  23131. }
  23132. },
  23133. },
  23134. [
  23135. {
  23136. name: "Normal",
  23137. height: math.unit(5 + 4 / 12, "feet"),
  23138. default: true
  23139. },
  23140. ]
  23141. ))
  23142. characterMakers.push(() => makeCharacter(
  23143. { name: "Biscuit", species: ["surkanu"], tags: ["anthro"] },
  23144. {
  23145. side: {
  23146. height: math.unit(6 + 2 / 12, "feet"),
  23147. weight: math.unit(190, "lb"),
  23148. name: "Side",
  23149. image: {
  23150. source: "./media/characters/biscuit/side.svg",
  23151. extra: 858 / 791,
  23152. bottom: 0.044
  23153. }
  23154. },
  23155. },
  23156. [
  23157. {
  23158. name: "Normal",
  23159. height: math.unit(6 + 2 / 12, "feet"),
  23160. default: true
  23161. },
  23162. ]
  23163. ))
  23164. characterMakers.push(() => makeCharacter(
  23165. { name: "Poffin", species: ["kiiasi"], tags: ["anthro"] },
  23166. {
  23167. front: {
  23168. height: math.unit(5 + 2 / 12, "feet"),
  23169. weight: math.unit(120, "lb"),
  23170. name: "Front",
  23171. image: {
  23172. source: "./media/characters/poffin/front.svg",
  23173. extra: 786 / 680,
  23174. bottom: 0.005
  23175. }
  23176. },
  23177. },
  23178. [
  23179. {
  23180. name: "Normal",
  23181. height: math.unit(5 + 2 / 12, "feet"),
  23182. default: true
  23183. },
  23184. ]
  23185. ))
  23186. characterMakers.push(() => makeCharacter(
  23187. { name: "Dhari", species: ["werewolf", "fennec-fox"], tags: ["anthro"] },
  23188. {
  23189. front: {
  23190. height: math.unit(6 + 3 / 12, "feet"),
  23191. weight: math.unit(519, "lb"),
  23192. name: "Front",
  23193. image: {
  23194. source: "./media/characters/dhari/front.svg",
  23195. extra: 1048 / 946,
  23196. bottom: 0.015
  23197. }
  23198. },
  23199. back: {
  23200. height: math.unit(6 + 3 / 12, "feet"),
  23201. weight: math.unit(519, "lb"),
  23202. name: "Back",
  23203. image: {
  23204. source: "./media/characters/dhari/back.svg",
  23205. extra: 1048 / 931,
  23206. bottom: 0.005
  23207. }
  23208. },
  23209. frontDressed: {
  23210. height: math.unit(6 + 3 / 12, "feet"),
  23211. weight: math.unit(519, "lb"),
  23212. name: "Front (Dressed)",
  23213. image: {
  23214. source: "./media/characters/dhari/front-dressed.svg",
  23215. extra: 1713 / 1546,
  23216. bottom: 0.02
  23217. }
  23218. },
  23219. backDressed: {
  23220. height: math.unit(6 + 3 / 12, "feet"),
  23221. weight: math.unit(519, "lb"),
  23222. name: "Back (Dressed)",
  23223. image: {
  23224. source: "./media/characters/dhari/back-dressed.svg",
  23225. extra: 1699 / 1537,
  23226. bottom: 0.01
  23227. }
  23228. },
  23229. maw: {
  23230. height: math.unit(0.95, "feet"),
  23231. name: "Maw",
  23232. image: {
  23233. source: "./media/characters/dhari/maw.svg"
  23234. }
  23235. },
  23236. wereFront: {
  23237. height: math.unit(12 + 8 / 12, "feet"),
  23238. weight: math.unit(4000, "lb"),
  23239. name: "Front (Were)",
  23240. image: {
  23241. source: "./media/characters/dhari/were-front.svg",
  23242. extra: 1065 / 969,
  23243. bottom: 0.015
  23244. }
  23245. },
  23246. wereBack: {
  23247. height: math.unit(12 + 8 / 12, "feet"),
  23248. weight: math.unit(4000, "lb"),
  23249. name: "Back (Were)",
  23250. image: {
  23251. source: "./media/characters/dhari/were-back.svg",
  23252. extra: 1065 / 969,
  23253. bottom: 0.012
  23254. }
  23255. },
  23256. wereMaw: {
  23257. height: math.unit(0.625, "meters"),
  23258. name: "Maw (Were)",
  23259. image: {
  23260. source: "./media/characters/dhari/were-maw.svg"
  23261. }
  23262. },
  23263. },
  23264. [
  23265. {
  23266. name: "Normal",
  23267. height: math.unit(6 + 3 / 12, "feet"),
  23268. default: true
  23269. },
  23270. ]
  23271. ))
  23272. characterMakers.push(() => makeCharacter(
  23273. { name: "Rena Dyne", species: ["sabertooth-tiger"], tags: ["anthro"] },
  23274. {
  23275. anthro: {
  23276. height: math.unit(5 + 7 / 12, "feet"),
  23277. weight: math.unit(175, "lb"),
  23278. name: "Anthro",
  23279. image: {
  23280. source: "./media/characters/rena-dyne/anthro.svg",
  23281. extra: 1849 / 1785,
  23282. bottom: 0.005
  23283. }
  23284. },
  23285. taur: {
  23286. height: math.unit(15 + 6 / 12, "feet"),
  23287. weight: math.unit(8000, "lb"),
  23288. name: "Taur",
  23289. image: {
  23290. source: "./media/characters/rena-dyne/taur.svg",
  23291. extra: 2315 / 2234,
  23292. bottom: 0.033
  23293. }
  23294. },
  23295. },
  23296. [
  23297. {
  23298. name: "Normal",
  23299. height: math.unit(5 + 7 / 12, "feet"),
  23300. default: true
  23301. },
  23302. ]
  23303. ))
  23304. characterMakers.push(() => makeCharacter(
  23305. { name: "Weremeep", species: ["monster"], tags: ["anthro"] },
  23306. {
  23307. front: {
  23308. height: math.unit(8, "feet"),
  23309. weight: math.unit(600, "lb"),
  23310. name: "Front",
  23311. image: {
  23312. source: "./media/characters/weremeep/front.svg",
  23313. extra: 970/849,
  23314. bottom: 7/977
  23315. }
  23316. },
  23317. },
  23318. [
  23319. {
  23320. name: "Normal",
  23321. height: math.unit(8, "feet"),
  23322. default: true
  23323. },
  23324. {
  23325. name: "Lorg",
  23326. height: math.unit(12, "feet")
  23327. },
  23328. {
  23329. name: "Oh Lawd She Comin'",
  23330. height: math.unit(20, "feet")
  23331. },
  23332. ]
  23333. ))
  23334. characterMakers.push(() => makeCharacter(
  23335. { name: "Reza", species: ["cat", "dragon"], tags: ["anthro", "feral"] },
  23336. {
  23337. front: {
  23338. height: math.unit(4, "feet"),
  23339. weight: math.unit(90, "lb"),
  23340. name: "Front",
  23341. image: {
  23342. source: "./media/characters/reza/front.svg",
  23343. extra: 1183 / 1111,
  23344. bottom: 0.017
  23345. }
  23346. },
  23347. back: {
  23348. height: math.unit(4, "feet"),
  23349. weight: math.unit(90, "lb"),
  23350. name: "Back",
  23351. image: {
  23352. source: "./media/characters/reza/back.svg",
  23353. extra: 1183 / 1111,
  23354. bottom: 0.01
  23355. }
  23356. },
  23357. drake: {
  23358. height: math.unit(30, "feet"),
  23359. weight: math.unit(246960, "lb"),
  23360. name: "Drake",
  23361. image: {
  23362. source: "./media/characters/reza/drake.svg",
  23363. extra: 2350 / 2024,
  23364. bottom: 60.7 / 2403
  23365. }
  23366. },
  23367. },
  23368. [
  23369. {
  23370. name: "Normal",
  23371. height: math.unit(4, "feet"),
  23372. default: true
  23373. },
  23374. ]
  23375. ))
  23376. characterMakers.push(() => makeCharacter(
  23377. { name: "Athea", species: ["leopard"], tags: ["taur"] },
  23378. {
  23379. side: {
  23380. height: math.unit(15, "feet"),
  23381. weight: math.unit(14, "tons"),
  23382. name: "Side",
  23383. image: {
  23384. source: "./media/characters/athea/side.svg",
  23385. extra: 960 / 540,
  23386. bottom: 0.003
  23387. }
  23388. },
  23389. sitting: {
  23390. height: math.unit(6 * 2.85, "feet"),
  23391. weight: math.unit(14, "tons"),
  23392. name: "Sitting",
  23393. image: {
  23394. source: "./media/characters/athea/sitting.svg",
  23395. extra: 621 / 581,
  23396. bottom: 0.075
  23397. }
  23398. },
  23399. maw: {
  23400. height: math.unit(7.59498031496063, "feet"),
  23401. name: "Maw",
  23402. image: {
  23403. source: "./media/characters/athea/maw.svg"
  23404. }
  23405. },
  23406. },
  23407. [
  23408. {
  23409. name: "Lap Cat",
  23410. height: math.unit(2.5, "feet")
  23411. },
  23412. {
  23413. name: "Minimacro",
  23414. height: math.unit(15, "feet"),
  23415. default: true
  23416. },
  23417. {
  23418. name: "Macro",
  23419. height: math.unit(120, "feet")
  23420. },
  23421. {
  23422. name: "Macro+",
  23423. height: math.unit(640, "feet")
  23424. },
  23425. {
  23426. name: "Colossus",
  23427. height: math.unit(2.2, "miles")
  23428. },
  23429. ]
  23430. ))
  23431. characterMakers.push(() => makeCharacter(
  23432. { name: "Seroko", species: ["je-stoff-drachen"], tags: ["anthro"] },
  23433. {
  23434. front: {
  23435. height: math.unit(8 + 8 / 12, "feet"),
  23436. weight: math.unit(130, "kg"),
  23437. name: "Front",
  23438. image: {
  23439. source: "./media/characters/seroko/front.svg",
  23440. extra: 1385 / 1280,
  23441. bottom: 0.025
  23442. }
  23443. },
  23444. back: {
  23445. height: math.unit(8 + 8 / 12, "feet"),
  23446. weight: math.unit(130, "kg"),
  23447. name: "Back",
  23448. image: {
  23449. source: "./media/characters/seroko/back.svg",
  23450. extra: 1369 / 1238,
  23451. bottom: 0.018
  23452. }
  23453. },
  23454. frontDressed: {
  23455. height: math.unit(8 + 8 / 12, "feet"),
  23456. weight: math.unit(130, "kg"),
  23457. name: "Front (Dressed)",
  23458. image: {
  23459. source: "./media/characters/seroko/front-dressed.svg",
  23460. extra: 1366 / 1275,
  23461. bottom: 0.03
  23462. }
  23463. },
  23464. },
  23465. [
  23466. {
  23467. name: "Normal",
  23468. height: math.unit(8 + 8 / 12, "feet"),
  23469. default: true
  23470. },
  23471. ]
  23472. ))
  23473. characterMakers.push(() => makeCharacter(
  23474. { name: "Quatzi", species: ["river-snaptail"], tags: ["anthro"] },
  23475. {
  23476. front: {
  23477. height: math.unit(5.5, "feet"),
  23478. weight: math.unit(160, "lb"),
  23479. name: "Front",
  23480. image: {
  23481. source: "./media/characters/quatzi/front.svg",
  23482. extra: 2346 / 2242,
  23483. bottom: 0.015
  23484. }
  23485. },
  23486. },
  23487. [
  23488. {
  23489. name: "Normal",
  23490. height: math.unit(5.5, "feet"),
  23491. default: true
  23492. },
  23493. {
  23494. name: "Big",
  23495. height: math.unit(7.7, "feet")
  23496. },
  23497. ]
  23498. ))
  23499. characterMakers.push(() => makeCharacter(
  23500. { name: "Sen", species: ["red-panda"], tags: ["anthro"] },
  23501. {
  23502. front: {
  23503. height: math.unit(5 + 11 / 12, "feet"),
  23504. weight: math.unit(180, "lb"),
  23505. name: "Front",
  23506. image: {
  23507. source: "./media/characters/sen/front.svg",
  23508. extra: 1321 / 1254,
  23509. bottom: 0.015
  23510. }
  23511. },
  23512. side: {
  23513. height: math.unit(5 + 11 / 12, "feet"),
  23514. weight: math.unit(180, "lb"),
  23515. name: "Side",
  23516. image: {
  23517. source: "./media/characters/sen/side.svg",
  23518. extra: 1321 / 1254,
  23519. bottom: 0.007
  23520. }
  23521. },
  23522. back: {
  23523. height: math.unit(5 + 11 / 12, "feet"),
  23524. weight: math.unit(180, "lb"),
  23525. name: "Back",
  23526. image: {
  23527. source: "./media/characters/sen/back.svg",
  23528. extra: 1321 / 1254
  23529. }
  23530. },
  23531. },
  23532. [
  23533. {
  23534. name: "Normal",
  23535. height: math.unit(5 + 11 / 12, "feet"),
  23536. default: true
  23537. },
  23538. ]
  23539. ))
  23540. characterMakers.push(() => makeCharacter(
  23541. { name: "Fruity", species: ["sylveon"], tags: ["anthro"] },
  23542. {
  23543. front: {
  23544. height: math.unit(166.6, "cm"),
  23545. weight: math.unit(66.6, "kg"),
  23546. name: "Front",
  23547. image: {
  23548. source: "./media/characters/fruity/front.svg",
  23549. extra: 1510 / 1386,
  23550. bottom: 0.04
  23551. }
  23552. },
  23553. back: {
  23554. height: math.unit(166.6, "cm"),
  23555. weight: math.unit(66.6, "lb"),
  23556. name: "Back",
  23557. image: {
  23558. source: "./media/characters/fruity/back.svg",
  23559. extra: 1563 / 1435,
  23560. bottom: 0.005
  23561. }
  23562. },
  23563. },
  23564. [
  23565. {
  23566. name: "Normal",
  23567. height: math.unit(166.6, "cm"),
  23568. default: true
  23569. },
  23570. {
  23571. name: "Demonic",
  23572. height: math.unit(166.6, "feet")
  23573. },
  23574. ]
  23575. ))
  23576. characterMakers.push(() => makeCharacter(
  23577. { name: "Zost", species: ["monster"], tags: ["anthro"] },
  23578. {
  23579. side: {
  23580. height: math.unit(10, "feet"),
  23581. weight: math.unit(500, "lb"),
  23582. name: "Side",
  23583. image: {
  23584. source: "./media/characters/zost/side.svg",
  23585. extra: 2870/2533,
  23586. bottom: 252/3122
  23587. }
  23588. },
  23589. mawFront: {
  23590. height: math.unit(1.08, "meters"),
  23591. name: "Maw (Front)",
  23592. image: {
  23593. source: "./media/characters/zost/maw-front.svg"
  23594. }
  23595. },
  23596. mawSide: {
  23597. height: math.unit(2.66, "feet"),
  23598. name: "Maw (Side)",
  23599. image: {
  23600. source: "./media/characters/zost/maw-side.svg"
  23601. }
  23602. },
  23603. wingspan: {
  23604. height: math.unit(7.4, "feet"),
  23605. name: "Wingspan",
  23606. image: {
  23607. source: "./media/characters/zost/wingspan.svg"
  23608. }
  23609. },
  23610. },
  23611. [
  23612. {
  23613. name: "Normal",
  23614. height: math.unit(10, "feet"),
  23615. default: true
  23616. },
  23617. ]
  23618. ))
  23619. characterMakers.push(() => makeCharacter(
  23620. { name: "Luci", species: ["hellhound"], tags: ["anthro"] },
  23621. {
  23622. front: {
  23623. height: math.unit(5 + 4 / 12, "feet"),
  23624. weight: math.unit(120, "lb"),
  23625. name: "Front",
  23626. image: {
  23627. source: "./media/characters/luci/front.svg",
  23628. extra: 1985 / 1884,
  23629. bottom: 0.04
  23630. }
  23631. },
  23632. back: {
  23633. height: math.unit(5 + 4 / 12, "feet"),
  23634. weight: math.unit(120, "lb"),
  23635. name: "Back",
  23636. image: {
  23637. source: "./media/characters/luci/back.svg",
  23638. extra: 1892 / 1791,
  23639. bottom: 0.002
  23640. }
  23641. },
  23642. },
  23643. [
  23644. {
  23645. name: "Normal",
  23646. height: math.unit(5 + 4 / 12, "feet"),
  23647. default: true
  23648. },
  23649. ]
  23650. ))
  23651. characterMakers.push(() => makeCharacter(
  23652. { name: "2th", species: ["monster"], tags: ["anthro"] },
  23653. {
  23654. front: {
  23655. height: math.unit(1500, "feet"),
  23656. weight: math.unit(3.8e6, "tons"),
  23657. name: "Front",
  23658. image: {
  23659. source: "./media/characters/2th/front.svg",
  23660. extra: 3489 / 3350,
  23661. bottom: 0.1
  23662. }
  23663. },
  23664. foot: {
  23665. height: math.unit(461, "feet"),
  23666. name: "Foot",
  23667. image: {
  23668. source: "./media/characters/2th/foot.svg"
  23669. }
  23670. },
  23671. },
  23672. [
  23673. {
  23674. name: "\"Micro\"",
  23675. height: math.unit(15 + 7 / 12, "feet")
  23676. },
  23677. {
  23678. name: "Normal",
  23679. height: math.unit(1500, "feet"),
  23680. default: true
  23681. },
  23682. {
  23683. name: "Macro",
  23684. height: math.unit(5000, "feet")
  23685. },
  23686. {
  23687. name: "Megamacro",
  23688. height: math.unit(15, "miles")
  23689. },
  23690. {
  23691. name: "Gigamacro",
  23692. height: math.unit(4000, "miles")
  23693. },
  23694. {
  23695. name: "Galactic",
  23696. height: math.unit(50, "AU")
  23697. },
  23698. ]
  23699. ))
  23700. characterMakers.push(() => makeCharacter(
  23701. { name: "Amethyst", species: ["snow-leopard"], tags: ["anthro"] },
  23702. {
  23703. front: {
  23704. height: math.unit(5 + 6 / 12, "feet"),
  23705. weight: math.unit(220, "lb"),
  23706. name: "Front",
  23707. image: {
  23708. source: "./media/characters/amethyst/front.svg",
  23709. extra: 2078 / 2040,
  23710. bottom: 0.045
  23711. }
  23712. },
  23713. back: {
  23714. height: math.unit(5 + 6 / 12, "feet"),
  23715. weight: math.unit(220, "lb"),
  23716. name: "Back",
  23717. image: {
  23718. source: "./media/characters/amethyst/back.svg",
  23719. extra: 2021 / 1989,
  23720. bottom: 0.02
  23721. }
  23722. },
  23723. },
  23724. [
  23725. {
  23726. name: "Normal",
  23727. height: math.unit(5 + 6 / 12, "feet"),
  23728. default: true
  23729. },
  23730. ]
  23731. ))
  23732. characterMakers.push(() => makeCharacter(
  23733. { name: "Yumi Akiyama", species: ["border-collie"], tags: ["anthro"] },
  23734. {
  23735. front: {
  23736. height: math.unit(4 + 11 / 12, "feet"),
  23737. weight: math.unit(120, "lb"),
  23738. name: "Front",
  23739. image: {
  23740. source: "./media/characters/yumi-akiyama/front.svg",
  23741. extra: 2638/2432,
  23742. bottom: 70/2708
  23743. }
  23744. },
  23745. back: {
  23746. height: math.unit(4 + 11 / 12, "feet"),
  23747. weight: math.unit(120, "lb"),
  23748. name: "Back",
  23749. image: {
  23750. source: "./media/characters/yumi-akiyama/back.svg",
  23751. extra: 2502/2397,
  23752. bottom: 80/2582
  23753. }
  23754. },
  23755. casual: {
  23756. height: math.unit(4 + 11 / 12, "feet"),
  23757. weight: math.unit(120, "lb"),
  23758. name: "Casual",
  23759. image: {
  23760. source: "./media/characters/yumi-akiyama/casual.svg",
  23761. extra: 958/887,
  23762. bottom: 41/999
  23763. }
  23764. },
  23765. jammies: {
  23766. height: math.unit(4 + 11 / 12, "feet"),
  23767. weight: math.unit(120, "lb"),
  23768. name: "Jammies",
  23769. image: {
  23770. source: "./media/characters/yumi-akiyama/jammies.svg",
  23771. extra: 958/894,
  23772. bottom: 37/995
  23773. }
  23774. },
  23775. warmWeather: {
  23776. height: math.unit(4 + 11 / 12, "feet"),
  23777. weight: math.unit(120, "lb"),
  23778. name: "Warm Weather",
  23779. image: {
  23780. source: "./media/characters/yumi-akiyama/warm-weather.svg",
  23781. extra: 929/865,
  23782. bottom: 76/1005
  23783. }
  23784. },
  23785. mouth: {
  23786. height: math.unit(0.35, "feet"),
  23787. name: "Mouth",
  23788. image: {
  23789. source: "./media/characters/yumi-akiyama/mouth.svg"
  23790. }
  23791. },
  23792. paws: {
  23793. height: math.unit(1.05, "feet"),
  23794. name: "Paws",
  23795. image: {
  23796. source: "./media/characters/yumi-akiyama/paws.svg"
  23797. }
  23798. },
  23799. cockRing: {
  23800. height: math.unit(0.225, "feet"),
  23801. name: "Cock Ring",
  23802. image: {
  23803. source: "./media/characters/yumi-akiyama/cock-ring.svg"
  23804. }
  23805. },
  23806. },
  23807. [
  23808. {
  23809. name: "Galactic",
  23810. height: math.unit(50, "galaxies"),
  23811. default: true
  23812. },
  23813. {
  23814. name: "Universal",
  23815. height: math.unit(100, "universes")
  23816. },
  23817. ]
  23818. ))
  23819. characterMakers.push(() => makeCharacter(
  23820. { name: "Rifter Yrmori", species: ["vendeilen"], tags: ["anthro"] },
  23821. {
  23822. front: {
  23823. height: math.unit(8, "feet"),
  23824. weight: math.unit(500, "lb"),
  23825. name: "Front",
  23826. image: {
  23827. source: "./media/characters/rifter-yrmori/front.svg",
  23828. extra: 1180 / 1125,
  23829. bottom: 0.02
  23830. }
  23831. },
  23832. back: {
  23833. height: math.unit(8, "feet"),
  23834. weight: math.unit(500, "lb"),
  23835. name: "Back",
  23836. image: {
  23837. source: "./media/characters/rifter-yrmori/back.svg",
  23838. extra: 1190 / 1145,
  23839. bottom: 0.001
  23840. }
  23841. },
  23842. wings: {
  23843. height: math.unit(7.75, "feet"),
  23844. weight: math.unit(500, "lb"),
  23845. name: "Wings",
  23846. image: {
  23847. source: "./media/characters/rifter-yrmori/wings.svg",
  23848. extra: 1357 / 1285
  23849. }
  23850. },
  23851. maw: {
  23852. height: math.unit(0.8, "feet"),
  23853. name: "Maw",
  23854. image: {
  23855. source: "./media/characters/rifter-yrmori/maw.svg"
  23856. }
  23857. },
  23858. mawfront: {
  23859. height: math.unit(1.45, "feet"),
  23860. name: "Maw (Front)",
  23861. image: {
  23862. source: "./media/characters/rifter-yrmori/maw-front.svg"
  23863. }
  23864. },
  23865. },
  23866. [
  23867. {
  23868. name: "Normal",
  23869. height: math.unit(8, "feet"),
  23870. default: true
  23871. },
  23872. {
  23873. name: "Macro",
  23874. height: math.unit(42, "meters")
  23875. },
  23876. ]
  23877. ))
  23878. characterMakers.push(() => makeCharacter(
  23879. { name: "Tahajin", species: ["werebeast", "monster", "star-warrior", "fluudrani", "fish", "snake", "construct", "demi"], tags: ["anthro", "naga"] },
  23880. {
  23881. were: {
  23882. height: math.unit(25 + 6 / 12, "feet"),
  23883. weight: math.unit(10000, "lb"),
  23884. name: "Were",
  23885. image: {
  23886. source: "./media/characters/tahajin/were.svg",
  23887. extra: 801 / 770,
  23888. bottom: 0.042
  23889. }
  23890. },
  23891. aquatic: {
  23892. height: math.unit(6 + 4 / 12, "feet"),
  23893. weight: math.unit(160, "lb"),
  23894. name: "Aquatic",
  23895. image: {
  23896. source: "./media/characters/tahajin/aquatic.svg",
  23897. extra: 572 / 542,
  23898. bottom: 0.04
  23899. }
  23900. },
  23901. chow: {
  23902. height: math.unit(8 + 11 / 12, "feet"),
  23903. weight: math.unit(450, "lb"),
  23904. name: "Chow",
  23905. image: {
  23906. source: "./media/characters/tahajin/chow.svg",
  23907. extra: 660 / 640,
  23908. bottom: 0.015
  23909. }
  23910. },
  23911. demiNaga: {
  23912. height: math.unit(6 + 8 / 12, "feet"),
  23913. weight: math.unit(300, "lb"),
  23914. name: "Demi Naga",
  23915. image: {
  23916. source: "./media/characters/tahajin/demi-naga.svg",
  23917. extra: 643 / 615,
  23918. bottom: 0.1
  23919. }
  23920. },
  23921. data: {
  23922. height: math.unit(5, "inches"),
  23923. weight: math.unit(0.1, "lb"),
  23924. name: "Data",
  23925. image: {
  23926. source: "./media/characters/tahajin/data.svg"
  23927. }
  23928. },
  23929. fluu: {
  23930. height: math.unit(5 + 7 / 12, "feet"),
  23931. weight: math.unit(140, "lb"),
  23932. name: "Fluu",
  23933. image: {
  23934. source: "./media/characters/tahajin/fluu.svg",
  23935. extra: 628 / 592,
  23936. bottom: 0.02
  23937. }
  23938. },
  23939. starWarrior: {
  23940. height: math.unit(4 + 5 / 12, "feet"),
  23941. weight: math.unit(50, "lb"),
  23942. name: "Star Warrior",
  23943. image: {
  23944. source: "./media/characters/tahajin/star-warrior.svg"
  23945. }
  23946. },
  23947. },
  23948. [
  23949. {
  23950. name: "Normal",
  23951. height: math.unit(25 + 6 / 12, "feet"),
  23952. default: true
  23953. },
  23954. ]
  23955. ))
  23956. characterMakers.push(() => makeCharacter(
  23957. { name: "Gabira", species: ["weasel", "monster"], tags: ["anthro"] },
  23958. {
  23959. front: {
  23960. height: math.unit(8, "feet"),
  23961. weight: math.unit(350, "lb"),
  23962. name: "Front",
  23963. image: {
  23964. source: "./media/characters/gabira/front.svg",
  23965. extra: 1261/1154,
  23966. bottom: 51/1312
  23967. }
  23968. },
  23969. back: {
  23970. height: math.unit(8, "feet"),
  23971. weight: math.unit(350, "lb"),
  23972. name: "Back",
  23973. image: {
  23974. source: "./media/characters/gabira/back.svg",
  23975. extra: 1265/1163,
  23976. bottom: 46/1311
  23977. }
  23978. },
  23979. head: {
  23980. height: math.unit(2.85, "feet"),
  23981. name: "Head",
  23982. image: {
  23983. source: "./media/characters/gabira/head.svg"
  23984. }
  23985. },
  23986. },
  23987. [
  23988. {
  23989. name: "Normal",
  23990. height: math.unit(8, "feet"),
  23991. default: true
  23992. },
  23993. ]
  23994. ))
  23995. characterMakers.push(() => makeCharacter(
  23996. { name: "Sasha Katraine", species: ["clouded-leopard"], tags: ["anthro"] },
  23997. {
  23998. front: {
  23999. height: math.unit(5 + 3 / 12, "feet"),
  24000. weight: math.unit(137, "lb"),
  24001. name: "Front",
  24002. image: {
  24003. source: "./media/characters/sasha-katraine/front.svg",
  24004. extra: 1745/1694,
  24005. bottom: 37/1782
  24006. }
  24007. },
  24008. back: {
  24009. height: math.unit(5 + 3 / 12, "feet"),
  24010. weight: math.unit(137, "lb"),
  24011. name: "Back",
  24012. image: {
  24013. source: "./media/characters/sasha-katraine/back.svg",
  24014. extra: 1776/1699,
  24015. bottom: 26/1802
  24016. }
  24017. },
  24018. },
  24019. [
  24020. {
  24021. name: "Micro",
  24022. height: math.unit(5, "inches")
  24023. },
  24024. {
  24025. name: "Normal",
  24026. height: math.unit(5 + 3 / 12, "feet"),
  24027. default: true
  24028. },
  24029. ]
  24030. ))
  24031. characterMakers.push(() => makeCharacter(
  24032. { name: "Der", species: ["gryphon"], tags: ["anthro"] },
  24033. {
  24034. side: {
  24035. height: math.unit(4, "inches"),
  24036. weight: math.unit(200, "grams"),
  24037. name: "Side",
  24038. image: {
  24039. source: "./media/characters/der/side.svg",
  24040. extra: 719 / 400,
  24041. bottom: 30.6 / 749.9187
  24042. }
  24043. },
  24044. },
  24045. [
  24046. {
  24047. name: "Micro",
  24048. height: math.unit(4, "inches"),
  24049. default: true
  24050. },
  24051. ]
  24052. ))
  24053. characterMakers.push(() => makeCharacter(
  24054. { name: "Fixerdragon", species: ["dragon"], tags: ["feral"] },
  24055. {
  24056. side: {
  24057. height: math.unit(30, "meters"),
  24058. weight: math.unit(700, "tonnes"),
  24059. name: "Side",
  24060. image: {
  24061. source: "./media/characters/fixerdragon/side.svg",
  24062. extra: (1293.0514 - 116.03) / 1106.86,
  24063. bottom: 116.03 / 1293.0514
  24064. }
  24065. },
  24066. },
  24067. [
  24068. {
  24069. name: "Planck",
  24070. height: math.unit(1.6e-35, "meters")
  24071. },
  24072. {
  24073. name: "Micro",
  24074. height: math.unit(0.4, "meters")
  24075. },
  24076. {
  24077. name: "Normal",
  24078. height: math.unit(30, "meters"),
  24079. default: true
  24080. },
  24081. {
  24082. name: "Megamacro",
  24083. height: math.unit(1.2, "megameters")
  24084. },
  24085. {
  24086. name: "Teramacro",
  24087. height: math.unit(130, "terameters")
  24088. },
  24089. {
  24090. name: "Yottamacro",
  24091. height: math.unit(6200, "yottameters")
  24092. },
  24093. ]
  24094. ));
  24095. characterMakers.push(() => makeCharacter(
  24096. { name: "Kite", species: ["sergal"], tags: ["anthro"] },
  24097. {
  24098. front: {
  24099. height: math.unit(8, "feet"),
  24100. weight: math.unit(250, "lb"),
  24101. name: "Front",
  24102. image: {
  24103. source: "./media/characters/kite/front.svg",
  24104. extra: 2796 / 2659,
  24105. bottom: 0.002
  24106. }
  24107. },
  24108. },
  24109. [
  24110. {
  24111. name: "Normal",
  24112. height: math.unit(8, "feet"),
  24113. default: true
  24114. },
  24115. {
  24116. name: "Macro",
  24117. height: math.unit(360, "feet")
  24118. },
  24119. {
  24120. name: "Megamacro",
  24121. height: math.unit(1500, "feet")
  24122. },
  24123. ]
  24124. ))
  24125. characterMakers.push(() => makeCharacter(
  24126. { name: "Poojawa Vynar", species: ["sabresune"], tags: ["anthro"] },
  24127. {
  24128. anthro_front: {
  24129. height: math.unit(5 + 11/12, "feet"),
  24130. weight: math.unit(170, "lb"),
  24131. name: "Front",
  24132. image: {
  24133. source: "./media/characters/poojawa-vynar/anthro-front.svg",
  24134. extra: 1735/1585,
  24135. bottom: 96/1831
  24136. },
  24137. form: "anthro",
  24138. default: true
  24139. },
  24140. anthro_back: {
  24141. height: math.unit(5 + 11/12, "feet"),
  24142. weight: math.unit(170, "lb"),
  24143. name: "Back",
  24144. image: {
  24145. source: "./media/characters/poojawa-vynar/anthro-back.svg",
  24146. extra: 1749/1607,
  24147. bottom: 28/1777
  24148. },
  24149. form: "anthro"
  24150. },
  24151. anthro_male: {
  24152. height: math.unit(5 + 11/12, "feet"),
  24153. weight: math.unit(170, "lb"),
  24154. name: "Male",
  24155. image: {
  24156. source: "./media/characters/poojawa-vynar/anthro-front-male.svg",
  24157. extra: 1855/1713,
  24158. bottom: 63/1918
  24159. },
  24160. form: "anthro"
  24161. },
  24162. taur_front: {
  24163. height: math.unit(5 + 7/12, "feet"),
  24164. weight: math.unit(170, "lb"),
  24165. name: "Front",
  24166. image: {
  24167. source: "./media/characters/poojawa-vynar/taur-front.svg",
  24168. extra: 1151/1059,
  24169. bottom: 356/1507
  24170. },
  24171. form: "taur",
  24172. default: true
  24173. },
  24174. anthro_frontDressed: {
  24175. height: math.unit(5 + 11/12, "feet"),
  24176. weight: math.unit(170, "lb"),
  24177. name: "Front (Dressed)",
  24178. image: {
  24179. source: "./media/characters/poojawa-vynar/anthro-front-dressed.svg",
  24180. extra: 1735/1585,
  24181. bottom: 96/1831
  24182. },
  24183. form: "anthro"
  24184. },
  24185. anthro_backDressed: {
  24186. height: math.unit(5 + 11/12, "feet"),
  24187. weight: math.unit(170, "lb"),
  24188. name: "Back (Dressed)",
  24189. image: {
  24190. source: "./media/characters/poojawa-vynar/anthro-back-dressed.svg",
  24191. extra: 1749/1607,
  24192. bottom: 28/1777
  24193. },
  24194. form: "anthro"
  24195. },
  24196. anthro_maleDressed: {
  24197. height: math.unit(5 + 11/12, "feet"),
  24198. weight: math.unit(170, "lb"),
  24199. name: "Male (Dressed)",
  24200. image: {
  24201. source: "./media/characters/poojawa-vynar/anthro-front-male-dressed.svg",
  24202. extra: 1855/1713,
  24203. bottom: 63/1918
  24204. },
  24205. form: "anthro"
  24206. },
  24207. taur_frontDressed: {
  24208. height: math.unit(5 + 7/12, "feet"),
  24209. weight: math.unit(170, "lb"),
  24210. name: "Front (Dressed)",
  24211. image: {
  24212. source: "./media/characters/poojawa-vynar/taur-front-dressed.svg",
  24213. extra: 1151/1059,
  24214. bottom: 356/1507
  24215. },
  24216. form: "taur"
  24217. },
  24218. maw: {
  24219. height: math.unit(1.46, "feet"),
  24220. name: "Maw",
  24221. image: {
  24222. source: "./media/characters/poojawa-vynar/maw.svg"
  24223. },
  24224. allForms: true
  24225. },
  24226. head: {
  24227. height: math.unit(2.34, "feet"),
  24228. name: "Head",
  24229. image: {
  24230. source: "./media/characters/poojawa-vynar/head.svg"
  24231. },
  24232. allForms: true
  24233. },
  24234. leftPaw: {
  24235. height: math.unit(1.72, "feet"),
  24236. name: "Left Paw",
  24237. image: {
  24238. source: "./media/characters/poojawa-vynar/paw-left.svg"
  24239. },
  24240. allForms: true
  24241. },
  24242. rightPaw: {
  24243. height: math.unit(1.61, "feet"),
  24244. name: "Right Paw",
  24245. image: {
  24246. source: "./media/characters/poojawa-vynar/paw-right.svg"
  24247. },
  24248. allForms: true
  24249. },
  24250. toering: {
  24251. height: math.unit(2.9, "inches"),
  24252. name: "Toering",
  24253. image: {
  24254. source: "./media/characters/poojawa-vynar/toering.svg"
  24255. },
  24256. allForms: true
  24257. },
  24258. shaft: {
  24259. height: math.unit(0.625, "feet"),
  24260. name: "Shaft",
  24261. image: {
  24262. source: "./media/characters/poojawa-vynar/shaft.svg"
  24263. },
  24264. allForms: true
  24265. },
  24266. spade: {
  24267. height: math.unit(0.42, "feet"),
  24268. name: "Spade",
  24269. image: {
  24270. source: "./media/characters/poojawa-vynar/spade.svg"
  24271. },
  24272. allForms: true
  24273. },
  24274. },
  24275. [
  24276. {
  24277. name: "Shortstack",
  24278. height: math.unit(4, "feet"),
  24279. form: "anthro"
  24280. },
  24281. {
  24282. name: "Normal",
  24283. height: math.unit(5 + 11 / 12, "feet"),
  24284. form: "anthro",
  24285. default: true
  24286. },
  24287. {
  24288. name: "Tauric",
  24289. height: math.unit(4, "meters"),
  24290. form: "taur",
  24291. default: true
  24292. },
  24293. ],
  24294. {
  24295. "anthro": {
  24296. name: "Anthro",
  24297. default: true
  24298. },
  24299. "taur": {
  24300. name: "Taur",
  24301. },
  24302. }
  24303. ))
  24304. characterMakers.push(() => makeCharacter(
  24305. { name: "Violette", species: ["doberman"], tags: ["anthro"] },
  24306. {
  24307. front: {
  24308. height: math.unit(293, "meters"),
  24309. weight: math.unit(70400, "tons"),
  24310. name: "Front",
  24311. image: {
  24312. source: "./media/characters/violette/front.svg",
  24313. extra: 1227 / 1180,
  24314. bottom: 0.005
  24315. }
  24316. },
  24317. back: {
  24318. height: math.unit(293, "meters"),
  24319. weight: math.unit(70400, "tons"),
  24320. name: "Back",
  24321. image: {
  24322. source: "./media/characters/violette/back.svg",
  24323. extra: 1227 / 1180,
  24324. bottom: 0.005
  24325. }
  24326. },
  24327. },
  24328. [
  24329. {
  24330. name: "Macro",
  24331. height: math.unit(293, "meters"),
  24332. default: true
  24333. },
  24334. ]
  24335. ))
  24336. characterMakers.push(() => makeCharacter(
  24337. { name: "Alessandra", species: ["fox"], tags: ["anthro"] },
  24338. {
  24339. front: {
  24340. height: math.unit(1050, "feet"),
  24341. weight: math.unit(200000, "tons"),
  24342. name: "Front",
  24343. image: {
  24344. source: "./media/characters/alessandra/front.svg",
  24345. extra: 960 / 912,
  24346. bottom: 0.06
  24347. }
  24348. },
  24349. },
  24350. [
  24351. {
  24352. name: "Macro",
  24353. height: math.unit(1050, "feet")
  24354. },
  24355. {
  24356. name: "Macro+",
  24357. height: math.unit(900, "meters"),
  24358. default: true
  24359. },
  24360. ]
  24361. ))
  24362. characterMakers.push(() => makeCharacter(
  24363. { name: "Person", species: ["cat", "dragon"], tags: ["anthro"] },
  24364. {
  24365. front: {
  24366. height: math.unit(5, "feet"),
  24367. weight: math.unit(187, "lb"),
  24368. name: "Front",
  24369. image: {
  24370. source: "./media/characters/person/front.svg",
  24371. extra: 3087 / 2945,
  24372. bottom: 91 / 3181
  24373. }
  24374. },
  24375. },
  24376. [
  24377. {
  24378. name: "Micro",
  24379. height: math.unit(3, "inches")
  24380. },
  24381. {
  24382. name: "Normal",
  24383. height: math.unit(5, "feet"),
  24384. default: true
  24385. },
  24386. {
  24387. name: "Macro",
  24388. height: math.unit(90, "feet")
  24389. },
  24390. {
  24391. name: "Max Size",
  24392. height: math.unit(280, "feet")
  24393. },
  24394. ]
  24395. ))
  24396. characterMakers.push(() => makeCharacter(
  24397. { name: "Ty", species: ["fox"], tags: ["anthro"] },
  24398. {
  24399. front: {
  24400. height: math.unit(4.5, "meters"),
  24401. weight: math.unit(3200, "lb"),
  24402. name: "Front",
  24403. image: {
  24404. source: "./media/characters/ty/front.svg",
  24405. extra: 1038 / 960,
  24406. bottom: 31.156 / 1068
  24407. }
  24408. },
  24409. back: {
  24410. height: math.unit(4.5, "meters"),
  24411. weight: math.unit(3200, "lb"),
  24412. name: "Back",
  24413. image: {
  24414. source: "./media/characters/ty/back.svg",
  24415. extra: 1044 / 966,
  24416. bottom: 7.48 / 1049
  24417. }
  24418. },
  24419. },
  24420. [
  24421. {
  24422. name: "Normal",
  24423. height: math.unit(4.5, "meters"),
  24424. default: true
  24425. },
  24426. ]
  24427. ))
  24428. characterMakers.push(() => makeCharacter(
  24429. { name: "Rocky", species: ["kobold"], tags: ["anthro"] },
  24430. {
  24431. front: {
  24432. height: math.unit(5 + 4 / 12, "feet"),
  24433. weight: math.unit(115, "lb"),
  24434. name: "Front",
  24435. image: {
  24436. source: "./media/characters/rocky/front.svg",
  24437. extra: 1012 / 975,
  24438. bottom: 54 / 1066
  24439. }
  24440. },
  24441. },
  24442. [
  24443. {
  24444. name: "Normal",
  24445. height: math.unit(5 + 4 / 12, "feet"),
  24446. default: true
  24447. },
  24448. ]
  24449. ))
  24450. characterMakers.push(() => makeCharacter(
  24451. { name: "Ruin", species: ["sergal"], tags: ["anthro", "feral"] },
  24452. {
  24453. upright: {
  24454. height: math.unit(6, "meters"),
  24455. weight: math.unit(4000, "kg"),
  24456. name: "Upright",
  24457. image: {
  24458. source: "./media/characters/ruin/upright.svg",
  24459. extra: 668 / 661,
  24460. bottom: 42 / 799.8396
  24461. }
  24462. },
  24463. },
  24464. [
  24465. {
  24466. name: "Normal",
  24467. height: math.unit(6, "meters"),
  24468. default: true
  24469. },
  24470. ]
  24471. ))
  24472. characterMakers.push(() => makeCharacter(
  24473. { name: "Robin", species: ["coyote"], tags: ["anthro"] },
  24474. {
  24475. front: {
  24476. height: math.unit(5, "feet"),
  24477. weight: math.unit(106, "lb"),
  24478. name: "Front",
  24479. image: {
  24480. source: "./media/characters/robin/front.svg",
  24481. extra: 862 / 799,
  24482. bottom: 42.4 / 914.8856
  24483. }
  24484. },
  24485. },
  24486. [
  24487. {
  24488. name: "Normal",
  24489. height: math.unit(5, "feet"),
  24490. default: true
  24491. },
  24492. ]
  24493. ))
  24494. characterMakers.push(() => makeCharacter(
  24495. { name: "Saian", species: ["ventura"], tags: ["feral"] },
  24496. {
  24497. side: {
  24498. height: math.unit(3, "feet"),
  24499. weight: math.unit(225, "lb"),
  24500. name: "Side",
  24501. image: {
  24502. source: "./media/characters/saian/side.svg",
  24503. extra: 566 / 356,
  24504. bottom: 79.7 / 643
  24505. }
  24506. },
  24507. maw: {
  24508. height: math.unit(2.85, "feet"),
  24509. name: "Maw",
  24510. image: {
  24511. source: "./media/characters/saian/maw.svg"
  24512. }
  24513. },
  24514. },
  24515. [
  24516. {
  24517. name: "Normal",
  24518. height: math.unit(3, "feet"),
  24519. default: true
  24520. },
  24521. ]
  24522. ))
  24523. characterMakers.push(() => makeCharacter(
  24524. { name: "Equus Silvermane", species: ["horse"], tags: ["anthro"] },
  24525. {
  24526. side: {
  24527. height: math.unit(8, "feet"),
  24528. weight: math.unit(300, "lb"),
  24529. name: "Side",
  24530. image: {
  24531. source: "./media/characters/equus-silvermane/side.svg",
  24532. extra: 2176 / 2050,
  24533. bottom: 65.7 / 2245
  24534. }
  24535. },
  24536. front: {
  24537. height: math.unit(8, "feet"),
  24538. weight: math.unit(300, "lb"),
  24539. name: "Front",
  24540. image: {
  24541. source: "./media/characters/equus-silvermane/front.svg",
  24542. extra: 4633 / 4400,
  24543. bottom: 71.3 / 4706.915
  24544. }
  24545. },
  24546. sideStepping: {
  24547. height: math.unit(8, "feet"),
  24548. weight: math.unit(300, "lb"),
  24549. name: "Side (Stepping)",
  24550. image: {
  24551. source: "./media/characters/equus-silvermane/side-stepping.svg",
  24552. extra: 1968 / 1860,
  24553. bottom: 16.4 / 1989
  24554. }
  24555. },
  24556. },
  24557. [
  24558. {
  24559. name: "Normal",
  24560. height: math.unit(8, "feet")
  24561. },
  24562. {
  24563. name: "Minimacro",
  24564. height: math.unit(75, "feet"),
  24565. default: true
  24566. },
  24567. {
  24568. name: "Macro",
  24569. height: math.unit(150, "feet")
  24570. },
  24571. {
  24572. name: "Macro+",
  24573. height: math.unit(1000, "feet")
  24574. },
  24575. {
  24576. name: "Megamacro",
  24577. height: math.unit(1, "mile")
  24578. },
  24579. ]
  24580. ))
  24581. characterMakers.push(() => makeCharacter(
  24582. { name: "Windar", species: ["dragon"], tags: ["feral"] },
  24583. {
  24584. side: {
  24585. height: math.unit(20, "feet"),
  24586. weight: math.unit(30000, "kg"),
  24587. name: "Side",
  24588. image: {
  24589. source: "./media/characters/windar/side.svg",
  24590. extra: 1491 / 1248,
  24591. bottom: 82.56 / 1568
  24592. }
  24593. },
  24594. },
  24595. [
  24596. {
  24597. name: "Normal",
  24598. height: math.unit(20, "feet"),
  24599. default: true
  24600. },
  24601. ]
  24602. ))
  24603. characterMakers.push(() => makeCharacter(
  24604. { name: "Melody", species: ["dragon"], tags: ["feral"] },
  24605. {
  24606. side: {
  24607. height: math.unit(15.66, "feet"),
  24608. weight: math.unit(150, "lb"),
  24609. name: "Side",
  24610. image: {
  24611. source: "./media/characters/melody/side.svg",
  24612. extra: 1097 / 944,
  24613. bottom: 11.8 / 1109
  24614. }
  24615. },
  24616. sideOutfit: {
  24617. height: math.unit(15.66, "feet"),
  24618. weight: math.unit(150, "lb"),
  24619. name: "Side (Outfit)",
  24620. image: {
  24621. source: "./media/characters/melody/side-outfit.svg",
  24622. extra: 1097 / 944,
  24623. bottom: 11.8 / 1109
  24624. }
  24625. },
  24626. },
  24627. [
  24628. {
  24629. name: "Normal",
  24630. height: math.unit(15.66, "feet"),
  24631. default: true
  24632. },
  24633. ]
  24634. ))
  24635. characterMakers.push(() => makeCharacter(
  24636. { name: "Windera", species: ["dragon"], tags: ["anthro"] },
  24637. {
  24638. armoredFront: {
  24639. height: math.unit(8, "feet"),
  24640. weight: math.unit(325, "lb"),
  24641. name: "Front",
  24642. image: {
  24643. source: "./media/characters/windera/armored-front.svg",
  24644. extra: 1830/1598,
  24645. bottom: 151/1981
  24646. },
  24647. form: "armored",
  24648. default: true
  24649. },
  24650. macroFront: {
  24651. height: math.unit(70, "feet"),
  24652. weight: math.unit(315453, "lb"),
  24653. name: "Front",
  24654. image: {
  24655. source: "./media/characters/windera/macro-front.svg",
  24656. extra: 963/883,
  24657. bottom: 23/986
  24658. },
  24659. form: "macro",
  24660. default: true
  24661. },
  24662. },
  24663. [
  24664. {
  24665. name: "Normal",
  24666. height: math.unit(8, "feet"),
  24667. default: true,
  24668. form: "armored"
  24669. },
  24670. {
  24671. name: "Normal",
  24672. height: math.unit(70, "feet"),
  24673. default: true,
  24674. form: "macro"
  24675. },
  24676. ],
  24677. {
  24678. "armored": {
  24679. name: "Armored",
  24680. default: true
  24681. },
  24682. "macro": {
  24683. name: "Macro",
  24684. },
  24685. }
  24686. ))
  24687. characterMakers.push(() => makeCharacter(
  24688. { name: "Sonear", species: ["lugia"], tags: ["feral"] },
  24689. {
  24690. front: {
  24691. height: math.unit(28.75, "feet"),
  24692. weight: math.unit(2000, "kg"),
  24693. name: "Front",
  24694. image: {
  24695. source: "./media/characters/sonear/front.svg",
  24696. extra: 1041.1 / 964.9,
  24697. bottom: 53.7 / 1096.6
  24698. }
  24699. },
  24700. },
  24701. [
  24702. {
  24703. name: "Normal",
  24704. height: math.unit(28.75, "feet"),
  24705. default: true
  24706. },
  24707. ]
  24708. ))
  24709. characterMakers.push(() => makeCharacter(
  24710. { name: "Kanara", species: ["dinosaur"], tags: ["feral"] },
  24711. {
  24712. side: {
  24713. height: math.unit(25.5, "feet"),
  24714. weight: math.unit(23000, "kg"),
  24715. name: "Side",
  24716. image: {
  24717. source: "./media/characters/kanara/side.svg"
  24718. }
  24719. },
  24720. },
  24721. [
  24722. {
  24723. name: "Normal",
  24724. height: math.unit(25.5, "feet"),
  24725. default: true
  24726. },
  24727. ]
  24728. ))
  24729. characterMakers.push(() => makeCharacter(
  24730. { name: "Ereus", species: ["gryphon"], tags: ["feral"] },
  24731. {
  24732. side: {
  24733. height: math.unit(10, "feet"),
  24734. weight: math.unit(1000, "kg"),
  24735. name: "Side",
  24736. image: {
  24737. source: "./media/characters/ereus/side.svg",
  24738. extra: 1157 / 959,
  24739. bottom: 153 / 1312.5
  24740. }
  24741. },
  24742. },
  24743. [
  24744. {
  24745. name: "Normal",
  24746. height: math.unit(10, "feet"),
  24747. default: true
  24748. },
  24749. ]
  24750. ))
  24751. characterMakers.push(() => makeCharacter(
  24752. { name: "E-ter", species: ["wolf", "robot"], tags: ["feral"] },
  24753. {
  24754. side: {
  24755. height: math.unit(4.5, "feet"),
  24756. weight: math.unit(500, "lb"),
  24757. name: "Side",
  24758. image: {
  24759. source: "./media/characters/e-ter/side.svg",
  24760. extra: 1550 / 1248,
  24761. bottom: 146 / 1694
  24762. }
  24763. },
  24764. },
  24765. [
  24766. {
  24767. name: "Normal",
  24768. height: math.unit(4.5, "feet"),
  24769. default: true
  24770. },
  24771. ]
  24772. ))
  24773. characterMakers.push(() => makeCharacter(
  24774. { name: "Yamie", species: ["orca"], tags: ["feral"] },
  24775. {
  24776. side: {
  24777. height: math.unit(9.7, "feet"),
  24778. weight: math.unit(4000, "kg"),
  24779. name: "Side",
  24780. image: {
  24781. source: "./media/characters/yamie/side.svg"
  24782. }
  24783. },
  24784. },
  24785. [
  24786. {
  24787. name: "Normal",
  24788. height: math.unit(9.7, "feet"),
  24789. default: true
  24790. },
  24791. ]
  24792. ))
  24793. characterMakers.push(() => makeCharacter(
  24794. { name: "Anders", species: ["unicorn", "deity"], tags: ["anthro"] },
  24795. {
  24796. front: {
  24797. height: math.unit(50, "feet"),
  24798. weight: math.unit(50000, "kg"),
  24799. name: "Front",
  24800. image: {
  24801. source: "./media/characters/anders/front.svg",
  24802. extra: 570 / 539,
  24803. bottom: 14.7 / 586.7
  24804. }
  24805. },
  24806. },
  24807. [
  24808. {
  24809. name: "Large",
  24810. height: math.unit(50, "feet")
  24811. },
  24812. {
  24813. name: "Macro",
  24814. height: math.unit(2000, "feet"),
  24815. default: true
  24816. },
  24817. {
  24818. name: "Megamacro",
  24819. height: math.unit(12, "miles")
  24820. },
  24821. ]
  24822. ))
  24823. characterMakers.push(() => makeCharacter(
  24824. { name: "Reban", species: ["dragon"], tags: ["anthro"] },
  24825. {
  24826. front: {
  24827. height: math.unit(7 + 2 / 12, "feet"),
  24828. weight: math.unit(300, "lb"),
  24829. name: "Front",
  24830. image: {
  24831. source: "./media/characters/reban/front.svg",
  24832. extra: 1287/1212,
  24833. bottom: 148/1435
  24834. }
  24835. },
  24836. head: {
  24837. height: math.unit(1.95, "feet"),
  24838. name: "Head",
  24839. image: {
  24840. source: "./media/characters/reban/head.svg"
  24841. }
  24842. },
  24843. maw: {
  24844. height: math.unit(0.95, "feet"),
  24845. name: "Maw",
  24846. image: {
  24847. source: "./media/characters/reban/maw.svg"
  24848. }
  24849. },
  24850. foot: {
  24851. height: math.unit(1.65, "feet"),
  24852. name: "Foot",
  24853. image: {
  24854. source: "./media/characters/reban/foot.svg"
  24855. }
  24856. },
  24857. dick: {
  24858. height: math.unit(7 / 5, "feet"),
  24859. name: "Dick",
  24860. image: {
  24861. source: "./media/characters/reban/dick.svg"
  24862. }
  24863. },
  24864. },
  24865. [
  24866. {
  24867. name: "Natural Height",
  24868. height: math.unit(7 + 2 / 12, "feet")
  24869. },
  24870. {
  24871. name: "Macro",
  24872. height: math.unit(500, "feet"),
  24873. default: true
  24874. },
  24875. {
  24876. name: "Canon Height",
  24877. height: math.unit(50, "AU")
  24878. },
  24879. ]
  24880. ))
  24881. characterMakers.push(() => makeCharacter(
  24882. { name: "Terrance Keayes", species: ["vole"], tags: ["anthro"] },
  24883. {
  24884. front: {
  24885. height: math.unit(6, "feet"),
  24886. weight: math.unit(150, "lb"),
  24887. name: "Front",
  24888. image: {
  24889. source: "./media/characters/terrance-keayes/front.svg",
  24890. extra: 1.005,
  24891. bottom: 151 / 1615
  24892. }
  24893. },
  24894. side: {
  24895. height: math.unit(6, "feet"),
  24896. weight: math.unit(150, "lb"),
  24897. name: "Side",
  24898. image: {
  24899. source: "./media/characters/terrance-keayes/side.svg",
  24900. extra: 1.005,
  24901. bottom: 129.4 / 1544
  24902. }
  24903. },
  24904. back: {
  24905. height: math.unit(6, "feet"),
  24906. weight: math.unit(150, "lb"),
  24907. name: "Back",
  24908. image: {
  24909. source: "./media/characters/terrance-keayes/back.svg",
  24910. extra: 1.005,
  24911. bottom: 58.4 / 1557.3
  24912. }
  24913. },
  24914. dick: {
  24915. height: math.unit(6 * 0.208, "feet"),
  24916. name: "Dick",
  24917. image: {
  24918. source: "./media/characters/terrance-keayes/dick.svg"
  24919. }
  24920. },
  24921. },
  24922. [
  24923. {
  24924. name: "Canon Height",
  24925. height: math.unit(35, "miles"),
  24926. default: true
  24927. },
  24928. ]
  24929. ))
  24930. characterMakers.push(() => makeCharacter(
  24931. { name: "Ofelia", species: ["gigantosaurus"], tags: ["anthro"] },
  24932. {
  24933. front: {
  24934. height: math.unit(6, "feet"),
  24935. weight: math.unit(150, "lb"),
  24936. name: "Front",
  24937. image: {
  24938. source: "./media/characters/ofelia/front.svg",
  24939. extra: 1130/1117,
  24940. bottom: 91/1221
  24941. }
  24942. },
  24943. back: {
  24944. height: math.unit(6, "feet"),
  24945. weight: math.unit(150, "lb"),
  24946. name: "Back",
  24947. image: {
  24948. source: "./media/characters/ofelia/back.svg",
  24949. extra: 1172/1159,
  24950. bottom: 28/1200
  24951. }
  24952. },
  24953. maw: {
  24954. height: math.unit(1, "feet"),
  24955. name: "Maw",
  24956. image: {
  24957. source: "./media/characters/ofelia/maw.svg"
  24958. }
  24959. },
  24960. foot: {
  24961. height: math.unit(1.949, "feet"),
  24962. name: "Foot",
  24963. image: {
  24964. source: "./media/characters/ofelia/foot.svg"
  24965. }
  24966. },
  24967. },
  24968. [
  24969. {
  24970. name: "Canon Height",
  24971. height: math.unit(2000, "miles"),
  24972. default: true
  24973. },
  24974. ]
  24975. ))
  24976. characterMakers.push(() => makeCharacter(
  24977. { name: "Samuel", species: ["snow-leopard"], tags: ["anthro"] },
  24978. {
  24979. front: {
  24980. height: math.unit(6, "feet"),
  24981. weight: math.unit(150, "lb"),
  24982. name: "Front",
  24983. image: {
  24984. source: "./media/characters/samuel/front.svg",
  24985. extra: 265 / 258,
  24986. bottom: 2 / 266.1566
  24987. }
  24988. },
  24989. },
  24990. [
  24991. {
  24992. name: "Macro",
  24993. height: math.unit(100, "feet"),
  24994. default: true
  24995. },
  24996. {
  24997. name: "Full Size",
  24998. height: math.unit(1000, "miles")
  24999. },
  25000. ]
  25001. ))
  25002. characterMakers.push(() => makeCharacter(
  25003. { name: "Beishir Kiel", species: ["orca", "monster"], tags: ["anthro"] },
  25004. {
  25005. front: {
  25006. height: math.unit(6, "feet"),
  25007. weight: math.unit(300, "lb"),
  25008. name: "Front",
  25009. image: {
  25010. source: "./media/characters/beishir-kiel/front.svg",
  25011. extra: 569 / 547,
  25012. bottom: 41.9 / 609
  25013. }
  25014. },
  25015. maw: {
  25016. height: math.unit(6 * 0.202, "feet"),
  25017. name: "Maw",
  25018. image: {
  25019. source: "./media/characters/beishir-kiel/maw.svg"
  25020. }
  25021. },
  25022. },
  25023. [
  25024. {
  25025. name: "Macro",
  25026. height: math.unit(300, "feet"),
  25027. default: true
  25028. },
  25029. ]
  25030. ))
  25031. characterMakers.push(() => makeCharacter(
  25032. { name: "Logan Grey", species: ["fox"], tags: ["anthro"] },
  25033. {
  25034. front: {
  25035. height: math.unit(5 + 7/12, "feet"),
  25036. weight: math.unit(120, "lb"),
  25037. name: "Front",
  25038. image: {
  25039. source: "./media/characters/logan-grey/front.svg",
  25040. extra: 1836/1738,
  25041. bottom: 108/1944
  25042. }
  25043. },
  25044. back: {
  25045. height: math.unit(5 + 7/12, "feet"),
  25046. weight: math.unit(120, "lb"),
  25047. name: "Back",
  25048. image: {
  25049. source: "./media/characters/logan-grey/back.svg",
  25050. extra: 1880/1794,
  25051. bottom: 24/1904
  25052. }
  25053. },
  25054. frontSfw: {
  25055. height: math.unit(5 + 7/12, "feet"),
  25056. weight: math.unit(120, "lb"),
  25057. name: "Front (SFW)",
  25058. image: {
  25059. source: "./media/characters/logan-grey/front-sfw.svg",
  25060. extra: 1836/1738,
  25061. bottom: 108/1944
  25062. }
  25063. },
  25064. backSfw: {
  25065. height: math.unit(5 + 7/12, "feet"),
  25066. weight: math.unit(120, "lb"),
  25067. name: "Back (SFW)",
  25068. image: {
  25069. source: "./media/characters/logan-grey/back-sfw.svg",
  25070. extra: 1880/1794,
  25071. bottom: 24/1904
  25072. }
  25073. },
  25074. hands: {
  25075. height: math.unit(0.84, "feet"),
  25076. name: "Hands",
  25077. image: {
  25078. source: "./media/characters/logan-grey/hands.svg"
  25079. }
  25080. },
  25081. paws: {
  25082. height: math.unit(0.72, "feet"),
  25083. name: "Paws",
  25084. image: {
  25085. source: "./media/characters/logan-grey/paws.svg"
  25086. }
  25087. },
  25088. cock: {
  25089. height: math.unit(1.45, "feet"),
  25090. name: "Cock",
  25091. image: {
  25092. source: "./media/characters/logan-grey/cock.svg"
  25093. }
  25094. },
  25095. cockAlt: {
  25096. height: math.unit(1.437, "feet"),
  25097. name: "Cock (alt)",
  25098. image: {
  25099. source: "./media/characters/logan-grey/cock-alt.svg"
  25100. }
  25101. },
  25102. },
  25103. [
  25104. {
  25105. name: "Normal",
  25106. height: math.unit(5 + 8 / 12, "feet")
  25107. },
  25108. {
  25109. name: "The 500 Foot Femboy",
  25110. height: math.unit(500, "feet"),
  25111. default: true
  25112. },
  25113. {
  25114. name: "Megmacro",
  25115. height: math.unit(20, "miles")
  25116. },
  25117. ]
  25118. ))
  25119. characterMakers.push(() => makeCharacter(
  25120. { name: "Draganta", species: ["dragon"], tags: ["anthro"] },
  25121. {
  25122. front: {
  25123. height: math.unit(8 + 2 / 12, "feet"),
  25124. weight: math.unit(275, "lb"),
  25125. name: "Front",
  25126. image: {
  25127. source: "./media/characters/draganta/front.svg",
  25128. extra: 1177 / 1135,
  25129. bottom: 33.46 / 1212.1
  25130. }
  25131. },
  25132. },
  25133. [
  25134. {
  25135. name: "Normal",
  25136. height: math.unit(8 + 6 / 12, "feet"),
  25137. default: true
  25138. },
  25139. {
  25140. name: "Macro",
  25141. height: math.unit(150, "feet")
  25142. },
  25143. {
  25144. name: "Megamacro",
  25145. height: math.unit(1000, "miles")
  25146. },
  25147. ]
  25148. ))
  25149. characterMakers.push(() => makeCharacter(
  25150. { name: "Voski", species: ["corvid"], tags: ["anthro"] },
  25151. {
  25152. front: {
  25153. height: math.unit(1.72, "m"),
  25154. weight: math.unit(80, "lb"),
  25155. name: "Front",
  25156. image: {
  25157. source: "./media/characters/voski/front.svg",
  25158. extra: 2076.22 / 2022.4,
  25159. bottom: 102.7 / 2177.3866
  25160. }
  25161. },
  25162. frontFlaccid: {
  25163. height: math.unit(1.72, "m"),
  25164. weight: math.unit(80, "lb"),
  25165. name: "Front (Flaccid)",
  25166. image: {
  25167. source: "./media/characters/voski/front-flaccid.svg",
  25168. extra: 2076.22 / 2022.4,
  25169. bottom: 102.7 / 2177.3866
  25170. }
  25171. },
  25172. frontErect: {
  25173. height: math.unit(1.72, "m"),
  25174. weight: math.unit(80, "lb"),
  25175. name: "Front (Erect)",
  25176. image: {
  25177. source: "./media/characters/voski/front-erect.svg",
  25178. extra: 2076.22 / 2022.4,
  25179. bottom: 102.7 / 2177.3866
  25180. }
  25181. },
  25182. back: {
  25183. height: math.unit(1.72, "m"),
  25184. weight: math.unit(80, "lb"),
  25185. name: "Back",
  25186. image: {
  25187. source: "./media/characters/voski/back.svg",
  25188. extra: 2104 / 2051,
  25189. bottom: 10.45 / 2113.63
  25190. }
  25191. },
  25192. },
  25193. [
  25194. {
  25195. name: "Normal",
  25196. height: math.unit(1.72, "m")
  25197. },
  25198. {
  25199. name: "Macro",
  25200. height: math.unit(55, "m"),
  25201. default: true
  25202. },
  25203. {
  25204. name: "Macro+",
  25205. height: math.unit(300, "m")
  25206. },
  25207. {
  25208. name: "Macro++",
  25209. height: math.unit(700, "m")
  25210. },
  25211. {
  25212. name: "Macro+++",
  25213. height: math.unit(4500, "m")
  25214. },
  25215. {
  25216. name: "Macro++++",
  25217. height: math.unit(45, "km")
  25218. },
  25219. {
  25220. name: "Macro+++++",
  25221. height: math.unit(1220, "km")
  25222. },
  25223. ]
  25224. ))
  25225. characterMakers.push(() => makeCharacter(
  25226. { name: "Icowom Lee", species: ["wolf"], tags: ["anthro"] },
  25227. {
  25228. front: {
  25229. height: math.unit(2.3, "m"),
  25230. weight: math.unit(304, "kg"),
  25231. name: "Front",
  25232. image: {
  25233. source: "./media/characters/icowom-lee/front.svg",
  25234. extra: 985 / 955,
  25235. bottom: 25.4 / 1012
  25236. }
  25237. },
  25238. fronttentacles: {
  25239. height: math.unit(2.3, "m"),
  25240. weight: math.unit(304, "kg"),
  25241. name: "Front-tentacles",
  25242. image: {
  25243. source: "./media/characters/icowom-lee/front-tentacles.svg",
  25244. extra: 985 / 955,
  25245. bottom: 25.4 / 1012
  25246. }
  25247. },
  25248. back: {
  25249. height: math.unit(2.3, "m"),
  25250. weight: math.unit(304, "kg"),
  25251. name: "Back",
  25252. image: {
  25253. source: "./media/characters/icowom-lee/back.svg",
  25254. extra: 975 / 954,
  25255. bottom: 9.5 / 985
  25256. }
  25257. },
  25258. backtentacles: {
  25259. height: math.unit(2.3, "m"),
  25260. weight: math.unit(304, "kg"),
  25261. name: "Back-tentacles",
  25262. image: {
  25263. source: "./media/characters/icowom-lee/back-tentacles.svg",
  25264. extra: 975 / 954,
  25265. bottom: 9.5 / 985
  25266. }
  25267. },
  25268. frontDressed: {
  25269. height: math.unit(2.3, "m"),
  25270. weight: math.unit(304, "kg"),
  25271. name: "Front (Dressed)",
  25272. image: {
  25273. source: "./media/characters/icowom-lee/front-dressed.svg",
  25274. extra: 3076 / 2933,
  25275. bottom: 51.4 / 3125.1889
  25276. }
  25277. },
  25278. rump: {
  25279. height: math.unit(0.776, "meters"),
  25280. name: "Rump",
  25281. image: {
  25282. source: "./media/characters/icowom-lee/rump.svg"
  25283. }
  25284. },
  25285. genitals: {
  25286. height: math.unit(0.78, "meters"),
  25287. name: "Genitals",
  25288. image: {
  25289. source: "./media/characters/icowom-lee/genitals.svg"
  25290. }
  25291. },
  25292. },
  25293. [
  25294. {
  25295. name: "Normal",
  25296. height: math.unit(2.3, "meters"),
  25297. default: true
  25298. },
  25299. {
  25300. name: "Macro",
  25301. height: math.unit(94, "meters"),
  25302. default: true
  25303. },
  25304. ]
  25305. ))
  25306. characterMakers.push(() => makeCharacter(
  25307. { name: "Shock Diamond", species: ["pharaoh-hound", "aeromorph"], tags: ["anthro"] },
  25308. {
  25309. front: {
  25310. height: math.unit(22, "meters"),
  25311. weight: math.unit(21000, "kg"),
  25312. name: "Front",
  25313. image: {
  25314. source: "./media/characters/shock-diamond/front.svg",
  25315. extra: 2204 / 2053,
  25316. bottom: 65 / 2239.47
  25317. }
  25318. },
  25319. frontNude: {
  25320. height: math.unit(22, "meters"),
  25321. weight: math.unit(21000, "kg"),
  25322. name: "Front (Nude)",
  25323. image: {
  25324. source: "./media/characters/shock-diamond/front-nude.svg",
  25325. extra: 2514 / 2285,
  25326. bottom: 13 / 2527.56
  25327. }
  25328. },
  25329. },
  25330. [
  25331. {
  25332. name: "Normal",
  25333. height: math.unit(3, "meters")
  25334. },
  25335. {
  25336. name: "Macro",
  25337. height: math.unit(22, "meters"),
  25338. default: true
  25339. },
  25340. ]
  25341. ))
  25342. characterMakers.push(() => makeCharacter(
  25343. { name: "Rory", species: ["dog", "magical"], tags: ["anthro"] },
  25344. {
  25345. front: {
  25346. height: math.unit(5 + 4/12, "feet"),
  25347. weight: math.unit(125, "lb"),
  25348. name: "Front",
  25349. image: {
  25350. source: "./media/characters/rory/front.svg",
  25351. extra: 1790/1681,
  25352. bottom: 66/1856
  25353. },
  25354. form: "normal",
  25355. default: true
  25356. },
  25357. back: {
  25358. height: math.unit(5 + 4/12, "feet"),
  25359. weight: math.unit(125, "lb"),
  25360. name: "Back",
  25361. image: {
  25362. source: "./media/characters/rory/back.svg",
  25363. extra: 1805/1690,
  25364. bottom: 56/1861
  25365. },
  25366. form: "normal"
  25367. },
  25368. frontDressed: {
  25369. height: math.unit(5 + 4/12, "feet"),
  25370. weight: math.unit(125, "lb"),
  25371. name: "Front (Dressed)",
  25372. image: {
  25373. source: "./media/characters/rory/front-dressed.svg",
  25374. extra: 1790/1681,
  25375. bottom: 66/1856
  25376. },
  25377. form: "normal"
  25378. },
  25379. backDressed: {
  25380. height: math.unit(5 + 4/12, "feet"),
  25381. weight: math.unit(125, "lb"),
  25382. name: "Back (Dressed)",
  25383. image: {
  25384. source: "./media/characters/rory/back-dressed.svg",
  25385. extra: 1805/1690,
  25386. bottom: 56/1861
  25387. },
  25388. form: "normal"
  25389. },
  25390. frontNsfw: {
  25391. height: math.unit(5 + 4/12, "feet"),
  25392. weight: math.unit(125, "lb"),
  25393. name: "Front (NSFW)",
  25394. image: {
  25395. source: "./media/characters/rory/front-nsfw.svg",
  25396. extra: 1790/1681,
  25397. bottom: 66/1856
  25398. },
  25399. form: "normal"
  25400. },
  25401. backNsfw: {
  25402. height: math.unit(5 + 4/12, "feet"),
  25403. weight: math.unit(125, "lb"),
  25404. name: "Back (NSFW)",
  25405. image: {
  25406. source: "./media/characters/rory/back-nsfw.svg",
  25407. extra: 1805/1690,
  25408. bottom: 56/1861
  25409. },
  25410. form: "normal"
  25411. },
  25412. dick: {
  25413. height: math.unit(0.8, "feet"),
  25414. name: "Dick",
  25415. image: {
  25416. source: "./media/characters/rory/dick.svg"
  25417. },
  25418. form: "normal"
  25419. },
  25420. thicc_front: {
  25421. height: math.unit(5 + 4/12, "feet"),
  25422. weight: math.unit(195, "lb"),
  25423. name: "Front",
  25424. image: {
  25425. source: "./media/characters/rory/thicc-front.svg",
  25426. extra: 1220/1100,
  25427. bottom: 103/1323
  25428. },
  25429. form: "thicc",
  25430. default: true
  25431. },
  25432. thicc_back: {
  25433. height: math.unit(5 + 4/12, "feet"),
  25434. weight: math.unit(195, "lb"),
  25435. name: "Back",
  25436. image: {
  25437. source: "./media/characters/rory/thicc-back.svg",
  25438. extra: 1166/1086,
  25439. bottom: 35/1201
  25440. },
  25441. form: "thicc"
  25442. },
  25443. },
  25444. [
  25445. {
  25446. name: "Micro",
  25447. height: math.unit(3, "inches"),
  25448. allForms: true
  25449. },
  25450. {
  25451. name: "Normal",
  25452. height: math.unit(5 + 4/12, "feet"),
  25453. allForms: true,
  25454. default: true
  25455. },
  25456. {
  25457. name: "Macro",
  25458. height: math.unit(90, "feet"),
  25459. allForms: true
  25460. },
  25461. {
  25462. name: "Supercharged",
  25463. height: math.unit(270, "feet"),
  25464. allForms: true
  25465. },
  25466. ],
  25467. {
  25468. "normal": {
  25469. name: "Normal",
  25470. default: true
  25471. },
  25472. "thicc": {
  25473. name: "Thicc",
  25474. },
  25475. }
  25476. ))
  25477. characterMakers.push(() => makeCharacter(
  25478. { name: "Sprisk", species: ["dragon"], tags: ["anthro"] },
  25479. {
  25480. front: {
  25481. height: math.unit(5 + 9 / 12, "feet"),
  25482. weight: math.unit(190, "lb"),
  25483. name: "Front",
  25484. image: {
  25485. source: "./media/characters/sprisk/front.svg",
  25486. extra: 1225 / 1180,
  25487. bottom: 42.7 / 1266.4
  25488. }
  25489. },
  25490. frontNsfw: {
  25491. height: math.unit(5 + 9 / 12, "feet"),
  25492. weight: math.unit(190, "lb"),
  25493. name: "Front (NSFW)",
  25494. image: {
  25495. source: "./media/characters/sprisk/front-nsfw.svg",
  25496. extra: 1225 / 1180,
  25497. bottom: 42.7 / 1266.4
  25498. }
  25499. },
  25500. back: {
  25501. height: math.unit(5 + 9 / 12, "feet"),
  25502. weight: math.unit(190, "lb"),
  25503. name: "Back",
  25504. image: {
  25505. source: "./media/characters/sprisk/back.svg",
  25506. extra: 1247 / 1200,
  25507. bottom: 5.6 / 1253.04
  25508. }
  25509. },
  25510. },
  25511. [
  25512. {
  25513. name: "Tiny",
  25514. height: math.unit(2, "inches")
  25515. },
  25516. {
  25517. name: "Normal",
  25518. height: math.unit(5 + 9 / 12, "feet"),
  25519. default: true
  25520. },
  25521. {
  25522. name: "Mini Macro",
  25523. height: math.unit(18, "feet")
  25524. },
  25525. {
  25526. name: "Macro",
  25527. height: math.unit(100, "feet")
  25528. },
  25529. {
  25530. name: "MACRO",
  25531. height: math.unit(50, "miles")
  25532. },
  25533. {
  25534. name: "M A C R O",
  25535. height: math.unit(300, "miles")
  25536. },
  25537. ]
  25538. ))
  25539. characterMakers.push(() => makeCharacter(
  25540. { name: "Bunsen", species: ["dragon"], tags: ["feral"] },
  25541. {
  25542. side: {
  25543. height: math.unit(15.6, "meters"),
  25544. weight: math.unit(700000, "kg"),
  25545. name: "Side",
  25546. image: {
  25547. source: "./media/characters/bunsen/side.svg",
  25548. extra: 1644 / 358
  25549. }
  25550. },
  25551. foot: {
  25552. height: math.unit(1.611 * 1644 / 358, "meter"),
  25553. name: "Foot",
  25554. image: {
  25555. source: "./media/characters/bunsen/foot.svg"
  25556. }
  25557. },
  25558. },
  25559. [
  25560. {
  25561. name: "Small",
  25562. height: math.unit(10, "feet")
  25563. },
  25564. {
  25565. name: "Normal",
  25566. height: math.unit(15.6, "meters"),
  25567. default: true
  25568. },
  25569. ]
  25570. ))
  25571. characterMakers.push(() => makeCharacter(
  25572. { name: "Sesh", species: ["finnish-spitz-dog"], tags: ["anthro"] },
  25573. {
  25574. front: {
  25575. height: math.unit(4 + 11 / 12, "feet"),
  25576. weight: math.unit(140, "lb"),
  25577. name: "Front",
  25578. image: {
  25579. source: "./media/characters/sesh/front.svg",
  25580. extra: 3420 / 3231,
  25581. bottom: 72 / 3949.5
  25582. }
  25583. },
  25584. },
  25585. [
  25586. {
  25587. name: "Normal",
  25588. height: math.unit(4 + 11 / 12, "feet")
  25589. },
  25590. {
  25591. name: "Grown",
  25592. height: math.unit(15, "feet"),
  25593. default: true
  25594. },
  25595. {
  25596. name: "Macro",
  25597. height: math.unit(1500, "feet")
  25598. },
  25599. {
  25600. name: "Megamacro",
  25601. height: math.unit(30, "miles")
  25602. },
  25603. {
  25604. name: "Continental",
  25605. height: math.unit(3000, "miles")
  25606. },
  25607. {
  25608. name: "Gravity Mass",
  25609. height: math.unit(300000, "miles")
  25610. },
  25611. {
  25612. name: "Planet Buster",
  25613. height: math.unit(30000000, "miles")
  25614. },
  25615. {
  25616. name: "Big",
  25617. height: math.unit(3000000000, "miles")
  25618. },
  25619. ]
  25620. ))
  25621. characterMakers.push(() => makeCharacter(
  25622. { name: "Pepper", species: ["zorgoia"], tags: ["anthro"] },
  25623. {
  25624. front: {
  25625. height: math.unit(9, "feet"),
  25626. weight: math.unit(350, "lb"),
  25627. name: "Front",
  25628. image: {
  25629. source: "./media/characters/pepper/front.svg",
  25630. extra: 1448 / 1312,
  25631. bottom: 9.4 / 1457.88
  25632. }
  25633. },
  25634. back: {
  25635. height: math.unit(9, "feet"),
  25636. weight: math.unit(350, "lb"),
  25637. name: "Back",
  25638. image: {
  25639. source: "./media/characters/pepper/back.svg",
  25640. extra: 1423 / 1300,
  25641. bottom: 4.6 / 1429
  25642. }
  25643. },
  25644. maw: {
  25645. height: math.unit(0.932, "feet"),
  25646. name: "Maw",
  25647. image: {
  25648. source: "./media/characters/pepper/maw.svg"
  25649. }
  25650. },
  25651. },
  25652. [
  25653. {
  25654. name: "Normal",
  25655. height: math.unit(9, "feet"),
  25656. default: true
  25657. },
  25658. ]
  25659. ))
  25660. characterMakers.push(() => makeCharacter(
  25661. { name: "Maelstrom", species: ["monster"], tags: ["anthro"] },
  25662. {
  25663. front: {
  25664. height: math.unit(6, "feet"),
  25665. weight: math.unit(150, "lb"),
  25666. name: "Front",
  25667. image: {
  25668. source: "./media/characters/maelstrom/front.svg",
  25669. extra: 2100 / 1883,
  25670. bottom: 94 / 2196.7
  25671. }
  25672. },
  25673. },
  25674. [
  25675. {
  25676. name: "Less Kaiju",
  25677. height: math.unit(200, "feet")
  25678. },
  25679. {
  25680. name: "Kaiju",
  25681. height: math.unit(400, "feet"),
  25682. default: true
  25683. },
  25684. {
  25685. name: "Kaiju-er",
  25686. height: math.unit(600, "feet")
  25687. },
  25688. ]
  25689. ))
  25690. characterMakers.push(() => makeCharacter(
  25691. { name: "Lexir", species: ["sergal"], tags: ["anthro"] },
  25692. {
  25693. front: {
  25694. height: math.unit(6 + 5 / 12, "feet"),
  25695. weight: math.unit(180, "lb"),
  25696. name: "Front",
  25697. image: {
  25698. source: "./media/characters/lexir/front.svg",
  25699. extra: 180 / 172,
  25700. bottom: 12 / 192
  25701. }
  25702. },
  25703. back: {
  25704. height: math.unit(6 + 5 / 12, "feet"),
  25705. weight: math.unit(180, "lb"),
  25706. name: "Back",
  25707. image: {
  25708. source: "./media/characters/lexir/back.svg",
  25709. extra: 1273/1201,
  25710. bottom: 39/1312
  25711. }
  25712. },
  25713. },
  25714. [
  25715. {
  25716. name: "Very Smal",
  25717. height: math.unit(1, "nm")
  25718. },
  25719. {
  25720. name: "Normal",
  25721. height: math.unit(6 + 5 / 12, "feet"),
  25722. default: true
  25723. },
  25724. {
  25725. name: "Macro",
  25726. height: math.unit(1, "mile")
  25727. },
  25728. {
  25729. name: "Megamacro",
  25730. height: math.unit(50, "miles")
  25731. },
  25732. ]
  25733. ))
  25734. characterMakers.push(() => makeCharacter(
  25735. { name: "Maksio", species: ["lizard"], tags: ["anthro"] },
  25736. {
  25737. front: {
  25738. height: math.unit(1.5, "meters"),
  25739. weight: math.unit(100, "lb"),
  25740. name: "Front",
  25741. image: {
  25742. source: "./media/characters/maksio/front.svg",
  25743. extra: 1549 / 1531,
  25744. bottom: 123.7 / 1674.5429
  25745. }
  25746. },
  25747. back: {
  25748. height: math.unit(1.5, "meters"),
  25749. weight: math.unit(100, "lb"),
  25750. name: "Back",
  25751. image: {
  25752. source: "./media/characters/maksio/back.svg",
  25753. extra: 1541 / 1509,
  25754. bottom: 97 / 1639
  25755. }
  25756. },
  25757. hand: {
  25758. height: math.unit(0.621, "feet"),
  25759. name: "Hand",
  25760. image: {
  25761. source: "./media/characters/maksio/hand.svg"
  25762. }
  25763. },
  25764. foot: {
  25765. height: math.unit(1.611, "feet"),
  25766. name: "Foot",
  25767. image: {
  25768. source: "./media/characters/maksio/foot.svg"
  25769. }
  25770. },
  25771. },
  25772. [
  25773. {
  25774. name: "Shrunken",
  25775. height: math.unit(10, "cm")
  25776. },
  25777. {
  25778. name: "Normal",
  25779. height: math.unit(150, "cm"),
  25780. default: true
  25781. },
  25782. ]
  25783. ))
  25784. characterMakers.push(() => makeCharacter(
  25785. { name: "Erza Bear", species: ["human", "dragon"], tags: ["anthro"] },
  25786. {
  25787. front: {
  25788. height: math.unit(100, "feet"),
  25789. name: "Front",
  25790. image: {
  25791. source: "./media/characters/erza-bear/front.svg",
  25792. extra: 2449 / 2390,
  25793. bottom: 46 / 2494
  25794. }
  25795. },
  25796. back: {
  25797. height: math.unit(100, "feet"),
  25798. name: "Back",
  25799. image: {
  25800. source: "./media/characters/erza-bear/back.svg",
  25801. extra: 2489 / 2430,
  25802. bottom: 85.4 / 2480
  25803. }
  25804. },
  25805. tail: {
  25806. height: math.unit(42, "feet"),
  25807. name: "Tail",
  25808. image: {
  25809. source: "./media/characters/erza-bear/tail.svg"
  25810. }
  25811. },
  25812. tongue: {
  25813. height: math.unit(8, "feet"),
  25814. name: "Tongue",
  25815. image: {
  25816. source: "./media/characters/erza-bear/tongue.svg"
  25817. }
  25818. },
  25819. dick: {
  25820. height: math.unit(10.5, "feet"),
  25821. name: "Dick",
  25822. image: {
  25823. source: "./media/characters/erza-bear/dick.svg"
  25824. }
  25825. },
  25826. dickVertical: {
  25827. height: math.unit(16.9, "feet"),
  25828. name: "Dick (Vertical)",
  25829. image: {
  25830. source: "./media/characters/erza-bear/dick-vertical.svg"
  25831. }
  25832. },
  25833. },
  25834. [
  25835. {
  25836. name: "Macro",
  25837. height: math.unit(100, "feet"),
  25838. default: true
  25839. },
  25840. ]
  25841. ))
  25842. characterMakers.push(() => makeCharacter(
  25843. { name: "Violet Flor", species: ["skunk"], tags: ["anthro"] },
  25844. {
  25845. front: {
  25846. height: math.unit(172, "cm"),
  25847. weight: math.unit(73, "kg"),
  25848. name: "Front",
  25849. image: {
  25850. source: "./media/characters/violet-flor/front.svg",
  25851. extra: 1474/1379,
  25852. bottom: 113/1587
  25853. }
  25854. },
  25855. back: {
  25856. height: math.unit(180, "cm"),
  25857. weight: math.unit(73, "kg"),
  25858. name: "Back",
  25859. image: {
  25860. source: "./media/characters/violet-flor/back.svg",
  25861. extra: 1660/1567,
  25862. bottom: 49/1709
  25863. }
  25864. },
  25865. },
  25866. [
  25867. {
  25868. name: "Normal",
  25869. height: math.unit(172, "cm"),
  25870. default: true
  25871. },
  25872. ]
  25873. ))
  25874. characterMakers.push(() => makeCharacter(
  25875. { name: "Lynn Rhea", species: ["shark"], tags: ["anthro"] },
  25876. {
  25877. front: {
  25878. height: math.unit(6, "feet"),
  25879. weight: math.unit(220, "lb"),
  25880. name: "Front",
  25881. image: {
  25882. source: "./media/characters/lynn-rhea/front.svg",
  25883. extra: 310 / 273
  25884. }
  25885. },
  25886. back: {
  25887. height: math.unit(6, "feet"),
  25888. weight: math.unit(220, "lb"),
  25889. name: "Back",
  25890. image: {
  25891. source: "./media/characters/lynn-rhea/back.svg",
  25892. extra: 310 / 273
  25893. }
  25894. },
  25895. dicks: {
  25896. height: math.unit(0.9, "feet"),
  25897. name: "Dicks",
  25898. image: {
  25899. source: "./media/characters/lynn-rhea/dicks.svg"
  25900. }
  25901. },
  25902. slit: {
  25903. height: math.unit(0.4, "feet"),
  25904. name: "Slit",
  25905. image: {
  25906. source: "./media/characters/lynn-rhea/slit.svg"
  25907. }
  25908. },
  25909. },
  25910. [
  25911. {
  25912. name: "Micro",
  25913. height: math.unit(1, "inch")
  25914. },
  25915. {
  25916. name: "Macro",
  25917. height: math.unit(60, "feet"),
  25918. default: true
  25919. },
  25920. {
  25921. name: "Megamacro",
  25922. height: math.unit(2, "miles")
  25923. },
  25924. {
  25925. name: "Gigamacro",
  25926. height: math.unit(3, "earths")
  25927. },
  25928. {
  25929. name: "Galactic",
  25930. height: math.unit(0.8, "galaxies")
  25931. },
  25932. ]
  25933. ))
  25934. characterMakers.push(() => makeCharacter(
  25935. { name: "Valathos", species: ["sea-monster"], tags: ["naga"] },
  25936. {
  25937. front: {
  25938. height: math.unit(1600, "feet"),
  25939. weight: math.unit(85758785169, "kg"),
  25940. name: "Front",
  25941. image: {
  25942. source: "./media/characters/valathos/front.svg",
  25943. extra: 1451 / 1339
  25944. }
  25945. },
  25946. },
  25947. [
  25948. {
  25949. name: "Macro",
  25950. height: math.unit(1600, "feet"),
  25951. default: true
  25952. },
  25953. ]
  25954. ))
  25955. characterMakers.push(() => makeCharacter(
  25956. { name: "Azula", species: ["demon"], tags: ["anthro"] },
  25957. {
  25958. front: {
  25959. height: math.unit(7 + 5 / 12, "feet"),
  25960. weight: math.unit(300, "lb"),
  25961. name: "Front",
  25962. image: {
  25963. source: "./media/characters/azula/front.svg",
  25964. extra: 3208 / 2880,
  25965. bottom: 80.2 / 3277
  25966. }
  25967. },
  25968. back: {
  25969. height: math.unit(7 + 5 / 12, "feet"),
  25970. weight: math.unit(300, "lb"),
  25971. name: "Back",
  25972. image: {
  25973. source: "./media/characters/azula/back.svg",
  25974. extra: 3169 / 2822,
  25975. bottom: 150.6 / 3321
  25976. }
  25977. },
  25978. },
  25979. [
  25980. {
  25981. name: "Normal",
  25982. height: math.unit(7 + 5 / 12, "feet"),
  25983. default: true
  25984. },
  25985. {
  25986. name: "Big",
  25987. height: math.unit(20, "feet")
  25988. },
  25989. ]
  25990. ))
  25991. characterMakers.push(() => makeCharacter(
  25992. { name: "Rupert", species: ["shark"], tags: ["anthro"] },
  25993. {
  25994. front: {
  25995. height: math.unit(5 + 1 / 12, "feet"),
  25996. weight: math.unit(110, "lb"),
  25997. name: "Front",
  25998. image: {
  25999. source: "./media/characters/rupert/front.svg",
  26000. extra: 1549 / 1495,
  26001. bottom: 54.2 / 1604.4
  26002. }
  26003. },
  26004. },
  26005. [
  26006. {
  26007. name: "Normal",
  26008. height: math.unit(5 + 1 / 12, "feet"),
  26009. default: true
  26010. },
  26011. ]
  26012. ))
  26013. characterMakers.push(() => makeCharacter(
  26014. { name: "Sheera Castellar", species: ["dragon"], tags: ["anthro", "taur"] },
  26015. {
  26016. front: {
  26017. height: math.unit(8 + 4 / 12, "feet"),
  26018. weight: math.unit(350, "lb"),
  26019. name: "Front",
  26020. image: {
  26021. source: "./media/characters/sheera-castellar/front.svg",
  26022. extra: 1957 / 1894,
  26023. bottom: 26.97 / 1975.017
  26024. }
  26025. },
  26026. side: {
  26027. height: math.unit(8 + 4 / 12, "feet"),
  26028. weight: math.unit(350, "lb"),
  26029. name: "Side",
  26030. image: {
  26031. source: "./media/characters/sheera-castellar/side.svg",
  26032. extra: 1957 / 1894
  26033. }
  26034. },
  26035. back: {
  26036. height: math.unit(8 + 4 / 12, "feet"),
  26037. weight: math.unit(350, "lb"),
  26038. name: "Back",
  26039. image: {
  26040. source: "./media/characters/sheera-castellar/back.svg",
  26041. extra: 1957 / 1894
  26042. }
  26043. },
  26044. angled: {
  26045. height: math.unit((8 + 4 / 12) * (1 - 68 / 1875), "feet"),
  26046. weight: math.unit(350, "lb"),
  26047. name: "Angled",
  26048. image: {
  26049. source: "./media/characters/sheera-castellar/angled.svg",
  26050. extra: 1807 / 1707,
  26051. bottom: 68 / 1875
  26052. }
  26053. },
  26054. genitals: {
  26055. height: math.unit(2.2, "feet"),
  26056. name: "Genitals",
  26057. image: {
  26058. source: "./media/characters/sheera-castellar/genitals.svg"
  26059. }
  26060. },
  26061. taur: {
  26062. height: math.unit(10 + 6/12, "feet"),
  26063. name: "Taur",
  26064. image: {
  26065. source: "./media/characters/sheera-castellar/taur.svg",
  26066. extra: 2017/1909,
  26067. bottom: 185/2202
  26068. }
  26069. },
  26070. },
  26071. [
  26072. {
  26073. name: "Normal",
  26074. height: math.unit(8 + 4 / 12, "feet")
  26075. },
  26076. {
  26077. name: "Macro",
  26078. height: math.unit(150, "feet"),
  26079. default: true
  26080. },
  26081. {
  26082. name: "Macro+",
  26083. height: math.unit(800, "feet")
  26084. },
  26085. ]
  26086. ))
  26087. characterMakers.push(() => makeCharacter(
  26088. { name: "Jaipur", species: ["black-panther"], 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/jaipur/front.svg",
  26096. extra: 3860 / 3731,
  26097. bottom: 287 / 4140
  26098. }
  26099. },
  26100. back: {
  26101. height: math.unit(6, "feet"),
  26102. weight: math.unit(150, "lb"),
  26103. name: "Back",
  26104. image: {
  26105. source: "./media/characters/jaipur/back.svg",
  26106. extra: 1637/1561,
  26107. bottom: 154/1791
  26108. }
  26109. },
  26110. },
  26111. [
  26112. {
  26113. name: "Normal",
  26114. height: math.unit(1.85, "meters"),
  26115. default: true
  26116. },
  26117. {
  26118. name: "Macro",
  26119. height: math.unit(150, "meters")
  26120. },
  26121. {
  26122. name: "Macro+",
  26123. height: math.unit(0.5, "miles")
  26124. },
  26125. {
  26126. name: "Macro++",
  26127. height: math.unit(2.5, "miles")
  26128. },
  26129. {
  26130. name: "Macro+++",
  26131. height: math.unit(12, "miles")
  26132. },
  26133. {
  26134. name: "Macro++++",
  26135. height: math.unit(120, "miles")
  26136. },
  26137. {
  26138. name: "Macro+++++",
  26139. height: math.unit(1200, "miles")
  26140. },
  26141. ]
  26142. ))
  26143. characterMakers.push(() => makeCharacter(
  26144. { name: "Sheila (Wolf)", species: ["wolf"], tags: ["anthro"] },
  26145. {
  26146. front: {
  26147. height: math.unit(6, "feet"),
  26148. weight: math.unit(150, "lb"),
  26149. name: "Front",
  26150. image: {
  26151. source: "./media/characters/sheila-wolf/front.svg",
  26152. extra: 1931 / 1808,
  26153. bottom: 29.5 / 1960
  26154. }
  26155. },
  26156. dick: {
  26157. height: math.unit(1.464, "feet"),
  26158. name: "Dick",
  26159. image: {
  26160. source: "./media/characters/sheila-wolf/dick.svg"
  26161. }
  26162. },
  26163. muzzle: {
  26164. height: math.unit(0.513, "feet"),
  26165. name: "Muzzle",
  26166. image: {
  26167. source: "./media/characters/sheila-wolf/muzzle.svg"
  26168. }
  26169. },
  26170. },
  26171. [
  26172. {
  26173. name: "Macro",
  26174. height: math.unit(70, "feet"),
  26175. default: true
  26176. },
  26177. ]
  26178. ))
  26179. characterMakers.push(() => makeCharacter(
  26180. { name: "Almor", species: ["dragon"], tags: ["anthro"] },
  26181. {
  26182. front: {
  26183. height: math.unit(32, "meters"),
  26184. weight: math.unit(300000, "kg"),
  26185. name: "Front",
  26186. image: {
  26187. source: "./media/characters/almor/front.svg",
  26188. extra: 1408 / 1322,
  26189. bottom: 94.6 / 1506.5
  26190. }
  26191. },
  26192. },
  26193. [
  26194. {
  26195. name: "Macro",
  26196. height: math.unit(32, "meters"),
  26197. default: true
  26198. },
  26199. ]
  26200. ))
  26201. characterMakers.push(() => makeCharacter(
  26202. { name: "Silver", species: ["shark"], tags: ["anthro"] },
  26203. {
  26204. front: {
  26205. height: math.unit(7, "feet"),
  26206. weight: math.unit(200, "lb"),
  26207. name: "Front",
  26208. image: {
  26209. source: "./media/characters/silver/front.svg",
  26210. extra: 472.1 / 450.5,
  26211. bottom: 26.5 / 499.424
  26212. }
  26213. },
  26214. },
  26215. [
  26216. {
  26217. name: "Normal",
  26218. height: math.unit(7, "feet"),
  26219. default: true
  26220. },
  26221. {
  26222. name: "Macro",
  26223. height: math.unit(800, "feet")
  26224. },
  26225. {
  26226. name: "Megamacro",
  26227. height: math.unit(250, "miles")
  26228. },
  26229. ]
  26230. ))
  26231. characterMakers.push(() => makeCharacter(
  26232. { name: "Pliskin", species: ["cat"], tags: ["anthro"] },
  26233. {
  26234. front: {
  26235. height: math.unit(6, "feet"),
  26236. weight: math.unit(150, "lb"),
  26237. name: "Front",
  26238. image: {
  26239. source: "./media/characters/pliskin/front.svg",
  26240. extra: 1469 / 1359,
  26241. bottom: 70 / 1540
  26242. }
  26243. },
  26244. },
  26245. [
  26246. {
  26247. name: "Micro",
  26248. height: math.unit(3, "inches")
  26249. },
  26250. {
  26251. name: "Normal",
  26252. height: math.unit(5 + 11 / 12, "feet"),
  26253. default: true
  26254. },
  26255. {
  26256. name: "Macro",
  26257. height: math.unit(120, "feet")
  26258. },
  26259. ]
  26260. ))
  26261. characterMakers.push(() => makeCharacter(
  26262. { name: "Sammy", species: ["samurott"], tags: ["anthro"] },
  26263. {
  26264. front: {
  26265. height: math.unit(6, "feet"),
  26266. weight: math.unit(150, "lb"),
  26267. name: "Front",
  26268. image: {
  26269. source: "./media/characters/sammy/front.svg",
  26270. extra: 1193 / 1089,
  26271. bottom: 30.5 / 1226
  26272. }
  26273. },
  26274. },
  26275. [
  26276. {
  26277. name: "Macro",
  26278. height: math.unit(1700, "feet"),
  26279. default: true
  26280. },
  26281. {
  26282. name: "Examacro",
  26283. height: math.unit(2.5e9, "lightyears")
  26284. },
  26285. ]
  26286. ))
  26287. characterMakers.push(() => makeCharacter(
  26288. { name: "Kuru", species: ["umbra"], tags: ["anthro"] },
  26289. {
  26290. front: {
  26291. height: math.unit(21, "meters"),
  26292. weight: math.unit(12, "tonnes"),
  26293. name: "Front",
  26294. image: {
  26295. source: "./media/characters/kuru/front.svg",
  26296. extra: 4301 / 3785,
  26297. bottom: 371.3 / 4691
  26298. }
  26299. },
  26300. },
  26301. [
  26302. {
  26303. name: "Macro",
  26304. height: math.unit(21, "meters"),
  26305. default: true
  26306. },
  26307. ]
  26308. ))
  26309. characterMakers.push(() => makeCharacter(
  26310. { name: "Rakka", species: ["umbra"], tags: ["anthro"] },
  26311. {
  26312. front: {
  26313. height: math.unit(23, "meters"),
  26314. weight: math.unit(12.2, "tonnes"),
  26315. name: "Front",
  26316. image: {
  26317. source: "./media/characters/rakka/front.svg",
  26318. extra: 4670 / 4169,
  26319. bottom: 301 / 4968.7
  26320. }
  26321. },
  26322. },
  26323. [
  26324. {
  26325. name: "Macro",
  26326. height: math.unit(23, "meters"),
  26327. default: true
  26328. },
  26329. ]
  26330. ))
  26331. characterMakers.push(() => makeCharacter(
  26332. { name: "Rhys (Feline)", species: ["cat"], tags: ["anthro"] },
  26333. {
  26334. front: {
  26335. height: math.unit(6, "feet"),
  26336. weight: math.unit(150, "lb"),
  26337. name: "Front",
  26338. image: {
  26339. source: "./media/characters/rhys-feline/front.svg",
  26340. extra: 2488 / 2308,
  26341. bottom: 35.67 / 2519.19
  26342. }
  26343. },
  26344. },
  26345. [
  26346. {
  26347. name: "Really Small",
  26348. height: math.unit(1, "nm")
  26349. },
  26350. {
  26351. name: "Micro",
  26352. height: math.unit(4, "inches")
  26353. },
  26354. {
  26355. name: "Normal",
  26356. height: math.unit(4 + 10 / 12, "feet"),
  26357. default: true
  26358. },
  26359. {
  26360. name: "Macro",
  26361. height: math.unit(100, "feet")
  26362. },
  26363. {
  26364. name: "Megamacto",
  26365. height: math.unit(50, "miles")
  26366. },
  26367. ]
  26368. ))
  26369. characterMakers.push(() => makeCharacter(
  26370. { name: "Alydar", species: ["raven", "snow-leopard"], tags: ["feral"] },
  26371. {
  26372. side: {
  26373. height: math.unit(30, "feet"),
  26374. weight: math.unit(35000, "kg"),
  26375. name: "Side",
  26376. image: {
  26377. source: "./media/characters/alydar/side.svg",
  26378. extra: 234 / 222,
  26379. bottom: 6.5 / 241
  26380. }
  26381. },
  26382. front: {
  26383. height: math.unit(30, "feet"),
  26384. weight: math.unit(35000, "kg"),
  26385. name: "Front",
  26386. image: {
  26387. source: "./media/characters/alydar/front.svg",
  26388. extra: 223.37 / 210.2,
  26389. bottom: 22.3 / 246.76
  26390. }
  26391. },
  26392. top: {
  26393. height: math.unit(64.54, "feet"),
  26394. weight: math.unit(35000, "kg"),
  26395. name: "Top",
  26396. image: {
  26397. source: "./media/characters/alydar/top.svg"
  26398. }
  26399. },
  26400. anthro: {
  26401. height: math.unit(30, "feet"),
  26402. weight: math.unit(9000, "kg"),
  26403. name: "Anthro",
  26404. image: {
  26405. source: "./media/characters/alydar/anthro.svg",
  26406. extra: 432 / 421,
  26407. bottom: 7.18 / 440
  26408. }
  26409. },
  26410. maw: {
  26411. height: math.unit(11.693, "feet"),
  26412. name: "Maw",
  26413. image: {
  26414. source: "./media/characters/alydar/maw.svg"
  26415. }
  26416. },
  26417. head: {
  26418. height: math.unit(11.693, "feet"),
  26419. name: "Head",
  26420. image: {
  26421. source: "./media/characters/alydar/head.svg"
  26422. }
  26423. },
  26424. headAlt: {
  26425. height: math.unit(12.861, "feet"),
  26426. name: "Head (Alt)",
  26427. image: {
  26428. source: "./media/characters/alydar/head-alt.svg"
  26429. }
  26430. },
  26431. wing: {
  26432. height: math.unit(20.712, "feet"),
  26433. name: "Wing",
  26434. image: {
  26435. source: "./media/characters/alydar/wing.svg"
  26436. }
  26437. },
  26438. wingFeather: {
  26439. height: math.unit(9.662, "feet"),
  26440. name: "Wing Feather",
  26441. image: {
  26442. source: "./media/characters/alydar/wing-feather.svg"
  26443. }
  26444. },
  26445. countourFeather: {
  26446. height: math.unit(4.154, "feet"),
  26447. name: "Contour Feather",
  26448. image: {
  26449. source: "./media/characters/alydar/contour-feather.svg"
  26450. }
  26451. },
  26452. },
  26453. [
  26454. {
  26455. name: "Diplomatic",
  26456. height: math.unit(13, "feet"),
  26457. default: true
  26458. },
  26459. {
  26460. name: "Small",
  26461. height: math.unit(30, "feet")
  26462. },
  26463. {
  26464. name: "Normal",
  26465. height: math.unit(95, "feet"),
  26466. default: true
  26467. },
  26468. {
  26469. name: "Large",
  26470. height: math.unit(285, "feet")
  26471. },
  26472. {
  26473. name: "Incomprehensible",
  26474. height: math.unit(450, "megameters")
  26475. },
  26476. ]
  26477. ))
  26478. characterMakers.push(() => makeCharacter(
  26479. { name: "Selicia", species: ["dragon"], tags: ["feral"] },
  26480. {
  26481. side: {
  26482. height: math.unit(11, "feet"),
  26483. weight: math.unit(1750, "kg"),
  26484. name: "Side",
  26485. image: {
  26486. source: "./media/characters/selicia/side.svg",
  26487. extra: 440 / 396,
  26488. bottom: 24.8 / 465.979
  26489. }
  26490. },
  26491. maw: {
  26492. height: math.unit(4.665, "feet"),
  26493. name: "Maw",
  26494. image: {
  26495. source: "./media/characters/selicia/maw.svg"
  26496. }
  26497. },
  26498. },
  26499. [
  26500. {
  26501. name: "Normal",
  26502. height: math.unit(11, "feet"),
  26503. default: true
  26504. },
  26505. ]
  26506. ))
  26507. characterMakers.push(() => makeCharacter(
  26508. { name: "Layla", species: ["zorua", "vulpix", "dragon"], tags: ["feral"] },
  26509. {
  26510. side: {
  26511. height: math.unit(2 + 6 / 12, "feet"),
  26512. weight: math.unit(30, "lb"),
  26513. name: "Side",
  26514. image: {
  26515. source: "./media/characters/layla/side.svg",
  26516. extra: 244 / 188,
  26517. bottom: 18.2 / 262.1
  26518. }
  26519. },
  26520. back: {
  26521. height: math.unit(2 + 6 / 12, "feet"),
  26522. weight: math.unit(30, "lb"),
  26523. name: "Back",
  26524. image: {
  26525. source: "./media/characters/layla/back.svg",
  26526. extra: 308 / 241.5,
  26527. bottom: 8.9 / 316.8
  26528. }
  26529. },
  26530. cumming: {
  26531. height: math.unit(2 + 6 / 12, "feet"),
  26532. weight: math.unit(30, "lb"),
  26533. name: "Cumming",
  26534. image: {
  26535. source: "./media/characters/layla/cumming.svg",
  26536. extra: 342 / 279,
  26537. bottom: 595 / 938
  26538. }
  26539. },
  26540. dickFlaccid: {
  26541. height: math.unit(2.595, "feet"),
  26542. name: "Flaccid Genitals",
  26543. image: {
  26544. source: "./media/characters/layla/dick-flaccid.svg"
  26545. }
  26546. },
  26547. dickErect: {
  26548. height: math.unit(2.359, "feet"),
  26549. name: "Erect Genitals",
  26550. image: {
  26551. source: "./media/characters/layla/dick-erect.svg"
  26552. }
  26553. },
  26554. dragon: {
  26555. height: math.unit(40, "feet"),
  26556. name: "Dragon",
  26557. image: {
  26558. source: "./media/characters/layla/dragon.svg",
  26559. extra: 610/535,
  26560. bottom: 367/977
  26561. }
  26562. },
  26563. taur: {
  26564. height: math.unit(30, "feet"),
  26565. name: "Taur",
  26566. image: {
  26567. source: "./media/characters/layla/taur.svg",
  26568. extra: 1268/1199,
  26569. bottom: 112/1380
  26570. }
  26571. },
  26572. },
  26573. [
  26574. {
  26575. name: "Micro",
  26576. height: math.unit(1, "inch")
  26577. },
  26578. {
  26579. name: "Small",
  26580. height: math.unit(1, "foot")
  26581. },
  26582. {
  26583. name: "Normal",
  26584. height: math.unit(2 + 6 / 12, "feet"),
  26585. default: true
  26586. },
  26587. {
  26588. name: "Macro",
  26589. height: math.unit(200, "feet")
  26590. },
  26591. {
  26592. name: "Megamacro",
  26593. height: math.unit(1000, "miles")
  26594. },
  26595. {
  26596. name: "Planetary",
  26597. height: math.unit(8000, "miles")
  26598. },
  26599. {
  26600. name: "True Layla",
  26601. height: math.unit(200000 * 7, "multiverses")
  26602. },
  26603. ]
  26604. ))
  26605. characterMakers.push(() => makeCharacter(
  26606. { name: "Knox", species: ["arcanine", "houndoom"], tags: ["feral"] },
  26607. {
  26608. back: {
  26609. height: math.unit(10.5, "feet"),
  26610. weight: math.unit(800, "lb"),
  26611. name: "Back",
  26612. image: {
  26613. source: "./media/characters/knox/back.svg",
  26614. extra: 1486 / 1089,
  26615. bottom: 107 / 1601.4
  26616. }
  26617. },
  26618. side: {
  26619. height: math.unit(10.5, "feet"),
  26620. weight: math.unit(800, "lb"),
  26621. name: "Side",
  26622. image: {
  26623. source: "./media/characters/knox/side.svg",
  26624. extra: 244 / 218,
  26625. bottom: 14 / 260
  26626. }
  26627. },
  26628. },
  26629. [
  26630. {
  26631. name: "Compact",
  26632. height: math.unit(10.5, "feet"),
  26633. default: true
  26634. },
  26635. {
  26636. name: "Dynamax",
  26637. height: math.unit(210, "feet")
  26638. },
  26639. {
  26640. name: "Full Macro",
  26641. height: math.unit(850, "feet")
  26642. },
  26643. ]
  26644. ))
  26645. characterMakers.push(() => makeCharacter(
  26646. { name: "Kayda", species: ["dragon"], tags: ["anthro"] },
  26647. {
  26648. front: {
  26649. height: math.unit(28, "feet"),
  26650. weight: math.unit(10500, "lb"),
  26651. name: "Front",
  26652. image: {
  26653. source: "./media/characters/kayda/front.svg",
  26654. extra: 1536 / 1428,
  26655. bottom: 68.7 / 1603
  26656. }
  26657. },
  26658. back: {
  26659. height: math.unit(28, "feet"),
  26660. weight: math.unit(10500, "lb"),
  26661. name: "Back",
  26662. image: {
  26663. source: "./media/characters/kayda/back.svg",
  26664. extra: 1557 / 1464,
  26665. bottom: 39.5 / 1597.49
  26666. }
  26667. },
  26668. dick: {
  26669. height: math.unit(3.858, "feet"),
  26670. name: "Dick",
  26671. image: {
  26672. source: "./media/characters/kayda/dick.svg"
  26673. }
  26674. },
  26675. },
  26676. [
  26677. {
  26678. name: "Macro",
  26679. height: math.unit(28, "feet"),
  26680. default: true
  26681. },
  26682. ]
  26683. ))
  26684. characterMakers.push(() => makeCharacter(
  26685. { name: "Brian", species: ["barbary-lion"], tags: ["anthro"] },
  26686. {
  26687. front: {
  26688. height: math.unit(10 + 11 / 12, "feet"),
  26689. weight: math.unit(1400, "lb"),
  26690. name: "Front",
  26691. image: {
  26692. source: "./media/characters/brian/front.svg",
  26693. extra: 737 / 692,
  26694. bottom: 55.4 / 785
  26695. }
  26696. },
  26697. },
  26698. [
  26699. {
  26700. name: "Normal",
  26701. height: math.unit(10 + 11 / 12, "feet"),
  26702. default: true
  26703. },
  26704. ]
  26705. ))
  26706. characterMakers.push(() => makeCharacter(
  26707. { name: "Khemri", species: ["jackal"], tags: ["anthro"] },
  26708. {
  26709. front: {
  26710. height: math.unit(5 + 8 / 12, "feet"),
  26711. weight: math.unit(140, "lb"),
  26712. name: "Front",
  26713. image: {
  26714. source: "./media/characters/khemri/front.svg",
  26715. extra: 4780 / 4059,
  26716. bottom: 80.1 / 4859.25
  26717. }
  26718. },
  26719. },
  26720. [
  26721. {
  26722. name: "Micro",
  26723. height: math.unit(6, "inches")
  26724. },
  26725. {
  26726. name: "Normal",
  26727. height: math.unit(5 + 8 / 12, "feet"),
  26728. default: true
  26729. },
  26730. ]
  26731. ))
  26732. characterMakers.push(() => makeCharacter(
  26733. { name: "Felix Braveheart", species: ["cerberus", "wolf"], tags: ["anthro", "feral"] },
  26734. {
  26735. front: {
  26736. height: math.unit(13, "feet"),
  26737. weight: math.unit(1700, "lb"),
  26738. name: "Front",
  26739. image: {
  26740. source: "./media/characters/felix-braveheart/front.svg",
  26741. extra: 1222 / 1157,
  26742. bottom: 53.2 / 1280
  26743. }
  26744. },
  26745. back: {
  26746. height: math.unit(13, "feet"),
  26747. weight: math.unit(1700, "lb"),
  26748. name: "Back",
  26749. image: {
  26750. source: "./media/characters/felix-braveheart/back.svg",
  26751. extra: 1277 / 1203,
  26752. bottom: 50.2 / 1327
  26753. }
  26754. },
  26755. feral: {
  26756. height: math.unit(6, "feet"),
  26757. weight: math.unit(400, "lb"),
  26758. name: "Feral",
  26759. image: {
  26760. source: "./media/characters/felix-braveheart/feral.svg",
  26761. extra: 682 / 625,
  26762. bottom: 6.9 / 688
  26763. }
  26764. },
  26765. },
  26766. [
  26767. {
  26768. name: "Normal",
  26769. height: math.unit(13, "feet"),
  26770. default: true
  26771. },
  26772. ]
  26773. ))
  26774. characterMakers.push(() => makeCharacter(
  26775. { name: "Shadow Blade", species: ["horse"], tags: ["feral"] },
  26776. {
  26777. side: {
  26778. height: math.unit(5 + 11 / 12, "feet"),
  26779. weight: math.unit(1400, "lb"),
  26780. name: "Side",
  26781. image: {
  26782. source: "./media/characters/shadow-blade/side.svg",
  26783. extra: 1726 / 1267,
  26784. bottom: 58.4 / 1785
  26785. }
  26786. },
  26787. },
  26788. [
  26789. {
  26790. name: "Normal",
  26791. height: math.unit(5 + 11 / 12, "feet"),
  26792. default: true
  26793. },
  26794. ]
  26795. ))
  26796. characterMakers.push(() => makeCharacter(
  26797. { name: "Karla Halldor", species: ["nimbat"], tags: ["anthro"] },
  26798. {
  26799. front: {
  26800. height: math.unit(1 + 6 / 12, "feet"),
  26801. weight: math.unit(25, "lb"),
  26802. name: "Front",
  26803. image: {
  26804. source: "./media/characters/karla-halldor/front.svg",
  26805. extra: 1459 / 1383,
  26806. bottom: 12 / 1472
  26807. }
  26808. },
  26809. },
  26810. [
  26811. {
  26812. name: "Normal",
  26813. height: math.unit(1 + 6 / 12, "feet"),
  26814. default: true
  26815. },
  26816. ]
  26817. ))
  26818. characterMakers.push(() => makeCharacter(
  26819. { name: "Ariam", species: ["dragon"], tags: ["anthro"] },
  26820. {
  26821. front: {
  26822. height: math.unit(6 + 2 / 12, "feet"),
  26823. weight: math.unit(160, "lb"),
  26824. name: "Front",
  26825. image: {
  26826. source: "./media/characters/ariam/front.svg",
  26827. extra: 1073/976,
  26828. bottom: 52/1125
  26829. }
  26830. },
  26831. back: {
  26832. height: math.unit(6 + 2/12, "feet"),
  26833. weight: math.unit(160, "lb"),
  26834. name: "Back",
  26835. image: {
  26836. source: "./media/characters/ariam/back.svg",
  26837. extra: 1103/1023,
  26838. bottom: 9/1112
  26839. }
  26840. },
  26841. dressed: {
  26842. height: math.unit(6 + 2/12, "feet"),
  26843. weight: math.unit(160, "lb"),
  26844. name: "Dressed",
  26845. image: {
  26846. source: "./media/characters/ariam/dressed.svg",
  26847. extra: 1099/1009,
  26848. bottom: 25/1124
  26849. }
  26850. },
  26851. squatting: {
  26852. height: math.unit(4.1, "feet"),
  26853. weight: math.unit(160, "lb"),
  26854. name: "Squatting",
  26855. image: {
  26856. source: "./media/characters/ariam/squatting.svg",
  26857. extra: 2617 / 2112,
  26858. bottom: 61.2 / 2681,
  26859. }
  26860. },
  26861. },
  26862. [
  26863. {
  26864. name: "Normal",
  26865. height: math.unit(6 + 2 / 12, "feet"),
  26866. default: true
  26867. },
  26868. {
  26869. name: "Normal+",
  26870. height: math.unit(4, "meters")
  26871. },
  26872. {
  26873. name: "Macro",
  26874. height: math.unit(50, "meters")
  26875. },
  26876. {
  26877. name: "Macro+",
  26878. height: math.unit(100, "meters")
  26879. },
  26880. {
  26881. name: "Megamacro",
  26882. height: math.unit(20, "km")
  26883. },
  26884. {
  26885. name: "Caretaker",
  26886. height: math.unit(444, "megameters")
  26887. },
  26888. ]
  26889. ))
  26890. characterMakers.push(() => makeCharacter(
  26891. { name: "Qodri Class-of-'Fortwelve-Six", species: ["wolxi"], tags: ["anthro"] },
  26892. {
  26893. front: {
  26894. height: math.unit(1.67, "meters"),
  26895. weight: math.unit(140, "lb"),
  26896. name: "Front",
  26897. image: {
  26898. source: "./media/characters/qodri-class-of-'fortwelve-six/front.svg",
  26899. extra: 438 / 410,
  26900. bottom: 0.75 / 439
  26901. }
  26902. },
  26903. },
  26904. [
  26905. {
  26906. name: "Shrunken",
  26907. height: math.unit(7.6, "cm")
  26908. },
  26909. {
  26910. name: "Human Scale",
  26911. height: math.unit(1.67, "meters")
  26912. },
  26913. {
  26914. name: "Wolxi Scale",
  26915. height: math.unit(36.7, "meters"),
  26916. default: true
  26917. },
  26918. ]
  26919. ))
  26920. characterMakers.push(() => makeCharacter(
  26921. { name: "Izue Two-Mothers", species: ["wolxi"], tags: ["anthro"] },
  26922. {
  26923. front: {
  26924. height: math.unit(1.73, "meters"),
  26925. weight: math.unit(240, "lb"),
  26926. name: "Front",
  26927. image: {
  26928. source: "./media/characters/izue-two-mothers/front.svg",
  26929. extra: 469 / 437,
  26930. bottom: 1.24 / 470.6
  26931. }
  26932. },
  26933. },
  26934. [
  26935. {
  26936. name: "Shrunken",
  26937. height: math.unit(7.86, "cm")
  26938. },
  26939. {
  26940. name: "Human Scale",
  26941. height: math.unit(1.73, "meters")
  26942. },
  26943. {
  26944. name: "Wolxi Scale",
  26945. height: math.unit(38, "meters"),
  26946. default: true
  26947. },
  26948. ]
  26949. ))
  26950. characterMakers.push(() => makeCharacter(
  26951. { name: "Teeku Love-Shack", species: ["wolxi"], tags: ["anthro"] },
  26952. {
  26953. front: {
  26954. height: math.unit(1.55, "meters"),
  26955. weight: math.unit(120, "lb"),
  26956. name: "Front",
  26957. image: {
  26958. source: "./media/characters/teeku-love-shack/front.svg",
  26959. extra: 387 / 362,
  26960. bottom: 1.51 / 388
  26961. }
  26962. },
  26963. },
  26964. [
  26965. {
  26966. name: "Shrunken",
  26967. height: math.unit(7, "cm")
  26968. },
  26969. {
  26970. name: "Human Scale",
  26971. height: math.unit(1.55, "meters")
  26972. },
  26973. {
  26974. name: "Wolxi Scale",
  26975. height: math.unit(34.1, "meters"),
  26976. default: true
  26977. },
  26978. ]
  26979. ))
  26980. characterMakers.push(() => makeCharacter(
  26981. { name: "Dejma the Red", species: ["wolxi"], tags: ["anthro"] },
  26982. {
  26983. front: {
  26984. height: math.unit(1.83, "meters"),
  26985. weight: math.unit(135, "lb"),
  26986. name: "Front",
  26987. image: {
  26988. source: "./media/characters/dejma-the-red/front.svg",
  26989. extra: 480 / 458,
  26990. bottom: 1.8 / 482
  26991. }
  26992. },
  26993. },
  26994. [
  26995. {
  26996. name: "Shrunken",
  26997. height: math.unit(8.3, "cm")
  26998. },
  26999. {
  27000. name: "Human Scale",
  27001. height: math.unit(1.83, "meters")
  27002. },
  27003. {
  27004. name: "Wolxi Scale",
  27005. height: math.unit(40, "meters"),
  27006. default: true
  27007. },
  27008. ]
  27009. ))
  27010. characterMakers.push(() => makeCharacter(
  27011. { name: "Aki", species: ["deer"], tags: ["anthro"] },
  27012. {
  27013. front: {
  27014. height: math.unit(1.78, "meters"),
  27015. weight: math.unit(65, "kg"),
  27016. name: "Front",
  27017. image: {
  27018. source: "./media/characters/aki/front.svg",
  27019. extra: 452 / 415
  27020. }
  27021. },
  27022. frontNsfw: {
  27023. height: math.unit(1.78, "meters"),
  27024. weight: math.unit(65, "kg"),
  27025. name: "Front (NSFW)",
  27026. image: {
  27027. source: "./media/characters/aki/front-nsfw.svg",
  27028. extra: 452 / 415
  27029. }
  27030. },
  27031. back: {
  27032. height: math.unit(1.78, "meters"),
  27033. weight: math.unit(65, "kg"),
  27034. name: "Back",
  27035. image: {
  27036. source: "./media/characters/aki/back.svg",
  27037. extra: 452 / 415
  27038. }
  27039. },
  27040. rump: {
  27041. height: math.unit(2.05, "feet"),
  27042. name: "Rump",
  27043. image: {
  27044. source: "./media/characters/aki/rump.svg"
  27045. }
  27046. },
  27047. dick: {
  27048. height: math.unit(0.95, "feet"),
  27049. name: "Dick",
  27050. image: {
  27051. source: "./media/characters/aki/dick.svg"
  27052. }
  27053. },
  27054. },
  27055. [
  27056. {
  27057. name: "Micro",
  27058. height: math.unit(15, "cm")
  27059. },
  27060. {
  27061. name: "Normal",
  27062. height: math.unit(178, "cm"),
  27063. default: true
  27064. },
  27065. {
  27066. name: "Macro",
  27067. height: math.unit(214, "m")
  27068. },
  27069. {
  27070. name: "Macro+",
  27071. height: math.unit(534, "m")
  27072. },
  27073. ]
  27074. ))
  27075. characterMakers.push(() => makeCharacter(
  27076. { name: "Ari", species: ["catgirl"], tags: ["anthro"] },
  27077. {
  27078. front: {
  27079. height: math.unit(5 + 5 / 12, "feet"),
  27080. weight: math.unit(120, "lb"),
  27081. name: "Front",
  27082. image: {
  27083. source: "./media/characters/ari/front.svg",
  27084. extra: 1550/1471,
  27085. bottom: 39/1589
  27086. }
  27087. },
  27088. },
  27089. [
  27090. {
  27091. name: "Normal",
  27092. height: math.unit(5 + 5 / 12, "feet")
  27093. },
  27094. {
  27095. name: "Macro",
  27096. height: math.unit(100, "feet"),
  27097. default: true
  27098. },
  27099. {
  27100. name: "Megamacro",
  27101. height: math.unit(100, "miles")
  27102. },
  27103. {
  27104. name: "Gigamacro",
  27105. height: math.unit(80000, "miles")
  27106. },
  27107. ]
  27108. ))
  27109. characterMakers.push(() => makeCharacter(
  27110. { name: "Bolt", species: ["keldeo"], tags: ["feral"] },
  27111. {
  27112. side: {
  27113. height: math.unit(9, "feet"),
  27114. weight: math.unit(400, "kg"),
  27115. name: "Side",
  27116. image: {
  27117. source: "./media/characters/bolt/side.svg",
  27118. extra: 1126 / 896,
  27119. bottom: 60 / 1187.3,
  27120. }
  27121. },
  27122. },
  27123. [
  27124. {
  27125. name: "Micro",
  27126. height: math.unit(5, "inches")
  27127. },
  27128. {
  27129. name: "Normal",
  27130. height: math.unit(9, "feet"),
  27131. default: true
  27132. },
  27133. {
  27134. name: "Macro",
  27135. height: math.unit(700, "feet")
  27136. },
  27137. {
  27138. name: "Max Size",
  27139. height: math.unit(1.52e22, "yottameters")
  27140. },
  27141. ]
  27142. ))
  27143. characterMakers.push(() => makeCharacter(
  27144. { name: "Draekon Sylviar", species: ["dra'gal"], tags: ["anthro"] },
  27145. {
  27146. front: {
  27147. height: math.unit(4.3, "meters"),
  27148. weight: math.unit(3, "tons"),
  27149. name: "Front",
  27150. image: {
  27151. source: "./media/characters/draekon-sylviar/front.svg",
  27152. extra: 2072/1512,
  27153. bottom: 74/2146
  27154. }
  27155. },
  27156. back: {
  27157. height: math.unit(4.3, "meters"),
  27158. weight: math.unit(3, "tons"),
  27159. name: "Back",
  27160. image: {
  27161. source: "./media/characters/draekon-sylviar/back.svg",
  27162. extra: 1639/1483,
  27163. bottom: 41/1680
  27164. }
  27165. },
  27166. feral: {
  27167. height: math.unit(1.15, "meters"),
  27168. weight: math.unit(3, "tons"),
  27169. name: "Feral",
  27170. image: {
  27171. source: "./media/characters/draekon-sylviar/feral.svg",
  27172. extra: 1033/395,
  27173. bottom: 130/1163
  27174. }
  27175. },
  27176. maw: {
  27177. height: math.unit(1.3, "meters"),
  27178. name: "Maw",
  27179. image: {
  27180. source: "./media/characters/draekon-sylviar/maw.svg"
  27181. }
  27182. },
  27183. mawSeparated: {
  27184. height: math.unit(1.53, "meters"),
  27185. name: "Separated Maw",
  27186. image: {
  27187. source: "./media/characters/draekon-sylviar/maw-separated.svg"
  27188. }
  27189. },
  27190. tail: {
  27191. height: math.unit(1.15, "meters"),
  27192. name: "Tail",
  27193. image: {
  27194. source: "./media/characters/draekon-sylviar/tail.svg"
  27195. }
  27196. },
  27197. tailDick: {
  27198. height: math.unit(1.15, "meters"),
  27199. name: "Tail (Dick)",
  27200. image: {
  27201. source: "./media/characters/draekon-sylviar/tail-dick.svg"
  27202. }
  27203. },
  27204. tailDickSeparated: {
  27205. height: math.unit(1.19, "meters"),
  27206. name: "Tail (Separated Dick)",
  27207. image: {
  27208. source: "./media/characters/draekon-sylviar/tail-dick-separated.svg"
  27209. }
  27210. },
  27211. slit: {
  27212. height: math.unit(1, "meters"),
  27213. name: "Slit",
  27214. image: {
  27215. source: "./media/characters/draekon-sylviar/slit.svg"
  27216. }
  27217. },
  27218. dick: {
  27219. height: math.unit(1.15, "meters"),
  27220. name: "Dick",
  27221. image: {
  27222. source: "./media/characters/draekon-sylviar/dick.svg"
  27223. }
  27224. },
  27225. dickSeparated: {
  27226. height: math.unit(1.1, "meters"),
  27227. name: "Separated Dick",
  27228. image: {
  27229. source: "./media/characters/draekon-sylviar/dick-separated.svg"
  27230. }
  27231. },
  27232. sheath: {
  27233. height: math.unit(1.15, "meters"),
  27234. name: "Sheath",
  27235. image: {
  27236. source: "./media/characters/draekon-sylviar/sheath.svg"
  27237. }
  27238. },
  27239. },
  27240. [
  27241. {
  27242. name: "Small",
  27243. height: math.unit(4.53 / 2, "meters"),
  27244. default: true
  27245. },
  27246. {
  27247. name: "Normal",
  27248. height: math.unit(4.53, "meters"),
  27249. default: true
  27250. },
  27251. {
  27252. name: "Large",
  27253. height: math.unit(4.53 * 2, "meters"),
  27254. },
  27255. ]
  27256. ))
  27257. characterMakers.push(() => makeCharacter(
  27258. { name: "Brawler", species: ["german-shepherd"], tags: ["anthro"] },
  27259. {
  27260. front: {
  27261. height: math.unit(6 + 2 / 12, "feet"),
  27262. weight: math.unit(180, "lb"),
  27263. name: "Front",
  27264. image: {
  27265. source: "./media/characters/brawler/front.svg",
  27266. extra: 3301 / 3027,
  27267. bottom: 138 / 3439
  27268. }
  27269. },
  27270. },
  27271. [
  27272. {
  27273. name: "Normal",
  27274. height: math.unit(6 + 2 / 12, "feet"),
  27275. default: true
  27276. },
  27277. ]
  27278. ))
  27279. characterMakers.push(() => makeCharacter(
  27280. { name: "Alex", species: ["bayleef"], tags: ["anthro"] },
  27281. {
  27282. front: {
  27283. height: math.unit(11, "feet"),
  27284. weight: math.unit(1000, "lb"),
  27285. name: "Front",
  27286. image: {
  27287. source: "./media/characters/alex/front.svg",
  27288. bottom: 44.5 / 620
  27289. }
  27290. },
  27291. },
  27292. [
  27293. {
  27294. name: "Micro",
  27295. height: math.unit(5, "inches")
  27296. },
  27297. {
  27298. name: "Normal",
  27299. height: math.unit(11, "feet"),
  27300. default: true
  27301. },
  27302. {
  27303. name: "Macro",
  27304. height: math.unit(9.5e9, "feet")
  27305. },
  27306. {
  27307. name: "Max Size",
  27308. height: math.unit(1.4e283, "yottameters")
  27309. },
  27310. ]
  27311. ))
  27312. characterMakers.push(() => makeCharacter(
  27313. { name: "Zenari", species: ["zenari"], tags: ["anthro"] },
  27314. {
  27315. female: {
  27316. height: math.unit(29.9, "m"),
  27317. weight: math.unit(Math.pow((29.9 / 2), 3) * 80, "kg"),
  27318. name: "Female",
  27319. image: {
  27320. source: "./media/characters/zenari/female.svg",
  27321. extra: 3281.6 / 3217,
  27322. bottom: 72.2 / 3353
  27323. }
  27324. },
  27325. male: {
  27326. height: math.unit(27.7, "m"),
  27327. weight: math.unit(Math.pow((27.7 / 2), 3) * 80, "kg"),
  27328. name: "Male",
  27329. image: {
  27330. source: "./media/characters/zenari/male.svg",
  27331. extra: 3008 / 2991,
  27332. bottom: 54.6 / 3069
  27333. }
  27334. },
  27335. },
  27336. [
  27337. {
  27338. name: "Macro",
  27339. height: math.unit(29.7, "meters"),
  27340. default: true
  27341. },
  27342. ]
  27343. ))
  27344. characterMakers.push(() => makeCharacter(
  27345. { name: "Mactarian", species: ["mactarian"], tags: ["anthro"] },
  27346. {
  27347. female: {
  27348. height: math.unit(23.8, "m"),
  27349. weight: math.unit(Math.pow((23.8 / 2), 3) * 80, "kg"),
  27350. name: "Female",
  27351. image: {
  27352. source: "./media/characters/mactarian/female.svg",
  27353. extra: 2662 / 2569,
  27354. bottom: 73 / 2736
  27355. }
  27356. },
  27357. male: {
  27358. height: math.unit(23.8, "m"),
  27359. weight: math.unit(Math.pow((23.8 / 2), 3) * 80, "kg"),
  27360. name: "Male",
  27361. image: {
  27362. source: "./media/characters/mactarian/male.svg",
  27363. extra: 2673 / 2600,
  27364. bottom: 76 / 2750
  27365. }
  27366. },
  27367. },
  27368. [
  27369. {
  27370. name: "Macro",
  27371. height: math.unit(23.8, "meters"),
  27372. default: true
  27373. },
  27374. ]
  27375. ))
  27376. characterMakers.push(() => makeCharacter(
  27377. { name: "Umok", species: ["umok"], tags: ["anthro"] },
  27378. {
  27379. female: {
  27380. height: math.unit(19.3, "m"),
  27381. weight: math.unit(Math.pow((19.3 / 2), 3) * 60, "kg"),
  27382. name: "Female",
  27383. image: {
  27384. source: "./media/characters/umok/female.svg",
  27385. extra: 2186 / 2078,
  27386. bottom: 87 / 2277
  27387. }
  27388. },
  27389. male: {
  27390. height: math.unit(19.5, "m"),
  27391. weight: math.unit(Math.pow((19.5 / 2), 3) * 60, "kg"),
  27392. name: "Male",
  27393. image: {
  27394. source: "./media/characters/umok/male.svg",
  27395. extra: 2233 / 2140,
  27396. bottom: 24.4 / 2258
  27397. }
  27398. },
  27399. },
  27400. [
  27401. {
  27402. name: "Macro",
  27403. height: math.unit(19.3, "meters"),
  27404. default: true
  27405. },
  27406. ]
  27407. ))
  27408. characterMakers.push(() => makeCharacter(
  27409. { name: "Joraxian", species: ["joraxian"], tags: ["anthro"] },
  27410. {
  27411. female: {
  27412. height: math.unit(26.15, "m"),
  27413. weight: math.unit(Math.pow((26.15 / 2), 3) * 85, "kg"),
  27414. name: "Female",
  27415. image: {
  27416. source: "./media/characters/joraxian/female.svg",
  27417. extra: 2912 / 2824,
  27418. bottom: 36 / 2956
  27419. }
  27420. },
  27421. male: {
  27422. height: math.unit(25.4, "m"),
  27423. weight: math.unit(Math.pow((25.4 / 2), 3) * 85, "kg"),
  27424. name: "Male",
  27425. image: {
  27426. source: "./media/characters/joraxian/male.svg",
  27427. extra: 2877 / 2721,
  27428. bottom: 82 / 2967
  27429. }
  27430. },
  27431. },
  27432. [
  27433. {
  27434. name: "Macro",
  27435. height: math.unit(26.15, "meters"),
  27436. default: true
  27437. },
  27438. ]
  27439. ))
  27440. characterMakers.push(() => makeCharacter(
  27441. { name: "Sthara", species: ["sthara"], tags: ["anthro"] },
  27442. {
  27443. female: {
  27444. height: math.unit(21.6, "m"),
  27445. weight: math.unit(Math.pow((21.6 / 2), 3) * 80, "kg"),
  27446. name: "Female",
  27447. image: {
  27448. source: "./media/characters/sthara/female.svg",
  27449. extra: 2516 / 2347,
  27450. bottom: 21.5 / 2537
  27451. }
  27452. },
  27453. male: {
  27454. height: math.unit(24, "m"),
  27455. weight: math.unit(Math.pow((24 / 2), 3) * 80, "kg"),
  27456. name: "Male",
  27457. image: {
  27458. source: "./media/characters/sthara/male.svg",
  27459. extra: 2732 / 2607,
  27460. bottom: 23 / 2732
  27461. }
  27462. },
  27463. },
  27464. [
  27465. {
  27466. name: "Macro",
  27467. height: math.unit(21.6, "meters"),
  27468. default: true
  27469. },
  27470. ]
  27471. ))
  27472. characterMakers.push(() => makeCharacter(
  27473. { name: "Luka Bryzant", species: ["german-shepherd"], tags: ["anthro"] },
  27474. {
  27475. front: {
  27476. height: math.unit(6 + 4 / 12, "feet"),
  27477. weight: math.unit(175, "lb"),
  27478. name: "Front",
  27479. image: {
  27480. source: "./media/characters/luka-bryzant/front.svg",
  27481. extra: 311 / 289,
  27482. bottom: 4 / 315
  27483. }
  27484. },
  27485. back: {
  27486. height: math.unit(6 + 4 / 12, "feet"),
  27487. weight: math.unit(175, "lb"),
  27488. name: "Back",
  27489. image: {
  27490. source: "./media/characters/luka-bryzant/back.svg",
  27491. extra: 311 / 289,
  27492. bottom: 3.8 / 313.7
  27493. }
  27494. },
  27495. },
  27496. [
  27497. {
  27498. name: "Micro",
  27499. height: math.unit(10, "inches")
  27500. },
  27501. {
  27502. name: "Normal",
  27503. height: math.unit(6 + 4 / 12, "feet"),
  27504. default: true
  27505. },
  27506. {
  27507. name: "Large",
  27508. height: math.unit(12, "feet")
  27509. },
  27510. ]
  27511. ))
  27512. characterMakers.push(() => makeCharacter(
  27513. { name: "Aman Aquila", species: ["husky", "german-shepherd"], tags: ["anthro"] },
  27514. {
  27515. front: {
  27516. height: math.unit(5 + 7 / 12, "feet"),
  27517. weight: math.unit(185, "lb"),
  27518. name: "Front",
  27519. image: {
  27520. source: "./media/characters/aman-aquila/front.svg",
  27521. extra: 1013 / 976,
  27522. bottom: 45.6 / 1057
  27523. }
  27524. },
  27525. side: {
  27526. height: math.unit(5 + 7 / 12, "feet"),
  27527. weight: math.unit(185, "lb"),
  27528. name: "Side",
  27529. image: {
  27530. source: "./media/characters/aman-aquila/side.svg",
  27531. extra: 1054 / 1011,
  27532. bottom: 15 / 1070
  27533. }
  27534. },
  27535. back: {
  27536. height: math.unit(5 + 7 / 12, "feet"),
  27537. weight: math.unit(185, "lb"),
  27538. name: "Back",
  27539. image: {
  27540. source: "./media/characters/aman-aquila/back.svg",
  27541. extra: 1026 / 970,
  27542. bottom: 12 / 1039
  27543. }
  27544. },
  27545. head: {
  27546. height: math.unit(1.211, "feet"),
  27547. name: "Head",
  27548. image: {
  27549. source: "./media/characters/aman-aquila/head.svg",
  27550. }
  27551. },
  27552. },
  27553. [
  27554. {
  27555. name: "Minimicro",
  27556. height: math.unit(0.057, "inches")
  27557. },
  27558. {
  27559. name: "Micro",
  27560. height: math.unit(7, "inches")
  27561. },
  27562. {
  27563. name: "Mini",
  27564. height: math.unit(3 + 7 / 12, "feet")
  27565. },
  27566. {
  27567. name: "Normal",
  27568. height: math.unit(5 + 7 / 12, "feet"),
  27569. default: true
  27570. },
  27571. {
  27572. name: "Macro",
  27573. height: math.unit(157 + 7 / 12, "feet")
  27574. },
  27575. {
  27576. name: "Megamacro",
  27577. height: math.unit(1557 + 7 / 12, "feet")
  27578. },
  27579. {
  27580. name: "Gigamacro",
  27581. height: math.unit(15557 + 7 / 12, "feet")
  27582. },
  27583. ]
  27584. ))
  27585. characterMakers.push(() => makeCharacter(
  27586. { name: "Hiphae", species: ["mouse"], tags: ["anthro"] },
  27587. {
  27588. front: {
  27589. height: math.unit(3 + 2 / 12, "inches"),
  27590. weight: math.unit(0.3, "ounces"),
  27591. name: "Front",
  27592. image: {
  27593. source: "./media/characters/hiphae/front.svg",
  27594. extra: 1931 / 1683,
  27595. bottom: 24 / 1955
  27596. }
  27597. },
  27598. },
  27599. [
  27600. {
  27601. name: "Normal",
  27602. height: math.unit(3 + 1 / 2, "inches"),
  27603. default: true
  27604. },
  27605. ]
  27606. ))
  27607. characterMakers.push(() => makeCharacter(
  27608. { name: "Nicky", species: ["shark"], tags: ["anthro"] },
  27609. {
  27610. front: {
  27611. height: math.unit(5 + 10 / 12, "feet"),
  27612. weight: math.unit(165, "lb"),
  27613. name: "Front",
  27614. image: {
  27615. source: "./media/characters/nicky/front.svg",
  27616. extra: 3144 / 2886,
  27617. bottom: 45.6 / 3192
  27618. }
  27619. },
  27620. back: {
  27621. height: math.unit(5 + 10 / 12, "feet"),
  27622. weight: math.unit(165, "lb"),
  27623. name: "Back",
  27624. image: {
  27625. source: "./media/characters/nicky/back.svg",
  27626. extra: 3055 / 2804,
  27627. bottom: 28.4 / 3087
  27628. }
  27629. },
  27630. frontclothed: {
  27631. height: math.unit(5 + 10 / 12, "feet"),
  27632. weight: math.unit(165, "lb"),
  27633. name: "Front-clothed",
  27634. image: {
  27635. source: "./media/characters/nicky/front-clothed.svg",
  27636. extra: 3184.9 / 2926.9,
  27637. bottom: 86.5 / 3239.9
  27638. }
  27639. },
  27640. foot: {
  27641. height: math.unit(1.16, "feet"),
  27642. name: "Foot",
  27643. image: {
  27644. source: "./media/characters/nicky/foot.svg"
  27645. }
  27646. },
  27647. feet: {
  27648. height: math.unit(1.34, "feet"),
  27649. name: "Feet",
  27650. image: {
  27651. source: "./media/characters/nicky/feet.svg"
  27652. }
  27653. },
  27654. maw: {
  27655. height: math.unit(0.9, "feet"),
  27656. name: "Maw",
  27657. image: {
  27658. source: "./media/characters/nicky/maw.svg"
  27659. }
  27660. },
  27661. },
  27662. [
  27663. {
  27664. name: "Normal",
  27665. height: math.unit(5 + 10 / 12, "feet"),
  27666. default: true
  27667. },
  27668. {
  27669. name: "Macro",
  27670. height: math.unit(60, "feet")
  27671. },
  27672. {
  27673. name: "Megamacro",
  27674. height: math.unit(1, "mile")
  27675. },
  27676. ]
  27677. ))
  27678. characterMakers.push(() => makeCharacter(
  27679. { name: "Blair", species: ["seal"], tags: ["taur"] },
  27680. {
  27681. side: {
  27682. height: math.unit(10, "feet"),
  27683. weight: math.unit(600, "lb"),
  27684. name: "Side",
  27685. image: {
  27686. source: "./media/characters/blair/side.svg",
  27687. bottom: 16.6 / 475,
  27688. extra: 458 / 431
  27689. }
  27690. },
  27691. },
  27692. [
  27693. {
  27694. name: "Micro",
  27695. height: math.unit(8, "inches")
  27696. },
  27697. {
  27698. name: "Normal",
  27699. height: math.unit(10, "feet"),
  27700. default: true
  27701. },
  27702. {
  27703. name: "Macro",
  27704. height: math.unit(180, "feet")
  27705. },
  27706. ]
  27707. ))
  27708. characterMakers.push(() => makeCharacter(
  27709. { name: "Fisher", species: ["dog", "fish"], tags: ["anthro"] },
  27710. {
  27711. front: {
  27712. height: math.unit(5 + 4 / 12, "feet"),
  27713. weight: math.unit(125, "lb"),
  27714. name: "Front",
  27715. image: {
  27716. source: "./media/characters/fisher/front.svg",
  27717. extra: 444 / 390,
  27718. bottom: 2 / 444.8
  27719. }
  27720. },
  27721. },
  27722. [
  27723. {
  27724. name: "Micro",
  27725. height: math.unit(4, "inches")
  27726. },
  27727. {
  27728. name: "Normal",
  27729. height: math.unit(5 + 4 / 12, "feet"),
  27730. default: true
  27731. },
  27732. {
  27733. name: "Macro",
  27734. height: math.unit(100, "feet")
  27735. },
  27736. ]
  27737. ))
  27738. characterMakers.push(() => makeCharacter(
  27739. { name: "Gliss", species: ["sergal"], tags: ["anthro"] },
  27740. {
  27741. front: {
  27742. height: math.unit(6.71, "feet"),
  27743. weight: math.unit(200, "lb"),
  27744. preyCapacity: math.unit(1000000, "people"),
  27745. name: "Front",
  27746. image: {
  27747. source: "./media/characters/gliss/front.svg",
  27748. extra: 2347 / 2231,
  27749. bottom: 113 / 2462
  27750. }
  27751. },
  27752. hammerspaceSize: {
  27753. height: math.unit(6.71 * 717, "feet"),
  27754. weight: math.unit(200, "lb"),
  27755. preyCapacity: math.unit(1000000, "people"),
  27756. name: "Hammerspace Size",
  27757. image: {
  27758. source: "./media/characters/gliss/front.svg",
  27759. extra: 2347 / 2231,
  27760. bottom: 113 / 2462
  27761. }
  27762. },
  27763. },
  27764. [
  27765. {
  27766. name: "Normal",
  27767. height: math.unit(6.71, "feet"),
  27768. default: true
  27769. },
  27770. ]
  27771. ))
  27772. characterMakers.push(() => makeCharacter(
  27773. { name: "Dune Anderson", species: ["wolf"], tags: ["feral"] },
  27774. {
  27775. side: {
  27776. height: math.unit(1.44, "m"),
  27777. weight: math.unit(80, "kg"),
  27778. name: "Side",
  27779. image: {
  27780. source: "./media/characters/dune-anderson/side.svg",
  27781. bottom: 49 / 1426
  27782. }
  27783. },
  27784. },
  27785. [
  27786. {
  27787. name: "Wolf-sized",
  27788. height: math.unit(1.44, "meters")
  27789. },
  27790. {
  27791. name: "Normal",
  27792. height: math.unit(5.05, "meters"),
  27793. default: true
  27794. },
  27795. {
  27796. name: "Big",
  27797. height: math.unit(14.4, "meters")
  27798. },
  27799. {
  27800. name: "Huge",
  27801. height: math.unit(144, "meters")
  27802. },
  27803. ]
  27804. ))
  27805. characterMakers.push(() => makeCharacter(
  27806. { name: "Hind", species: ["protogen"], tags: ["anthro"] },
  27807. {
  27808. front: {
  27809. height: math.unit(6, "feet"),
  27810. weight: math.unit(220, "lb"),
  27811. name: "Front",
  27812. image: {
  27813. source: "./media/characters/hind/front.svg",
  27814. extra: 1912/1787,
  27815. bottom: 52/1964
  27816. }
  27817. },
  27818. back: {
  27819. height: math.unit(6, "feet"),
  27820. weight: math.unit(220, "lb"),
  27821. name: "Back",
  27822. image: {
  27823. source: "./media/characters/hind/back.svg",
  27824. extra: 1901/1794,
  27825. bottom: 26/1927
  27826. }
  27827. },
  27828. },
  27829. [
  27830. {
  27831. name: "Normal",
  27832. height: math.unit(6, "feet"),
  27833. default: true
  27834. },
  27835. ]
  27836. ))
  27837. characterMakers.push(() => makeCharacter(
  27838. { name: "Tharquench Sizestealer", species: ["skaven"], tags: ["anthro"] },
  27839. {
  27840. front: {
  27841. height: math.unit(2.1, "meters"),
  27842. weight: math.unit(150, "lb"),
  27843. name: "Front",
  27844. image: {
  27845. source: "./media/characters/tharquench-sizestealer/front.svg",
  27846. extra: 1605/1470,
  27847. bottom: 36/1641
  27848. }
  27849. },
  27850. frontAlt: {
  27851. height: math.unit(2.1, "meters"),
  27852. weight: math.unit(150, "lb"),
  27853. name: "Front (Alt)",
  27854. image: {
  27855. source: "./media/characters/tharquench-sizestealer/front-alt.svg",
  27856. extra: 2318 / 2063,
  27857. bottom: 93.4 / 2410
  27858. }
  27859. },
  27860. },
  27861. [
  27862. {
  27863. name: "Nano",
  27864. height: math.unit(1, "mm")
  27865. },
  27866. {
  27867. name: "Micro",
  27868. height: math.unit(1, "cm")
  27869. },
  27870. {
  27871. name: "Normal",
  27872. height: math.unit(2.1, "meters"),
  27873. default: true
  27874. },
  27875. ]
  27876. ))
  27877. characterMakers.push(() => makeCharacter(
  27878. { name: "Solex Draconov", species: ["dragon", "kitsune"], tags: ["anthro"] },
  27879. {
  27880. front: {
  27881. height: math.unit(7 + 5 / 12, "feet"),
  27882. weight: math.unit(357, "lb"),
  27883. name: "Front",
  27884. image: {
  27885. source: "./media/characters/solex-draconov/front.svg",
  27886. extra: 1993 / 1865,
  27887. bottom: 117 / 2111
  27888. }
  27889. },
  27890. },
  27891. [
  27892. {
  27893. name: "Natural Height",
  27894. height: math.unit(7 + 5 / 12, "feet"),
  27895. default: true
  27896. },
  27897. {
  27898. name: "Macro",
  27899. height: math.unit(350, "feet")
  27900. },
  27901. {
  27902. name: "Macro+",
  27903. height: math.unit(1000, "feet")
  27904. },
  27905. {
  27906. name: "Megamacro",
  27907. height: math.unit(20, "km")
  27908. },
  27909. {
  27910. name: "Megamacro+",
  27911. height: math.unit(1000, "km")
  27912. },
  27913. {
  27914. name: "Gigamacro",
  27915. height: math.unit(2.5, "Gm")
  27916. },
  27917. {
  27918. name: "Teramacro",
  27919. height: math.unit(15, "Tm")
  27920. },
  27921. {
  27922. name: "Galactic",
  27923. height: math.unit(30, "Zm")
  27924. },
  27925. {
  27926. name: "Universal",
  27927. height: math.unit(21000, "Ym")
  27928. },
  27929. {
  27930. name: "Omniversal",
  27931. height: math.unit(9.861e50, "Ym")
  27932. },
  27933. {
  27934. name: "Existential",
  27935. height: math.unit(1e300, "meters")
  27936. },
  27937. ]
  27938. ))
  27939. characterMakers.push(() => makeCharacter(
  27940. { name: "Mandarax", species: ["dragon"], tags: ["feral"] },
  27941. {
  27942. side: {
  27943. height: math.unit(25, "feet"),
  27944. weight: math.unit(90000, "lb"),
  27945. name: "Side",
  27946. image: {
  27947. source: "./media/characters/mandarax/side.svg",
  27948. extra: 614 / 332,
  27949. bottom: 55 / 630
  27950. }
  27951. },
  27952. lounging: {
  27953. height: math.unit(15.4, "feet"),
  27954. weight: math.unit(90000, "lb"),
  27955. name: "Lounging",
  27956. image: {
  27957. source: "./media/characters/mandarax/lounging.svg",
  27958. extra: 817/609,
  27959. bottom: 685/1502
  27960. }
  27961. },
  27962. head: {
  27963. height: math.unit(11.4, "feet"),
  27964. name: "Head",
  27965. image: {
  27966. source: "./media/characters/mandarax/head.svg"
  27967. }
  27968. },
  27969. belly: {
  27970. height: math.unit(33, "feet"),
  27971. name: "Belly",
  27972. preyCapacity: math.unit(500, "people"),
  27973. image: {
  27974. source: "./media/characters/mandarax/belly.svg"
  27975. }
  27976. },
  27977. dick: {
  27978. height: math.unit(8.46, "feet"),
  27979. name: "Dick",
  27980. image: {
  27981. source: "./media/characters/mandarax/dick.svg"
  27982. }
  27983. },
  27984. top: {
  27985. height: math.unit(28, "meters"),
  27986. name: "Top",
  27987. image: {
  27988. source: "./media/characters/mandarax/top.svg"
  27989. }
  27990. },
  27991. },
  27992. [
  27993. {
  27994. name: "Normal",
  27995. height: math.unit(25, "feet"),
  27996. default: true
  27997. },
  27998. ]
  27999. ))
  28000. characterMakers.push(() => makeCharacter(
  28001. { name: "Pixil", species: ["sylveon"], tags: ["anthro"] },
  28002. {
  28003. front: {
  28004. height: math.unit(5, "feet"),
  28005. weight: math.unit(90, "lb"),
  28006. name: "Front",
  28007. image: {
  28008. source: "./media/characters/pixil/front.svg",
  28009. extra: 2000 / 1618,
  28010. bottom: 12.3 / 2011
  28011. }
  28012. },
  28013. },
  28014. [
  28015. {
  28016. name: "Normal",
  28017. height: math.unit(5, "feet"),
  28018. default: true
  28019. },
  28020. {
  28021. name: "Megamacro",
  28022. height: math.unit(10, "miles"),
  28023. },
  28024. ]
  28025. ))
  28026. characterMakers.push(() => makeCharacter(
  28027. { name: "Angel", species: ["catgirl"], tags: ["anthro"] },
  28028. {
  28029. front: {
  28030. height: math.unit(7 + 2 / 12, "feet"),
  28031. weight: math.unit(200, "lb"),
  28032. name: "Front",
  28033. image: {
  28034. source: "./media/characters/angel/front.svg",
  28035. extra: 1946/1840,
  28036. bottom: 30/1976
  28037. }
  28038. },
  28039. },
  28040. [
  28041. {
  28042. name: "Normal",
  28043. height: math.unit(7 + 2 / 12, "feet"),
  28044. default: true
  28045. },
  28046. {
  28047. name: "Macro",
  28048. height: math.unit(1000, "feet")
  28049. },
  28050. {
  28051. name: "Megamacro",
  28052. height: math.unit(2, "miles")
  28053. },
  28054. {
  28055. name: "Gigamacro",
  28056. height: math.unit(20, "earths")
  28057. },
  28058. ]
  28059. ))
  28060. characterMakers.push(() => makeCharacter(
  28061. { name: "Mekana", species: ["cowgirl"], tags: ["anthro"] },
  28062. {
  28063. front: {
  28064. height: math.unit(5, "feet"),
  28065. weight: math.unit(180, "lb"),
  28066. name: "Front",
  28067. image: {
  28068. source: "./media/characters/mekana/front.svg",
  28069. extra: 1671 / 1605,
  28070. bottom: 3.5 / 1691
  28071. }
  28072. },
  28073. side: {
  28074. height: math.unit(5, "feet"),
  28075. weight: math.unit(180, "lb"),
  28076. name: "Side",
  28077. image: {
  28078. source: "./media/characters/mekana/side.svg",
  28079. extra: 1671 / 1605,
  28080. bottom: 3.5 / 1691
  28081. }
  28082. },
  28083. back: {
  28084. height: math.unit(5, "feet"),
  28085. weight: math.unit(180, "lb"),
  28086. name: "Back",
  28087. image: {
  28088. source: "./media/characters/mekana/back.svg",
  28089. extra: 1671 / 1605,
  28090. bottom: 3.5 / 1691
  28091. }
  28092. },
  28093. },
  28094. [
  28095. {
  28096. name: "Normal",
  28097. height: math.unit(5, "feet"),
  28098. default: true
  28099. },
  28100. ]
  28101. ))
  28102. characterMakers.push(() => makeCharacter(
  28103. { name: "Pixie", species: ["pony"], tags: ["anthro"] },
  28104. {
  28105. front: {
  28106. height: math.unit(4 + 6 / 12, "feet"),
  28107. weight: math.unit(80, "lb"),
  28108. name: "Front",
  28109. image: {
  28110. source: "./media/characters/pixie/front.svg",
  28111. extra: 1924 / 1825,
  28112. bottom: 22.4 / 1946
  28113. }
  28114. },
  28115. },
  28116. [
  28117. {
  28118. name: "Normal",
  28119. height: math.unit(4 + 6 / 12, "feet"),
  28120. default: true
  28121. },
  28122. {
  28123. name: "Macro",
  28124. height: math.unit(40, "feet")
  28125. },
  28126. ]
  28127. ))
  28128. characterMakers.push(() => makeCharacter(
  28129. { name: "The Lascivious", species: ["wolxi", "deity"], tags: ["anthro"] },
  28130. {
  28131. front: {
  28132. height: math.unit(2.1, "meters"),
  28133. weight: math.unit(200, "lb"),
  28134. name: "Front",
  28135. image: {
  28136. source: "./media/characters/the-lascivious/front.svg",
  28137. extra: 1 / 0.893,
  28138. bottom: 3.5 / 573.7
  28139. }
  28140. },
  28141. },
  28142. [
  28143. {
  28144. name: "Human Scale",
  28145. height: math.unit(2.1, "meters")
  28146. },
  28147. {
  28148. name: "Wolxi Scale",
  28149. height: math.unit(46.2, "m"),
  28150. default: true
  28151. },
  28152. {
  28153. name: "Boinker of Buildings",
  28154. height: math.unit(10, "km")
  28155. },
  28156. {
  28157. name: "Shagger of Skyscrapers",
  28158. height: math.unit(40, "km")
  28159. },
  28160. {
  28161. name: "Banger of Boroughs",
  28162. height: math.unit(4000, "km")
  28163. },
  28164. {
  28165. name: "Screwer of States",
  28166. height: math.unit(100000, "km")
  28167. },
  28168. {
  28169. name: "Pounder of Planets",
  28170. height: math.unit(2000000, "km")
  28171. },
  28172. ]
  28173. ))
  28174. characterMakers.push(() => makeCharacter(
  28175. { name: "AJ", species: ["wolf"], tags: ["anthro"] },
  28176. {
  28177. front: {
  28178. height: math.unit(6, "feet"),
  28179. weight: math.unit(150, "lb"),
  28180. name: "Front",
  28181. image: {
  28182. source: "./media/characters/aj/front.svg",
  28183. extra: 2039 / 1562,
  28184. bottom: 40 / 2079
  28185. }
  28186. },
  28187. },
  28188. [
  28189. {
  28190. name: "Normal",
  28191. height: math.unit(11 + 6 / 12, "feet"),
  28192. default: true
  28193. },
  28194. {
  28195. name: "Megamacro",
  28196. height: math.unit(60, "megameters")
  28197. },
  28198. ]
  28199. ))
  28200. characterMakers.push(() => makeCharacter(
  28201. { name: "Koros", species: ["dragon"], tags: ["feral"] },
  28202. {
  28203. side: {
  28204. height: math.unit(31 + 8 / 12, "feet"),
  28205. weight: math.unit(75000, "kg"),
  28206. name: "Side",
  28207. image: {
  28208. source: "./media/characters/koros/side.svg",
  28209. extra: 1442 / 1297,
  28210. bottom: 122.7 / 1562
  28211. }
  28212. },
  28213. dicksKingsCrown: {
  28214. height: math.unit(6, "feet"),
  28215. name: "Dicks (King's Crown)",
  28216. image: {
  28217. source: "./media/characters/koros/dicks-kings-crown.svg"
  28218. }
  28219. },
  28220. dicksTailSet: {
  28221. height: math.unit(3, "feet"),
  28222. name: "Dicks (Tail Set)",
  28223. image: {
  28224. source: "./media/characters/koros/dicks-tail-set.svg"
  28225. }
  28226. },
  28227. dickCumming: {
  28228. height: math.unit(7.98, "feet"),
  28229. name: "Dick (Cumming)",
  28230. image: {
  28231. source: "./media/characters/koros/dick-cumming.svg"
  28232. }
  28233. },
  28234. dicksBack: {
  28235. height: math.unit(5.9, "feet"),
  28236. name: "Dicks (Back)",
  28237. image: {
  28238. source: "./media/characters/koros/dicks-back.svg"
  28239. }
  28240. },
  28241. dicksFront: {
  28242. height: math.unit(3.72, "feet"),
  28243. name: "Dicks (Front)",
  28244. image: {
  28245. source: "./media/characters/koros/dicks-front.svg"
  28246. }
  28247. },
  28248. dicksPeeking: {
  28249. height: math.unit(3.0, "feet"),
  28250. name: "Dicks (Peeking)",
  28251. image: {
  28252. source: "./media/characters/koros/dicks-peeking.svg"
  28253. }
  28254. },
  28255. eye: {
  28256. height: math.unit(1.7, "feet"),
  28257. name: "Eye",
  28258. image: {
  28259. source: "./media/characters/koros/eye.svg"
  28260. }
  28261. },
  28262. headFront: {
  28263. height: math.unit(11.69, "feet"),
  28264. name: "Head (Front)",
  28265. image: {
  28266. source: "./media/characters/koros/head-front.svg"
  28267. }
  28268. },
  28269. headSide: {
  28270. height: math.unit(14, "feet"),
  28271. name: "Head (Side)",
  28272. image: {
  28273. source: "./media/characters/koros/head-side.svg"
  28274. }
  28275. },
  28276. leg: {
  28277. height: math.unit(17, "feet"),
  28278. name: "Leg",
  28279. image: {
  28280. source: "./media/characters/koros/leg.svg"
  28281. }
  28282. },
  28283. mawSide: {
  28284. height: math.unit(12.8, "feet"),
  28285. name: "Maw (Side)",
  28286. image: {
  28287. source: "./media/characters/koros/maw-side.svg"
  28288. }
  28289. },
  28290. mawSpitting: {
  28291. height: math.unit(17, "feet"),
  28292. name: "Maw (Spitting)",
  28293. image: {
  28294. source: "./media/characters/koros/maw-spitting.svg"
  28295. }
  28296. },
  28297. slit: {
  28298. height: math.unit(2.8, "feet"),
  28299. name: "Slit",
  28300. image: {
  28301. source: "./media/characters/koros/slit.svg"
  28302. }
  28303. },
  28304. stomach: {
  28305. height: math.unit(6.8, "feet"),
  28306. preyCapacity: math.unit(20, "people"),
  28307. name: "Stomach",
  28308. image: {
  28309. source: "./media/characters/koros/stomach.svg"
  28310. }
  28311. },
  28312. wingspanBottom: {
  28313. height: math.unit(114, "feet"),
  28314. name: "Wingspan (Bottom)",
  28315. image: {
  28316. source: "./media/characters/koros/wingspan-bottom.svg"
  28317. }
  28318. },
  28319. wingspanTop: {
  28320. height: math.unit(104, "feet"),
  28321. name: "Wingspan (Top)",
  28322. image: {
  28323. source: "./media/characters/koros/wingspan-top.svg"
  28324. }
  28325. },
  28326. },
  28327. [
  28328. {
  28329. name: "Normal",
  28330. height: math.unit(31 + 8 / 12, "feet"),
  28331. default: true
  28332. },
  28333. ]
  28334. ))
  28335. characterMakers.push(() => makeCharacter(
  28336. { name: "Vexx", species: ["skarlan"], tags: ["anthro"] },
  28337. {
  28338. front: {
  28339. height: math.unit(18 + 5 / 12, "feet"),
  28340. weight: math.unit(3750, "kg"),
  28341. name: "Front",
  28342. image: {
  28343. source: "./media/characters/vexx/front.svg",
  28344. extra: 426 / 396,
  28345. bottom: 31.5 / 458
  28346. }
  28347. },
  28348. maw: {
  28349. height: math.unit(6, "feet"),
  28350. name: "Maw",
  28351. image: {
  28352. source: "./media/characters/vexx/maw.svg"
  28353. }
  28354. },
  28355. },
  28356. [
  28357. {
  28358. name: "Normal",
  28359. height: math.unit(18 + 5 / 12, "feet"),
  28360. default: true
  28361. },
  28362. ]
  28363. ))
  28364. characterMakers.push(() => makeCharacter(
  28365. { name: "Baadra", species: ["skarlan"], tags: ["anthro"] },
  28366. {
  28367. front: {
  28368. height: math.unit(17 + 6 / 12, "feet"),
  28369. weight: math.unit(150, "lb"),
  28370. name: "Front",
  28371. image: {
  28372. source: "./media/characters/baadra/front.svg",
  28373. extra: 1694/1553,
  28374. bottom: 179/1873
  28375. }
  28376. },
  28377. frontAlt: {
  28378. height: math.unit(17 + 6 / 12, "feet"),
  28379. weight: math.unit(150, "lb"),
  28380. name: "Front (Alt)",
  28381. image: {
  28382. source: "./media/characters/baadra/front-alt.svg",
  28383. extra: 3137 / 2890,
  28384. bottom: 168.4 / 3305
  28385. }
  28386. },
  28387. back: {
  28388. height: math.unit(17 + 6 / 12, "feet"),
  28389. weight: math.unit(150, "lb"),
  28390. name: "Back",
  28391. image: {
  28392. source: "./media/characters/baadra/back.svg",
  28393. extra: 3142 / 2890,
  28394. bottom: 220 / 3371
  28395. }
  28396. },
  28397. head: {
  28398. height: math.unit(5.45, "feet"),
  28399. name: "Head",
  28400. image: {
  28401. source: "./media/characters/baadra/head.svg"
  28402. }
  28403. },
  28404. headAngry: {
  28405. height: math.unit(4.95, "feet"),
  28406. name: "Head (Angry)",
  28407. image: {
  28408. source: "./media/characters/baadra/head-angry.svg"
  28409. }
  28410. },
  28411. headOpen: {
  28412. height: math.unit(6, "feet"),
  28413. name: "Head (Open)",
  28414. image: {
  28415. source: "./media/characters/baadra/head-open.svg"
  28416. }
  28417. },
  28418. },
  28419. [
  28420. {
  28421. name: "Normal",
  28422. height: math.unit(17 + 6 / 12, "feet"),
  28423. default: true
  28424. },
  28425. ]
  28426. ))
  28427. characterMakers.push(() => makeCharacter(
  28428. { name: "Juri", species: ["kitsune"], tags: ["anthro"] },
  28429. {
  28430. front: {
  28431. height: math.unit(7 + 3 / 12, "feet"),
  28432. weight: math.unit(180, "lb"),
  28433. name: "Front",
  28434. image: {
  28435. source: "./media/characters/juri/front.svg",
  28436. extra: 1401 / 1237,
  28437. bottom: 18.5 / 1418
  28438. }
  28439. },
  28440. side: {
  28441. height: math.unit(7 + 3 / 12, "feet"),
  28442. weight: math.unit(180, "lb"),
  28443. name: "Side",
  28444. image: {
  28445. source: "./media/characters/juri/side.svg",
  28446. extra: 1424 / 1242,
  28447. bottom: 18.5 / 1447
  28448. }
  28449. },
  28450. sitting: {
  28451. height: math.unit(6, "feet"),
  28452. weight: math.unit(180, "lb"),
  28453. name: "Sitting",
  28454. image: {
  28455. source: "./media/characters/juri/sitting.svg",
  28456. extra: 1270 / 1143,
  28457. bottom: 100 / 1343
  28458. }
  28459. },
  28460. back: {
  28461. height: math.unit(7 + 3 / 12, "feet"),
  28462. weight: math.unit(180, "lb"),
  28463. name: "Back",
  28464. image: {
  28465. source: "./media/characters/juri/back.svg",
  28466. extra: 1377 / 1240,
  28467. bottom: 23.7 / 1405
  28468. }
  28469. },
  28470. maw: {
  28471. height: math.unit(2.8, "feet"),
  28472. name: "Maw",
  28473. image: {
  28474. source: "./media/characters/juri/maw.svg"
  28475. }
  28476. },
  28477. stomach: {
  28478. height: math.unit(0.89, "feet"),
  28479. preyCapacity: math.unit(4, "liters"),
  28480. name: "Stomach",
  28481. image: {
  28482. source: "./media/characters/juri/stomach.svg"
  28483. }
  28484. },
  28485. },
  28486. [
  28487. {
  28488. name: "Normal",
  28489. height: math.unit(7 + 3 / 12, "feet"),
  28490. default: true
  28491. },
  28492. ]
  28493. ))
  28494. characterMakers.push(() => makeCharacter(
  28495. { name: "Maxene Sita", species: ["fox", "kitsune", "hellhound"], tags: ["anthro"] },
  28496. {
  28497. fox: {
  28498. height: math.unit(5 + 6 / 12, "feet"),
  28499. weight: math.unit(140, "lb"),
  28500. name: "Fox",
  28501. image: {
  28502. source: "./media/characters/maxene-sita/fox.svg",
  28503. extra: 146 / 138,
  28504. bottom: 2.1 / 148.19
  28505. }
  28506. },
  28507. foxLaying: {
  28508. height: math.unit(1.70, "feet"),
  28509. weight: math.unit(140, "lb"),
  28510. name: "Fox (Laying)",
  28511. image: {
  28512. source: "./media/characters/maxene-sita/fox-laying.svg",
  28513. extra: 910 / 572,
  28514. bottom: 71 / 981
  28515. }
  28516. },
  28517. kitsune: {
  28518. height: math.unit(10, "feet"),
  28519. weight: math.unit(800, "lb"),
  28520. name: "Kitsune",
  28521. image: {
  28522. source: "./media/characters/maxene-sita/kitsune.svg",
  28523. extra: 185 / 176,
  28524. bottom: 4.7 / 189.9
  28525. }
  28526. },
  28527. hellhound: {
  28528. height: math.unit(10, "feet"),
  28529. weight: math.unit(700, "lb"),
  28530. name: "Hellhound",
  28531. image: {
  28532. source: "./media/characters/maxene-sita/hellhound.svg",
  28533. extra: 1600 / 1545,
  28534. bottom: 81 / 1681
  28535. }
  28536. },
  28537. },
  28538. [
  28539. {
  28540. name: "Normal",
  28541. height: math.unit(5 + 6 / 12, "feet"),
  28542. default: true
  28543. },
  28544. ]
  28545. ))
  28546. characterMakers.push(() => makeCharacter(
  28547. { name: "Maia", species: ["mew"], tags: ["feral"] },
  28548. {
  28549. front: {
  28550. height: math.unit(3 + 4 / 12, "feet"),
  28551. weight: math.unit(70, "lb"),
  28552. name: "Front",
  28553. image: {
  28554. source: "./media/characters/maia/front.svg",
  28555. extra: 227 / 219.5,
  28556. bottom: 40 / 267
  28557. }
  28558. },
  28559. back: {
  28560. height: math.unit(3 + 4 / 12, "feet"),
  28561. weight: math.unit(70, "lb"),
  28562. name: "Back",
  28563. image: {
  28564. source: "./media/characters/maia/back.svg",
  28565. extra: 237 / 225
  28566. }
  28567. },
  28568. },
  28569. [
  28570. {
  28571. name: "Normal",
  28572. height: math.unit(3 + 4 / 12, "feet"),
  28573. default: true
  28574. },
  28575. ]
  28576. ))
  28577. characterMakers.push(() => makeCharacter(
  28578. { name: "Jabaro", species: ["cheetah"], tags: ["anthro"] },
  28579. {
  28580. front: {
  28581. height: math.unit(5 + 10 / 12, "feet"),
  28582. weight: math.unit(197, "lb"),
  28583. name: "Front",
  28584. image: {
  28585. source: "./media/characters/jabaro/front.svg",
  28586. extra: 225 / 216,
  28587. bottom: 5.06 / 230
  28588. }
  28589. },
  28590. back: {
  28591. height: math.unit(5 + 10 / 12, "feet"),
  28592. weight: math.unit(197, "lb"),
  28593. name: "Back",
  28594. image: {
  28595. source: "./media/characters/jabaro/back.svg",
  28596. extra: 225 / 219,
  28597. bottom: 1.9 / 227
  28598. }
  28599. },
  28600. },
  28601. [
  28602. {
  28603. name: "Normal",
  28604. height: math.unit(5 + 10 / 12, "feet"),
  28605. default: true
  28606. },
  28607. ]
  28608. ))
  28609. characterMakers.push(() => makeCharacter(
  28610. { name: "Risa", species: ["corvid"], tags: ["anthro"] },
  28611. {
  28612. front: {
  28613. height: math.unit(5 + 8 / 12, "feet"),
  28614. weight: math.unit(139, "lb"),
  28615. name: "Front",
  28616. image: {
  28617. source: "./media/characters/risa/front.svg",
  28618. extra: 270 / 260,
  28619. bottom: 11.2 / 282
  28620. }
  28621. },
  28622. back: {
  28623. height: math.unit(5 + 8 / 12, "feet"),
  28624. weight: math.unit(139, "lb"),
  28625. name: "Back",
  28626. image: {
  28627. source: "./media/characters/risa/back.svg",
  28628. extra: 264 / 255,
  28629. bottom: 4 / 268
  28630. }
  28631. },
  28632. },
  28633. [
  28634. {
  28635. name: "Normal",
  28636. height: math.unit(5 + 8 / 12, "feet"),
  28637. default: true
  28638. },
  28639. ]
  28640. ))
  28641. characterMakers.push(() => makeCharacter(
  28642. { name: "Weatley", species: ["chimera"], tags: ["anthro"] },
  28643. {
  28644. front: {
  28645. height: math.unit(2 + 11 / 12, "feet"),
  28646. weight: math.unit(30, "lb"),
  28647. name: "Front",
  28648. image: {
  28649. source: "./media/characters/weatley/front.svg",
  28650. bottom: 10.7 / 414,
  28651. extra: 403.5 / 362
  28652. }
  28653. },
  28654. back: {
  28655. height: math.unit(2 + 11 / 12, "feet"),
  28656. weight: math.unit(30, "lb"),
  28657. name: "Back",
  28658. image: {
  28659. source: "./media/characters/weatley/back.svg",
  28660. bottom: 10.7 / 414,
  28661. extra: 403.5 / 362
  28662. }
  28663. },
  28664. },
  28665. [
  28666. {
  28667. name: "Normal",
  28668. height: math.unit(2 + 11 / 12, "feet"),
  28669. default: true
  28670. },
  28671. ]
  28672. ))
  28673. characterMakers.push(() => makeCharacter(
  28674. { name: "Mercury Crescent", species: ["dragon", "kobold"], tags: ["anthro"] },
  28675. {
  28676. front: {
  28677. height: math.unit(5 + 2 / 12, "feet"),
  28678. weight: math.unit(50, "kg"),
  28679. name: "Front",
  28680. image: {
  28681. source: "./media/characters/mercury-crescent/front.svg",
  28682. extra: 1088 / 1033,
  28683. bottom: 18.9 / 1109
  28684. }
  28685. },
  28686. },
  28687. [
  28688. {
  28689. name: "Normal",
  28690. height: math.unit(5 + 2 / 12, "feet"),
  28691. default: true
  28692. },
  28693. ]
  28694. ))
  28695. characterMakers.push(() => makeCharacter(
  28696. { name: "Diamond Jones", species: ["kobold"], tags: ["anthro"] },
  28697. {
  28698. front: {
  28699. height: math.unit(2, "feet"),
  28700. weight: math.unit(15, "kg"),
  28701. name: "Front",
  28702. image: {
  28703. source: "./media/characters/diamond-jones/front.svg",
  28704. extra: 727/723,
  28705. bottom: 46/773
  28706. }
  28707. },
  28708. },
  28709. [
  28710. {
  28711. name: "Normal",
  28712. height: math.unit(2, "feet"),
  28713. default: true
  28714. },
  28715. ]
  28716. ))
  28717. characterMakers.push(() => makeCharacter(
  28718. { name: "Sweet Bit", species: ["gestalt", "kobold"], tags: ["anthro"] },
  28719. {
  28720. front: {
  28721. height: math.unit(3, "feet"),
  28722. weight: math.unit(30, "kg"),
  28723. name: "Front",
  28724. image: {
  28725. source: "./media/characters/sweet-bit/front.svg",
  28726. extra: 675 / 567,
  28727. bottom: 27.7 / 703
  28728. }
  28729. },
  28730. },
  28731. [
  28732. {
  28733. name: "Normal",
  28734. height: math.unit(3, "feet"),
  28735. default: true
  28736. },
  28737. ]
  28738. ))
  28739. characterMakers.push(() => makeCharacter(
  28740. { name: "Umbrazen", species: ["mimic"], tags: ["feral"] },
  28741. {
  28742. side: {
  28743. height: math.unit(9.178, "feet"),
  28744. weight: math.unit(500, "lb"),
  28745. name: "Side",
  28746. image: {
  28747. source: "./media/characters/umbrazen/side.svg",
  28748. extra: 1730 / 1473,
  28749. bottom: 34.6 / 1765
  28750. }
  28751. },
  28752. },
  28753. [
  28754. {
  28755. name: "Normal",
  28756. height: math.unit(9.178, "feet"),
  28757. default: true
  28758. },
  28759. ]
  28760. ))
  28761. characterMakers.push(() => makeCharacter(
  28762. { name: "Arlist", species: ["jackal"], tags: ["anthro"] },
  28763. {
  28764. front: {
  28765. height: math.unit(10, "feet"),
  28766. weight: math.unit(750, "lb"),
  28767. name: "Front",
  28768. image: {
  28769. source: "./media/characters/arlist/front.svg",
  28770. extra: 961 / 778,
  28771. bottom: 6.2 / 986
  28772. }
  28773. },
  28774. },
  28775. [
  28776. {
  28777. name: "Normal",
  28778. height: math.unit(10, "feet"),
  28779. default: true
  28780. },
  28781. ]
  28782. ))
  28783. characterMakers.push(() => makeCharacter(
  28784. { name: "Aradel", species: ["jackalope"], tags: ["anthro"] },
  28785. {
  28786. front: {
  28787. height: math.unit(5 + 1 / 12, "feet"),
  28788. weight: math.unit(110, "lb"),
  28789. name: "Front",
  28790. image: {
  28791. source: "./media/characters/aradel/front.svg",
  28792. extra: 324 / 303,
  28793. bottom: 3.6 / 329.4
  28794. }
  28795. },
  28796. },
  28797. [
  28798. {
  28799. name: "Normal",
  28800. height: math.unit(5 + 1 / 12, "feet"),
  28801. default: true
  28802. },
  28803. ]
  28804. ))
  28805. characterMakers.push(() => makeCharacter(
  28806. { name: "Serryn", species: ["calico-rat"], tags: ["anthro"] },
  28807. {
  28808. dressed: {
  28809. height: math.unit(3 + 8 / 12, "feet"),
  28810. weight: math.unit(50, "lb"),
  28811. name: "Dressed",
  28812. image: {
  28813. source: "./media/characters/serryn/dressed.svg",
  28814. extra: 1792 / 1656,
  28815. bottom: 43.5 / 1840
  28816. }
  28817. },
  28818. nude: {
  28819. height: math.unit(3 + 8 / 12, "feet"),
  28820. weight: math.unit(50, "lb"),
  28821. name: "Nude",
  28822. image: {
  28823. source: "./media/characters/serryn/nude.svg",
  28824. extra: 1792 / 1656,
  28825. bottom: 43.5 / 1840
  28826. }
  28827. },
  28828. },
  28829. [
  28830. {
  28831. name: "Normal",
  28832. height: math.unit(3 + 8 / 12, "feet"),
  28833. default: true
  28834. },
  28835. ]
  28836. ))
  28837. characterMakers.push(() => makeCharacter(
  28838. { name: "Xavier Thyme", "species": ["fox"], tags: ["anthro"] },
  28839. {
  28840. front: {
  28841. height: math.unit(7 + 10 / 12, "feet"),
  28842. weight: math.unit(255, "lb"),
  28843. name: "Front",
  28844. image: {
  28845. source: "./media/characters/xavier-thyme/front.svg",
  28846. extra: 3733 / 3642,
  28847. bottom: 131 / 3869
  28848. }
  28849. },
  28850. frontRaven: {
  28851. height: math.unit(7 + 10 / 12, "feet"),
  28852. weight: math.unit(255, "lb"),
  28853. name: "Front (Raven)",
  28854. image: {
  28855. source: "./media/characters/xavier-thyme/front-raven.svg",
  28856. extra: 4385 / 3642,
  28857. bottom: 131 / 4517
  28858. }
  28859. },
  28860. },
  28861. [
  28862. {
  28863. name: "Normal",
  28864. height: math.unit(7 + 10 / 12, "feet"),
  28865. default: true
  28866. },
  28867. ]
  28868. ))
  28869. characterMakers.push(() => makeCharacter(
  28870. { name: "Kiki", species: ["rabbit", "panda"], tags: ["anthro"] },
  28871. {
  28872. front: {
  28873. height: math.unit(1.6, "m"),
  28874. weight: math.unit(50, "kg"),
  28875. name: "Front",
  28876. image: {
  28877. source: "./media/characters/kiki/front.svg",
  28878. extra: 4682 / 3610,
  28879. bottom: 115 / 4777
  28880. }
  28881. },
  28882. },
  28883. [
  28884. {
  28885. name: "Normal",
  28886. height: math.unit(1.6, "meters"),
  28887. default: true
  28888. },
  28889. ]
  28890. ))
  28891. characterMakers.push(() => makeCharacter(
  28892. { name: "Ryoko", species: ["oni"], tags: ["anthro"] },
  28893. {
  28894. front: {
  28895. height: math.unit(50, "m"),
  28896. weight: math.unit(500, "tonnes"),
  28897. name: "Front",
  28898. image: {
  28899. source: "./media/characters/ryoko/front.svg",
  28900. extra: 4632 / 3926,
  28901. bottom: 193 / 4823
  28902. }
  28903. },
  28904. },
  28905. [
  28906. {
  28907. name: "Normal",
  28908. height: math.unit(50, "meters"),
  28909. default: true
  28910. },
  28911. ]
  28912. ))
  28913. characterMakers.push(() => makeCharacter(
  28914. { name: "Elio", species: ["umbra"], tags: ["anthro"] },
  28915. {
  28916. front: {
  28917. height: math.unit(30, "m"),
  28918. weight: math.unit(22, "tonnes"),
  28919. name: "Front",
  28920. image: {
  28921. source: "./media/characters/elio/front.svg",
  28922. extra: 4582 / 3720,
  28923. bottom: 236 / 4828
  28924. }
  28925. },
  28926. },
  28927. [
  28928. {
  28929. name: "Normal",
  28930. height: math.unit(30, "meters"),
  28931. default: true
  28932. },
  28933. ]
  28934. ))
  28935. characterMakers.push(() => makeCharacter(
  28936. { name: "Azura", species: ["phoenix"], tags: ["anthro"] },
  28937. {
  28938. front: {
  28939. height: math.unit(6 + 3 / 12, "feet"),
  28940. weight: math.unit(120, "lb"),
  28941. name: "Front",
  28942. image: {
  28943. source: "./media/characters/azura/front.svg",
  28944. extra: 1149 / 1135,
  28945. bottom: 45 / 1194
  28946. }
  28947. },
  28948. frontClothed: {
  28949. height: math.unit(6 + 3 / 12, "feet"),
  28950. weight: math.unit(120, "lb"),
  28951. name: "Front (Clothed)",
  28952. image: {
  28953. source: "./media/characters/azura/front-clothed.svg",
  28954. extra: 1149 / 1135,
  28955. bottom: 45 / 1194
  28956. }
  28957. },
  28958. },
  28959. [
  28960. {
  28961. name: "Normal",
  28962. height: math.unit(6 + 3 / 12, "feet"),
  28963. default: true
  28964. },
  28965. {
  28966. name: "Macro",
  28967. height: math.unit(20 + 6 / 12, "feet")
  28968. },
  28969. {
  28970. name: "Megamacro",
  28971. height: math.unit(12, "miles")
  28972. },
  28973. {
  28974. name: "Gigamacro",
  28975. height: math.unit(10000, "miles")
  28976. },
  28977. {
  28978. name: "Teramacro",
  28979. height: math.unit(900000, "miles")
  28980. },
  28981. ]
  28982. ))
  28983. characterMakers.push(() => makeCharacter(
  28984. { name: "Zeus", species: ["pegasus"], tags: ["anthro"] },
  28985. {
  28986. front: {
  28987. height: math.unit(12, "feet"),
  28988. weight: math.unit(1, "ton"),
  28989. capacity: math.unit(660000, "gallons"),
  28990. name: "Front",
  28991. image: {
  28992. source: "./media/characters/zeus/front.svg",
  28993. extra: 5005 / 4717,
  28994. bottom: 363 / 5388
  28995. }
  28996. },
  28997. },
  28998. [
  28999. {
  29000. name: "Normal",
  29001. height: math.unit(12, "feet")
  29002. },
  29003. {
  29004. name: "Preferred Size",
  29005. height: math.unit(0.5, "miles"),
  29006. default: true
  29007. },
  29008. {
  29009. name: "Giga Horse",
  29010. height: math.unit(300, "miles")
  29011. },
  29012. {
  29013. name: "Riding Planets",
  29014. height: math.unit(30, "megameters")
  29015. },
  29016. {
  29017. name: "Cosmic Giant",
  29018. height: math.unit(3, "zettameters")
  29019. },
  29020. {
  29021. name: "Breeding God",
  29022. height: math.unit(9.92e22, "yottameters")
  29023. },
  29024. ]
  29025. ))
  29026. characterMakers.push(() => makeCharacter(
  29027. { name: "Fang", species: ["monster"], tags: ["feral"] },
  29028. {
  29029. side: {
  29030. height: math.unit(9, "feet"),
  29031. weight: math.unit(1500, "kg"),
  29032. name: "Side",
  29033. image: {
  29034. source: "./media/characters/fang/side.svg",
  29035. extra: 924 / 866,
  29036. bottom: 47.5 / 972.3
  29037. }
  29038. },
  29039. },
  29040. [
  29041. {
  29042. name: "Normal",
  29043. height: math.unit(9, "feet"),
  29044. default: true
  29045. },
  29046. {
  29047. name: "Macro",
  29048. height: math.unit(75 + 6 / 12, "feet")
  29049. },
  29050. {
  29051. name: "Teramacro",
  29052. height: math.unit(50000, "miles")
  29053. },
  29054. ]
  29055. ))
  29056. characterMakers.push(() => makeCharacter(
  29057. { name: "Rekhit", species: ["horse"], tags: ["anthro"] },
  29058. {
  29059. front: {
  29060. height: math.unit(10, "feet"),
  29061. weight: math.unit(2, "tons"),
  29062. name: "Front",
  29063. image: {
  29064. source: "./media/characters/rekhit/front.svg",
  29065. extra: 2796 / 2590,
  29066. bottom: 225 / 3022
  29067. }
  29068. },
  29069. },
  29070. [
  29071. {
  29072. name: "Normal",
  29073. height: math.unit(10, "feet"),
  29074. default: true
  29075. },
  29076. {
  29077. name: "Macro",
  29078. height: math.unit(500, "feet")
  29079. },
  29080. ]
  29081. ))
  29082. characterMakers.push(() => makeCharacter(
  29083. { name: "Dahlia Verrick", "species": ["dhole", "springbok"], "tags": ["anthro"] },
  29084. {
  29085. front: {
  29086. height: math.unit(7 + 6.451 / 12, "feet"),
  29087. weight: math.unit(310, "lb"),
  29088. name: "Front",
  29089. image: {
  29090. source: "./media/characters/dahlia-verrick/front.svg",
  29091. extra: 1488 / 1365,
  29092. bottom: 6.2 / 1495
  29093. }
  29094. },
  29095. back: {
  29096. height: math.unit(7 + 6.451 / 12, "feet"),
  29097. weight: math.unit(310, "lb"),
  29098. name: "Back",
  29099. image: {
  29100. source: "./media/characters/dahlia-verrick/back.svg",
  29101. extra: 1472 / 1351,
  29102. bottom: 5.28 / 1477
  29103. }
  29104. },
  29105. frontBusiness: {
  29106. height: math.unit(7 + 6.451 / 12, "feet"),
  29107. weight: math.unit(200, "lb"),
  29108. name: "Front (Business)",
  29109. image: {
  29110. source: "./media/characters/dahlia-verrick/front-business.svg",
  29111. extra: 1478 / 1381,
  29112. bottom: 5.5 / 1484
  29113. }
  29114. },
  29115. frontCasual: {
  29116. height: math.unit(7 + 6.451 / 12, "feet"),
  29117. weight: math.unit(200, "lb"),
  29118. name: "Front (Casual)",
  29119. image: {
  29120. source: "./media/characters/dahlia-verrick/front-casual.svg",
  29121. extra: 1478 / 1381,
  29122. bottom: 5.5 / 1484
  29123. }
  29124. },
  29125. },
  29126. [
  29127. {
  29128. name: "Travel-Sized",
  29129. height: math.unit(7.45, "inches")
  29130. },
  29131. {
  29132. name: "Normal",
  29133. height: math.unit(7 + 6.451 / 12, "feet"),
  29134. default: true
  29135. },
  29136. {
  29137. name: "Hitting the Town",
  29138. height: math.unit(37 + 8 / 12, "feet")
  29139. },
  29140. {
  29141. name: "Stomp in the Suburbs",
  29142. height: math.unit(964 + 9.728 / 12, "feet")
  29143. },
  29144. {
  29145. name: "Sit on the City",
  29146. height: math.unit(61747 + 10.592 / 12, "feet")
  29147. },
  29148. {
  29149. name: "Glomp the Globe",
  29150. height: math.unit(252919327 + 4.832 / 12, "feet")
  29151. },
  29152. ]
  29153. ))
  29154. characterMakers.push(() => makeCharacter(
  29155. { name: "Balina Mahigan", species: ["wolf", "cow"], tags: ["anthro"] },
  29156. {
  29157. front: {
  29158. height: math.unit(6 + 4 / 12, "feet"),
  29159. weight: math.unit(320, "lb"),
  29160. name: "Front",
  29161. image: {
  29162. source: "./media/characters/balina-mahigan/front.svg",
  29163. extra: 447 / 428,
  29164. bottom: 18 / 466
  29165. }
  29166. },
  29167. back: {
  29168. height: math.unit(6 + 4 / 12, "feet"),
  29169. weight: math.unit(320, "lb"),
  29170. name: "Back",
  29171. image: {
  29172. source: "./media/characters/balina-mahigan/back.svg",
  29173. extra: 445 / 428,
  29174. bottom: 4.07 / 448
  29175. }
  29176. },
  29177. arm: {
  29178. height: math.unit(1.88, "feet"),
  29179. name: "Arm",
  29180. image: {
  29181. source: "./media/characters/balina-mahigan/arm.svg"
  29182. }
  29183. },
  29184. backPort: {
  29185. height: math.unit(0.685, "feet"),
  29186. name: "Back Port",
  29187. image: {
  29188. source: "./media/characters/balina-mahigan/back-port.svg"
  29189. }
  29190. },
  29191. hoofpaw: {
  29192. height: math.unit(1.41, "feet"),
  29193. name: "Hoofpaw",
  29194. image: {
  29195. source: "./media/characters/balina-mahigan/hoofpaw.svg"
  29196. }
  29197. },
  29198. leftHandBack: {
  29199. height: math.unit(0.938, "feet"),
  29200. name: "Left Hand (Back)",
  29201. image: {
  29202. source: "./media/characters/balina-mahigan/left-hand-back.svg"
  29203. }
  29204. },
  29205. leftHandFront: {
  29206. height: math.unit(0.938, "feet"),
  29207. name: "Left Hand (Front)",
  29208. image: {
  29209. source: "./media/characters/balina-mahigan/left-hand-front.svg"
  29210. }
  29211. },
  29212. rightHandBack: {
  29213. height: math.unit(0.95, "feet"),
  29214. name: "Right Hand (Back)",
  29215. image: {
  29216. source: "./media/characters/balina-mahigan/right-hand-back.svg"
  29217. }
  29218. },
  29219. rightHandFront: {
  29220. height: math.unit(0.95, "feet"),
  29221. name: "Right Hand (Front)",
  29222. image: {
  29223. source: "./media/characters/balina-mahigan/right-hand-front.svg"
  29224. }
  29225. },
  29226. },
  29227. [
  29228. {
  29229. name: "Normal",
  29230. height: math.unit(6 + 4 / 12, "feet"),
  29231. default: true
  29232. },
  29233. ]
  29234. ))
  29235. characterMakers.push(() => makeCharacter(
  29236. { name: "Balina Mejeri", species: ["wolf", "cow"], tags: ["anthro"] },
  29237. {
  29238. front: {
  29239. height: math.unit(6, "feet"),
  29240. weight: math.unit(320, "lb"),
  29241. name: "Front",
  29242. image: {
  29243. source: "./media/characters/balina-mejeri/front.svg",
  29244. extra: 517 / 488,
  29245. bottom: 44.2 / 561
  29246. }
  29247. },
  29248. },
  29249. [
  29250. {
  29251. name: "Normal",
  29252. height: math.unit(6 + 4 / 12, "feet")
  29253. },
  29254. {
  29255. name: "Business",
  29256. height: math.unit(155, "feet"),
  29257. default: true
  29258. },
  29259. ]
  29260. ))
  29261. characterMakers.push(() => makeCharacter(
  29262. { name: "Balbarian", species: ["wolf", "cow"], tags: ["anthro"] },
  29263. {
  29264. kneeling: {
  29265. height: math.unit(6 + 4 / 12, "feet"),
  29266. weight: math.unit(300 * 20, "lb"),
  29267. name: "Kneeling",
  29268. image: {
  29269. source: "./media/characters/balbarian/kneeling.svg",
  29270. extra: 922 / 862,
  29271. bottom: 42.4 / 965
  29272. }
  29273. },
  29274. },
  29275. [
  29276. {
  29277. name: "Normal",
  29278. height: math.unit(6 + 4 / 12, "feet")
  29279. },
  29280. {
  29281. name: "Treasured",
  29282. height: math.unit(18 + 9 / 12, "feet"),
  29283. default: true
  29284. },
  29285. {
  29286. name: "Macro",
  29287. height: math.unit(900, "feet")
  29288. },
  29289. ]
  29290. ))
  29291. characterMakers.push(() => makeCharacter(
  29292. { name: "Balina Amarini", species: ["wolf", "cow"], tags: ["anthro"] },
  29293. {
  29294. front: {
  29295. height: math.unit(6 + 4 / 12, "feet"),
  29296. weight: math.unit(325, "lb"),
  29297. name: "Front",
  29298. image: {
  29299. source: "./media/characters/balina-amarini/front.svg",
  29300. extra: 415 / 403,
  29301. bottom: 19 / 433.4
  29302. }
  29303. },
  29304. back: {
  29305. height: math.unit(6 + 4 / 12, "feet"),
  29306. weight: math.unit(325, "lb"),
  29307. name: "Back",
  29308. image: {
  29309. source: "./media/characters/balina-amarini/back.svg",
  29310. extra: 415 / 403,
  29311. bottom: 13.5 / 432
  29312. }
  29313. },
  29314. overdrive: {
  29315. height: math.unit(6 + 4 / 12, "feet"),
  29316. weight: math.unit(400, "lb"),
  29317. name: "Overdrive",
  29318. image: {
  29319. source: "./media/characters/balina-amarini/overdrive.svg",
  29320. extra: 269 / 259,
  29321. bottom: 12 / 282
  29322. }
  29323. },
  29324. },
  29325. [
  29326. {
  29327. name: "Boom",
  29328. height: math.unit(9 + 10 / 12, "feet"),
  29329. default: true
  29330. },
  29331. {
  29332. name: "Macro",
  29333. height: math.unit(280, "feet")
  29334. },
  29335. ]
  29336. ))
  29337. characterMakers.push(() => makeCharacter(
  29338. { name: "Lady Kubwa", species: ["giraffe", "deity"], tags: ["anthro"] },
  29339. {
  29340. goddess: {
  29341. height: math.unit(600, "feet"),
  29342. weight: math.unit(2000000, "tons"),
  29343. name: "Goddess",
  29344. image: {
  29345. source: "./media/characters/lady-kubwa/goddess.svg",
  29346. extra: 1240.5 / 1223,
  29347. bottom: 22 / 1263
  29348. }
  29349. },
  29350. goddesser: {
  29351. height: math.unit(900, "feet"),
  29352. weight: math.unit(20000000, "lb"),
  29353. name: "Goddess-er",
  29354. image: {
  29355. source: "./media/characters/lady-kubwa/goddess-er.svg",
  29356. extra: 899 / 888,
  29357. bottom: 12.6 / 912
  29358. }
  29359. },
  29360. },
  29361. [
  29362. {
  29363. name: "Macro",
  29364. height: math.unit(600, "feet"),
  29365. default: true
  29366. },
  29367. {
  29368. name: "Megamacro",
  29369. height: math.unit(250, "miles")
  29370. },
  29371. ]
  29372. ))
  29373. characterMakers.push(() => makeCharacter(
  29374. { name: "Tala Grovehorn", species: ["tauren"], tags: ["anthro"] },
  29375. {
  29376. front: {
  29377. height: math.unit(7 + 7 / 12, "feet"),
  29378. weight: math.unit(250, "lb"),
  29379. name: "Front",
  29380. image: {
  29381. source: "./media/characters/tala-grovehorn/front.svg",
  29382. extra: 2636 / 2525,
  29383. bottom: 147 / 2781
  29384. }
  29385. },
  29386. back: {
  29387. height: math.unit(7 + 7 / 12, "feet"),
  29388. weight: math.unit(250, "lb"),
  29389. name: "Back",
  29390. image: {
  29391. source: "./media/characters/tala-grovehorn/back.svg",
  29392. extra: 2635 / 2539,
  29393. bottom: 100 / 2732.8
  29394. }
  29395. },
  29396. mouth: {
  29397. height: math.unit(1.15, "feet"),
  29398. name: "Mouth",
  29399. image: {
  29400. source: "./media/characters/tala-grovehorn/mouth.svg"
  29401. }
  29402. },
  29403. dick: {
  29404. height: math.unit(2.36, "feet"),
  29405. name: "Dick",
  29406. image: {
  29407. source: "./media/characters/tala-grovehorn/dick.svg"
  29408. }
  29409. },
  29410. slit: {
  29411. height: math.unit(0.61, "feet"),
  29412. name: "Slit",
  29413. image: {
  29414. source: "./media/characters/tala-grovehorn/slit.svg"
  29415. }
  29416. },
  29417. },
  29418. [
  29419. ]
  29420. ))
  29421. characterMakers.push(() => makeCharacter(
  29422. { name: "Epona", species: ["unicorn"], tags: ["anthro"] },
  29423. {
  29424. front: {
  29425. height: math.unit(7 + 7 / 12, "feet"),
  29426. weight: math.unit(225, "lb"),
  29427. name: "Front",
  29428. image: {
  29429. source: "./media/characters/epona/front.svg",
  29430. extra: 2445 / 2290,
  29431. bottom: 251 / 2696
  29432. }
  29433. },
  29434. back: {
  29435. height: math.unit(7 + 7 / 12, "feet"),
  29436. weight: math.unit(225, "lb"),
  29437. name: "Back",
  29438. image: {
  29439. source: "./media/characters/epona/back.svg",
  29440. extra: 2546 / 2408,
  29441. bottom: 44 / 2589
  29442. }
  29443. },
  29444. genitals: {
  29445. height: math.unit(1.5, "feet"),
  29446. name: "Genitals",
  29447. image: {
  29448. source: "./media/characters/epona/genitals.svg"
  29449. }
  29450. },
  29451. },
  29452. [
  29453. {
  29454. name: "Normal",
  29455. height: math.unit(7 + 7 / 12, "feet"),
  29456. default: true
  29457. },
  29458. ]
  29459. ))
  29460. characterMakers.push(() => makeCharacter(
  29461. { name: "Avia Bloodbourn", species: ["lion"], tags: ["anthro"] },
  29462. {
  29463. front: {
  29464. height: math.unit(7, "feet"),
  29465. weight: math.unit(518, "lb"),
  29466. name: "Front",
  29467. image: {
  29468. source: "./media/characters/avia-bloodbourn/front.svg",
  29469. extra: 1466 / 1350,
  29470. bottom: 65 / 1527
  29471. }
  29472. },
  29473. },
  29474. [
  29475. ]
  29476. ))
  29477. characterMakers.push(() => makeCharacter(
  29478. { name: "Amera", species: ["dragon"], tags: ["anthro"] },
  29479. {
  29480. front: {
  29481. height: math.unit(9.35, "feet"),
  29482. weight: math.unit(600, "lb"),
  29483. name: "Front",
  29484. image: {
  29485. source: "./media/characters/amera/front.svg",
  29486. extra: 891 / 818,
  29487. bottom: 30 / 922.7
  29488. }
  29489. },
  29490. back: {
  29491. height: math.unit(9.35, "feet"),
  29492. weight: math.unit(600, "lb"),
  29493. name: "Back",
  29494. image: {
  29495. source: "./media/characters/amera/back.svg",
  29496. extra: 876 / 824,
  29497. bottom: 6.8 / 884
  29498. }
  29499. },
  29500. dick: {
  29501. height: math.unit(2.14, "feet"),
  29502. name: "Dick",
  29503. image: {
  29504. source: "./media/characters/amera/dick.svg"
  29505. }
  29506. },
  29507. },
  29508. [
  29509. {
  29510. name: "Normal",
  29511. height: math.unit(9.35, "feet"),
  29512. default: true
  29513. },
  29514. ]
  29515. ))
  29516. characterMakers.push(() => makeCharacter(
  29517. { name: "Rosewen", species: ["vulpera"], tags: ["anthro"] },
  29518. {
  29519. kneeling: {
  29520. height: math.unit(3 + 4 / 12, "feet"),
  29521. weight: math.unit(90, "lb"),
  29522. name: "Kneeling",
  29523. image: {
  29524. source: "./media/characters/rosewen/kneeling.svg",
  29525. extra: 1835 / 1571,
  29526. bottom: 27.7 / 1862
  29527. }
  29528. },
  29529. },
  29530. [
  29531. {
  29532. name: "Normal",
  29533. height: math.unit(3 + 4 / 12, "feet"),
  29534. default: true
  29535. },
  29536. ]
  29537. ))
  29538. characterMakers.push(() => makeCharacter(
  29539. { name: "Sabah", species: ["lucario"], tags: ["anthro"] },
  29540. {
  29541. front: {
  29542. height: math.unit(5 + 10 / 12, "feet"),
  29543. weight: math.unit(200, "lb"),
  29544. name: "Front",
  29545. image: {
  29546. source: "./media/characters/sabah/front.svg",
  29547. extra: 849 / 763,
  29548. bottom: 33.9 / 881
  29549. }
  29550. },
  29551. },
  29552. [
  29553. {
  29554. name: "Normal",
  29555. height: math.unit(5 + 10 / 12, "feet"),
  29556. default: true
  29557. },
  29558. ]
  29559. ))
  29560. characterMakers.push(() => makeCharacter(
  29561. { name: "Purple Flame", species: ["pony"], tags: ["feral"] },
  29562. {
  29563. front: {
  29564. height: math.unit(3 + 5 / 12, "feet"),
  29565. weight: math.unit(40, "kg"),
  29566. name: "Front",
  29567. image: {
  29568. source: "./media/characters/purple-flame/front.svg",
  29569. extra: 1577 / 1412,
  29570. bottom: 97 / 1694
  29571. }
  29572. },
  29573. frontDressed: {
  29574. height: math.unit(3 + 5 / 12, "feet"),
  29575. weight: math.unit(40, "kg"),
  29576. name: "Front (Dressed)",
  29577. image: {
  29578. source: "./media/characters/purple-flame/front-dressed.svg",
  29579. extra: 1577 / 1412,
  29580. bottom: 97 / 1694
  29581. }
  29582. },
  29583. headphones: {
  29584. height: math.unit(0.85, "feet"),
  29585. name: "Headphones",
  29586. image: {
  29587. source: "./media/characters/purple-flame/headphones.svg"
  29588. }
  29589. },
  29590. },
  29591. [
  29592. {
  29593. name: "Really Small",
  29594. height: math.unit(5, "cm")
  29595. },
  29596. {
  29597. name: "Micro",
  29598. height: math.unit(1 + 5 / 12, "feet")
  29599. },
  29600. {
  29601. name: "Normal",
  29602. height: math.unit(3 + 5 / 12, "feet"),
  29603. default: true
  29604. },
  29605. {
  29606. name: "Minimacro",
  29607. height: math.unit(125, "feet")
  29608. },
  29609. {
  29610. name: "Macro",
  29611. height: math.unit(0.5, "miles")
  29612. },
  29613. {
  29614. name: "Megamacro",
  29615. height: math.unit(50, "miles")
  29616. },
  29617. {
  29618. name: "Gigantic",
  29619. height: math.unit(750, "miles")
  29620. },
  29621. {
  29622. name: "Planetary",
  29623. height: math.unit(15000, "miles")
  29624. },
  29625. ]
  29626. ))
  29627. characterMakers.push(() => makeCharacter(
  29628. { name: "Arsenal", species: ["wolf", "deity"], tags: ["anthro"] },
  29629. {
  29630. front: {
  29631. height: math.unit(14, "feet"),
  29632. weight: math.unit(959, "lb"),
  29633. name: "Front",
  29634. image: {
  29635. source: "./media/characters/arsenal/front.svg",
  29636. extra: 2357 / 2157,
  29637. bottom: 93 / 2458
  29638. }
  29639. },
  29640. },
  29641. [
  29642. {
  29643. name: "Normal",
  29644. height: math.unit(14, "feet"),
  29645. default: true
  29646. },
  29647. ]
  29648. ))
  29649. characterMakers.push(() => makeCharacter(
  29650. { name: "Adira", species: ["mouse"], tags: ["anthro"] },
  29651. {
  29652. front: {
  29653. height: math.unit(6, "feet"),
  29654. weight: math.unit(150, "lb"),
  29655. name: "Front",
  29656. image: {
  29657. source: "./media/characters/adira/front.svg",
  29658. extra: 2121/2013,
  29659. bottom: 206/2327
  29660. }
  29661. },
  29662. },
  29663. [
  29664. {
  29665. name: "Micro",
  29666. height: math.unit(4, "inches"),
  29667. default: true
  29668. },
  29669. {
  29670. name: "Macro",
  29671. height: math.unit(50, "feet")
  29672. },
  29673. ]
  29674. ))
  29675. characterMakers.push(() => makeCharacter(
  29676. { name: "Grim", species: ["ceratosaurus"], tags: ["anthro"] },
  29677. {
  29678. front: {
  29679. height: math.unit(16, "feet"),
  29680. weight: math.unit(1000, "lb"),
  29681. name: "Front",
  29682. image: {
  29683. source: "./media/characters/grim/front.svg",
  29684. extra: 622 / 614,
  29685. bottom: 18.1 / 642
  29686. }
  29687. },
  29688. back: {
  29689. height: math.unit(16, "feet"),
  29690. weight: math.unit(1000, "lb"),
  29691. name: "Back",
  29692. image: {
  29693. source: "./media/characters/grim/back.svg",
  29694. extra: 610.6 / 602,
  29695. bottom: 40.8 / 652
  29696. }
  29697. },
  29698. hunched: {
  29699. height: math.unit(9.75, "feet"),
  29700. weight: math.unit(1000, "lb"),
  29701. name: "Hunched",
  29702. image: {
  29703. source: "./media/characters/grim/hunched.svg",
  29704. extra: 304 / 297,
  29705. bottom: 35.4 / 394
  29706. }
  29707. },
  29708. },
  29709. [
  29710. {
  29711. name: "Normal",
  29712. height: math.unit(16, "feet"),
  29713. default: true
  29714. },
  29715. ]
  29716. ))
  29717. characterMakers.push(() => makeCharacter(
  29718. { name: "Sinja", species: ["monster", "fox"], tags: ["anthro"] },
  29719. {
  29720. front: {
  29721. height: math.unit(2.3, "meters"),
  29722. weight: math.unit(300, "lb"),
  29723. name: "Front",
  29724. image: {
  29725. source: "./media/characters/sinja/front-sfw.svg",
  29726. extra: 1393 / 1294,
  29727. bottom: 70 / 1463
  29728. }
  29729. },
  29730. frontNsfw: {
  29731. height: math.unit(2.3, "meters"),
  29732. weight: math.unit(300, "lb"),
  29733. name: "Front (NSFW)",
  29734. image: {
  29735. source: "./media/characters/sinja/front-nsfw.svg",
  29736. extra: 1393 / 1294,
  29737. bottom: 70 / 1463
  29738. }
  29739. },
  29740. back: {
  29741. height: math.unit(2.3, "meters"),
  29742. weight: math.unit(300, "lb"),
  29743. name: "Back",
  29744. image: {
  29745. source: "./media/characters/sinja/back.svg",
  29746. extra: 1393 / 1294,
  29747. bottom: 70 / 1463
  29748. }
  29749. },
  29750. head: {
  29751. height: math.unit(1.771, "feet"),
  29752. name: "Head",
  29753. image: {
  29754. source: "./media/characters/sinja/head.svg"
  29755. }
  29756. },
  29757. slit: {
  29758. height: math.unit(0.8, "feet"),
  29759. name: "Slit",
  29760. image: {
  29761. source: "./media/characters/sinja/slit.svg"
  29762. }
  29763. },
  29764. },
  29765. [
  29766. {
  29767. name: "Normal",
  29768. height: math.unit(2.3, "meters")
  29769. },
  29770. {
  29771. name: "Macro",
  29772. height: math.unit(91, "meters"),
  29773. default: true
  29774. },
  29775. {
  29776. name: "Megamacro",
  29777. height: math.unit(91440, "meters")
  29778. },
  29779. {
  29780. name: "Gigamacro",
  29781. height: math.unit(60960000, "meters")
  29782. },
  29783. {
  29784. name: "Teramacro",
  29785. height: math.unit(9144000000, "meters")
  29786. },
  29787. ]
  29788. ))
  29789. characterMakers.push(() => makeCharacter(
  29790. { name: "Kyu", species: ["cat"], tags: ["anthro"] },
  29791. {
  29792. front: {
  29793. height: math.unit(1.7, "meters"),
  29794. weight: math.unit(130, "lb"),
  29795. name: "Front",
  29796. image: {
  29797. source: "./media/characters/kyu/front.svg",
  29798. extra: 415 / 395,
  29799. bottom: 5 / 420
  29800. }
  29801. },
  29802. head: {
  29803. height: math.unit(1.75, "feet"),
  29804. name: "Head",
  29805. image: {
  29806. source: "./media/characters/kyu/head.svg"
  29807. }
  29808. },
  29809. foot: {
  29810. height: math.unit(0.81, "feet"),
  29811. name: "Foot",
  29812. image: {
  29813. source: "./media/characters/kyu/foot.svg"
  29814. }
  29815. },
  29816. },
  29817. [
  29818. {
  29819. name: "Normal",
  29820. height: math.unit(1.7, "meters")
  29821. },
  29822. {
  29823. name: "Macro",
  29824. height: math.unit(131, "feet"),
  29825. default: true
  29826. },
  29827. {
  29828. name: "Megamacro",
  29829. height: math.unit(91440, "meters")
  29830. },
  29831. {
  29832. name: "Gigamacro",
  29833. height: math.unit(60960000, "meters")
  29834. },
  29835. {
  29836. name: "Teramacro",
  29837. height: math.unit(9144000000, "meters")
  29838. },
  29839. ]
  29840. ))
  29841. characterMakers.push(() => makeCharacter(
  29842. { name: "Joey", species: ["kangaroo"], tags: ["anthro"] },
  29843. {
  29844. front: {
  29845. height: math.unit(7 + 1 / 12, "feet"),
  29846. weight: math.unit(250, "lb"),
  29847. name: "Front",
  29848. image: {
  29849. source: "./media/characters/joey/front.svg",
  29850. extra: 1791 / 1537,
  29851. bottom: 28 / 1816
  29852. }
  29853. },
  29854. },
  29855. [
  29856. {
  29857. name: "Micro",
  29858. height: math.unit(3, "inches")
  29859. },
  29860. {
  29861. name: "Normal",
  29862. height: math.unit(7 + 1 / 12, "feet"),
  29863. default: true
  29864. },
  29865. ]
  29866. ))
  29867. characterMakers.push(() => makeCharacter(
  29868. { name: "Sam Evans", species: ["fox", "demon"], tags: ["anthro"] },
  29869. {
  29870. front: {
  29871. height: math.unit(165, "cm"),
  29872. weight: math.unit(140, "lb"),
  29873. name: "Front",
  29874. image: {
  29875. source: "./media/characters/sam-evans/front.svg",
  29876. extra: 3417 / 3230,
  29877. bottom: 41.3 / 3417
  29878. }
  29879. },
  29880. frontSixTails: {
  29881. height: math.unit(165, "cm"),
  29882. weight: math.unit(140, "lb"),
  29883. name: "Front-six-tails",
  29884. image: {
  29885. source: "./media/characters/sam-evans/front-six-tails.svg",
  29886. extra: 3417 / 3230,
  29887. bottom: 41.3 / 3417
  29888. }
  29889. },
  29890. back: {
  29891. height: math.unit(165, "cm"),
  29892. weight: math.unit(140, "lb"),
  29893. name: "Back",
  29894. image: {
  29895. source: "./media/characters/sam-evans/back.svg",
  29896. extra: 3227 / 3032,
  29897. bottom: 6.8 / 3234
  29898. }
  29899. },
  29900. face: {
  29901. height: math.unit(0.68, "feet"),
  29902. name: "Face",
  29903. image: {
  29904. source: "./media/characters/sam-evans/face.svg"
  29905. }
  29906. },
  29907. },
  29908. [
  29909. {
  29910. name: "Normal",
  29911. height: math.unit(165, "cm"),
  29912. default: true
  29913. },
  29914. {
  29915. name: "Macro",
  29916. height: math.unit(100, "meters")
  29917. },
  29918. {
  29919. name: "Macro+",
  29920. height: math.unit(800, "meters")
  29921. },
  29922. {
  29923. name: "Macro++",
  29924. height: math.unit(3, "km")
  29925. },
  29926. {
  29927. name: "Macro+++",
  29928. height: math.unit(30, "km")
  29929. },
  29930. ]
  29931. ))
  29932. characterMakers.push(() => makeCharacter(
  29933. { name: "Juliet A", species: ["lizard"], tags: ["anthro"] },
  29934. {
  29935. front: {
  29936. height: math.unit(10, "feet"),
  29937. weight: math.unit(750, "lb"),
  29938. name: "Front",
  29939. image: {
  29940. source: "./media/characters/juliet-a/front.svg",
  29941. extra: 1766 / 1720,
  29942. bottom: 43 / 1809
  29943. }
  29944. },
  29945. back: {
  29946. height: math.unit(10, "feet"),
  29947. weight: math.unit(750, "lb"),
  29948. name: "Back",
  29949. image: {
  29950. source: "./media/characters/juliet-a/back.svg",
  29951. extra: 1781 / 1734,
  29952. bottom: 35 / 1810,
  29953. }
  29954. },
  29955. },
  29956. [
  29957. {
  29958. name: "Normal",
  29959. height: math.unit(10, "feet"),
  29960. default: true
  29961. },
  29962. {
  29963. name: "Dragon Form",
  29964. height: math.unit(250, "feet")
  29965. },
  29966. {
  29967. name: "Macro",
  29968. height: math.unit(1000, "feet")
  29969. },
  29970. {
  29971. name: "Megamacro",
  29972. height: math.unit(10000, "feet")
  29973. }
  29974. ]
  29975. ))
  29976. characterMakers.push(() => makeCharacter(
  29977. { name: "Wild", species: ["hyena"], tags: ["anthro"] },
  29978. {
  29979. regular: {
  29980. height: math.unit(7 + 3 / 12, "feet"),
  29981. weight: math.unit(260, "lb"),
  29982. name: "Regular",
  29983. image: {
  29984. source: "./media/characters/wild/regular.svg",
  29985. extra: 97.45 / 92,
  29986. bottom: 6.8 / 104.3
  29987. }
  29988. },
  29989. biggums: {
  29990. height: math.unit(8 + 6 / 12, "feet"),
  29991. weight: math.unit(425, "lb"),
  29992. name: "Biggums",
  29993. image: {
  29994. source: "./media/characters/wild/biggums.svg",
  29995. extra: 97.45 / 92,
  29996. bottom: 7.5 / 132.34
  29997. }
  29998. },
  29999. mawRegular: {
  30000. height: math.unit(1.24, "feet"),
  30001. name: "Maw (Regular)",
  30002. image: {
  30003. source: "./media/characters/wild/maw.svg"
  30004. }
  30005. },
  30006. mawBiggums: {
  30007. height: math.unit(1.47, "feet"),
  30008. name: "Maw (Biggums)",
  30009. image: {
  30010. source: "./media/characters/wild/maw.svg"
  30011. }
  30012. },
  30013. },
  30014. [
  30015. {
  30016. name: "Normal",
  30017. height: math.unit(7 + 3 / 12, "feet"),
  30018. default: true
  30019. },
  30020. ]
  30021. ))
  30022. characterMakers.push(() => makeCharacter(
  30023. { name: "Vidar", species: ["deer"], tags: ["anthro", "feral"] },
  30024. {
  30025. front: {
  30026. height: math.unit(2.5, "meters"),
  30027. weight: math.unit(200, "kg"),
  30028. name: "Front",
  30029. image: {
  30030. source: "./media/characters/vidar/front.svg",
  30031. extra: 2994 / 2795,
  30032. bottom: 56 / 3061
  30033. }
  30034. },
  30035. back: {
  30036. height: math.unit(2.5, "meters"),
  30037. weight: math.unit(200, "kg"),
  30038. name: "Back",
  30039. image: {
  30040. source: "./media/characters/vidar/back.svg",
  30041. extra: 3131 / 2928,
  30042. bottom: 13.5 / 3141.5
  30043. }
  30044. },
  30045. feral: {
  30046. height: math.unit(2.5, "meters"),
  30047. weight: math.unit(2000, "kg"),
  30048. name: "Feral",
  30049. image: {
  30050. source: "./media/characters/vidar/feral.svg",
  30051. extra: 2790 / 1765,
  30052. bottom: 6 / 2796
  30053. }
  30054. },
  30055. },
  30056. [
  30057. {
  30058. name: "Normal",
  30059. height: math.unit(2.5, "meters"),
  30060. default: true
  30061. },
  30062. {
  30063. name: "Macro",
  30064. height: math.unit(100, "meters")
  30065. },
  30066. ]
  30067. ))
  30068. characterMakers.push(() => makeCharacter(
  30069. { name: "Ash", species: ["zoroark"], tags: ["anthro"] },
  30070. {
  30071. front: {
  30072. height: math.unit(5 + 9 / 12, "feet"),
  30073. weight: math.unit(120, "lb"),
  30074. name: "Front",
  30075. image: {
  30076. source: "./media/characters/ash/front.svg",
  30077. extra: 2189 / 1961,
  30078. bottom: 5.2 / 2194
  30079. }
  30080. },
  30081. },
  30082. [
  30083. {
  30084. name: "Normal",
  30085. height: math.unit(5 + 9 / 12, "feet"),
  30086. default: true
  30087. },
  30088. ]
  30089. ))
  30090. characterMakers.push(() => makeCharacter(
  30091. { name: "Gygabite", species: ["draconi"], tags: ["anthro"] },
  30092. {
  30093. front: {
  30094. height: math.unit(9, "feet"),
  30095. weight: math.unit(10000, "lb"),
  30096. name: "Front",
  30097. image: {
  30098. source: "./media/characters/gygabite/front.svg",
  30099. bottom: 31.7 / 537.8,
  30100. extra: 505 / 370
  30101. }
  30102. },
  30103. },
  30104. [
  30105. {
  30106. name: "Normal",
  30107. height: math.unit(9, "feet"),
  30108. default: true
  30109. },
  30110. ]
  30111. ))
  30112. characterMakers.push(() => makeCharacter(
  30113. { name: "P0TAT0", species: ["protogen"], tags: ["anthro"] },
  30114. {
  30115. front: {
  30116. height: math.unit(12, "feet"),
  30117. weight: math.unit(4000, "lb"),
  30118. name: "Front",
  30119. image: {
  30120. source: "./media/characters/p0tat0/front.svg",
  30121. extra: 1065 / 921,
  30122. bottom: 55.7 / 1121.25
  30123. }
  30124. },
  30125. },
  30126. [
  30127. {
  30128. name: "Normal",
  30129. height: math.unit(12, "feet"),
  30130. default: true
  30131. },
  30132. ]
  30133. ))
  30134. characterMakers.push(() => makeCharacter(
  30135. { name: "Dusk", species: ["arcanine"], tags: ["feral"] },
  30136. {
  30137. side: {
  30138. height: math.unit(6.5, "feet"),
  30139. weight: math.unit(800, "lb"),
  30140. name: "Side",
  30141. image: {
  30142. source: "./media/characters/dusk/side.svg",
  30143. extra: 615 / 373,
  30144. bottom: 53 / 664
  30145. }
  30146. },
  30147. sitting: {
  30148. height: math.unit(7, "feet"),
  30149. weight: math.unit(800, "lb"),
  30150. name: "Sitting",
  30151. image: {
  30152. source: "./media/characters/dusk/sitting.svg",
  30153. extra: 753 / 425,
  30154. bottom: 33 / 774
  30155. }
  30156. },
  30157. head: {
  30158. height: math.unit(6.1, "feet"),
  30159. name: "Head",
  30160. image: {
  30161. source: "./media/characters/dusk/head.svg"
  30162. }
  30163. },
  30164. },
  30165. [
  30166. {
  30167. name: "Normal",
  30168. height: math.unit(7, "feet"),
  30169. default: true
  30170. },
  30171. ]
  30172. ))
  30173. characterMakers.push(() => makeCharacter(
  30174. { name: "Jay Direwolf", species: ["dire-wolf"], tags: ["anthro"] },
  30175. {
  30176. front: {
  30177. height: math.unit(15, "feet"),
  30178. weight: math.unit(7000, "lb"),
  30179. name: "Front",
  30180. image: {
  30181. source: "./media/characters/jay-direwolf/front.svg",
  30182. extra: 1810 / 1732,
  30183. bottom: 66 / 1892
  30184. }
  30185. },
  30186. },
  30187. [
  30188. {
  30189. name: "Normal",
  30190. height: math.unit(15, "feet"),
  30191. default: true
  30192. },
  30193. ]
  30194. ))
  30195. characterMakers.push(() => makeCharacter(
  30196. { name: "Anchovie", species: ["cat"], tags: ["anthro"] },
  30197. {
  30198. front: {
  30199. height: math.unit(4 + 9 / 12, "feet"),
  30200. weight: math.unit(130, "lb"),
  30201. name: "Front",
  30202. image: {
  30203. source: "./media/characters/anchovie/front.svg",
  30204. extra: 382 / 350,
  30205. bottom: 25 / 409
  30206. }
  30207. },
  30208. back: {
  30209. height: math.unit(4 + 9 / 12, "feet"),
  30210. weight: math.unit(130, "lb"),
  30211. name: "Back",
  30212. image: {
  30213. source: "./media/characters/anchovie/back.svg",
  30214. extra: 385 / 352,
  30215. bottom: 16.6 / 402
  30216. }
  30217. },
  30218. frontDressed: {
  30219. height: math.unit(4 + 9 / 12, "feet"),
  30220. weight: math.unit(130, "lb"),
  30221. name: "Front (Dressed)",
  30222. image: {
  30223. source: "./media/characters/anchovie/front-dressed.svg",
  30224. extra: 382 / 350,
  30225. bottom: 25 / 409
  30226. }
  30227. },
  30228. backDressed: {
  30229. height: math.unit(4 + 9 / 12, "feet"),
  30230. weight: math.unit(130, "lb"),
  30231. name: "Back (Dressed)",
  30232. image: {
  30233. source: "./media/characters/anchovie/back-dressed.svg",
  30234. extra: 385 / 352,
  30235. bottom: 16.6 / 402
  30236. }
  30237. },
  30238. },
  30239. [
  30240. {
  30241. name: "Micro",
  30242. height: math.unit(6.4, "inches")
  30243. },
  30244. {
  30245. name: "Normal",
  30246. height: math.unit(4 + 9 / 12, "feet"),
  30247. default: true
  30248. },
  30249. ]
  30250. ))
  30251. characterMakers.push(() => makeCharacter(
  30252. { name: "AcidRenamon", species: ["renamon", "skunk"], tags: ["anthro"] },
  30253. {
  30254. front: {
  30255. height: math.unit(2, "meters"),
  30256. weight: math.unit(180, "lb"),
  30257. name: "Front",
  30258. image: {
  30259. source: "./media/characters/acidrenamon/front.svg",
  30260. extra: 987 / 890,
  30261. bottom: 22.8 / 1009
  30262. }
  30263. },
  30264. back: {
  30265. height: math.unit(2, "meters"),
  30266. weight: math.unit(180, "lb"),
  30267. name: "Back",
  30268. image: {
  30269. source: "./media/characters/acidrenamon/back.svg",
  30270. extra: 983 / 891,
  30271. bottom: 8.4 / 992
  30272. }
  30273. },
  30274. head: {
  30275. height: math.unit(1.92, "feet"),
  30276. name: "Head",
  30277. image: {
  30278. source: "./media/characters/acidrenamon/head.svg"
  30279. }
  30280. },
  30281. rump: {
  30282. height: math.unit(1.72, "feet"),
  30283. name: "Rump",
  30284. image: {
  30285. source: "./media/characters/acidrenamon/rump.svg"
  30286. }
  30287. },
  30288. tail: {
  30289. height: math.unit(4.2, "feet"),
  30290. name: "Tail",
  30291. image: {
  30292. source: "./media/characters/acidrenamon/tail.svg"
  30293. }
  30294. },
  30295. },
  30296. [
  30297. {
  30298. name: "Normal",
  30299. height: math.unit(2, "meters"),
  30300. default: true
  30301. },
  30302. {
  30303. name: "Minimacro",
  30304. height: math.unit(7, "meters")
  30305. },
  30306. {
  30307. name: "Macro",
  30308. height: math.unit(200, "meters")
  30309. },
  30310. {
  30311. name: "Gigamacro",
  30312. height: math.unit(0.2, "earths")
  30313. },
  30314. ]
  30315. ))
  30316. characterMakers.push(() => makeCharacter(
  30317. { name: "Kenzie Lee", species: ["lycanroc"], tags: ["anthro"] },
  30318. {
  30319. front: {
  30320. height: math.unit(152, "feet"),
  30321. name: "Front",
  30322. image: {
  30323. source: "./media/characters/kenzie-lee/front.svg",
  30324. extra: 1869/1774,
  30325. bottom: 128/1997
  30326. }
  30327. },
  30328. side: {
  30329. height: math.unit(86, "feet"),
  30330. name: "Side",
  30331. image: {
  30332. source: "./media/characters/kenzie-lee/side.svg",
  30333. extra: 930/815,
  30334. bottom: 177/1107
  30335. }
  30336. },
  30337. paw: {
  30338. height: math.unit(15, "feet"),
  30339. name: "Paw",
  30340. image: {
  30341. source: "./media/characters/kenzie-lee/paw.svg"
  30342. }
  30343. },
  30344. },
  30345. [
  30346. {
  30347. name: "Kenzie Flea",
  30348. height: math.unit(2, "mm"),
  30349. default: true
  30350. },
  30351. {
  30352. name: "Micro",
  30353. height: math.unit(2, "inches")
  30354. },
  30355. {
  30356. name: "Normal",
  30357. height: math.unit(152, "feet")
  30358. },
  30359. {
  30360. name: "Megamacro",
  30361. height: math.unit(7, "miles")
  30362. },
  30363. {
  30364. name: "Gigamacro",
  30365. height: math.unit(8000, "miles")
  30366. },
  30367. ]
  30368. ))
  30369. characterMakers.push(() => makeCharacter(
  30370. { name: "Withers", species: ["hellhound"], tags: ["anthro"] },
  30371. {
  30372. front: {
  30373. height: math.unit(6, "feet"),
  30374. name: "Front",
  30375. image: {
  30376. source: "./media/characters/withers/front.svg",
  30377. extra: 1935/1760,
  30378. bottom: 72/2007
  30379. }
  30380. },
  30381. back: {
  30382. height: math.unit(6, "feet"),
  30383. name: "Back",
  30384. image: {
  30385. source: "./media/characters/withers/back.svg",
  30386. extra: 1944/1792,
  30387. bottom: 12/1956
  30388. }
  30389. },
  30390. dressed: {
  30391. height: math.unit(6, "feet"),
  30392. name: "Dressed",
  30393. image: {
  30394. source: "./media/characters/withers/dressed.svg",
  30395. extra: 1937/1765,
  30396. bottom: 73/2010
  30397. }
  30398. },
  30399. phase1: {
  30400. height: math.unit(1.1, "feet"),
  30401. name: "Phase 1",
  30402. image: {
  30403. source: "./media/characters/withers/phase-1.svg",
  30404. extra: 1885/1232,
  30405. bottom: 0/1885
  30406. }
  30407. },
  30408. phase2: {
  30409. height: math.unit(1.05, "feet"),
  30410. name: "Phase 2",
  30411. image: {
  30412. source: "./media/characters/withers/phase-2.svg",
  30413. extra: 1792/1090,
  30414. bottom: 0/1792
  30415. }
  30416. },
  30417. partyWipe: {
  30418. height: math.unit(1.1, "feet"),
  30419. name: "Party Wipe",
  30420. image: {
  30421. source: "./media/characters/withers/party-wipe.svg",
  30422. extra: 1864/1207,
  30423. bottom: 0/1864
  30424. }
  30425. },
  30426. },
  30427. [
  30428. {
  30429. name: "Macro",
  30430. height: math.unit(167, "feet"),
  30431. default: true
  30432. },
  30433. {
  30434. name: "Megamacro",
  30435. height: math.unit(15, "miles")
  30436. }
  30437. ]
  30438. ))
  30439. characterMakers.push(() => makeCharacter(
  30440. { name: "Nemoskii", species: ["skunk"], tags: ["anthro"] },
  30441. {
  30442. front: {
  30443. height: math.unit(6 + 7 / 12, "feet"),
  30444. weight: math.unit(250, "lb"),
  30445. name: "Front",
  30446. image: {
  30447. source: "./media/characters/nemoskii/front.svg",
  30448. extra: 2270 / 1734,
  30449. bottom: 86 / 2354
  30450. }
  30451. },
  30452. back: {
  30453. height: math.unit(6 + 7 / 12, "feet"),
  30454. weight: math.unit(250, "lb"),
  30455. name: "Back",
  30456. image: {
  30457. source: "./media/characters/nemoskii/back.svg",
  30458. extra: 1845 / 1788,
  30459. bottom: 10.5 / 1852
  30460. }
  30461. },
  30462. head: {
  30463. height: math.unit(1.31, "feet"),
  30464. name: "Head",
  30465. image: {
  30466. source: "./media/characters/nemoskii/head.svg"
  30467. }
  30468. },
  30469. },
  30470. [
  30471. {
  30472. name: "Micro",
  30473. height: math.unit((6 + 7 / 12) * 0.1, "feet")
  30474. },
  30475. {
  30476. name: "Normal",
  30477. height: math.unit(6 + 7 / 12, "feet"),
  30478. default: true
  30479. },
  30480. {
  30481. name: "Macro",
  30482. height: math.unit((6 + 7 / 12) * 150, "feet")
  30483. },
  30484. {
  30485. name: "Macro+",
  30486. height: math.unit((6 + 7 / 12) * 500, "feet")
  30487. },
  30488. {
  30489. name: "Megamacro",
  30490. height: math.unit((6 + 7 / 12) * 100000, "feet")
  30491. },
  30492. ]
  30493. ))
  30494. characterMakers.push(() => makeCharacter(
  30495. { name: "Shui", species: ["dragon"], tags: ["anthro"] },
  30496. {
  30497. front: {
  30498. height: math.unit(1, "mile"),
  30499. weight: math.unit(265261.9, "lb"),
  30500. name: "Front",
  30501. image: {
  30502. source: "./media/characters/shui/front.svg",
  30503. extra: 1633 / 1564,
  30504. bottom: 91.5 / 1726
  30505. }
  30506. },
  30507. },
  30508. [
  30509. {
  30510. name: "Macro",
  30511. height: math.unit(1, "mile"),
  30512. default: true
  30513. },
  30514. ]
  30515. ))
  30516. characterMakers.push(() => makeCharacter(
  30517. { name: "Arokh Takakura", species: ["dragon"], tags: ["anthro"] },
  30518. {
  30519. front: {
  30520. height: math.unit(12 + 6 / 12, "feet"),
  30521. weight: math.unit(1342, "lb"),
  30522. name: "Front",
  30523. image: {
  30524. source: "./media/characters/arokh-takakura/front.svg",
  30525. extra: 1089 / 1043,
  30526. bottom: 77.4 / 1176.7
  30527. }
  30528. },
  30529. back: {
  30530. height: math.unit(12 + 6 / 12, "feet"),
  30531. weight: math.unit(1342, "lb"),
  30532. name: "Back",
  30533. image: {
  30534. source: "./media/characters/arokh-takakura/back.svg",
  30535. extra: 1046 / 1019,
  30536. bottom: 102 / 1150
  30537. }
  30538. },
  30539. },
  30540. [
  30541. {
  30542. name: "Big",
  30543. height: math.unit(12 + 6 / 12, "feet"),
  30544. default: true
  30545. },
  30546. ]
  30547. ))
  30548. characterMakers.push(() => makeCharacter(
  30549. { name: "Theo", species: ["cat"], tags: ["anthro"] },
  30550. {
  30551. front: {
  30552. height: math.unit(5 + 6 / 12, "feet"),
  30553. weight: math.unit(150, "lb"),
  30554. name: "Front",
  30555. image: {
  30556. source: "./media/characters/theo/front.svg",
  30557. extra: 1184 / 1131,
  30558. bottom: 7.4 / 1191
  30559. }
  30560. },
  30561. },
  30562. [
  30563. {
  30564. name: "Micro",
  30565. height: math.unit(5, "inches")
  30566. },
  30567. {
  30568. name: "Normal",
  30569. height: math.unit(5 + 6 / 12, "feet"),
  30570. default: true
  30571. },
  30572. ]
  30573. ))
  30574. characterMakers.push(() => makeCharacter(
  30575. { name: "Cecelia Swift", species: ["otter"], tags: ["anthro"] },
  30576. {
  30577. front: {
  30578. height: math.unit(5 + 9 / 12, "feet"),
  30579. weight: math.unit(130, "lb"),
  30580. name: "Front",
  30581. image: {
  30582. source: "./media/characters/cecelia-swift/front.svg",
  30583. extra: 502 / 484,
  30584. bottom: 23 / 523
  30585. }
  30586. },
  30587. back: {
  30588. height: math.unit(5 + 9 / 12, "feet"),
  30589. weight: math.unit(130, "lb"),
  30590. name: "Back",
  30591. image: {
  30592. source: "./media/characters/cecelia-swift/back.svg",
  30593. extra: 499 / 485,
  30594. bottom: 12 / 511
  30595. }
  30596. },
  30597. head: {
  30598. height: math.unit(0.90, "feet"),
  30599. name: "Head",
  30600. image: {
  30601. source: "./media/characters/cecelia-swift/head.svg"
  30602. }
  30603. },
  30604. rump: {
  30605. height: math.unit(1.75, "feet"),
  30606. name: "Rump",
  30607. image: {
  30608. source: "./media/characters/cecelia-swift/rump.svg"
  30609. }
  30610. },
  30611. },
  30612. [
  30613. {
  30614. name: "Normal",
  30615. height: math.unit(5 + 9 / 12, "feet"),
  30616. default: true
  30617. },
  30618. {
  30619. name: "Big",
  30620. height: math.unit(50, "feet")
  30621. },
  30622. {
  30623. name: "Macro",
  30624. height: math.unit(100, "feet")
  30625. },
  30626. {
  30627. name: "Macro+",
  30628. height: math.unit(500, "feet")
  30629. },
  30630. {
  30631. name: "Macro++",
  30632. height: math.unit(1000, "feet")
  30633. },
  30634. ]
  30635. ))
  30636. characterMakers.push(() => makeCharacter(
  30637. { name: "Kaunan", species: ["dragon"], tags: ["anthro"] },
  30638. {
  30639. front: {
  30640. height: math.unit(6, "feet"),
  30641. weight: math.unit(150, "lb"),
  30642. name: "Front",
  30643. image: {
  30644. source: "./media/characters/kaunan/front.svg",
  30645. extra: 2890 / 2523,
  30646. bottom: 49 / 2939
  30647. }
  30648. },
  30649. },
  30650. [
  30651. {
  30652. name: "Macro",
  30653. height: math.unit(150, "feet"),
  30654. default: true
  30655. },
  30656. ]
  30657. ))
  30658. characterMakers.push(() => makeCharacter(
  30659. { name: "Fei", species: ["fox"], tags: ["anthro"] },
  30660. {
  30661. dressed: {
  30662. height: math.unit(175, "cm"),
  30663. weight: math.unit(60, "kg"),
  30664. name: "Dressed",
  30665. image: {
  30666. source: "./media/characters/fei/dressed.svg",
  30667. extra: 1402/1278,
  30668. bottom: 27/1429
  30669. }
  30670. },
  30671. nude: {
  30672. height: math.unit(175, "cm"),
  30673. weight: math.unit(60, "kg"),
  30674. name: "Nude",
  30675. image: {
  30676. source: "./media/characters/fei/nude.svg",
  30677. extra: 1402/1278,
  30678. bottom: 27/1429
  30679. }
  30680. },
  30681. heels: {
  30682. height: math.unit(0.466, "feet"),
  30683. name: "Heels",
  30684. image: {
  30685. source: "./media/characters/fei/heels.svg",
  30686. extra: 156/152,
  30687. bottom: 28/184
  30688. }
  30689. },
  30690. },
  30691. [
  30692. {
  30693. name: "Mortal",
  30694. height: math.unit(175, "cm")
  30695. },
  30696. {
  30697. name: "Normal",
  30698. height: math.unit(3500, "m")
  30699. },
  30700. {
  30701. name: "Stroll",
  30702. height: math.unit(18.4, "km"),
  30703. default: true
  30704. },
  30705. {
  30706. name: "Showoff",
  30707. height: math.unit(175, "km")
  30708. },
  30709. ]
  30710. ))
  30711. characterMakers.push(() => makeCharacter(
  30712. { name: "Edrax", species: ["ferromorph"], tags: ["anthro"] },
  30713. {
  30714. front: {
  30715. height: math.unit(7, "feet"),
  30716. weight: math.unit(1000, "kg"),
  30717. name: "Front",
  30718. image: {
  30719. source: "./media/characters/edrax/front.svg",
  30720. extra: 2838 / 2550,
  30721. bottom: 130 / 2968
  30722. }
  30723. },
  30724. },
  30725. [
  30726. {
  30727. name: "Small",
  30728. height: math.unit(7, "feet")
  30729. },
  30730. {
  30731. name: "Normal",
  30732. height: math.unit(1500, "meters")
  30733. },
  30734. {
  30735. name: "Mega",
  30736. height: math.unit(12000000, "km"),
  30737. default: true
  30738. },
  30739. {
  30740. name: "Megamacro",
  30741. height: math.unit(10600000, "lightyears")
  30742. },
  30743. {
  30744. name: "Hypermacro",
  30745. height: math.unit(256, "yottameters")
  30746. },
  30747. ]
  30748. ))
  30749. characterMakers.push(() => makeCharacter(
  30750. { name: "Clove", species: ["rabbit"], tags: ["anthro"] },
  30751. {
  30752. front: {
  30753. height: math.unit(10, "feet"),
  30754. weight: math.unit(750, "lb"),
  30755. name: "Front",
  30756. image: {
  30757. source: "./media/characters/clove/front.svg",
  30758. extra: 1918/1751,
  30759. bottom: 52/1970
  30760. }
  30761. },
  30762. back: {
  30763. height: math.unit(10, "feet"),
  30764. weight: math.unit(750, "lb"),
  30765. name: "Back",
  30766. image: {
  30767. source: "./media/characters/clove/back.svg",
  30768. extra: 1912/1747,
  30769. bottom: 50/1962
  30770. }
  30771. },
  30772. },
  30773. [
  30774. {
  30775. name: "Normal",
  30776. height: math.unit(10, "feet"),
  30777. default: true
  30778. },
  30779. ]
  30780. ))
  30781. characterMakers.push(() => makeCharacter(
  30782. { name: "Alex (Rabbit)", species: ["rabbit"], tags: ["anthro"] },
  30783. {
  30784. front: {
  30785. height: math.unit(4, "feet"),
  30786. weight: math.unit(50, "lb"),
  30787. name: "Front",
  30788. image: {
  30789. source: "./media/characters/alex-rabbit/front.svg",
  30790. extra: 507 / 458,
  30791. bottom: 18.5 / 527
  30792. }
  30793. },
  30794. back: {
  30795. height: math.unit(4, "feet"),
  30796. weight: math.unit(50, "lb"),
  30797. name: "Back",
  30798. image: {
  30799. source: "./media/characters/alex-rabbit/back.svg",
  30800. extra: 502 / 460,
  30801. bottom: 18.9 / 521
  30802. }
  30803. },
  30804. },
  30805. [
  30806. {
  30807. name: "Normal",
  30808. height: math.unit(4, "feet"),
  30809. default: true
  30810. },
  30811. ]
  30812. ))
  30813. characterMakers.push(() => makeCharacter(
  30814. { name: "Zander Rose", species: ["meowth"], tags: ["anthro"] },
  30815. {
  30816. front: {
  30817. height: math.unit(1 + 3 / 12, "feet"),
  30818. weight: math.unit(80, "lb"),
  30819. name: "Front",
  30820. image: {
  30821. source: "./media/characters/zander-rose/front.svg",
  30822. extra: 916 / 797,
  30823. bottom: 17 / 933
  30824. }
  30825. },
  30826. back: {
  30827. height: math.unit(1 + 3 / 12, "feet"),
  30828. weight: math.unit(80, "lb"),
  30829. name: "Back",
  30830. image: {
  30831. source: "./media/characters/zander-rose/back.svg",
  30832. extra: 903 / 779,
  30833. bottom: 31 / 934
  30834. }
  30835. },
  30836. },
  30837. [
  30838. {
  30839. name: "Normal",
  30840. height: math.unit(1 + 3 / 12, "feet"),
  30841. default: true
  30842. },
  30843. ]
  30844. ))
  30845. characterMakers.push(() => makeCharacter(
  30846. { name: "Razz", species: ["pavodragon"], tags: ["anthro", "feral"] },
  30847. {
  30848. anthro: {
  30849. height: math.unit(6, "feet"),
  30850. weight: math.unit(150, "lb"),
  30851. name: "Anthro",
  30852. image: {
  30853. source: "./media/characters/razz/anthro.svg",
  30854. extra: 1437 / 1343,
  30855. bottom: 48 / 1485
  30856. }
  30857. },
  30858. feral: {
  30859. height: math.unit(6, "feet"),
  30860. weight: math.unit(150, "lb"),
  30861. name: "Feral",
  30862. image: {
  30863. source: "./media/characters/razz/feral.svg",
  30864. extra: 2569 / 1385,
  30865. bottom: 95 / 2664
  30866. }
  30867. },
  30868. },
  30869. [
  30870. {
  30871. name: "Normal",
  30872. height: math.unit(6, "feet"),
  30873. default: true
  30874. },
  30875. ]
  30876. ))
  30877. characterMakers.push(() => makeCharacter(
  30878. { name: "Morrigan", species: ["shark"], tags: ["anthro"] },
  30879. {
  30880. front: {
  30881. height: math.unit(9 + 4 / 12, "feet"),
  30882. weight: math.unit(500, "lb"),
  30883. name: "Front",
  30884. image: {
  30885. source: "./media/characters/morrigan/front.svg",
  30886. extra: 2707 / 2579,
  30887. bottom: 156 / 2863
  30888. }
  30889. },
  30890. },
  30891. [
  30892. {
  30893. name: "Normal",
  30894. height: math.unit(9 + 4 / 12, "feet"),
  30895. default: true
  30896. },
  30897. ]
  30898. ))
  30899. characterMakers.push(() => makeCharacter(
  30900. { name: "Jenene", species: ["wolf"], tags: ["anthro"] },
  30901. {
  30902. front: {
  30903. height: math.unit(5, "stories"),
  30904. weight: math.unit(4000, "lb"),
  30905. name: "Front",
  30906. image: {
  30907. source: "./media/characters/jenene/front.svg",
  30908. extra: 1780 / 1710,
  30909. bottom: 57 / 1837
  30910. }
  30911. },
  30912. },
  30913. [
  30914. {
  30915. name: "Normal",
  30916. height: math.unit(5, "stories"),
  30917. default: true
  30918. },
  30919. ]
  30920. ))
  30921. characterMakers.push(() => makeCharacter(
  30922. { name: "Faey", species: ["aaltranae"], tags: ["taur"] },
  30923. {
  30924. taurSfw: {
  30925. height: math.unit(10, "meters"),
  30926. weight: math.unit(17500, "kg"),
  30927. name: "Taur",
  30928. image: {
  30929. source: "./media/characters/faey/taur-sfw.svg",
  30930. extra: 1200 / 968,
  30931. bottom: 41 / 1241
  30932. }
  30933. },
  30934. chestmaw: {
  30935. height: math.unit(2.01, "meters"),
  30936. name: "Chestmaw",
  30937. image: {
  30938. source: "./media/characters/faey/chestmaw.svg"
  30939. }
  30940. },
  30941. foot: {
  30942. height: math.unit(2.43, "meters"),
  30943. name: "Foot",
  30944. image: {
  30945. source: "./media/characters/faey/foot.svg"
  30946. }
  30947. },
  30948. jaws: {
  30949. height: math.unit(1.66, "meters"),
  30950. name: "Jaws",
  30951. image: {
  30952. source: "./media/characters/faey/jaws.svg"
  30953. }
  30954. },
  30955. tongues: {
  30956. height: math.unit(2.01, "meters"),
  30957. name: "Tongues",
  30958. image: {
  30959. source: "./media/characters/faey/tongues.svg"
  30960. }
  30961. },
  30962. },
  30963. [
  30964. {
  30965. name: "Small",
  30966. height: math.unit(10, "meters"),
  30967. default: true
  30968. },
  30969. {
  30970. name: "Big",
  30971. height: math.unit(500000, "km")
  30972. },
  30973. ]
  30974. ))
  30975. characterMakers.push(() => makeCharacter(
  30976. { name: "Roku", species: ["lion"], tags: ["anthro"] },
  30977. {
  30978. front: {
  30979. height: math.unit(7, "feet"),
  30980. weight: math.unit(275, "lb"),
  30981. name: "Front",
  30982. image: {
  30983. source: "./media/characters/roku/front.svg",
  30984. extra: 903 / 878,
  30985. bottom: 37 / 940
  30986. }
  30987. },
  30988. },
  30989. [
  30990. {
  30991. name: "Normal",
  30992. height: math.unit(7, "feet"),
  30993. default: true
  30994. },
  30995. {
  30996. name: "Macro",
  30997. height: math.unit(500, "feet")
  30998. },
  30999. {
  31000. name: "Megamacro",
  31001. height: math.unit(200, "miles")
  31002. },
  31003. ]
  31004. ))
  31005. characterMakers.push(() => makeCharacter(
  31006. { name: "Lira", species: ["kitsune"], tags: ["anthro"] },
  31007. {
  31008. front: {
  31009. height: math.unit(6 + 2 / 12, "feet"),
  31010. weight: math.unit(150, "lb"),
  31011. name: "Front",
  31012. image: {
  31013. source: "./media/characters/lira/front.svg",
  31014. extra: 1727 / 1605,
  31015. bottom: 26 / 1753
  31016. }
  31017. },
  31018. back: {
  31019. height: math.unit(6 + 2 / 12, "feet"),
  31020. weight: math.unit(150, "lb"),
  31021. name: "Back",
  31022. image: {
  31023. source: "./media/characters/lira/back.svg",
  31024. extra: 1713/1621,
  31025. bottom: 20/1733
  31026. }
  31027. },
  31028. hand: {
  31029. height: math.unit(0.75, "feet"),
  31030. name: "Hand",
  31031. image: {
  31032. source: "./media/characters/lira/hand.svg"
  31033. }
  31034. },
  31035. maw: {
  31036. height: math.unit(0.65, "feet"),
  31037. name: "Maw",
  31038. image: {
  31039. source: "./media/characters/lira/maw.svg"
  31040. }
  31041. },
  31042. pawDigi: {
  31043. height: math.unit(1.6, "feet"),
  31044. name: "Paw Digi",
  31045. image: {
  31046. source: "./media/characters/lira/paw-digi.svg"
  31047. }
  31048. },
  31049. pawPlanti: {
  31050. height: math.unit(1.4, "feet"),
  31051. name: "Paw Planti",
  31052. image: {
  31053. source: "./media/characters/lira/paw-planti.svg"
  31054. }
  31055. },
  31056. },
  31057. [
  31058. {
  31059. name: "Normal",
  31060. height: math.unit(6 + 2 / 12, "feet"),
  31061. default: true
  31062. },
  31063. {
  31064. name: "Macro",
  31065. height: math.unit(100, "feet")
  31066. },
  31067. {
  31068. name: "Macro²",
  31069. height: math.unit(1600, "feet")
  31070. },
  31071. {
  31072. name: "Planetary",
  31073. height: math.unit(20, "earths")
  31074. },
  31075. ]
  31076. ))
  31077. characterMakers.push(() => makeCharacter(
  31078. { name: "Hadjet", species: ["cat"], tags: ["anthro"] },
  31079. {
  31080. front: {
  31081. height: math.unit(6, "feet"),
  31082. weight: math.unit(150, "lb"),
  31083. name: "Front",
  31084. image: {
  31085. source: "./media/characters/hadjet/front.svg",
  31086. extra: 1480 / 1346,
  31087. bottom: 26 / 1506
  31088. }
  31089. },
  31090. frontNsfw: {
  31091. height: math.unit(6, "feet"),
  31092. weight: math.unit(150, "lb"),
  31093. name: "Front (NSFW)",
  31094. image: {
  31095. source: "./media/characters/hadjet/front-nsfw.svg",
  31096. extra: 1440 / 1358,
  31097. bottom: 52 / 1492
  31098. }
  31099. },
  31100. },
  31101. [
  31102. {
  31103. name: "Macro",
  31104. height: math.unit(10, "stories"),
  31105. default: true
  31106. },
  31107. {
  31108. name: "Megamacro",
  31109. height: math.unit(1.5, "miles")
  31110. },
  31111. {
  31112. name: "Megamacro+",
  31113. height: math.unit(5, "miles")
  31114. },
  31115. ]
  31116. ))
  31117. characterMakers.push(() => makeCharacter(
  31118. { name: "Kodran", species: ["dragon", "machine"], tags: ["feral"] },
  31119. {
  31120. side: {
  31121. height: math.unit(106, "feet"),
  31122. weight: math.unit(500, "tonnes"),
  31123. name: "Side",
  31124. image: {
  31125. source: "./media/characters/kodran/side.svg",
  31126. extra: 553 / 480,
  31127. bottom: 33 / 586
  31128. }
  31129. },
  31130. front: {
  31131. height: math.unit(132, "feet"),
  31132. weight: math.unit(500, "tonnes"),
  31133. name: "Front",
  31134. image: {
  31135. source: "./media/characters/kodran/front.svg",
  31136. extra: 667 / 643,
  31137. bottom: 42 / 709
  31138. }
  31139. },
  31140. flying: {
  31141. height: math.unit(350, "feet"),
  31142. weight: math.unit(500, "tonnes"),
  31143. name: "Flying",
  31144. image: {
  31145. source: "./media/characters/kodran/flying.svg"
  31146. }
  31147. },
  31148. foot: {
  31149. height: math.unit(33, "feet"),
  31150. name: "Foot",
  31151. image: {
  31152. source: "./media/characters/kodran/foot.svg"
  31153. }
  31154. },
  31155. footFront: {
  31156. height: math.unit(19, "feet"),
  31157. name: "Foot (Front)",
  31158. image: {
  31159. source: "./media/characters/kodran/foot-front.svg",
  31160. extra: 261 / 261,
  31161. bottom: 91 / 352
  31162. }
  31163. },
  31164. headFront: {
  31165. height: math.unit(53, "feet"),
  31166. name: "Head (Front)",
  31167. image: {
  31168. source: "./media/characters/kodran/head-front.svg"
  31169. }
  31170. },
  31171. headSide: {
  31172. height: math.unit(65, "feet"),
  31173. name: "Head (Side)",
  31174. image: {
  31175. source: "./media/characters/kodran/head-side.svg"
  31176. }
  31177. },
  31178. throat: {
  31179. height: math.unit(79, "feet"),
  31180. name: "Throat",
  31181. image: {
  31182. source: "./media/characters/kodran/throat.svg"
  31183. }
  31184. },
  31185. },
  31186. [
  31187. {
  31188. name: "Large",
  31189. height: math.unit(106, "feet"),
  31190. default: true
  31191. },
  31192. ]
  31193. ))
  31194. characterMakers.push(() => makeCharacter(
  31195. { name: "Pyxaron", species: ["draptor"], tags: ["feral"] },
  31196. {
  31197. side: {
  31198. height: math.unit(11, "feet"),
  31199. weight: math.unit(150, "lb"),
  31200. name: "Side",
  31201. image: {
  31202. source: "./media/characters/pyxaron/side.svg",
  31203. extra: 305 / 195,
  31204. bottom: 17 / 322
  31205. }
  31206. },
  31207. },
  31208. [
  31209. {
  31210. name: "Normal",
  31211. height: math.unit(11, "feet"),
  31212. default: true
  31213. },
  31214. ]
  31215. ))
  31216. characterMakers.push(() => makeCharacter(
  31217. { name: "Meep", species: ["candy", "salamander"], tags: ["anthro"] },
  31218. {
  31219. front: {
  31220. height: math.unit(6, "feet"),
  31221. weight: math.unit(150, "lb"),
  31222. name: "Front",
  31223. image: {
  31224. source: "./media/characters/meep/front.svg",
  31225. extra: 88 / 80,
  31226. bottom: 6 / 94
  31227. }
  31228. },
  31229. },
  31230. [
  31231. {
  31232. name: "Fun Sized",
  31233. height: math.unit(2, "inches"),
  31234. default: true
  31235. },
  31236. {
  31237. name: "Friend Sized",
  31238. height: math.unit(8, "inches")
  31239. },
  31240. ]
  31241. ))
  31242. characterMakers.push(() => makeCharacter(
  31243. { name: "Holly (Rabbit)", species: ["rabbit"], tags: ["anthro"] },
  31244. {
  31245. front: {
  31246. height: math.unit(15, "feet"),
  31247. weight: math.unit(2500, "lb"),
  31248. name: "Front",
  31249. image: {
  31250. source: "./media/characters/holly-rabbit/front.svg",
  31251. extra: 1433 / 1233,
  31252. bottom: 125 / 1558
  31253. }
  31254. },
  31255. dick: {
  31256. height: math.unit(4.6, "feet"),
  31257. name: "Dick",
  31258. image: {
  31259. source: "./media/characters/holly-rabbit/dick.svg"
  31260. }
  31261. },
  31262. },
  31263. [
  31264. {
  31265. name: "Normal",
  31266. height: math.unit(15, "feet"),
  31267. default: true
  31268. },
  31269. {
  31270. name: "Macro",
  31271. height: math.unit(250, "feet")
  31272. },
  31273. {
  31274. name: "Macro+",
  31275. height: math.unit(2500, "feet")
  31276. },
  31277. ]
  31278. ))
  31279. characterMakers.push(() => makeCharacter(
  31280. { name: "Drena", species: ["drenath"], tags: ["anthro"] },
  31281. {
  31282. front: {
  31283. height: math.unit(3.02, "meters"),
  31284. weight: math.unit(500, "kg"),
  31285. name: "Front",
  31286. image: {
  31287. source: "./media/characters/drena/front.svg",
  31288. extra: 282 / 243,
  31289. bottom: 8 / 290
  31290. }
  31291. },
  31292. side: {
  31293. height: math.unit(3.02, "meters"),
  31294. weight: math.unit(500, "kg"),
  31295. name: "Side",
  31296. image: {
  31297. source: "./media/characters/drena/side.svg",
  31298. extra: 280 / 245,
  31299. bottom: 10 / 290
  31300. }
  31301. },
  31302. back: {
  31303. height: math.unit(3.02, "meters"),
  31304. weight: math.unit(500, "kg"),
  31305. name: "Back",
  31306. image: {
  31307. source: "./media/characters/drena/back.svg",
  31308. extra: 278 / 243,
  31309. bottom: 2 / 280
  31310. }
  31311. },
  31312. foot: {
  31313. height: math.unit(0.75, "meters"),
  31314. name: "Foot",
  31315. image: {
  31316. source: "./media/characters/drena/foot.svg"
  31317. }
  31318. },
  31319. maw: {
  31320. height: math.unit(0.82, "meters"),
  31321. name: "Maw",
  31322. image: {
  31323. source: "./media/characters/drena/maw.svg"
  31324. }
  31325. },
  31326. eating: {
  31327. height: math.unit(0.75, "meters"),
  31328. name: "Eating",
  31329. image: {
  31330. source: "./media/characters/drena/eating.svg"
  31331. }
  31332. },
  31333. rump: {
  31334. height: math.unit(0.93, "meters"),
  31335. name: "Rump",
  31336. image: {
  31337. source: "./media/characters/drena/rump.svg"
  31338. }
  31339. },
  31340. },
  31341. [
  31342. {
  31343. name: "Normal",
  31344. height: math.unit(3.02, "meters"),
  31345. default: true
  31346. },
  31347. ]
  31348. ))
  31349. characterMakers.push(() => makeCharacter(
  31350. { name: "Remmyzilla", species: ["coyju"], tags: ["anthro"] },
  31351. {
  31352. front: {
  31353. height: math.unit(6 + 4 / 12, "feet"),
  31354. weight: math.unit(250, "lb"),
  31355. name: "Front",
  31356. image: {
  31357. source: "./media/characters/remmyzilla/front.svg",
  31358. extra: 4033 / 3588,
  31359. bottom: 123 / 4156
  31360. }
  31361. },
  31362. back: {
  31363. height: math.unit(6 + 4 / 12, "feet"),
  31364. weight: math.unit(250, "lb"),
  31365. name: "Back",
  31366. image: {
  31367. source: "./media/characters/remmyzilla/back.svg",
  31368. extra: 1696/1602,
  31369. bottom: 63/1759
  31370. }
  31371. },
  31372. paw: {
  31373. height: math.unit(1.73, "feet"),
  31374. name: "Paw",
  31375. image: {
  31376. source: "./media/characters/remmyzilla/paw.svg"
  31377. },
  31378. extraAttributes: {
  31379. "toeSize": {
  31380. name: "Toe Size",
  31381. power: 2,
  31382. type: "area",
  31383. base: math.unit(0.0035, "m^2")
  31384. },
  31385. "padSize": {
  31386. name: "Pad Size",
  31387. power: 2,
  31388. type: "area",
  31389. base: math.unit(0.015, "m^2")
  31390. },
  31391. "pawsize": {
  31392. name: "Paw Size",
  31393. power: 2,
  31394. type: "area",
  31395. base: math.unit(0.072, "m^2")
  31396. },
  31397. }
  31398. },
  31399. maw: {
  31400. height: math.unit(1.73, "feet"),
  31401. name: "Maw",
  31402. image: {
  31403. source: "./media/characters/remmyzilla/maw.svg"
  31404. }
  31405. },
  31406. },
  31407. [
  31408. {
  31409. name: "Normal",
  31410. height: math.unit(6 + 4 / 12, "feet")
  31411. },
  31412. {
  31413. name: "Minimacro",
  31414. height: math.unit(12 + 8 / 12, "feet")
  31415. },
  31416. {
  31417. name: "Normal",
  31418. height: math.unit(640, "feet"),
  31419. default: true
  31420. },
  31421. {
  31422. name: "Megamacro",
  31423. height: math.unit(6400, "feet")
  31424. },
  31425. {
  31426. name: "Gigamacro",
  31427. height: math.unit(64000, "miles")
  31428. },
  31429. ]
  31430. ))
  31431. characterMakers.push(() => makeCharacter(
  31432. { name: "Lawrence", species: ["sergal"], tags: ["anthro"] },
  31433. {
  31434. front: {
  31435. height: math.unit(2.5, "meters"),
  31436. weight: math.unit(300, "lb"),
  31437. name: "Front",
  31438. image: {
  31439. source: "./media/characters/lawrence/front.svg",
  31440. extra: 357 / 335,
  31441. bottom: 30 / 387
  31442. }
  31443. },
  31444. back: {
  31445. height: math.unit(2.5, "meters"),
  31446. weight: math.unit(300, "lb"),
  31447. name: "Back",
  31448. image: {
  31449. source: "./media/characters/lawrence/back.svg",
  31450. extra: 357 / 338,
  31451. bottom: 16 / 373
  31452. }
  31453. },
  31454. head: {
  31455. height: math.unit(0.9, "meter"),
  31456. name: "Head",
  31457. image: {
  31458. source: "./media/characters/lawrence/head.svg"
  31459. }
  31460. },
  31461. maw: {
  31462. height: math.unit(0.7, "meter"),
  31463. name: "Maw",
  31464. image: {
  31465. source: "./media/characters/lawrence/maw.svg"
  31466. }
  31467. },
  31468. footBottom: {
  31469. height: math.unit(0.5, "meter"),
  31470. name: "Foot (Bottom)",
  31471. image: {
  31472. source: "./media/characters/lawrence/foot-bottom.svg"
  31473. }
  31474. },
  31475. footTop: {
  31476. height: math.unit(0.5, "meter"),
  31477. name: "Foot (Top)",
  31478. image: {
  31479. source: "./media/characters/lawrence/foot-top.svg"
  31480. }
  31481. },
  31482. },
  31483. [
  31484. {
  31485. name: "Normal",
  31486. height: math.unit(2.5, "meters"),
  31487. default: true
  31488. },
  31489. {
  31490. name: "Macro",
  31491. height: math.unit(95, "meters")
  31492. },
  31493. {
  31494. name: "Megamacro",
  31495. height: math.unit(150, "km")
  31496. },
  31497. ]
  31498. ))
  31499. characterMakers.push(() => makeCharacter(
  31500. { name: "Sydney", species: ["naga"], tags: ["naga"] },
  31501. {
  31502. front: {
  31503. height: math.unit(4.2, "meters"),
  31504. preyCapacity: math.unit(50, "m^3"),
  31505. weight: math.unit(30, "tonnes"),
  31506. name: "Front",
  31507. image: {
  31508. source: "./media/characters/sydney/front.svg",
  31509. extra: 1177/1129,
  31510. bottom: 197/1374
  31511. },
  31512. extraAttributes: {
  31513. "length": {
  31514. name: "Length",
  31515. power: 1,
  31516. type: "length",
  31517. base: math.unit(21, "meters")
  31518. },
  31519. }
  31520. },
  31521. },
  31522. [
  31523. {
  31524. name: "Normal",
  31525. height: math.unit(4.2, "meters"),
  31526. default: true
  31527. },
  31528. ]
  31529. ))
  31530. characterMakers.push(() => makeCharacter(
  31531. { name: "Jessica", species: ["maned-wolf"], tags: ["anthro"] },
  31532. {
  31533. back: {
  31534. height: math.unit(201, "feet"),
  31535. name: "Back",
  31536. image: {
  31537. source: "./media/characters/jessica/back.svg",
  31538. extra: 273 / 259,
  31539. bottom: 7 / 280
  31540. }
  31541. },
  31542. },
  31543. [
  31544. {
  31545. name: "Normal",
  31546. height: math.unit(201, "feet"),
  31547. default: true
  31548. },
  31549. {
  31550. name: "Megamacro",
  31551. height: math.unit(8, "miles")
  31552. },
  31553. ]
  31554. ))
  31555. characterMakers.push(() => makeCharacter(
  31556. { name: "Victoria", species: ["zorgoia"], tags: ["feral"] },
  31557. {
  31558. side: {
  31559. height: math.unit(5.6, "m"),
  31560. weight: math.unit(8000, "kg"),
  31561. name: "Side",
  31562. image: {
  31563. source: "./media/characters/victoria/side.svg",
  31564. extra: 1542/1229,
  31565. bottom: 124/1666
  31566. }
  31567. },
  31568. maw: {
  31569. height: math.unit(7.14, "feet"),
  31570. name: "Maw",
  31571. image: {
  31572. source: "./media/characters/victoria/maw.svg"
  31573. }
  31574. },
  31575. },
  31576. [
  31577. {
  31578. name: "Normal",
  31579. height: math.unit(5.6, "m"),
  31580. default: true
  31581. },
  31582. ]
  31583. ))
  31584. characterMakers.push(() => makeCharacter(
  31585. { name: "Cat", species: ["cat", "nickit", "lucario", "riolu", "lopunny", "dog", "pikachu"], tags: ["anthro", "feral", "taur"] },
  31586. {
  31587. front: {
  31588. height: math.unit(5 + 6 / 12, "feet"),
  31589. name: "Front",
  31590. image: {
  31591. source: "./media/characters/cat/cat-front.svg",
  31592. extra: 1422/1262,
  31593. bottom: 61/1483
  31594. },
  31595. form: "cat",
  31596. default: true
  31597. },
  31598. back: {
  31599. height: math.unit(5 + 6 / 12, "feet"),
  31600. name: "Back",
  31601. image: {
  31602. source: "./media/characters/cat/cat-back.svg",
  31603. extra: 1466/1301,
  31604. bottom: 19/1485
  31605. },
  31606. form: "cat"
  31607. },
  31608. taur: {
  31609. height: math.unit(7, "feet"),
  31610. name: "Side",
  31611. image: {
  31612. source: "./media/characters/cat/taur-side.svg",
  31613. extra: 1389/1233,
  31614. bottom: 83/1472
  31615. },
  31616. form: "taur",
  31617. default: true
  31618. },
  31619. lucarioFront: {
  31620. height: math.unit(4, "feet"),
  31621. name: "Front",
  31622. image: {
  31623. source: "./media/characters/cat/lucario-front.svg",
  31624. extra: 1149/1019,
  31625. bottom: 84/1233
  31626. },
  31627. form: "lucario",
  31628. default: true
  31629. },
  31630. lucarioBack: {
  31631. height: math.unit(4, "feet"),
  31632. name: "Back",
  31633. image: {
  31634. source: "./media/characters/cat/lucario-back.svg",
  31635. extra: 1190/1059,
  31636. bottom: 33/1223
  31637. },
  31638. form: "lucario"
  31639. },
  31640. riolu_front: {
  31641. height: math.unit(2 + 4/12, "feet"),
  31642. name: "Front",
  31643. image: {
  31644. source: "./media/characters/cat/riolu-front.svg",
  31645. extra: 1104/956,
  31646. bottom: 70/1174
  31647. },
  31648. form: "riolu",
  31649. default: true
  31650. },
  31651. nickit: {
  31652. height: math.unit(2, "feet"),
  31653. name: "Side",
  31654. image: {
  31655. source: "./media/characters/cat/nickit-side.svg",
  31656. extra: 1087/852,
  31657. bottom: 67/1154
  31658. },
  31659. form: "nickit",
  31660. default: true
  31661. },
  31662. lopunnyFront: {
  31663. height: math.unit(5, "feet"),
  31664. name: "Front",
  31665. image: {
  31666. source: "./media/characters/cat/lopunny-front.svg",
  31667. extra: 1217/1078,
  31668. bottom: 23/1240
  31669. },
  31670. form: "lopunny",
  31671. default: true
  31672. },
  31673. lopunnyBack: {
  31674. height: math.unit(5, "feet"),
  31675. name: "Back",
  31676. image: {
  31677. source: "./media/characters/cat/lopunny-back.svg",
  31678. extra: 1205/1057,
  31679. bottom: 33/1238
  31680. },
  31681. form: "lopunny"
  31682. },
  31683. dog_front: {
  31684. height: math.unit(5 + 9/12, "feet"),
  31685. name: "Front",
  31686. image: {
  31687. source: "./media/characters/cat/dog-front.svg",
  31688. extra: 1403/1309,
  31689. bottom: 31/1434
  31690. },
  31691. form: "dog",
  31692. default: true
  31693. },
  31694. dog_back: {
  31695. height: math.unit(5 + 9/12, "feet"),
  31696. name: "Back",
  31697. image: {
  31698. source: "./media/characters/cat/dog-back.svg",
  31699. extra: 1393/1297,
  31700. bottom: 38/1431
  31701. },
  31702. form: "dog",
  31703. },
  31704. pikachu_front: {
  31705. height: math.unit(2.64, "feet"),
  31706. name: "Front",
  31707. image: {
  31708. source: "./media/characters/cat/pikachu-front.svg",
  31709. extra: 1224/958,
  31710. bottom: 34/1258
  31711. },
  31712. form: "pikachu",
  31713. default: true
  31714. },
  31715. pikachu_back: {
  31716. height: math.unit(2.64, "feet"),
  31717. name: "Back",
  31718. image: {
  31719. source: "./media/characters/cat/pikachu-back.svg",
  31720. extra: 1228/958,
  31721. bottom: 16/1244
  31722. },
  31723. form: "pikachu",
  31724. },
  31725. gigachuFront: {
  31726. height: math.unit(75, "feet"),
  31727. name: "Front",
  31728. image: {
  31729. source: "./media/characters/cat/gigachu-front.svg",
  31730. extra: 1239/1027,
  31731. bottom: 32/1271
  31732. },
  31733. form: "gigachu",
  31734. default: true
  31735. },
  31736. gigachuBack: {
  31737. height: math.unit(75, "feet"),
  31738. name: "Back",
  31739. image: {
  31740. source: "./media/characters/cat/gigachu-back.svg",
  31741. extra: 1229/1030,
  31742. bottom: 9/1238
  31743. },
  31744. form: "gigachu"
  31745. },
  31746. },
  31747. [
  31748. {
  31749. name: "Really small",
  31750. height: math.unit(1, "nm"),
  31751. allForms: true
  31752. },
  31753. {
  31754. name: "Micro",
  31755. height: math.unit(5, "inches"),
  31756. allForms: true
  31757. },
  31758. {
  31759. name: "Normal",
  31760. height: math.unit(5 + 6 / 12, "feet"),
  31761. default: true,
  31762. form: "cat"
  31763. },
  31764. {
  31765. name: "Normal",
  31766. height: math.unit(7, "feet"),
  31767. default: true,
  31768. form: "taur"
  31769. },
  31770. {
  31771. name: "Normal",
  31772. height: math.unit(4, "feet"),
  31773. default: true,
  31774. form: "lucario"
  31775. },
  31776. {
  31777. name: "Normal",
  31778. height: math.unit(2, "feet"),
  31779. default: true,
  31780. form: "nickit"
  31781. },
  31782. {
  31783. name: "Normal",
  31784. height: math.unit(5, "feet"),
  31785. default: true,
  31786. form: "lopunny"
  31787. },
  31788. {
  31789. name: "Normal",
  31790. height: math.unit(2 + 4/12, "feet"),
  31791. default: true,
  31792. form: "riolu"
  31793. },
  31794. {
  31795. name: "Normal",
  31796. height: math.unit(5 + 6 / 12, "feet"),
  31797. default: true,
  31798. form: "dog"
  31799. },
  31800. {
  31801. name: "Macro",
  31802. height: math.unit(50, "feet"),
  31803. allForms: true
  31804. },
  31805. {
  31806. name: "Normal",
  31807. height: math.unit(2.64, "feet"),
  31808. default: true,
  31809. form: "pikachu"
  31810. },
  31811. {
  31812. name: "Dynamax",
  31813. height: math.unit(75, "feet"),
  31814. form: "gigachu",
  31815. default: true
  31816. },
  31817. {
  31818. name: "Macro+",
  31819. height: math.unit(150, "feet"),
  31820. allForms: true
  31821. },
  31822. {
  31823. name: "Megamacro",
  31824. height: math.unit(100, "miles"),
  31825. allForms: true
  31826. },
  31827. ],
  31828. {
  31829. "cat": {
  31830. name: "Cat",
  31831. default: true
  31832. },
  31833. "taur": {
  31834. name: "Taur",
  31835. },
  31836. "lucario": {
  31837. name: "Lucario",
  31838. },
  31839. "riolu": {
  31840. name: "Riolu",
  31841. },
  31842. "nickit": {
  31843. name: "Nickit",
  31844. },
  31845. "lopunny": {
  31846. name: "Lopunny",
  31847. },
  31848. "dog": {
  31849. name: "Dog",
  31850. },
  31851. "pikachu": {
  31852. name: "Pikachu",
  31853. },
  31854. "gigachu": {
  31855. name: "Gigachu",
  31856. ignoreAllFormSizes: true
  31857. }
  31858. }
  31859. ))
  31860. characterMakers.push(() => makeCharacter(
  31861. { name: "Kirina Violet", species: ["korean-jindo-dog"], tags: ["anthro"] },
  31862. {
  31863. front: {
  31864. height: math.unit(63.4, "meters"),
  31865. weight: math.unit(3.28349e+6, "kilograms"),
  31866. name: "Front",
  31867. image: {
  31868. source: "./media/characters/kirina-violet/front.svg",
  31869. extra: 2812 / 2725,
  31870. bottom: 0 / 2812
  31871. }
  31872. },
  31873. back: {
  31874. height: math.unit(63.4, "meters"),
  31875. weight: math.unit(3.28349e+6, "kilograms"),
  31876. name: "Back",
  31877. image: {
  31878. source: "./media/characters/kirina-violet/back.svg",
  31879. extra: 2812 / 2725,
  31880. bottom: 0 / 2812
  31881. }
  31882. },
  31883. mouth: {
  31884. height: math.unit(4.35, "meters"),
  31885. name: "Mouth",
  31886. image: {
  31887. source: "./media/characters/kirina-violet/mouth.svg"
  31888. }
  31889. },
  31890. paw: {
  31891. height: math.unit(5.6, "meters"),
  31892. name: "Paw",
  31893. image: {
  31894. source: "./media/characters/kirina-violet/paw.svg"
  31895. }
  31896. },
  31897. tail: {
  31898. height: math.unit(18, "meters"),
  31899. name: "Tail",
  31900. image: {
  31901. source: "./media/characters/kirina-violet/tail.svg"
  31902. }
  31903. },
  31904. },
  31905. [
  31906. {
  31907. name: "Macro",
  31908. height: math.unit(63.4, "meters"),
  31909. default: true
  31910. },
  31911. ]
  31912. ))
  31913. characterMakers.push(() => makeCharacter(
  31914. { name: "Sfaiyan", species: ["jackal"], tags: ["anthro"] },
  31915. {
  31916. front: {
  31917. height: math.unit(6, "feet"),
  31918. weight: math.unit(150, "lb"),
  31919. name: "Front",
  31920. image: {
  31921. source: "./media/characters/sfaiyan/front.svg",
  31922. extra: 999 / 978,
  31923. bottom: 5 / 1004
  31924. }
  31925. },
  31926. },
  31927. [
  31928. {
  31929. name: "Normal",
  31930. height: math.unit(1.82, "meters")
  31931. },
  31932. {
  31933. name: "Giant",
  31934. height: math.unit(2.27, "km"),
  31935. default: true
  31936. },
  31937. ]
  31938. ))
  31939. characterMakers.push(() => makeCharacter(
  31940. { name: "Raunehkeli", species: ["monster"], tags: ["anthro"] },
  31941. {
  31942. front: {
  31943. height: math.unit(179, "cm"),
  31944. weight: math.unit(100, "kg"),
  31945. name: "Front",
  31946. image: {
  31947. source: "./media/characters/raunehkeli/front.svg",
  31948. extra: 1934 / 1926,
  31949. bottom: 0 / 1934
  31950. }
  31951. },
  31952. },
  31953. [
  31954. {
  31955. name: "Normal",
  31956. height: math.unit(179, "cm")
  31957. },
  31958. {
  31959. name: "Maximum",
  31960. height: math.unit(575, "meters"),
  31961. default: true
  31962. },
  31963. ]
  31964. ))
  31965. characterMakers.push(() => makeCharacter(
  31966. { name: "Beatrice \"The Behemoth\" Heathers", species: ["husky", "kaiju"], tags: ["anthro"] },
  31967. {
  31968. front: {
  31969. height: math.unit(6, "feet"),
  31970. weight: math.unit(150, "lb"),
  31971. name: "Front",
  31972. image: {
  31973. source: "./media/characters/beatrice-the-behemoth-heathers/front.svg",
  31974. extra: 2625 / 2518,
  31975. bottom: 60 / 2685
  31976. }
  31977. },
  31978. },
  31979. [
  31980. {
  31981. name: "Normal",
  31982. height: math.unit(6 + 2 / 12, "feet")
  31983. },
  31984. {
  31985. name: "Macro",
  31986. height: math.unit(1180, "feet"),
  31987. default: true
  31988. },
  31989. ]
  31990. ))
  31991. characterMakers.push(() => makeCharacter(
  31992. { name: "Lilith Zott", species: ["bat", "kaiju"], tags: ["anthro"] },
  31993. {
  31994. front: {
  31995. height: math.unit(5 + 6 / 12, "feet"),
  31996. weight: math.unit(108, "lb"),
  31997. name: "Front",
  31998. image: {
  31999. source: "./media/characters/lilith-zott/front.svg",
  32000. extra: 2510 / 2238,
  32001. bottom: 100 / 2610
  32002. }
  32003. },
  32004. frontDressed: {
  32005. height: math.unit(5 + 6 / 12, "feet"),
  32006. weight: math.unit(108, "lb"),
  32007. name: "Front (Dressed)",
  32008. image: {
  32009. source: "./media/characters/lilith-zott/front-dressed.svg",
  32010. extra: 2510 / 2238,
  32011. bottom: 100 / 2610
  32012. }
  32013. },
  32014. },
  32015. [
  32016. {
  32017. name: "Normal",
  32018. height: math.unit(5 + 6 / 12, "feet")
  32019. },
  32020. {
  32021. name: "Macro",
  32022. height: math.unit(1030, "feet"),
  32023. default: true
  32024. },
  32025. ]
  32026. ))
  32027. characterMakers.push(() => makeCharacter(
  32028. { name: "Holly \"The Mega Mousky\" Heathers", species: ["mouse", "husky", "kaiju"], tags: ["anthro"] },
  32029. {
  32030. front: {
  32031. height: math.unit(6, "feet"),
  32032. weight: math.unit(150, "lb"),
  32033. name: "Front",
  32034. image: {
  32035. source: "./media/characters/holly-the-mega-mousky-heathers/front.svg",
  32036. extra: 2567 / 2435,
  32037. bottom: 39 / 2606
  32038. }
  32039. },
  32040. frontSuper: {
  32041. height: math.unit(6, "feet"),
  32042. name: "Front (Super)",
  32043. image: {
  32044. source: "./media/characters/holly-the-mega-mousky-heathers/front-super.svg",
  32045. extra: 2567 / 2435,
  32046. bottom: 39 / 2606
  32047. }
  32048. },
  32049. },
  32050. [
  32051. {
  32052. name: "Normal",
  32053. height: math.unit(5 + 10 / 12, "feet")
  32054. },
  32055. {
  32056. name: "Macro",
  32057. height: math.unit(1100, "feet"),
  32058. default: true
  32059. },
  32060. ]
  32061. ))
  32062. characterMakers.push(() => makeCharacter(
  32063. { name: "Sona", species: ["dragon"], tags: ["anthro"] },
  32064. {
  32065. front: {
  32066. height: math.unit(100, "miles"),
  32067. name: "Front",
  32068. image: {
  32069. source: "./media/characters/sona/front.svg",
  32070. extra: 2433 / 2201,
  32071. bottom: 53 / 2486
  32072. }
  32073. },
  32074. foot: {
  32075. height: math.unit(16.1, "miles"),
  32076. name: "Foot",
  32077. image: {
  32078. source: "./media/characters/sona/foot.svg"
  32079. }
  32080. },
  32081. },
  32082. [
  32083. {
  32084. name: "Macro",
  32085. height: math.unit(100, "miles"),
  32086. default: true
  32087. },
  32088. ]
  32089. ))
  32090. characterMakers.push(() => makeCharacter(
  32091. { name: "Bailey", species: ["wolf"], tags: ["anthro"] },
  32092. {
  32093. front: {
  32094. height: math.unit(6, "feet"),
  32095. weight: math.unit(150, "lb"),
  32096. name: "Front",
  32097. image: {
  32098. source: "./media/characters/bailey/front.svg",
  32099. extra: 1778 / 1724,
  32100. bottom: 30 / 1808
  32101. }
  32102. },
  32103. },
  32104. [
  32105. {
  32106. name: "Micro",
  32107. height: math.unit(4, "inches")
  32108. },
  32109. {
  32110. name: "Normal",
  32111. height: math.unit(5 + 5 / 12, "feet"),
  32112. default: true
  32113. },
  32114. {
  32115. name: "Macro",
  32116. height: math.unit(250, "feet")
  32117. },
  32118. {
  32119. name: "Megamacro",
  32120. height: math.unit(100, "miles")
  32121. },
  32122. ]
  32123. ))
  32124. characterMakers.push(() => makeCharacter(
  32125. { name: "Snaps", species: ["cat"], tags: ["anthro"] },
  32126. {
  32127. front: {
  32128. height: math.unit(5 + 2 / 12, "feet"),
  32129. weight: math.unit(120, "lb"),
  32130. name: "Front",
  32131. image: {
  32132. source: "./media/characters/snaps/front.svg",
  32133. extra: 2370 / 2177,
  32134. bottom: 48 / 2418
  32135. }
  32136. },
  32137. back: {
  32138. height: math.unit(5 + 2 / 12, "feet"),
  32139. weight: math.unit(120, "lb"),
  32140. name: "Back",
  32141. image: {
  32142. source: "./media/characters/snaps/back.svg",
  32143. extra: 2408 / 2258,
  32144. bottom: 15 / 2423
  32145. }
  32146. },
  32147. },
  32148. [
  32149. {
  32150. name: "Micro",
  32151. height: math.unit(9, "inches")
  32152. },
  32153. {
  32154. name: "Normal",
  32155. height: math.unit(5 + 2 / 12, "feet"),
  32156. default: true
  32157. },
  32158. {
  32159. name: "Mini Macro",
  32160. height: math.unit(10, "feet")
  32161. },
  32162. ]
  32163. ))
  32164. characterMakers.push(() => makeCharacter(
  32165. { name: "Azteck", species: ["sergal"], tags: ["anthro"] },
  32166. {
  32167. front: {
  32168. height: math.unit(1.8, "meters"),
  32169. weight: math.unit(85, "kg"),
  32170. name: "Front",
  32171. image: {
  32172. source: "./media/characters/azteck/front.svg",
  32173. extra: 2815 / 2625,
  32174. bottom: 89 / 2904
  32175. }
  32176. },
  32177. back: {
  32178. height: math.unit(1.8, "meters"),
  32179. weight: math.unit(85, "kg"),
  32180. name: "Back",
  32181. image: {
  32182. source: "./media/characters/azteck/back.svg",
  32183. extra: 2856 / 2648,
  32184. bottom: 85 / 2941
  32185. }
  32186. },
  32187. frontDressed: {
  32188. height: math.unit(1.8, "meters"),
  32189. weight: math.unit(85, "kg"),
  32190. name: "Front (Dressed)",
  32191. image: {
  32192. source: "./media/characters/azteck/front-dressed.svg",
  32193. extra: 2147 / 2003,
  32194. bottom: 68 / 2215
  32195. }
  32196. },
  32197. head: {
  32198. height: math.unit(0.47, "meters"),
  32199. weight: math.unit(85, "kg"),
  32200. name: "Head",
  32201. image: {
  32202. source: "./media/characters/azteck/head.svg"
  32203. }
  32204. },
  32205. },
  32206. [
  32207. {
  32208. name: "Bite sized",
  32209. height: math.unit(16, "cm")
  32210. },
  32211. {
  32212. name: "Normal",
  32213. height: math.unit(1.8, "meters"),
  32214. default: true
  32215. },
  32216. ]
  32217. ))
  32218. characterMakers.push(() => makeCharacter(
  32219. { name: "Pidge", species: ["hellhound"], tags: ["anthro"] },
  32220. {
  32221. front: {
  32222. height: math.unit(6, "feet"),
  32223. weight: math.unit(150, "lb"),
  32224. name: "Front",
  32225. image: {
  32226. source: "./media/characters/pidge/front.svg",
  32227. extra: 1936/1820,
  32228. bottom: 0/1936
  32229. }
  32230. },
  32231. back: {
  32232. height: math.unit(6, "feet"),
  32233. weight: math.unit(150, "lb"),
  32234. name: "Back",
  32235. image: {
  32236. source: "./media/characters/pidge/back.svg",
  32237. extra: 1938/1843,
  32238. bottom: 0/1938
  32239. }
  32240. },
  32241. casual: {
  32242. height: math.unit(6, "feet"),
  32243. weight: math.unit(150, "lb"),
  32244. name: "Casual",
  32245. image: {
  32246. source: "./media/characters/pidge/casual.svg",
  32247. extra: 1936/1820,
  32248. bottom: 0/1936
  32249. }
  32250. },
  32251. tech: {
  32252. height: math.unit(6, "feet"),
  32253. weight: math.unit(150, "lb"),
  32254. name: "Tech",
  32255. image: {
  32256. source: "./media/characters/pidge/tech.svg",
  32257. extra: 1802/1682,
  32258. bottom: 0/1802
  32259. }
  32260. },
  32261. head: {
  32262. height: math.unit(1.61, "feet"),
  32263. name: "Head",
  32264. image: {
  32265. source: "./media/characters/pidge/head.svg"
  32266. }
  32267. },
  32268. collar: {
  32269. height: math.unit(0.82, "feet"),
  32270. name: "Collar",
  32271. image: {
  32272. source: "./media/characters/pidge/collar.svg"
  32273. }
  32274. },
  32275. },
  32276. [
  32277. {
  32278. name: "Macro",
  32279. height: math.unit(2, "mile"),
  32280. default: true
  32281. },
  32282. {
  32283. name: "PUPPY",
  32284. height: math.unit(20, "miles")
  32285. },
  32286. ]
  32287. ))
  32288. characterMakers.push(() => makeCharacter(
  32289. { name: "En", species: ["maned-wolf", "undead"], tags: ["anthro"] },
  32290. {
  32291. front: {
  32292. height: math.unit(6, "feet"),
  32293. weight: math.unit(150, "lb"),
  32294. name: "Front",
  32295. image: {
  32296. source: "./media/characters/en/front.svg",
  32297. extra: 1697 / 1563,
  32298. bottom: 103 / 1800
  32299. }
  32300. },
  32301. back: {
  32302. height: math.unit(6, "feet"),
  32303. weight: math.unit(150, "lb"),
  32304. name: "Back",
  32305. image: {
  32306. source: "./media/characters/en/back.svg",
  32307. extra: 1700 / 1570,
  32308. bottom: 51 / 1751
  32309. }
  32310. },
  32311. frontDressed: {
  32312. height: math.unit(6, "feet"),
  32313. weight: math.unit(150, "lb"),
  32314. name: "Front (Dressed)",
  32315. image: {
  32316. source: "./media/characters/en/front-dressed.svg",
  32317. extra: 1697 / 1563,
  32318. bottom: 103 / 1800
  32319. }
  32320. },
  32321. backDressed: {
  32322. height: math.unit(6, "feet"),
  32323. weight: math.unit(150, "lb"),
  32324. name: "Back (Dressed)",
  32325. image: {
  32326. source: "./media/characters/en/back-dressed.svg",
  32327. extra: 1700 / 1570,
  32328. bottom: 51 / 1751
  32329. }
  32330. },
  32331. },
  32332. [
  32333. {
  32334. name: "Macro",
  32335. height: math.unit(210, "feet"),
  32336. default: true
  32337. },
  32338. ]
  32339. ))
  32340. characterMakers.push(() => makeCharacter(
  32341. { name: "Haze Orris", species: ["cat", "undead"], tags: ["anthro"] },
  32342. {
  32343. front: {
  32344. height: math.unit(6, "feet"),
  32345. weight: math.unit(150, "lb"),
  32346. name: "Front",
  32347. image: {
  32348. source: "./media/characters/haze-orris/front.svg",
  32349. extra: 3975 / 3525,
  32350. bottom: 137 / 4112
  32351. }
  32352. },
  32353. },
  32354. [
  32355. {
  32356. name: "Micro",
  32357. height: math.unit(150, "mm"),
  32358. default: true
  32359. },
  32360. ]
  32361. ))
  32362. characterMakers.push(() => makeCharacter(
  32363. { name: "Casselene Yaro", species: ["fox"], tags: ["anthro"] },
  32364. {
  32365. front: {
  32366. height: math.unit(6, "feet"),
  32367. weight: math.unit(150, "lb"),
  32368. name: "Front",
  32369. image: {
  32370. source: "./media/characters/casselene-yaro/front.svg",
  32371. extra: 4721 / 4541,
  32372. bottom: 82 / 4803
  32373. }
  32374. },
  32375. back: {
  32376. height: math.unit(6, "feet"),
  32377. weight: math.unit(150, "lb"),
  32378. name: "Back",
  32379. image: {
  32380. source: "./media/characters/casselene-yaro/back.svg",
  32381. extra: 4569 / 4377,
  32382. bottom: 69 / 4638
  32383. }
  32384. },
  32385. dressed: {
  32386. height: math.unit(6, "feet"),
  32387. weight: math.unit(150, "lb"),
  32388. name: "Dressed",
  32389. image: {
  32390. source: "./media/characters/casselene-yaro/dressed.svg",
  32391. extra: 4721 / 4541,
  32392. bottom: 82 / 4803
  32393. }
  32394. },
  32395. maw: {
  32396. height: math.unit(1, "feet"),
  32397. name: "Maw",
  32398. image: {
  32399. source: "./media/characters/casselene-yaro/maw.svg"
  32400. }
  32401. },
  32402. },
  32403. [
  32404. {
  32405. name: "Macro",
  32406. height: math.unit(190, "feet"),
  32407. default: true
  32408. },
  32409. ]
  32410. ))
  32411. characterMakers.push(() => makeCharacter(
  32412. { name: "Platine", species: ["raven"], tags: ["anthro"] },
  32413. {
  32414. front: {
  32415. height: math.unit(10, "feet"),
  32416. weight: math.unit(15015, "lb"),
  32417. name: "Front",
  32418. image: {
  32419. source: "./media/characters/platine/front.svg",
  32420. extra: 1741/1650,
  32421. bottom: 84/1825
  32422. }
  32423. },
  32424. side: {
  32425. height: math.unit(10, "feet"),
  32426. weight: math.unit(15015, "lb"),
  32427. name: "Side",
  32428. image: {
  32429. source: "./media/characters/platine/side.svg",
  32430. extra: 1790/1705,
  32431. bottom: 29/1819
  32432. }
  32433. },
  32434. },
  32435. [
  32436. {
  32437. name: "Normal",
  32438. height: math.unit(10, "feet"),
  32439. default: true
  32440. },
  32441. {
  32442. name: "Macro",
  32443. height: math.unit(100, "feet")
  32444. },
  32445. {
  32446. name: "Megamacro",
  32447. height: math.unit(1000, "feet")
  32448. },
  32449. ]
  32450. ))
  32451. characterMakers.push(() => makeCharacter(
  32452. { name: "Neapolitan Ananassa", species: ["gelato-bee"], tags: ["anthro"] },
  32453. {
  32454. front: {
  32455. height: math.unit(15 + 5 / 12, "feet"),
  32456. weight: math.unit(4600, "lb"),
  32457. name: "Front",
  32458. image: {
  32459. source: "./media/characters/neapolitan-ananassa/front.svg",
  32460. extra: 2903 / 2736,
  32461. bottom: 0 / 2903
  32462. }
  32463. },
  32464. side: {
  32465. height: math.unit(15 + 5 / 12, "feet"),
  32466. weight: math.unit(4600, "lb"),
  32467. name: "Side",
  32468. image: {
  32469. source: "./media/characters/neapolitan-ananassa/side.svg",
  32470. extra: 2925 / 2719,
  32471. bottom: 0 / 2925
  32472. }
  32473. },
  32474. back: {
  32475. height: math.unit(15 + 5 / 12, "feet"),
  32476. weight: math.unit(4600, "lb"),
  32477. name: "Back",
  32478. image: {
  32479. source: "./media/characters/neapolitan-ananassa/back.svg",
  32480. extra: 2903 / 2736,
  32481. bottom: 0 / 2903
  32482. }
  32483. },
  32484. },
  32485. [
  32486. {
  32487. name: "Normal",
  32488. height: math.unit(15 + 5 / 12, "feet"),
  32489. default: true
  32490. },
  32491. {
  32492. name: "Post-Millenium",
  32493. height: math.unit(35 + 5 / 12, "feet")
  32494. },
  32495. {
  32496. name: "Post-Era",
  32497. height: math.unit(450 + 5 / 12, "feet")
  32498. },
  32499. ]
  32500. ))
  32501. characterMakers.push(() => makeCharacter(
  32502. { name: "Pazuzu", species: ["demon"], tags: ["anthro"] },
  32503. {
  32504. front: {
  32505. height: math.unit(300, "meters"),
  32506. weight: math.unit(125000, "tonnes"),
  32507. name: "Front",
  32508. image: {
  32509. source: "./media/characters/pazuzu/front.svg",
  32510. extra: 877 / 794,
  32511. bottom: 47 / 924
  32512. }
  32513. },
  32514. },
  32515. [
  32516. {
  32517. name: "Macro",
  32518. height: math.unit(300, "meters"),
  32519. default: true
  32520. },
  32521. ]
  32522. ))
  32523. characterMakers.push(() => makeCharacter(
  32524. { name: "Aasha", species: ["whale", "seal"], tags: ["anthro"] },
  32525. {
  32526. side: {
  32527. height: math.unit(10 + 7 / 12, "feet"),
  32528. weight: math.unit(2.5, "tons"),
  32529. name: "Side",
  32530. image: {
  32531. source: "./media/characters/aasha/side.svg",
  32532. extra: 1345 / 1245,
  32533. bottom: 111 / 1456
  32534. }
  32535. },
  32536. back: {
  32537. height: math.unit(10 + 7 / 12, "feet"),
  32538. weight: math.unit(2.5, "tons"),
  32539. name: "Back",
  32540. image: {
  32541. source: "./media/characters/aasha/back.svg",
  32542. extra: 1133 / 1057,
  32543. bottom: 257 / 1390
  32544. }
  32545. },
  32546. },
  32547. [
  32548. {
  32549. name: "Normal",
  32550. height: math.unit(10 + 7 / 12, "feet"),
  32551. default: true
  32552. },
  32553. ]
  32554. ))
  32555. characterMakers.push(() => makeCharacter(
  32556. { name: "Nevan", species: ["gardevoir"], tags: ["anthro"] },
  32557. {
  32558. front: {
  32559. height: math.unit(6 + 3 / 12, "feet"),
  32560. name: "Front",
  32561. image: {
  32562. source: "./media/characters/nevan/front.svg",
  32563. extra: 704 / 704,
  32564. bottom: 28 / 732
  32565. }
  32566. },
  32567. back: {
  32568. height: math.unit(6 + 3 / 12, "feet"),
  32569. name: "Back",
  32570. image: {
  32571. source: "./media/characters/nevan/back.svg",
  32572. extra: 714 / 714,
  32573. bottom: 21 / 735
  32574. }
  32575. },
  32576. frontFlaccid: {
  32577. height: math.unit(6 + 3 / 12, "feet"),
  32578. name: "Front (Flaccid)",
  32579. image: {
  32580. source: "./media/characters/nevan/front-flaccid.svg",
  32581. extra: 704 / 704,
  32582. bottom: 28 / 732
  32583. }
  32584. },
  32585. frontErect: {
  32586. height: math.unit(6 + 3 / 12, "feet"),
  32587. name: "Front (Erect)",
  32588. image: {
  32589. source: "./media/characters/nevan/front-erect.svg",
  32590. extra: 704 / 704,
  32591. bottom: 28 / 732
  32592. }
  32593. },
  32594. backFlaccid: {
  32595. height: math.unit(6 + 3 / 12, "feet"),
  32596. name: "Back (Flaccid)",
  32597. image: {
  32598. source: "./media/characters/nevan/back-flaccid.svg",
  32599. extra: 714 / 714,
  32600. bottom: 21 / 735
  32601. }
  32602. },
  32603. },
  32604. [
  32605. {
  32606. name: "Normal",
  32607. height: math.unit(6 + 3 / 12, "feet"),
  32608. default: true
  32609. },
  32610. ]
  32611. ))
  32612. characterMakers.push(() => makeCharacter(
  32613. { name: "Arhan", species: ["kobold"], tags: ["anthro"] },
  32614. {
  32615. front: {
  32616. height: math.unit(4, "feet"),
  32617. name: "Front",
  32618. image: {
  32619. source: "./media/characters/arhan/front.svg",
  32620. extra: 3368 / 3133,
  32621. bottom: 0 / 3368
  32622. }
  32623. },
  32624. side: {
  32625. height: math.unit(4, "feet"),
  32626. name: "Side",
  32627. image: {
  32628. source: "./media/characters/arhan/side.svg",
  32629. extra: 3347 / 3105,
  32630. bottom: 0 / 3347
  32631. }
  32632. },
  32633. tongue: {
  32634. height: math.unit(1.42, "feet"),
  32635. name: "Tongue",
  32636. image: {
  32637. source: "./media/characters/arhan/tongue.svg"
  32638. }
  32639. },
  32640. head: {
  32641. height: math.unit(0.85, "feet"),
  32642. name: "Head",
  32643. image: {
  32644. source: "./media/characters/arhan/head.svg"
  32645. }
  32646. },
  32647. },
  32648. [
  32649. {
  32650. name: "Normal",
  32651. height: math.unit(4, "feet"),
  32652. default: true
  32653. },
  32654. ]
  32655. ))
  32656. characterMakers.push(() => makeCharacter(
  32657. { name: "DigiDuncan", species: ["human"], tags: ["anthro"] },
  32658. {
  32659. front: {
  32660. height: math.unit(5 + 7.5 / 12, "feet"),
  32661. weight: math.unit(120, "lb"),
  32662. name: "Front",
  32663. image: {
  32664. source: "./media/characters/digi-duncan/front.svg",
  32665. extra: 330 / 326,
  32666. bottom: 16 / 346
  32667. }
  32668. },
  32669. side: {
  32670. height: math.unit(5 + 7.5 / 12, "feet"),
  32671. weight: math.unit(120, "lb"),
  32672. name: "Side",
  32673. image: {
  32674. source: "./media/characters/digi-duncan/side.svg",
  32675. extra: 341 / 337,
  32676. bottom: 1 / 342
  32677. }
  32678. },
  32679. back: {
  32680. height: math.unit(5 + 7.5 / 12, "feet"),
  32681. weight: math.unit(120, "lb"),
  32682. name: "Back",
  32683. image: {
  32684. source: "./media/characters/digi-duncan/back.svg",
  32685. extra: 330 / 326,
  32686. bottom: 12 / 342
  32687. }
  32688. },
  32689. },
  32690. [
  32691. {
  32692. name: "Speck",
  32693. height: math.unit(0.25, "mm")
  32694. },
  32695. {
  32696. name: "Micro",
  32697. height: math.unit(5, "mm")
  32698. },
  32699. {
  32700. name: "Tiny",
  32701. height: math.unit(0.5, "inches"),
  32702. default: true
  32703. },
  32704. {
  32705. name: "Human",
  32706. height: math.unit(5 + 7.5 / 12, "feet")
  32707. },
  32708. {
  32709. name: "Minigiant",
  32710. height: math.unit(8 + 5.25, "feet")
  32711. },
  32712. {
  32713. name: "Giant",
  32714. height: math.unit(2000, "feet")
  32715. },
  32716. {
  32717. name: "Mega",
  32718. height: math.unit(371.1, "miles")
  32719. },
  32720. ]
  32721. ))
  32722. characterMakers.push(() => makeCharacter(
  32723. { name: "Jagaz Soulbreaker", species: ["charr"], tags: ["anthro"] },
  32724. {
  32725. front: {
  32726. height: math.unit(2, "meters"),
  32727. weight: math.unit(350, "kg"),
  32728. name: "Front",
  32729. image: {
  32730. source: "./media/characters/jagaz-soulbreaker/front.svg",
  32731. extra: 898 / 838,
  32732. bottom: 9 / 907
  32733. }
  32734. },
  32735. },
  32736. [
  32737. {
  32738. name: "Micro",
  32739. height: math.unit(8, "meters")
  32740. },
  32741. {
  32742. name: "Normal",
  32743. height: math.unit(50, "meters"),
  32744. default: true
  32745. },
  32746. {
  32747. name: "Macro",
  32748. height: math.unit(500, "meters")
  32749. },
  32750. ]
  32751. ))
  32752. characterMakers.push(() => makeCharacter(
  32753. { name: "Khardesh", species: ["dragon"], tags: ["anthro"] },
  32754. {
  32755. front: {
  32756. height: math.unit(6 + 6 / 12, "feet"),
  32757. name: "Front",
  32758. image: {
  32759. source: "./media/characters/khardesh/front.svg",
  32760. extra: 1788/1596,
  32761. bottom: 66/1854
  32762. }
  32763. },
  32764. back: {
  32765. height: math.unit(6 + 6 / 12, "feet"),
  32766. name: "Back",
  32767. image: {
  32768. source: "./media/characters/khardesh/back.svg",
  32769. extra: 1781/1584,
  32770. bottom: 68/1849
  32771. }
  32772. },
  32773. },
  32774. [
  32775. {
  32776. name: "Normal",
  32777. height: math.unit(6 + 6 / 12, "feet"),
  32778. default: true
  32779. },
  32780. {
  32781. name: "Normal+",
  32782. height: math.unit(4, "meters")
  32783. },
  32784. {
  32785. name: "Macro",
  32786. height: math.unit(50, "meters")
  32787. },
  32788. {
  32789. name: "Macro+",
  32790. height: math.unit(100, "meters")
  32791. },
  32792. {
  32793. name: "Megamacro",
  32794. height: math.unit(20, "km")
  32795. },
  32796. ]
  32797. ))
  32798. characterMakers.push(() => makeCharacter(
  32799. { name: "Kosho", species: ["kirin"], tags: ["anthro"] },
  32800. {
  32801. front: {
  32802. height: math.unit(6, "feet"),
  32803. weight: math.unit(150, "lb"),
  32804. name: "Front",
  32805. image: {
  32806. source: "./media/characters/kosho/front.svg",
  32807. extra: 1847 / 1847,
  32808. bottom: 86 / 1933
  32809. }
  32810. },
  32811. },
  32812. [
  32813. {
  32814. name: "Second-stage micro",
  32815. height: math.unit(0.5, "inches")
  32816. },
  32817. {
  32818. name: "First-stage micro",
  32819. height: math.unit(6, "inches")
  32820. },
  32821. {
  32822. name: "Normal",
  32823. height: math.unit(6, "feet"),
  32824. default: true
  32825. },
  32826. {
  32827. name: "First-stage macro",
  32828. height: math.unit(72, "feet")
  32829. },
  32830. {
  32831. name: "Second-stage macro",
  32832. height: math.unit(864, "feet")
  32833. },
  32834. ]
  32835. ))
  32836. characterMakers.push(() => makeCharacter(
  32837. { name: "Hydra", species: ["frog"], tags: ["anthro"] },
  32838. {
  32839. normal: {
  32840. height: math.unit(4 + 6 / 12, "feet"),
  32841. name: "Normal",
  32842. image: {
  32843. source: "./media/characters/hydra/normal.svg",
  32844. extra: 2833 / 2634,
  32845. bottom: 68 / 2901
  32846. }
  32847. },
  32848. smol: {
  32849. height: math.unit(0.705, "inches"),
  32850. name: "Smol",
  32851. image: {
  32852. source: "./media/characters/hydra/smol.svg",
  32853. extra: 2715 / 2540,
  32854. bottom: 0 / 2715
  32855. }
  32856. },
  32857. },
  32858. [
  32859. {
  32860. name: "Normal",
  32861. height: math.unit(4 + 6 / 12, "feet"),
  32862. default: true
  32863. }
  32864. ]
  32865. ))
  32866. characterMakers.push(() => makeCharacter(
  32867. { name: "Daz", species: ["ant"], tags: ["anthro"] },
  32868. {
  32869. front: {
  32870. height: math.unit(0.6, "cm"),
  32871. name: "Front",
  32872. image: {
  32873. source: "./media/characters/daz/front.svg",
  32874. extra: 1682 / 1164,
  32875. bottom: 42 / 1724
  32876. }
  32877. },
  32878. },
  32879. [
  32880. {
  32881. name: "Normal",
  32882. height: math.unit(0.6, "cm"),
  32883. default: true
  32884. },
  32885. ]
  32886. ))
  32887. characterMakers.push(() => makeCharacter(
  32888. { name: "Theo (Pangolin)", species: ["pangolin"], tags: ["anthro"] },
  32889. {
  32890. front: {
  32891. height: math.unit(6, "feet"),
  32892. weight: math.unit(235, "lb"),
  32893. name: "Front",
  32894. image: {
  32895. source: "./media/characters/theo-pangolin/front.svg",
  32896. extra: 1996 / 1969,
  32897. bottom: 115 / 2111
  32898. }
  32899. },
  32900. back: {
  32901. height: math.unit(6, "feet"),
  32902. weight: math.unit(235, "lb"),
  32903. name: "Back",
  32904. image: {
  32905. source: "./media/characters/theo-pangolin/back.svg",
  32906. extra: 1979 / 1979,
  32907. bottom: 40 / 2019
  32908. }
  32909. },
  32910. feral: {
  32911. height: math.unit(2, "feet"),
  32912. weight: math.unit(30, "lb"),
  32913. name: "Feral",
  32914. image: {
  32915. source: "./media/characters/theo-pangolin/feral.svg",
  32916. extra: 803 / 791,
  32917. bottom: 181 / 984
  32918. }
  32919. },
  32920. footFive: {
  32921. height: math.unit(1.43, "feet"),
  32922. name: "Foot (Five Toes)",
  32923. image: {
  32924. source: "./media/characters/theo-pangolin/foot-five.svg"
  32925. }
  32926. },
  32927. footFour: {
  32928. height: math.unit(1.43, "feet"),
  32929. name: "Foot (Four Toes)",
  32930. image: {
  32931. source: "./media/characters/theo-pangolin/foot-four.svg"
  32932. }
  32933. },
  32934. handFour: {
  32935. height: math.unit(0.81, "feet"),
  32936. name: "Hand (Four Fingers)",
  32937. image: {
  32938. source: "./media/characters/theo-pangolin/hand-four.svg"
  32939. }
  32940. },
  32941. handThree: {
  32942. height: math.unit(0.81, "feet"),
  32943. name: "Hand (Three Fingers)",
  32944. image: {
  32945. source: "./media/characters/theo-pangolin/hand-three.svg"
  32946. }
  32947. },
  32948. headFront: {
  32949. height: math.unit(1.37, "feet"),
  32950. name: "Head (Front)",
  32951. image: {
  32952. source: "./media/characters/theo-pangolin/head-front.svg"
  32953. }
  32954. },
  32955. headSide: {
  32956. height: math.unit(1.43, "feet"),
  32957. name: "Head (Side)",
  32958. image: {
  32959. source: "./media/characters/theo-pangolin/head-side.svg"
  32960. }
  32961. },
  32962. tongue: {
  32963. height: math.unit(2.29, "feet"),
  32964. name: "Tongue",
  32965. image: {
  32966. source: "./media/characters/theo-pangolin/tongue.svg"
  32967. }
  32968. },
  32969. },
  32970. [
  32971. {
  32972. name: "Normal",
  32973. height: math.unit(6, "feet")
  32974. },
  32975. {
  32976. name: "Macro",
  32977. height: math.unit(400, "feet"),
  32978. default: true
  32979. },
  32980. ]
  32981. ))
  32982. characterMakers.push(() => makeCharacter(
  32983. { name: "Renée", species: ["mouse"], tags: ["anthro"] },
  32984. {
  32985. front: {
  32986. height: math.unit(6, "inches"),
  32987. weight: math.unit(0.036, "kg"),
  32988. name: "Front",
  32989. image: {
  32990. source: "./media/characters/renée/front.svg",
  32991. extra: 900 / 886,
  32992. bottom: 8 / 908
  32993. }
  32994. },
  32995. },
  32996. [
  32997. {
  32998. name: "Nano",
  32999. height: math.unit(1, "nm")
  33000. },
  33001. {
  33002. name: "Micro",
  33003. height: math.unit(1, "mm")
  33004. },
  33005. {
  33006. name: "Normal",
  33007. height: math.unit(6, "inches")
  33008. },
  33009. {
  33010. name: "Macro",
  33011. height: math.unit(2000, "feet"),
  33012. default: true
  33013. },
  33014. {
  33015. name: "Megamacro",
  33016. height: math.unit(2, "km")
  33017. },
  33018. {
  33019. name: "Gigamacro",
  33020. height: math.unit(2000, "km")
  33021. },
  33022. {
  33023. name: "Teramacro",
  33024. height: math.unit(250000, "km")
  33025. },
  33026. ]
  33027. ))
  33028. characterMakers.push(() => makeCharacter(
  33029. { name: "Caledvwlch", species: ["unicorn"], tags: ["anthro"] },
  33030. {
  33031. front: {
  33032. height: math.unit(4, "meters"),
  33033. weight: math.unit(150, "kg"),
  33034. name: "Front",
  33035. image: {
  33036. source: "./media/characters/caledvwlch/front.svg",
  33037. extra: 1757/1537,
  33038. bottom: 31/1788
  33039. }
  33040. },
  33041. side: {
  33042. height: math.unit(4, "meters"),
  33043. weight: math.unit(150, "kg"),
  33044. name: "Side",
  33045. image: {
  33046. source: "./media/characters/caledvwlch/side.svg",
  33047. extra: 1605 / 1536,
  33048. bottom: 31 / 1636
  33049. }
  33050. },
  33051. back: {
  33052. height: math.unit(4, "meters"),
  33053. weight: math.unit(150, "kg"),
  33054. name: "Back",
  33055. image: {
  33056. source: "./media/characters/caledvwlch/back.svg",
  33057. extra: 1635 / 1565,
  33058. bottom: 27 / 1662
  33059. }
  33060. },
  33061. },
  33062. [
  33063. {
  33064. name: "\"Incognito\"",
  33065. height: math.unit(4, "meters")
  33066. },
  33067. {
  33068. name: "Small rampage",
  33069. height: math.unit(600, "meters")
  33070. },
  33071. {
  33072. name: "Mega",
  33073. height: math.unit(30, "km")
  33074. },
  33075. {
  33076. name: "Home-size",
  33077. height: math.unit(50, "km"),
  33078. default: true
  33079. },
  33080. {
  33081. name: "Giga",
  33082. height: math.unit(300, "km")
  33083. },
  33084. {
  33085. name: "Lounging",
  33086. height: math.unit(11000, "km")
  33087. },
  33088. {
  33089. name: "Planet snacking",
  33090. height: math.unit(2000000, "km")
  33091. },
  33092. ]
  33093. ))
  33094. characterMakers.push(() => makeCharacter(
  33095. { name: "Sapphire Svell", species: ["dragon"], tags: ["anthro"] },
  33096. {
  33097. front: {
  33098. height: math.unit(6, "feet"),
  33099. weight: math.unit(215, "lb"),
  33100. name: "Front",
  33101. image: {
  33102. source: "./media/characters/sapphire-svell/front.svg",
  33103. extra: 495 / 455,
  33104. bottom: 20 / 515
  33105. }
  33106. },
  33107. back: {
  33108. height: math.unit(6, "feet"),
  33109. weight: math.unit(216, "lb"),
  33110. name: "Back",
  33111. image: {
  33112. source: "./media/characters/sapphire-svell/back.svg",
  33113. extra: 497 / 477,
  33114. bottom: 7 / 504
  33115. }
  33116. },
  33117. maw: {
  33118. height: math.unit(1.57, "feet"),
  33119. name: "Maw",
  33120. image: {
  33121. source: "./media/characters/sapphire-svell/maw.svg"
  33122. }
  33123. },
  33124. foot: {
  33125. height: math.unit(1.07, "feet"),
  33126. name: "Foot",
  33127. image: {
  33128. source: "./media/characters/sapphire-svell/foot.svg"
  33129. }
  33130. },
  33131. toering: {
  33132. height: math.unit(1.7, "inch"),
  33133. name: "Toering",
  33134. image: {
  33135. source: "./media/characters/sapphire-svell/toering.svg"
  33136. }
  33137. },
  33138. },
  33139. [
  33140. {
  33141. name: "Normal",
  33142. height: math.unit(300, "feet"),
  33143. default: true
  33144. },
  33145. {
  33146. name: "Augmented",
  33147. height: math.unit(1250, "feet")
  33148. },
  33149. {
  33150. name: "Unleashed",
  33151. height: math.unit(3000, "feet")
  33152. },
  33153. ]
  33154. ))
  33155. characterMakers.push(() => makeCharacter(
  33156. { name: "Glitch Flux", species: ["wolf"], tags: ["feral"] },
  33157. {
  33158. side: {
  33159. height: math.unit(2 + 3 / 12, "feet"),
  33160. weight: math.unit(110, "lb"),
  33161. name: "Side",
  33162. image: {
  33163. source: "./media/characters/glitch-flux/side.svg",
  33164. extra: 997 / 805,
  33165. bottom: 20 / 1017
  33166. }
  33167. },
  33168. },
  33169. [
  33170. {
  33171. name: "Normal",
  33172. height: math.unit(2 + 3 / 12, "feet"),
  33173. default: true
  33174. },
  33175. ]
  33176. ))
  33177. characterMakers.push(() => makeCharacter(
  33178. { name: "Mid", species: ["cat"], tags: ["anthro"] },
  33179. {
  33180. front: {
  33181. height: math.unit(4, "meters"),
  33182. name: "Front",
  33183. image: {
  33184. source: "./media/characters/mid/front.svg",
  33185. extra: 507 / 476,
  33186. bottom: 17 / 524
  33187. }
  33188. },
  33189. back: {
  33190. height: math.unit(4, "meters"),
  33191. name: "Back",
  33192. image: {
  33193. source: "./media/characters/mid/back.svg",
  33194. extra: 519 / 487,
  33195. bottom: 7 / 526
  33196. }
  33197. },
  33198. stuck: {
  33199. height: math.unit(2.2, "meters"),
  33200. name: "Stuck",
  33201. image: {
  33202. source: "./media/characters/mid/stuck.svg",
  33203. extra: 1951 / 1869,
  33204. bottom: 88 / 2039
  33205. }
  33206. }
  33207. },
  33208. [
  33209. {
  33210. name: "Normal",
  33211. height: math.unit(4, "meters"),
  33212. default: true
  33213. },
  33214. {
  33215. name: "Big",
  33216. height: math.unit(10, "meters")
  33217. },
  33218. {
  33219. name: "Macro",
  33220. height: math.unit(800, "meters")
  33221. },
  33222. {
  33223. name: "Megamacro",
  33224. height: math.unit(100, "km")
  33225. },
  33226. {
  33227. name: "Overgrown",
  33228. height: math.unit(1, "parsec")
  33229. },
  33230. ]
  33231. ))
  33232. characterMakers.push(() => makeCharacter(
  33233. { name: "Iris", species: ["tiger"], tags: ["anthro"] },
  33234. {
  33235. front: {
  33236. height: math.unit(2.5, "meters"),
  33237. weight: math.unit(225, "kg"),
  33238. name: "Front",
  33239. image: {
  33240. source: "./media/characters/iris/front.svg",
  33241. extra: 3348 / 3251,
  33242. bottom: 205 / 3553
  33243. }
  33244. },
  33245. maw: {
  33246. height: math.unit(0.56, "meter"),
  33247. name: "Maw",
  33248. image: {
  33249. source: "./media/characters/iris/maw.svg"
  33250. }
  33251. },
  33252. },
  33253. [
  33254. {
  33255. name: "Mewter cat",
  33256. height: math.unit(1.2, "meters")
  33257. },
  33258. {
  33259. name: "Normal",
  33260. height: math.unit(2.5, "meters"),
  33261. default: true
  33262. },
  33263. {
  33264. name: "Minimacro",
  33265. height: math.unit(18, "feet")
  33266. },
  33267. {
  33268. name: "Macro",
  33269. height: math.unit(140, "feet")
  33270. },
  33271. {
  33272. name: "Macro+",
  33273. height: math.unit(180, "meters")
  33274. },
  33275. {
  33276. name: "Megamacro",
  33277. height: math.unit(2746, "meters")
  33278. },
  33279. ]
  33280. ))
  33281. characterMakers.push(() => makeCharacter(
  33282. { name: "Axel", species: ["raven"], tags: ["anthro"] },
  33283. {
  33284. front: {
  33285. height: math.unit(6, "feet"),
  33286. weight: math.unit(135, "lb"),
  33287. name: "Front",
  33288. image: {
  33289. source: "./media/characters/axel/front.svg",
  33290. extra: 908 / 908,
  33291. bottom: 58 / 966
  33292. }
  33293. },
  33294. side: {
  33295. height: math.unit(6, "feet"),
  33296. weight: math.unit(135, "lb"),
  33297. name: "Side",
  33298. image: {
  33299. source: "./media/characters/axel/side.svg",
  33300. extra: 958 / 958,
  33301. bottom: 11 / 969
  33302. }
  33303. },
  33304. back: {
  33305. height: math.unit(6, "feet"),
  33306. weight: math.unit(135, "lb"),
  33307. name: "Back",
  33308. image: {
  33309. source: "./media/characters/axel/back.svg",
  33310. extra: 887 / 887,
  33311. bottom: 34 / 921
  33312. }
  33313. },
  33314. head: {
  33315. height: math.unit(1.07, "feet"),
  33316. name: "Head",
  33317. image: {
  33318. source: "./media/characters/axel/head.svg"
  33319. }
  33320. },
  33321. beak: {
  33322. height: math.unit(1.4, "feet"),
  33323. name: "Beak",
  33324. image: {
  33325. source: "./media/characters/axel/beak.svg"
  33326. }
  33327. },
  33328. beakSide: {
  33329. height: math.unit(1.4, "feet"),
  33330. name: "Beak Side",
  33331. image: {
  33332. source: "./media/characters/axel/beak-side.svg"
  33333. }
  33334. },
  33335. sheath: {
  33336. height: math.unit(0.5, "feet"),
  33337. name: "Sheath",
  33338. image: {
  33339. source: "./media/characters/axel/sheath.svg"
  33340. }
  33341. },
  33342. dick: {
  33343. height: math.unit(0.98, "feet"),
  33344. name: "Dick",
  33345. image: {
  33346. source: "./media/characters/axel/dick.svg"
  33347. }
  33348. },
  33349. },
  33350. [
  33351. {
  33352. name: "Macro",
  33353. height: math.unit(68, "meters"),
  33354. default: true
  33355. },
  33356. ]
  33357. ))
  33358. characterMakers.push(() => makeCharacter(
  33359. { name: "Joanna", species: ["wolf"], tags: ["anthro"] },
  33360. {
  33361. front: {
  33362. height: math.unit(3.5, "meters"),
  33363. weight: math.unit(1200, "kg"),
  33364. name: "Front",
  33365. image: {
  33366. source: "./media/characters/joanna/front.svg",
  33367. extra: 1596 / 1488,
  33368. bottom: 29 / 1625
  33369. }
  33370. },
  33371. back: {
  33372. height: math.unit(3.5, "meters"),
  33373. weight: math.unit(1200, "kg"),
  33374. name: "Back",
  33375. image: {
  33376. source: "./media/characters/joanna/back.svg",
  33377. extra: 1594 / 1495,
  33378. bottom: 26 / 1620
  33379. }
  33380. },
  33381. frontShorts: {
  33382. height: math.unit(3.5, "meters"),
  33383. weight: math.unit(1200, "kg"),
  33384. name: "Front (Shorts)",
  33385. image: {
  33386. source: "./media/characters/joanna/front-shorts.svg",
  33387. extra: 1596 / 1488,
  33388. bottom: 29 / 1625
  33389. }
  33390. },
  33391. frontBiker: {
  33392. height: math.unit(3.5, "meters"),
  33393. weight: math.unit(1200, "kg"),
  33394. name: "Front (Biker)",
  33395. image: {
  33396. source: "./media/characters/joanna/front-biker.svg",
  33397. extra: 1596 / 1488,
  33398. bottom: 29 / 1625
  33399. }
  33400. },
  33401. backBiker: {
  33402. height: math.unit(3.5, "meters"),
  33403. weight: math.unit(1200, "kg"),
  33404. name: "Back (Biker)",
  33405. image: {
  33406. source: "./media/characters/joanna/back-biker.svg",
  33407. extra: 1594 / 1495,
  33408. bottom: 88 / 1682
  33409. }
  33410. },
  33411. bikeLeft: {
  33412. height: math.unit(2.4, "meters"),
  33413. weight: math.unit(1600, "kg"),
  33414. name: "Bike (Left)",
  33415. image: {
  33416. source: "./media/characters/joanna/bike-left.svg",
  33417. extra: 720 / 720,
  33418. bottom: 8 / 728
  33419. }
  33420. },
  33421. bikeRight: {
  33422. height: math.unit(2.4, "meters"),
  33423. weight: math.unit(1600, "kg"),
  33424. name: "Bike (Right)",
  33425. image: {
  33426. source: "./media/characters/joanna/bike-right.svg",
  33427. extra: 720 / 720,
  33428. bottom: 8 / 728
  33429. }
  33430. },
  33431. },
  33432. [
  33433. {
  33434. name: "Incognito",
  33435. height: math.unit(3.5, "meters")
  33436. },
  33437. {
  33438. name: "Casual Big",
  33439. height: math.unit(200, "meters")
  33440. },
  33441. {
  33442. name: "Macro",
  33443. height: math.unit(600, "meters")
  33444. },
  33445. {
  33446. name: "Original",
  33447. height: math.unit(20, "km"),
  33448. default: true
  33449. },
  33450. {
  33451. name: "Giga",
  33452. height: math.unit(400, "km")
  33453. },
  33454. {
  33455. name: "Lounging",
  33456. height: math.unit(1500, "km")
  33457. },
  33458. {
  33459. name: "Planetary",
  33460. height: math.unit(200000, "km")
  33461. },
  33462. ]
  33463. ))
  33464. characterMakers.push(() => makeCharacter(
  33465. { name: "Hugo Sigil", species: ["cat"], tags: ["anthro"] },
  33466. {
  33467. front: {
  33468. height: math.unit(6, "feet"),
  33469. weight: math.unit(150, "lb"),
  33470. name: "Front",
  33471. image: {
  33472. source: "./media/characters/hugo-sigil/front.svg",
  33473. extra: 522 / 500,
  33474. bottom: 2 / 524
  33475. }
  33476. },
  33477. back: {
  33478. height: math.unit(6, "feet"),
  33479. weight: math.unit(150, "lb"),
  33480. name: "Back",
  33481. image: {
  33482. source: "./media/characters/hugo-sigil/back.svg",
  33483. extra: 519 / 495,
  33484. bottom: 5 / 524
  33485. }
  33486. },
  33487. maw: {
  33488. height: math.unit(1.4, "feet"),
  33489. weight: math.unit(150, "lb"),
  33490. name: "Maw",
  33491. image: {
  33492. source: "./media/characters/hugo-sigil/maw.svg"
  33493. }
  33494. },
  33495. feet: {
  33496. height: math.unit(1.56, "feet"),
  33497. weight: math.unit(150, "lb"),
  33498. name: "Feet",
  33499. image: {
  33500. source: "./media/characters/hugo-sigil/feet.svg",
  33501. extra: 177 / 177,
  33502. bottom: 12 / 189
  33503. }
  33504. },
  33505. },
  33506. [
  33507. {
  33508. name: "Normal",
  33509. height: math.unit(6, "feet")
  33510. },
  33511. {
  33512. name: "Macro",
  33513. height: math.unit(200, "feet"),
  33514. default: true
  33515. },
  33516. ]
  33517. ))
  33518. characterMakers.push(() => makeCharacter(
  33519. { name: "Peri", species: ["husky"], tags: ["anthro"] },
  33520. {
  33521. front: {
  33522. height: math.unit(6, "feet"),
  33523. weight: math.unit(150, "lb"),
  33524. name: "Front",
  33525. image: {
  33526. source: "./media/characters/peri/front.svg",
  33527. extra: 2354 / 2233,
  33528. bottom: 49 / 2403
  33529. }
  33530. },
  33531. },
  33532. [
  33533. {
  33534. name: "Really Small",
  33535. height: math.unit(1, "nm")
  33536. },
  33537. {
  33538. name: "Micro",
  33539. height: math.unit(4, "inches")
  33540. },
  33541. {
  33542. name: "Normal",
  33543. height: math.unit(7, "inches"),
  33544. default: true
  33545. },
  33546. {
  33547. name: "Macro",
  33548. height: math.unit(400, "feet")
  33549. },
  33550. {
  33551. name: "Megamacro",
  33552. height: math.unit(100, "miles")
  33553. },
  33554. ]
  33555. ))
  33556. characterMakers.push(() => makeCharacter(
  33557. { name: "Issilora", species: ["dragon"], tags: ["anthro"] },
  33558. {
  33559. frontSlim: {
  33560. height: math.unit(7, "feet"),
  33561. name: "Front (Slim)",
  33562. image: {
  33563. source: "./media/characters/issilora/front-slim.svg",
  33564. extra: 529 / 449,
  33565. bottom: 53 / 582
  33566. }
  33567. },
  33568. sideSlim: {
  33569. height: math.unit(7, "feet"),
  33570. name: "Side (Slim)",
  33571. image: {
  33572. source: "./media/characters/issilora/side-slim.svg",
  33573. extra: 570 / 480,
  33574. bottom: 30 / 600
  33575. }
  33576. },
  33577. backSlim: {
  33578. height: math.unit(7, "feet"),
  33579. name: "Back (Slim)",
  33580. image: {
  33581. source: "./media/characters/issilora/back-slim.svg",
  33582. extra: 537 / 455,
  33583. bottom: 46 / 583
  33584. }
  33585. },
  33586. frontBuff: {
  33587. height: math.unit(7, "feet"),
  33588. name: "Front (Buff)",
  33589. image: {
  33590. source: "./media/characters/issilora/front-buff.svg",
  33591. extra: 2310 / 2035,
  33592. bottom: 335 / 2645
  33593. }
  33594. },
  33595. head: {
  33596. height: math.unit(1.94, "feet"),
  33597. name: "Head",
  33598. image: {
  33599. source: "./media/characters/issilora/head.svg"
  33600. }
  33601. },
  33602. },
  33603. [
  33604. {
  33605. name: "Minimum",
  33606. height: math.unit(7, "feet")
  33607. },
  33608. {
  33609. name: "Comfortable",
  33610. height: math.unit(17, "feet")
  33611. },
  33612. {
  33613. name: "Fun Size",
  33614. height: math.unit(47, "feet")
  33615. },
  33616. {
  33617. name: "Natural Macro",
  33618. height: math.unit(137, "feet"),
  33619. default: true
  33620. },
  33621. {
  33622. name: "Maximum Kaiju",
  33623. height: math.unit(397, "feet")
  33624. },
  33625. ]
  33626. ))
  33627. characterMakers.push(() => makeCharacter(
  33628. { name: "Irb'iiritaahn", species: ["uragi'viidorn"], tags: ["taur"] },
  33629. {
  33630. front: {
  33631. height: math.unit(50 + 9/12, "feet"),
  33632. weight: math.unit(32.8, "tons"),
  33633. name: "Front",
  33634. image: {
  33635. source: "./media/characters/irb'iiritaahn/front.svg",
  33636. extra: 1878/1826,
  33637. bottom: 326/2204
  33638. }
  33639. },
  33640. back: {
  33641. height: math.unit(50 + 9/12, "feet"),
  33642. weight: math.unit(32.8, "tons"),
  33643. name: "Back",
  33644. image: {
  33645. source: "./media/characters/irb'iiritaahn/back.svg",
  33646. extra: 2052/2018,
  33647. bottom: 152/2204
  33648. }
  33649. },
  33650. head: {
  33651. height: math.unit(12.86, "feet"),
  33652. name: "Head",
  33653. image: {
  33654. source: "./media/characters/irb'iiritaahn/head.svg"
  33655. }
  33656. },
  33657. maw: {
  33658. height: math.unit(9.66, "feet"),
  33659. name: "Maw",
  33660. image: {
  33661. source: "./media/characters/irb'iiritaahn/maw.svg"
  33662. }
  33663. },
  33664. frontDick: {
  33665. height: math.unit(8.78461, "feet"),
  33666. name: "Front Dick",
  33667. image: {
  33668. source: "./media/characters/irb'iiritaahn/front-dick.svg"
  33669. }
  33670. },
  33671. rearDick: {
  33672. height: math.unit(8.78461, "feet"),
  33673. name: "Rear Dick",
  33674. image: {
  33675. source: "./media/characters/irb'iiritaahn/rear-dick.svg"
  33676. }
  33677. },
  33678. rearDickUnfolded: {
  33679. height: math.unit(8.78, "feet"),
  33680. name: "Rear Dick (Unfolded)",
  33681. image: {
  33682. source: "./media/characters/irb'iiritaahn/rear-dick-unfolded.svg"
  33683. }
  33684. },
  33685. wings: {
  33686. height: math.unit(43, "feet"),
  33687. name: "Wings",
  33688. image: {
  33689. source: "./media/characters/irb'iiritaahn/wings.svg"
  33690. }
  33691. },
  33692. },
  33693. [
  33694. {
  33695. name: "Macro",
  33696. height: math.unit(50 + 9/12, "feet"),
  33697. default: true
  33698. },
  33699. ]
  33700. ))
  33701. characterMakers.push(() => makeCharacter(
  33702. { name: "Irbisgreif", species: ["gryphdelphais"], tags: ["anthro"] },
  33703. {
  33704. front: {
  33705. height: math.unit(205, "cm"),
  33706. weight: math.unit(102, "kg"),
  33707. name: "Front",
  33708. image: {
  33709. source: "./media/characters/irbisgreif/front.svg",
  33710. extra: 785/706,
  33711. bottom: 13/798
  33712. }
  33713. },
  33714. back: {
  33715. height: math.unit(205, "cm"),
  33716. weight: math.unit(102, "kg"),
  33717. name: "Back",
  33718. image: {
  33719. source: "./media/characters/irbisgreif/back.svg",
  33720. extra: 713/701,
  33721. bottom: 26/739
  33722. }
  33723. },
  33724. frontDressed: {
  33725. height: math.unit(216, "cm"),
  33726. weight: math.unit(102, "kg"),
  33727. name: "Front-dressed",
  33728. image: {
  33729. source: "./media/characters/irbisgreif/front-dressed.svg",
  33730. extra: 902/776,
  33731. bottom: 14/916
  33732. }
  33733. },
  33734. sideDressed: {
  33735. height: math.unit(195, "cm"),
  33736. weight: math.unit(102, "kg"),
  33737. name: "Side-dressed",
  33738. image: {
  33739. source: "./media/characters/irbisgreif/side-dressed.svg",
  33740. extra: 788/688,
  33741. bottom: 21/809
  33742. }
  33743. },
  33744. backDressed: {
  33745. height: math.unit(216, "cm"),
  33746. weight: math.unit(102, "kg"),
  33747. name: "Back-dressed",
  33748. image: {
  33749. source: "./media/characters/irbisgreif/back-dressed.svg",
  33750. extra: 901/783,
  33751. bottom: 10/911
  33752. }
  33753. },
  33754. dick: {
  33755. height: math.unit(0.49, "feet"),
  33756. name: "Dick",
  33757. image: {
  33758. source: "./media/characters/irbisgreif/dick.svg"
  33759. }
  33760. },
  33761. wingTop: {
  33762. height: math.unit(1.93 , "feet"),
  33763. name: "Wing-top",
  33764. image: {
  33765. source: "./media/characters/irbisgreif/wing-top.svg"
  33766. }
  33767. },
  33768. wingBottom: {
  33769. height: math.unit(1.93 , "feet"),
  33770. name: "Wing-bottom",
  33771. image: {
  33772. source: "./media/characters/irbisgreif/wing-bottom.svg"
  33773. }
  33774. },
  33775. },
  33776. [
  33777. {
  33778. name: "Normal",
  33779. height: math.unit(216, "cm"),
  33780. default: true
  33781. },
  33782. ]
  33783. ))
  33784. characterMakers.push(() => makeCharacter(
  33785. { name: "Pride", species: ["skunk"], tags: ["anthro"] },
  33786. {
  33787. front: {
  33788. height: math.unit(6, "feet"),
  33789. weight: math.unit(150, "lb"),
  33790. name: "Front",
  33791. image: {
  33792. source: "./media/characters/pride/front.svg",
  33793. extra: 1299/1230,
  33794. bottom: 18/1317
  33795. }
  33796. },
  33797. },
  33798. [
  33799. {
  33800. name: "Normal",
  33801. height: math.unit(7, "feet")
  33802. },
  33803. {
  33804. name: "Mini-macro",
  33805. height: math.unit(11, "feet")
  33806. },
  33807. {
  33808. name: "Macro",
  33809. height: math.unit(15, "meters"),
  33810. default: true
  33811. },
  33812. {
  33813. name: "Macro+",
  33814. height: math.unit(40, "meters")
  33815. },
  33816. ]
  33817. ))
  33818. characterMakers.push(() => makeCharacter(
  33819. { name: "Vaelophys Nyx", species: ["maned-wolf"], tags: ["anthro", "feral"] },
  33820. {
  33821. front: {
  33822. height: math.unit(4 + 2 / 12, "feet"),
  33823. weight: math.unit(95, "lb"),
  33824. name: "Front",
  33825. image: {
  33826. source: "./media/characters/vaelophis-nyx/front.svg",
  33827. extra: 2532/2330,
  33828. bottom: 0/2532
  33829. }
  33830. },
  33831. back: {
  33832. height: math.unit(4 + 2 / 12, "feet"),
  33833. weight: math.unit(95, "lb"),
  33834. name: "Back",
  33835. image: {
  33836. source: "./media/characters/vaelophis-nyx/back.svg",
  33837. extra: 2484/2361,
  33838. bottom: 0/2484
  33839. }
  33840. },
  33841. feralSide: {
  33842. height: math.unit(2 + 1/12, "feet"),
  33843. weight: math.unit(20, "lb"),
  33844. name: "Feral (Side)",
  33845. image: {
  33846. source: "./media/characters/vaelophis-nyx/feral-side.svg",
  33847. extra: 1721/1581,
  33848. bottom: 70/1791
  33849. }
  33850. },
  33851. feralLazing: {
  33852. height: math.unit(1.08, "feet"),
  33853. weight: math.unit(20, "lb"),
  33854. name: "Feral (Lazing)",
  33855. image: {
  33856. source: "./media/characters/vaelophis-nyx/feral-lazing.svg",
  33857. extra: 822/822,
  33858. bottom: 248/1070
  33859. }
  33860. },
  33861. ear: {
  33862. height: math.unit(0.416, "feet"),
  33863. name: "Ear",
  33864. image: {
  33865. source: "./media/characters/vaelophis-nyx/ear.svg"
  33866. }
  33867. },
  33868. eye: {
  33869. height: math.unit(0.0748, "feet"),
  33870. name: "Eye",
  33871. image: {
  33872. source: "./media/characters/vaelophis-nyx/eye.svg"
  33873. }
  33874. },
  33875. mouth: {
  33876. height: math.unit(0.378, "feet"),
  33877. name: "Mouth",
  33878. image: {
  33879. source: "./media/characters/vaelophis-nyx/mouth.svg"
  33880. }
  33881. },
  33882. spade: {
  33883. height: math.unit(0.55, "feet"),
  33884. name: "Spade",
  33885. image: {
  33886. source: "./media/characters/vaelophis-nyx/spade.svg"
  33887. }
  33888. },
  33889. },
  33890. [
  33891. {
  33892. name: "Normal",
  33893. height: math.unit(4 + 2/12, "feet"),
  33894. default: true
  33895. },
  33896. ]
  33897. ))
  33898. characterMakers.push(() => makeCharacter(
  33899. { name: "Flux", species: ["luxray"], tags: ["anthro", "feral"] },
  33900. {
  33901. front: {
  33902. height: math.unit(7, "feet"),
  33903. weight: math.unit(231, "lb"),
  33904. name: "Front",
  33905. image: {
  33906. source: "./media/characters/flux/front.svg",
  33907. extra: 919/871,
  33908. bottom: 0/919
  33909. }
  33910. },
  33911. back: {
  33912. height: math.unit(7, "feet"),
  33913. weight: math.unit(231, "lb"),
  33914. name: "Back",
  33915. image: {
  33916. source: "./media/characters/flux/back.svg",
  33917. extra: 1040/992,
  33918. bottom: 0/1040
  33919. }
  33920. },
  33921. frontDressed: {
  33922. height: math.unit(7, "feet"),
  33923. weight: math.unit(231, "lb"),
  33924. name: "Front (Dressed)",
  33925. image: {
  33926. source: "./media/characters/flux/front-dressed.svg",
  33927. extra: 919/871,
  33928. bottom: 0/919
  33929. }
  33930. },
  33931. feralSide: {
  33932. height: math.unit(5, "feet"),
  33933. weight: math.unit(150, "lb"),
  33934. name: "Feral (Side)",
  33935. image: {
  33936. source: "./media/characters/flux/feral-side.svg",
  33937. extra: 598/528,
  33938. bottom: 28/626
  33939. }
  33940. },
  33941. head: {
  33942. height: math.unit(1.585, "feet"),
  33943. name: "Head",
  33944. image: {
  33945. source: "./media/characters/flux/head.svg"
  33946. }
  33947. },
  33948. headSide: {
  33949. height: math.unit(1.74, "feet"),
  33950. name: "Head (Side)",
  33951. image: {
  33952. source: "./media/characters/flux/head-side.svg"
  33953. }
  33954. },
  33955. headSideFire: {
  33956. height: math.unit(1.76, "feet"),
  33957. name: "Head (Side, Fire)",
  33958. image: {
  33959. source: "./media/characters/flux/head-side-fire.svg"
  33960. }
  33961. },
  33962. },
  33963. [
  33964. {
  33965. name: "Normal",
  33966. height: math.unit(7, "feet"),
  33967. default: true
  33968. },
  33969. ]
  33970. ))
  33971. characterMakers.push(() => makeCharacter(
  33972. { name: "Ulfra Lupae", species: ["wolf"], tags: ["anthro"] },
  33973. {
  33974. front: {
  33975. height: math.unit(9, "feet"),
  33976. weight: math.unit(1012, "lb"),
  33977. name: "Front",
  33978. image: {
  33979. source: "./media/characters/ulfra-lupae/front.svg",
  33980. extra: 1083/1011,
  33981. bottom: 67/1150
  33982. }
  33983. },
  33984. },
  33985. [
  33986. {
  33987. name: "Micro",
  33988. height: math.unit(6, "inches")
  33989. },
  33990. {
  33991. name: "Socializing",
  33992. height: math.unit(6 + 5/12, "feet")
  33993. },
  33994. {
  33995. name: "Normal",
  33996. height: math.unit(9, "feet"),
  33997. default: true
  33998. },
  33999. {
  34000. name: "Macro",
  34001. height: math.unit(150, "feet")
  34002. },
  34003. ]
  34004. ))
  34005. characterMakers.push(() => makeCharacter(
  34006. { name: "Timber", species: ["canine"], tags: ["anthro"] },
  34007. {
  34008. front: {
  34009. height: math.unit(5 + 2/12, "feet"),
  34010. weight: math.unit(120, "lb"),
  34011. name: "Front",
  34012. image: {
  34013. source: "./media/characters/timber/front.svg",
  34014. extra: 2814/2705,
  34015. bottom: 181/2995
  34016. }
  34017. },
  34018. },
  34019. [
  34020. {
  34021. name: "Normal",
  34022. height: math.unit(5 + 2/12, "feet"),
  34023. default: true
  34024. },
  34025. ]
  34026. ))
  34027. characterMakers.push(() => makeCharacter(
  34028. { name: "Nicki", species: ["goat", "wolf", "rabbit"], tags: ["anthro"] },
  34029. {
  34030. front: {
  34031. height: math.unit(9, "feet"),
  34032. name: "Front",
  34033. image: {
  34034. source: "./media/characters/nicki/front.svg",
  34035. extra: 1240/990,
  34036. bottom: 45/1285
  34037. },
  34038. form: "anthro",
  34039. default: true
  34040. },
  34041. side: {
  34042. height: math.unit(9, "feet"),
  34043. name: "Side",
  34044. image: {
  34045. source: "./media/characters/nicki/side.svg",
  34046. extra: 1047/973,
  34047. bottom: 61/1108
  34048. },
  34049. form: "anthro"
  34050. },
  34051. back: {
  34052. height: math.unit(9, "feet"),
  34053. name: "Back",
  34054. image: {
  34055. source: "./media/characters/nicki/back.svg",
  34056. extra: 1006/965,
  34057. bottom: 39/1045
  34058. },
  34059. form: "anthro"
  34060. },
  34061. taur: {
  34062. height: math.unit(15, "feet"),
  34063. name: "Taur",
  34064. image: {
  34065. source: "./media/characters/nicki/taur.svg",
  34066. extra: 1592/1347,
  34067. bottom: 0/1592
  34068. },
  34069. form: "taur",
  34070. default: true
  34071. },
  34072. },
  34073. [
  34074. {
  34075. name: "Normal",
  34076. height: math.unit(9, "feet"),
  34077. form: "anthro",
  34078. default: true
  34079. },
  34080. {
  34081. name: "Normal",
  34082. height: math.unit(15, "feet"),
  34083. form: "taur",
  34084. default: true
  34085. }
  34086. ],
  34087. {
  34088. "anthro": {
  34089. name: "Anthro",
  34090. default: true
  34091. },
  34092. "taur": {
  34093. name: "Taur"
  34094. }
  34095. }
  34096. ))
  34097. characterMakers.push(() => makeCharacter(
  34098. { name: "Lee", species: ["monster"], tags: ["anthro"] },
  34099. {
  34100. front: {
  34101. height: math.unit(7 + 10/12, "feet"),
  34102. weight: math.unit(3.5, "tons"),
  34103. name: "Front",
  34104. image: {
  34105. source: "./media/characters/lee/front.svg",
  34106. extra: 1773/1615,
  34107. bottom: 86/1859
  34108. }
  34109. },
  34110. hand: {
  34111. height: math.unit(1.78, "feet"),
  34112. name: "Hand",
  34113. image: {
  34114. source: "./media/characters/lee/hand.svg"
  34115. }
  34116. },
  34117. maw: {
  34118. height: math.unit(1.18, "feet"),
  34119. name: "Maw",
  34120. image: {
  34121. source: "./media/characters/lee/maw.svg"
  34122. }
  34123. },
  34124. },
  34125. [
  34126. {
  34127. name: "Normal",
  34128. height: math.unit(7 + 10/12, "feet"),
  34129. default: true
  34130. },
  34131. ]
  34132. ))
  34133. characterMakers.push(() => makeCharacter(
  34134. { name: "Guti", species: ["lion"], tags: ["anthro", "goo"] },
  34135. {
  34136. front: {
  34137. height: math.unit(9, "feet"),
  34138. name: "Front",
  34139. image: {
  34140. source: "./media/characters/guti/front.svg",
  34141. extra: 4551/4355,
  34142. bottom: 123/4674
  34143. }
  34144. },
  34145. tongue: {
  34146. height: math.unit(1, "feet"),
  34147. name: "Tongue",
  34148. image: {
  34149. source: "./media/characters/guti/tongue.svg"
  34150. }
  34151. },
  34152. paw: {
  34153. height: math.unit(1.18, "feet"),
  34154. name: "Paw",
  34155. image: {
  34156. source: "./media/characters/guti/paw.svg"
  34157. }
  34158. },
  34159. },
  34160. [
  34161. {
  34162. name: "Normal",
  34163. height: math.unit(9, "feet"),
  34164. default: true
  34165. },
  34166. ]
  34167. ))
  34168. characterMakers.push(() => makeCharacter(
  34169. { name: "Vesper", species: ["kitsune"], tags: ["anthro"] },
  34170. {
  34171. side: {
  34172. height: math.unit(5, "meters"),
  34173. name: "Side",
  34174. image: {
  34175. source: "./media/characters/vesper/side.svg",
  34176. extra: 1605/1518,
  34177. bottom: 0/1605
  34178. }
  34179. },
  34180. },
  34181. [
  34182. {
  34183. name: "Small",
  34184. height: math.unit(5, "meters")
  34185. },
  34186. {
  34187. name: "Sage",
  34188. height: math.unit(100, "meters"),
  34189. default: true
  34190. },
  34191. {
  34192. name: "Fun Size",
  34193. height: math.unit(600, "meters")
  34194. },
  34195. {
  34196. name: "Goddess",
  34197. height: math.unit(20000, "km")
  34198. },
  34199. {
  34200. name: "Maximum",
  34201. height: math.unit(5, "galaxies")
  34202. },
  34203. ]
  34204. ))
  34205. characterMakers.push(() => makeCharacter(
  34206. { name: "Gawain", species: ["arcanine"], tags: ["anthro"] },
  34207. {
  34208. front: {
  34209. height: math.unit(6 + 3/12, "feet"),
  34210. weight: math.unit(190, "lb"),
  34211. name: "Front",
  34212. image: {
  34213. source: "./media/characters/gawain/front.svg",
  34214. extra: 2222/2139,
  34215. bottom: 90/2312
  34216. }
  34217. },
  34218. back: {
  34219. height: math.unit(6 + 3/12, "feet"),
  34220. weight: math.unit(190, "lb"),
  34221. name: "Back",
  34222. image: {
  34223. source: "./media/characters/gawain/back.svg",
  34224. extra: 2199/2111,
  34225. bottom: 73/2272
  34226. }
  34227. },
  34228. },
  34229. [
  34230. {
  34231. name: "Normal",
  34232. height: math.unit(6 + 3/12, "feet"),
  34233. default: true
  34234. },
  34235. ]
  34236. ))
  34237. characterMakers.push(() => makeCharacter(
  34238. { name: "Dascalti", species: ["draiger"], tags: ["anthro"] },
  34239. {
  34240. side: {
  34241. height: math.unit(3.5, "meters"),
  34242. weight: math.unit(16000, "lb"),
  34243. name: "Side",
  34244. image: {
  34245. source: "./media/characters/dascalti/side.svg",
  34246. extra: 392/273,
  34247. bottom: 47/439
  34248. }
  34249. },
  34250. breath: {
  34251. height: math.unit(7.4, "feet"),
  34252. name: "Breath",
  34253. image: {
  34254. source: "./media/characters/dascalti/breath.svg"
  34255. }
  34256. },
  34257. fed: {
  34258. height: math.unit(3.6, "meters"),
  34259. weight: math.unit(16000, "lb"),
  34260. name: "Fed",
  34261. image: {
  34262. source: "./media/characters/dascalti/fed.svg",
  34263. extra: 1419/820,
  34264. bottom: 95/1514
  34265. }
  34266. },
  34267. },
  34268. [
  34269. {
  34270. name: "Normal",
  34271. height: math.unit(3.5, "meters"),
  34272. default: true
  34273. },
  34274. ]
  34275. ))
  34276. characterMakers.push(() => makeCharacter(
  34277. { name: "Mauve", species: ["skunk"], tags: ["anthro"] },
  34278. {
  34279. front: {
  34280. height: math.unit(3 + 5/12, "feet"),
  34281. name: "Front",
  34282. image: {
  34283. source: "./media/characters/mauve/front.svg",
  34284. extra: 1126/1033,
  34285. bottom: 65/1191
  34286. }
  34287. },
  34288. side: {
  34289. height: math.unit(3 + 5/12, "feet"),
  34290. name: "Side",
  34291. image: {
  34292. source: "./media/characters/mauve/side.svg",
  34293. extra: 1089/1001,
  34294. bottom: 29/1118
  34295. }
  34296. },
  34297. back: {
  34298. height: math.unit(3 + 5/12, "feet"),
  34299. name: "Back",
  34300. image: {
  34301. source: "./media/characters/mauve/back.svg",
  34302. extra: 1173/1053,
  34303. bottom: 109/1282
  34304. }
  34305. },
  34306. },
  34307. [
  34308. {
  34309. name: "Normal",
  34310. height: math.unit(3 + 5/12, "feet"),
  34311. default: true
  34312. },
  34313. ]
  34314. ))
  34315. characterMakers.push(() => makeCharacter(
  34316. { name: "Carlos", species: ["foxsky"], tags: ["anthro"] },
  34317. {
  34318. front: {
  34319. height: math.unit(6 + 3/12, "feet"),
  34320. weight: math.unit(430, "lb"),
  34321. name: "Front",
  34322. image: {
  34323. source: "./media/characters/carlos/front.svg",
  34324. extra: 1964/1913,
  34325. bottom: 70/2034
  34326. }
  34327. },
  34328. },
  34329. [
  34330. {
  34331. name: "Normal",
  34332. height: math.unit(6 + 3/12, "feet"),
  34333. default: true
  34334. },
  34335. ]
  34336. ))
  34337. characterMakers.push(() => makeCharacter(
  34338. { name: "Jax", species: ["husky"], tags: ["anthro"] },
  34339. {
  34340. back: {
  34341. height: math.unit(5 + 10/12, "feet"),
  34342. weight: math.unit(200, "lb"),
  34343. name: "Back",
  34344. image: {
  34345. source: "./media/characters/jax/back.svg",
  34346. extra: 764/739,
  34347. bottom: 25/789
  34348. }
  34349. },
  34350. },
  34351. [
  34352. {
  34353. name: "Normal",
  34354. height: math.unit(5 + 10/12, "feet"),
  34355. default: true
  34356. },
  34357. ]
  34358. ))
  34359. characterMakers.push(() => makeCharacter(
  34360. { name: "Eikthynir", species: ["deer"], tags: ["anthro"] },
  34361. {
  34362. front: {
  34363. height: math.unit(8, "feet"),
  34364. weight: math.unit(250, "lb"),
  34365. name: "Front",
  34366. image: {
  34367. source: "./media/characters/eikthynir/front.svg",
  34368. extra: 1332/1166,
  34369. bottom: 82/1414
  34370. }
  34371. },
  34372. back: {
  34373. height: math.unit(8, "feet"),
  34374. weight: math.unit(250, "lb"),
  34375. name: "Back",
  34376. image: {
  34377. source: "./media/characters/eikthynir/back.svg",
  34378. extra: 1342/1190,
  34379. bottom: 19/1361
  34380. }
  34381. },
  34382. dick: {
  34383. height: math.unit(2.35, "feet"),
  34384. name: "Dick",
  34385. image: {
  34386. source: "./media/characters/eikthynir/dick.svg"
  34387. }
  34388. },
  34389. },
  34390. [
  34391. {
  34392. name: "Normal",
  34393. height: math.unit(8, "feet"),
  34394. default: true
  34395. },
  34396. ]
  34397. ))
  34398. characterMakers.push(() => makeCharacter(
  34399. { name: "Zlmos", species: ["dragon"], tags: ["anthro"] },
  34400. {
  34401. front: {
  34402. height: math.unit(99, "meters"),
  34403. weight: math.unit(13000, "tons"),
  34404. name: "Front",
  34405. image: {
  34406. source: "./media/characters/zlmos/front.svg",
  34407. extra: 2202/1992,
  34408. bottom: 315/2517
  34409. }
  34410. },
  34411. },
  34412. [
  34413. {
  34414. name: "Macro",
  34415. height: math.unit(99, "meters"),
  34416. default: true
  34417. },
  34418. ]
  34419. ))
  34420. characterMakers.push(() => makeCharacter(
  34421. { name: "Purri", species: ["cat"], tags: ["anthro"] },
  34422. {
  34423. front: {
  34424. height: math.unit(6 + 5/12, "feet"),
  34425. name: "Front",
  34426. image: {
  34427. source: "./media/characters/purri/front.svg",
  34428. extra: 1698/1610,
  34429. bottom: 32/1730
  34430. }
  34431. },
  34432. frontAlt: {
  34433. height: math.unit(6 + 5/12, "feet"),
  34434. name: "Front (Alt)",
  34435. image: {
  34436. source: "./media/characters/purri/front-alt.svg",
  34437. extra: 450/420,
  34438. bottom: 26/476
  34439. }
  34440. },
  34441. boots: {
  34442. height: math.unit(5.5, "feet"),
  34443. name: "Boots",
  34444. image: {
  34445. source: "./media/characters/purri/boots.svg",
  34446. extra: 905/853,
  34447. bottom: 18/923
  34448. },
  34449. extraAttributes: {
  34450. "shoeSize": {
  34451. name: "Shoe Size",
  34452. power: 1,
  34453. type: "length",
  34454. base: math.unit(12, "ShoeSizeMensUS")
  34455. },
  34456. "platformHeight": {
  34457. name: "Platform Height",
  34458. power: 1,
  34459. type: "length",
  34460. base: math.unit(2, "inches")
  34461. },
  34462. }
  34463. },
  34464. lying: {
  34465. height: math.unit(2, "feet"),
  34466. name: "Lying",
  34467. image: {
  34468. source: "./media/characters/purri/lying.svg",
  34469. extra: 940/843,
  34470. bottom: 146/1086
  34471. }
  34472. },
  34473. devious: {
  34474. height: math.unit(1.77, "feet"),
  34475. name: "Devious",
  34476. image: {
  34477. source: "./media/characters/purri/devious.svg",
  34478. extra: 1440/1155,
  34479. bottom: 147/1587
  34480. }
  34481. },
  34482. bean: {
  34483. height: math.unit(1.94, "feet"),
  34484. name: "Bean",
  34485. image: {
  34486. source: "./media/characters/purri/bean.svg"
  34487. }
  34488. },
  34489. },
  34490. [
  34491. {
  34492. name: "Micro",
  34493. height: math.unit(1, "mm")
  34494. },
  34495. {
  34496. name: "Normal",
  34497. height: math.unit(6 + 5/12, "feet"),
  34498. default: true
  34499. },
  34500. {
  34501. name: "Macro :3c",
  34502. height: math.unit(2, "miles")
  34503. },
  34504. ]
  34505. ))
  34506. characterMakers.push(() => makeCharacter(
  34507. { name: "Moonlight", species: ["umbreon"], tags: ["anthro"] },
  34508. {
  34509. front: {
  34510. height: math.unit(6 + 2/12, "feet"),
  34511. weight: math.unit(250, "lb"),
  34512. name: "Front",
  34513. image: {
  34514. source: "./media/characters/moonlight/front.svg",
  34515. extra: 1044/908,
  34516. bottom: 56/1100
  34517. }
  34518. },
  34519. feral: {
  34520. height: math.unit(3 + 1/12, "feet"),
  34521. weight: math.unit(50, "kg"),
  34522. name: "Feral",
  34523. image: {
  34524. source: "./media/characters/moonlight/feral.svg",
  34525. extra: 3705/2791,
  34526. bottom: 145/3850
  34527. }
  34528. },
  34529. paw: {
  34530. height: math.unit(1, "feet"),
  34531. name: "Paw",
  34532. image: {
  34533. source: "./media/characters/moonlight/paw.svg"
  34534. }
  34535. },
  34536. paws: {
  34537. height: math.unit(0.98, "feet"),
  34538. name: "Paws",
  34539. image: {
  34540. source: "./media/characters/moonlight/paws.svg",
  34541. extra: 939/939,
  34542. bottom: 50/989
  34543. }
  34544. },
  34545. mouth: {
  34546. height: math.unit(0.48, "feet"),
  34547. name: "Mouth",
  34548. image: {
  34549. source: "./media/characters/moonlight/mouth.svg"
  34550. }
  34551. },
  34552. dick: {
  34553. height: math.unit(1.46, "feet"),
  34554. name: "Dick",
  34555. image: {
  34556. source: "./media/characters/moonlight/dick.svg"
  34557. }
  34558. },
  34559. },
  34560. [
  34561. {
  34562. name: "Normal",
  34563. height: math.unit(6 + 2/12, "feet"),
  34564. default: true
  34565. },
  34566. {
  34567. name: "Macro",
  34568. height: math.unit(300, "feet")
  34569. },
  34570. {
  34571. name: "Macro+",
  34572. height: math.unit(1, "mile")
  34573. },
  34574. {
  34575. name: "Mt. Moon",
  34576. height: math.unit(5, "miles")
  34577. },
  34578. {
  34579. name: "Megamacro",
  34580. height: math.unit(15, "miles")
  34581. },
  34582. ]
  34583. ))
  34584. characterMakers.push(() => makeCharacter(
  34585. { name: "Sylen", species: ["wolf"], tags: ["anthro"] },
  34586. {
  34587. back: {
  34588. height: math.unit(6, "feet"),
  34589. weight: math.unit(150, "lb"),
  34590. name: "Back",
  34591. image: {
  34592. source: "./media/characters/sylen/back.svg",
  34593. extra: 1335/1273,
  34594. bottom: 107/1442
  34595. }
  34596. },
  34597. },
  34598. [
  34599. {
  34600. name: "Normal",
  34601. height: math.unit(5 + 5/12, "feet")
  34602. },
  34603. {
  34604. name: "Megamacro",
  34605. height: math.unit(3, "miles"),
  34606. default: true
  34607. },
  34608. ]
  34609. ))
  34610. characterMakers.push(() => makeCharacter(
  34611. { name: "Huttser", species: ["coyote"], tags: ["anthro"] },
  34612. {
  34613. front: {
  34614. height: math.unit(6, "feet"),
  34615. weight: math.unit(190, "lb"),
  34616. name: "Front",
  34617. image: {
  34618. source: "./media/characters/huttser/front.svg",
  34619. extra: 1152/1058,
  34620. bottom: 23/1175
  34621. }
  34622. },
  34623. side: {
  34624. height: math.unit(6, "feet"),
  34625. weight: math.unit(190, "lb"),
  34626. name: "Side",
  34627. image: {
  34628. source: "./media/characters/huttser/side.svg",
  34629. extra: 1174/1065,
  34630. bottom: 18/1192
  34631. }
  34632. },
  34633. back: {
  34634. height: math.unit(6, "feet"),
  34635. weight: math.unit(190, "lb"),
  34636. name: "Back",
  34637. image: {
  34638. source: "./media/characters/huttser/back.svg",
  34639. extra: 1158/1056,
  34640. bottom: 12/1170
  34641. }
  34642. },
  34643. },
  34644. [
  34645. ]
  34646. ))
  34647. characterMakers.push(() => makeCharacter(
  34648. { name: "Faan", species: ["slime-dragon"], tags: ["anthro", "goo"] },
  34649. {
  34650. side: {
  34651. height: math.unit(12 + 9/12, "feet"),
  34652. weight: math.unit(15000, "lb"),
  34653. name: "Side",
  34654. image: {
  34655. source: "./media/characters/faan/side.svg",
  34656. extra: 2747/2697,
  34657. bottom: 0/2747
  34658. }
  34659. },
  34660. front: {
  34661. height: math.unit(12 + 9/12, "feet"),
  34662. weight: math.unit(15000, "lb"),
  34663. name: "Front",
  34664. image: {
  34665. source: "./media/characters/faan/front.svg",
  34666. extra: 607/571,
  34667. bottom: 24/631
  34668. }
  34669. },
  34670. head: {
  34671. height: math.unit(2.85, "feet"),
  34672. name: "Head",
  34673. image: {
  34674. source: "./media/characters/faan/head.svg"
  34675. }
  34676. },
  34677. headAlt: {
  34678. height: math.unit(3.13, "feet"),
  34679. name: "Head-alt",
  34680. image: {
  34681. source: "./media/characters/faan/head-alt.svg"
  34682. }
  34683. },
  34684. },
  34685. [
  34686. {
  34687. name: "Normal",
  34688. height: math.unit(12 + 9/12, "feet"),
  34689. default: true
  34690. },
  34691. ]
  34692. ))
  34693. characterMakers.push(() => makeCharacter(
  34694. { name: "Tanio", species: ["foxsky"], tags: ["anthro"] },
  34695. {
  34696. front: {
  34697. height: math.unit(6, "feet"),
  34698. weight: math.unit(300, "lb"),
  34699. name: "Front",
  34700. image: {
  34701. source: "./media/characters/tanio/front.svg",
  34702. extra: 711/673,
  34703. bottom: 25/736
  34704. }
  34705. },
  34706. },
  34707. [
  34708. {
  34709. name: "Normal",
  34710. height: math.unit(6, "feet"),
  34711. default: true
  34712. },
  34713. ]
  34714. ))
  34715. characterMakers.push(() => makeCharacter(
  34716. { name: "Noboru", species: ["cat"], tags: ["anthro"] },
  34717. {
  34718. front: {
  34719. height: math.unit(3, "inches"),
  34720. name: "Front",
  34721. image: {
  34722. source: "./media/characters/noboru/front.svg",
  34723. extra: 1039/932,
  34724. bottom: 18/1057
  34725. }
  34726. },
  34727. },
  34728. [
  34729. {
  34730. name: "Micro",
  34731. height: math.unit(3, "inches"),
  34732. default: true
  34733. },
  34734. ]
  34735. ))
  34736. characterMakers.push(() => makeCharacter(
  34737. { name: "Daniel Barrett", species: ["wolf"], tags: ["anthro"] },
  34738. {
  34739. front: {
  34740. height: math.unit(1.85, "meters"),
  34741. weight: math.unit(80, "kg"),
  34742. name: "Front",
  34743. image: {
  34744. source: "./media/characters/daniel-barrett/front.svg",
  34745. extra: 355/337,
  34746. bottom: 9/364
  34747. }
  34748. },
  34749. },
  34750. [
  34751. {
  34752. name: "Pico",
  34753. height: math.unit(0.0433, "mm")
  34754. },
  34755. {
  34756. name: "Nano",
  34757. height: math.unit(1.5, "mm")
  34758. },
  34759. {
  34760. name: "Micro",
  34761. height: math.unit(5.3, "cm"),
  34762. default: true
  34763. },
  34764. {
  34765. name: "Normal",
  34766. height: math.unit(1.85, "meters")
  34767. },
  34768. {
  34769. name: "Macro",
  34770. height: math.unit(64.7, "meters")
  34771. },
  34772. {
  34773. name: "Megamacro",
  34774. height: math.unit(2.26, "km")
  34775. },
  34776. {
  34777. name: "Gigamacro",
  34778. height: math.unit(79, "km")
  34779. },
  34780. {
  34781. name: "Teramacro",
  34782. height: math.unit(2765, "km")
  34783. },
  34784. {
  34785. name: "Petamacro",
  34786. height: math.unit(96678, "km")
  34787. },
  34788. ]
  34789. ))
  34790. characterMakers.push(() => makeCharacter(
  34791. { name: "Zeel", species: ["kobold", "raptor"], tags: ["anthro"] },
  34792. {
  34793. front: {
  34794. height: math.unit(30, "meters"),
  34795. weight: math.unit(400, "tons"),
  34796. name: "Front",
  34797. image: {
  34798. source: "./media/characters/zeel/front.svg",
  34799. extra: 2599/2599,
  34800. bottom: 226/2825
  34801. }
  34802. },
  34803. },
  34804. [
  34805. {
  34806. name: "Macro",
  34807. height: math.unit(30, "meters"),
  34808. default: true
  34809. },
  34810. ]
  34811. ))
  34812. characterMakers.push(() => makeCharacter(
  34813. { name: "Tarn", species: ["wolf"], tags: ["anthro"] },
  34814. {
  34815. front: {
  34816. height: math.unit(6 + 7/12, "feet"),
  34817. weight: math.unit(210, "lb"),
  34818. name: "Front",
  34819. image: {
  34820. source: "./media/characters/tarn/front.svg",
  34821. extra: 3517/3220,
  34822. bottom: 91/3608
  34823. }
  34824. },
  34825. back: {
  34826. height: math.unit(6 + 7/12, "feet"),
  34827. weight: math.unit(210, "lb"),
  34828. name: "Back",
  34829. image: {
  34830. source: "./media/characters/tarn/back.svg",
  34831. extra: 3566/3241,
  34832. bottom: 34/3600
  34833. }
  34834. },
  34835. dick: {
  34836. height: math.unit(1.65, "feet"),
  34837. name: "Dick",
  34838. image: {
  34839. source: "./media/characters/tarn/dick.svg"
  34840. }
  34841. },
  34842. paw: {
  34843. height: math.unit(1.80, "feet"),
  34844. name: "Paw",
  34845. image: {
  34846. source: "./media/characters/tarn/paw.svg"
  34847. }
  34848. },
  34849. tongue: {
  34850. height: math.unit(0.97, "feet"),
  34851. name: "Tongue",
  34852. image: {
  34853. source: "./media/characters/tarn/tongue.svg"
  34854. }
  34855. },
  34856. },
  34857. [
  34858. {
  34859. name: "Micro",
  34860. height: math.unit(4, "inches")
  34861. },
  34862. {
  34863. name: "Normal",
  34864. height: math.unit(6 + 7/12, "feet"),
  34865. default: true
  34866. },
  34867. {
  34868. name: "Macro",
  34869. height: math.unit(300, "feet")
  34870. },
  34871. ]
  34872. ))
  34873. characterMakers.push(() => makeCharacter(
  34874. { name: "Leonidas \"Leon\" Nisitalia", species: ["cat"], tags: ["anthro"] },
  34875. {
  34876. front: {
  34877. height: math.unit(5 + 7/12, "feet"),
  34878. weight: math.unit(80, "kg"),
  34879. name: "Front",
  34880. image: {
  34881. source: "./media/characters/leonidas-leon-nisitalia/front.svg",
  34882. extra: 3023/2865,
  34883. bottom: 33/3056
  34884. }
  34885. },
  34886. back: {
  34887. height: math.unit(5 + 7/12, "feet"),
  34888. weight: math.unit(80, "kg"),
  34889. name: "Back",
  34890. image: {
  34891. source: "./media/characters/leonidas-leon-nisitalia/back.svg",
  34892. extra: 3020/2886,
  34893. bottom: 30/3050
  34894. }
  34895. },
  34896. dick: {
  34897. height: math.unit(0.98, "feet"),
  34898. name: "Dick",
  34899. image: {
  34900. source: "./media/characters/leonidas-leon-nisitalia/dick.svg"
  34901. }
  34902. },
  34903. anatomy: {
  34904. height: math.unit(2.86, "feet"),
  34905. name: "Anatomy",
  34906. image: {
  34907. source: "./media/characters/leonidas-leon-nisitalia/anatomy.svg"
  34908. }
  34909. },
  34910. },
  34911. [
  34912. {
  34913. name: "Really Small",
  34914. height: math.unit(2, "inches")
  34915. },
  34916. {
  34917. name: "Micro",
  34918. height: math.unit(5.583, "inches")
  34919. },
  34920. {
  34921. name: "Normal",
  34922. height: math.unit(5 + 7/12, "feet"),
  34923. default: true
  34924. },
  34925. {
  34926. name: "Macro",
  34927. height: math.unit(67, "feet")
  34928. },
  34929. {
  34930. name: "Megamacro",
  34931. height: math.unit(134, "feet")
  34932. },
  34933. ]
  34934. ))
  34935. characterMakers.push(() => makeCharacter(
  34936. { name: "Sally", species: ["enderman"], tags: ["anthro"] },
  34937. {
  34938. front: {
  34939. height: math.unit(9, "feet"),
  34940. weight: math.unit(120, "lb"),
  34941. name: "Front",
  34942. image: {
  34943. source: "./media/characters/sally/front.svg",
  34944. extra: 1506/1349,
  34945. bottom: 66/1572
  34946. }
  34947. },
  34948. },
  34949. [
  34950. {
  34951. name: "Normal",
  34952. height: math.unit(9, "feet"),
  34953. default: true
  34954. },
  34955. ]
  34956. ))
  34957. characterMakers.push(() => makeCharacter(
  34958. { name: "Owen", species: ["bear"], tags: ["anthro"] },
  34959. {
  34960. front: {
  34961. height: math.unit(8, "feet"),
  34962. weight: math.unit(900, "lb"),
  34963. name: "Front",
  34964. image: {
  34965. source: "./media/characters/owen/front.svg",
  34966. extra: 1761/1657,
  34967. bottom: 74/1835
  34968. }
  34969. },
  34970. side: {
  34971. height: math.unit(8, "feet"),
  34972. weight: math.unit(900, "lb"),
  34973. name: "Side",
  34974. image: {
  34975. source: "./media/characters/owen/side.svg",
  34976. extra: 1797/1734,
  34977. bottom: 30/1827
  34978. }
  34979. },
  34980. back: {
  34981. height: math.unit(8, "feet"),
  34982. weight: math.unit(900, "lb"),
  34983. name: "Back",
  34984. image: {
  34985. source: "./media/characters/owen/back.svg",
  34986. extra: 1796/1706,
  34987. bottom: 59/1855
  34988. }
  34989. },
  34990. maw: {
  34991. height: math.unit(1.76, "feet"),
  34992. name: "Maw",
  34993. image: {
  34994. source: "./media/characters/owen/maw.svg"
  34995. }
  34996. },
  34997. },
  34998. [
  34999. {
  35000. name: "Normal",
  35001. height: math.unit(8, "feet"),
  35002. default: true
  35003. },
  35004. ]
  35005. ))
  35006. characterMakers.push(() => makeCharacter(
  35007. { name: "Ryth", species: ["gremlin", "zorgoia"], tags: ["anthro", "feral"] },
  35008. {
  35009. front: {
  35010. height: math.unit(4, "feet"),
  35011. weight: math.unit(400, "lb"),
  35012. name: "Front",
  35013. image: {
  35014. source: "./media/characters/ryth/front.svg",
  35015. extra: 1920/1748,
  35016. bottom: 42/1962
  35017. }
  35018. },
  35019. back: {
  35020. height: math.unit(4, "feet"),
  35021. weight: math.unit(400, "lb"),
  35022. name: "Back",
  35023. image: {
  35024. source: "./media/characters/ryth/back.svg",
  35025. extra: 1897/1690,
  35026. bottom: 89/1986
  35027. }
  35028. },
  35029. mouth: {
  35030. height: math.unit(1.39, "feet"),
  35031. name: "Mouth",
  35032. image: {
  35033. source: "./media/characters/ryth/mouth.svg"
  35034. }
  35035. },
  35036. tailmaw: {
  35037. height: math.unit(1.23, "feet"),
  35038. name: "Tailmaw",
  35039. image: {
  35040. source: "./media/characters/ryth/tailmaw.svg"
  35041. }
  35042. },
  35043. goia: {
  35044. height: math.unit(4, "meters"),
  35045. weight: math.unit(10800, "lb"),
  35046. name: "Goia",
  35047. image: {
  35048. source: "./media/characters/ryth/goia.svg",
  35049. extra: 745/640,
  35050. bottom: 107/852
  35051. }
  35052. },
  35053. goiaFront: {
  35054. height: math.unit(4, "meters"),
  35055. weight: math.unit(10800, "lb"),
  35056. name: "Goia (Front)",
  35057. image: {
  35058. source: "./media/characters/ryth/goia-front.svg",
  35059. extra: 750/586,
  35060. bottom: 114/864
  35061. }
  35062. },
  35063. goiaMaw: {
  35064. height: math.unit(5.55, "feet"),
  35065. name: "Goia Maw",
  35066. image: {
  35067. source: "./media/characters/ryth/goia-maw.svg"
  35068. }
  35069. },
  35070. goiaForepaw: {
  35071. height: math.unit(3.5, "feet"),
  35072. name: "Goia Forepaw",
  35073. image: {
  35074. source: "./media/characters/ryth/goia-forepaw.svg"
  35075. }
  35076. },
  35077. goiaHindpaw: {
  35078. height: math.unit(5.55, "feet"),
  35079. name: "Goia Hindpaw",
  35080. image: {
  35081. source: "./media/characters/ryth/goia-hindpaw.svg"
  35082. }
  35083. },
  35084. },
  35085. [
  35086. {
  35087. name: "Normal",
  35088. height: math.unit(4, "feet"),
  35089. default: true
  35090. },
  35091. ]
  35092. ))
  35093. characterMakers.push(() => makeCharacter(
  35094. { name: "Necrolance", species: ["dragonsune"], tags: ["anthro"] },
  35095. {
  35096. front: {
  35097. height: math.unit(7, "feet"),
  35098. weight: math.unit(180, "lb"),
  35099. name: "Front",
  35100. image: {
  35101. source: "./media/characters/necrolance/front.svg",
  35102. extra: 1062/947,
  35103. bottom: 41/1103
  35104. }
  35105. },
  35106. back: {
  35107. height: math.unit(7, "feet"),
  35108. weight: math.unit(180, "lb"),
  35109. name: "Back",
  35110. image: {
  35111. source: "./media/characters/necrolance/back.svg",
  35112. extra: 1045/984,
  35113. bottom: 14/1059
  35114. }
  35115. },
  35116. wing: {
  35117. height: math.unit(2.67, "feet"),
  35118. name: "Wing",
  35119. image: {
  35120. source: "./media/characters/necrolance/wing.svg"
  35121. }
  35122. },
  35123. },
  35124. [
  35125. {
  35126. name: "Normal",
  35127. height: math.unit(7, "feet"),
  35128. default: true
  35129. },
  35130. ]
  35131. ))
  35132. characterMakers.push(() => makeCharacter(
  35133. { name: "Tyler", species: ["naga"], tags: ["naga"] },
  35134. {
  35135. front: {
  35136. height: math.unit(76, "meters"),
  35137. weight: math.unit(30000, "tons"),
  35138. name: "Front",
  35139. image: {
  35140. source: "./media/characters/tyler/front.svg",
  35141. extra: 1640/1640,
  35142. bottom: 114/1754
  35143. }
  35144. },
  35145. },
  35146. [
  35147. {
  35148. name: "Macro",
  35149. height: math.unit(76, "meters"),
  35150. default: true
  35151. },
  35152. ]
  35153. ))
  35154. characterMakers.push(() => makeCharacter(
  35155. { name: "Icey", species: ["cat"], tags: ["anthro"] },
  35156. {
  35157. front: {
  35158. height: math.unit(4 + 11/12, "feet"),
  35159. weight: math.unit(132, "lb"),
  35160. name: "Front",
  35161. image: {
  35162. source: "./media/characters/icey/front.svg",
  35163. extra: 2750/2550,
  35164. bottom: 33/2783
  35165. }
  35166. },
  35167. back: {
  35168. height: math.unit(4 + 11/12, "feet"),
  35169. weight: math.unit(132, "lb"),
  35170. name: "Back",
  35171. image: {
  35172. source: "./media/characters/icey/back.svg",
  35173. extra: 2624/2481,
  35174. bottom: 35/2659
  35175. }
  35176. },
  35177. },
  35178. [
  35179. {
  35180. name: "Normal",
  35181. height: math.unit(4 + 11/12, "feet"),
  35182. default: true
  35183. },
  35184. ]
  35185. ))
  35186. characterMakers.push(() => makeCharacter(
  35187. { name: "Smile", species: ["skunk", "ghost"], tags: ["anthro"] },
  35188. {
  35189. front: {
  35190. height: math.unit(100, "feet"),
  35191. weight: math.unit(0, "lb"),
  35192. name: "Front",
  35193. image: {
  35194. source: "./media/characters/smile/front.svg",
  35195. extra: 2983/2912,
  35196. bottom: 162/3145
  35197. }
  35198. },
  35199. back: {
  35200. height: math.unit(100, "feet"),
  35201. weight: math.unit(0, "lb"),
  35202. name: "Back",
  35203. image: {
  35204. source: "./media/characters/smile/back.svg",
  35205. extra: 3143/3031,
  35206. bottom: 91/3234
  35207. }
  35208. },
  35209. head: {
  35210. height: math.unit(26.3, "feet"),
  35211. weight: math.unit(0, "lb"),
  35212. name: "Head",
  35213. image: {
  35214. source: "./media/characters/smile/head.svg"
  35215. }
  35216. },
  35217. collar: {
  35218. height: math.unit(5.3, "feet"),
  35219. weight: math.unit(0, "lb"),
  35220. name: "Collar",
  35221. image: {
  35222. source: "./media/characters/smile/collar.svg"
  35223. }
  35224. },
  35225. },
  35226. [
  35227. {
  35228. name: "Macro",
  35229. height: math.unit(100, "feet"),
  35230. default: true
  35231. },
  35232. ]
  35233. ))
  35234. characterMakers.push(() => makeCharacter(
  35235. { name: "Arimphae", species: ["dragon"], tags: ["feral"] },
  35236. {
  35237. dragon: {
  35238. height: math.unit(26, "feet"),
  35239. weight: math.unit(36, "tons"),
  35240. name: "Dragon",
  35241. image: {
  35242. source: "./media/characters/arimphae/dragon.svg",
  35243. extra: 1574/983,
  35244. bottom: 357/1931
  35245. }
  35246. },
  35247. drake: {
  35248. height: math.unit(9, "feet"),
  35249. weight: math.unit(1.5, "tons"),
  35250. name: "Drake",
  35251. image: {
  35252. source: "./media/characters/arimphae/drake.svg",
  35253. extra: 1120/925,
  35254. bottom: 435/1555
  35255. }
  35256. },
  35257. },
  35258. [
  35259. {
  35260. name: "Small",
  35261. height: math.unit(26*5/9, "feet")
  35262. },
  35263. {
  35264. name: "Normal",
  35265. height: math.unit(26, "feet"),
  35266. default: true
  35267. },
  35268. ]
  35269. ))
  35270. characterMakers.push(() => makeCharacter(
  35271. { name: "Xander", species: ["false-vampire-bat"], tags: ["anthro"] },
  35272. {
  35273. front: {
  35274. height: math.unit(8 + 9/12, "feet"),
  35275. name: "Front",
  35276. image: {
  35277. source: "./media/characters/xander/front.svg",
  35278. extra: 1237/974,
  35279. bottom: 94/1331
  35280. }
  35281. },
  35282. },
  35283. [
  35284. {
  35285. name: "Normal",
  35286. height: math.unit(8 + 9/12, "feet"),
  35287. default: true
  35288. },
  35289. {
  35290. name: "Gaze Grabber",
  35291. height: math.unit(13 + 8/12, "feet")
  35292. },
  35293. {
  35294. name: "Jaw Dropper",
  35295. height: math.unit(27, "feet")
  35296. },
  35297. {
  35298. name: "Show Stopper",
  35299. height: math.unit(136, "feet")
  35300. },
  35301. {
  35302. name: "Superstar",
  35303. height: math.unit(1.9e6, "miles")
  35304. },
  35305. ]
  35306. ))
  35307. characterMakers.push(() => makeCharacter(
  35308. { name: "Osiris", species: ["plush", "dragon"], tags: ["feral"] },
  35309. {
  35310. side: {
  35311. height: math.unit(2100, "feet"),
  35312. name: "Side",
  35313. image: {
  35314. source: "./media/characters/osiris/side.svg",
  35315. extra: 1105/939,
  35316. bottom: 167/1272
  35317. }
  35318. },
  35319. },
  35320. [
  35321. {
  35322. name: "Macro",
  35323. height: math.unit(2100, "feet"),
  35324. default: true
  35325. },
  35326. ]
  35327. ))
  35328. characterMakers.push(() => makeCharacter(
  35329. { name: "Rhys Londe", species: ["dragon"], tags: ["anthro"] },
  35330. {
  35331. front: {
  35332. height: math.unit(6 + 8/12, "feet"),
  35333. weight: math.unit(225, "lb"),
  35334. name: "Front",
  35335. image: {
  35336. source: "./media/characters/rhys-londe/front.svg",
  35337. extra: 2258/2141,
  35338. bottom: 188/2446
  35339. }
  35340. },
  35341. back: {
  35342. height: math.unit(6 + 8/12, "feet"),
  35343. weight: math.unit(225, "lb"),
  35344. name: "Back",
  35345. image: {
  35346. source: "./media/characters/rhys-londe/back.svg",
  35347. extra: 2237/2137,
  35348. bottom: 63/2300
  35349. }
  35350. },
  35351. frontNsfw: {
  35352. height: math.unit(6 + 8/12, "feet"),
  35353. weight: math.unit(225, "lb"),
  35354. name: "Front (NSFW)",
  35355. image: {
  35356. source: "./media/characters/rhys-londe/front-nsfw.svg",
  35357. extra: 2258/2141,
  35358. bottom: 188/2446
  35359. }
  35360. },
  35361. backNsfw: {
  35362. height: math.unit(6 + 8/12, "feet"),
  35363. weight: math.unit(225, "lb"),
  35364. name: "Back (NSFW)",
  35365. image: {
  35366. source: "./media/characters/rhys-londe/back-nsfw.svg",
  35367. extra: 2237/2137,
  35368. bottom: 63/2300
  35369. }
  35370. },
  35371. dick: {
  35372. height: math.unit(30, "inches"),
  35373. name: "Dick",
  35374. image: {
  35375. source: "./media/characters/rhys-londe/dick.svg"
  35376. }
  35377. },
  35378. maw: {
  35379. height: math.unit(1.6, "feet"),
  35380. name: "Maw",
  35381. image: {
  35382. source: "./media/characters/rhys-londe/maw.svg"
  35383. }
  35384. },
  35385. },
  35386. [
  35387. {
  35388. name: "Normal",
  35389. height: math.unit(6 + 8/12, "feet"),
  35390. default: true
  35391. },
  35392. ]
  35393. ))
  35394. characterMakers.push(() => makeCharacter(
  35395. { name: "Taivas Ensim", species: ["kobold"], tags: ["anthro"] },
  35396. {
  35397. front: {
  35398. height: math.unit(3 + 10/12, "feet"),
  35399. weight: math.unit(90, "lb"),
  35400. name: "Front",
  35401. image: {
  35402. source: "./media/characters/taivas-ensim/front.svg",
  35403. extra: 1327/1216,
  35404. bottom: 96/1423
  35405. }
  35406. },
  35407. back: {
  35408. height: math.unit(3 + 10/12, "feet"),
  35409. weight: math.unit(90, "lb"),
  35410. name: "Back",
  35411. image: {
  35412. source: "./media/characters/taivas-ensim/back.svg",
  35413. extra: 1355/1247,
  35414. bottom: 11/1366
  35415. }
  35416. },
  35417. frontNsfw: {
  35418. height: math.unit(3 + 10/12, "feet"),
  35419. weight: math.unit(90, "lb"),
  35420. name: "Front (NSFW)",
  35421. image: {
  35422. source: "./media/characters/taivas-ensim/front-nsfw.svg",
  35423. extra: 1327/1216,
  35424. bottom: 96/1423
  35425. }
  35426. },
  35427. backNsfw: {
  35428. height: math.unit(3 + 10/12, "feet"),
  35429. weight: math.unit(90, "lb"),
  35430. name: "Back (NSFW)",
  35431. image: {
  35432. source: "./media/characters/taivas-ensim/back-nsfw.svg",
  35433. extra: 1355/1247,
  35434. bottom: 11/1366
  35435. }
  35436. },
  35437. },
  35438. [
  35439. {
  35440. name: "Normal",
  35441. height: math.unit(3 + 10/12, "feet"),
  35442. default: true
  35443. },
  35444. ]
  35445. ))
  35446. characterMakers.push(() => makeCharacter(
  35447. { name: "Byliss", species: ["dragon", "succubus"], tags: ["anthro"] },
  35448. {
  35449. front: {
  35450. height: math.unit(9 + 6/12, "feet"),
  35451. weight: math.unit(940, "lb"),
  35452. name: "Front",
  35453. image: {
  35454. source: "./media/characters/byliss/front.svg",
  35455. extra: 1327/1290,
  35456. bottom: 82/1409
  35457. }
  35458. },
  35459. back: {
  35460. height: math.unit(9 + 6/12, "feet"),
  35461. weight: math.unit(940, "lb"),
  35462. name: "Back",
  35463. image: {
  35464. source: "./media/characters/byliss/back.svg",
  35465. extra: 1376/1349,
  35466. bottom: 9/1385
  35467. }
  35468. },
  35469. frontNsfw: {
  35470. height: math.unit(9 + 6/12, "feet"),
  35471. weight: math.unit(940, "lb"),
  35472. name: "Front (NSFW)",
  35473. image: {
  35474. source: "./media/characters/byliss/front-nsfw.svg",
  35475. extra: 1327/1290,
  35476. bottom: 82/1409
  35477. }
  35478. },
  35479. backNsfw: {
  35480. height: math.unit(9 + 6/12, "feet"),
  35481. weight: math.unit(940, "lb"),
  35482. name: "Back (NSFW)",
  35483. image: {
  35484. source: "./media/characters/byliss/back-nsfw.svg",
  35485. extra: 1376/1349,
  35486. bottom: 9/1385
  35487. }
  35488. },
  35489. },
  35490. [
  35491. {
  35492. name: "Normal",
  35493. height: math.unit(9 + 6/12, "feet"),
  35494. default: true
  35495. },
  35496. ]
  35497. ))
  35498. characterMakers.push(() => makeCharacter(
  35499. { name: "Noraly", species: ["mia"], tags: ["anthro"] },
  35500. {
  35501. front: {
  35502. height: math.unit(5 + 2/12, "feet"),
  35503. weight: math.unit(200, "lb"),
  35504. name: "Front",
  35505. image: {
  35506. source: "./media/characters/noraly/front.svg",
  35507. extra: 4985/4773,
  35508. bottom: 150/5135
  35509. }
  35510. },
  35511. full: {
  35512. height: math.unit(5 + 2/12, "feet"),
  35513. weight: math.unit(164, "lb"),
  35514. name: "Full",
  35515. image: {
  35516. source: "./media/characters/noraly/full.svg",
  35517. extra: 1114/1059,
  35518. bottom: 35/1149
  35519. }
  35520. },
  35521. fuller: {
  35522. height: math.unit(5 + 2/12, "feet"),
  35523. weight: math.unit(230, "lb"),
  35524. name: "Fuller",
  35525. image: {
  35526. source: "./media/characters/noraly/fuller.svg",
  35527. extra: 1114/1059,
  35528. bottom: 35/1149
  35529. }
  35530. },
  35531. fullest: {
  35532. height: math.unit(5 + 2/12, "feet"),
  35533. weight: math.unit(300, "lb"),
  35534. name: "Fullest",
  35535. image: {
  35536. source: "./media/characters/noraly/fullest.svg",
  35537. extra: 1114/1059,
  35538. bottom: 35/1149
  35539. }
  35540. },
  35541. },
  35542. [
  35543. {
  35544. name: "Normal",
  35545. height: math.unit(5 + 2/12, "feet"),
  35546. default: true
  35547. },
  35548. ]
  35549. ))
  35550. characterMakers.push(() => makeCharacter(
  35551. { name: "Pera", species: ["snake"], tags: ["naga"] },
  35552. {
  35553. front: {
  35554. height: math.unit(5 + 2/12, "feet"),
  35555. weight: math.unit(210, "lb"),
  35556. name: "Front",
  35557. image: {
  35558. source: "./media/characters/pera/front.svg",
  35559. extra: 1560/1531,
  35560. bottom: 165/1725
  35561. }
  35562. },
  35563. back: {
  35564. height: math.unit(5 + 2/12, "feet"),
  35565. weight: math.unit(210, "lb"),
  35566. name: "Back",
  35567. image: {
  35568. source: "./media/characters/pera/back.svg",
  35569. extra: 1523/1493,
  35570. bottom: 152/1675
  35571. }
  35572. },
  35573. dick: {
  35574. height: math.unit(2.4, "feet"),
  35575. name: "Dick",
  35576. image: {
  35577. source: "./media/characters/pera/dick.svg"
  35578. }
  35579. },
  35580. },
  35581. [
  35582. {
  35583. name: "Normal",
  35584. height: math.unit(5 + 2/12, "feet"),
  35585. default: true
  35586. },
  35587. ]
  35588. ))
  35589. characterMakers.push(() => makeCharacter(
  35590. { name: "Julian", species: ["rainbow"], tags: ["anthro"] },
  35591. {
  35592. front: {
  35593. height: math.unit(12, "feet"),
  35594. weight: math.unit(3200, "lb"),
  35595. name: "Front",
  35596. image: {
  35597. source: "./media/characters/julian/front.svg",
  35598. extra: 2962/2701,
  35599. bottom: 184/3146
  35600. }
  35601. },
  35602. maw: {
  35603. height: math.unit(5.35, "feet"),
  35604. name: "Maw",
  35605. image: {
  35606. source: "./media/characters/julian/maw.svg"
  35607. }
  35608. },
  35609. paw: {
  35610. height: math.unit(3.07, "feet"),
  35611. name: "Paw",
  35612. image: {
  35613. source: "./media/characters/julian/paw.svg"
  35614. }
  35615. },
  35616. },
  35617. [
  35618. {
  35619. name: "Default",
  35620. height: math.unit(12, "feet"),
  35621. default: true
  35622. },
  35623. {
  35624. name: "Big",
  35625. height: math.unit(50, "feet")
  35626. },
  35627. {
  35628. name: "Really Big",
  35629. height: math.unit(1, "mile")
  35630. },
  35631. {
  35632. name: "Extremely Big",
  35633. height: math.unit(100, "miles")
  35634. },
  35635. {
  35636. name: "Planet Hugger",
  35637. height: math.unit(200, "megameters")
  35638. },
  35639. {
  35640. name: "Unreasonably Big",
  35641. height: math.unit(1e300, "meters")
  35642. },
  35643. ]
  35644. ))
  35645. characterMakers.push(() => makeCharacter(
  35646. { name: "Pi", species: ["solgaleo"], tags: ["anthro", "goo"] },
  35647. {
  35648. solgooleo: {
  35649. height: math.unit(4, "meters"),
  35650. weight: math.unit(6000*1.5, "kg"),
  35651. volume: math.unit(6000, "liters"),
  35652. name: "Solgooleo",
  35653. image: {
  35654. source: "./media/characters/pi/solgooleo.svg",
  35655. extra: 388/331,
  35656. bottom: 29/417
  35657. }
  35658. },
  35659. },
  35660. [
  35661. {
  35662. name: "Normal",
  35663. height: math.unit(4, "meters"),
  35664. default: true
  35665. },
  35666. ]
  35667. ))
  35668. characterMakers.push(() => makeCharacter(
  35669. { name: "Shaun", species: ["dragon"], tags: ["anthro"] },
  35670. {
  35671. front: {
  35672. height: math.unit(8, "feet"),
  35673. weight: math.unit(4, "tons"),
  35674. name: "Front",
  35675. image: {
  35676. source: "./media/characters/shaun/front.svg",
  35677. extra: 503/495,
  35678. bottom: 20/523
  35679. }
  35680. },
  35681. back: {
  35682. height: math.unit(8, "feet"),
  35683. weight: math.unit(4, "tons"),
  35684. name: "Back",
  35685. image: {
  35686. source: "./media/characters/shaun/back.svg",
  35687. extra: 487/480,
  35688. bottom: 20/507
  35689. }
  35690. },
  35691. },
  35692. [
  35693. {
  35694. name: "Lorg",
  35695. height: math.unit(8, "feet"),
  35696. default: true
  35697. },
  35698. ]
  35699. ))
  35700. characterMakers.push(() => makeCharacter(
  35701. { name: "Sini", species: ["dragon"], tags: ["anthro", "feral"] },
  35702. {
  35703. frontAnthro: {
  35704. height: math.unit(7, "feet"),
  35705. name: "Front",
  35706. image: {
  35707. source: "./media/characters/sini/front-anthro.svg",
  35708. extra: 726/678,
  35709. bottom: 35/761
  35710. },
  35711. form: "anthro",
  35712. default: true
  35713. },
  35714. backAnthro: {
  35715. height: math.unit(7, "feet"),
  35716. name: "Back",
  35717. image: {
  35718. source: "./media/characters/sini/back-anthro.svg",
  35719. extra: 743/701,
  35720. bottom: 12/755
  35721. },
  35722. form: "anthro",
  35723. },
  35724. frontAnthroNsfw: {
  35725. height: math.unit(7, "feet"),
  35726. name: "Front (NSFW)",
  35727. image: {
  35728. source: "./media/characters/sini/front-anthro-nsfw.svg",
  35729. extra: 726/678,
  35730. bottom: 35/761
  35731. },
  35732. form: "anthro"
  35733. },
  35734. backAnthroNsfw: {
  35735. height: math.unit(7, "feet"),
  35736. name: "Back (NSFW)",
  35737. image: {
  35738. source: "./media/characters/sini/back-anthro-nsfw.svg",
  35739. extra: 743/701,
  35740. bottom: 12/755
  35741. },
  35742. form: "anthro",
  35743. },
  35744. mawAnthro: {
  35745. height: math.unit(2.14, "feet"),
  35746. name: "Maw",
  35747. image: {
  35748. source: "./media/characters/sini/maw-anthro.svg"
  35749. },
  35750. form: "anthro"
  35751. },
  35752. dick: {
  35753. height: math.unit(1.45, "feet"),
  35754. name: "Dick",
  35755. image: {
  35756. source: "./media/characters/sini/dick-anthro.svg"
  35757. },
  35758. form: "anthro"
  35759. },
  35760. feral: {
  35761. height: math.unit(16, "feet"),
  35762. name: "Feral",
  35763. image: {
  35764. source: "./media/characters/sini/feral.svg",
  35765. extra: 814/605,
  35766. bottom: 11/825
  35767. },
  35768. form: "feral",
  35769. default: true
  35770. },
  35771. feralNsfw: {
  35772. height: math.unit(16, "feet"),
  35773. name: "Feral (NSFW)",
  35774. image: {
  35775. source: "./media/characters/sini/feral-nsfw.svg",
  35776. extra: 814/605,
  35777. bottom: 11/825
  35778. },
  35779. form: "feral"
  35780. },
  35781. mawFeral: {
  35782. height: math.unit(5.66, "feet"),
  35783. name: "Maw",
  35784. image: {
  35785. source: "./media/characters/sini/maw-feral.svg"
  35786. },
  35787. form: "feral",
  35788. },
  35789. pawFeral: {
  35790. height: math.unit(5.17, "feet"),
  35791. name: "Paw",
  35792. image: {
  35793. source: "./media/characters/sini/paw-feral.svg"
  35794. },
  35795. form: "feral",
  35796. },
  35797. rumpFeral: {
  35798. height: math.unit(13.11, "feet"),
  35799. name: "Rump",
  35800. image: {
  35801. source: "./media/characters/sini/rump-feral.svg"
  35802. },
  35803. form: "feral",
  35804. },
  35805. dickFeral: {
  35806. height: math.unit(1, "feet"),
  35807. name: "Dick",
  35808. image: {
  35809. source: "./media/characters/sini/dick-feral.svg"
  35810. },
  35811. form: "feral",
  35812. },
  35813. eyeFeral: {
  35814. height: math.unit(1.23, "feet"),
  35815. name: "Eye",
  35816. image: {
  35817. source: "./media/characters/sini/eye-feral.svg"
  35818. },
  35819. form: "feral",
  35820. },
  35821. },
  35822. [
  35823. {
  35824. name: "Normal",
  35825. height: math.unit(7, "feet"),
  35826. default: true,
  35827. form: "anthro"
  35828. },
  35829. {
  35830. name: "Normal",
  35831. height: math.unit(16, "feet"),
  35832. default: true,
  35833. form: "feral"
  35834. },
  35835. ],
  35836. {
  35837. "anthro": {
  35838. name: "Anthro",
  35839. default: true
  35840. },
  35841. "feral": {
  35842. name: "Feral",
  35843. }
  35844. }
  35845. ))
  35846. characterMakers.push(() => makeCharacter(
  35847. { name: "Raylldo", species: ["dragon"], tags: ["feral"] },
  35848. {
  35849. side: {
  35850. height: math.unit(47.2, "meters"),
  35851. weight: math.unit(10000, "tons"),
  35852. name: "Side",
  35853. image: {
  35854. source: "./media/characters/raylldo/side.svg",
  35855. extra: 2363/642,
  35856. bottom: 221/2584
  35857. }
  35858. },
  35859. top: {
  35860. height: math.unit(240, "meters"),
  35861. weight: math.unit(10000, "tons"),
  35862. name: "Top",
  35863. image: {
  35864. source: "./media/characters/raylldo/top.svg"
  35865. }
  35866. },
  35867. bottom: {
  35868. height: math.unit(240, "meters"),
  35869. weight: math.unit(10000, "tons"),
  35870. name: "Bottom",
  35871. image: {
  35872. source: "./media/characters/raylldo/bottom.svg"
  35873. }
  35874. },
  35875. head: {
  35876. height: math.unit(38.6, "meters"),
  35877. name: "Head",
  35878. image: {
  35879. source: "./media/characters/raylldo/head.svg",
  35880. extra: 1335/1112,
  35881. bottom: 0/1335
  35882. }
  35883. },
  35884. maw: {
  35885. height: math.unit(16.37, "meters"),
  35886. name: "Maw",
  35887. image: {
  35888. source: "./media/characters/raylldo/maw.svg",
  35889. extra: 883/660,
  35890. bottom: 0/883
  35891. },
  35892. extraAttributes: {
  35893. preyCapacity: {
  35894. name: "Capacity",
  35895. power: 3,
  35896. type: "volume",
  35897. base: math.unit(1000, "people")
  35898. },
  35899. tongueSize: {
  35900. name: "Tongue Size",
  35901. power: 2,
  35902. type: "area",
  35903. base: math.unit(21, "m^2")
  35904. }
  35905. }
  35906. },
  35907. forepaw: {
  35908. height: math.unit(18, "meters"),
  35909. name: "Forepaw",
  35910. image: {
  35911. source: "./media/characters/raylldo/forepaw.svg"
  35912. }
  35913. },
  35914. hindpaw: {
  35915. height: math.unit(23, "meters"),
  35916. name: "Hindpaw",
  35917. image: {
  35918. source: "./media/characters/raylldo/hindpaw.svg"
  35919. }
  35920. },
  35921. genitals: {
  35922. height: math.unit(42, "meters"),
  35923. name: "Genitals",
  35924. image: {
  35925. source: "./media/characters/raylldo/genitals.svg"
  35926. }
  35927. },
  35928. },
  35929. [
  35930. {
  35931. name: "Normal",
  35932. height: math.unit(47.2, "meters"),
  35933. default: true
  35934. },
  35935. ]
  35936. ))
  35937. characterMakers.push(() => makeCharacter(
  35938. { name: "Glint", species: ["lucent-nargacuga"], tags: ["anthro", "feral"] },
  35939. {
  35940. anthroFront: {
  35941. height: math.unit(9, "feet"),
  35942. weight: math.unit(600, "lb"),
  35943. name: "Anthro (Front)",
  35944. image: {
  35945. source: "./media/characters/glint/anthro-front.svg",
  35946. extra: 1097/1018,
  35947. bottom: 28/1125
  35948. }
  35949. },
  35950. anthroBack: {
  35951. height: math.unit(9, "feet"),
  35952. weight: math.unit(600, "lb"),
  35953. name: "Anthro (Back)",
  35954. image: {
  35955. source: "./media/characters/glint/anthro-back.svg",
  35956. extra: 1154/997,
  35957. bottom: 36/1190
  35958. }
  35959. },
  35960. feral: {
  35961. height: math.unit(11, "feet"),
  35962. weight: math.unit(50000, "lb"),
  35963. name: "Feral",
  35964. image: {
  35965. source: "./media/characters/glint/feral.svg",
  35966. extra: 3035/1585,
  35967. bottom: 1169/4204
  35968. }
  35969. },
  35970. dickAnthro: {
  35971. height: math.unit(0.7, "meters"),
  35972. name: "Dick (Anthro)",
  35973. image: {
  35974. source: "./media/characters/glint/dick-anthro.svg"
  35975. }
  35976. },
  35977. dickFeral: {
  35978. height: math.unit(2.65, "meters"),
  35979. name: "Dick (Feral)",
  35980. image: {
  35981. source: "./media/characters/glint/dick-feral.svg"
  35982. }
  35983. },
  35984. slitHidden: {
  35985. height: math.unit(5.85, "meters"),
  35986. name: "Slit (Hidden)",
  35987. image: {
  35988. source: "./media/characters/glint/slit-hidden.svg"
  35989. }
  35990. },
  35991. slitErect: {
  35992. height: math.unit(5.85, "meters"),
  35993. name: "Slit (Erect)",
  35994. image: {
  35995. source: "./media/characters/glint/slit-erect.svg"
  35996. }
  35997. },
  35998. mawAnthro: {
  35999. height: math.unit(0.63, "meters"),
  36000. name: "Maw (Anthro)",
  36001. image: {
  36002. source: "./media/characters/glint/maw.svg"
  36003. }
  36004. },
  36005. mawFeral: {
  36006. height: math.unit(2.89, "meters"),
  36007. name: "Maw (Feral)",
  36008. image: {
  36009. source: "./media/characters/glint/maw.svg"
  36010. }
  36011. },
  36012. },
  36013. [
  36014. {
  36015. name: "Normal",
  36016. height: math.unit(9, "feet"),
  36017. default: true
  36018. },
  36019. ]
  36020. ))
  36021. characterMakers.push(() => makeCharacter(
  36022. { name: "Kairne", species: ["dragon"], tags: ["feral"] },
  36023. {
  36024. side: {
  36025. height: math.unit(15, "feet"),
  36026. weight: math.unit(5000, "kg"),
  36027. name: "Side",
  36028. image: {
  36029. source: "./media/characters/kairne/side.svg",
  36030. extra: 979/811,
  36031. bottom: 13/992
  36032. }
  36033. },
  36034. front: {
  36035. height: math.unit(15, "feet"),
  36036. weight: math.unit(5000, "kg"),
  36037. name: "Front",
  36038. image: {
  36039. source: "./media/characters/kairne/front.svg",
  36040. extra: 908/814,
  36041. bottom: 26/934
  36042. }
  36043. },
  36044. sideNsfw: {
  36045. height: math.unit(15, "feet"),
  36046. weight: math.unit(5000, "kg"),
  36047. name: "Side (NSFW)",
  36048. image: {
  36049. source: "./media/characters/kairne/side-nsfw.svg",
  36050. extra: 979/811,
  36051. bottom: 13/992
  36052. }
  36053. },
  36054. frontNsfw: {
  36055. height: math.unit(15, "feet"),
  36056. weight: math.unit(5000, "kg"),
  36057. name: "Front (NSFW)",
  36058. image: {
  36059. source: "./media/characters/kairne/front-nsfw.svg",
  36060. extra: 908/814,
  36061. bottom: 26/934
  36062. }
  36063. },
  36064. dickCaged: {
  36065. height: math.unit(0.65, "meters"),
  36066. name: "Dick-caged",
  36067. image: {
  36068. source: "./media/characters/kairne/dick-caged.svg"
  36069. }
  36070. },
  36071. dick: {
  36072. height: math.unit(0.79, "meters"),
  36073. name: "Dick",
  36074. image: {
  36075. source: "./media/characters/kairne/dick.svg"
  36076. }
  36077. },
  36078. genitals: {
  36079. height: math.unit(1.29, "meters"),
  36080. name: "Genitals",
  36081. image: {
  36082. source: "./media/characters/kairne/genitals.svg"
  36083. }
  36084. },
  36085. maw: {
  36086. height: math.unit(1.73, "meters"),
  36087. name: "Maw",
  36088. image: {
  36089. source: "./media/characters/kairne/maw.svg"
  36090. }
  36091. },
  36092. },
  36093. [
  36094. {
  36095. name: "Normal",
  36096. height: math.unit(15, "feet"),
  36097. default: true
  36098. },
  36099. ]
  36100. ))
  36101. characterMakers.push(() => makeCharacter(
  36102. { name: "Biscuit (Jackal)", species: ["jackal"], tags: ["anthro"] },
  36103. {
  36104. front: {
  36105. height: math.unit(5 + 8/12, "feet"),
  36106. weight: math.unit(139, "lb"),
  36107. name: "Front",
  36108. image: {
  36109. source: "./media/characters/biscuit-jackal/front.svg",
  36110. extra: 2106/1961,
  36111. bottom: 58/2164
  36112. }
  36113. },
  36114. back: {
  36115. height: math.unit(5 + 8/12, "feet"),
  36116. weight: math.unit(139, "lb"),
  36117. name: "Back",
  36118. image: {
  36119. source: "./media/characters/biscuit-jackal/back.svg",
  36120. extra: 2132/1976,
  36121. bottom: 57/2189
  36122. }
  36123. },
  36124. werejackal: {
  36125. height: math.unit(6 + 3/12, "feet"),
  36126. weight: math.unit(188, "lb"),
  36127. name: "Werejackal",
  36128. image: {
  36129. source: "./media/characters/biscuit-jackal/werejackal.svg",
  36130. extra: 2373/2178,
  36131. bottom: 53/2426
  36132. }
  36133. },
  36134. },
  36135. [
  36136. {
  36137. name: "Normal",
  36138. height: math.unit(5 + 8/12, "feet"),
  36139. default: true
  36140. },
  36141. ]
  36142. ))
  36143. characterMakers.push(() => makeCharacter(
  36144. { name: "Tayra White", species: ["human", "chimera"], tags: ["anthro"] },
  36145. {
  36146. front: {
  36147. height: math.unit(140, "cm"),
  36148. weight: math.unit(45, "kg"),
  36149. name: "Front",
  36150. image: {
  36151. source: "./media/characters/tayra-white/front.svg",
  36152. extra: 2229/2192,
  36153. bottom: 75/2304
  36154. }
  36155. },
  36156. },
  36157. [
  36158. {
  36159. name: "Normal",
  36160. height: math.unit(140, "cm"),
  36161. default: true
  36162. },
  36163. ]
  36164. ))
  36165. characterMakers.push(() => makeCharacter(
  36166. { name: "Scoop", species: ["mouse"], tags: ["anthro"] },
  36167. {
  36168. front: {
  36169. height: math.unit(4 + 5/12, "feet"),
  36170. name: "Front",
  36171. image: {
  36172. source: "./media/characters/scoop/front.svg",
  36173. extra: 1257/1136,
  36174. bottom: 69/1326
  36175. }
  36176. },
  36177. back: {
  36178. height: math.unit(4 + 5/12, "feet"),
  36179. name: "Back",
  36180. image: {
  36181. source: "./media/characters/scoop/back.svg",
  36182. extra: 1321/1152,
  36183. bottom: 32/1353
  36184. }
  36185. },
  36186. maw: {
  36187. height: math.unit(0.68, "feet"),
  36188. name: "Maw",
  36189. image: {
  36190. source: "./media/characters/scoop/maw.svg"
  36191. }
  36192. },
  36193. },
  36194. [
  36195. {
  36196. name: "Really Small",
  36197. height: math.unit(1, "mm")
  36198. },
  36199. {
  36200. name: "Micro",
  36201. height: math.unit(1, "inch")
  36202. },
  36203. {
  36204. name: "Normal",
  36205. height: math.unit(4 + 5/12, "feet"),
  36206. default: true
  36207. },
  36208. {
  36209. name: "Macro",
  36210. height: math.unit(200, "feet")
  36211. },
  36212. {
  36213. name: "Megamacro",
  36214. height: math.unit(3240, "feet")
  36215. },
  36216. {
  36217. name: "Teramacro",
  36218. height: math.unit(2500, "miles")
  36219. },
  36220. ]
  36221. ))
  36222. characterMakers.push(() => makeCharacter(
  36223. { name: "Saphinara", species: ["demon", "snow-leopard"], tags: ["anthro"] },
  36224. {
  36225. front: {
  36226. height: math.unit(15 + 7/12, "feet"),
  36227. weight: math.unit(1150, "tons"),
  36228. name: "Front",
  36229. image: {
  36230. source: "./media/characters/saphinara/front.svg",
  36231. extra: 1837/1643,
  36232. bottom: 84/1921
  36233. },
  36234. form: "normal",
  36235. default: true
  36236. },
  36237. side: {
  36238. height: math.unit(15 + 7/12, "feet"),
  36239. weight: math.unit(1150, "tons"),
  36240. name: "Side",
  36241. image: {
  36242. source: "./media/characters/saphinara/side.svg",
  36243. extra: 605/547,
  36244. bottom: 6/611
  36245. },
  36246. form: "normal"
  36247. },
  36248. back: {
  36249. height: math.unit(15 + 7/12, "feet"),
  36250. weight: math.unit(1150, "tons"),
  36251. name: "Back",
  36252. image: {
  36253. source: "./media/characters/saphinara/back.svg",
  36254. extra: 591/531,
  36255. bottom: 13/604
  36256. },
  36257. form: "normal"
  36258. },
  36259. frontTail: {
  36260. height: math.unit(15 + 7/12, "feet"),
  36261. weight: math.unit(1150, "tons"),
  36262. name: "Front (Full Tail)",
  36263. image: {
  36264. source: "./media/characters/saphinara/front-tail.svg",
  36265. extra: 2256/1630,
  36266. bottom: 261/2517
  36267. },
  36268. form: "normal"
  36269. },
  36270. insides: {
  36271. height: math.unit(11.92, "feet"),
  36272. name: "Insides",
  36273. image: {
  36274. source: "./media/characters/saphinara/insides.svg"
  36275. },
  36276. form: "normal"
  36277. },
  36278. head: {
  36279. height: math.unit(4.17, "feet"),
  36280. name: "Head",
  36281. image: {
  36282. source: "./media/characters/saphinara/head.svg"
  36283. },
  36284. form: "normal"
  36285. },
  36286. tongue: {
  36287. height: math.unit(4.60, "feet"),
  36288. name: "Tongue",
  36289. image: {
  36290. source: "./media/characters/saphinara/tongue.svg"
  36291. },
  36292. form: "normal"
  36293. },
  36294. headEnraged: {
  36295. height: math.unit(5.55, "feet"),
  36296. name: "Head (Enraged)",
  36297. image: {
  36298. source: "./media/characters/saphinara/head-enraged.svg"
  36299. },
  36300. form: "normal"
  36301. },
  36302. wings: {
  36303. height: math.unit(11.95, "feet"),
  36304. name: "Wings",
  36305. image: {
  36306. source: "./media/characters/saphinara/wings.svg"
  36307. },
  36308. form: "normal"
  36309. },
  36310. feathers: {
  36311. height: math.unit(8.92, "feet"),
  36312. name: "Feathers",
  36313. image: {
  36314. source: "./media/characters/saphinara/feathers.svg"
  36315. },
  36316. form: "normal"
  36317. },
  36318. shackles: {
  36319. height: math.unit(2, "feet"),
  36320. name: "Shackles",
  36321. image: {
  36322. source: "./media/characters/saphinara/shackles.svg"
  36323. },
  36324. form: "normal"
  36325. },
  36326. eyes: {
  36327. height: math.unit(1.331, "feet"),
  36328. name: "Eyes",
  36329. image: {
  36330. source: "./media/characters/saphinara/eyes.svg"
  36331. },
  36332. form: "normal"
  36333. },
  36334. eyesEnraged: {
  36335. height: math.unit(1.331, "feet"),
  36336. name: "Eyes (Enraged)",
  36337. image: {
  36338. source: "./media/characters/saphinara/eyes-enraged.svg"
  36339. },
  36340. form: "normal"
  36341. },
  36342. trueFormSide: {
  36343. height: math.unit(200, "feet"),
  36344. weight: math.unit(1e7, "tons"),
  36345. name: "Side",
  36346. image: {
  36347. source: "./media/characters/saphinara/true-form-side.svg",
  36348. extra: 1399/770,
  36349. bottom: 97/1496
  36350. },
  36351. form: "true-form",
  36352. default: true
  36353. },
  36354. trueFormMaw: {
  36355. height: math.unit(71.5, "feet"),
  36356. name: "Maw",
  36357. image: {
  36358. source: "./media/characters/saphinara/true-form-maw.svg",
  36359. extra: 2302/1453,
  36360. bottom: 0/2302
  36361. },
  36362. form: "true-form"
  36363. },
  36364. meowberusSide: {
  36365. height: math.unit(75, "feet"),
  36366. weight: math.unit(180000, "kg"),
  36367. preyCapacity: math.unit(50000, "people"),
  36368. name: "Side",
  36369. image: {
  36370. source: "./media/characters/saphinara/meowberus-side.svg",
  36371. extra: 1400/711,
  36372. bottom: 126/1526
  36373. },
  36374. form: "meowberus",
  36375. extraAttributes: {
  36376. "pawArea": {
  36377. name: "Paw Size",
  36378. power: 2,
  36379. type: "area",
  36380. base: math.unit(35, "m^2")
  36381. }
  36382. }
  36383. },
  36384. },
  36385. [
  36386. {
  36387. name: "Normal",
  36388. height: math.unit(15 + 7/12, "feet"),
  36389. default: true,
  36390. form: "normal"
  36391. },
  36392. {
  36393. name: "Angry",
  36394. height: math.unit(30 + 6/12, "feet"),
  36395. form: "normal"
  36396. },
  36397. {
  36398. name: "Enraged",
  36399. height: math.unit(102 + 1/12, "feet"),
  36400. form: "normal"
  36401. },
  36402. {
  36403. name: "True",
  36404. height: math.unit(200, "feet"),
  36405. default: true,
  36406. form: "true-form"
  36407. },
  36408. {
  36409. name: "Normal",
  36410. height: math.unit(75, "feet"),
  36411. default: true,
  36412. form: "meowberus"
  36413. },
  36414. ],
  36415. {
  36416. "normal": {
  36417. name: "Normal",
  36418. default: true
  36419. },
  36420. "true-form": {
  36421. name: "True Form"
  36422. },
  36423. "meowberus": {
  36424. name: "Meowberus",
  36425. },
  36426. }
  36427. ))
  36428. characterMakers.push(() => makeCharacter(
  36429. { name: "Jrain", species: ["leviathan"], tags: ["anthro"] },
  36430. {
  36431. front: {
  36432. height: math.unit(6 + 8/12, "feet"),
  36433. weight: math.unit(300, "lb"),
  36434. name: "Front",
  36435. image: {
  36436. source: "./media/characters/jrain/front.svg",
  36437. extra: 3039/2865,
  36438. bottom: 399/3438
  36439. }
  36440. },
  36441. back: {
  36442. height: math.unit(6 + 8/12, "feet"),
  36443. weight: math.unit(300, "lb"),
  36444. name: "Back",
  36445. image: {
  36446. source: "./media/characters/jrain/back.svg",
  36447. extra: 3089/2938,
  36448. bottom: 172/3261
  36449. }
  36450. },
  36451. head: {
  36452. height: math.unit(2.14, "feet"),
  36453. name: "Head",
  36454. image: {
  36455. source: "./media/characters/jrain/head.svg"
  36456. }
  36457. },
  36458. maw: {
  36459. height: math.unit(1.77, "feet"),
  36460. name: "Maw",
  36461. image: {
  36462. source: "./media/characters/jrain/maw.svg"
  36463. }
  36464. },
  36465. leftHand: {
  36466. height: math.unit(1.1, "feet"),
  36467. name: "Left Hand",
  36468. image: {
  36469. source: "./media/characters/jrain/left-hand.svg"
  36470. }
  36471. },
  36472. rightHand: {
  36473. height: math.unit(1.1, "feet"),
  36474. name: "Right Hand",
  36475. image: {
  36476. source: "./media/characters/jrain/right-hand.svg"
  36477. }
  36478. },
  36479. eye: {
  36480. height: math.unit(0.35, "feet"),
  36481. name: "Eye",
  36482. image: {
  36483. source: "./media/characters/jrain/eye.svg"
  36484. }
  36485. },
  36486. },
  36487. [
  36488. {
  36489. name: "Normal",
  36490. height: math.unit(6 + 8/12, "feet"),
  36491. default: true
  36492. },
  36493. {
  36494. name: "Casually Large",
  36495. height: math.unit(25, "feet")
  36496. },
  36497. {
  36498. name: "Giant",
  36499. height: math.unit(100, "feet")
  36500. },
  36501. {
  36502. name: "Kaiju",
  36503. height: math.unit(300, "feet")
  36504. },
  36505. ]
  36506. ))
  36507. characterMakers.push(() => makeCharacter(
  36508. { name: "Sabrina", species: ["dragon", "snake", "gryphon"], tags: ["feral"] },
  36509. {
  36510. dragon: {
  36511. height: math.unit(5, "meters"),
  36512. name: "Dragon",
  36513. image: {
  36514. source: "./media/characters/sabrina/dragon.svg",
  36515. extra: 3670 / 2365,
  36516. bottom: 333 / 4003
  36517. }
  36518. },
  36519. gryphon: {
  36520. height: math.unit(3, "meters"),
  36521. name: "Gryphon",
  36522. image: {
  36523. source: "./media/characters/sabrina/gryphon.svg",
  36524. extra: 1576 / 945,
  36525. bottom: 71 / 1647
  36526. }
  36527. },
  36528. snake: {
  36529. height: math.unit(12, "meters"),
  36530. name: "Snake",
  36531. image: {
  36532. source: "./media/characters/sabrina/snake.svg",
  36533. extra: 1758 / 1320,
  36534. bottom: 186 / 1944
  36535. }
  36536. },
  36537. collar: {
  36538. height: math.unit(1.86, "meters"),
  36539. name: "Collar",
  36540. image: {
  36541. source: "./media/characters/sabrina/collar.svg"
  36542. }
  36543. },
  36544. eye: {
  36545. height: math.unit(0.53, "meters"),
  36546. name: "Eye",
  36547. image: {
  36548. source: "./media/characters/sabrina/eye.svg"
  36549. }
  36550. },
  36551. foot: {
  36552. height: math.unit(1.86, "meters"),
  36553. name: "Foot",
  36554. image: {
  36555. source: "./media/characters/sabrina/foot.svg"
  36556. }
  36557. },
  36558. hand: {
  36559. height: math.unit(1.32, "meters"),
  36560. name: "Hand",
  36561. image: {
  36562. source: "./media/characters/sabrina/hand.svg"
  36563. }
  36564. },
  36565. head: {
  36566. height: math.unit(2.44, "meters"),
  36567. name: "Head",
  36568. image: {
  36569. source: "./media/characters/sabrina/head.svg"
  36570. }
  36571. },
  36572. headAngry: {
  36573. height: math.unit(2.44, "meters"),
  36574. name: "Head (Angry))",
  36575. image: {
  36576. source: "./media/characters/sabrina/head-angry.svg"
  36577. }
  36578. },
  36579. maw: {
  36580. height: math.unit(1.65, "meters"),
  36581. name: "Maw",
  36582. image: {
  36583. source: "./media/characters/sabrina/maw.svg"
  36584. }
  36585. },
  36586. spikes: {
  36587. height: math.unit(1.69, "meters"),
  36588. name: "Spikes",
  36589. image: {
  36590. source: "./media/characters/sabrina/spikes.svg"
  36591. }
  36592. },
  36593. stomach: {
  36594. height: math.unit(1.15, "meters"),
  36595. name: "Stomach",
  36596. image: {
  36597. source: "./media/characters/sabrina/stomach.svg"
  36598. }
  36599. },
  36600. tongue: {
  36601. height: math.unit(1.27, "meters"),
  36602. name: "Tongue",
  36603. image: {
  36604. source: "./media/characters/sabrina/tongue.svg"
  36605. }
  36606. },
  36607. wingDorsal: {
  36608. height: math.unit(4.85, "meters"),
  36609. name: "Wing (Dorsal)",
  36610. image: {
  36611. source: "./media/characters/sabrina/wing-dorsal.svg"
  36612. }
  36613. },
  36614. wingVentral: {
  36615. height: math.unit(4.85, "meters"),
  36616. name: "Wing (Ventral)",
  36617. image: {
  36618. source: "./media/characters/sabrina/wing-ventral.svg"
  36619. }
  36620. },
  36621. },
  36622. [
  36623. {
  36624. name: "Normal",
  36625. height: math.unit(5, "meters"),
  36626. default: true
  36627. },
  36628. ]
  36629. ))
  36630. characterMakers.push(() => makeCharacter(
  36631. { name: "Midnight Tales", species: ["bat"], tags: ["anthro"] },
  36632. {
  36633. frontMaid: {
  36634. height: math.unit(5 + 5/12, "feet"),
  36635. weight: math.unit(130, "lb"),
  36636. name: "Front (Maid)",
  36637. image: {
  36638. source: "./media/characters/midnight-tales/front-maid.svg",
  36639. extra: 489/454,
  36640. bottom: 61/550
  36641. }
  36642. },
  36643. frontFormal: {
  36644. height: math.unit(5 + 5/12, "feet"),
  36645. weight: math.unit(130, "lb"),
  36646. name: "Front (Formal)",
  36647. image: {
  36648. source: "./media/characters/midnight-tales/front-formal.svg",
  36649. extra: 489/454,
  36650. bottom: 61/550
  36651. }
  36652. },
  36653. back: {
  36654. height: math.unit(5 + 5/12, "feet"),
  36655. weight: math.unit(130, "lb"),
  36656. name: "Back",
  36657. image: {
  36658. source: "./media/characters/midnight-tales/back.svg",
  36659. extra: 498/456,
  36660. bottom: 33/531
  36661. }
  36662. },
  36663. frontBeast: {
  36664. height: math.unit(40, "feet"),
  36665. weight: math.unit(64000, "lb"),
  36666. name: "Front (Beast)",
  36667. image: {
  36668. source: "./media/characters/midnight-tales/front-beast.svg",
  36669. extra: 927/860,
  36670. bottom: 53/980
  36671. }
  36672. },
  36673. backBeast: {
  36674. height: math.unit(40, "feet"),
  36675. weight: math.unit(64000, "lb"),
  36676. name: "Back (Beast)",
  36677. image: {
  36678. source: "./media/characters/midnight-tales/back-beast.svg",
  36679. extra: 929/855,
  36680. bottom: 16/945
  36681. }
  36682. },
  36683. footBeast: {
  36684. height: math.unit(6.7, "feet"),
  36685. name: "Foot (Beast)",
  36686. image: {
  36687. source: "./media/characters/midnight-tales/foot-beast.svg"
  36688. }
  36689. },
  36690. headBeast: {
  36691. height: math.unit(8, "feet"),
  36692. name: "Head (Beast)",
  36693. image: {
  36694. source: "./media/characters/midnight-tales/head-beast.svg"
  36695. }
  36696. },
  36697. },
  36698. [
  36699. {
  36700. name: "Normal",
  36701. height: math.unit(5 + 5 / 12, "feet"),
  36702. default: true
  36703. },
  36704. {
  36705. name: "Macro",
  36706. height: math.unit(25, "feet")
  36707. },
  36708. ]
  36709. ))
  36710. characterMakers.push(() => makeCharacter(
  36711. { name: "Argon", species: ["dragon"], tags: ["anthro"] },
  36712. {
  36713. front: {
  36714. height: math.unit(5 + 10/12, "feet"),
  36715. name: "Front",
  36716. image: {
  36717. source: "./media/characters/argon/front.svg",
  36718. extra: 2009/1935,
  36719. bottom: 118/2127
  36720. }
  36721. },
  36722. back: {
  36723. height: math.unit(5 + 10/12, "feet"),
  36724. name: "Back",
  36725. image: {
  36726. source: "./media/characters/argon/back.svg",
  36727. extra: 2047/1992,
  36728. bottom: 20/2067
  36729. }
  36730. },
  36731. frontDressed: {
  36732. height: math.unit(5 + 10/12, "feet"),
  36733. name: "Front (Dressed)",
  36734. image: {
  36735. source: "./media/characters/argon/front-dressed.svg",
  36736. extra: 2009/1935,
  36737. bottom: 118/2127
  36738. }
  36739. },
  36740. },
  36741. [
  36742. {
  36743. name: "Normal",
  36744. height: math.unit(5 + 10/12, "feet"),
  36745. default: true
  36746. },
  36747. ]
  36748. ))
  36749. characterMakers.push(() => makeCharacter(
  36750. { name: "Kichi", species: ["bull", "tanuki"], tags: ["anthro"] },
  36751. {
  36752. front: {
  36753. height: math.unit(8 + 6/12, "feet"),
  36754. weight: math.unit(1150, "lb"),
  36755. name: "Front",
  36756. image: {
  36757. source: "./media/characters/kichi/front.svg",
  36758. extra: 1267/1164,
  36759. bottom: 61/1328
  36760. }
  36761. },
  36762. back: {
  36763. height: math.unit(8 + 6/12, "feet"),
  36764. weight: math.unit(1150, "lb"),
  36765. name: "Back",
  36766. image: {
  36767. source: "./media/characters/kichi/back.svg",
  36768. extra: 1273/1166,
  36769. bottom: 33/1306
  36770. }
  36771. },
  36772. },
  36773. [
  36774. {
  36775. name: "Normal",
  36776. height: math.unit(8 + 6/12, "feet"),
  36777. default: true
  36778. },
  36779. ]
  36780. ))
  36781. characterMakers.push(() => makeCharacter(
  36782. { name: "Manetel Greyscale", species: ["dragon"], tags: ["anthro"] },
  36783. {
  36784. front: {
  36785. height: math.unit(6, "feet"),
  36786. weight: math.unit(210, "lb"),
  36787. name: "Front",
  36788. image: {
  36789. source: "./media/characters/manetel-greyscale/front.svg",
  36790. extra: 350/312,
  36791. bottom: 8/358
  36792. }
  36793. },
  36794. },
  36795. [
  36796. {
  36797. name: "Micro",
  36798. height: math.unit(2, "inches")
  36799. },
  36800. {
  36801. name: "Normal",
  36802. height: math.unit(6, "feet"),
  36803. default: true
  36804. },
  36805. {
  36806. name: "Minimacro",
  36807. height: math.unit(17, "feet")
  36808. },
  36809. {
  36810. name: "Macro",
  36811. height: math.unit(117, "feet")
  36812. },
  36813. ]
  36814. ))
  36815. characterMakers.push(() => makeCharacter(
  36816. { name: "Softpurr", species: ["chakat"], tags: ["taur"] },
  36817. {
  36818. side: {
  36819. height: math.unit(5 + 1/12, "feet"),
  36820. weight: math.unit(418, "lb"),
  36821. name: "Side",
  36822. image: {
  36823. source: "./media/characters/softpurr/side.svg",
  36824. extra: 1993/1945,
  36825. bottom: 134/2127
  36826. }
  36827. },
  36828. front: {
  36829. height: math.unit(5 + 1/12, "feet"),
  36830. weight: math.unit(418, "lb"),
  36831. name: "Front",
  36832. image: {
  36833. source: "./media/characters/softpurr/front.svg",
  36834. extra: 1950/1856,
  36835. bottom: 174/2124
  36836. }
  36837. },
  36838. paw: {
  36839. height: math.unit(1, "feet"),
  36840. name: "Paw",
  36841. image: {
  36842. source: "./media/characters/softpurr/paw.svg"
  36843. }
  36844. },
  36845. },
  36846. [
  36847. {
  36848. name: "Normal",
  36849. height: math.unit(5 + 1/12, "feet"),
  36850. default: true
  36851. },
  36852. ]
  36853. ))
  36854. characterMakers.push(() => makeCharacter(
  36855. { name: "Anahita", species: ["shark"], tags: ["anthro"] },
  36856. {
  36857. front: {
  36858. height: math.unit(260, "meters"),
  36859. name: "Front",
  36860. image: {
  36861. source: "./media/characters/anahita/front.svg",
  36862. extra: 665/635,
  36863. bottom: 89/754
  36864. }
  36865. },
  36866. },
  36867. [
  36868. {
  36869. name: "Macro",
  36870. height: math.unit(260, "meters"),
  36871. default: true
  36872. },
  36873. ]
  36874. ))
  36875. characterMakers.push(() => makeCharacter(
  36876. { name: "Chip (Mouse)", species: ["mouse"], tags: ["anthro"] },
  36877. {
  36878. front: {
  36879. height: math.unit(4 + 10/12, "feet"),
  36880. weight: math.unit(160, "lb"),
  36881. name: "Front",
  36882. image: {
  36883. source: "./media/characters/chip-mouse/front.svg",
  36884. extra: 3528/3408,
  36885. bottom: 0/3528
  36886. }
  36887. },
  36888. frontNsfw: {
  36889. height: math.unit(4 + 10/12, "feet"),
  36890. weight: math.unit(160, "lb"),
  36891. name: "Front (NSFW)",
  36892. image: {
  36893. source: "./media/characters/chip-mouse/front-nsfw.svg",
  36894. extra: 3528/3408,
  36895. bottom: 0/3528
  36896. }
  36897. },
  36898. },
  36899. [
  36900. {
  36901. name: "Normal",
  36902. height: math.unit(4 + 10/12, "feet"),
  36903. default: true
  36904. },
  36905. ]
  36906. ))
  36907. characterMakers.push(() => makeCharacter(
  36908. { name: "Kremm", species: ["dragon"], tags: ["feral"] },
  36909. {
  36910. side: {
  36911. height: math.unit(10, "feet"),
  36912. weight: math.unit(14000, "lb"),
  36913. name: "Side",
  36914. image: {
  36915. source: "./media/characters/kremm/side.svg",
  36916. extra: 1390/1053,
  36917. bottom: 90/1480
  36918. }
  36919. },
  36920. gut: {
  36921. height: math.unit(5.8, "feet"),
  36922. name: "Gut",
  36923. image: {
  36924. source: "./media/characters/kremm/gut.svg"
  36925. }
  36926. },
  36927. ass: {
  36928. height: math.unit(6.1, "feet"),
  36929. name: "Ass",
  36930. image: {
  36931. source: "./media/characters/kremm/ass.svg"
  36932. }
  36933. },
  36934. jaws: {
  36935. height: math.unit(2.2, "feet"),
  36936. name: "Jaws",
  36937. image: {
  36938. source: "./media/characters/kremm/jaws.svg"
  36939. }
  36940. },
  36941. dick: {
  36942. height: math.unit(4.26, "feet"),
  36943. name: "Dick",
  36944. image: {
  36945. source: "./media/characters/kremm/dick.svg"
  36946. }
  36947. },
  36948. },
  36949. [
  36950. {
  36951. name: "Normal",
  36952. height: math.unit(10, "feet"),
  36953. default: true
  36954. },
  36955. ]
  36956. ))
  36957. characterMakers.push(() => makeCharacter(
  36958. { name: "Kai", species: ["skunk"], tags: ["anthro"] },
  36959. {
  36960. front: {
  36961. height: math.unit(30, "stories"),
  36962. name: "Front",
  36963. image: {
  36964. source: "./media/characters/kai/front.svg",
  36965. extra: 1892/1718,
  36966. bottom: 162/2054
  36967. }
  36968. },
  36969. },
  36970. [
  36971. {
  36972. name: "Macro",
  36973. height: math.unit(30, "stories"),
  36974. default: true
  36975. },
  36976. ]
  36977. ))
  36978. characterMakers.push(() => makeCharacter(
  36979. { name: "Sykes", species: ["maned-wolf"], tags: ["anthro"] },
  36980. {
  36981. front: {
  36982. height: math.unit(6 + 4/12, "feet"),
  36983. weight: math.unit(145, "lb"),
  36984. name: "Front",
  36985. image: {
  36986. source: "./media/characters/sykes/front.svg",
  36987. extra: 1321 / 1187,
  36988. bottom: 66 / 1387
  36989. }
  36990. },
  36991. back: {
  36992. height: math.unit(6 + 4/12, "feet"),
  36993. weight: math.unit(145, "lb"),
  36994. name: "Back",
  36995. image: {
  36996. source: "./media/characters/sykes/back.svg",
  36997. extra: 1326/1181,
  36998. bottom: 31/1357
  36999. }
  37000. },
  37001. traditionalOutfit: {
  37002. height: math.unit(6 + 4/12, "feet"),
  37003. weight: math.unit(145, "lb"),
  37004. name: "Traditional Outfit",
  37005. image: {
  37006. source: "./media/characters/sykes/traditional-outfit.svg",
  37007. extra: 1321 / 1187,
  37008. bottom: 66 / 1387
  37009. }
  37010. },
  37011. adventureOutfit: {
  37012. height: math.unit(6 + 4/12, "feet"),
  37013. weight: math.unit(145, "lb"),
  37014. name: "Adventure Outfit",
  37015. image: {
  37016. source: "./media/characters/sykes/adventure-outfit.svg",
  37017. extra: 1321 / 1187,
  37018. bottom: 66 / 1387
  37019. }
  37020. },
  37021. handLeft: {
  37022. height: math.unit(0.9, "feet"),
  37023. name: "Hand (Left)",
  37024. image: {
  37025. source: "./media/characters/sykes/hand-left.svg"
  37026. }
  37027. },
  37028. handRight: {
  37029. height: math.unit(0.839, "feet"),
  37030. name: "Hand (Right)",
  37031. image: {
  37032. source: "./media/characters/sykes/hand-right.svg"
  37033. }
  37034. },
  37035. leftFoot: {
  37036. height: math.unit(1.2, "feet"),
  37037. name: "Foot (Left)",
  37038. image: {
  37039. source: "./media/characters/sykes/foot-left.svg"
  37040. }
  37041. },
  37042. rightFoot: {
  37043. height: math.unit(1.2, "feet"),
  37044. name: "Foot (Right)",
  37045. image: {
  37046. source: "./media/characters/sykes/foot-right.svg"
  37047. }
  37048. },
  37049. maw: {
  37050. height: math.unit(1.93, "feet"),
  37051. name: "Maw",
  37052. image: {
  37053. source: "./media/characters/sykes/maw.svg"
  37054. }
  37055. },
  37056. teeth: {
  37057. height: math.unit(0.51, "feet"),
  37058. name: "Teeth",
  37059. image: {
  37060. source: "./media/characters/sykes/teeth.svg"
  37061. }
  37062. },
  37063. tongue: {
  37064. height: math.unit(2.13, "feet"),
  37065. name: "Tongue",
  37066. image: {
  37067. source: "./media/characters/sykes/tongue.svg"
  37068. }
  37069. },
  37070. uvula: {
  37071. height: math.unit(0.16, "feet"),
  37072. name: "Uvula",
  37073. image: {
  37074. source: "./media/characters/sykes/uvula.svg"
  37075. }
  37076. },
  37077. collar: {
  37078. height: math.unit(0.287, "feet"),
  37079. name: "Collar",
  37080. image: {
  37081. source: "./media/characters/sykes/collar.svg"
  37082. }
  37083. },
  37084. tail: {
  37085. height: math.unit(3.8, "feet"),
  37086. name: "Tail",
  37087. image: {
  37088. source: "./media/characters/sykes/tail.svg"
  37089. }
  37090. },
  37091. },
  37092. [
  37093. {
  37094. name: "Shrunken",
  37095. height: math.unit(5, "inches")
  37096. },
  37097. {
  37098. name: "Normal",
  37099. height: math.unit(6 + 4 / 12, "feet"),
  37100. default: true
  37101. },
  37102. {
  37103. name: "Big",
  37104. height: math.unit(15, "feet")
  37105. },
  37106. ]
  37107. ))
  37108. characterMakers.push(() => makeCharacter(
  37109. { name: "Oven Otter", species: ["otter"], tags: ["anthro"] },
  37110. {
  37111. front: {
  37112. height: math.unit(5 + 8/12, "feet"),
  37113. weight: math.unit(190, "lb"),
  37114. name: "Front",
  37115. image: {
  37116. source: "./media/characters/oven-otter/front.svg",
  37117. extra: 1809/1740,
  37118. bottom: 181/1990
  37119. }
  37120. },
  37121. back: {
  37122. height: math.unit(5 + 8/12, "feet"),
  37123. weight: math.unit(190, "lb"),
  37124. name: "Back",
  37125. image: {
  37126. source: "./media/characters/oven-otter/back.svg",
  37127. extra: 1709/1635,
  37128. bottom: 118/1827
  37129. }
  37130. },
  37131. hand: {
  37132. height: math.unit(1.07, "feet"),
  37133. name: "Hand",
  37134. image: {
  37135. source: "./media/characters/oven-otter/hand.svg"
  37136. }
  37137. },
  37138. beans: {
  37139. height: math.unit(1.74, "feet"),
  37140. name: "Beans",
  37141. image: {
  37142. source: "./media/characters/oven-otter/beans.svg"
  37143. }
  37144. },
  37145. },
  37146. [
  37147. {
  37148. name: "Micro",
  37149. height: math.unit(0.5, "inches")
  37150. },
  37151. {
  37152. name: "Normal",
  37153. height: math.unit(5 + 8/12, "feet"),
  37154. default: true
  37155. },
  37156. {
  37157. name: "Macro",
  37158. height: math.unit(250, "feet")
  37159. },
  37160. {
  37161. name: "Really High",
  37162. height: math.unit(420, "feet")
  37163. },
  37164. ]
  37165. ))
  37166. characterMakers.push(() => makeCharacter(
  37167. { name: "Devourer", species: ["dragon", "monster"], tags: ["anthro"] },
  37168. {
  37169. front: {
  37170. height: math.unit(5, "meters"),
  37171. weight: math.unit(292000000000000, "kg"),
  37172. name: "Front",
  37173. image: {
  37174. source: "./media/characters/devourer/front.svg",
  37175. extra: 1800/1733,
  37176. bottom: 211/2011
  37177. }
  37178. },
  37179. maw: {
  37180. height: math.unit(1.1, "meter"),
  37181. name: "Maw",
  37182. image: {
  37183. source: "./media/characters/devourer/maw.svg"
  37184. }
  37185. },
  37186. },
  37187. [
  37188. {
  37189. name: "Small",
  37190. height: math.unit(3, "meters")
  37191. },
  37192. {
  37193. name: "Large",
  37194. height: math.unit(5, "meters"),
  37195. default: true
  37196. },
  37197. ]
  37198. ))
  37199. characterMakers.push(() => makeCharacter(
  37200. { name: "Ellarby", species: ["hydra"], tags: ["feral"] },
  37201. {
  37202. front: {
  37203. height: math.unit(6, "feet"),
  37204. weight: math.unit(400, "lb"),
  37205. name: "Front",
  37206. image: {
  37207. source: "./media/characters/ellarby/front.svg",
  37208. extra: 1909/1763,
  37209. bottom: 80/1989
  37210. }
  37211. },
  37212. back: {
  37213. height: math.unit(6, "feet"),
  37214. weight: math.unit(400, "lb"),
  37215. name: "Back",
  37216. image: {
  37217. source: "./media/characters/ellarby/back.svg",
  37218. extra: 1914/1784,
  37219. bottom: 172/2086
  37220. }
  37221. },
  37222. },
  37223. [
  37224. {
  37225. name: "Mischief",
  37226. height: math.unit(18, "inches")
  37227. },
  37228. {
  37229. name: "Trouble",
  37230. height: math.unit(12, "feet")
  37231. },
  37232. {
  37233. name: "Havoc",
  37234. height: math.unit(200, "feet"),
  37235. default: true
  37236. },
  37237. {
  37238. name: "Pandemonium",
  37239. height: math.unit(1, "mile")
  37240. },
  37241. {
  37242. name: "Catastrophe",
  37243. height: math.unit(100, "miles")
  37244. },
  37245. ]
  37246. ))
  37247. characterMakers.push(() => makeCharacter(
  37248. { name: "Vex", species: ["dragon"], tags: ["feral"] },
  37249. {
  37250. front: {
  37251. height: math.unit(4.7, "meters"),
  37252. weight: math.unit(6500, "kg"),
  37253. name: "Front",
  37254. image: {
  37255. source: "./media/characters/vex/front.svg",
  37256. extra: 1288/1140,
  37257. bottom: 100/1388
  37258. }
  37259. },
  37260. },
  37261. [
  37262. {
  37263. name: "Normal",
  37264. height: math.unit(4.7, "meters"),
  37265. default: true
  37266. },
  37267. ]
  37268. ))
  37269. characterMakers.push(() => makeCharacter(
  37270. { name: "Teshy", species: ["pangolin", "monster"], tags: ["anthro"] },
  37271. {
  37272. normal: {
  37273. height: math.unit(6, "feet"),
  37274. weight: math.unit(350, "lb"),
  37275. name: "Normal",
  37276. image: {
  37277. source: "./media/characters/teshy/normal.svg",
  37278. extra: 1795/1735,
  37279. bottom: 16/1811
  37280. }
  37281. },
  37282. monsterFront: {
  37283. height: math.unit(12, "feet"),
  37284. weight: math.unit(4700, "lb"),
  37285. name: "Monster (Front)",
  37286. image: {
  37287. source: "./media/characters/teshy/monster-front.svg",
  37288. extra: 2042/2034,
  37289. bottom: 128/2170
  37290. }
  37291. },
  37292. monsterSide: {
  37293. height: math.unit(12, "feet"),
  37294. weight: math.unit(4700, "lb"),
  37295. name: "Monster (Side)",
  37296. image: {
  37297. source: "./media/characters/teshy/monster-side.svg",
  37298. extra: 2067/2056,
  37299. bottom: 70/2137
  37300. }
  37301. },
  37302. monsterBack: {
  37303. height: math.unit(12, "feet"),
  37304. weight: math.unit(4700, "lb"),
  37305. name: "Monster (Back)",
  37306. image: {
  37307. source: "./media/characters/teshy/monster-back.svg",
  37308. extra: 1921/1914,
  37309. bottom: 171/2092
  37310. }
  37311. },
  37312. },
  37313. [
  37314. {
  37315. name: "Normal",
  37316. height: math.unit(6, "feet"),
  37317. default: true
  37318. },
  37319. ]
  37320. ))
  37321. characterMakers.push(() => makeCharacter(
  37322. { name: "Ramey", species: ["raccoon"], tags: ["anthro"] },
  37323. {
  37324. front: {
  37325. height: math.unit(6, "feet"),
  37326. name: "Front",
  37327. image: {
  37328. source: "./media/characters/ramey/front.svg",
  37329. extra: 790/787,
  37330. bottom: 27/817
  37331. }
  37332. },
  37333. },
  37334. [
  37335. {
  37336. name: "Normal",
  37337. height: math.unit(6, "feet"),
  37338. default: true
  37339. },
  37340. ]
  37341. ))
  37342. characterMakers.push(() => makeCharacter(
  37343. { name: "Phirae", species: ["cat"], tags: ["anthro"] },
  37344. {
  37345. front: {
  37346. height: math.unit(5 + 5/12, "feet"),
  37347. weight: math.unit(120, "lb"),
  37348. name: "Front",
  37349. image: {
  37350. source: "./media/characters/phirae/front.svg",
  37351. extra: 2491/2436,
  37352. bottom: 38/2529
  37353. }
  37354. },
  37355. },
  37356. [
  37357. {
  37358. name: "Normal",
  37359. height: math.unit(5 + 5/12, "feet"),
  37360. default: true
  37361. },
  37362. ]
  37363. ))
  37364. characterMakers.push(() => makeCharacter(
  37365. { name: "Stagglas", species: ["dragon"], tags: ["anthro", "feral"] },
  37366. {
  37367. front: {
  37368. height: math.unit(5 + 3/12, "feet"),
  37369. name: "Front",
  37370. image: {
  37371. source: "./media/characters/stagglas/front.svg",
  37372. extra: 962/882,
  37373. bottom: 53/1015
  37374. }
  37375. },
  37376. feral: {
  37377. height: math.unit(335, "cm"),
  37378. name: "Feral",
  37379. image: {
  37380. source: "./media/characters/stagglas/feral.svg",
  37381. extra: 1732/1090,
  37382. bottom: 48/1780
  37383. }
  37384. },
  37385. },
  37386. [
  37387. {
  37388. name: "Normal",
  37389. height: math.unit(5 + 3/12, "feet"),
  37390. default: true
  37391. },
  37392. ]
  37393. ))
  37394. characterMakers.push(() => makeCharacter(
  37395. { name: "Starra", species: ["dragon"], tags: ["anthro"] },
  37396. {
  37397. front: {
  37398. height: math.unit(5 + 4/12, "feet"),
  37399. weight: math.unit(145, "lb"),
  37400. name: "Front",
  37401. image: {
  37402. source: "./media/characters/starra/front.svg",
  37403. extra: 1790/1691,
  37404. bottom: 91/1881
  37405. }
  37406. },
  37407. },
  37408. [
  37409. {
  37410. name: "Normal",
  37411. height: math.unit(5 + 4/12, "feet"),
  37412. default: true
  37413. },
  37414. ]
  37415. ))
  37416. characterMakers.push(() => makeCharacter(
  37417. { name: "Dr. Kaizo Inazuma", species: ["zorgoia"], tags: ["anthro"] },
  37418. {
  37419. front: {
  37420. height: math.unit(3.5, "meters"),
  37421. name: "Front",
  37422. image: {
  37423. source: "./media/characters/dr-kaizo-inazuma/front.svg",
  37424. extra: 1248/972,
  37425. bottom: 38/1286
  37426. }
  37427. },
  37428. },
  37429. [
  37430. {
  37431. name: "Normal",
  37432. height: math.unit(3.5, "meters"),
  37433. default: true
  37434. },
  37435. ]
  37436. ))
  37437. characterMakers.push(() => makeCharacter(
  37438. { name: "Mika Valentine", species: ["red-panda"], tags: ["taur"] },
  37439. {
  37440. side: {
  37441. height: math.unit(8 + 2/12, "feet"),
  37442. weight: math.unit(1240, "lb"),
  37443. name: "Side",
  37444. image: {
  37445. source: "./media/characters/mika-valentine/side.svg",
  37446. extra: 2670/2501,
  37447. bottom: 250/2920
  37448. }
  37449. },
  37450. },
  37451. [
  37452. {
  37453. name: "Normal",
  37454. height: math.unit(8 + 2/12, "feet"),
  37455. default: true
  37456. },
  37457. ]
  37458. ))
  37459. characterMakers.push(() => makeCharacter(
  37460. { name: "Xoltol", species: ["dragon"], tags: ["anthro"] },
  37461. {
  37462. front: {
  37463. height: math.unit(7 + 2/12, "feet"),
  37464. name: "Front",
  37465. image: {
  37466. source: "./media/characters/xoltol/front.svg",
  37467. extra: 2212/2124,
  37468. bottom: 84/2296
  37469. }
  37470. },
  37471. side: {
  37472. height: math.unit(7 + 2/12, "feet"),
  37473. name: "Side",
  37474. image: {
  37475. source: "./media/characters/xoltol/side.svg",
  37476. extra: 2273/2197,
  37477. bottom: 26/2299
  37478. }
  37479. },
  37480. hand: {
  37481. height: math.unit(2.5, "feet"),
  37482. name: "Hand",
  37483. image: {
  37484. source: "./media/characters/xoltol/hand.svg"
  37485. }
  37486. },
  37487. },
  37488. [
  37489. {
  37490. name: "Small-ish",
  37491. height: math.unit(5 + 11/12, "feet")
  37492. },
  37493. {
  37494. name: "Normal",
  37495. height: math.unit(7 + 2/12, "feet")
  37496. },
  37497. {
  37498. name: "\"Macro\"",
  37499. height: math.unit(14 + 9/12, "feet"),
  37500. default: true
  37501. },
  37502. {
  37503. name: "Alternate Height",
  37504. height: math.unit(20, "feet")
  37505. },
  37506. {
  37507. name: "Actually Macro",
  37508. height: math.unit(100, "feet")
  37509. },
  37510. ]
  37511. ))
  37512. characterMakers.push(() => makeCharacter(
  37513. { name: "Kotetsu Redwood", species: ["zigzagoon"], tags: ["anthro"] },
  37514. {
  37515. front: {
  37516. height: math.unit(5 + 2/12, "feet"),
  37517. weight: math.unit(75, "kg"),
  37518. name: "Front",
  37519. image: {
  37520. source: "./media/characters/kotetsu-redwood/front.svg",
  37521. extra: 1053/942,
  37522. bottom: 60/1113
  37523. }
  37524. },
  37525. },
  37526. [
  37527. {
  37528. name: "Normal",
  37529. height: math.unit(5 + 2/12, "feet"),
  37530. default: true
  37531. },
  37532. ]
  37533. ))
  37534. characterMakers.push(() => makeCharacter(
  37535. { name: "Lilith", species: ["vulture"], tags: ["anthro"] },
  37536. {
  37537. front: {
  37538. height: math.unit(2.4, "meters"),
  37539. weight: math.unit(125, "kg"),
  37540. name: "Front",
  37541. image: {
  37542. source: "./media/characters/lilith/front.svg",
  37543. extra: 1590/1513,
  37544. bottom: 203/1793
  37545. }
  37546. },
  37547. },
  37548. [
  37549. {
  37550. name: "Humanoid",
  37551. height: math.unit(2.4, "meters")
  37552. },
  37553. {
  37554. name: "Normal",
  37555. height: math.unit(6, "meters"),
  37556. default: true
  37557. },
  37558. {
  37559. name: "Largest",
  37560. height: math.unit(55, "meters")
  37561. },
  37562. ]
  37563. ))
  37564. characterMakers.push(() => makeCharacter(
  37565. { name: "Bek'kah Bolger", species: ["kobold"], tags: ["anthro"] },
  37566. {
  37567. front: {
  37568. height: math.unit(8 + 4/12, "feet"),
  37569. weight: math.unit(535, "lb"),
  37570. name: "Front",
  37571. image: {
  37572. source: "./media/characters/beh'kah-bolger/front.svg",
  37573. extra: 1660/1603,
  37574. bottom: 37/1697
  37575. }
  37576. },
  37577. },
  37578. [
  37579. {
  37580. name: "Normal",
  37581. height: math.unit(8 + 4/12, "feet"),
  37582. default: true
  37583. },
  37584. {
  37585. name: "Kaiju",
  37586. height: math.unit(250, "feet")
  37587. },
  37588. {
  37589. name: "Still Growing",
  37590. height: math.unit(10, "miles")
  37591. },
  37592. {
  37593. name: "Continental",
  37594. height: math.unit(5000, "miles")
  37595. },
  37596. {
  37597. name: "Final Form",
  37598. height: math.unit(2500000, "miles")
  37599. },
  37600. ]
  37601. ))
  37602. characterMakers.push(() => makeCharacter(
  37603. { name: "Tatyana Milewska", species: ["shark"], tags: ["anthro"] },
  37604. {
  37605. front: {
  37606. height: math.unit(7 + 2/12, "feet"),
  37607. weight: math.unit(230, "kg"),
  37608. name: "Front",
  37609. image: {
  37610. source: "./media/characters/tatyana-milewska/front.svg",
  37611. extra: 1199/1150,
  37612. bottom: 86/1285
  37613. }
  37614. },
  37615. },
  37616. [
  37617. {
  37618. name: "Normal",
  37619. height: math.unit(7 + 2/12, "feet"),
  37620. default: true
  37621. },
  37622. {
  37623. name: "Big",
  37624. height: math.unit(12, "feet")
  37625. },
  37626. {
  37627. name: "Minimacro",
  37628. height: math.unit(20, "feet")
  37629. },
  37630. {
  37631. name: "Macro",
  37632. height: math.unit(120, "feet")
  37633. },
  37634. ]
  37635. ))
  37636. characterMakers.push(() => makeCharacter(
  37637. { name: "Helen Arri", species: ["dragon"], tags: ["anthro"] },
  37638. {
  37639. front: {
  37640. height: math.unit(7 + 8/12, "feet"),
  37641. weight: math.unit(152, "kg"),
  37642. name: "Front",
  37643. image: {
  37644. source: "./media/characters/helen-arri/front.svg",
  37645. extra: 440/423,
  37646. bottom: 14/454
  37647. }
  37648. },
  37649. back: {
  37650. height: math.unit(7 + 8/12, "feet"),
  37651. weight: math.unit(152, "kg"),
  37652. name: "Back",
  37653. image: {
  37654. source: "./media/characters/helen-arri/back.svg",
  37655. extra: 443/426,
  37656. bottom: 8/451
  37657. }
  37658. },
  37659. },
  37660. [
  37661. {
  37662. name: "Normal",
  37663. height: math.unit(7 + 8/12, "feet"),
  37664. default: true
  37665. },
  37666. {
  37667. name: "Big",
  37668. height: math.unit(14, "feet")
  37669. },
  37670. {
  37671. name: "Minimacro",
  37672. height: math.unit(24, "feet")
  37673. },
  37674. {
  37675. name: "Macro",
  37676. height: math.unit(140, "feet")
  37677. },
  37678. ]
  37679. ))
  37680. characterMakers.push(() => makeCharacter(
  37681. { name: "Ehanu Rehu", species: ["eastern-dragon"], tags: ["anthro"] },
  37682. {
  37683. front: {
  37684. height: math.unit(6, "meters"),
  37685. name: "Front",
  37686. image: {
  37687. source: "./media/characters/ehanu-rehu/front.svg",
  37688. extra: 1800/1800,
  37689. bottom: 59/1859
  37690. }
  37691. },
  37692. },
  37693. [
  37694. {
  37695. name: "Normal",
  37696. height: math.unit(6, "meters"),
  37697. default: true
  37698. },
  37699. ]
  37700. ))
  37701. characterMakers.push(() => makeCharacter(
  37702. { name: "Renholder", species: ["bat"], tags: ["anthro"] },
  37703. {
  37704. front: {
  37705. height: math.unit(7 + 3/12, "feet"),
  37706. name: "Front",
  37707. image: {
  37708. source: "./media/characters/renholder/front.svg",
  37709. extra: 3096/2960,
  37710. bottom: 250/3346
  37711. }
  37712. },
  37713. },
  37714. [
  37715. {
  37716. name: "Normal Bat",
  37717. height: math.unit(7 + 3/12, "feet"),
  37718. default: true
  37719. },
  37720. {
  37721. name: "Slightly Tall Bat",
  37722. height: math.unit(100, "feet")
  37723. },
  37724. {
  37725. name: "Big Bat",
  37726. height: math.unit(1000, "feet")
  37727. },
  37728. {
  37729. name: "City-Sized Bat",
  37730. height: math.unit(200000, "feet")
  37731. },
  37732. {
  37733. name: "Bigger Bat",
  37734. height: math.unit(10000, "miles")
  37735. },
  37736. {
  37737. name: "Solar Sized Bat",
  37738. height: math.unit(100, "AU")
  37739. },
  37740. {
  37741. name: "Galactic Bat",
  37742. height: math.unit(200000, "lightyears")
  37743. },
  37744. {
  37745. name: "Universally Known Bat",
  37746. height: math.unit(1, "universe")
  37747. },
  37748. ]
  37749. ))
  37750. characterMakers.push(() => makeCharacter(
  37751. { name: "Cookiecat", species: ["cat"], tags: ["anthro"] },
  37752. {
  37753. front: {
  37754. height: math.unit(6 + 11/12, "feet"),
  37755. weight: math.unit(250, "lb"),
  37756. name: "Front",
  37757. image: {
  37758. source: "./media/characters/cookiecat/front.svg",
  37759. extra: 893/827,
  37760. bottom: 14/907
  37761. }
  37762. },
  37763. },
  37764. [
  37765. {
  37766. name: "Micro",
  37767. height: math.unit(3, "inches")
  37768. },
  37769. {
  37770. name: "Normal",
  37771. height: math.unit(6 + 11/12, "feet"),
  37772. default: true
  37773. },
  37774. {
  37775. name: "Macro",
  37776. height: math.unit(100, "feet")
  37777. },
  37778. {
  37779. name: "Macro+",
  37780. height: math.unit(404, "feet")
  37781. },
  37782. {
  37783. name: "Megamacro",
  37784. height: math.unit(165, "miles")
  37785. },
  37786. {
  37787. name: "Planetary",
  37788. height: math.unit(4600, "miles")
  37789. },
  37790. ]
  37791. ))
  37792. characterMakers.push(() => makeCharacter(
  37793. { name: "Tux Kusanagi", species: ["gryffon"], tags: ["anthro"] },
  37794. {
  37795. front: {
  37796. height: math.unit(10 + 3/12, "feet"),
  37797. weight: math.unit(1500, "lb"),
  37798. name: "Front",
  37799. image: {
  37800. source: "./media/characters/tux-kusanagi/front.svg",
  37801. extra: 944/840,
  37802. bottom: 39/983
  37803. }
  37804. },
  37805. back: {
  37806. height: math.unit(10 + 3/12, "feet"),
  37807. weight: math.unit(1500, "lb"),
  37808. name: "Back",
  37809. image: {
  37810. source: "./media/characters/tux-kusanagi/back.svg",
  37811. extra: 941/842,
  37812. bottom: 28/969
  37813. }
  37814. },
  37815. rump: {
  37816. height: math.unit(5.25, "feet"),
  37817. name: "Rump",
  37818. image: {
  37819. source: "./media/characters/tux-kusanagi/rump.svg"
  37820. }
  37821. },
  37822. beak: {
  37823. height: math.unit(1.54, "feet"),
  37824. name: "Beak",
  37825. image: {
  37826. source: "./media/characters/tux-kusanagi/beak.svg"
  37827. }
  37828. },
  37829. },
  37830. [
  37831. {
  37832. name: "Normal",
  37833. height: math.unit(10 + 3/12, "feet"),
  37834. default: true
  37835. },
  37836. ]
  37837. ))
  37838. characterMakers.push(() => makeCharacter(
  37839. { name: "Uzarmazari", species: ["amtsvane"], tags: ["anthro"] },
  37840. {
  37841. front: {
  37842. height: math.unit(58, "feet"),
  37843. weight: math.unit(200, "tons"),
  37844. name: "Front",
  37845. image: {
  37846. source: "./media/characters/uzarmazari/front.svg",
  37847. extra: 1575/1455,
  37848. bottom: 152/1727
  37849. }
  37850. },
  37851. back: {
  37852. height: math.unit(58, "feet"),
  37853. weight: math.unit(200, "tons"),
  37854. name: "Back",
  37855. image: {
  37856. source: "./media/characters/uzarmazari/back.svg",
  37857. extra: 1585/1510,
  37858. bottom: 157/1742
  37859. }
  37860. },
  37861. head: {
  37862. height: math.unit(26, "feet"),
  37863. name: "Head",
  37864. image: {
  37865. source: "./media/characters/uzarmazari/head.svg"
  37866. }
  37867. },
  37868. },
  37869. [
  37870. {
  37871. name: "Normal",
  37872. height: math.unit(58, "feet"),
  37873. default: true
  37874. },
  37875. ]
  37876. ))
  37877. characterMakers.push(() => makeCharacter(
  37878. { name: "Akitu", species: ["kigavi"], tags: ["feral"] },
  37879. {
  37880. side: {
  37881. height: math.unit(15, "feet"),
  37882. name: "Side",
  37883. image: {
  37884. source: "./media/characters/akitu/side.svg",
  37885. extra: 1421/1321,
  37886. bottom: 157/1578
  37887. }
  37888. },
  37889. front: {
  37890. height: math.unit(15, "feet"),
  37891. name: "Front",
  37892. image: {
  37893. source: "./media/characters/akitu/front.svg",
  37894. extra: 1435/1326,
  37895. bottom: 232/1667
  37896. }
  37897. },
  37898. },
  37899. [
  37900. {
  37901. name: "Normal",
  37902. height: math.unit(15, "feet"),
  37903. default: true
  37904. },
  37905. ]
  37906. ))
  37907. characterMakers.push(() => makeCharacter(
  37908. { name: "Azalie Croixland", species: ["gryphon"], tags: ["anthro"] },
  37909. {
  37910. front: {
  37911. height: math.unit(10 + 8/12, "feet"),
  37912. name: "Front",
  37913. image: {
  37914. source: "./media/characters/azalie-croixland/front.svg",
  37915. extra: 1972/1856,
  37916. bottom: 31/2003
  37917. }
  37918. },
  37919. },
  37920. [
  37921. {
  37922. name: "Original Height",
  37923. height: math.unit(5 + 4/12, "feet")
  37924. },
  37925. {
  37926. name: "Normal Height",
  37927. height: math.unit(10 + 8/12, "feet"),
  37928. default: true
  37929. },
  37930. ]
  37931. ))
  37932. characterMakers.push(() => makeCharacter(
  37933. { name: "Kavus Kazian", species: ["turian"], tags: ["anthro"] },
  37934. {
  37935. side: {
  37936. height: math.unit(7 + 1/12, "feet"),
  37937. weight: math.unit(245, "lb"),
  37938. name: "Side",
  37939. image: {
  37940. source: "./media/characters/kavus-kazian/side.svg",
  37941. extra: 349/342,
  37942. bottom: 15/364
  37943. }
  37944. },
  37945. },
  37946. [
  37947. {
  37948. name: "Normal",
  37949. height: math.unit(7 + 1/12, "feet"),
  37950. default: true
  37951. },
  37952. ]
  37953. ))
  37954. characterMakers.push(() => makeCharacter(
  37955. { name: "Moonlight Rose", species: ["eevee", "leafeon", "jolteon", "demon", "vaporeon"], tags: ["anthro"] },
  37956. {
  37957. normalFront: {
  37958. height: math.unit(5 + 11/12, "feet"),
  37959. name: "Front",
  37960. image: {
  37961. source: "./media/characters/moonlight-rose/normal-front.svg",
  37962. extra: 1980/1825,
  37963. bottom: 18/1998
  37964. },
  37965. form: "normal",
  37966. default: true
  37967. },
  37968. normalBack: {
  37969. height: math.unit(5 + 11/12, "feet"),
  37970. name: "Back",
  37971. image: {
  37972. source: "./media/characters/moonlight-rose/normal-back.svg",
  37973. extra: 2010/1839,
  37974. bottom: 10/2020
  37975. },
  37976. form: "normal"
  37977. },
  37978. demonFront: {
  37979. height: math.unit(1.5, "earths"),
  37980. name: "Front",
  37981. image: {
  37982. source: "./media/characters/moonlight-rose/demon.svg",
  37983. extra: 1400/1294,
  37984. bottom: 45/1445
  37985. },
  37986. form: "demon",
  37987. default: true
  37988. },
  37989. terraFront: {
  37990. height: math.unit(1.5, "earths"),
  37991. name: "Front",
  37992. image: {
  37993. source: "./media/characters/moonlight-rose/terra.svg"
  37994. },
  37995. form: "terra",
  37996. default: true
  37997. },
  37998. jupiterFront: {
  37999. height: math.unit(69911*2, "km"),
  38000. name: "Front",
  38001. image: {
  38002. source: "./media/characters/moonlight-rose/jupiter-front.svg",
  38003. extra: 1367/1286,
  38004. bottom: 55/1422
  38005. },
  38006. form: "jupiter",
  38007. default: true
  38008. },
  38009. neptuneFront: {
  38010. height: math.unit(24622*2, "feet"),
  38011. name: "Front",
  38012. image: {
  38013. source: "./media/characters/moonlight-rose/neptune-front.svg",
  38014. extra: 1851/1712,
  38015. bottom: 0/1851
  38016. },
  38017. form: "neptune",
  38018. default: true
  38019. },
  38020. },
  38021. [
  38022. {
  38023. name: "\"Natural\" Height",
  38024. height: math.unit(5 + 11/12, "feet"),
  38025. form: "normal"
  38026. },
  38027. {
  38028. name: "Smallest comfortable size",
  38029. height: math.unit(40, "meters"),
  38030. form: "normal"
  38031. },
  38032. {
  38033. name: "Common size",
  38034. height: math.unit(50, "km"),
  38035. form: "normal",
  38036. default: true
  38037. },
  38038. {
  38039. name: "Normal",
  38040. height: math.unit(1.5, "earths"),
  38041. form: "demon",
  38042. default: true
  38043. },
  38044. {
  38045. name: "Universal",
  38046. height: math.unit(15, "universes"),
  38047. form: "demon"
  38048. },
  38049. {
  38050. name: "Earth",
  38051. height: math.unit(1.5, "earths"),
  38052. form: "terra",
  38053. default: true
  38054. },
  38055. {
  38056. name: "Super Earth",
  38057. height: math.unit(67.5, "earths"),
  38058. form: "terra"
  38059. },
  38060. {
  38061. name: "Doesn't fit in a solar system...",
  38062. height: math.unit(1, "galaxy"),
  38063. form: "terra"
  38064. },
  38065. {
  38066. name: "Saturn",
  38067. height: math.unit(58232*2, "km"),
  38068. form: "jupiter"
  38069. },
  38070. {
  38071. name: "Jupiter",
  38072. height: math.unit(69911*2, "km"),
  38073. form: "jupiter",
  38074. default: true
  38075. },
  38076. {
  38077. name: "HD 100546 b",
  38078. height: math.unit(482938, "km"),
  38079. form: "jupiter"
  38080. },
  38081. {
  38082. name: "Enceladus",
  38083. height: math.unit(513*2, "km"),
  38084. form: "neptune"
  38085. },
  38086. {
  38087. name: "Europe",
  38088. height: math.unit(1560*2, "km"),
  38089. form: "neptune"
  38090. },
  38091. {
  38092. name: "Neptune",
  38093. height: math.unit(24622*2, "km"),
  38094. form: "neptune",
  38095. default: true
  38096. },
  38097. {
  38098. name: "CoRoT-9b",
  38099. height: math.unit(75067*2, "km"),
  38100. form: "neptune"
  38101. },
  38102. ],
  38103. {
  38104. "normal": {
  38105. name: "Normal",
  38106. default: true
  38107. },
  38108. "demon": {
  38109. name: "Demon"
  38110. },
  38111. "terra": {
  38112. name: "Terra"
  38113. },
  38114. "jupiter": {
  38115. name: "Jupiter"
  38116. },
  38117. "neptune": {
  38118. name: "Neptune"
  38119. }
  38120. }
  38121. ))
  38122. characterMakers.push(() => makeCharacter(
  38123. { name: "Huckle", species: ["dragon"], tags: ["anthro"] },
  38124. {
  38125. front: {
  38126. height: math.unit(16, "feet"),
  38127. weight: math.unit(610, "kg"),
  38128. name: "Front",
  38129. image: {
  38130. source: "./media/characters/huckle/front.svg",
  38131. extra: 1731/1625,
  38132. bottom: 33/1764
  38133. }
  38134. },
  38135. back: {
  38136. height: math.unit(16, "feet"),
  38137. weight: math.unit(610, "kg"),
  38138. name: "Back",
  38139. image: {
  38140. source: "./media/characters/huckle/back.svg",
  38141. extra: 1738/1651,
  38142. bottom: 37/1775
  38143. }
  38144. },
  38145. laughing: {
  38146. height: math.unit(3.75, "feet"),
  38147. name: "Laughing",
  38148. image: {
  38149. source: "./media/characters/huckle/laughing.svg"
  38150. }
  38151. },
  38152. angry: {
  38153. height: math.unit(4.15, "feet"),
  38154. name: "Angry",
  38155. image: {
  38156. source: "./media/characters/huckle/angry.svg"
  38157. }
  38158. },
  38159. },
  38160. [
  38161. {
  38162. name: "Normal",
  38163. height: math.unit(16, "feet"),
  38164. default: true
  38165. },
  38166. {
  38167. name: "Mini Macro",
  38168. height: math.unit(463, "feet")
  38169. },
  38170. {
  38171. name: "Macro",
  38172. height: math.unit(1680, "meters")
  38173. },
  38174. {
  38175. name: "Mega Macro",
  38176. height: math.unit(175, "km")
  38177. },
  38178. {
  38179. name: "Terra Macro",
  38180. height: math.unit(32, "gigameters")
  38181. },
  38182. {
  38183. name: "Multiverse+",
  38184. height: math.unit(2.56e23, "yottameters")
  38185. },
  38186. ]
  38187. ))
  38188. characterMakers.push(() => makeCharacter(
  38189. { name: "Candy", species: ["zeraora"], tags: ["anthro"] },
  38190. {
  38191. front: {
  38192. height: math.unit(6 + 9/12, "feet"),
  38193. weight: math.unit(280, "lb"),
  38194. name: "Front",
  38195. image: {
  38196. source: "./media/characters/candy/front.svg",
  38197. extra: 234/217,
  38198. bottom: 11/245
  38199. }
  38200. },
  38201. },
  38202. [
  38203. {
  38204. name: "Really Small",
  38205. height: math.unit(0.1, "nm")
  38206. },
  38207. {
  38208. name: "Micro",
  38209. height: math.unit(2, "inches")
  38210. },
  38211. {
  38212. name: "Normal",
  38213. height: math.unit(6 + 9/12, "feet"),
  38214. default: true
  38215. },
  38216. {
  38217. name: "Small Macro",
  38218. height: math.unit(69, "feet")
  38219. },
  38220. {
  38221. name: "Macro",
  38222. height: math.unit(160, "feet")
  38223. },
  38224. {
  38225. name: "Megamacro",
  38226. height: math.unit(22000, "miles")
  38227. },
  38228. {
  38229. name: "Gigamacro",
  38230. height: math.unit(50000, "miles")
  38231. },
  38232. ]
  38233. ))
  38234. characterMakers.push(() => makeCharacter(
  38235. { name: "Joey McDonald", species: ["rabbit", "kobold"], tags: ["anthro"] },
  38236. {
  38237. front: {
  38238. height: math.unit(4, "feet"),
  38239. weight: math.unit(90, "lb"),
  38240. name: "Front",
  38241. image: {
  38242. source: "./media/characters/joey-mcdonald/front.svg",
  38243. extra: 1059/852,
  38244. bottom: 33/1092
  38245. }
  38246. },
  38247. back: {
  38248. height: math.unit(4, "feet"),
  38249. weight: math.unit(90, "lb"),
  38250. name: "Back",
  38251. image: {
  38252. source: "./media/characters/joey-mcdonald/back.svg",
  38253. extra: 1077/879,
  38254. bottom: 5/1082
  38255. }
  38256. },
  38257. frontKobold: {
  38258. height: math.unit(4, "feet"),
  38259. weight: math.unit(100, "lb"),
  38260. name: "Front-kobold",
  38261. image: {
  38262. source: "./media/characters/joey-mcdonald/front-kobold.svg",
  38263. extra: 1480/1367,
  38264. bottom: 0/1480
  38265. }
  38266. },
  38267. backKobold: {
  38268. height: math.unit(4, "feet"),
  38269. weight: math.unit(100, "lb"),
  38270. name: "Back-kobold",
  38271. image: {
  38272. source: "./media/characters/joey-mcdonald/back-kobold.svg",
  38273. extra: 1449/1361,
  38274. bottom: 0/1449
  38275. }
  38276. },
  38277. },
  38278. [
  38279. {
  38280. name: "Normal",
  38281. height: math.unit(4, "feet"),
  38282. default: true
  38283. },
  38284. ]
  38285. ))
  38286. characterMakers.push(() => makeCharacter(
  38287. { name: "Kass Lockheed", species: ["dragon"], tags: ["anthro"] },
  38288. {
  38289. front: {
  38290. height: math.unit(12 + 6/12, "feet"),
  38291. name: "Front",
  38292. image: {
  38293. source: "./media/characters/kass-lockheed/front.svg",
  38294. extra: 354/343,
  38295. bottom: 9/363
  38296. }
  38297. },
  38298. back: {
  38299. height: math.unit(12 + 6/12, "feet"),
  38300. name: "Back",
  38301. image: {
  38302. source: "./media/characters/kass-lockheed/back.svg",
  38303. extra: 364/352,
  38304. bottom: 3/367
  38305. }
  38306. },
  38307. dick: {
  38308. height: math.unit(3.12, "feet"),
  38309. name: "Dick",
  38310. image: {
  38311. source: "./media/characters/kass-lockheed/dick.svg"
  38312. }
  38313. },
  38314. head: {
  38315. height: math.unit(2.6, "feet"),
  38316. name: "Head",
  38317. image: {
  38318. source: "./media/characters/kass-lockheed/head.svg"
  38319. }
  38320. },
  38321. bleh: {
  38322. height: math.unit(2.85, "feet"),
  38323. name: "Bleh",
  38324. image: {
  38325. source: "./media/characters/kass-lockheed/bleh.svg"
  38326. }
  38327. },
  38328. smug: {
  38329. height: math.unit(2.85, "feet"),
  38330. name: "Smug",
  38331. image: {
  38332. source: "./media/characters/kass-lockheed/smug.svg"
  38333. }
  38334. },
  38335. },
  38336. [
  38337. {
  38338. name: "Normal",
  38339. height: math.unit(12 + 6/12, "feet"),
  38340. default: true
  38341. },
  38342. ]
  38343. ))
  38344. characterMakers.push(() => makeCharacter(
  38345. { name: "Taylor", species: ["rabbit"], tags: ["anthro"] },
  38346. {
  38347. front: {
  38348. height: math.unit(6 + 2/12, "feet"),
  38349. name: "Front",
  38350. image: {
  38351. source: "./media/characters/taylor/front.svg",
  38352. extra: 639/495,
  38353. bottom: 12/651
  38354. }
  38355. },
  38356. },
  38357. [
  38358. {
  38359. name: "Normal",
  38360. height: math.unit(6 + 2/12, "feet"),
  38361. default: true
  38362. },
  38363. {
  38364. name: "Big",
  38365. height: math.unit(15, "feet")
  38366. },
  38367. {
  38368. name: "Lorg",
  38369. height: math.unit(80, "feet")
  38370. },
  38371. {
  38372. name: "Too Lorg",
  38373. height: math.unit(120, "feet")
  38374. },
  38375. ]
  38376. ))
  38377. characterMakers.push(() => makeCharacter(
  38378. { name: "Kaizer", species: ["demon"], tags: ["anthro"] },
  38379. {
  38380. front: {
  38381. height: math.unit(15, "feet"),
  38382. name: "Front",
  38383. image: {
  38384. source: "./media/characters/kaizer/front.svg",
  38385. extra: 1612/1436,
  38386. bottom: 43/1655
  38387. }
  38388. },
  38389. },
  38390. [
  38391. {
  38392. name: "Normal",
  38393. height: math.unit(15, "feet"),
  38394. default: true
  38395. },
  38396. ]
  38397. ))
  38398. characterMakers.push(() => makeCharacter(
  38399. { name: "Sandy", species: ["sandshrew"], tags: ["anthro"] },
  38400. {
  38401. front: {
  38402. height: math.unit(2, "feet"),
  38403. weight: math.unit(30, "lb"),
  38404. name: "Front",
  38405. image: {
  38406. source: "./media/characters/sandy/front.svg",
  38407. extra: 1439/1307,
  38408. bottom: 194/1633
  38409. }
  38410. },
  38411. },
  38412. [
  38413. {
  38414. name: "Normal",
  38415. height: math.unit(2, "feet"),
  38416. default: true
  38417. },
  38418. ]
  38419. ))
  38420. characterMakers.push(() => makeCharacter(
  38421. { name: "Mellvi", species: ["imp"], tags: ["anthro"] },
  38422. {
  38423. front: {
  38424. height: math.unit(3, "feet"),
  38425. name: "Front",
  38426. image: {
  38427. source: "./media/characters/mellvi/front.svg",
  38428. extra: 1831/1630,
  38429. bottom: 58/1889
  38430. }
  38431. },
  38432. },
  38433. [
  38434. {
  38435. name: "Normal",
  38436. height: math.unit(3, "feet"),
  38437. default: true
  38438. },
  38439. ]
  38440. ))
  38441. characterMakers.push(() => makeCharacter(
  38442. { name: "Shirou", species: ["dragon"], tags: ["anthro"] },
  38443. {
  38444. front: {
  38445. height: math.unit(5 + 11/12, "feet"),
  38446. weight: math.unit(200, "lb"),
  38447. name: "Front",
  38448. image: {
  38449. source: "./media/characters/shirou/front.svg",
  38450. extra: 2491/2383,
  38451. bottom: 189/2680
  38452. }
  38453. },
  38454. back: {
  38455. height: math.unit(5 + 11/12, "feet"),
  38456. weight: math.unit(200, "lb"),
  38457. name: "Back",
  38458. image: {
  38459. source: "./media/characters/shirou/back.svg",
  38460. extra: 2554/2450,
  38461. bottom: 76/2630
  38462. }
  38463. },
  38464. },
  38465. [
  38466. {
  38467. name: "Normal",
  38468. height: math.unit(5 + 11/12, "feet"),
  38469. default: true
  38470. },
  38471. ]
  38472. ))
  38473. characterMakers.push(() => makeCharacter(
  38474. { name: "Noryu", species: ["protogen"], tags: ["anthro"] },
  38475. {
  38476. front: {
  38477. height: math.unit(6 + 3/12, "feet"),
  38478. weight: math.unit(177, "lb"),
  38479. name: "Front",
  38480. image: {
  38481. source: "./media/characters/noryu/front.svg",
  38482. extra: 973/885,
  38483. bottom: 10/983
  38484. }
  38485. },
  38486. },
  38487. [
  38488. {
  38489. name: "Normal",
  38490. height: math.unit(6 + 3/12, "feet"),
  38491. default: true
  38492. },
  38493. ]
  38494. ))
  38495. characterMakers.push(() => makeCharacter(
  38496. { name: "Mevolas Rubenido", species: ["carbuncle"], tags: ["anthro"] },
  38497. {
  38498. front: {
  38499. height: math.unit(5 + 6/12, "feet"),
  38500. weight: math.unit(170, "lb"),
  38501. name: "Front",
  38502. image: {
  38503. source: "./media/characters/mevolas-rubenido/front.svg",
  38504. extra: 2109/1901,
  38505. bottom: 96/2205
  38506. }
  38507. },
  38508. },
  38509. [
  38510. {
  38511. name: "Normal",
  38512. height: math.unit(5 + 6/12, "feet"),
  38513. default: true
  38514. },
  38515. ]
  38516. ))
  38517. characterMakers.push(() => makeCharacter(
  38518. { name: "Dee", species: ["valais-blacknose-sheep"], tags: ["anthro"] },
  38519. {
  38520. front: {
  38521. height: math.unit(100, "feet"),
  38522. name: "Front",
  38523. image: {
  38524. source: "./media/characters/dee/front.svg",
  38525. extra: 2153/2036,
  38526. bottom: 59/2212
  38527. }
  38528. },
  38529. back: {
  38530. height: math.unit(100, "feet"),
  38531. name: "Back",
  38532. image: {
  38533. source: "./media/characters/dee/back.svg",
  38534. extra: 2183/2058,
  38535. bottom: 75/2258
  38536. }
  38537. },
  38538. foot: {
  38539. height: math.unit(19.43, "feet"),
  38540. name: "Foot",
  38541. image: {
  38542. source: "./media/characters/dee/foot.svg"
  38543. }
  38544. },
  38545. hoof: {
  38546. height: math.unit(20.6, "feet"),
  38547. name: "Hoof",
  38548. image: {
  38549. source: "./media/characters/dee/hoof.svg"
  38550. }
  38551. },
  38552. },
  38553. [
  38554. {
  38555. name: "Macro",
  38556. height: math.unit(100, "feet"),
  38557. default: true
  38558. },
  38559. ]
  38560. ))
  38561. characterMakers.push(() => makeCharacter(
  38562. { name: "Teh", species: ["bat"], tags: ["anthro"] },
  38563. {
  38564. front: {
  38565. height: math.unit(5 + 6/12, "feet"),
  38566. name: "Front",
  38567. image: {
  38568. source: "./media/characters/teh/front.svg",
  38569. extra: 1002/847,
  38570. bottom: 62/1064
  38571. }
  38572. },
  38573. },
  38574. [
  38575. {
  38576. name: "Normal",
  38577. height: math.unit(5 + 6/12, "feet"),
  38578. default: true
  38579. },
  38580. ]
  38581. ))
  38582. characterMakers.push(() => makeCharacter(
  38583. { name: "Quicksilver Ayukoti", species: ["dragon", "wolf"], tags: ["feral"] },
  38584. {
  38585. side: {
  38586. height: math.unit(6 + 1/12, "feet"),
  38587. weight: math.unit(204, "lb"),
  38588. name: "Side",
  38589. image: {
  38590. source: "./media/characters/quicksilver-ayukoti/side.svg",
  38591. extra: 974/775,
  38592. bottom: 169/1143
  38593. }
  38594. },
  38595. sitting: {
  38596. height: math.unit(6 + 2/12, "feet"),
  38597. weight: math.unit(204, "lb"),
  38598. name: "Sitting",
  38599. image: {
  38600. source: "./media/characters/quicksilver-ayukoti/sitting.svg",
  38601. extra: 1175/964,
  38602. bottom: 378/1553
  38603. }
  38604. },
  38605. },
  38606. [
  38607. {
  38608. name: "Normal",
  38609. height: math.unit(6 + 1/12, "feet"),
  38610. default: true
  38611. },
  38612. ]
  38613. ))
  38614. characterMakers.push(() => makeCharacter(
  38615. { name: "Tululi", species: ["dunnoh"], tags: ["anthro"] },
  38616. {
  38617. front: {
  38618. height: math.unit(6, "inches"),
  38619. name: "Front",
  38620. image: {
  38621. source: "./media/characters/tululi/front.svg",
  38622. extra: 1997/1876,
  38623. bottom: 20/2017
  38624. }
  38625. },
  38626. },
  38627. [
  38628. {
  38629. name: "Normal",
  38630. height: math.unit(6, "inches"),
  38631. default: true
  38632. },
  38633. ]
  38634. ))
  38635. characterMakers.push(() => makeCharacter(
  38636. { name: "Star", species: ["novaleit"], tags: ["anthro"] },
  38637. {
  38638. front: {
  38639. height: math.unit(4 + 1/12, "feet"),
  38640. name: "Front",
  38641. image: {
  38642. source: "./media/characters/star/front.svg",
  38643. extra: 1493/1189,
  38644. bottom: 48/1541
  38645. }
  38646. },
  38647. },
  38648. [
  38649. {
  38650. name: "Normal",
  38651. height: math.unit(4 + 1/12, "feet"),
  38652. default: true
  38653. },
  38654. ]
  38655. ))
  38656. characterMakers.push(() => makeCharacter(
  38657. { name: "Comet", species: ["novaleit"], tags: ["anthro"] },
  38658. {
  38659. front: {
  38660. height: math.unit(6 + 3/12, "feet"),
  38661. name: "Front",
  38662. image: {
  38663. source: "./media/characters/comet/front.svg",
  38664. extra: 1681/1462,
  38665. bottom: 26/1707
  38666. }
  38667. },
  38668. },
  38669. [
  38670. {
  38671. name: "Normal",
  38672. height: math.unit(6 + 3/12, "feet"),
  38673. default: true
  38674. },
  38675. ]
  38676. ))
  38677. characterMakers.push(() => makeCharacter(
  38678. { name: "Vortex", species: ["kaiju"], tags: ["anthro"] },
  38679. {
  38680. front: {
  38681. height: math.unit(950, "feet"),
  38682. name: "Front",
  38683. image: {
  38684. source: "./media/characters/vortex/front.svg",
  38685. extra: 1497/1434,
  38686. bottom: 56/1553
  38687. }
  38688. },
  38689. maw: {
  38690. height: math.unit(285, "feet"),
  38691. name: "Maw",
  38692. image: {
  38693. source: "./media/characters/vortex/maw.svg"
  38694. }
  38695. },
  38696. },
  38697. [
  38698. {
  38699. name: "Macro",
  38700. height: math.unit(950, "feet"),
  38701. default: true
  38702. },
  38703. ]
  38704. ))
  38705. characterMakers.push(() => makeCharacter(
  38706. { name: "Doodle", species: ["kaiju", "dragon"], tags: ["anthro"] },
  38707. {
  38708. front: {
  38709. height: math.unit(600, "feet"),
  38710. weight: math.unit(0.02, "grams"),
  38711. name: "Front",
  38712. image: {
  38713. source: "./media/characters/doodle/front.svg",
  38714. extra: 1578/1413,
  38715. bottom: 37/1615
  38716. }
  38717. },
  38718. },
  38719. [
  38720. {
  38721. name: "Macro",
  38722. height: math.unit(600, "feet"),
  38723. default: true
  38724. },
  38725. ]
  38726. ))
  38727. characterMakers.push(() => makeCharacter(
  38728. { name: "Jai", species: ["dragon"], tags: ["anthro"] },
  38729. {
  38730. front: {
  38731. height: math.unit(6 + 6/12, "feet"),
  38732. name: "Front",
  38733. image: {
  38734. source: "./media/characters/jai/front.svg",
  38735. extra: 1645/1534,
  38736. bottom: 115/1760
  38737. }
  38738. },
  38739. },
  38740. [
  38741. {
  38742. name: "Normal",
  38743. height: math.unit(6 + 6/12, "feet"),
  38744. default: true
  38745. },
  38746. ]
  38747. ))
  38748. characterMakers.push(() => makeCharacter(
  38749. { name: "Pixel", species: ["gryphon"], tags: ["anthro"] },
  38750. {
  38751. front: {
  38752. height: math.unit(6 + 8/12, "feet"),
  38753. name: "Front",
  38754. image: {
  38755. source: "./media/characters/pixel/front.svg",
  38756. extra: 1900/1735,
  38757. bottom: 63/1963
  38758. }
  38759. },
  38760. },
  38761. [
  38762. {
  38763. name: "Normal",
  38764. height: math.unit(6 + 8/12, "feet"),
  38765. default: true
  38766. },
  38767. ]
  38768. ))
  38769. characterMakers.push(() => makeCharacter(
  38770. { name: "Rhett", species: ["deer"], tags: ["anthro"] },
  38771. {
  38772. back: {
  38773. height: math.unit(4 + 1/12, "feet"),
  38774. weight: math.unit(75, "lb"),
  38775. name: "Back",
  38776. image: {
  38777. source: "./media/characters/rhett/back.svg",
  38778. extra: 930/878,
  38779. bottom: 25/955
  38780. }
  38781. },
  38782. front: {
  38783. height: math.unit(4 + 1/12, "feet"),
  38784. weight: math.unit(75, "lb"),
  38785. name: "Front",
  38786. image: {
  38787. source: "./media/characters/rhett/front.svg",
  38788. extra: 1682/1586,
  38789. bottom: 92/1774
  38790. }
  38791. },
  38792. },
  38793. [
  38794. {
  38795. name: "Micro",
  38796. height: math.unit(8, "inches")
  38797. },
  38798. {
  38799. name: "Tiny",
  38800. height: math.unit(2, "feet")
  38801. },
  38802. {
  38803. name: "Normal",
  38804. height: math.unit(4 + 1/12, "feet"),
  38805. default: true
  38806. },
  38807. ]
  38808. ))
  38809. characterMakers.push(() => makeCharacter(
  38810. { name: "Penny", species: ["mouse"], tags: ["anthro"] },
  38811. {
  38812. front: {
  38813. height: math.unit(3 + 3/12, "feet"),
  38814. name: "Front",
  38815. image: {
  38816. source: "./media/characters/penny/front.svg",
  38817. extra: 1406/1311,
  38818. bottom: 26/1432
  38819. }
  38820. },
  38821. },
  38822. [
  38823. {
  38824. name: "Normal",
  38825. height: math.unit(3 + 3/12, "feet"),
  38826. default: true
  38827. },
  38828. ]
  38829. ))
  38830. characterMakers.push(() => makeCharacter(
  38831. { name: "Monty", species: ["cat", "kangaroo"], tags: ["anthro"] },
  38832. {
  38833. front: {
  38834. height: math.unit(4 + 11/12, "feet"),
  38835. name: "Front",
  38836. image: {
  38837. source: "./media/characters/monty/front.svg",
  38838. extra: 1479/1209,
  38839. bottom: 0/1479
  38840. }
  38841. },
  38842. },
  38843. [
  38844. {
  38845. name: "Normal",
  38846. height: math.unit(4 + 11/12, "feet"),
  38847. default: true
  38848. },
  38849. ]
  38850. ))
  38851. characterMakers.push(() => makeCharacter(
  38852. { name: "Sterling", species: ["lunaral-dragon"], tags: ["anthro"] },
  38853. {
  38854. front: {
  38855. height: math.unit(8 + 4/12, "feet"),
  38856. name: "Front",
  38857. image: {
  38858. source: "./media/characters/sterling/front.svg",
  38859. extra: 1420/1236,
  38860. bottom: 27/1447
  38861. }
  38862. },
  38863. },
  38864. [
  38865. {
  38866. name: "Normal",
  38867. height: math.unit(8 + 4/12, "feet"),
  38868. default: true
  38869. },
  38870. ]
  38871. ))
  38872. characterMakers.push(() => makeCharacter(
  38873. { name: "Marble", species: ["tiger"], tags: ["anthro"] },
  38874. {
  38875. front: {
  38876. height: math.unit(15, "feet"),
  38877. name: "Front",
  38878. image: {
  38879. source: "./media/characters/marble/front.svg",
  38880. extra: 973/937,
  38881. bottom: 32/1005
  38882. }
  38883. },
  38884. },
  38885. [
  38886. {
  38887. name: "Normal",
  38888. height: math.unit(15, "feet"),
  38889. default: true
  38890. },
  38891. ]
  38892. ))
  38893. characterMakers.push(() => makeCharacter(
  38894. { name: "Powder", species: ["sugar-glider"], tags: ["feral"] },
  38895. {
  38896. front: {
  38897. height: math.unit(3, "inches"),
  38898. name: "Front",
  38899. image: {
  38900. source: "./media/characters/powder/front.svg",
  38901. extra: 1504/1334,
  38902. bottom: 518/2022
  38903. }
  38904. },
  38905. },
  38906. [
  38907. {
  38908. name: "Normal",
  38909. height: math.unit(3, "inches"),
  38910. default: true
  38911. },
  38912. ]
  38913. ))
  38914. characterMakers.push(() => makeCharacter(
  38915. { name: "Joey (Raccoon)", species: ["raccoon"], tags: ["anthro"] },
  38916. {
  38917. front: {
  38918. height: math.unit(4 + 5/12, "feet"),
  38919. name: "Front",
  38920. image: {
  38921. source: "./media/characters/joey-raccoon/front.svg",
  38922. extra: 1273/1197,
  38923. bottom: 0/1273
  38924. }
  38925. },
  38926. },
  38927. [
  38928. {
  38929. name: "Normal",
  38930. height: math.unit(4 + 5/12, "feet"),
  38931. default: true
  38932. },
  38933. ]
  38934. ))
  38935. characterMakers.push(() => makeCharacter(
  38936. { name: "Vick", species: ["hyena"], tags: ["anthro"] },
  38937. {
  38938. front: {
  38939. height: math.unit(8 + 4/12, "feet"),
  38940. name: "Front",
  38941. image: {
  38942. source: "./media/characters/vick/front.svg",
  38943. extra: 2187/2118,
  38944. bottom: 47/2234
  38945. }
  38946. },
  38947. },
  38948. [
  38949. {
  38950. name: "Normal",
  38951. height: math.unit(8 + 4/12, "feet"),
  38952. default: true
  38953. },
  38954. ]
  38955. ))
  38956. characterMakers.push(() => makeCharacter(
  38957. { name: "Mitsy", species: ["mouse"], tags: ["anthro"] },
  38958. {
  38959. front: {
  38960. height: math.unit(5 + 5/12, "feet"),
  38961. name: "Front",
  38962. image: {
  38963. source: "./media/characters/mitsy/front.svg",
  38964. extra: 1842/1695,
  38965. bottom: 0/1842
  38966. }
  38967. },
  38968. },
  38969. [
  38970. {
  38971. name: "Normal",
  38972. height: math.unit(5 + 5/12, "feet"),
  38973. default: true
  38974. },
  38975. ]
  38976. ))
  38977. characterMakers.push(() => makeCharacter(
  38978. { name: "Silvy", species: ["ninetales"], tags: ["anthro"] },
  38979. {
  38980. front: {
  38981. height: math.unit(6 + 3/12, "feet"),
  38982. name: "Front",
  38983. image: {
  38984. source: "./media/characters/silvy/front.svg",
  38985. extra: 1995/1836,
  38986. bottom: 225/2220
  38987. }
  38988. },
  38989. },
  38990. [
  38991. {
  38992. name: "Normal",
  38993. height: math.unit(6 + 3/12, "feet"),
  38994. default: true
  38995. },
  38996. ]
  38997. ))
  38998. characterMakers.push(() => makeCharacter(
  38999. { name: "Rodney", species: ["mammal"], tags: ["anthro"] },
  39000. {
  39001. front: {
  39002. height: math.unit(3 + 8/12, "feet"),
  39003. name: "Front",
  39004. image: {
  39005. source: "./media/characters/rodney/front.svg",
  39006. extra: 1956/1747,
  39007. bottom: 31/1987
  39008. }
  39009. },
  39010. frontDressed: {
  39011. height: math.unit(2.9, "feet"),
  39012. name: "Front (Dressed)",
  39013. image: {
  39014. source: "./media/characters/rodney/front-dressed.svg",
  39015. extra: 1382/1241,
  39016. bottom: 385/1767
  39017. }
  39018. },
  39019. },
  39020. [
  39021. {
  39022. name: "Normal",
  39023. height: math.unit(3 + 8/12, "feet"),
  39024. default: true
  39025. },
  39026. ]
  39027. ))
  39028. characterMakers.push(() => makeCharacter(
  39029. { name: "Zakail Sudekai", species: ["arctic-wolf"], tags: ["anthro"] },
  39030. {
  39031. front: {
  39032. height: math.unit(5 + 9/12, "feet"),
  39033. weight: math.unit(194, "lbs"),
  39034. name: "Front",
  39035. image: {
  39036. source: "./media/characters/zakail-sudekai/front.svg",
  39037. extra: 2696/2533,
  39038. bottom: 248/2944
  39039. }
  39040. },
  39041. maw: {
  39042. height: math.unit(1.35, "feet"),
  39043. name: "Maw",
  39044. image: {
  39045. source: "./media/characters/zakail-sudekai/maw.svg"
  39046. }
  39047. },
  39048. },
  39049. [
  39050. {
  39051. name: "Normal",
  39052. height: math.unit(5 + 9/12, "feet"),
  39053. default: true
  39054. },
  39055. ]
  39056. ))
  39057. characterMakers.push(() => makeCharacter(
  39058. { name: "Eleanor", species: ["cow"], tags: ["anthro"] },
  39059. {
  39060. front: {
  39061. height: math.unit(8 + 4/12, "feet"),
  39062. weight: math.unit(1200, "lb"),
  39063. name: "Front",
  39064. image: {
  39065. source: "./media/characters/eleanor/front.svg",
  39066. extra: 1226/1192,
  39067. bottom: 52/1278
  39068. }
  39069. },
  39070. back: {
  39071. height: math.unit(8 + 4/12, "feet"),
  39072. weight: math.unit(1200, "lb"),
  39073. name: "Back",
  39074. image: {
  39075. source: "./media/characters/eleanor/back.svg",
  39076. extra: 1242/1184,
  39077. bottom: 60/1302
  39078. }
  39079. },
  39080. head: {
  39081. height: math.unit(2.62, "feet"),
  39082. name: "Head",
  39083. image: {
  39084. source: "./media/characters/eleanor/head.svg"
  39085. }
  39086. },
  39087. },
  39088. [
  39089. {
  39090. name: "Normal",
  39091. height: math.unit(8 + 4/12, "feet"),
  39092. default: true
  39093. },
  39094. ]
  39095. ))
  39096. characterMakers.push(() => makeCharacter(
  39097. { name: "Tanya", species: ["shark"], tags: ["anthro"] },
  39098. {
  39099. front: {
  39100. height: math.unit(8 + 4/12, "feet"),
  39101. weight: math.unit(750, "lb"),
  39102. name: "Front",
  39103. image: {
  39104. source: "./media/characters/tanya/front.svg",
  39105. extra: 1749/1615,
  39106. bottom: 33/1782
  39107. }
  39108. },
  39109. },
  39110. [
  39111. {
  39112. name: "Normal",
  39113. height: math.unit(8 + 4/12, "feet"),
  39114. default: true
  39115. },
  39116. ]
  39117. ))
  39118. characterMakers.push(() => makeCharacter(
  39119. { name: "Cindy", species: ["dragon"], tags: ["anthro"] },
  39120. {
  39121. front: {
  39122. height: math.unit(5, "feet"),
  39123. weight: math.unit(225, "lb"),
  39124. name: "Front",
  39125. image: {
  39126. source: "./media/characters/cindy/front.svg",
  39127. extra: 1320/1250,
  39128. bottom: 42/1362
  39129. }
  39130. },
  39131. frontDressed: {
  39132. height: math.unit(5, "feet"),
  39133. weight: math.unit(225, "lb"),
  39134. name: "Front (Dressed)",
  39135. image: {
  39136. source: "./media/characters/cindy/front-dressed.svg",
  39137. extra: 1320/1250,
  39138. bottom: 42/1362
  39139. }
  39140. },
  39141. back: {
  39142. height: math.unit(5, "feet"),
  39143. weight: math.unit(225, "lb"),
  39144. name: "Back",
  39145. image: {
  39146. source: "./media/characters/cindy/back.svg",
  39147. extra: 1384/1346,
  39148. bottom: 14/1398
  39149. }
  39150. },
  39151. },
  39152. [
  39153. {
  39154. name: "Normal",
  39155. height: math.unit(5, "feet"),
  39156. default: true
  39157. },
  39158. ]
  39159. ))
  39160. characterMakers.push(() => makeCharacter(
  39161. { name: "Wilbur Owen", species: ["donkey"], tags: ["anthro"] },
  39162. {
  39163. front: {
  39164. height: math.unit(6 + 9/12, "feet"),
  39165. weight: math.unit(440, "lb"),
  39166. name: "Front",
  39167. image: {
  39168. source: "./media/characters/wilbur-owen/front.svg",
  39169. extra: 1575/1448,
  39170. bottom: 72/1647
  39171. }
  39172. },
  39173. back: {
  39174. height: math.unit(6 + 9/12, "feet"),
  39175. weight: math.unit(440, "lb"),
  39176. name: "Back",
  39177. image: {
  39178. source: "./media/characters/wilbur-owen/back.svg",
  39179. extra: 1578/1445,
  39180. bottom: 36/1614
  39181. }
  39182. },
  39183. },
  39184. [
  39185. {
  39186. name: "Normal",
  39187. height: math.unit(6 + 9/12, "feet"),
  39188. default: true
  39189. },
  39190. ]
  39191. ))
  39192. characterMakers.push(() => makeCharacter(
  39193. { name: "Keegan", species: ["chinchilla", "tiger"], tags: ["anthro"] },
  39194. {
  39195. front: {
  39196. height: math.unit(6 + 5/12, "feet"),
  39197. weight: math.unit(650, "lb"),
  39198. name: "Front",
  39199. image: {
  39200. source: "./media/characters/keegan/front.svg",
  39201. extra: 2387/2198,
  39202. bottom: 33/2420
  39203. }
  39204. },
  39205. side: {
  39206. height: math.unit(6 + 5/12, "feet"),
  39207. weight: math.unit(650, "lb"),
  39208. name: "Side",
  39209. image: {
  39210. source: "./media/characters/keegan/side.svg",
  39211. extra: 2390/2202,
  39212. bottom: 47/2437
  39213. }
  39214. },
  39215. back: {
  39216. height: math.unit(6 + 5/12, "feet"),
  39217. weight: math.unit(650, "lb"),
  39218. name: "Back",
  39219. image: {
  39220. source: "./media/characters/keegan/back.svg",
  39221. extra: 2418/2268,
  39222. bottom: 15/2433
  39223. }
  39224. },
  39225. frontSfw: {
  39226. height: math.unit(6 + 5/12, "feet"),
  39227. weight: math.unit(650, "lb"),
  39228. name: "Front (SFW)",
  39229. image: {
  39230. source: "./media/characters/keegan/front-sfw.svg",
  39231. extra: 2387/2198,
  39232. bottom: 33/2420
  39233. }
  39234. },
  39235. beans: {
  39236. height: math.unit(1.85, "feet"),
  39237. name: "Beans",
  39238. image: {
  39239. source: "./media/characters/keegan/beans.svg"
  39240. }
  39241. },
  39242. },
  39243. [
  39244. {
  39245. name: "Normal",
  39246. height: math.unit(6 + 5/12, "feet"),
  39247. default: true
  39248. },
  39249. ]
  39250. ))
  39251. characterMakers.push(() => makeCharacter(
  39252. { name: "Colton", species: ["bat", "imp", "deity"], tags: ["anthro"] },
  39253. {
  39254. front: {
  39255. height: math.unit(9, "feet"),
  39256. name: "Front",
  39257. image: {
  39258. source: "./media/characters/colton/front.svg",
  39259. extra: 1589/1326,
  39260. bottom: 139/1728
  39261. }
  39262. },
  39263. },
  39264. [
  39265. {
  39266. name: "Normal",
  39267. height: math.unit(9, "feet"),
  39268. default: true
  39269. },
  39270. ]
  39271. ))
  39272. characterMakers.push(() => makeCharacter(
  39273. { name: "Bora", species: ["chinchilla"], tags: ["anthro"] },
  39274. {
  39275. front: {
  39276. height: math.unit(2 + 9/12, "feet"),
  39277. name: "Front",
  39278. image: {
  39279. source: "./media/characters/bora/front.svg",
  39280. extra: 1265/1250,
  39281. bottom: 24/1289
  39282. }
  39283. },
  39284. },
  39285. [
  39286. {
  39287. name: "Normal",
  39288. height: math.unit(2 + 9/12, "feet"),
  39289. default: true
  39290. },
  39291. ]
  39292. ))
  39293. characterMakers.push(() => makeCharacter(
  39294. { name: "Myu-myu", species: ["monster"], tags: ["anthro"] },
  39295. {
  39296. front: {
  39297. height: math.unit(8, "feet"),
  39298. name: "Front",
  39299. image: {
  39300. source: "./media/characters/myu-myu/front.svg",
  39301. extra: 1949/1857,
  39302. bottom: 90/2039
  39303. }
  39304. },
  39305. },
  39306. [
  39307. {
  39308. name: "Normal",
  39309. height: math.unit(8, "feet"),
  39310. default: true
  39311. },
  39312. {
  39313. name: "Big",
  39314. height: math.unit(15, "feet")
  39315. },
  39316. {
  39317. name: "BIG",
  39318. height: math.unit(25, "feet")
  39319. },
  39320. ]
  39321. ))
  39322. characterMakers.push(() => makeCharacter(
  39323. { name: "Haloren", species: ["felkin"], tags: ["anthro"] },
  39324. {
  39325. side: {
  39326. height: math.unit(7 + 5/12, "feet"),
  39327. weight: math.unit(2800, "lb"),
  39328. name: "Side",
  39329. image: {
  39330. source: "./media/characters/haloren/side.svg",
  39331. extra: 1793/409,
  39332. bottom: 59/1852
  39333. }
  39334. },
  39335. frontPaw: {
  39336. height: math.unit(2.36, "feet"),
  39337. name: "Front paw",
  39338. image: {
  39339. source: "./media/characters/haloren/front-paw.svg"
  39340. }
  39341. },
  39342. hindPaw: {
  39343. height: math.unit(3.18, "feet"),
  39344. name: "Hind paw",
  39345. image: {
  39346. source: "./media/characters/haloren/hind-paw.svg"
  39347. }
  39348. },
  39349. maw: {
  39350. height: math.unit(5.05, "feet"),
  39351. name: "Maw",
  39352. image: {
  39353. source: "./media/characters/haloren/maw.svg"
  39354. }
  39355. },
  39356. dick: {
  39357. height: math.unit(2.90, "feet"),
  39358. name: "Dick",
  39359. image: {
  39360. source: "./media/characters/haloren/dick.svg"
  39361. }
  39362. },
  39363. },
  39364. [
  39365. {
  39366. name: "Normal",
  39367. height: math.unit(7 + 5/12, "feet"),
  39368. default: true
  39369. },
  39370. {
  39371. name: "Enhanced",
  39372. height: math.unit(14 + 3/12, "feet")
  39373. },
  39374. ]
  39375. ))
  39376. characterMakers.push(() => makeCharacter(
  39377. { name: "Kimmy", species: ["kitsune"], tags: ["anthro"] },
  39378. {
  39379. front: {
  39380. height: math.unit(171, "cm"),
  39381. name: "Front",
  39382. image: {
  39383. source: "./media/characters/kimmy/front.svg",
  39384. extra: 1491/1435,
  39385. bottom: 53/1544
  39386. }
  39387. },
  39388. },
  39389. [
  39390. {
  39391. name: "Small",
  39392. height: math.unit(9, "cm")
  39393. },
  39394. {
  39395. name: "Normal",
  39396. height: math.unit(171, "cm"),
  39397. default: true
  39398. },
  39399. ]
  39400. ))
  39401. characterMakers.push(() => makeCharacter(
  39402. { name: "Galeboomer", species: ["wolf"], tags: ["anthro"] },
  39403. {
  39404. front: {
  39405. height: math.unit(8, "feet"),
  39406. weight: math.unit(300, "lb"),
  39407. name: "Front",
  39408. image: {
  39409. source: "./media/characters/galeboomer/front.svg",
  39410. extra: 4651/4415,
  39411. bottom: 162/4813
  39412. }
  39413. },
  39414. back: {
  39415. height: math.unit(8, "feet"),
  39416. weight: math.unit(300, "lb"),
  39417. name: "Back",
  39418. image: {
  39419. source: "./media/characters/galeboomer/back.svg",
  39420. extra: 4544/4314,
  39421. bottom: 16/4560
  39422. }
  39423. },
  39424. frontAlt: {
  39425. height: math.unit(8, "feet"),
  39426. weight: math.unit(300, "lb"),
  39427. name: "Front (Alt)",
  39428. image: {
  39429. source: "./media/characters/galeboomer/front-alt.svg",
  39430. extra: 4458/4228,
  39431. bottom: 68/4526
  39432. }
  39433. },
  39434. maw: {
  39435. height: math.unit(1.2, "feet"),
  39436. name: "Maw",
  39437. image: {
  39438. source: "./media/characters/galeboomer/maw.svg"
  39439. }
  39440. },
  39441. },
  39442. [
  39443. {
  39444. name: "Normal",
  39445. height: math.unit(8, "feet"),
  39446. default: true
  39447. },
  39448. ]
  39449. ))
  39450. characterMakers.push(() => makeCharacter(
  39451. { name: "Chyr", species: ["fox"], tags: ["anthro"] },
  39452. {
  39453. front: {
  39454. height: math.unit(5 + 9/12, "feet"),
  39455. weight: math.unit(120, "lb"),
  39456. name: "Front",
  39457. image: {
  39458. source: "./media/characters/chyr/front.svg",
  39459. extra: 1323/1254,
  39460. bottom: 63/1386
  39461. }
  39462. },
  39463. back: {
  39464. height: math.unit(5 + 9/12, "feet"),
  39465. weight: math.unit(120, "lb"),
  39466. name: "Back",
  39467. image: {
  39468. source: "./media/characters/chyr/back.svg",
  39469. extra: 1323/1252,
  39470. bottom: 48/1371
  39471. }
  39472. },
  39473. },
  39474. [
  39475. {
  39476. name: "Normal",
  39477. height: math.unit(5 + 9/12, "feet"),
  39478. default: true
  39479. },
  39480. ]
  39481. ))
  39482. characterMakers.push(() => makeCharacter(
  39483. { name: "Solarus", species: ["tykeriel"], tags: ["anthro"] },
  39484. {
  39485. front: {
  39486. height: math.unit(7, "feet"),
  39487. weight: math.unit(310, "lb"),
  39488. name: "Front",
  39489. image: {
  39490. source: "./media/characters/solarus/front.svg",
  39491. extra: 2415/2021,
  39492. bottom: 103/2518
  39493. }
  39494. },
  39495. back: {
  39496. height: math.unit(7, "feet"),
  39497. weight: math.unit(310, "lb"),
  39498. name: "Back",
  39499. image: {
  39500. source: "./media/characters/solarus/back.svg",
  39501. extra: 2463/2089,
  39502. bottom: 79/2542
  39503. }
  39504. },
  39505. },
  39506. [
  39507. {
  39508. name: "Normal",
  39509. height: math.unit(7, "feet"),
  39510. default: true
  39511. },
  39512. ]
  39513. ))
  39514. characterMakers.push(() => makeCharacter(
  39515. { name: "Mutsuju Koizaemon", species: ["snow-leopard", "lynx"], tags: ["anthro"] },
  39516. {
  39517. front: {
  39518. height: math.unit(16, "feet"),
  39519. name: "Front",
  39520. image: {
  39521. source: "./media/characters/mutsuju-koizaemon/front.svg",
  39522. extra: 1844/1780,
  39523. bottom: 58/1902
  39524. }
  39525. },
  39526. winterCoat: {
  39527. height: math.unit(16, "feet"),
  39528. name: "Winter Coat",
  39529. image: {
  39530. source: "./media/characters/mutsuju-koizaemon/winter-coat.svg",
  39531. extra: 1807/1775,
  39532. bottom: 69/1876
  39533. }
  39534. },
  39535. },
  39536. [
  39537. {
  39538. name: "Normal",
  39539. height: math.unit(16, "feet"),
  39540. default: true
  39541. },
  39542. {
  39543. name: "Chicago Size",
  39544. height: math.unit(560, "feet")
  39545. },
  39546. ]
  39547. ))
  39548. characterMakers.push(() => makeCharacter(
  39549. { name: "Lexor", species: ["dragon"], tags: ["anthro"] },
  39550. {
  39551. front: {
  39552. height: math.unit(11 + 6/12, "feet"),
  39553. weight: math.unit(1366, "lb"),
  39554. name: "Front",
  39555. image: {
  39556. source: "./media/characters/lexor/front.svg",
  39557. extra: 1560/1481,
  39558. bottom: 211/1771
  39559. }
  39560. },
  39561. back: {
  39562. height: math.unit(11 + 6/12, "feet"),
  39563. weight: math.unit(1366, "lb"),
  39564. name: "Back",
  39565. image: {
  39566. source: "./media/characters/lexor/back.svg",
  39567. extra: 1614/1533,
  39568. bottom: 76/1690
  39569. }
  39570. },
  39571. maw: {
  39572. height: math.unit(3, "feet"),
  39573. name: "Maw",
  39574. image: {
  39575. source: "./media/characters/lexor/maw.svg"
  39576. }
  39577. },
  39578. dick: {
  39579. height: math.unit(2.59, "feet"),
  39580. name: "Dick",
  39581. image: {
  39582. source: "./media/characters/lexor/dick.svg"
  39583. }
  39584. },
  39585. },
  39586. [
  39587. {
  39588. name: "Normal",
  39589. height: math.unit(11 + 6/12, "feet"),
  39590. default: true
  39591. },
  39592. ]
  39593. ))
  39594. characterMakers.push(() => makeCharacter(
  39595. { name: "Magnum", species: ["folf"], tags: ["anthro"] },
  39596. {
  39597. front: {
  39598. height: math.unit(5 + 8/12, "feet"),
  39599. name: "Front",
  39600. image: {
  39601. source: "./media/characters/magnum/front.svg",
  39602. extra: 942/855,
  39603. bottom: 26/968
  39604. }
  39605. },
  39606. },
  39607. [
  39608. {
  39609. name: "Normal",
  39610. height: math.unit(5 + 8/12, "feet"),
  39611. default: true
  39612. },
  39613. ]
  39614. ))
  39615. characterMakers.push(() => makeCharacter(
  39616. { name: "Solas Sharpsman", species: ["kitsune"], tags: ["anthro"] },
  39617. {
  39618. front: {
  39619. height: math.unit(18 + 4/12, "feet"),
  39620. weight: math.unit(1500, "kg"),
  39621. name: "Front",
  39622. image: {
  39623. source: "./media/characters/solas-sharpsman/front.svg",
  39624. extra: 1698/1589,
  39625. bottom: 0/1698
  39626. }
  39627. },
  39628. },
  39629. [
  39630. {
  39631. name: "Normal",
  39632. height: math.unit(18 + 4/12, "feet"),
  39633. default: true
  39634. },
  39635. ]
  39636. ))
  39637. characterMakers.push(() => makeCharacter(
  39638. { name: "October", species: ["tiger"], tags: ["anthro"] },
  39639. {
  39640. front: {
  39641. height: math.unit(5 + 5/12, "feet"),
  39642. weight: math.unit(180, "lb"),
  39643. name: "Front",
  39644. image: {
  39645. source: "./media/characters/october/front.svg",
  39646. extra: 1800/1650,
  39647. bottom: 0/1800
  39648. }
  39649. },
  39650. frontNsfw: {
  39651. height: math.unit(5 + 5/12, "feet"),
  39652. weight: math.unit(180, "lb"),
  39653. name: "Front (NSFW)",
  39654. image: {
  39655. source: "./media/characters/october/front-nsfw.svg",
  39656. extra: 1392/1307,
  39657. bottom: 42/1434
  39658. }
  39659. },
  39660. },
  39661. [
  39662. {
  39663. name: "Normal",
  39664. height: math.unit(5 + 5/12, "feet"),
  39665. default: true
  39666. },
  39667. ]
  39668. ))
  39669. characterMakers.push(() => makeCharacter(
  39670. { name: "Essynkardi", species: ["dragon"], tags: ["anthro"] },
  39671. {
  39672. front: {
  39673. height: math.unit(8 + 6/12, "feet"),
  39674. name: "Front",
  39675. image: {
  39676. source: "./media/characters/essynkardi/front.svg",
  39677. extra: 1541/1457,
  39678. bottom: 47/1588
  39679. }
  39680. },
  39681. },
  39682. [
  39683. {
  39684. name: "Normal",
  39685. height: math.unit(8 + 6/12, "feet"),
  39686. default: true
  39687. },
  39688. ]
  39689. ))
  39690. characterMakers.push(() => makeCharacter(
  39691. { name: "Icky", species: ["raven", "pooltoy"], tags: ["anthro"] },
  39692. {
  39693. front: {
  39694. height: math.unit(6 + 6/12, "feet"),
  39695. weight: math.unit(7, "lb"),
  39696. name: "Front",
  39697. image: {
  39698. source: "./media/characters/icky/front.svg",
  39699. extra: 813/782,
  39700. bottom: 66/879
  39701. }
  39702. },
  39703. back: {
  39704. height: math.unit(6 + 6/12, "feet"),
  39705. weight: math.unit(7, "lb"),
  39706. name: "Back",
  39707. image: {
  39708. source: "./media/characters/icky/back.svg",
  39709. extra: 754/735,
  39710. bottom: 56/810
  39711. }
  39712. },
  39713. },
  39714. [
  39715. {
  39716. name: "Normal",
  39717. height: math.unit(6 + 6/12, "feet"),
  39718. default: true
  39719. },
  39720. ]
  39721. ))
  39722. characterMakers.push(() => makeCharacter(
  39723. { name: "Rojas", species: ["dragon", "human"], tags: ["anthro"] },
  39724. {
  39725. front: {
  39726. height: math.unit(15, "feet"),
  39727. name: "Front",
  39728. image: {
  39729. source: "./media/characters/rojas/front.svg",
  39730. extra: 1462/1408,
  39731. bottom: 95/1557
  39732. }
  39733. },
  39734. back: {
  39735. height: math.unit(15, "feet"),
  39736. name: "Back",
  39737. image: {
  39738. source: "./media/characters/rojas/back.svg",
  39739. extra: 1023/954,
  39740. bottom: 28/1051
  39741. }
  39742. },
  39743. },
  39744. [
  39745. {
  39746. name: "Normal",
  39747. height: math.unit(15, "feet"),
  39748. default: true
  39749. },
  39750. ]
  39751. ))
  39752. characterMakers.push(() => makeCharacter(
  39753. { name: "Alek Dryagan", species: ["sea-monster", "human", "demi"], tags: ["anthro"] },
  39754. {
  39755. frontHuman: {
  39756. height: math.unit(5 + 7/12, "feet"),
  39757. name: "Front (Human)",
  39758. image: {
  39759. source: "./media/characters/alek-dryagan/front-human.svg",
  39760. extra: 1687/1667,
  39761. bottom: 69/1756
  39762. }
  39763. },
  39764. backHuman: {
  39765. height: math.unit(5 + 7/12, "feet"),
  39766. name: "Back (Human)",
  39767. image: {
  39768. source: "./media/characters/alek-dryagan/back-human.svg",
  39769. extra: 1670/1649,
  39770. bottom: 65/1735
  39771. }
  39772. },
  39773. frontDemi: {
  39774. height: math.unit(65, "feet"),
  39775. name: "Front (Demi)",
  39776. image: {
  39777. source: "./media/characters/alek-dryagan/front-demi.svg",
  39778. extra: 1669/1642,
  39779. bottom: 49/1718
  39780. }
  39781. },
  39782. backDemi: {
  39783. height: math.unit(65, "feet"),
  39784. name: "Back (Demi)",
  39785. image: {
  39786. source: "./media/characters/alek-dryagan/back-demi.svg",
  39787. extra: 1658/1637,
  39788. bottom: 40/1698
  39789. }
  39790. },
  39791. mawHuman: {
  39792. height: math.unit(0.3, "feet"),
  39793. name: "Maw (Human)",
  39794. image: {
  39795. source: "./media/characters/alek-dryagan/maw-human.svg"
  39796. }
  39797. },
  39798. mawDemi: {
  39799. height: math.unit(3.8, "feet"),
  39800. name: "Maw (Demi)",
  39801. image: {
  39802. source: "./media/characters/alek-dryagan/maw-demi.svg"
  39803. }
  39804. },
  39805. },
  39806. [
  39807. {
  39808. name: "Normal",
  39809. height: math.unit(5 + 7/12, "feet"),
  39810. default: true
  39811. },
  39812. ]
  39813. ))
  39814. characterMakers.push(() => makeCharacter(
  39815. { name: "Gen", species: ["cat", "human", "demi"], tags: ["anthro"] },
  39816. {
  39817. frontHuman: {
  39818. height: math.unit(5 + 2/12, "feet"),
  39819. name: "Front (Human)",
  39820. image: {
  39821. source: "./media/characters/gen/front-human.svg",
  39822. extra: 1627/1538,
  39823. bottom: 71/1698
  39824. }
  39825. },
  39826. backHuman: {
  39827. height: math.unit(5 + 2/12, "feet"),
  39828. name: "Back (Human)",
  39829. image: {
  39830. source: "./media/characters/gen/back-human.svg",
  39831. extra: 1638/1548,
  39832. bottom: 69/1707
  39833. }
  39834. },
  39835. frontDemi: {
  39836. height: math.unit(5 + 2/12, "feet"),
  39837. name: "Front (Demi)",
  39838. image: {
  39839. source: "./media/characters/gen/front-demi.svg",
  39840. extra: 1627/1538,
  39841. bottom: 71/1698
  39842. }
  39843. },
  39844. backDemi: {
  39845. height: math.unit(5 + 2/12, "feet"),
  39846. name: "Back (Demi)",
  39847. image: {
  39848. source: "./media/characters/gen/back-demi.svg",
  39849. extra: 1638/1548,
  39850. bottom: 69/1707
  39851. }
  39852. },
  39853. },
  39854. [
  39855. {
  39856. name: "Normal",
  39857. height: math.unit(5 + 2/12, "feet"),
  39858. default: true
  39859. },
  39860. ]
  39861. ))
  39862. characterMakers.push(() => makeCharacter(
  39863. { name: "Max Kobold", species: ["imp", "human", "demi"], tags: ["anthro"] },
  39864. {
  39865. frontImp: {
  39866. height: math.unit(1 + 11/12, "feet"),
  39867. name: "Front (Imp)",
  39868. image: {
  39869. source: "./media/characters/max-kobold/front-imp.svg",
  39870. extra: 1238/1134,
  39871. bottom: 81/1319
  39872. }
  39873. },
  39874. backImp: {
  39875. height: math.unit(1 + 11/12, "feet"),
  39876. name: "Back (Imp)",
  39877. image: {
  39878. source: "./media/characters/max-kobold/back-imp.svg",
  39879. extra: 1334/1175,
  39880. bottom: 34/1368
  39881. }
  39882. },
  39883. frontDemi: {
  39884. height: math.unit(5 + 9/12, "feet"),
  39885. name: "Front (Demi)",
  39886. image: {
  39887. source: "./media/characters/max-kobold/front-demi.svg",
  39888. extra: 1715/1685,
  39889. bottom: 54/1769
  39890. }
  39891. },
  39892. backDemi: {
  39893. height: math.unit(5 + 9/12, "feet"),
  39894. name: "Back (Demi)",
  39895. image: {
  39896. source: "./media/characters/max-kobold/back-demi.svg",
  39897. extra: 1752/1729,
  39898. bottom: 41/1793
  39899. }
  39900. },
  39901. handImp: {
  39902. height: math.unit(0.45, "feet"),
  39903. name: "Hand (Imp)",
  39904. image: {
  39905. source: "./media/characters/max-kobold/hand.svg"
  39906. }
  39907. },
  39908. pawImp: {
  39909. height: math.unit(0.46, "feet"),
  39910. name: "Paw (Imp)",
  39911. image: {
  39912. source: "./media/characters/max-kobold/paw.svg"
  39913. }
  39914. },
  39915. handDemi: {
  39916. height: math.unit(0.80, "feet"),
  39917. name: "Hand (Demi)",
  39918. image: {
  39919. source: "./media/characters/max-kobold/hand.svg"
  39920. }
  39921. },
  39922. pawDemi: {
  39923. height: math.unit(1.1, "feet"),
  39924. name: "Paw (Demi)",
  39925. image: {
  39926. source: "./media/characters/max-kobold/paw.svg"
  39927. }
  39928. },
  39929. headImp: {
  39930. height: math.unit(1.33, "feet"),
  39931. name: "Head (Imp)",
  39932. image: {
  39933. source: "./media/characters/max-kobold/head-imp.svg"
  39934. }
  39935. },
  39936. mawImp: {
  39937. height: math.unit(0.75, "feet"),
  39938. name: "Maw (Imp)",
  39939. image: {
  39940. source: "./media/characters/max-kobold/maw-imp.svg"
  39941. }
  39942. },
  39943. mawDemi: {
  39944. height: math.unit(0.42, "feet"),
  39945. name: "Maw (Demi)",
  39946. image: {
  39947. source: "./media/characters/max-kobold/maw-demi.svg"
  39948. }
  39949. },
  39950. },
  39951. [
  39952. {
  39953. name: "Normal",
  39954. height: math.unit(1 + 11/12, "feet"),
  39955. default: true
  39956. },
  39957. ]
  39958. ))
  39959. characterMakers.push(() => makeCharacter(
  39960. { name: "Carbon", species: ["charizard", "demi"], tags: ["anthro"] },
  39961. {
  39962. front: {
  39963. height: math.unit(7 + 5/12, "feet"),
  39964. name: "Front",
  39965. image: {
  39966. source: "./media/characters/carbon/front.svg",
  39967. extra: 1754/1689,
  39968. bottom: 65/1819
  39969. }
  39970. },
  39971. back: {
  39972. height: math.unit(7 + 5/12, "feet"),
  39973. name: "Back",
  39974. image: {
  39975. source: "./media/characters/carbon/back.svg",
  39976. extra: 1762/1695,
  39977. bottom: 24/1786
  39978. }
  39979. },
  39980. frontGigantamax: {
  39981. height: math.unit(150, "feet"),
  39982. name: "Front (Gigantamax)",
  39983. image: {
  39984. source: "./media/characters/carbon/front-gigantamax.svg",
  39985. extra: 1826/1669,
  39986. bottom: 59/1885
  39987. }
  39988. },
  39989. backGigantamax: {
  39990. height: math.unit(150, "feet"),
  39991. name: "Back (Gigantamax)",
  39992. image: {
  39993. source: "./media/characters/carbon/back-gigantamax.svg",
  39994. extra: 1796/1653,
  39995. bottom: 53/1849
  39996. }
  39997. },
  39998. maw: {
  39999. height: math.unit(0.48, "feet"),
  40000. name: "Maw",
  40001. image: {
  40002. source: "./media/characters/carbon/maw.svg"
  40003. }
  40004. },
  40005. mawGigantamax: {
  40006. height: math.unit(7.5, "feet"),
  40007. name: "Maw (Gigantamax)",
  40008. image: {
  40009. source: "./media/characters/carbon/maw-gigantamax.svg"
  40010. }
  40011. },
  40012. },
  40013. [
  40014. {
  40015. name: "Normal",
  40016. height: math.unit(7 + 5/12, "feet"),
  40017. default: true
  40018. },
  40019. ]
  40020. ))
  40021. characterMakers.push(() => makeCharacter(
  40022. { name: "Maverick", species: ["salazzle", "demi"], tags: ["anthro"] },
  40023. {
  40024. front: {
  40025. height: math.unit(6, "feet"),
  40026. name: "Front",
  40027. image: {
  40028. source: "./media/characters/maverick/front.svg",
  40029. extra: 1672/1661,
  40030. bottom: 85/1757
  40031. }
  40032. },
  40033. back: {
  40034. height: math.unit(6, "feet"),
  40035. name: "Back",
  40036. image: {
  40037. source: "./media/characters/maverick/back.svg",
  40038. extra: 1642/1631,
  40039. bottom: 38/1680
  40040. }
  40041. },
  40042. },
  40043. [
  40044. {
  40045. name: "Normal",
  40046. height: math.unit(6, "feet"),
  40047. default: true
  40048. },
  40049. ]
  40050. ))
  40051. characterMakers.push(() => makeCharacter(
  40052. { name: "Grockle", species: ["stegosaurus"], tags: ["anthro"] },
  40053. {
  40054. front: {
  40055. height: math.unit(15, "feet"),
  40056. weight: math.unit(615, "lb"),
  40057. name: "Front",
  40058. image: {
  40059. source: "./media/characters/grockle/front.svg",
  40060. extra: 1535/1427,
  40061. bottom: 56/1591
  40062. }
  40063. },
  40064. },
  40065. [
  40066. {
  40067. name: "Normal",
  40068. height: math.unit(15, "feet"),
  40069. default: true
  40070. },
  40071. {
  40072. name: "Large",
  40073. height: math.unit(150, "feet")
  40074. },
  40075. {
  40076. name: "Macro",
  40077. height: math.unit(1876, "feet")
  40078. },
  40079. {
  40080. name: "Mega Macro",
  40081. height: math.unit(121940, "feet")
  40082. },
  40083. {
  40084. name: "Giga Macro",
  40085. height: math.unit(750, "km")
  40086. },
  40087. {
  40088. name: "Tera Macro",
  40089. height: math.unit(750000, "km")
  40090. },
  40091. {
  40092. name: "Galactic",
  40093. height: math.unit(1.4e5, "km")
  40094. },
  40095. {
  40096. name: "Godlike",
  40097. height: math.unit(9.8e280, "galaxies")
  40098. },
  40099. ]
  40100. ))
  40101. characterMakers.push(() => makeCharacter(
  40102. { name: "Alistair", species: ["dragon"], tags: ["anthro"] },
  40103. {
  40104. front: {
  40105. height: math.unit(11, "meters"),
  40106. weight: math.unit(20, "tonnes"),
  40107. name: "Front",
  40108. image: {
  40109. source: "./media/characters/alistair/front.svg",
  40110. extra: 1265/1009,
  40111. bottom: 93/1358
  40112. }
  40113. },
  40114. },
  40115. [
  40116. {
  40117. name: "Normal",
  40118. height: math.unit(11, "meters"),
  40119. default: true
  40120. },
  40121. ]
  40122. ))
  40123. characterMakers.push(() => makeCharacter(
  40124. { name: "Haruka", species: ["raptor"], tags: ["anthro"] },
  40125. {
  40126. front: {
  40127. height: math.unit(5 + 8/12, "feet"),
  40128. name: "Front",
  40129. image: {
  40130. source: "./media/characters/haruka/front.svg",
  40131. extra: 2012/1952,
  40132. bottom: 0/2012
  40133. }
  40134. },
  40135. },
  40136. [
  40137. {
  40138. name: "Normal",
  40139. height: math.unit(5 + 8/12, "feet"),
  40140. default: true
  40141. },
  40142. ]
  40143. ))
  40144. characterMakers.push(() => makeCharacter(
  40145. { name: "Vivian Sylveon", species: ["sylveon", "computer-virus"], tags: ["anthro"] },
  40146. {
  40147. back: {
  40148. height: math.unit(9, "feet"),
  40149. name: "Back",
  40150. image: {
  40151. source: "./media/characters/vivian-sylveon/back.svg",
  40152. extra: 1853/1714,
  40153. bottom: 0/1853
  40154. }
  40155. },
  40156. hyper: {
  40157. height: math.unit(5.58, "feet"),
  40158. name: "Hyper",
  40159. preyCapacity: math.unit(2.80616218797, "m^3"),
  40160. image: {
  40161. source: "./media/characters/vivian-sylveon/hyper.svg",
  40162. extra: 999/676,
  40163. bottom: 697/1696
  40164. },
  40165. },
  40166. paw: {
  40167. height: math.unit(1.8, "feet"),
  40168. name: "Paw",
  40169. image: {
  40170. source: "./media/characters/vivian-sylveon/paw.svg"
  40171. }
  40172. },
  40173. danger: {
  40174. height: math.unit(7.5, "feet"),
  40175. name: "DANGER",
  40176. image: {
  40177. source: "./media/characters/vivian-sylveon/danger.svg"
  40178. }
  40179. },
  40180. },
  40181. [
  40182. {
  40183. name: "Normal",
  40184. height: math.unit(9, "feet"),
  40185. default: true
  40186. },
  40187. {
  40188. name: "Macro",
  40189. height: math.unit(500, "feet")
  40190. },
  40191. {
  40192. name: "Megamacro",
  40193. height: math.unit(600, "miles")
  40194. },
  40195. {
  40196. name: "Gigamacro",
  40197. height: math.unit(30000, "miles")
  40198. },
  40199. ]
  40200. ))
  40201. characterMakers.push(() => makeCharacter(
  40202. { name: "Daiki", species: ["bat", "dragon"], tags: ["anthro" ,"feral"] },
  40203. {
  40204. anthro: {
  40205. height: math.unit(5 + 10/12, "feet"),
  40206. weight: math.unit(100, "lb"),
  40207. name: "Anthro",
  40208. image: {
  40209. source: "./media/characters/daiki/anthro.svg",
  40210. extra: 1115/1027,
  40211. bottom: 69/1184
  40212. }
  40213. },
  40214. feral: {
  40215. height: math.unit(200, "feet"),
  40216. name: "Feral",
  40217. image: {
  40218. source: "./media/characters/daiki/feral.svg",
  40219. extra: 1256/313,
  40220. bottom: 39/1295
  40221. }
  40222. },
  40223. feralHead: {
  40224. height: math.unit(171, "feet"),
  40225. name: "Feral Head",
  40226. image: {
  40227. source: "./media/characters/daiki/feral-head.svg"
  40228. }
  40229. },
  40230. manaDragon: {
  40231. height: math.unit(170, "meters"),
  40232. name: "Mana-dragon",
  40233. image: {
  40234. source: "./media/characters/daiki/mana-dragon.svg",
  40235. extra: 763/420,
  40236. bottom: 97/860
  40237. }
  40238. },
  40239. },
  40240. [
  40241. {
  40242. name: "Normal",
  40243. height: math.unit(5 + 10/12, "feet"),
  40244. default: true
  40245. },
  40246. ]
  40247. ))
  40248. characterMakers.push(() => makeCharacter(
  40249. { name: "Tea Spot", species: ["space-springhare"], tags: ["anthro"] },
  40250. {
  40251. fullyEquippedFront: {
  40252. height: math.unit(3 + 1/12, "feet"),
  40253. weight: math.unit(24, "lb"),
  40254. name: "Fully Equipped (Front)",
  40255. image: {
  40256. source: "./media/characters/tea-spot/fully-equipped-front.svg",
  40257. extra: 687/605,
  40258. bottom: 18/705
  40259. }
  40260. },
  40261. fullyEquippedBack: {
  40262. height: math.unit(3 + 1/12, "feet"),
  40263. weight: math.unit(24, "lb"),
  40264. name: "Fully Equipped (Back)",
  40265. image: {
  40266. source: "./media/characters/tea-spot/fully-equipped-back.svg",
  40267. extra: 689/590,
  40268. bottom: 18/707
  40269. }
  40270. },
  40271. dailyWear: {
  40272. height: math.unit(3 + 1/12, "feet"),
  40273. weight: math.unit(24, "lb"),
  40274. name: "Daily Wear",
  40275. image: {
  40276. source: "./media/characters/tea-spot/daily-wear.svg",
  40277. extra: 701/620,
  40278. bottom: 21/722
  40279. }
  40280. },
  40281. maidWork: {
  40282. height: math.unit(3 + 1/12, "feet"),
  40283. weight: math.unit(24, "lb"),
  40284. name: "Maid Work",
  40285. image: {
  40286. source: "./media/characters/tea-spot/maid-work.svg",
  40287. extra: 693/609,
  40288. bottom: 15/708
  40289. }
  40290. },
  40291. },
  40292. [
  40293. {
  40294. name: "Normal",
  40295. height: math.unit(3 + 1/12, "feet"),
  40296. default: true
  40297. },
  40298. ]
  40299. ))
  40300. characterMakers.push(() => makeCharacter(
  40301. { name: "Chee", species: ["cheetah"], tags: ["anthro"] },
  40302. {
  40303. front: {
  40304. height: math.unit(175, "cm"),
  40305. weight: math.unit(75, "kg"),
  40306. name: "Front",
  40307. image: {
  40308. source: "./media/characters/chee/front.svg",
  40309. extra: 1796/1740,
  40310. bottom: 40/1836
  40311. }
  40312. },
  40313. },
  40314. [
  40315. {
  40316. name: "Micro-Micro",
  40317. height: math.unit(1, "nm")
  40318. },
  40319. {
  40320. name: "Micro-erst",
  40321. height: math.unit(1, "micrometer")
  40322. },
  40323. {
  40324. name: "Micro-er",
  40325. height: math.unit(1, "cm")
  40326. },
  40327. {
  40328. name: "Normal",
  40329. height: math.unit(175, "cm"),
  40330. default: true
  40331. },
  40332. {
  40333. name: "Macro",
  40334. height: math.unit(100, "m")
  40335. },
  40336. {
  40337. name: "Macro-er",
  40338. height: math.unit(1, "km")
  40339. },
  40340. {
  40341. name: "Macro-erst",
  40342. height: math.unit(10, "km")
  40343. },
  40344. {
  40345. name: "Macro-Macro",
  40346. height: math.unit(100, "km")
  40347. },
  40348. ]
  40349. ))
  40350. characterMakers.push(() => makeCharacter(
  40351. { name: "Kingsley", species: ["dragon"], tags: ["anthro"] },
  40352. {
  40353. front: {
  40354. height: math.unit(11 + 9/12, "feet"),
  40355. weight: math.unit(935, "lb"),
  40356. name: "Front",
  40357. image: {
  40358. source: "./media/characters/kingsley/front.svg",
  40359. extra: 1803/1674,
  40360. bottom: 127/1930
  40361. }
  40362. },
  40363. frontNude: {
  40364. height: math.unit(11 + 9/12, "feet"),
  40365. weight: math.unit(935, "lb"),
  40366. name: "Front (Nude)",
  40367. image: {
  40368. source: "./media/characters/kingsley/front-nude.svg",
  40369. extra: 1803/1674,
  40370. bottom: 127/1930
  40371. }
  40372. },
  40373. },
  40374. [
  40375. {
  40376. name: "Normal",
  40377. height: math.unit(11 + 9/12, "feet"),
  40378. default: true
  40379. },
  40380. ]
  40381. ))
  40382. characterMakers.push(() => makeCharacter(
  40383. { name: "Rymel", species: ["river-drake"], tags: ["feral"] },
  40384. {
  40385. side: {
  40386. height: math.unit(9, "feet"),
  40387. name: "Side",
  40388. image: {
  40389. source: "./media/characters/rymel/side.svg",
  40390. extra: 792/469,
  40391. bottom: 121/913
  40392. }
  40393. },
  40394. maw: {
  40395. height: math.unit(2.4, "meters"),
  40396. name: "Maw",
  40397. image: {
  40398. source: "./media/characters/rymel/maw.svg"
  40399. }
  40400. },
  40401. },
  40402. [
  40403. {
  40404. name: "House Drake",
  40405. height: math.unit(2, "feet")
  40406. },
  40407. {
  40408. name: "Reduced",
  40409. height: math.unit(4.5, "feet")
  40410. },
  40411. {
  40412. name: "Normal",
  40413. height: math.unit(9, "feet"),
  40414. default: true
  40415. },
  40416. ]
  40417. ))
  40418. characterMakers.push(() => makeCharacter(
  40419. { name: "Rubus", species: ["plant", "dragon", "construct"], tags: ["anthro"] },
  40420. {
  40421. front: {
  40422. height: math.unit(1.74, "meters"),
  40423. weight: math.unit(55, "kg"),
  40424. name: "Front",
  40425. image: {
  40426. source: "./media/characters/rubus/front.svg",
  40427. extra: 1894/1742,
  40428. bottom: 44/1938
  40429. }
  40430. },
  40431. },
  40432. [
  40433. {
  40434. name: "Normal",
  40435. height: math.unit(1.74, "meters"),
  40436. default: true
  40437. },
  40438. ]
  40439. ))
  40440. characterMakers.push(() => makeCharacter(
  40441. { name: "Cassie Kingston", species: ["border-collie"], tags: ["anthro"] },
  40442. {
  40443. front: {
  40444. height: math.unit(5 + 2/12, "feet"),
  40445. weight: math.unit(112, "lb"),
  40446. name: "Front",
  40447. image: {
  40448. source: "./media/characters/cassie-kingston/front.svg",
  40449. extra: 1438/1390,
  40450. bottom: 47/1485
  40451. }
  40452. },
  40453. },
  40454. [
  40455. {
  40456. name: "Normal",
  40457. height: math.unit(5 + 2/12, "feet"),
  40458. default: true
  40459. },
  40460. {
  40461. name: "Macro",
  40462. height: math.unit(128, "feet")
  40463. },
  40464. {
  40465. name: "Megamacro",
  40466. height: math.unit(2.56, "miles")
  40467. },
  40468. ]
  40469. ))
  40470. characterMakers.push(() => makeCharacter(
  40471. { name: "Fox", species: ["fox"], tags: ["anthro"] },
  40472. {
  40473. front: {
  40474. height: math.unit(7, "feet"),
  40475. name: "Front",
  40476. image: {
  40477. source: "./media/characters/fox/front.svg",
  40478. extra: 1798/1703,
  40479. bottom: 55/1853
  40480. }
  40481. },
  40482. back: {
  40483. height: math.unit(7, "feet"),
  40484. name: "Back",
  40485. image: {
  40486. source: "./media/characters/fox/back.svg",
  40487. extra: 1748/1649,
  40488. bottom: 32/1780
  40489. }
  40490. },
  40491. head: {
  40492. height: math.unit(1.95, "feet"),
  40493. name: "Head",
  40494. image: {
  40495. source: "./media/characters/fox/head.svg"
  40496. }
  40497. },
  40498. dick: {
  40499. height: math.unit(1.33, "feet"),
  40500. name: "Dick",
  40501. image: {
  40502. source: "./media/characters/fox/dick.svg"
  40503. }
  40504. },
  40505. foot: {
  40506. height: math.unit(1, "feet"),
  40507. name: "Foot",
  40508. image: {
  40509. source: "./media/characters/fox/foot.svg"
  40510. }
  40511. },
  40512. paw: {
  40513. height: math.unit(0.92, "feet"),
  40514. name: "Paw",
  40515. image: {
  40516. source: "./media/characters/fox/paw.svg"
  40517. }
  40518. },
  40519. },
  40520. [
  40521. {
  40522. name: "Small",
  40523. height: math.unit(3, "inches")
  40524. },
  40525. {
  40526. name: "\"Realistic\"",
  40527. height: math.unit(7, "feet")
  40528. },
  40529. {
  40530. name: "Normal",
  40531. height: math.unit(150, "feet"),
  40532. default: true
  40533. },
  40534. {
  40535. name: "BIG",
  40536. height: math.unit(1200, "feet")
  40537. },
  40538. {
  40539. name: "👀",
  40540. height: math.unit(5, "miles")
  40541. },
  40542. {
  40543. name: "👀👀👀",
  40544. height: math.unit(64, "miles")
  40545. },
  40546. ]
  40547. ))
  40548. characterMakers.push(() => makeCharacter(
  40549. { name: "Asonja Rossa", species: ["wolf", "dragon"], tags: ["anthro"] },
  40550. {
  40551. front: {
  40552. height: math.unit(625, "feet"),
  40553. name: "Front",
  40554. image: {
  40555. source: "./media/characters/asonja-rossa/front.svg",
  40556. extra: 1833/1686,
  40557. bottom: 24/1857
  40558. }
  40559. },
  40560. back: {
  40561. height: math.unit(625, "feet"),
  40562. name: "Back",
  40563. image: {
  40564. source: "./media/characters/asonja-rossa/back.svg",
  40565. extra: 1852/1753,
  40566. bottom: 26/1878
  40567. }
  40568. },
  40569. },
  40570. [
  40571. {
  40572. name: "Macro",
  40573. height: math.unit(625, "feet"),
  40574. default: true
  40575. },
  40576. ]
  40577. ))
  40578. characterMakers.push(() => makeCharacter(
  40579. { name: "Rezukii", species: ["dragon"], tags: ["feral"] },
  40580. {
  40581. side: {
  40582. height: math.unit(8, "feet"),
  40583. name: "Side",
  40584. image: {
  40585. source: "./media/characters/rezukii/side.svg",
  40586. extra: 979/542,
  40587. bottom: 87/1066
  40588. }
  40589. },
  40590. sitting: {
  40591. height: math.unit(14.6, "feet"),
  40592. name: "Sitting",
  40593. image: {
  40594. source: "./media/characters/rezukii/sitting.svg",
  40595. extra: 1023/813,
  40596. bottom: 45/1068
  40597. }
  40598. },
  40599. },
  40600. [
  40601. {
  40602. name: "Tiny",
  40603. height: math.unit(2, "feet")
  40604. },
  40605. {
  40606. name: "Smol",
  40607. height: math.unit(4, "feet")
  40608. },
  40609. {
  40610. name: "Normal",
  40611. height: math.unit(8, "feet"),
  40612. default: true
  40613. },
  40614. {
  40615. name: "Big",
  40616. height: math.unit(12, "feet")
  40617. },
  40618. {
  40619. name: "Macro",
  40620. height: math.unit(30, "feet")
  40621. },
  40622. ]
  40623. ))
  40624. characterMakers.push(() => makeCharacter(
  40625. { name: "Dawnheart", species: ["horse"], tags: ["anthro"] },
  40626. {
  40627. front: {
  40628. height: math.unit(14, "feet"),
  40629. weight: math.unit(9.5, "tonnes"),
  40630. name: "Front",
  40631. image: {
  40632. source: "./media/characters/dawnheart/front.svg",
  40633. extra: 2792/2675,
  40634. bottom: 64/2856
  40635. }
  40636. },
  40637. },
  40638. [
  40639. {
  40640. name: "Normal",
  40641. height: math.unit(14, "feet"),
  40642. default: true
  40643. },
  40644. ]
  40645. ))
  40646. characterMakers.push(() => makeCharacter(
  40647. { name: "Gladi", species: ["cat" ,"dragon"], tags: ["anthro", "feral"] },
  40648. {
  40649. front: {
  40650. height: math.unit(1.7, "m"),
  40651. name: "Front",
  40652. image: {
  40653. source: "./media/characters/gladi/front.svg",
  40654. extra: 1460/1362,
  40655. bottom: 19/1479
  40656. }
  40657. },
  40658. back: {
  40659. height: math.unit(1.7, "m"),
  40660. name: "Back",
  40661. image: {
  40662. source: "./media/characters/gladi/back.svg",
  40663. extra: 1459/1357,
  40664. bottom: 12/1471
  40665. }
  40666. },
  40667. feral: {
  40668. height: math.unit(2.05, "m"),
  40669. name: "Feral",
  40670. image: {
  40671. source: "./media/characters/gladi/feral.svg",
  40672. extra: 821/557,
  40673. bottom: 91/912
  40674. }
  40675. },
  40676. },
  40677. [
  40678. {
  40679. name: "Shortest",
  40680. height: math.unit(70, "cm")
  40681. },
  40682. {
  40683. name: "Normal",
  40684. height: math.unit(1.7, "m")
  40685. },
  40686. {
  40687. name: "Macro",
  40688. height: math.unit(10, "m"),
  40689. default: true
  40690. },
  40691. {
  40692. name: "Tallest",
  40693. height: math.unit(200, "m")
  40694. },
  40695. ]
  40696. ))
  40697. characterMakers.push(() => makeCharacter(
  40698. { name: "Erdno", species: ["mouse", "djinn"], tags: ["anthro"] },
  40699. {
  40700. front: {
  40701. height: math.unit(5 + 7/12, "feet"),
  40702. weight: math.unit(2, "tons"),
  40703. name: "Front",
  40704. image: {
  40705. source: "./media/characters/erdno/front.svg",
  40706. extra: 1234/1129,
  40707. bottom: 35/1269
  40708. }
  40709. },
  40710. angled: {
  40711. height: math.unit(5 + 7/12, "feet"),
  40712. weight: math.unit(2, "tons"),
  40713. name: "Angled",
  40714. image: {
  40715. source: "./media/characters/erdno/angled.svg",
  40716. extra: 1185/1139,
  40717. bottom: 36/1221
  40718. }
  40719. },
  40720. side: {
  40721. height: math.unit(5 + 7/12, "feet"),
  40722. weight: math.unit(2, "tons"),
  40723. name: "Side",
  40724. image: {
  40725. source: "./media/characters/erdno/side.svg",
  40726. extra: 1191/1144,
  40727. bottom: 40/1231
  40728. }
  40729. },
  40730. back: {
  40731. height: math.unit(5 + 7/12, "feet"),
  40732. weight: math.unit(2, "tons"),
  40733. name: "Back",
  40734. image: {
  40735. source: "./media/characters/erdno/back.svg",
  40736. extra: 1202/1146,
  40737. bottom: 17/1219
  40738. }
  40739. },
  40740. frontNsfw: {
  40741. height: math.unit(5 + 7/12, "feet"),
  40742. weight: math.unit(2, "tons"),
  40743. name: "Front (NSFW)",
  40744. image: {
  40745. source: "./media/characters/erdno/front-nsfw.svg",
  40746. extra: 1234/1129,
  40747. bottom: 35/1269
  40748. }
  40749. },
  40750. angledNsfw: {
  40751. height: math.unit(5 + 7/12, "feet"),
  40752. weight: math.unit(2, "tons"),
  40753. name: "Angled (NSFW)",
  40754. image: {
  40755. source: "./media/characters/erdno/angled-nsfw.svg",
  40756. extra: 1185/1139,
  40757. bottom: 36/1221
  40758. }
  40759. },
  40760. sideNsfw: {
  40761. height: math.unit(5 + 7/12, "feet"),
  40762. weight: math.unit(2, "tons"),
  40763. name: "Side (NSFW)",
  40764. image: {
  40765. source: "./media/characters/erdno/side-nsfw.svg",
  40766. extra: 1191/1144,
  40767. bottom: 40/1231
  40768. }
  40769. },
  40770. backNsfw: {
  40771. height: math.unit(5 + 7/12, "feet"),
  40772. weight: math.unit(2, "tons"),
  40773. name: "Back (NSFW)",
  40774. image: {
  40775. source: "./media/characters/erdno/back-nsfw.svg",
  40776. extra: 1202/1146,
  40777. bottom: 17/1219
  40778. }
  40779. },
  40780. frontHyper: {
  40781. height: math.unit(5 + 7/12, "feet"),
  40782. weight: math.unit(2, "tons"),
  40783. name: "Front (Hyper)",
  40784. image: {
  40785. source: "./media/characters/erdno/front-hyper.svg",
  40786. extra: 1298/1136,
  40787. bottom: 35/1333
  40788. }
  40789. },
  40790. },
  40791. [
  40792. {
  40793. name: "Normal",
  40794. height: math.unit(5 + 7/12, "feet"),
  40795. default: true
  40796. },
  40797. {
  40798. name: "Big",
  40799. height: math.unit(5.7, "meters")
  40800. },
  40801. {
  40802. name: "Macro",
  40803. height: math.unit(5.7, "kilometers")
  40804. },
  40805. {
  40806. name: "Megamacro",
  40807. height: math.unit(5.7, "earths")
  40808. },
  40809. ]
  40810. ))
  40811. characterMakers.push(() => makeCharacter(
  40812. { name: "Jamie", species: ["fox"], tags: ["anthro"] },
  40813. {
  40814. front: {
  40815. height: math.unit(5 + 10/12, "feet"),
  40816. weight: math.unit(150, "lb"),
  40817. name: "Front",
  40818. image: {
  40819. source: "./media/characters/jamie/front.svg",
  40820. extra: 1908/1768,
  40821. bottom: 19/1927
  40822. }
  40823. },
  40824. },
  40825. [
  40826. {
  40827. name: "Minimum",
  40828. height: math.unit(2, "cm")
  40829. },
  40830. {
  40831. name: "Micro",
  40832. height: math.unit(3, "inches")
  40833. },
  40834. {
  40835. name: "Normal",
  40836. height: math.unit(5 + 10/12, "feet"),
  40837. default: true
  40838. },
  40839. {
  40840. name: "Macro",
  40841. height: math.unit(150, "feet")
  40842. },
  40843. {
  40844. name: "Megamacro",
  40845. height: math.unit(10000, "m")
  40846. },
  40847. ]
  40848. ))
  40849. characterMakers.push(() => makeCharacter(
  40850. { name: "Shiron", species: ["wolf"], tags: ["anthro"] },
  40851. {
  40852. front: {
  40853. height: math.unit(2, "meters"),
  40854. weight: math.unit(100, "kg"),
  40855. name: "Front",
  40856. image: {
  40857. source: "./media/characters/shiron/front.svg",
  40858. extra: 2103/1985,
  40859. bottom: 98/2201
  40860. }
  40861. },
  40862. back: {
  40863. height: math.unit(2, "meters"),
  40864. weight: math.unit(100, "kg"),
  40865. name: "Back",
  40866. image: {
  40867. source: "./media/characters/shiron/back.svg",
  40868. extra: 2110/2015,
  40869. bottom: 89/2199
  40870. }
  40871. },
  40872. hand: {
  40873. height: math.unit(0.96, "feet"),
  40874. name: "Hand",
  40875. image: {
  40876. source: "./media/characters/shiron/hand.svg"
  40877. }
  40878. },
  40879. foot: {
  40880. height: math.unit(1.464, "feet"),
  40881. name: "Foot",
  40882. image: {
  40883. source: "./media/characters/shiron/foot.svg"
  40884. }
  40885. },
  40886. },
  40887. [
  40888. {
  40889. name: "Normal",
  40890. height: math.unit(2, "meters")
  40891. },
  40892. {
  40893. name: "Macro",
  40894. height: math.unit(500, "meters"),
  40895. default: true
  40896. },
  40897. {
  40898. name: "Megamacro",
  40899. height: math.unit(20, "km")
  40900. },
  40901. ]
  40902. ))
  40903. characterMakers.push(() => makeCharacter(
  40904. { name: "Sam", species: ["red-panda"], tags: ["anthro"] },
  40905. {
  40906. front: {
  40907. height: math.unit(6, "feet"),
  40908. name: "Front",
  40909. image: {
  40910. source: "./media/characters/sam/front.svg",
  40911. extra: 849/826,
  40912. bottom: 19/868
  40913. }
  40914. },
  40915. },
  40916. [
  40917. {
  40918. name: "Normal",
  40919. height: math.unit(6, "feet"),
  40920. default: true
  40921. },
  40922. ]
  40923. ))
  40924. characterMakers.push(() => makeCharacter(
  40925. { name: "Namori Kurogawa", species: ["fox"], tags: ["anthro"] },
  40926. {
  40927. front: {
  40928. height: math.unit(8 + 4/12, "feet"),
  40929. weight: math.unit(122, "kg"),
  40930. name: "Front",
  40931. image: {
  40932. source: "./media/characters/namori-kurogawa/front.svg",
  40933. extra: 1894/1576,
  40934. bottom: 34/1928
  40935. }
  40936. },
  40937. },
  40938. [
  40939. {
  40940. name: "Normal",
  40941. height: math.unit(8 + 4/12, "feet"),
  40942. default: true
  40943. },
  40944. ]
  40945. ))
  40946. characterMakers.push(() => makeCharacter(
  40947. { name: "Unmru", species: ["horse", "demon"], tags: ["anthro"] },
  40948. {
  40949. front: {
  40950. height: math.unit(9, "feet"),
  40951. weight: math.unit(621, "lb"),
  40952. name: "Front",
  40953. image: {
  40954. source: "./media/characters/unmru/front.svg",
  40955. extra: 1853/1747,
  40956. bottom: 73/1926
  40957. }
  40958. },
  40959. side: {
  40960. height: math.unit(9, "feet"),
  40961. weight: math.unit(621, "lb"),
  40962. name: "Side",
  40963. image: {
  40964. source: "./media/characters/unmru/side.svg",
  40965. extra: 1781/1671,
  40966. bottom: 127/1908
  40967. }
  40968. },
  40969. back: {
  40970. height: math.unit(9, "feet"),
  40971. weight: math.unit(621, "lb"),
  40972. name: "Back",
  40973. image: {
  40974. source: "./media/characters/unmru/back.svg",
  40975. extra: 1894/1765,
  40976. bottom: 75/1969
  40977. }
  40978. },
  40979. dick: {
  40980. height: math.unit(3, "feet"),
  40981. weight: math.unit(35, "lb"),
  40982. name: "Dick",
  40983. image: {
  40984. source: "./media/characters/unmru/dick.svg"
  40985. }
  40986. },
  40987. },
  40988. [
  40989. {
  40990. name: "Normal",
  40991. height: math.unit(9, "feet")
  40992. },
  40993. {
  40994. name: "Natural",
  40995. height: math.unit(27, "feet"),
  40996. default: true
  40997. },
  40998. {
  40999. name: "Giant",
  41000. height: math.unit(90, "feet")
  41001. },
  41002. {
  41003. name: "Kaiju",
  41004. height: math.unit(270, "feet")
  41005. },
  41006. {
  41007. name: "Macro",
  41008. height: math.unit(900, "feet")
  41009. },
  41010. {
  41011. name: "Macro+",
  41012. height: math.unit(2700, "feet")
  41013. },
  41014. {
  41015. name: "Megamacro",
  41016. height: math.unit(9000, "feet")
  41017. },
  41018. {
  41019. name: "City-Crushing",
  41020. height: math.unit(27000, "feet")
  41021. },
  41022. {
  41023. name: "Mountain-Mashing",
  41024. height: math.unit(90000, "feet")
  41025. },
  41026. {
  41027. name: "Earth-Eclipsing",
  41028. height: math.unit(2.7e8, "feet")
  41029. },
  41030. {
  41031. name: "Sol-Swallowing",
  41032. height: math.unit(9e10, "feet")
  41033. },
  41034. {
  41035. name: "Majoris-Munching",
  41036. height: math.unit(2.7e13, "feet")
  41037. },
  41038. ]
  41039. ))
  41040. characterMakers.push(() => makeCharacter(
  41041. { name: "Squeaks (Mouse)", species: ["grasshopper-mouse"], tags: ["feral"] },
  41042. {
  41043. front: {
  41044. height: math.unit(1, "inch"),
  41045. name: "Front",
  41046. image: {
  41047. source: "./media/characters/squeaks-mouse/front.svg",
  41048. extra: 352/308,
  41049. bottom: 25/377
  41050. }
  41051. },
  41052. },
  41053. [
  41054. {
  41055. name: "Micro",
  41056. height: math.unit(1, "inch"),
  41057. default: true
  41058. },
  41059. ]
  41060. ))
  41061. characterMakers.push(() => makeCharacter(
  41062. { name: "Sayko", species: ["dragon"], tags: ["feral"] },
  41063. {
  41064. side: {
  41065. height: math.unit(35, "feet"),
  41066. name: "Side",
  41067. image: {
  41068. source: "./media/characters/sayko/side.svg",
  41069. extra: 1697/1021,
  41070. bottom: 82/1779
  41071. }
  41072. },
  41073. head: {
  41074. height: math.unit(16, "feet"),
  41075. name: "Head",
  41076. image: {
  41077. source: "./media/characters/sayko/head.svg"
  41078. }
  41079. },
  41080. forepaw: {
  41081. height: math.unit(7.85, "feet"),
  41082. name: "Forepaw",
  41083. image: {
  41084. source: "./media/characters/sayko/forepaw.svg"
  41085. }
  41086. },
  41087. hindpaw: {
  41088. height: math.unit(8.8, "feet"),
  41089. name: "Hindpaw",
  41090. image: {
  41091. source: "./media/characters/sayko/hindpaw.svg"
  41092. }
  41093. },
  41094. },
  41095. [
  41096. {
  41097. name: "Normal",
  41098. height: math.unit(35, "feet"),
  41099. default: true
  41100. },
  41101. {
  41102. name: "Colossus",
  41103. height: math.unit(100, "meters")
  41104. },
  41105. {
  41106. name: "\"Small\" Deity",
  41107. height: math.unit(1, "km")
  41108. },
  41109. {
  41110. name: "\"Large\" Deity",
  41111. height: math.unit(15, "km")
  41112. },
  41113. ]
  41114. ))
  41115. characterMakers.push(() => makeCharacter(
  41116. { name: "Mukiro", species: ["somali-cat"], tags: ["anthro"] },
  41117. {
  41118. front: {
  41119. height: math.unit(6, "feet"),
  41120. weight: math.unit(250, "lb"),
  41121. name: "Front",
  41122. image: {
  41123. source: "./media/characters/mukiro/front.svg",
  41124. extra: 1368/1310,
  41125. bottom: 34/1402
  41126. }
  41127. },
  41128. },
  41129. [
  41130. {
  41131. name: "Normal",
  41132. height: math.unit(6, "feet"),
  41133. default: true
  41134. },
  41135. ]
  41136. ))
  41137. characterMakers.push(() => makeCharacter(
  41138. { name: "Zeph the Tiger God", species: ["deity"], tags: ["anthro"] },
  41139. {
  41140. front: {
  41141. height: math.unit(12 + 4/12, "feet"),
  41142. name: "Front",
  41143. image: {
  41144. source: "./media/characters/zeph-the-tiger-god/front.svg",
  41145. extra: 1346/1311,
  41146. bottom: 65/1411
  41147. }
  41148. },
  41149. },
  41150. [
  41151. {
  41152. name: "Base",
  41153. height: math.unit(12 + 4/12, "feet"),
  41154. default: true
  41155. },
  41156. {
  41157. name: "Macro",
  41158. height: math.unit(150, "feet")
  41159. },
  41160. {
  41161. name: "Mega",
  41162. height: math.unit(2, "miles")
  41163. },
  41164. {
  41165. name: "Demi God",
  41166. height: math.unit(4, "AU")
  41167. },
  41168. {
  41169. name: "God Size",
  41170. height: math.unit(1, "universe")
  41171. },
  41172. ]
  41173. ))
  41174. characterMakers.push(() => makeCharacter(
  41175. { name: "Trey", species: ["minccino"], tags: ["anthro"] },
  41176. {
  41177. front: {
  41178. height: math.unit(3 + 3/12, "feet"),
  41179. weight: math.unit(88, "lb"),
  41180. name: "Front",
  41181. image: {
  41182. source: "./media/characters/trey/front.svg",
  41183. extra: 1815/1509,
  41184. bottom: 60/1875
  41185. }
  41186. },
  41187. },
  41188. [
  41189. {
  41190. name: "Normal",
  41191. height: math.unit(3 + 3/12, "feet"),
  41192. default: true
  41193. },
  41194. ]
  41195. ))
  41196. characterMakers.push(() => makeCharacter(
  41197. { name: "Adelonda", species: ["dragon"], tags: ["anthro", "feral"] },
  41198. {
  41199. front: {
  41200. height: math.unit(4, "meters"),
  41201. name: "Front",
  41202. image: {
  41203. source: "./media/characters/adelonda/front.svg",
  41204. extra: 1077/982,
  41205. bottom: 39/1116
  41206. }
  41207. },
  41208. back: {
  41209. height: math.unit(4, "meters"),
  41210. name: "Back",
  41211. image: {
  41212. source: "./media/characters/adelonda/back.svg",
  41213. extra: 1105/1003,
  41214. bottom: 25/1130
  41215. }
  41216. },
  41217. feral: {
  41218. height: math.unit(40/1.5, "meters"),
  41219. name: "Feral",
  41220. image: {
  41221. source: "./media/characters/adelonda/feral.svg",
  41222. extra: 597/271,
  41223. bottom: 387/984
  41224. }
  41225. },
  41226. },
  41227. [
  41228. {
  41229. name: "Normal",
  41230. height: math.unit(4, "meters"),
  41231. default: true
  41232. },
  41233. ]
  41234. ))
  41235. characterMakers.push(() => makeCharacter(
  41236. { name: "Acadiel", species: ["dragon"], tags: ["anthro"] },
  41237. {
  41238. front: {
  41239. height: math.unit(8 + 4/12, "feet"),
  41240. weight: math.unit(670, "lb"),
  41241. name: "Front",
  41242. image: {
  41243. source: "./media/characters/acadiel/front.svg",
  41244. extra: 1901/1595,
  41245. bottom: 142/2043
  41246. }
  41247. },
  41248. },
  41249. [
  41250. {
  41251. name: "Normal",
  41252. height: math.unit(8 + 4/12, "feet"),
  41253. default: true
  41254. },
  41255. {
  41256. name: "Macro",
  41257. height: math.unit(200, "feet")
  41258. },
  41259. ]
  41260. ))
  41261. characterMakers.push(() => makeCharacter(
  41262. { name: "Kayne Ein", species: ["dragon", "wolf"], tags: ["anthro"] },
  41263. {
  41264. front: {
  41265. height: math.unit(6 + 2/12, "feet"),
  41266. weight: math.unit(185, "lb"),
  41267. name: "Front",
  41268. image: {
  41269. source: "./media/characters/kayne-ein/front.svg",
  41270. extra: 1780/1560,
  41271. bottom: 81/1861
  41272. }
  41273. },
  41274. },
  41275. [
  41276. {
  41277. name: "Normal",
  41278. height: math.unit(6 + 2/12, "feet"),
  41279. default: true
  41280. },
  41281. {
  41282. name: "Transformation Stage",
  41283. height: math.unit(15, "feet")
  41284. },
  41285. {
  41286. name: "Macro",
  41287. height: math.unit(150, "feet")
  41288. },
  41289. {
  41290. name: "Earth's Shadow",
  41291. height: math.unit(6200, "miles")
  41292. },
  41293. {
  41294. name: "Universal Demon",
  41295. height: math.unit(28e9, "parsecs")
  41296. },
  41297. {
  41298. name: "Multiverse God",
  41299. height: math.unit(3, "multiverses")
  41300. },
  41301. ]
  41302. ))
  41303. characterMakers.push(() => makeCharacter(
  41304. { name: "Fawn", species: ["deer"], tags: ["anthro"] },
  41305. {
  41306. front: {
  41307. height: math.unit(5 + 5/12, "feet"),
  41308. name: "Front",
  41309. image: {
  41310. source: "./media/characters/fawn/front.svg",
  41311. extra: 1873/1731,
  41312. bottom: 95/1968
  41313. }
  41314. },
  41315. back: {
  41316. height: math.unit(5 + 5/12, "feet"),
  41317. name: "Back",
  41318. image: {
  41319. source: "./media/characters/fawn/back.svg",
  41320. extra: 1813/1700,
  41321. bottom: 14/1827
  41322. }
  41323. },
  41324. hoof: {
  41325. height: math.unit(1.45, "feet"),
  41326. name: "Hoof",
  41327. image: {
  41328. source: "./media/characters/fawn/hoof.svg"
  41329. }
  41330. },
  41331. },
  41332. [
  41333. {
  41334. name: "Normal",
  41335. height: math.unit(5 + 5/12, "feet"),
  41336. default: true
  41337. },
  41338. ]
  41339. ))
  41340. characterMakers.push(() => makeCharacter(
  41341. { name: "Orion", species: ["pine-marten"], tags: ["anthro"] },
  41342. {
  41343. front: {
  41344. height: math.unit(2 + 5/12, "feet"),
  41345. name: "Front",
  41346. image: {
  41347. source: "./media/characters/orion/front.svg",
  41348. extra: 1366/1304,
  41349. bottom: 43/1409
  41350. }
  41351. },
  41352. paw: {
  41353. height: math.unit(0.52, "feet"),
  41354. name: "Paw",
  41355. image: {
  41356. source: "./media/characters/orion/paw.svg"
  41357. }
  41358. },
  41359. },
  41360. [
  41361. {
  41362. name: "Normal",
  41363. height: math.unit(2 + 5/12, "feet"),
  41364. default: true
  41365. },
  41366. ]
  41367. ))
  41368. characterMakers.push(() => makeCharacter(
  41369. { name: "Vera", species: ["husky", "arcanine"], tags: ["anthro"] },
  41370. {
  41371. front: {
  41372. height: math.unit(5 + 10/12, "feet"),
  41373. name: "Front",
  41374. image: {
  41375. source: "./media/characters/vera/front.svg",
  41376. extra: 1680/1575,
  41377. bottom: 49/1729
  41378. }
  41379. },
  41380. back: {
  41381. height: math.unit(5 + 10/12, "feet"),
  41382. name: "Back",
  41383. image: {
  41384. source: "./media/characters/vera/back.svg",
  41385. extra: 1700/1588,
  41386. bottom: 18/1718
  41387. }
  41388. },
  41389. arcanine: {
  41390. height: math.unit(6 + 8/12, "feet"),
  41391. name: "Arcanine",
  41392. image: {
  41393. source: "./media/characters/vera/arcanine.svg",
  41394. extra: 1590/1511,
  41395. bottom: 71/1661
  41396. }
  41397. },
  41398. maw: {
  41399. height: math.unit(0.82, "feet"),
  41400. name: "Maw",
  41401. image: {
  41402. source: "./media/characters/vera/maw.svg"
  41403. }
  41404. },
  41405. mawArcanine: {
  41406. height: math.unit(0.97, "feet"),
  41407. name: "Maw (Arcanine)",
  41408. image: {
  41409. source: "./media/characters/vera/maw-arcanine.svg"
  41410. }
  41411. },
  41412. paw: {
  41413. height: math.unit(0.75, "feet"),
  41414. name: "Paw",
  41415. image: {
  41416. source: "./media/characters/vera/paw.svg"
  41417. }
  41418. },
  41419. pawprint: {
  41420. height: math.unit(0.52, "feet"),
  41421. name: "Pawprint",
  41422. image: {
  41423. source: "./media/characters/vera/pawprint.svg"
  41424. }
  41425. },
  41426. },
  41427. [
  41428. {
  41429. name: "Normal",
  41430. height: math.unit(5 + 10/12, "feet"),
  41431. default: true
  41432. },
  41433. {
  41434. name: "Macro",
  41435. height: math.unit(75, "feet")
  41436. },
  41437. ]
  41438. ))
  41439. characterMakers.push(() => makeCharacter(
  41440. { name: "Orvan Rabbit", species: ["rabbit"], tags: ["anthro"] },
  41441. {
  41442. front: {
  41443. height: math.unit(4, "feet"),
  41444. weight: math.unit(40, "lb"),
  41445. name: "Front",
  41446. image: {
  41447. source: "./media/characters/orvan-rabbit/front.svg",
  41448. extra: 1896/1642,
  41449. bottom: 29/1925
  41450. }
  41451. },
  41452. },
  41453. [
  41454. {
  41455. name: "Normal",
  41456. height: math.unit(4, "feet"),
  41457. default: true
  41458. },
  41459. ]
  41460. ))
  41461. characterMakers.push(() => makeCharacter(
  41462. { name: "Lisa", species: ["fox", "deity", "caribou", "kitsune"], tags: ["anthro"] },
  41463. {
  41464. front: {
  41465. height: math.unit(6, "feet"),
  41466. weight: math.unit(168, "lb"),
  41467. name: "Front",
  41468. image: {
  41469. source: "./media/characters/lisa/front.svg",
  41470. extra: 2065/1867,
  41471. bottom: 46/2111
  41472. }
  41473. },
  41474. back: {
  41475. height: math.unit(6, "feet"),
  41476. weight: math.unit(168, "lb"),
  41477. name: "Back",
  41478. image: {
  41479. source: "./media/characters/lisa/back.svg",
  41480. extra: 1982/1838,
  41481. bottom: 29/2011
  41482. }
  41483. },
  41484. maw: {
  41485. height: math.unit(0.81, "feet"),
  41486. name: "Maw",
  41487. image: {
  41488. source: "./media/characters/lisa/maw.svg"
  41489. }
  41490. },
  41491. paw: {
  41492. height: math.unit(0.9, "feet"),
  41493. name: "Paw",
  41494. image: {
  41495. source: "./media/characters/lisa/paw.svg"
  41496. }
  41497. },
  41498. caribousune: {
  41499. height: math.unit(7 + 2/12, "feet"),
  41500. weight: math.unit(268, "lb"),
  41501. name: "Caribousune",
  41502. image: {
  41503. source: "./media/characters/lisa/caribousune.svg",
  41504. extra: 1843/1633,
  41505. bottom: 29/1872
  41506. }
  41507. },
  41508. frontCaribousune: {
  41509. height: math.unit(7 + 2/12, "feet"),
  41510. weight: math.unit(268, "lb"),
  41511. name: "Front (Caribousune)",
  41512. image: {
  41513. source: "./media/characters/lisa/front-caribousune.svg",
  41514. extra: 1818/1638,
  41515. bottom: 52/1870
  41516. }
  41517. },
  41518. sideCaribousune: {
  41519. height: math.unit(7 + 2/12, "feet"),
  41520. weight: math.unit(268, "lb"),
  41521. name: "Side (Caribousune)",
  41522. image: {
  41523. source: "./media/characters/lisa/side-caribousune.svg",
  41524. extra: 1851/1635,
  41525. bottom: 16/1867
  41526. }
  41527. },
  41528. backCaribousune: {
  41529. height: math.unit(7 + 2/12, "feet"),
  41530. weight: math.unit(268, "lb"),
  41531. name: "Back (Caribousune)",
  41532. image: {
  41533. source: "./media/characters/lisa/back-caribousune.svg",
  41534. extra: 1801/1604,
  41535. bottom: 44/1845
  41536. }
  41537. },
  41538. caribou: {
  41539. height: math.unit(7 + 2/12, "feet"),
  41540. weight: math.unit(268, "lb"),
  41541. name: "Caribou",
  41542. image: {
  41543. source: "./media/characters/lisa/caribou.svg",
  41544. extra: 1843/1633,
  41545. bottom: 29/1872
  41546. }
  41547. },
  41548. frontCaribou: {
  41549. height: math.unit(7 + 2/12, "feet"),
  41550. weight: math.unit(268, "lb"),
  41551. name: "Front (Caribou)",
  41552. image: {
  41553. source: "./media/characters/lisa/front-caribou.svg",
  41554. extra: 1818/1638,
  41555. bottom: 52/1870
  41556. }
  41557. },
  41558. sideCaribou: {
  41559. height: math.unit(7 + 2/12, "feet"),
  41560. weight: math.unit(268, "lb"),
  41561. name: "Side (Caribou)",
  41562. image: {
  41563. source: "./media/characters/lisa/side-caribou.svg",
  41564. extra: 1851/1635,
  41565. bottom: 16/1867
  41566. }
  41567. },
  41568. backCaribou: {
  41569. height: math.unit(7 + 2/12, "feet"),
  41570. weight: math.unit(268, "lb"),
  41571. name: "Back (Caribou)",
  41572. image: {
  41573. source: "./media/characters/lisa/back-caribou.svg",
  41574. extra: 1801/1604,
  41575. bottom: 44/1845
  41576. }
  41577. },
  41578. mawCaribou: {
  41579. height: math.unit(1.45, "feet"),
  41580. name: "Maw (Caribou)",
  41581. image: {
  41582. source: "./media/characters/lisa/maw-caribou.svg"
  41583. }
  41584. },
  41585. mawCaribousune: {
  41586. height: math.unit(1.45, "feet"),
  41587. name: "Maw (Caribousune)",
  41588. image: {
  41589. source: "./media/characters/lisa/maw-caribousune.svg"
  41590. }
  41591. },
  41592. pawCaribousune: {
  41593. height: math.unit(1.61, "feet"),
  41594. name: "Paw (Caribou)",
  41595. image: {
  41596. source: "./media/characters/lisa/paw-caribousune.svg"
  41597. }
  41598. },
  41599. },
  41600. [
  41601. {
  41602. name: "Normal",
  41603. height: math.unit(6, "feet")
  41604. },
  41605. {
  41606. name: "God Size",
  41607. height: math.unit(72, "feet"),
  41608. default: true
  41609. },
  41610. {
  41611. name: "Towering",
  41612. height: math.unit(288, "feet")
  41613. },
  41614. {
  41615. name: "City Size",
  41616. height: math.unit(48384, "feet")
  41617. },
  41618. {
  41619. name: "Continental",
  41620. height: math.unit(4200, "miles")
  41621. },
  41622. {
  41623. name: "Planet Eater",
  41624. height: math.unit(42, "earths")
  41625. },
  41626. {
  41627. name: "Star Swallower",
  41628. height: math.unit(42, "solarradii")
  41629. },
  41630. {
  41631. name: "System Swallower",
  41632. height: math.unit(84000, "AU")
  41633. },
  41634. {
  41635. name: "Galaxy Gobbler",
  41636. height: math.unit(42, "galaxies")
  41637. },
  41638. {
  41639. name: "Universe Devourer",
  41640. height: math.unit(42, "universes")
  41641. },
  41642. {
  41643. name: "Multiverse Muncher",
  41644. height: math.unit(42, "multiverses")
  41645. },
  41646. ]
  41647. ))
  41648. characterMakers.push(() => makeCharacter(
  41649. { name: "Shadow (Rat)", species: ["rat"], tags: ["anthro"] },
  41650. {
  41651. front: {
  41652. height: math.unit(36, "feet"),
  41653. name: "Front",
  41654. image: {
  41655. source: "./media/characters/shadow-rat/front.svg",
  41656. extra: 1845/1758,
  41657. bottom: 83/1928
  41658. }
  41659. },
  41660. },
  41661. [
  41662. {
  41663. name: "Macro",
  41664. height: math.unit(36, "feet"),
  41665. default: true
  41666. },
  41667. ]
  41668. ))
  41669. characterMakers.push(() => makeCharacter(
  41670. { name: "Torallia", species: ["cobra", "demon"], tags: ["naga"] },
  41671. {
  41672. side: {
  41673. height: math.unit(8, "feet"),
  41674. weight: math.unit(2630, "lb"),
  41675. name: "Side",
  41676. image: {
  41677. source: "./media/characters/torallia/side.svg",
  41678. extra: 2164/2021,
  41679. bottom: 371/2535
  41680. }
  41681. },
  41682. },
  41683. [
  41684. {
  41685. name: "Mortal Interaction",
  41686. height: math.unit(8, "feet")
  41687. },
  41688. {
  41689. name: "Natural",
  41690. height: math.unit(24, "feet"),
  41691. default: true
  41692. },
  41693. {
  41694. name: "Giant",
  41695. height: math.unit(80, "feet")
  41696. },
  41697. {
  41698. name: "Kaiju",
  41699. height: math.unit(240, "feet")
  41700. },
  41701. {
  41702. name: "Macro",
  41703. height: math.unit(800, "feet")
  41704. },
  41705. {
  41706. name: "Macro+",
  41707. height: math.unit(2400, "feet")
  41708. },
  41709. {
  41710. name: "Macro++",
  41711. height: math.unit(8000, "feet")
  41712. },
  41713. {
  41714. name: "City-Crushing",
  41715. height: math.unit(24000, "feet")
  41716. },
  41717. {
  41718. name: "Mountain-Mashing",
  41719. height: math.unit(80000, "feet")
  41720. },
  41721. {
  41722. name: "District Demolisher",
  41723. height: math.unit(240000, "feet")
  41724. },
  41725. {
  41726. name: "Tri-County Terror",
  41727. height: math.unit(800000, "feet")
  41728. },
  41729. {
  41730. name: "State Smasher",
  41731. height: math.unit(2.4e6, "feet")
  41732. },
  41733. {
  41734. name: "Nation Nemesis",
  41735. height: math.unit(8e6, "feet")
  41736. },
  41737. {
  41738. name: "Continent Cracker",
  41739. height: math.unit(2.4e7, "feet")
  41740. },
  41741. {
  41742. name: "Planet-Pillaging",
  41743. height: math.unit(8e7, "feet")
  41744. },
  41745. {
  41746. name: "Earth-Eclipsing",
  41747. height: math.unit(2.4e8, "feet")
  41748. },
  41749. {
  41750. name: "Jovian-Jostling",
  41751. height: math.unit(8e8, "feet")
  41752. },
  41753. {
  41754. name: "Gas Giant Gulper",
  41755. height: math.unit(2.4e9, "feet")
  41756. },
  41757. {
  41758. name: "Astral Annihilator",
  41759. height: math.unit(8e9, "feet")
  41760. },
  41761. {
  41762. name: "Celestial Conqueror",
  41763. height: math.unit(2.4e10, "feet")
  41764. },
  41765. {
  41766. name: "Sol-Swallowing",
  41767. height: math.unit(8e10, "feet")
  41768. },
  41769. {
  41770. name: "Hunter of the Heavens",
  41771. height: math.unit(2.4e13, "feet")
  41772. },
  41773. ]
  41774. ))
  41775. characterMakers.push(() => makeCharacter(
  41776. { name: "Rebecca Pawlson", species: ["fennec-fox"], tags: ["anthro"] },
  41777. {
  41778. front: {
  41779. height: math.unit(10, "feet"),
  41780. weight: math.unit(844, "kilograms"),
  41781. name: "Front",
  41782. image: {
  41783. source: "./media/characters/rebecca-pawlson/front.svg",
  41784. extra: 1196/1099,
  41785. bottom: 81/1277
  41786. },
  41787. extraAttributes: {
  41788. "pawSize": {
  41789. name: "Paw Size",
  41790. power: 2,
  41791. type: "area",
  41792. base: math.unit(0.2 * 0.375, "meters^2")
  41793. },
  41794. "handSize": {
  41795. name: "Hand Size",
  41796. power: 2,
  41797. type: "area",
  41798. base: math.unit(0.2 * 0.35, "meters^2")
  41799. },
  41800. "breastDiameter": {
  41801. name: "Breast Diameter",
  41802. power: 1,
  41803. type: "length",
  41804. base: math.unit(0.5, "meters")
  41805. },
  41806. "breastVolume": {
  41807. name: "Breast Volume",
  41808. power: 3,
  41809. type: "volume",
  41810. base: math.unit(0.065, "m^3")
  41811. },
  41812. "breastMass": {
  41813. name: "Breast Mass",
  41814. power: 3,
  41815. type: "mass",
  41816. base: math.unit(65, "kg")
  41817. },
  41818. "nippleDiameter": {
  41819. name: "Nipple Diameter",
  41820. power: 1,
  41821. type: "length",
  41822. base: math.unit(0.1, "meters")
  41823. },
  41824. }
  41825. },
  41826. back: {
  41827. height: math.unit(10, "feet"),
  41828. weight: math.unit(844, "kilograms"),
  41829. name: "Back",
  41830. image: {
  41831. source: "./media/characters/rebecca-pawlson/back.svg",
  41832. extra: 879/776,
  41833. bottom: 43/922
  41834. },
  41835. extraAttributes: {
  41836. "pawSize": {
  41837. name: "Paw Size",
  41838. power: 2,
  41839. type: "area",
  41840. base: math.unit(0.2 * 0.375, "meters^2")
  41841. },
  41842. "handSize": {
  41843. name: "Hand Size",
  41844. power: 2,
  41845. type: "area",
  41846. base: math.unit(0.2 * 0.35, "meters^2")
  41847. },
  41848. "breastDiameter": {
  41849. name: "Breast Diameter",
  41850. power: 1,
  41851. type: "length",
  41852. base: math.unit(0.5, "meters")
  41853. },
  41854. "breastVolume": {
  41855. name: "Breast Volume",
  41856. power: 3,
  41857. type: "volume",
  41858. base: math.unit(0.065, "m^3")
  41859. },
  41860. "breastMass": {
  41861. name: "Breast Mass",
  41862. power: 3,
  41863. type: "mass",
  41864. base: math.unit(65, "kg")
  41865. },
  41866. "nippleDiameter": {
  41867. name: "Nipple Diameter",
  41868. power: 1,
  41869. type: "length",
  41870. base: math.unit(0.1, "meters")
  41871. },
  41872. }
  41873. },
  41874. },
  41875. [
  41876. {
  41877. name: "Normal",
  41878. height: math.unit(6 + 8/12, "feet")
  41879. },
  41880. {
  41881. name: "Mini Macro",
  41882. height: math.unit(10, "feet"),
  41883. default: true
  41884. },
  41885. {
  41886. name: "Macro",
  41887. height: math.unit(100, "feet")
  41888. },
  41889. {
  41890. name: "Mega Macro",
  41891. height: math.unit(2500, "feet")
  41892. },
  41893. {
  41894. name: "Giga Macro",
  41895. height: math.unit(50, "miles")
  41896. },
  41897. ]
  41898. ))
  41899. characterMakers.push(() => makeCharacter(
  41900. { name: "Moxie Nova", species: ["dragon", "cat"], tags: ["anthro"] },
  41901. {
  41902. front: {
  41903. height: math.unit(7 + 6/12, "feet"),
  41904. weight: math.unit(600, "lb"),
  41905. name: "Front",
  41906. image: {
  41907. source: "./media/characters/moxie-nova/front.svg",
  41908. extra: 1734/1652,
  41909. bottom: 41/1775
  41910. }
  41911. },
  41912. },
  41913. [
  41914. {
  41915. name: "Normal",
  41916. height: math.unit(7 + 6/12, "feet"),
  41917. default: true
  41918. },
  41919. ]
  41920. ))
  41921. characterMakers.push(() => makeCharacter(
  41922. { name: "Tiffany", species: ["fox", "raccoon"], tags: ["anthro"] },
  41923. {
  41924. goat: {
  41925. height: math.unit(4, "feet"),
  41926. weight: math.unit(180, "lb"),
  41927. name: "Goat",
  41928. image: {
  41929. source: "./media/characters/tiffany/goat.svg",
  41930. extra: 1845/1595,
  41931. bottom: 106/1951
  41932. }
  41933. },
  41934. front: {
  41935. height: math.unit(5, "feet"),
  41936. weight: math.unit(150, "lb"),
  41937. name: "Foxcoon",
  41938. image: {
  41939. source: "./media/characters/tiffany/foxcoon.svg",
  41940. extra: 1941/1845,
  41941. bottom: 58/1999
  41942. }
  41943. },
  41944. },
  41945. [
  41946. {
  41947. name: "Normal",
  41948. height: math.unit(5, "feet"),
  41949. default: true
  41950. },
  41951. ]
  41952. ))
  41953. characterMakers.push(() => makeCharacter(
  41954. { name: "Raxinath", species: ["dragon"], tags: ["anthro"] },
  41955. {
  41956. front: {
  41957. height: math.unit(8, "feet"),
  41958. weight: math.unit(300, "lb"),
  41959. name: "Front",
  41960. image: {
  41961. source: "./media/characters/raxinath/front.svg",
  41962. extra: 1407/1309,
  41963. bottom: 39/1446
  41964. }
  41965. },
  41966. back: {
  41967. height: math.unit(8, "feet"),
  41968. weight: math.unit(300, "lb"),
  41969. name: "Back",
  41970. image: {
  41971. source: "./media/characters/raxinath/back.svg",
  41972. extra: 1405/1315,
  41973. bottom: 9/1414
  41974. }
  41975. },
  41976. },
  41977. [
  41978. {
  41979. name: "Speck",
  41980. height: math.unit(0.5, "nm")
  41981. },
  41982. {
  41983. name: "Micro",
  41984. height: math.unit(3, "inches")
  41985. },
  41986. {
  41987. name: "Kobold",
  41988. height: math.unit(3, "feet")
  41989. },
  41990. {
  41991. name: "Normal",
  41992. height: math.unit(8, "feet"),
  41993. default: true
  41994. },
  41995. {
  41996. name: "Giant",
  41997. height: math.unit(50, "feet")
  41998. },
  41999. {
  42000. name: "Macro",
  42001. height: math.unit(1000, "feet")
  42002. },
  42003. {
  42004. name: "Megamacro",
  42005. height: math.unit(1, "mile")
  42006. },
  42007. ]
  42008. ))
  42009. characterMakers.push(() => makeCharacter(
  42010. { name: "Mal (Dragon)", species: ["dragon", "deity"], tags: ["anthro"] },
  42011. {
  42012. front: {
  42013. height: math.unit(10, "feet"),
  42014. weight: math.unit(1442, "lb"),
  42015. name: "Front",
  42016. image: {
  42017. source: "./media/characters/mal-dragon/front.svg",
  42018. extra: 1515/1444,
  42019. bottom: 113/1628
  42020. }
  42021. },
  42022. back: {
  42023. height: math.unit(10, "feet"),
  42024. weight: math.unit(1442, "lb"),
  42025. name: "Back",
  42026. image: {
  42027. source: "./media/characters/mal-dragon/back.svg",
  42028. extra: 1527/1434,
  42029. bottom: 25/1552
  42030. }
  42031. },
  42032. },
  42033. [
  42034. {
  42035. name: "Mortal Interaction",
  42036. height: math.unit(10, "feet"),
  42037. default: true
  42038. },
  42039. {
  42040. name: "Large",
  42041. height: math.unit(30, "feet")
  42042. },
  42043. {
  42044. name: "Kaiju",
  42045. height: math.unit(300, "feet")
  42046. },
  42047. {
  42048. name: "Megamacro",
  42049. height: math.unit(10000, "feet")
  42050. },
  42051. {
  42052. name: "Continent Cracker",
  42053. height: math.unit(30000000, "feet")
  42054. },
  42055. {
  42056. name: "Sol-Swallowing",
  42057. height: math.unit(1e11, "feet")
  42058. },
  42059. {
  42060. name: "Light Universal",
  42061. height: math.unit(5, "universes")
  42062. },
  42063. {
  42064. name: "Universe Atoms",
  42065. height: math.unit(1.829e9, "universes")
  42066. },
  42067. {
  42068. name: "Light Multiversal",
  42069. height: math.unit(5, "multiverses")
  42070. },
  42071. {
  42072. name: "Multiverse Atoms",
  42073. height: math.unit(1.829e9, "multiverses")
  42074. },
  42075. {
  42076. name: "Fabric of Time",
  42077. height: math.unit(1e262, "multiverses")
  42078. },
  42079. ]
  42080. ))
  42081. characterMakers.push(() => makeCharacter(
  42082. { name: "Tabitha", species: ["mouse", "cat"], tags: ["anthro"] },
  42083. {
  42084. front: {
  42085. height: math.unit(9, "feet"),
  42086. weight: math.unit(1050, "lb"),
  42087. name: "Front",
  42088. image: {
  42089. source: "./media/characters/tabitha/front.svg",
  42090. extra: 2083/1994,
  42091. bottom: 68/2151
  42092. }
  42093. },
  42094. },
  42095. [
  42096. {
  42097. name: "Baseline",
  42098. height: math.unit(9, "feet"),
  42099. default: true
  42100. },
  42101. {
  42102. name: "Giant",
  42103. height: math.unit(90, "feet")
  42104. },
  42105. {
  42106. name: "Macro",
  42107. height: math.unit(900, "feet")
  42108. },
  42109. {
  42110. name: "Megamacro",
  42111. height: math.unit(9000, "feet")
  42112. },
  42113. {
  42114. name: "City-Crushing",
  42115. height: math.unit(27000, "feet")
  42116. },
  42117. {
  42118. name: "Mountain-Mashing",
  42119. height: math.unit(90000, "feet")
  42120. },
  42121. {
  42122. name: "Nation Nemesis",
  42123. height: math.unit(9e6, "feet")
  42124. },
  42125. {
  42126. name: "Continent Cracker",
  42127. height: math.unit(27e6, "feet")
  42128. },
  42129. {
  42130. name: "Earth-Eclipsing",
  42131. height: math.unit(2.7e8, "feet")
  42132. },
  42133. {
  42134. name: "Gas Giant Gulper",
  42135. height: math.unit(2.7e9, "feet")
  42136. },
  42137. {
  42138. name: "Sol-Swallowing",
  42139. height: math.unit(9e10, "feet")
  42140. },
  42141. {
  42142. name: "Galaxy Gulper",
  42143. height: math.unit(9, "galaxies")
  42144. },
  42145. {
  42146. name: "Cosmos Churner",
  42147. height: math.unit(9, "universes")
  42148. },
  42149. ]
  42150. ))
  42151. characterMakers.push(() => makeCharacter(
  42152. { name: "Tow", species: ["cat"], tags: ["anthro"] },
  42153. {
  42154. front: {
  42155. height: math.unit(160, "cm"),
  42156. weight: math.unit(55, "kg"),
  42157. name: "Front",
  42158. image: {
  42159. source: "./media/characters/tow/front.svg",
  42160. extra: 1751/1722,
  42161. bottom: 74/1825
  42162. }
  42163. },
  42164. },
  42165. [
  42166. {
  42167. name: "Norm",
  42168. height: math.unit(160, "cm")
  42169. },
  42170. {
  42171. name: "Casual",
  42172. height: math.unit(3200, "m"),
  42173. default: true
  42174. },
  42175. {
  42176. name: "Show-Off",
  42177. height: math.unit(160, "km")
  42178. },
  42179. ]
  42180. ))
  42181. characterMakers.push(() => makeCharacter(
  42182. { name: "Vivian (Ocra Dragon)", species: ["dragon", "orca"], tags: ["anthro", "goo"] },
  42183. {
  42184. front: {
  42185. height: math.unit(7 + 11/12, "feet"),
  42186. weight: math.unit(342.8, "lb"),
  42187. name: "Front",
  42188. image: {
  42189. source: "./media/characters/vivian-orca-dragon/front.svg",
  42190. extra: 1890/1865,
  42191. bottom: 28/1918
  42192. }
  42193. },
  42194. },
  42195. [
  42196. {
  42197. name: "Micro",
  42198. height: math.unit(5, "inches")
  42199. },
  42200. {
  42201. name: "Normal",
  42202. height: math.unit(7 + 11/12, "feet"),
  42203. default: true
  42204. },
  42205. {
  42206. name: "Macro",
  42207. height: math.unit(395 + 7/12, "feet")
  42208. },
  42209. ]
  42210. ))
  42211. characterMakers.push(() => makeCharacter(
  42212. { name: "Lotherakon", species: ["hellhound", "deity"], tags: ["anthro"] },
  42213. {
  42214. side: {
  42215. height: math.unit(10, "feet"),
  42216. weight: math.unit(1442, "lb"),
  42217. name: "Side",
  42218. image: {
  42219. source: "./media/characters/lotherakon/side.svg",
  42220. extra: 1604/1497,
  42221. bottom: 89/1693
  42222. }
  42223. },
  42224. },
  42225. [
  42226. {
  42227. name: "Mortal Interaction",
  42228. height: math.unit(10, "feet")
  42229. },
  42230. {
  42231. name: "Large",
  42232. height: math.unit(30, "feet"),
  42233. default: true
  42234. },
  42235. {
  42236. name: "Giant",
  42237. height: math.unit(100, "feet")
  42238. },
  42239. {
  42240. name: "Kaiju",
  42241. height: math.unit(300, "feet")
  42242. },
  42243. {
  42244. name: "Macro",
  42245. height: math.unit(1000, "feet")
  42246. },
  42247. {
  42248. name: "Macro+",
  42249. height: math.unit(3000, "feet")
  42250. },
  42251. {
  42252. name: "Megamacro",
  42253. height: math.unit(10000, "feet")
  42254. },
  42255. {
  42256. name: "City-Crushing",
  42257. height: math.unit(30000, "feet")
  42258. },
  42259. {
  42260. name: "Continent Cracker",
  42261. height: math.unit(30e6, "feet")
  42262. },
  42263. {
  42264. name: "Earth Eclipsing",
  42265. height: math.unit(3e8, "feet")
  42266. },
  42267. {
  42268. name: "Gas Giant Gulper",
  42269. height: math.unit(3e9, "feet")
  42270. },
  42271. {
  42272. name: "Sol-Swallowing",
  42273. height: math.unit(1e11, "feet")
  42274. },
  42275. {
  42276. name: "System Swallower",
  42277. height: math.unit(3e14, "feet")
  42278. },
  42279. {
  42280. name: "Galaxy Gulper",
  42281. height: math.unit(10, "galaxies")
  42282. },
  42283. {
  42284. name: "Light Universal",
  42285. height: math.unit(5, "universes")
  42286. },
  42287. {
  42288. name: "Universe Palm",
  42289. height: math.unit(20, "universes")
  42290. },
  42291. {
  42292. name: "Light Multiversal",
  42293. height: math.unit(5, "multiverses")
  42294. },
  42295. {
  42296. name: "Multiverse Palm",
  42297. height: math.unit(20, "multiverses")
  42298. },
  42299. {
  42300. name: "Inferno Incarnate",
  42301. height: math.unit(1e7, "multiverses")
  42302. },
  42303. ]
  42304. ))
  42305. characterMakers.push(() => makeCharacter(
  42306. { name: "Malithee", species: ["frog", "dragon", "deity"], tags: ["anthro"] },
  42307. {
  42308. front: {
  42309. height: math.unit(8, "feet"),
  42310. weight: math.unit(1200, "lb"),
  42311. name: "Front",
  42312. image: {
  42313. source: "./media/characters/malithee/front.svg",
  42314. extra: 1675/1640,
  42315. bottom: 162/1837
  42316. }
  42317. },
  42318. },
  42319. [
  42320. {
  42321. name: "Mortal Interaction",
  42322. height: math.unit(8, "feet"),
  42323. default: true
  42324. },
  42325. {
  42326. name: "Large",
  42327. height: math.unit(24, "feet")
  42328. },
  42329. {
  42330. name: "Kaiju",
  42331. height: math.unit(240, "feet")
  42332. },
  42333. {
  42334. name: "Megamacro",
  42335. height: math.unit(8000, "feet")
  42336. },
  42337. {
  42338. name: "Continent Cracker",
  42339. height: math.unit(24e6, "feet")
  42340. },
  42341. {
  42342. name: "Earth-Eclipsing",
  42343. height: math.unit(2.4e8, "feet")
  42344. },
  42345. {
  42346. name: "Sol-Swallowing",
  42347. height: math.unit(8e10, "feet")
  42348. },
  42349. {
  42350. name: "Galaxy Gulper",
  42351. height: math.unit(8, "galaxies")
  42352. },
  42353. {
  42354. name: "Light Universal",
  42355. height: math.unit(4, "universes")
  42356. },
  42357. {
  42358. name: "Universe Atoms",
  42359. height: math.unit(1.829e9, "universes")
  42360. },
  42361. {
  42362. name: "Light Multiversal",
  42363. height: math.unit(4, "multiverses")
  42364. },
  42365. {
  42366. name: "Multiverse Atoms",
  42367. height: math.unit(1.829e9, "multiverses")
  42368. },
  42369. {
  42370. name: "Nigh-Omnipresence",
  42371. height: math.unit(8e261, "multiverses")
  42372. },
  42373. ]
  42374. ))
  42375. characterMakers.push(() => makeCharacter(
  42376. { name: "Miles Thestia", species: ["wolf", "dog"], tags: ["anthro"] },
  42377. {
  42378. front: {
  42379. height: math.unit(10, "feet"),
  42380. weight: math.unit(1500, "lb"),
  42381. name: "Front",
  42382. image: {
  42383. source: "./media/characters/miles-thestia/front.svg",
  42384. extra: 1812/1727,
  42385. bottom: 86/1898
  42386. }
  42387. },
  42388. back: {
  42389. height: math.unit(10, "feet"),
  42390. weight: math.unit(1500, "lb"),
  42391. name: "Back",
  42392. image: {
  42393. source: "./media/characters/miles-thestia/back.svg",
  42394. extra: 1799/1690,
  42395. bottom: 47/1846
  42396. }
  42397. },
  42398. frontNsfw: {
  42399. height: math.unit(10, "feet"),
  42400. weight: math.unit(1500, "lb"),
  42401. name: "Front (NSFW)",
  42402. image: {
  42403. source: "./media/characters/miles-thestia/front-nsfw.svg",
  42404. extra: 1812/1727,
  42405. bottom: 86/1898
  42406. }
  42407. },
  42408. },
  42409. [
  42410. {
  42411. name: "Mini-Macro",
  42412. height: math.unit(10, "feet"),
  42413. default: true
  42414. },
  42415. ]
  42416. ))
  42417. characterMakers.push(() => makeCharacter(
  42418. { name: "TITAN.S.WULF", species: ["wolf"], tags: ["anthro"] },
  42419. {
  42420. front: {
  42421. height: math.unit(25, "feet"),
  42422. name: "Front",
  42423. image: {
  42424. source: "./media/characters/titan-s-wulf/front.svg",
  42425. extra: 1560/1484,
  42426. bottom: 76/1636
  42427. }
  42428. },
  42429. },
  42430. [
  42431. {
  42432. name: "Smallest",
  42433. height: math.unit(25, "feet"),
  42434. default: true
  42435. },
  42436. {
  42437. name: "Normal",
  42438. height: math.unit(200, "feet")
  42439. },
  42440. {
  42441. name: "Macro",
  42442. height: math.unit(200000, "feet")
  42443. },
  42444. {
  42445. name: "Multiversal Original",
  42446. height: math.unit(10000, "multiverses")
  42447. },
  42448. ]
  42449. ))
  42450. characterMakers.push(() => makeCharacter(
  42451. { name: "Tawendeh", species: ["otter", "deity"], tags: ["anthro"] },
  42452. {
  42453. front: {
  42454. height: math.unit(8, "feet"),
  42455. weight: math.unit(553, "lb"),
  42456. name: "Front",
  42457. image: {
  42458. source: "./media/characters/tawendeh/front.svg",
  42459. extra: 2365/2268,
  42460. bottom: 83/2448
  42461. }
  42462. },
  42463. frontClothed: {
  42464. height: math.unit(8, "feet"),
  42465. weight: math.unit(553, "lb"),
  42466. name: "Front (Clothed)",
  42467. image: {
  42468. source: "./media/characters/tawendeh/front-clothed.svg",
  42469. extra: 2365/2268,
  42470. bottom: 83/2448
  42471. }
  42472. },
  42473. back: {
  42474. height: math.unit(8, "feet"),
  42475. weight: math.unit(553, "lb"),
  42476. name: "Back",
  42477. image: {
  42478. source: "./media/characters/tawendeh/back.svg",
  42479. extra: 2397/2294,
  42480. bottom: 42/2439
  42481. }
  42482. },
  42483. },
  42484. [
  42485. {
  42486. name: "Mortal Interaction",
  42487. height: math.unit(8, "feet"),
  42488. default: true
  42489. },
  42490. {
  42491. name: "Giant",
  42492. height: math.unit(80, "feet")
  42493. },
  42494. {
  42495. name: "Macro",
  42496. height: math.unit(800, "feet")
  42497. },
  42498. {
  42499. name: "Megamacro",
  42500. height: math.unit(8000, "feet")
  42501. },
  42502. {
  42503. name: "City-Crushing",
  42504. height: math.unit(24000, "feet")
  42505. },
  42506. {
  42507. name: "Mountain-Mashing",
  42508. height: math.unit(80000, "feet")
  42509. },
  42510. {
  42511. name: "Nation Nemesis",
  42512. height: math.unit(8e6, "feet")
  42513. },
  42514. {
  42515. name: "Continent Cracker",
  42516. height: math.unit(24e6, "feet")
  42517. },
  42518. {
  42519. name: "Earth-Eclipsing",
  42520. height: math.unit(2.4e8, "feet")
  42521. },
  42522. {
  42523. name: "Gas Giant Gulper",
  42524. height: math.unit(2.4e9, "feet")
  42525. },
  42526. {
  42527. name: "Sol-Swallowing",
  42528. height: math.unit(8e10, "feet")
  42529. },
  42530. {
  42531. name: "Galaxy Gulper",
  42532. height: math.unit(8, "galaxies")
  42533. },
  42534. {
  42535. name: "Cosmos Churner",
  42536. height: math.unit(8, "universes")
  42537. },
  42538. {
  42539. name: "Omnipotent Otter",
  42540. height: math.unit(80, "universes")
  42541. },
  42542. ]
  42543. ))
  42544. characterMakers.push(() => makeCharacter(
  42545. { name: "Neesha", species: ["gnoll"], tags: ["anthro"] },
  42546. {
  42547. front: {
  42548. height: math.unit(2.6, "meters"),
  42549. weight: math.unit(900, "kg"),
  42550. name: "Front",
  42551. image: {
  42552. source: "./media/characters/neesha/front.svg",
  42553. extra: 1803/1653,
  42554. bottom: 128/1931
  42555. }
  42556. },
  42557. },
  42558. [
  42559. {
  42560. name: "Normal",
  42561. height: math.unit(2.6, "meters"),
  42562. default: true
  42563. },
  42564. {
  42565. name: "Macro",
  42566. height: math.unit(50, "meters")
  42567. },
  42568. ]
  42569. ))
  42570. characterMakers.push(() => makeCharacter(
  42571. { name: "Kyera", species: ["dragon", "mouse"], tags: ["anthro"] },
  42572. {
  42573. front: {
  42574. height: math.unit(5, "feet"),
  42575. weight: math.unit(185, "lb"),
  42576. name: "Front",
  42577. image: {
  42578. source: "./media/characters/kyera/front.svg",
  42579. extra: 1875/1790,
  42580. bottom: 96/1971
  42581. }
  42582. },
  42583. },
  42584. [
  42585. {
  42586. name: "Normal",
  42587. height: math.unit(5, "feet"),
  42588. default: true
  42589. },
  42590. ]
  42591. ))
  42592. characterMakers.push(() => makeCharacter(
  42593. { name: "Yuko", species: ["catgirl"], tags: ["anthro"] },
  42594. {
  42595. front: {
  42596. height: math.unit(7 + 6/12, "feet"),
  42597. weight: math.unit(540, "lb"),
  42598. name: "Front",
  42599. image: {
  42600. source: "./media/characters/yuko/front.svg",
  42601. extra: 1282/1222,
  42602. bottom: 101/1383
  42603. }
  42604. },
  42605. frontClothed: {
  42606. height: math.unit(7 + 6/12, "feet"),
  42607. weight: math.unit(540, "lb"),
  42608. name: "Front (Clothed)",
  42609. image: {
  42610. source: "./media/characters/yuko/front-clothed.svg",
  42611. extra: 1282/1222,
  42612. bottom: 101/1383
  42613. }
  42614. },
  42615. },
  42616. [
  42617. {
  42618. name: "Normal",
  42619. height: math.unit(7 + 6/12, "feet"),
  42620. default: true
  42621. },
  42622. {
  42623. name: "Macro",
  42624. height: math.unit(26 + 9/12, "feet")
  42625. },
  42626. {
  42627. name: "Megamacro",
  42628. height: math.unit(300, "feet")
  42629. },
  42630. {
  42631. name: "Gigamacro",
  42632. height: math.unit(5000, "feet")
  42633. },
  42634. {
  42635. name: "Planetary",
  42636. height: math.unit(10000, "miles")
  42637. },
  42638. ]
  42639. ))
  42640. characterMakers.push(() => makeCharacter(
  42641. { name: "Deam Nitrel", species: ["wolf"], tags: ["anthro"] },
  42642. {
  42643. front: {
  42644. height: math.unit(8 + 2/12, "feet"),
  42645. weight: math.unit(600, "lb"),
  42646. name: "Front",
  42647. image: {
  42648. source: "./media/characters/deam-nitrel/front.svg",
  42649. extra: 1308/1234,
  42650. bottom: 125/1433
  42651. }
  42652. },
  42653. },
  42654. [
  42655. {
  42656. name: "Normal",
  42657. height: math.unit(8 + 2/12, "feet"),
  42658. default: true
  42659. },
  42660. ]
  42661. ))
  42662. characterMakers.push(() => makeCharacter(
  42663. { name: "Skyress", species: ["dragon"], tags: ["anthro"] },
  42664. {
  42665. front: {
  42666. height: math.unit(6.1, "feet"),
  42667. weight: math.unit(180, "lb"),
  42668. name: "Front",
  42669. image: {
  42670. source: "./media/characters/skyress/front.svg",
  42671. extra: 1045/915,
  42672. bottom: 28/1073
  42673. }
  42674. },
  42675. maw: {
  42676. height: math.unit(1, "feet"),
  42677. name: "Maw",
  42678. image: {
  42679. source: "./media/characters/skyress/maw.svg"
  42680. }
  42681. },
  42682. },
  42683. [
  42684. {
  42685. name: "Normal",
  42686. height: math.unit(6.1, "feet"),
  42687. default: true
  42688. },
  42689. {
  42690. name: "Macro",
  42691. height: math.unit(200, "feet")
  42692. },
  42693. ]
  42694. ))
  42695. characterMakers.push(() => makeCharacter(
  42696. { name: "Amethyst Jones", species: ["kobold"], tags: ["anthro"] },
  42697. {
  42698. front: {
  42699. height: math.unit(4 + 2/12, "feet"),
  42700. weight: math.unit(40, "kg"),
  42701. name: "Front",
  42702. image: {
  42703. source: "./media/characters/amethyst-jones/front.svg",
  42704. extra: 1220/1150,
  42705. bottom: 101/1321
  42706. }
  42707. },
  42708. },
  42709. [
  42710. {
  42711. name: "Normal",
  42712. height: math.unit(4 + 2/12, "feet"),
  42713. default: true
  42714. },
  42715. ]
  42716. ))
  42717. characterMakers.push(() => makeCharacter(
  42718. { name: "Jade", species: ["panther", "dragon"], tags: ["anthro"] },
  42719. {
  42720. front: {
  42721. height: math.unit(1.7, "m"),
  42722. weight: math.unit(135, "lb"),
  42723. name: "Front",
  42724. image: {
  42725. source: "./media/characters/jade/front.svg",
  42726. extra: 1818/1767,
  42727. bottom: 32/1850
  42728. }
  42729. },
  42730. back: {
  42731. height: math.unit(1.7, "m"),
  42732. weight: math.unit(135, "lb"),
  42733. name: "Back",
  42734. image: {
  42735. source: "./media/characters/jade/back.svg",
  42736. extra: 1869/1809,
  42737. bottom: 35/1904
  42738. }
  42739. },
  42740. hand: {
  42741. height: math.unit(0.24, "m"),
  42742. name: "Hand",
  42743. image: {
  42744. source: "./media/characters/jade/hand.svg"
  42745. }
  42746. },
  42747. foot: {
  42748. height: math.unit(0.263, "m"),
  42749. name: "Foot",
  42750. image: {
  42751. source: "./media/characters/jade/foot.svg"
  42752. }
  42753. },
  42754. dick: {
  42755. height: math.unit(0.47, "m"),
  42756. name: "Dick",
  42757. image: {
  42758. source: "./media/characters/jade/dick.svg"
  42759. }
  42760. },
  42761. },
  42762. [
  42763. {
  42764. name: "Micro",
  42765. height: math.unit(22, "cm")
  42766. },
  42767. {
  42768. name: "Normal",
  42769. height: math.unit(1.7, "m"),
  42770. default: true
  42771. },
  42772. {
  42773. name: "Macro",
  42774. height: math.unit(152, "m")
  42775. },
  42776. ]
  42777. ))
  42778. characterMakers.push(() => makeCharacter(
  42779. { name: "Cookie", species: ["snow-leopard"], tags: ["anthro"] },
  42780. {
  42781. front: {
  42782. height: math.unit(100, "miles"),
  42783. weight: math.unit(20000, "tons"),
  42784. name: "Front",
  42785. image: {
  42786. source: "./media/characters/cookie/front.svg",
  42787. extra: 1125/1070,
  42788. bottom: 30/1155
  42789. }
  42790. },
  42791. },
  42792. [
  42793. {
  42794. name: "Big",
  42795. height: math.unit(50, "feet")
  42796. },
  42797. {
  42798. name: "Macro",
  42799. height: math.unit(100, "miles"),
  42800. default: true
  42801. },
  42802. {
  42803. name: "Megamacro",
  42804. height: math.unit(90000, "miles")
  42805. },
  42806. ]
  42807. ))
  42808. characterMakers.push(() => makeCharacter(
  42809. { name: "Farzian", species: ["folf"], tags: ["anthro"] },
  42810. {
  42811. front: {
  42812. height: math.unit(6, "feet"),
  42813. weight: math.unit(145, "lb"),
  42814. name: "Front",
  42815. image: {
  42816. source: "./media/characters/farzian/front.svg",
  42817. extra: 1902/1693,
  42818. bottom: 108/2010
  42819. }
  42820. },
  42821. },
  42822. [
  42823. {
  42824. name: "Macro",
  42825. height: math.unit(500, "feet"),
  42826. default: true
  42827. },
  42828. ]
  42829. ))
  42830. characterMakers.push(() => makeCharacter(
  42831. { name: "Kimberly Tilson", species: ["rabbit"], tags: ["anthro"] },
  42832. {
  42833. front: {
  42834. height: math.unit(3 + 6/12, "feet"),
  42835. weight: math.unit(50, "lb"),
  42836. name: "Front",
  42837. image: {
  42838. source: "./media/characters/kimberly-tilson/front.svg",
  42839. extra: 1400/1322,
  42840. bottom: 36/1436
  42841. }
  42842. },
  42843. back: {
  42844. height: math.unit(3 + 6/12, "feet"),
  42845. weight: math.unit(50, "lb"),
  42846. name: "Back",
  42847. image: {
  42848. source: "./media/characters/kimberly-tilson/back.svg",
  42849. extra: 1370/1307,
  42850. bottom: 20/1390
  42851. }
  42852. },
  42853. },
  42854. [
  42855. {
  42856. name: "Normal",
  42857. height: math.unit(3 + 6/12, "feet"),
  42858. default: true
  42859. },
  42860. ]
  42861. ))
  42862. characterMakers.push(() => makeCharacter(
  42863. { name: "Harthos", species: ["peacekeeper", "allusus"], tags: ["anthro"] },
  42864. {
  42865. front: {
  42866. height: math.unit(350, "meters"),
  42867. weight: math.unit(7.57059e+8, "lb"),
  42868. name: "Front",
  42869. image: {
  42870. source: "./media/characters/harthos/front.svg",
  42871. extra: 455/446,
  42872. bottom: 15/470
  42873. },
  42874. form: "peacekeeper",
  42875. default: true
  42876. },
  42877. allusus_front: {
  42878. height: math.unit(270, "meters"),
  42879. weight: math.unit(3.47550e+8, "lb"),
  42880. name: "Front",
  42881. image: {
  42882. source: "./media/characters/harthos/allusus-front.svg",
  42883. extra: 455/446,
  42884. bottom: 15/470
  42885. },
  42886. form: "allusus",
  42887. },
  42888. },
  42889. [
  42890. {
  42891. name: "Macro",
  42892. height: math.unit(350, "meters"),
  42893. default: true,
  42894. form: "peacekeeper"
  42895. },
  42896. {
  42897. name: "Macro",
  42898. height: math.unit(270, "meters"),
  42899. default: true,
  42900. form: "allusus"
  42901. },
  42902. ],
  42903. {
  42904. "peacekeeper": {
  42905. name: "Peacekeeper",
  42906. default: true
  42907. },
  42908. "allusus": {
  42909. name: "Allusus",
  42910. },
  42911. }
  42912. ))
  42913. characterMakers.push(() => makeCharacter(
  42914. { name: "Hypatia", species: ["gardevoir", "deity"], tags: ["anthro"] },
  42915. {
  42916. front: {
  42917. height: math.unit(15, "feet"),
  42918. name: "Front",
  42919. image: {
  42920. source: "./media/characters/hypatia/front.svg",
  42921. extra: 1653/1591,
  42922. bottom: 79/1732
  42923. }
  42924. },
  42925. },
  42926. [
  42927. {
  42928. name: "Normal",
  42929. height: math.unit(15, "feet")
  42930. },
  42931. {
  42932. name: "Small",
  42933. height: math.unit(300, "feet")
  42934. },
  42935. {
  42936. name: "Macro",
  42937. height: math.unit(2500, "feet"),
  42938. default: true
  42939. },
  42940. {
  42941. name: "Mega Macro",
  42942. height: math.unit(1500, "miles")
  42943. },
  42944. {
  42945. name: "Giga Macro",
  42946. height: math.unit(1.5e6, "miles")
  42947. },
  42948. ]
  42949. ))
  42950. characterMakers.push(() => makeCharacter(
  42951. { name: "Wulver", species: ["werewolf"], tags: ["anthro"] },
  42952. {
  42953. front: {
  42954. height: math.unit(6, "feet"),
  42955. weight: math.unit(200, "lb"),
  42956. name: "Front",
  42957. image: {
  42958. source: "./media/characters/wulver/front.svg",
  42959. extra: 1724/1632,
  42960. bottom: 130/1854
  42961. }
  42962. },
  42963. frontNsfw: {
  42964. height: math.unit(6, "feet"),
  42965. weight: math.unit(200, "lb"),
  42966. name: "Front (NSFW)",
  42967. image: {
  42968. source: "./media/characters/wulver/front-nsfw.svg",
  42969. extra: 1724/1632,
  42970. bottom: 130/1854
  42971. }
  42972. },
  42973. },
  42974. [
  42975. {
  42976. name: "Human-Sized",
  42977. height: math.unit(6, "feet")
  42978. },
  42979. {
  42980. name: "Normal",
  42981. height: math.unit(4, "meters"),
  42982. default: true
  42983. },
  42984. {
  42985. name: "Large",
  42986. height: math.unit(6, "m")
  42987. },
  42988. ]
  42989. ))
  42990. characterMakers.push(() => makeCharacter(
  42991. { name: "Maru", species: ["tiger"], tags: ["anthro"] },
  42992. {
  42993. front: {
  42994. height: math.unit(7, "feet"),
  42995. name: "Front",
  42996. image: {
  42997. source: "./media/characters/maru/front.svg",
  42998. extra: 1595/1570,
  42999. bottom: 0/1595
  43000. }
  43001. },
  43002. },
  43003. [
  43004. {
  43005. name: "Normal",
  43006. height: math.unit(7, "feet"),
  43007. default: true
  43008. },
  43009. {
  43010. name: "Macro",
  43011. height: math.unit(700, "feet")
  43012. },
  43013. {
  43014. name: "Mega Macro",
  43015. height: math.unit(25, "miles")
  43016. },
  43017. ]
  43018. ))
  43019. characterMakers.push(() => makeCharacter(
  43020. { name: "Xenon", species: ["river-otter", "wolf"], tags: ["anthro"] },
  43021. {
  43022. front: {
  43023. height: math.unit(6, "feet"),
  43024. weight: math.unit(170, "lb"),
  43025. name: "Front",
  43026. image: {
  43027. source: "./media/characters/xenon/front.svg",
  43028. extra: 1376/1305,
  43029. bottom: 56/1432
  43030. }
  43031. },
  43032. back: {
  43033. height: math.unit(6, "feet"),
  43034. weight: math.unit(170, "lb"),
  43035. name: "Back",
  43036. image: {
  43037. source: "./media/characters/xenon/back.svg",
  43038. extra: 1328/1259,
  43039. bottom: 95/1423
  43040. }
  43041. },
  43042. maw: {
  43043. height: math.unit(0.52, "feet"),
  43044. name: "Maw",
  43045. image: {
  43046. source: "./media/characters/xenon/maw.svg"
  43047. }
  43048. },
  43049. handLeft: {
  43050. height: math.unit(0.82 * 169 / 153, "feet"),
  43051. name: "Hand (Left)",
  43052. image: {
  43053. source: "./media/characters/xenon/hand-left.svg"
  43054. }
  43055. },
  43056. handRight: {
  43057. height: math.unit(0.82, "feet"),
  43058. name: "Hand (Right)",
  43059. image: {
  43060. source: "./media/characters/xenon/hand-right.svg"
  43061. }
  43062. },
  43063. footLeft: {
  43064. height: math.unit(1.13, "feet"),
  43065. name: "Foot (Left)",
  43066. image: {
  43067. source: "./media/characters/xenon/foot-left.svg"
  43068. }
  43069. },
  43070. footRight: {
  43071. height: math.unit(1.13 * 194 / 196, "feet"),
  43072. name: "Foot (Right)",
  43073. image: {
  43074. source: "./media/characters/xenon/foot-right.svg"
  43075. }
  43076. },
  43077. },
  43078. [
  43079. {
  43080. name: "Micro",
  43081. height: math.unit(0.8, "inches")
  43082. },
  43083. {
  43084. name: "Normal",
  43085. height: math.unit(6, "feet")
  43086. },
  43087. {
  43088. name: "Macro",
  43089. height: math.unit(50, "feet"),
  43090. default: true
  43091. },
  43092. {
  43093. name: "Macro+",
  43094. height: math.unit(250, "feet")
  43095. },
  43096. {
  43097. name: "Megamacro",
  43098. height: math.unit(1500, "feet")
  43099. },
  43100. ]
  43101. ))
  43102. characterMakers.push(() => makeCharacter(
  43103. { name: "Zane", species: ["wolf", "werewolf"], tags: ["anthro"] },
  43104. {
  43105. front: {
  43106. height: math.unit(7 + 5/12, "feet"),
  43107. name: "Front",
  43108. image: {
  43109. source: "./media/characters/zane/front.svg",
  43110. extra: 1260/1203,
  43111. bottom: 94/1354
  43112. }
  43113. },
  43114. back: {
  43115. height: math.unit(5.05, "feet"),
  43116. name: "Back",
  43117. image: {
  43118. source: "./media/characters/zane/back.svg",
  43119. extra: 893/829,
  43120. bottom: 30/923
  43121. }
  43122. },
  43123. werewolf: {
  43124. height: math.unit(11, "feet"),
  43125. name: "Werewolf",
  43126. image: {
  43127. source: "./media/characters/zane/werewolf.svg",
  43128. extra: 1383/1323,
  43129. bottom: 89/1472
  43130. }
  43131. },
  43132. foot: {
  43133. height: math.unit(1.46, "feet"),
  43134. name: "Foot",
  43135. image: {
  43136. source: "./media/characters/zane/foot.svg"
  43137. }
  43138. },
  43139. footFront: {
  43140. height: math.unit(0.784, "feet"),
  43141. name: "Foot (Front)",
  43142. image: {
  43143. source: "./media/characters/zane/foot-front.svg"
  43144. }
  43145. },
  43146. dick: {
  43147. height: math.unit(1.95, "feet"),
  43148. name: "Dick",
  43149. image: {
  43150. source: "./media/characters/zane/dick.svg"
  43151. }
  43152. },
  43153. dickWerewolf: {
  43154. height: math.unit(3.77, "feet"),
  43155. name: "Dick (Werewolf)",
  43156. image: {
  43157. source: "./media/characters/zane/dick.svg"
  43158. }
  43159. },
  43160. },
  43161. [
  43162. {
  43163. name: "Normal",
  43164. height: math.unit(7 + 5/12, "feet"),
  43165. default: true
  43166. },
  43167. ]
  43168. ))
  43169. characterMakers.push(() => makeCharacter(
  43170. { name: "Benni Desparque", species: ["tiger", "rabbit"], tags: ["anthro"] },
  43171. {
  43172. front: {
  43173. height: math.unit(6 + 2/12, "feet"),
  43174. weight: math.unit(284, "lb"),
  43175. name: "Front",
  43176. image: {
  43177. source: "./media/characters/benni-desparque/front.svg",
  43178. extra: 878/729,
  43179. bottom: 58/936
  43180. }
  43181. },
  43182. back: {
  43183. height: math.unit(6 + 2/12, "feet"),
  43184. weight: math.unit(284, "lb"),
  43185. name: "Back",
  43186. image: {
  43187. source: "./media/characters/benni-desparque/back.svg",
  43188. extra: 901/756,
  43189. bottom: 51/952
  43190. }
  43191. },
  43192. dressed: {
  43193. height: math.unit(6 + 2/12 + 0.5/12, "feet"),
  43194. weight: math.unit(284, "lb"),
  43195. name: "Dressed",
  43196. image: {
  43197. source: "./media/characters/benni-desparque/dressed.svg",
  43198. extra: 1514/1276,
  43199. bottom: 65/1579
  43200. }
  43201. },
  43202. hand: {
  43203. height: math.unit(1.28, "feet"),
  43204. name: "Hand",
  43205. image: {
  43206. source: "./media/characters/benni-desparque/hand.svg"
  43207. }
  43208. },
  43209. foot: {
  43210. height: math.unit(1.53, "feet"),
  43211. name: "Foot",
  43212. image: {
  43213. source: "./media/characters/benni-desparque/foot.svg"
  43214. }
  43215. },
  43216. aiControlUnit: {
  43217. height: math.unit(0.175, "feet"),
  43218. name: "AI Control Unit",
  43219. image: {
  43220. source: "./media/characters/benni-desparque/ai-control-unit.svg"
  43221. }
  43222. },
  43223. },
  43224. [
  43225. {
  43226. name: "Civilian",
  43227. height: math.unit(6 + 2/12, "feet")
  43228. },
  43229. {
  43230. name: "Normal",
  43231. height: math.unit(98, "feet"),
  43232. default: true
  43233. },
  43234. {
  43235. name: "Kaiju Fighter",
  43236. height: math.unit(268, "feet")
  43237. },
  43238. ]
  43239. ))
  43240. characterMakers.push(() => makeCharacter(
  43241. { name: "Maxine", species: ["human"], tags: ["anthro"] },
  43242. {
  43243. front: {
  43244. height: math.unit(5, "feet"),
  43245. weight: math.unit(105, "lb"),
  43246. name: "Front",
  43247. image: {
  43248. source: "./media/characters/maxine/front.svg",
  43249. extra: 1386/1250,
  43250. bottom: 71/1457
  43251. }
  43252. },
  43253. },
  43254. [
  43255. {
  43256. name: "Normal",
  43257. height: math.unit(5, "feet"),
  43258. default: true
  43259. },
  43260. ]
  43261. ))
  43262. characterMakers.push(() => makeCharacter(
  43263. { name: "Scaly", species: ["charizard"], tags: ["anthro"] },
  43264. {
  43265. front: {
  43266. height: math.unit(11 + 7/12, "feet"),
  43267. weight: math.unit(9576, "lb"),
  43268. name: "Front",
  43269. image: {
  43270. source: "./media/characters/scaly/front.svg",
  43271. extra: 888/867,
  43272. bottom: 36/924
  43273. }
  43274. },
  43275. },
  43276. [
  43277. {
  43278. name: "Normal",
  43279. height: math.unit(11 + 7/12, "feet"),
  43280. default: true
  43281. },
  43282. ]
  43283. ))
  43284. characterMakers.push(() => makeCharacter(
  43285. { name: "Saelria", species: ["slime", "dragon"], tags: ["goo"] },
  43286. {
  43287. front: {
  43288. height: math.unit(6 + 3/12, "feet"),
  43289. name: "Front",
  43290. image: {
  43291. source: "./media/characters/saelria/front.svg",
  43292. extra: 1243/1138,
  43293. bottom: 46/1289
  43294. }
  43295. },
  43296. },
  43297. [
  43298. {
  43299. name: "Micro",
  43300. height: math.unit(6, "inches"),
  43301. },
  43302. {
  43303. name: "Normal",
  43304. height: math.unit(6 + 3/12, "feet"),
  43305. default: true
  43306. },
  43307. {
  43308. name: "Macro",
  43309. height: math.unit(25, "feet")
  43310. },
  43311. ]
  43312. ))
  43313. characterMakers.push(() => makeCharacter(
  43314. { name: "Tef", species: ["human", "deity"], tags: ["anthro"] },
  43315. {
  43316. front: {
  43317. height: math.unit(80, "meters"),
  43318. weight: math.unit(7000, "tonnes"),
  43319. name: "Front",
  43320. image: {
  43321. source: "./media/characters/tef/front.svg",
  43322. extra: 2036/1991,
  43323. bottom: 54/2090
  43324. }
  43325. },
  43326. back: {
  43327. height: math.unit(80, "meters"),
  43328. weight: math.unit(7000, "tonnes"),
  43329. name: "Back",
  43330. image: {
  43331. source: "./media/characters/tef/back.svg",
  43332. extra: 2036/1991,
  43333. bottom: 54/2090
  43334. }
  43335. },
  43336. },
  43337. [
  43338. {
  43339. name: "Macro",
  43340. height: math.unit(80, "meters"),
  43341. default: true
  43342. },
  43343. ]
  43344. ))
  43345. characterMakers.push(() => makeCharacter(
  43346. { name: "Rover", species: ["mouse"], tags: ["anthro"] },
  43347. {
  43348. front: {
  43349. height: math.unit(13, "feet"),
  43350. weight: math.unit(6, "tons"),
  43351. name: "Front",
  43352. image: {
  43353. source: "./media/characters/rover/front.svg",
  43354. extra: 1233/1156,
  43355. bottom: 50/1283
  43356. }
  43357. },
  43358. back: {
  43359. height: math.unit(13, "feet"),
  43360. weight: math.unit(6, "tons"),
  43361. name: "Back",
  43362. image: {
  43363. source: "./media/characters/rover/back.svg",
  43364. extra: 1327/1258,
  43365. bottom: 39/1366
  43366. }
  43367. },
  43368. },
  43369. [
  43370. {
  43371. name: "Normal",
  43372. height: math.unit(13, "feet"),
  43373. default: true
  43374. },
  43375. {
  43376. name: "Macro",
  43377. height: math.unit(1300, "feet")
  43378. },
  43379. {
  43380. name: "Megamacro",
  43381. height: math.unit(1300, "miles")
  43382. },
  43383. {
  43384. name: "Gigamacro",
  43385. height: math.unit(1300000, "miles")
  43386. },
  43387. ]
  43388. ))
  43389. characterMakers.push(() => makeCharacter(
  43390. { name: "Ariz", species: ["peacekeeper"], tags: ["anthro"] },
  43391. {
  43392. front: {
  43393. height: math.unit(10, "feet"),
  43394. weight: math.unit(500, "lb"),
  43395. name: "Front",
  43396. image: {
  43397. source: "./media/characters/ariz/front.svg",
  43398. extra: 461/450,
  43399. bottom: 16/477
  43400. }
  43401. },
  43402. },
  43403. [
  43404. {
  43405. name: "MiniMacro",
  43406. height: math.unit(10, "feet"),
  43407. default: true
  43408. },
  43409. ]
  43410. ))
  43411. characterMakers.push(() => makeCharacter(
  43412. { name: "Sigrun", species: ["peacekeeper"], tags: ["anthro"] },
  43413. {
  43414. front: {
  43415. height: math.unit(6, "feet"),
  43416. weight: math.unit(140, "lb"),
  43417. name: "Front",
  43418. image: {
  43419. source: "./media/characters/sigrun/front.svg",
  43420. extra: 1418/1359,
  43421. bottom: 27/1445
  43422. }
  43423. },
  43424. },
  43425. [
  43426. {
  43427. name: "Macro",
  43428. height: math.unit(35, "feet"),
  43429. default: true
  43430. },
  43431. ]
  43432. ))
  43433. characterMakers.push(() => makeCharacter(
  43434. { name: "Numin", species: ["peacekeeper"], tags: ["anthro"] },
  43435. {
  43436. front: {
  43437. height: math.unit(6, "feet"),
  43438. weight: math.unit(150, "lb"),
  43439. name: "Front",
  43440. image: {
  43441. source: "./media/characters/numin/front.svg",
  43442. extra: 1433/1388,
  43443. bottom: 12/1445
  43444. }
  43445. },
  43446. },
  43447. [
  43448. {
  43449. name: "Macro",
  43450. height: math.unit(21.5, "km"),
  43451. default: true
  43452. },
  43453. ]
  43454. ))
  43455. characterMakers.push(() => makeCharacter(
  43456. { name: "Melwa", species: ["kaiju"], tags: ["anthro"] },
  43457. {
  43458. front: {
  43459. height: math.unit(6, "feet"),
  43460. weight: math.unit(463, "lb"),
  43461. name: "Front",
  43462. image: {
  43463. source: "./media/characters/melwa/front.svg",
  43464. extra: 1307/1248,
  43465. bottom: 93/1400
  43466. }
  43467. },
  43468. },
  43469. [
  43470. {
  43471. name: "Macro",
  43472. height: math.unit(50, "meters"),
  43473. default: true
  43474. },
  43475. ]
  43476. ))
  43477. characterMakers.push(() => makeCharacter(
  43478. { name: "Zorkaiju", species: ["kaiju", "cat"], tags: ["anthro"] },
  43479. {
  43480. front: {
  43481. height: math.unit(325, "feet"),
  43482. name: "Front",
  43483. image: {
  43484. source: "./media/characters/zorkaiju/front.svg",
  43485. extra: 1955/1814,
  43486. bottom: 40/1995
  43487. }
  43488. },
  43489. frontExtended: {
  43490. height: math.unit(325, "feet"),
  43491. name: "Front (Extended)",
  43492. image: {
  43493. source: "./media/characters/zorkaiju/front-extended.svg",
  43494. extra: 1955/1814,
  43495. bottom: 40/1995
  43496. }
  43497. },
  43498. side: {
  43499. height: math.unit(325, "feet"),
  43500. name: "Side",
  43501. image: {
  43502. source: "./media/characters/zorkaiju/side.svg",
  43503. extra: 1495/1396,
  43504. bottom: 17/1512
  43505. }
  43506. },
  43507. sideExtended: {
  43508. height: math.unit(325, "feet"),
  43509. name: "Side (Extended)",
  43510. image: {
  43511. source: "./media/characters/zorkaiju/side-extended.svg",
  43512. extra: 1495/1396,
  43513. bottom: 17/1512
  43514. }
  43515. },
  43516. back: {
  43517. height: math.unit(325, "feet"),
  43518. name: "Back",
  43519. image: {
  43520. source: "./media/characters/zorkaiju/back.svg",
  43521. extra: 1959/1821,
  43522. bottom: 31/1990
  43523. }
  43524. },
  43525. backExtended: {
  43526. height: math.unit(325, "feet"),
  43527. name: "Back (Extended)",
  43528. image: {
  43529. source: "./media/characters/zorkaiju/back-extended.svg",
  43530. extra: 1959/1821,
  43531. bottom: 31/1990
  43532. }
  43533. },
  43534. hand: {
  43535. height: math.unit(58.4, "feet"),
  43536. name: "Hand",
  43537. image: {
  43538. source: "./media/characters/zorkaiju/hand.svg"
  43539. }
  43540. },
  43541. handExtended: {
  43542. height: math.unit(61.4, "feet"),
  43543. name: "Hand (Extended)",
  43544. image: {
  43545. source: "./media/characters/zorkaiju/hand-extended.svg"
  43546. }
  43547. },
  43548. foot: {
  43549. height: math.unit(95, "feet"),
  43550. name: "Foot",
  43551. image: {
  43552. source: "./media/characters/zorkaiju/foot.svg"
  43553. }
  43554. },
  43555. leftArm: {
  43556. height: math.unit(59, "feet"),
  43557. name: "Left Arm",
  43558. image: {
  43559. source: "./media/characters/zorkaiju/left-arm.svg"
  43560. }
  43561. },
  43562. rightArm: {
  43563. height: math.unit(59, "feet"),
  43564. name: "Right Arm",
  43565. image: {
  43566. source: "./media/characters/zorkaiju/right-arm.svg"
  43567. }
  43568. },
  43569. leftArmExtended: {
  43570. height: math.unit(59 * 1.033546, "feet"),
  43571. name: "Left Arm (Extended)",
  43572. image: {
  43573. source: "./media/characters/zorkaiju/left-arm-extended.svg"
  43574. }
  43575. },
  43576. rightArmExtended: {
  43577. height: math.unit(59 * 1.0496, "feet"),
  43578. name: "Right Arm (Extended)",
  43579. image: {
  43580. source: "./media/characters/zorkaiju/right-arm-extended.svg"
  43581. }
  43582. },
  43583. tail: {
  43584. height: math.unit(104, "feet"),
  43585. name: "Tail",
  43586. image: {
  43587. source: "./media/characters/zorkaiju/tail.svg"
  43588. }
  43589. },
  43590. tailExtended: {
  43591. height: math.unit(104, "feet"),
  43592. name: "Tail (Extended)",
  43593. image: {
  43594. source: "./media/characters/zorkaiju/tail-extended.svg"
  43595. }
  43596. },
  43597. tailBottom: {
  43598. height: math.unit(104, "feet"),
  43599. name: "Tail Bottom",
  43600. image: {
  43601. source: "./media/characters/zorkaiju/tail-bottom.svg"
  43602. }
  43603. },
  43604. crystal: {
  43605. height: math.unit(27.54, "feet"),
  43606. name: "Crystal",
  43607. image: {
  43608. source: "./media/characters/zorkaiju/crystal.svg"
  43609. }
  43610. },
  43611. },
  43612. [
  43613. {
  43614. name: "Kaiju",
  43615. height: math.unit(325, "feet"),
  43616. default: true
  43617. },
  43618. ]
  43619. ))
  43620. characterMakers.push(() => makeCharacter(
  43621. { name: "Bailey Belfry", species: ["townsend-big-eared-bat"], tags: ["anthro"] },
  43622. {
  43623. front: {
  43624. height: math.unit(6 + 1/12, "feet"),
  43625. weight: math.unit(115, "lb"),
  43626. name: "Front",
  43627. image: {
  43628. source: "./media/characters/bailey-belfry/front.svg",
  43629. extra: 1240/1121,
  43630. bottom: 101/1341
  43631. }
  43632. },
  43633. },
  43634. [
  43635. {
  43636. name: "Normal",
  43637. height: math.unit(6 + 1/12, "feet"),
  43638. default: true
  43639. },
  43640. ]
  43641. ))
  43642. characterMakers.push(() => makeCharacter(
  43643. { name: "Blacky", species: ["cat", "dragon"], tags: ["feral"] },
  43644. {
  43645. side: {
  43646. height: math.unit(4, "meters"),
  43647. weight: math.unit(250, "kg"),
  43648. name: "Side",
  43649. image: {
  43650. source: "./media/characters/blacky/side.svg",
  43651. extra: 1027/919,
  43652. bottom: 43/1070
  43653. }
  43654. },
  43655. maw: {
  43656. height: math.unit(1, "meters"),
  43657. name: "Maw",
  43658. image: {
  43659. source: "./media/characters/blacky/maw.svg"
  43660. }
  43661. },
  43662. paw: {
  43663. height: math.unit(1, "meters"),
  43664. name: "Paw",
  43665. image: {
  43666. source: "./media/characters/blacky/paw.svg"
  43667. }
  43668. },
  43669. },
  43670. [
  43671. {
  43672. name: "Normal",
  43673. height: math.unit(4, "meters"),
  43674. default: true
  43675. },
  43676. ]
  43677. ))
  43678. characterMakers.push(() => makeCharacter(
  43679. { name: "Thux-Ei", species: ["fox"], tags: ["anthro"] },
  43680. {
  43681. front: {
  43682. height: math.unit(170, "cm"),
  43683. weight: math.unit(66, "kg"),
  43684. name: "Front",
  43685. image: {
  43686. source: "./media/characters/thux-ei/front.svg",
  43687. extra: 1109/1011,
  43688. bottom: 8/1117
  43689. }
  43690. },
  43691. },
  43692. [
  43693. {
  43694. name: "Normal",
  43695. height: math.unit(170, "cm"),
  43696. default: true
  43697. },
  43698. ]
  43699. ))
  43700. characterMakers.push(() => makeCharacter(
  43701. { name: "Roxanne Voltaire", species: ["jaguar"], tags: ["anthro"] },
  43702. {
  43703. front: {
  43704. height: math.unit(5, "feet"),
  43705. weight: math.unit(120, "lb"),
  43706. name: "Front",
  43707. image: {
  43708. source: "./media/characters/roxanne-voltaire/front.svg",
  43709. extra: 1901/1779,
  43710. bottom: 53/1954
  43711. }
  43712. },
  43713. },
  43714. [
  43715. {
  43716. name: "Normal",
  43717. height: math.unit(5, "feet"),
  43718. default: true
  43719. },
  43720. {
  43721. name: "Giant",
  43722. height: math.unit(50, "feet")
  43723. },
  43724. {
  43725. name: "Titan",
  43726. height: math.unit(500, "feet")
  43727. },
  43728. {
  43729. name: "Macro",
  43730. height: math.unit(5000, "feet")
  43731. },
  43732. {
  43733. name: "Megamacro",
  43734. height: math.unit(50000, "feet")
  43735. },
  43736. {
  43737. name: "Gigamacro",
  43738. height: math.unit(500000, "feet")
  43739. },
  43740. {
  43741. name: "Teramacro",
  43742. height: math.unit(5e6, "feet")
  43743. },
  43744. ]
  43745. ))
  43746. characterMakers.push(() => makeCharacter(
  43747. { name: "Squeaks", species: ["rough-collie"], tags: ["anthro"] },
  43748. {
  43749. front: {
  43750. height: math.unit(6 + 2/12, "feet"),
  43751. name: "Front",
  43752. image: {
  43753. source: "./media/characters/squeaks/front.svg",
  43754. extra: 1823/1768,
  43755. bottom: 138/1961
  43756. }
  43757. },
  43758. },
  43759. [
  43760. {
  43761. name: "Micro",
  43762. height: math.unit(0.5, "inches")
  43763. },
  43764. {
  43765. name: "Normal",
  43766. height: math.unit(6 + 2/12, "feet"),
  43767. default: true
  43768. },
  43769. {
  43770. name: "Macro",
  43771. height: math.unit(600, "feet")
  43772. },
  43773. ]
  43774. ))
  43775. characterMakers.push(() => makeCharacter(
  43776. { name: "Archinger", species: ["squirrel"], tags: ["anthro"] },
  43777. {
  43778. front: {
  43779. height: math.unit(1.72, "meters"),
  43780. name: "Front",
  43781. image: {
  43782. source: "./media/characters/archinger/front.svg",
  43783. extra: 1861/1675,
  43784. bottom: 125/1986
  43785. }
  43786. },
  43787. back: {
  43788. height: math.unit(1.72, "meters"),
  43789. name: "Back",
  43790. image: {
  43791. source: "./media/characters/archinger/back.svg",
  43792. extra: 1844/1701,
  43793. bottom: 104/1948
  43794. }
  43795. },
  43796. cock: {
  43797. height: math.unit(0.59, "feet"),
  43798. name: "Cock",
  43799. image: {
  43800. source: "./media/characters/archinger/cock.svg"
  43801. }
  43802. },
  43803. },
  43804. [
  43805. {
  43806. name: "Normal",
  43807. height: math.unit(1.72, "meters"),
  43808. default: true
  43809. },
  43810. {
  43811. name: "Macro",
  43812. height: math.unit(84, "meters")
  43813. },
  43814. {
  43815. name: "Macro+",
  43816. height: math.unit(112, "meters")
  43817. },
  43818. {
  43819. name: "Macro++",
  43820. height: math.unit(960, "meters")
  43821. },
  43822. {
  43823. name: "Macro+++",
  43824. height: math.unit(4, "km")
  43825. },
  43826. {
  43827. name: "Macro++++",
  43828. height: math.unit(48, "km")
  43829. },
  43830. {
  43831. name: "Macro+++++",
  43832. height: math.unit(4500, "km")
  43833. },
  43834. ]
  43835. ))
  43836. characterMakers.push(() => makeCharacter(
  43837. { name: "Alsnapz", species: ["avian"], tags: ["anthro"] },
  43838. {
  43839. front: {
  43840. height: math.unit(5 + 5/12, "feet"),
  43841. name: "Front",
  43842. image: {
  43843. source: "./media/characters/alsnapz/front.svg",
  43844. extra: 1157/1065,
  43845. bottom: 42/1199
  43846. }
  43847. },
  43848. },
  43849. [
  43850. {
  43851. name: "Normal",
  43852. height: math.unit(5 + 5/12, "feet"),
  43853. default: true
  43854. },
  43855. ]
  43856. ))
  43857. characterMakers.push(() => makeCharacter(
  43858. { name: "Mag", species: ["magpie"], tags: ["feral"] },
  43859. {
  43860. side: {
  43861. height: math.unit(3.2, "earths"),
  43862. name: "Side",
  43863. image: {
  43864. source: "./media/characters/mag/side.svg",
  43865. extra: 1331/1008,
  43866. bottom: 52/1383
  43867. }
  43868. },
  43869. wing: {
  43870. height: math.unit(1.94, "earths"),
  43871. name: "Wing",
  43872. image: {
  43873. source: "./media/characters/mag/wing.svg"
  43874. }
  43875. },
  43876. dick: {
  43877. height: math.unit(1.8, "earths"),
  43878. name: "Dick",
  43879. image: {
  43880. source: "./media/characters/mag/dick.svg"
  43881. }
  43882. },
  43883. ass: {
  43884. height: math.unit(1.33, "earths"),
  43885. name: "Ass",
  43886. image: {
  43887. source: "./media/characters/mag/ass.svg"
  43888. }
  43889. },
  43890. head: {
  43891. height: math.unit(1.1, "earths"),
  43892. name: "Head",
  43893. image: {
  43894. source: "./media/characters/mag/head.svg"
  43895. }
  43896. },
  43897. maw: {
  43898. height: math.unit(1.62, "earths"),
  43899. name: "Maw",
  43900. image: {
  43901. source: "./media/characters/mag/maw.svg"
  43902. }
  43903. },
  43904. },
  43905. [
  43906. {
  43907. name: "Small",
  43908. height: math.unit(162, "feet")
  43909. },
  43910. {
  43911. name: "Normal",
  43912. height: math.unit(3.2, "earths"),
  43913. default: true
  43914. },
  43915. ]
  43916. ))
  43917. characterMakers.push(() => makeCharacter(
  43918. { name: "Vorrel Harroc", species: ["t-rex"], tags: ["anthro"] },
  43919. {
  43920. front: {
  43921. height: math.unit(512, "feet"),
  43922. weight: math.unit(63509, "tonnes"),
  43923. name: "Front",
  43924. image: {
  43925. source: "./media/characters/vorrel-harroc/front.svg",
  43926. extra: 1075/1063,
  43927. bottom: 62/1137
  43928. }
  43929. },
  43930. },
  43931. [
  43932. {
  43933. name: "Normal",
  43934. height: math.unit(10, "feet")
  43935. },
  43936. {
  43937. name: "Macro",
  43938. height: math.unit(512, "feet"),
  43939. default: true
  43940. },
  43941. {
  43942. name: "Megamacro",
  43943. height: math.unit(256, "miles")
  43944. },
  43945. {
  43946. name: "Gigamacro",
  43947. height: math.unit(4096, "miles")
  43948. },
  43949. ]
  43950. ))
  43951. characterMakers.push(() => makeCharacter(
  43952. { name: "Froimar", species: ["eastern-dragon"], tags: ["anthro"] },
  43953. {
  43954. side: {
  43955. height: math.unit(50, "feet"),
  43956. name: "Side",
  43957. image: {
  43958. source: "./media/characters/froimar/side.svg",
  43959. extra: 855/638,
  43960. bottom: 99/954
  43961. }
  43962. },
  43963. },
  43964. [
  43965. {
  43966. name: "Macro",
  43967. height: math.unit(50, "feet"),
  43968. default: true
  43969. },
  43970. ]
  43971. ))
  43972. characterMakers.push(() => makeCharacter(
  43973. { name: "Timothy", species: ["rabbit"], tags: ["anthro"] },
  43974. {
  43975. front: {
  43976. height: math.unit(210, "miles"),
  43977. name: "Front",
  43978. image: {
  43979. source: "./media/characters/timothy/front.svg",
  43980. extra: 1007/943,
  43981. bottom: 62/1069
  43982. }
  43983. },
  43984. frontSkirt: {
  43985. height: math.unit(210, "miles"),
  43986. name: "Front (Skirt)",
  43987. image: {
  43988. source: "./media/characters/timothy/front-skirt.svg",
  43989. extra: 1007/943,
  43990. bottom: 62/1069
  43991. }
  43992. },
  43993. frontCoat: {
  43994. height: math.unit(210, "miles"),
  43995. name: "Front (Coat)",
  43996. image: {
  43997. source: "./media/characters/timothy/front-coat.svg",
  43998. extra: 1007/943,
  43999. bottom: 62/1069
  44000. }
  44001. },
  44002. },
  44003. [
  44004. {
  44005. name: "Macro",
  44006. height: math.unit(210, "miles"),
  44007. default: true
  44008. },
  44009. {
  44010. name: "Megamacro",
  44011. height: math.unit(210000, "miles")
  44012. },
  44013. ]
  44014. ))
  44015. characterMakers.push(() => makeCharacter(
  44016. { name: "Pyotr", species: ["fox"], tags: ["anthro"] },
  44017. {
  44018. front: {
  44019. height: math.unit(188, "feet"),
  44020. name: "Front",
  44021. image: {
  44022. source: "./media/characters/pyotr/front.svg",
  44023. extra: 1912/1826,
  44024. bottom: 18/1930
  44025. }
  44026. },
  44027. },
  44028. [
  44029. {
  44030. name: "Macro",
  44031. height: math.unit(188, "feet"),
  44032. default: true
  44033. },
  44034. {
  44035. name: "Megamacro",
  44036. height: math.unit(8, "miles")
  44037. },
  44038. ]
  44039. ))
  44040. characterMakers.push(() => makeCharacter(
  44041. { name: "Ackart", species: ["fox"], tags: ["taur"] },
  44042. {
  44043. side: {
  44044. height: math.unit(10, "feet"),
  44045. weight: math.unit(4500, "lb"),
  44046. name: "Side",
  44047. image: {
  44048. source: "./media/characters/ackart/side.svg",
  44049. extra: 1776/1668,
  44050. bottom: 116/1892
  44051. }
  44052. },
  44053. },
  44054. [
  44055. {
  44056. name: "Normal",
  44057. height: math.unit(10, "feet"),
  44058. default: true
  44059. },
  44060. ]
  44061. ))
  44062. characterMakers.push(() => makeCharacter(
  44063. { name: "Nolow", species: ["cheetah"], tags: ["taur"] },
  44064. {
  44065. side: {
  44066. height: math.unit(21, "feet"),
  44067. name: "Side",
  44068. image: {
  44069. source: "./media/characters/nolow/side.svg",
  44070. extra: 1484/1434,
  44071. bottom: 85/1569
  44072. }
  44073. },
  44074. sideErect: {
  44075. height: math.unit(21, "feet"),
  44076. name: "Side-erect",
  44077. image: {
  44078. source: "./media/characters/nolow/side-erect.svg",
  44079. extra: 1484/1434,
  44080. bottom: 85/1569
  44081. }
  44082. },
  44083. },
  44084. [
  44085. {
  44086. name: "Regular",
  44087. height: math.unit(12, "feet")
  44088. },
  44089. {
  44090. name: "Big Chee",
  44091. height: math.unit(21, "feet"),
  44092. default: true
  44093. },
  44094. ]
  44095. ))
  44096. characterMakers.push(() => makeCharacter(
  44097. { name: "Nines", species: ["kitsune"], tags: ["anthro"] },
  44098. {
  44099. front: {
  44100. height: math.unit(7, "feet"),
  44101. weight: math.unit(250, "lb"),
  44102. name: "Front",
  44103. image: {
  44104. source: "./media/characters/nines/front.svg",
  44105. extra: 1741/1607,
  44106. bottom: 41/1782
  44107. }
  44108. },
  44109. side: {
  44110. height: math.unit(7, "feet"),
  44111. weight: math.unit(250, "lb"),
  44112. name: "Side",
  44113. image: {
  44114. source: "./media/characters/nines/side.svg",
  44115. extra: 1854/1735,
  44116. bottom: 93/1947
  44117. }
  44118. },
  44119. back: {
  44120. height: math.unit(7, "feet"),
  44121. weight: math.unit(250, "lb"),
  44122. name: "Back",
  44123. image: {
  44124. source: "./media/characters/nines/back.svg",
  44125. extra: 1748/1615,
  44126. bottom: 20/1768
  44127. }
  44128. },
  44129. },
  44130. [
  44131. {
  44132. name: "Megamacro",
  44133. height: math.unit(99, "km"),
  44134. default: true
  44135. },
  44136. ]
  44137. ))
  44138. characterMakers.push(() => makeCharacter(
  44139. { name: "Zenith", species: ["civet", "hyena"], tags: ["anthro"] },
  44140. {
  44141. front: {
  44142. height: math.unit(5 + 10/12, "feet"),
  44143. weight: math.unit(210, "lb"),
  44144. name: "Front",
  44145. image: {
  44146. source: "./media/characters/zenith/front.svg",
  44147. extra: 1531/1452,
  44148. bottom: 198/1729
  44149. }
  44150. },
  44151. back: {
  44152. height: math.unit(5 + 10/12, "feet"),
  44153. weight: math.unit(210, "lb"),
  44154. name: "Back",
  44155. image: {
  44156. source: "./media/characters/zenith/back.svg",
  44157. extra: 1571/1487,
  44158. bottom: 75/1646
  44159. }
  44160. },
  44161. },
  44162. [
  44163. {
  44164. name: "Normal",
  44165. height: math.unit(5 + 10/12, "feet"),
  44166. default: true
  44167. }
  44168. ]
  44169. ))
  44170. characterMakers.push(() => makeCharacter(
  44171. { name: "Jasper", species: ["cat"], tags: ["anthro"] },
  44172. {
  44173. front: {
  44174. height: math.unit(4, "feet"),
  44175. weight: math.unit(60, "lb"),
  44176. name: "Front",
  44177. image: {
  44178. source: "./media/characters/jasper/front.svg",
  44179. extra: 1450/1379,
  44180. bottom: 19/1469
  44181. }
  44182. },
  44183. },
  44184. [
  44185. {
  44186. name: "Normal",
  44187. height: math.unit(4, "feet"),
  44188. default: true
  44189. },
  44190. ]
  44191. ))
  44192. characterMakers.push(() => makeCharacter(
  44193. { name: "Tiberius Thyben", species: ["raccoon"], tags: ["anthro"] },
  44194. {
  44195. front: {
  44196. height: math.unit(6 + 5/12, "feet"),
  44197. weight: math.unit(290, "lb"),
  44198. name: "Front",
  44199. image: {
  44200. source: "./media/characters/tiberius-thyben/front.svg",
  44201. extra: 757/739,
  44202. bottom: 39/796
  44203. }
  44204. },
  44205. },
  44206. [
  44207. {
  44208. name: "Micro",
  44209. height: math.unit(1.5, "inches")
  44210. },
  44211. {
  44212. name: "Normal",
  44213. height: math.unit(6 + 5/12, "feet"),
  44214. default: true
  44215. },
  44216. {
  44217. name: "Macro",
  44218. height: math.unit(300, "feet")
  44219. },
  44220. ]
  44221. ))
  44222. characterMakers.push(() => makeCharacter(
  44223. { name: "Sabre", species: ["jackal"], tags: ["anthro"] },
  44224. {
  44225. front: {
  44226. height: math.unit(5 + 6/12, "feet"),
  44227. weight: math.unit(60, "kg"),
  44228. name: "Front",
  44229. image: {
  44230. source: "./media/characters/sabre/front.svg",
  44231. extra: 738/671,
  44232. bottom: 27/765
  44233. }
  44234. },
  44235. },
  44236. [
  44237. {
  44238. name: "Teeny",
  44239. height: math.unit(2, "inches")
  44240. },
  44241. {
  44242. name: "Smol",
  44243. height: math.unit(8, "inches")
  44244. },
  44245. {
  44246. name: "Normal",
  44247. height: math.unit(5 + 6/12, "feet"),
  44248. default: true
  44249. },
  44250. {
  44251. name: "Mini-Macro",
  44252. height: math.unit(15, "feet")
  44253. },
  44254. {
  44255. name: "Macro",
  44256. height: math.unit(50, "feet")
  44257. },
  44258. ]
  44259. ))
  44260. characterMakers.push(() => makeCharacter(
  44261. { name: "Charlie", species: ["deer"], tags: ["anthro"] },
  44262. {
  44263. front: {
  44264. height: math.unit(6 + 4/12, "feet"),
  44265. weight: math.unit(170, "lb"),
  44266. name: "Front",
  44267. image: {
  44268. source: "./media/characters/charlie/front.svg",
  44269. extra: 1348/1228,
  44270. bottom: 15/1363
  44271. }
  44272. },
  44273. },
  44274. [
  44275. {
  44276. name: "Macro",
  44277. height: math.unit(1700, "meters"),
  44278. default: true
  44279. },
  44280. {
  44281. name: "MegaMacro",
  44282. height: math.unit(20400, "meters")
  44283. },
  44284. ]
  44285. ))
  44286. characterMakers.push(() => makeCharacter(
  44287. { name: "Susan Grant", species: ["human"], tags: ["anthro"] },
  44288. {
  44289. front: {
  44290. height: math.unit(1.96, "meters"),
  44291. weight: math.unit(220, "lb"),
  44292. name: "Front",
  44293. image: {
  44294. source: "./media/characters/susan-grant/front.svg",
  44295. extra: 482/478,
  44296. bottom: 7/489
  44297. }
  44298. },
  44299. },
  44300. [
  44301. {
  44302. name: "Normal",
  44303. height: math.unit(1.96, "meters"),
  44304. default: true
  44305. },
  44306. {
  44307. name: "Macro",
  44308. height: math.unit(76.2, "meters")
  44309. },
  44310. {
  44311. name: "MegaMacro",
  44312. height: math.unit(305, "meters")
  44313. },
  44314. {
  44315. name: "GigaMacro",
  44316. height: math.unit(1220, "meters")
  44317. },
  44318. {
  44319. name: "SuperMacro",
  44320. height: math.unit(4878, "meters")
  44321. },
  44322. ]
  44323. ))
  44324. characterMakers.push(() => makeCharacter(
  44325. { name: "Axel Isanov", species: ["human"], tags: ["anthro"] },
  44326. {
  44327. front: {
  44328. height: math.unit(5 + 4/12, "feet"),
  44329. weight: math.unit(110, "lb"),
  44330. name: "Front",
  44331. image: {
  44332. source: "./media/characters/axel-isanov/front.svg",
  44333. extra: 1096/1065,
  44334. bottom: 13/1109
  44335. }
  44336. },
  44337. },
  44338. [
  44339. {
  44340. name: "Normal",
  44341. height: math.unit(5 + 4/12, "feet"),
  44342. default: true
  44343. },
  44344. ]
  44345. ))
  44346. characterMakers.push(() => makeCharacter(
  44347. { name: "Necahual", species: ["cat"], tags: ["anthro"] },
  44348. {
  44349. front: {
  44350. height: math.unit(9, "feet"),
  44351. weight: math.unit(467, "lb"),
  44352. name: "Front",
  44353. image: {
  44354. source: "./media/characters/necahual/front.svg",
  44355. extra: 920/873,
  44356. bottom: 26/946
  44357. }
  44358. },
  44359. back: {
  44360. height: math.unit(9, "feet"),
  44361. weight: math.unit(467, "lb"),
  44362. name: "Back",
  44363. image: {
  44364. source: "./media/characters/necahual/back.svg",
  44365. extra: 930/884,
  44366. bottom: 16/946
  44367. }
  44368. },
  44369. frontUnderwear: {
  44370. height: math.unit(9, "feet"),
  44371. weight: math.unit(467, "lb"),
  44372. name: "Front (Underwear)",
  44373. image: {
  44374. source: "./media/characters/necahual/front-underwear.svg",
  44375. extra: 920/873,
  44376. bottom: 26/946
  44377. }
  44378. },
  44379. frontDressed: {
  44380. height: math.unit(9, "feet"),
  44381. weight: math.unit(467, "lb"),
  44382. name: "Front (Dressed)",
  44383. image: {
  44384. source: "./media/characters/necahual/front-dressed.svg",
  44385. extra: 920/873,
  44386. bottom: 26/946
  44387. }
  44388. },
  44389. },
  44390. [
  44391. {
  44392. name: "Comprsesed",
  44393. height: math.unit(9, "feet")
  44394. },
  44395. {
  44396. name: "Natural",
  44397. height: math.unit(15, "feet"),
  44398. default: true
  44399. },
  44400. {
  44401. name: "Boosted",
  44402. height: math.unit(50, "feet")
  44403. },
  44404. {
  44405. name: "Boosted+",
  44406. height: math.unit(150, "feet")
  44407. },
  44408. {
  44409. name: "Max",
  44410. height: math.unit(500, "feet")
  44411. },
  44412. ]
  44413. ))
  44414. characterMakers.push(() => makeCharacter(
  44415. { name: "Theo Acacia", species: ["giraffe"], tags: ["anthro"] },
  44416. {
  44417. front: {
  44418. height: math.unit(22 + 1/12, "feet"),
  44419. weight: math.unit(3200, "lb"),
  44420. name: "Front",
  44421. image: {
  44422. source: "./media/characters/theo-acacia/front.svg",
  44423. extra: 1796/1741,
  44424. bottom: 83/1879
  44425. }
  44426. },
  44427. frontUnderwear: {
  44428. height: math.unit(22 + 1/12, "feet"),
  44429. weight: math.unit(3200, "lb"),
  44430. name: "Front (Underwear)",
  44431. image: {
  44432. source: "./media/characters/theo-acacia/front-underwear.svg",
  44433. extra: 1796/1741,
  44434. bottom: 83/1879
  44435. }
  44436. },
  44437. frontNude: {
  44438. height: math.unit(22 + 1/12, "feet"),
  44439. weight: math.unit(3200, "lb"),
  44440. name: "Front (Nude)",
  44441. image: {
  44442. source: "./media/characters/theo-acacia/front-nude.svg",
  44443. extra: 1796/1741,
  44444. bottom: 83/1879
  44445. }
  44446. },
  44447. },
  44448. [
  44449. {
  44450. name: "Normal",
  44451. height: math.unit(22 + 1/12, "feet"),
  44452. default: true
  44453. },
  44454. ]
  44455. ))
  44456. characterMakers.push(() => makeCharacter(
  44457. { name: "Astra", species: ["jackal", "umbreon"], tags: ["anthro"] },
  44458. {
  44459. front: {
  44460. height: math.unit(20, "feet"),
  44461. name: "Front",
  44462. image: {
  44463. source: "./media/characters/astra/front.svg",
  44464. extra: 1850/1714,
  44465. bottom: 106/1956
  44466. }
  44467. },
  44468. frontUndressed: {
  44469. height: math.unit(20, "feet"),
  44470. name: "Front (Undressed)",
  44471. image: {
  44472. source: "./media/characters/astra/front-undressed.svg",
  44473. extra: 1926/1749,
  44474. bottom: 0/1926
  44475. }
  44476. },
  44477. hand: {
  44478. height: math.unit(1.53, "feet"),
  44479. name: "Hand",
  44480. image: {
  44481. source: "./media/characters/astra/hand.svg"
  44482. }
  44483. },
  44484. paw: {
  44485. height: math.unit(1.53, "feet"),
  44486. name: "Paw",
  44487. image: {
  44488. source: "./media/characters/astra/paw.svg"
  44489. }
  44490. },
  44491. },
  44492. [
  44493. {
  44494. name: "Smallest",
  44495. height: math.unit(20, "feet")
  44496. },
  44497. {
  44498. name: "Normal",
  44499. height: math.unit(1e9, "miles"),
  44500. default: true
  44501. },
  44502. {
  44503. name: "Larger",
  44504. height: math.unit(5, "multiverses")
  44505. },
  44506. {
  44507. name: "Largest",
  44508. height: math.unit(1e9, "multiverses")
  44509. },
  44510. ]
  44511. ))
  44512. characterMakers.push(() => makeCharacter(
  44513. { name: "Breanna", species: ["jackal", "umbreon"], tags: ["anthro"] },
  44514. {
  44515. front: {
  44516. height: math.unit(8, "feet"),
  44517. name: "Front",
  44518. image: {
  44519. source: "./media/characters/breanna/front.svg",
  44520. extra: 1912/1632,
  44521. bottom: 33/1945
  44522. }
  44523. },
  44524. },
  44525. [
  44526. {
  44527. name: "Smallest",
  44528. height: math.unit(8, "feet")
  44529. },
  44530. {
  44531. name: "Normal",
  44532. height: math.unit(1, "mile"),
  44533. default: true
  44534. },
  44535. {
  44536. name: "Maximum",
  44537. height: math.unit(1500000000000, "lightyears")
  44538. },
  44539. ]
  44540. ))
  44541. characterMakers.push(() => makeCharacter(
  44542. { name: "Cai", species: ["fox"], tags: ["anthro"] },
  44543. {
  44544. front: {
  44545. height: math.unit(5 + 11/12, "feet"),
  44546. weight: math.unit(155, "lb"),
  44547. name: "Front",
  44548. image: {
  44549. source: "./media/characters/cai/front.svg",
  44550. extra: 1823/1702,
  44551. bottom: 32/1855
  44552. }
  44553. },
  44554. back: {
  44555. height: math.unit(5 + 11/12, "feet"),
  44556. weight: math.unit(155, "lb"),
  44557. name: "Back",
  44558. image: {
  44559. source: "./media/characters/cai/back.svg",
  44560. extra: 1809/1708,
  44561. bottom: 31/1840
  44562. }
  44563. },
  44564. },
  44565. [
  44566. {
  44567. name: "Normal",
  44568. height: math.unit(5 + 11/12, "feet"),
  44569. default: true
  44570. },
  44571. {
  44572. name: "Big",
  44573. height: math.unit(15, "feet")
  44574. },
  44575. {
  44576. name: "Macro",
  44577. height: math.unit(200, "feet")
  44578. },
  44579. ]
  44580. ))
  44581. characterMakers.push(() => makeCharacter(
  44582. { name: "Zanna Virtuedòttir", species: ["tiefling"], tags: ["anthro"] },
  44583. {
  44584. front: {
  44585. height: math.unit(5 + 6/12, "feet"),
  44586. weight: math.unit(160, "lb"),
  44587. name: "Front",
  44588. image: {
  44589. source: "./media/characters/zanna-virtuedòttir/front.svg",
  44590. extra: 1227/1174,
  44591. bottom: 37/1264
  44592. }
  44593. },
  44594. },
  44595. [
  44596. {
  44597. name: "Macro",
  44598. height: math.unit(444, "meters"),
  44599. default: true
  44600. },
  44601. ]
  44602. ))
  44603. characterMakers.push(() => makeCharacter(
  44604. { name: "Rex", species: ["dragon"], tags: ["anthro"] },
  44605. {
  44606. front: {
  44607. height: math.unit(18 + 7/12, "feet"),
  44608. name: "Front",
  44609. image: {
  44610. source: "./media/characters/rex/front.svg",
  44611. extra: 1941/1807,
  44612. bottom: 66/2007
  44613. }
  44614. },
  44615. back: {
  44616. height: math.unit(18 + 7/12, "feet"),
  44617. name: "Back",
  44618. image: {
  44619. source: "./media/characters/rex/back.svg",
  44620. extra: 1937/1822,
  44621. bottom: 42/1979
  44622. }
  44623. },
  44624. boot: {
  44625. height: math.unit(3.45, "feet"),
  44626. name: "Boot",
  44627. image: {
  44628. source: "./media/characters/rex/boot.svg"
  44629. }
  44630. },
  44631. paw: {
  44632. height: math.unit(4.17, "feet"),
  44633. name: "Paw",
  44634. image: {
  44635. source: "./media/characters/rex/paw.svg"
  44636. }
  44637. },
  44638. head: {
  44639. height: math.unit(6.728, "feet"),
  44640. name: "Head",
  44641. image: {
  44642. source: "./media/characters/rex/head.svg"
  44643. }
  44644. },
  44645. },
  44646. [
  44647. {
  44648. name: "Nano",
  44649. height: math.unit(18 + 7/12, "feet")
  44650. },
  44651. {
  44652. name: "Micro",
  44653. height: math.unit(1.5, "megameters")
  44654. },
  44655. {
  44656. name: "Normal",
  44657. height: math.unit(440, "megameters"),
  44658. default: true
  44659. },
  44660. {
  44661. name: "Macro",
  44662. height: math.unit(2.5, "gigameters")
  44663. },
  44664. {
  44665. name: "Gigamacro",
  44666. height: math.unit(2, "galaxies")
  44667. },
  44668. ]
  44669. ))
  44670. characterMakers.push(() => makeCharacter(
  44671. { name: "Silverwing", species: ["lugia"], tags: ["feral"] },
  44672. {
  44673. side: {
  44674. height: math.unit(32, "feet"),
  44675. weight: math.unit(250000, "lb"),
  44676. name: "Side",
  44677. image: {
  44678. source: "./media/characters/silverwing/side.svg",
  44679. extra: 1100/1019,
  44680. bottom: 204/1304
  44681. }
  44682. },
  44683. },
  44684. [
  44685. {
  44686. name: "Normal",
  44687. height: math.unit(32, "feet"),
  44688. default: true
  44689. },
  44690. ]
  44691. ))
  44692. characterMakers.push(() => makeCharacter(
  44693. { name: "Tristan Hawthorne", species: ["labrador", "skunk"], tags: ["anthro"] },
  44694. {
  44695. front: {
  44696. height: math.unit(6 + 6/12, "feet"),
  44697. weight: math.unit(350, "lb"),
  44698. name: "Front",
  44699. image: {
  44700. source: "./media/characters/tristan-hawthorne/front.svg",
  44701. extra: 1159/1124,
  44702. bottom: 37/1196
  44703. },
  44704. form: "labrador",
  44705. default: true
  44706. },
  44707. skunkFront: {
  44708. height: math.unit(4 + 6/12, "feet"),
  44709. weight: math.unit(120, "lb"),
  44710. name: "Front",
  44711. image: {
  44712. source: "./media/characters/tristan-hawthorne/skunk-front.svg",
  44713. extra: 1609/1551,
  44714. bottom: 169/1778
  44715. },
  44716. form: "skunk",
  44717. default: true
  44718. },
  44719. },
  44720. [
  44721. {
  44722. name: "Normal",
  44723. height: math.unit(6 + 6/12, "feet"),
  44724. form: "labrador",
  44725. default: true
  44726. },
  44727. {
  44728. name: "Normal",
  44729. height: math.unit(4 + 6/12, "feet"),
  44730. form: "skunk",
  44731. default: true
  44732. },
  44733. ],
  44734. {
  44735. "labrador": {
  44736. name: "Labrador",
  44737. default: true
  44738. },
  44739. "skunk": {
  44740. name: "Skunk"
  44741. }
  44742. }
  44743. ))
  44744. characterMakers.push(() => makeCharacter(
  44745. { name: "Mizu", species: ["sika-deer"], tags: ["anthro"] },
  44746. {
  44747. front: {
  44748. height: math.unit(5 + 11/12, "feet"),
  44749. weight: math.unit(190, "lb"),
  44750. name: "Front",
  44751. image: {
  44752. source: "./media/characters/mizu/front.svg",
  44753. extra: 1988/1788,
  44754. bottom: 14/2002
  44755. }
  44756. },
  44757. },
  44758. [
  44759. {
  44760. name: "Normal",
  44761. height: math.unit(5 + 11/12, "feet"),
  44762. default: true
  44763. },
  44764. ]
  44765. ))
  44766. characterMakers.push(() => makeCharacter(
  44767. { name: "Dechroma", species: ["dragon", "plant"], tags: ["anthro"] },
  44768. {
  44769. front: {
  44770. height: math.unit(1.7, "feet"),
  44771. weight: math.unit(50, "lb"),
  44772. name: "Front",
  44773. image: {
  44774. source: "./media/characters/dechroma/front.svg",
  44775. extra: 1095/859,
  44776. bottom: 64/1159
  44777. }
  44778. },
  44779. },
  44780. [
  44781. {
  44782. name: "Normal",
  44783. height: math.unit(1.7, "feet"),
  44784. default: true
  44785. },
  44786. ]
  44787. ))
  44788. characterMakers.push(() => makeCharacter(
  44789. { name: "Veluren Thanazel", species: ["dragon"], tags: ["feral"] },
  44790. {
  44791. side: {
  44792. height: math.unit(30, "feet"),
  44793. name: "Side",
  44794. image: {
  44795. source: "./media/characters/veluren-thanazel/side.svg",
  44796. extra: 1611/633,
  44797. bottom: 118/1729
  44798. }
  44799. },
  44800. front: {
  44801. height: math.unit(30, "feet"),
  44802. name: "Front",
  44803. image: {
  44804. source: "./media/characters/veluren-thanazel/front.svg",
  44805. extra: 1486/636,
  44806. bottom: 238/1724
  44807. }
  44808. },
  44809. head: {
  44810. height: math.unit(21.4, "feet"),
  44811. name: "Head",
  44812. image: {
  44813. source: "./media/characters/veluren-thanazel/head.svg"
  44814. }
  44815. },
  44816. genitals: {
  44817. height: math.unit(19.4, "feet"),
  44818. name: "Genitals",
  44819. image: {
  44820. source: "./media/characters/veluren-thanazel/genitals.svg"
  44821. }
  44822. },
  44823. },
  44824. [
  44825. {
  44826. name: "Social",
  44827. height: math.unit(6, "feet")
  44828. },
  44829. {
  44830. name: "Play",
  44831. height: math.unit(12, "feet")
  44832. },
  44833. {
  44834. name: "True",
  44835. height: math.unit(30, "feet"),
  44836. default: true
  44837. },
  44838. ]
  44839. ))
  44840. characterMakers.push(() => makeCharacter(
  44841. { name: "Arcturas", species: ["dragon", "elemental"], tags: ["anthro"] },
  44842. {
  44843. front: {
  44844. height: math.unit(7 + 6/12, "feet"),
  44845. weight: math.unit(500, "kg"),
  44846. name: "Front",
  44847. image: {
  44848. source: "./media/characters/arcturas/front.svg",
  44849. extra: 1700/1500,
  44850. bottom: 145/1845
  44851. }
  44852. },
  44853. },
  44854. [
  44855. {
  44856. name: "Normal",
  44857. height: math.unit(7 + 6/12, "feet"),
  44858. default: true
  44859. },
  44860. ]
  44861. ))
  44862. characterMakers.push(() => makeCharacter(
  44863. { name: "Vitaen", species: ["zorgoia", "vampire"], tags: ["feral"] },
  44864. {
  44865. side: {
  44866. height: math.unit(6, "feet"),
  44867. weight: math.unit(2, "tons"),
  44868. name: "Side",
  44869. image: {
  44870. source: "./media/characters/vitaen/side.svg",
  44871. extra: 1157/617,
  44872. bottom: 122/1279
  44873. }
  44874. },
  44875. },
  44876. [
  44877. {
  44878. name: "Normal",
  44879. height: math.unit(6, "feet"),
  44880. default: true
  44881. },
  44882. ]
  44883. ))
  44884. characterMakers.push(() => makeCharacter(
  44885. { name: "Fia Dreamweaver", species: ["spireborn"], tags: ["anthro"] },
  44886. {
  44887. front: {
  44888. height: math.unit(19, "feet"),
  44889. name: "Front",
  44890. image: {
  44891. source: "./media/characters/fia-dreamweaver/front.svg",
  44892. extra: 1630/1504,
  44893. bottom: 25/1655
  44894. }
  44895. },
  44896. },
  44897. [
  44898. {
  44899. name: "Normal",
  44900. height: math.unit(19, "feet"),
  44901. default: true
  44902. },
  44903. ]
  44904. ))
  44905. characterMakers.push(() => makeCharacter(
  44906. { name: "Artan", species: ["fennec-fox"], tags: ["anthro"] },
  44907. {
  44908. front: {
  44909. height: math.unit(5 + 4/12, "feet"),
  44910. name: "Front",
  44911. image: {
  44912. source: "./media/characters/artan/front.svg",
  44913. extra: 1618/1535,
  44914. bottom: 46/1664
  44915. }
  44916. },
  44917. back: {
  44918. height: math.unit(5 + 4/12, "feet"),
  44919. name: "Back",
  44920. image: {
  44921. source: "./media/characters/artan/back.svg",
  44922. extra: 1618/1543,
  44923. bottom: 31/1649
  44924. }
  44925. },
  44926. },
  44927. [
  44928. {
  44929. name: "Normal",
  44930. height: math.unit(5 + 4/12, "feet"),
  44931. default: true
  44932. },
  44933. ]
  44934. ))
  44935. characterMakers.push(() => makeCharacter(
  44936. { name: "Silver (Dragon)", species: ["dragon"], tags: ["feral"] },
  44937. {
  44938. side: {
  44939. height: math.unit(182, "cm"),
  44940. weight: math.unit(1000, "lb"),
  44941. name: "Side",
  44942. image: {
  44943. source: "./media/characters/silver-dragon/side.svg",
  44944. extra: 710/287,
  44945. bottom: 88/798
  44946. }
  44947. },
  44948. },
  44949. [
  44950. {
  44951. name: "Normal",
  44952. height: math.unit(182, "cm"),
  44953. default: true
  44954. },
  44955. ]
  44956. ))
  44957. characterMakers.push(() => makeCharacter(
  44958. { name: "Zephyr", species: ["zorgoia"], tags: ["feral"] },
  44959. {
  44960. side: {
  44961. height: math.unit(6 + 6/12, "feet"),
  44962. weight: math.unit(1.5, "tons"),
  44963. name: "Side",
  44964. image: {
  44965. source: "./media/characters/zephyr/side.svg",
  44966. extra: 1433/586,
  44967. bottom: 109/1542
  44968. }
  44969. },
  44970. },
  44971. [
  44972. {
  44973. name: "Normal",
  44974. height: math.unit(6 + 6/12, "feet"),
  44975. default: true
  44976. },
  44977. ]
  44978. ))
  44979. characterMakers.push(() => makeCharacter(
  44980. { name: "Vixye", species: ["extraplanar"], tags: ["anthro"] },
  44981. {
  44982. side: {
  44983. height: math.unit(1, "feet"),
  44984. name: "Side",
  44985. image: {
  44986. source: "./media/characters/vixye/side.svg",
  44987. extra: 632/541,
  44988. bottom: 0/632
  44989. }
  44990. },
  44991. },
  44992. [
  44993. {
  44994. name: "Normal",
  44995. height: math.unit(1, "feet"),
  44996. default: true
  44997. },
  44998. {
  44999. name: "True",
  45000. height: math.unit(1e15, "multiverses")
  45001. },
  45002. ]
  45003. ))
  45004. characterMakers.push(() => makeCharacter(
  45005. { name: "Darla Mac Lochlainn", species: ["bear", "werebeast"], tags: ["anthro"] },
  45006. {
  45007. front: {
  45008. height: math.unit(8 + 2/12, "feet"),
  45009. weight: math.unit(650, "lb"),
  45010. name: "Front",
  45011. image: {
  45012. source: "./media/characters/darla-mac-lochlainn/front.svg",
  45013. extra: 1174/1137,
  45014. bottom: 82/1256
  45015. }
  45016. },
  45017. back: {
  45018. height: math.unit(8 + 2/12, "feet"),
  45019. weight: math.unit(650, "lb"),
  45020. name: "Back",
  45021. image: {
  45022. source: "./media/characters/darla-mac-lochlainn/back.svg",
  45023. extra: 1204/1157,
  45024. bottom: 46/1250
  45025. }
  45026. },
  45027. },
  45028. [
  45029. {
  45030. name: "Wildform",
  45031. height: math.unit(8 + 2/12, "feet"),
  45032. default: true
  45033. },
  45034. ]
  45035. ))
  45036. characterMakers.push(() => makeCharacter(
  45037. { name: "Cyphin", species: ["spireborn"], tags: ["anthro"] },
  45038. {
  45039. front: {
  45040. height: math.unit(18, "feet"),
  45041. name: "Front",
  45042. image: {
  45043. source: "./media/characters/cyphin/front.svg",
  45044. extra: 970/886,
  45045. bottom: 42/1012
  45046. }
  45047. },
  45048. back: {
  45049. height: math.unit(18, "feet"),
  45050. name: "Back",
  45051. image: {
  45052. source: "./media/characters/cyphin/back.svg",
  45053. extra: 1009/894,
  45054. bottom: 24/1033
  45055. }
  45056. },
  45057. head: {
  45058. height: math.unit(5.05, "feet"),
  45059. name: "Head",
  45060. image: {
  45061. source: "./media/characters/cyphin/head.svg"
  45062. }
  45063. },
  45064. tailbud: {
  45065. height: math.unit(5, "feet"),
  45066. name: "Tailbud",
  45067. image: {
  45068. source: "./media/characters/cyphin/tailbud.svg"
  45069. }
  45070. },
  45071. },
  45072. [
  45073. ]
  45074. ))
  45075. characterMakers.push(() => makeCharacter(
  45076. { name: "Raijin", species: ["zorgoia"], tags: ["feral"] },
  45077. {
  45078. side: {
  45079. height: math.unit(10, "feet"),
  45080. weight: math.unit(6, "tons"),
  45081. name: "Side",
  45082. image: {
  45083. source: "./media/characters/raijin/side.svg",
  45084. extra: 1529/613,
  45085. bottom: 337/1866
  45086. }
  45087. },
  45088. },
  45089. [
  45090. {
  45091. name: "Normal",
  45092. height: math.unit(10, "feet"),
  45093. default: true
  45094. },
  45095. ]
  45096. ))
  45097. characterMakers.push(() => makeCharacter(
  45098. { name: "Nilghais", species: ["felkin"], tags: ["feral"] },
  45099. {
  45100. side: {
  45101. height: math.unit(9, "feet"),
  45102. name: "Side",
  45103. image: {
  45104. source: "./media/characters/nilghais/side.svg",
  45105. extra: 1047/744,
  45106. bottom: 91/1138
  45107. }
  45108. },
  45109. head: {
  45110. height: math.unit(3.14, "feet"),
  45111. name: "Head",
  45112. image: {
  45113. source: "./media/characters/nilghais/head.svg"
  45114. }
  45115. },
  45116. mouth: {
  45117. height: math.unit(4.6, "feet"),
  45118. name: "Mouth",
  45119. image: {
  45120. source: "./media/characters/nilghais/mouth.svg"
  45121. }
  45122. },
  45123. wings: {
  45124. height: math.unit(24, "feet"),
  45125. name: "Wings",
  45126. image: {
  45127. source: "./media/characters/nilghais/wings.svg"
  45128. }
  45129. },
  45130. ass: {
  45131. height: math.unit(6.12, "feet"),
  45132. name: "Ass",
  45133. image: {
  45134. source: "./media/characters/nilghais/ass.svg"
  45135. }
  45136. },
  45137. },
  45138. [
  45139. {
  45140. name: "Normal",
  45141. height: math.unit(9, "feet"),
  45142. default: true
  45143. },
  45144. ]
  45145. ))
  45146. characterMakers.push(() => makeCharacter(
  45147. { name: "Zolgar", species: ["alien", "opossum", "bear"], tags: ["anthro"] },
  45148. {
  45149. regular: {
  45150. height: math.unit(16 + 2/12, "feet"),
  45151. weight: math.unit(2300, "lb"),
  45152. name: "Regular",
  45153. image: {
  45154. source: "./media/characters/zolgar/regular.svg",
  45155. extra: 1246/1004,
  45156. bottom: 124/1370
  45157. }
  45158. },
  45159. boxers: {
  45160. height: math.unit(16 + 2/12, "feet"),
  45161. weight: math.unit(2300, "lb"),
  45162. name: "Boxers",
  45163. image: {
  45164. source: "./media/characters/zolgar/boxers.svg",
  45165. extra: 1246/1004,
  45166. bottom: 124/1370
  45167. }
  45168. },
  45169. armored: {
  45170. height: math.unit(16 + 2/12, "feet"),
  45171. weight: math.unit(2300, "lb"),
  45172. name: "Armored",
  45173. image: {
  45174. source: "./media/characters/zolgar/armored.svg",
  45175. extra: 1246/1004,
  45176. bottom: 124/1370
  45177. }
  45178. },
  45179. goth: {
  45180. height: math.unit(16 + 2/12, "feet"),
  45181. weight: math.unit(2300, "lb"),
  45182. name: "Goth",
  45183. image: {
  45184. source: "./media/characters/zolgar/goth.svg",
  45185. extra: 1246/1004,
  45186. bottom: 124/1370
  45187. }
  45188. },
  45189. },
  45190. [
  45191. {
  45192. name: "Shrunken Down",
  45193. height: math.unit(9 + 2/12, "feet")
  45194. },
  45195. {
  45196. name: "Normal",
  45197. height: math.unit(16 + 2/12, "feet"),
  45198. default: true
  45199. },
  45200. ]
  45201. ))
  45202. characterMakers.push(() => makeCharacter(
  45203. { name: "Luca", species: ["zoroark", "lucario"], tags: ["anthro"] },
  45204. {
  45205. front: {
  45206. height: math.unit(6, "feet"),
  45207. weight: math.unit(168, "lb"),
  45208. name: "Front",
  45209. image: {
  45210. source: "./media/characters/luca/front.svg",
  45211. extra: 841/667,
  45212. bottom: 102/943
  45213. }
  45214. },
  45215. },
  45216. [
  45217. {
  45218. name: "Normal",
  45219. height: math.unit(6, "feet"),
  45220. default: true
  45221. },
  45222. ]
  45223. ))
  45224. characterMakers.push(() => makeCharacter(
  45225. { name: "Zezo", species: ["goo"], tags: ["feral"] },
  45226. {
  45227. side: {
  45228. height: math.unit(7 + 3/12, "feet"),
  45229. weight: math.unit(312, "lb"),
  45230. name: "Side",
  45231. image: {
  45232. source: "./media/characters/zezo/side.svg",
  45233. extra: 1192/1067,
  45234. bottom: 63/1255
  45235. }
  45236. },
  45237. },
  45238. [
  45239. {
  45240. name: "Normal",
  45241. height: math.unit(7 + 3/12, "feet"),
  45242. default: true
  45243. },
  45244. ]
  45245. ))
  45246. characterMakers.push(() => makeCharacter(
  45247. { name: "Mayso", species: ["dunnoh"], tags: ["anthro"] },
  45248. {
  45249. front: {
  45250. height: math.unit(5 + 5/12, "feet"),
  45251. weight: math.unit(170, "lb"),
  45252. name: "Front",
  45253. image: {
  45254. source: "./media/characters/mayso/front.svg",
  45255. extra: 1215/1108,
  45256. bottom: 16/1231
  45257. }
  45258. },
  45259. },
  45260. [
  45261. {
  45262. name: "Normal",
  45263. height: math.unit(5 + 5/12, "feet"),
  45264. default: true
  45265. },
  45266. ]
  45267. ))
  45268. characterMakers.push(() => makeCharacter(
  45269. { name: "Hess", species: ["gryphon"], tags: ["anthro"] },
  45270. {
  45271. front: {
  45272. height: math.unit(4 + 3/12, "feet"),
  45273. weight: math.unit(80, "lb"),
  45274. name: "Front",
  45275. image: {
  45276. source: "./media/characters/hess/front.svg",
  45277. extra: 1200/1123,
  45278. bottom: 16/1216
  45279. }
  45280. },
  45281. },
  45282. [
  45283. {
  45284. name: "Normal",
  45285. height: math.unit(4 + 3/12, "feet"),
  45286. default: true
  45287. },
  45288. ]
  45289. ))
  45290. characterMakers.push(() => makeCharacter(
  45291. { name: "Ashgar", species: ["bear", "lizard"], tags: ["anthro", "feral"] },
  45292. {
  45293. front: {
  45294. height: math.unit(1.9, "meters"),
  45295. name: "Front",
  45296. image: {
  45297. source: "./media/characters/ashgar/front.svg",
  45298. extra: 1177/1146,
  45299. bottom: 99/1276
  45300. }
  45301. },
  45302. back: {
  45303. height: math.unit(1.9, "meters"),
  45304. name: "Back",
  45305. image: {
  45306. source: "./media/characters/ashgar/back.svg",
  45307. extra: 1201/1183,
  45308. bottom: 53/1254
  45309. }
  45310. },
  45311. feral: {
  45312. height: math.unit(1.4, "meters"),
  45313. name: "Feral",
  45314. image: {
  45315. source: "./media/characters/ashgar/feral.svg",
  45316. extra: 370/345,
  45317. bottom: 45/415
  45318. }
  45319. },
  45320. },
  45321. [
  45322. {
  45323. name: "Normal",
  45324. height: math.unit(1.9, "meters"),
  45325. default: true
  45326. },
  45327. ]
  45328. ))
  45329. characterMakers.push(() => makeCharacter(
  45330. { name: "Phillip", species: ["wolf"], tags: ["anthro"] },
  45331. {
  45332. regular: {
  45333. height: math.unit(6, "feet"),
  45334. weight: math.unit(220, "lb"),
  45335. name: "Regular",
  45336. image: {
  45337. source: "./media/characters/phillip/regular.svg",
  45338. extra: 1373/1277,
  45339. bottom: 75/1448
  45340. }
  45341. },
  45342. dressed: {
  45343. height: math.unit(6, "feet"),
  45344. weight: math.unit(220, "lb"),
  45345. name: "Dressed",
  45346. image: {
  45347. source: "./media/characters/phillip/dressed.svg",
  45348. extra: 1373/1277,
  45349. bottom: 75/1448
  45350. }
  45351. },
  45352. paw: {
  45353. height: math.unit(1.44, "feet"),
  45354. name: "Paw",
  45355. image: {
  45356. source: "./media/characters/phillip/paw.svg"
  45357. }
  45358. },
  45359. },
  45360. [
  45361. {
  45362. name: "Normal",
  45363. height: math.unit(6, "feet"),
  45364. default: true
  45365. },
  45366. ]
  45367. ))
  45368. characterMakers.push(() => makeCharacter(
  45369. { name: "Uvula", species: ["dragon", "monster"], tags: ["feral"] },
  45370. {
  45371. side: {
  45372. height: math.unit(42, "feet"),
  45373. name: "Side",
  45374. image: {
  45375. source: "./media/characters/uvula/side.svg",
  45376. extra: 683/586,
  45377. bottom: 60/743
  45378. }
  45379. },
  45380. front: {
  45381. height: math.unit(42, "feet"),
  45382. name: "Front",
  45383. image: {
  45384. source: "./media/characters/uvula/front.svg",
  45385. extra: 705/613,
  45386. bottom: 54/759
  45387. }
  45388. },
  45389. maw: {
  45390. height: math.unit(23.5, "feet"),
  45391. name: "Maw",
  45392. image: {
  45393. source: "./media/characters/uvula/maw.svg"
  45394. }
  45395. },
  45396. },
  45397. [
  45398. {
  45399. name: "Original Size",
  45400. height: math.unit(14, "inches")
  45401. },
  45402. {
  45403. name: "Human Size",
  45404. height: math.unit(6, "feet")
  45405. },
  45406. {
  45407. name: "Big",
  45408. height: math.unit(42, "feet"),
  45409. default: true
  45410. },
  45411. {
  45412. name: "Bigger",
  45413. height: math.unit(100, "feet")
  45414. },
  45415. ]
  45416. ))
  45417. characterMakers.push(() => makeCharacter(
  45418. { name: "Lannah", species: ["wolf"], tags: ["anthro"] },
  45419. {
  45420. front: {
  45421. height: math.unit(5 + 11/12, "feet"),
  45422. name: "Front",
  45423. image: {
  45424. source: "./media/characters/lannah/front.svg",
  45425. extra: 1208/1113,
  45426. bottom: 97/1305
  45427. }
  45428. },
  45429. },
  45430. [
  45431. {
  45432. name: "Normal",
  45433. height: math.unit(5 + 11/12, "feet"),
  45434. default: true
  45435. },
  45436. ]
  45437. ))
  45438. characterMakers.push(() => makeCharacter(
  45439. { name: "Emberflame", species: ["ninetales"], tags: ["feral"] },
  45440. {
  45441. front: {
  45442. height: math.unit(6 + 3/12, "feet"),
  45443. weight: math.unit(3.5, "tons"),
  45444. name: "Front",
  45445. image: {
  45446. source: "./media/characters/emberflame/front.svg",
  45447. extra: 1198/672,
  45448. bottom: 82/1280
  45449. }
  45450. },
  45451. side: {
  45452. height: math.unit(6 + 3/12, "feet"),
  45453. weight: math.unit(3.5, "tons"),
  45454. name: "Side",
  45455. image: {
  45456. source: "./media/characters/emberflame/side.svg",
  45457. extra: 938/527,
  45458. bottom: 56/994
  45459. }
  45460. },
  45461. },
  45462. [
  45463. {
  45464. name: "Normal",
  45465. height: math.unit(6 + 3/12, "feet"),
  45466. default: true
  45467. },
  45468. ]
  45469. ))
  45470. characterMakers.push(() => makeCharacter(
  45471. { name: "Sophie Ambrose", species: ["zorgoia"], tags: ["feral"] },
  45472. {
  45473. side: {
  45474. height: math.unit(17.5, "feet"),
  45475. weight: math.unit(35, "tons"),
  45476. name: "Side",
  45477. image: {
  45478. source: "./media/characters/sophie-ambrose/side.svg",
  45479. extra: 1573/1242,
  45480. bottom: 71/1644
  45481. }
  45482. },
  45483. maw: {
  45484. height: math.unit(7.4, "feet"),
  45485. name: "Maw",
  45486. image: {
  45487. source: "./media/characters/sophie-ambrose/maw.svg"
  45488. }
  45489. },
  45490. },
  45491. [
  45492. {
  45493. name: "Normal",
  45494. height: math.unit(17.5, "feet"),
  45495. default: true
  45496. },
  45497. ]
  45498. ))
  45499. characterMakers.push(() => makeCharacter(
  45500. { name: "King Mugi", species: ["kaiju", "canine", "reptile"], tags: ["anthro"] },
  45501. {
  45502. front: {
  45503. height: math.unit(280, "feet"),
  45504. weight: math.unit(550, "tons"),
  45505. name: "Front",
  45506. image: {
  45507. source: "./media/characters/king-mugi/front.svg",
  45508. extra: 1102/947,
  45509. bottom: 104/1206
  45510. }
  45511. },
  45512. },
  45513. [
  45514. {
  45515. name: "King Mugi",
  45516. height: math.unit(280, "feet"),
  45517. default: true
  45518. },
  45519. ]
  45520. ))
  45521. characterMakers.push(() => makeCharacter(
  45522. { name: "Nova (Fox)", species: ["fox"], tags: ["anthro"] },
  45523. {
  45524. female: {
  45525. height: math.unit(300, "meters"),
  45526. name: "Front",
  45527. image: {
  45528. source: "./media/characters/nova-fox/female.svg",
  45529. extra: 664/632,
  45530. bottom: 51/715
  45531. },
  45532. form: "female",
  45533. default: true
  45534. },
  45535. male: {
  45536. height: math.unit(300, "meters"),
  45537. name: "Front",
  45538. image: {
  45539. source: "./media/characters/nova-fox/male.svg",
  45540. extra: 663/631,
  45541. bottom: 30/693
  45542. },
  45543. form: "male",
  45544. default: true
  45545. },
  45546. },
  45547. [
  45548. {
  45549. name: "Macro",
  45550. height: math.unit(300, "meters"),
  45551. default: true,
  45552. allForms: true
  45553. },
  45554. ],
  45555. {
  45556. "female": {
  45557. name: "Female",
  45558. default: true
  45559. },
  45560. "male": {
  45561. name: "Male",
  45562. },
  45563. }
  45564. ))
  45565. characterMakers.push(() => makeCharacter(
  45566. { name: "Sam (Bat)", species: ["bat", "rat"], tags: ["anthro"] },
  45567. {
  45568. front: {
  45569. height: math.unit(6 + 3/12, "feet"),
  45570. weight: math.unit(170, "lb"),
  45571. name: "Front",
  45572. image: {
  45573. source: "./media/characters/sam-bat/front.svg",
  45574. extra: 1601/1411,
  45575. bottom: 125/1726
  45576. }
  45577. },
  45578. back: {
  45579. height: math.unit(6 + 3/12, "feet"),
  45580. weight: math.unit(170, "lb"),
  45581. name: "Back",
  45582. image: {
  45583. source: "./media/characters/sam-bat/back.svg",
  45584. extra: 1577/1405,
  45585. bottom: 58/1635
  45586. }
  45587. },
  45588. },
  45589. [
  45590. {
  45591. name: "Normal",
  45592. height: math.unit(6 + 3/12, "feet"),
  45593. default: true
  45594. },
  45595. ]
  45596. ))
  45597. characterMakers.push(() => makeCharacter(
  45598. { name: "Inari", species: ["eevee"], tags: ["feral"] },
  45599. {
  45600. front: {
  45601. height: math.unit(59, "feet"),
  45602. weight: math.unit(40000, "lb"),
  45603. name: "Front",
  45604. image: {
  45605. source: "./media/characters/inari/front.svg",
  45606. extra: 1884/1350,
  45607. bottom: 95/1979
  45608. }
  45609. },
  45610. },
  45611. [
  45612. {
  45613. name: "Gigantamax",
  45614. height: math.unit(59, "feet"),
  45615. default: true
  45616. },
  45617. ]
  45618. ))
  45619. characterMakers.push(() => makeCharacter(
  45620. { name: "Elizabeth", species: ["bat"], tags: ["anthro"] },
  45621. {
  45622. front: {
  45623. height: math.unit(5 + 8/12, "feet"),
  45624. name: "Front",
  45625. image: {
  45626. source: "./media/characters/elizabeth/front.svg",
  45627. extra: 1395/1298,
  45628. bottom: 54/1449
  45629. }
  45630. },
  45631. mouth: {
  45632. height: math.unit(1.97, "feet"),
  45633. name: "Mouth",
  45634. image: {
  45635. source: "./media/characters/elizabeth/mouth.svg"
  45636. }
  45637. },
  45638. foot: {
  45639. height: math.unit(1.17, "feet"),
  45640. name: "Foot",
  45641. image: {
  45642. source: "./media/characters/elizabeth/foot.svg"
  45643. }
  45644. },
  45645. },
  45646. [
  45647. {
  45648. name: "Normal",
  45649. height: math.unit(5 + 8/12, "feet"),
  45650. default: true
  45651. },
  45652. {
  45653. name: "Minimacro",
  45654. height: math.unit(18, "feet")
  45655. },
  45656. {
  45657. name: "Macro",
  45658. height: math.unit(180, "feet")
  45659. },
  45660. ]
  45661. ))
  45662. characterMakers.push(() => makeCharacter(
  45663. { name: "October Gossamer", species: ["cat"], tags: ["anthro"] },
  45664. {
  45665. front: {
  45666. height: math.unit(5 + 2/12, "feet"),
  45667. name: "Front",
  45668. image: {
  45669. source: "./media/characters/october-gossamer/front.svg",
  45670. extra: 505/454,
  45671. bottom: 7/512
  45672. }
  45673. },
  45674. back: {
  45675. height: math.unit(5 + 2/12, "feet"),
  45676. name: "Back",
  45677. image: {
  45678. source: "./media/characters/october-gossamer/back.svg",
  45679. extra: 501/454,
  45680. bottom: 11/512
  45681. }
  45682. },
  45683. },
  45684. [
  45685. {
  45686. name: "Normal",
  45687. height: math.unit(5 + 2/12, "feet"),
  45688. default: true
  45689. },
  45690. ]
  45691. ))
  45692. characterMakers.push(() => makeCharacter(
  45693. { name: "Epiglottis \"Glottis\" Larynx", species: ["dragon", "monster"], tags: ["anthro"] },
  45694. {
  45695. front: {
  45696. height: math.unit(5, "feet"),
  45697. name: "Front",
  45698. image: {
  45699. source: "./media/characters/epiglottis/front.svg",
  45700. extra: 923/849,
  45701. bottom: 17/940
  45702. }
  45703. },
  45704. },
  45705. [
  45706. {
  45707. name: "Original Size",
  45708. height: math.unit(10, "inches")
  45709. },
  45710. {
  45711. name: "Human Size",
  45712. height: math.unit(5, "feet"),
  45713. default: true
  45714. },
  45715. {
  45716. name: "Big",
  45717. height: math.unit(25, "feet")
  45718. },
  45719. {
  45720. name: "Bigger",
  45721. height: math.unit(50, "feet")
  45722. },
  45723. {
  45724. name: "oh lawd",
  45725. height: math.unit(75, "feet")
  45726. },
  45727. ]
  45728. ))
  45729. characterMakers.push(() => makeCharacter(
  45730. { name: "Lerm", species: ["skink"], tags: ["anthro"] },
  45731. {
  45732. front: {
  45733. height: math.unit(2 + 4/12, "feet"),
  45734. weight: math.unit(60, "lb"),
  45735. name: "Front",
  45736. image: {
  45737. source: "./media/characters/lerm/front.svg",
  45738. extra: 796/790,
  45739. bottom: 79/875
  45740. }
  45741. },
  45742. },
  45743. [
  45744. {
  45745. name: "Normal",
  45746. height: math.unit(2 + 4/12, "feet"),
  45747. default: true
  45748. },
  45749. ]
  45750. ))
  45751. characterMakers.push(() => makeCharacter(
  45752. { name: "Xena Nebadon", species: ["wolf"], tags: ["anthro"] },
  45753. {
  45754. front: {
  45755. height: math.unit(5.5, "feet"),
  45756. weight: math.unit(130, "lb"),
  45757. name: "Front",
  45758. image: {
  45759. source: "./media/characters/xena-nebadon/front.svg",
  45760. extra: 1828/1730,
  45761. bottom: 79/1907
  45762. }
  45763. },
  45764. },
  45765. [
  45766. {
  45767. name: "Tiny Puppy",
  45768. height: math.unit(3, "inches")
  45769. },
  45770. {
  45771. name: "Normal",
  45772. height: math.unit(5.5, "feet"),
  45773. default: true
  45774. },
  45775. {
  45776. name: "Lotta Lady",
  45777. height: math.unit(12, "feet")
  45778. },
  45779. {
  45780. name: "Pretty Big",
  45781. height: math.unit(100, "feet")
  45782. },
  45783. {
  45784. name: "Big",
  45785. height: math.unit(500, "feet")
  45786. },
  45787. {
  45788. name: "Skyscraper Toys",
  45789. height: math.unit(2500, "feet")
  45790. },
  45791. {
  45792. name: "Plane Catcher",
  45793. height: math.unit(8, "miles")
  45794. },
  45795. {
  45796. name: "Planet Toys",
  45797. height: math.unit(15, "earths")
  45798. },
  45799. {
  45800. name: "Stardust",
  45801. height: math.unit(0.25, "galaxies")
  45802. },
  45803. {
  45804. name: "Snacks",
  45805. height: math.unit(70, "universes")
  45806. },
  45807. ]
  45808. ))
  45809. characterMakers.push(() => makeCharacter(
  45810. { name: "Bounty", species: ["bat-eared-fox"], tags: ["anthro"] },
  45811. {
  45812. front: {
  45813. height: math.unit(1.6, "meters"),
  45814. weight: math.unit(60, "kg"),
  45815. name: "Front",
  45816. image: {
  45817. source: "./media/characters/bounty/front.svg",
  45818. extra: 1426/1308,
  45819. bottom: 15/1441
  45820. }
  45821. },
  45822. back: {
  45823. height: math.unit(1.6, "meters"),
  45824. weight: math.unit(60, "kg"),
  45825. name: "Back",
  45826. image: {
  45827. source: "./media/characters/bounty/back.svg",
  45828. extra: 1417/1307,
  45829. bottom: 8/1425
  45830. }
  45831. },
  45832. },
  45833. [
  45834. {
  45835. name: "Normal",
  45836. height: math.unit(1.6, "meters"),
  45837. default: true
  45838. },
  45839. {
  45840. name: "Macro",
  45841. height: math.unit(300, "meters")
  45842. },
  45843. ]
  45844. ))
  45845. characterMakers.push(() => makeCharacter(
  45846. { name: "Mochi", species: ["gryphon", "belted-kingfisher", "snow-leopard", "kaiju"], tags: ["anthro", "feral"] },
  45847. {
  45848. front: {
  45849. height: math.unit(2 + 8/12, "feet"),
  45850. weight: math.unit(15, "lb"),
  45851. name: "Front",
  45852. image: {
  45853. source: "./media/characters/mochi/front.svg",
  45854. extra: 1022/852,
  45855. bottom: 435/1457
  45856. }
  45857. },
  45858. back: {
  45859. height: math.unit(2 + 8/12, "feet"),
  45860. weight: math.unit(15, "lb"),
  45861. name: "Back",
  45862. image: {
  45863. source: "./media/characters/mochi/back.svg",
  45864. extra: 1335/1119,
  45865. bottom: 39/1374
  45866. }
  45867. },
  45868. bird: {
  45869. height: math.unit(2 + 8/12, "feet"),
  45870. weight: math.unit(15, "lb"),
  45871. name: "Bird",
  45872. image: {
  45873. source: "./media/characters/mochi/bird.svg",
  45874. extra: 1251/1113,
  45875. bottom: 178/1429
  45876. }
  45877. },
  45878. kaiju: {
  45879. height: math.unit(154, "feet"),
  45880. weight: math.unit(1e7, "lb"),
  45881. name: "Kaiju",
  45882. image: {
  45883. source: "./media/characters/mochi/kaiju.svg",
  45884. extra: 460/324,
  45885. bottom: 40/500
  45886. }
  45887. },
  45888. head: {
  45889. height: math.unit(1.21, "feet"),
  45890. name: "Head",
  45891. image: {
  45892. source: "./media/characters/mochi/head.svg"
  45893. }
  45894. },
  45895. alternateTail: {
  45896. height: math.unit(2 + 8/12, "feet"),
  45897. weight: math.unit(45, "lb"),
  45898. name: "Alternate Tail",
  45899. image: {
  45900. source: "./media/characters/mochi/alternate-tail.svg",
  45901. extra: 139/76,
  45902. bottom: 45/184
  45903. }
  45904. },
  45905. },
  45906. [
  45907. {
  45908. name: "Micro",
  45909. height: math.unit(2, "inches")
  45910. },
  45911. {
  45912. name: "Normal",
  45913. height: math.unit(2 + 8/12, "feet"),
  45914. default: true
  45915. },
  45916. {
  45917. name: "Macro",
  45918. height: math.unit(106, "feet")
  45919. },
  45920. ]
  45921. ))
  45922. characterMakers.push(() => makeCharacter(
  45923. { name: "Sarel", species: ["omnifalcon"], tags: ["anthro"] },
  45924. {
  45925. front: {
  45926. height: math.unit(5.67, "feet"),
  45927. weight: math.unit(135, "lb"),
  45928. name: "Front",
  45929. image: {
  45930. source: "./media/characters/sarel/front.svg",
  45931. extra: 865/788,
  45932. bottom: 97/962
  45933. }
  45934. },
  45935. back: {
  45936. height: math.unit(5.67, "feet"),
  45937. weight: math.unit(135, "lb"),
  45938. name: "Back",
  45939. image: {
  45940. source: "./media/characters/sarel/back.svg",
  45941. extra: 857/777,
  45942. bottom: 32/889
  45943. }
  45944. },
  45945. chozoan: {
  45946. height: math.unit(5.67, "feet"),
  45947. weight: math.unit(135, "lb"),
  45948. name: "Chozoan",
  45949. image: {
  45950. source: "./media/characters/sarel/chozoan.svg",
  45951. extra: 865/788,
  45952. bottom: 97/962
  45953. }
  45954. },
  45955. current: {
  45956. height: math.unit(5.67, "feet"),
  45957. weight: math.unit(135, "lb"),
  45958. name: "Current",
  45959. image: {
  45960. source: "./media/characters/sarel/current.svg",
  45961. extra: 865/788,
  45962. bottom: 97/962
  45963. }
  45964. },
  45965. head: {
  45966. height: math.unit(1.77, "feet"),
  45967. name: "Head",
  45968. image: {
  45969. source: "./media/characters/sarel/head.svg"
  45970. }
  45971. },
  45972. claws: {
  45973. height: math.unit(1.8, "feet"),
  45974. name: "Claws",
  45975. image: {
  45976. source: "./media/characters/sarel/claws.svg"
  45977. }
  45978. },
  45979. clawsAlt: {
  45980. height: math.unit(1.8, "feet"),
  45981. name: "Claws-alt",
  45982. image: {
  45983. source: "./media/characters/sarel/claws-alt.svg"
  45984. }
  45985. },
  45986. },
  45987. [
  45988. {
  45989. name: "Normal",
  45990. height: math.unit(5.67, "feet"),
  45991. default: true
  45992. },
  45993. ]
  45994. ))
  45995. characterMakers.push(() => makeCharacter(
  45996. { name: "Alyonia", species: ["shark"], tags: ["anthro"] },
  45997. {
  45998. front: {
  45999. height: math.unit(5500, "feet"),
  46000. name: "Front",
  46001. image: {
  46002. source: "./media/characters/alyonia/front.svg",
  46003. extra: 1200/1135,
  46004. bottom: 29/1229
  46005. }
  46006. },
  46007. back: {
  46008. height: math.unit(5500, "feet"),
  46009. name: "Back",
  46010. image: {
  46011. source: "./media/characters/alyonia/back.svg",
  46012. extra: 1205/1138,
  46013. bottom: 10/1215
  46014. }
  46015. },
  46016. },
  46017. [
  46018. {
  46019. name: "Small",
  46020. height: math.unit(10, "feet")
  46021. },
  46022. {
  46023. name: "Macro",
  46024. height: math.unit(500, "feet")
  46025. },
  46026. {
  46027. name: "Mega Macro",
  46028. height: math.unit(5500, "feet"),
  46029. default: true
  46030. },
  46031. {
  46032. name: "Mega Macro+",
  46033. height: math.unit(500000, "feet")
  46034. },
  46035. {
  46036. name: "Giga Macro",
  46037. height: math.unit(3000, "miles")
  46038. },
  46039. {
  46040. name: "Tera Macro",
  46041. height: math.unit(2.8e6, "miles")
  46042. },
  46043. {
  46044. name: "Galactic",
  46045. height: math.unit(120000, "lightyears")
  46046. },
  46047. ]
  46048. ))
  46049. characterMakers.push(() => makeCharacter(
  46050. { name: "Autumn", species: ["werewolf", "human"], tags: ["anthro"] },
  46051. {
  46052. werewolf: {
  46053. height: math.unit(8, "feet"),
  46054. weight: math.unit(425, "lb"),
  46055. name: "Werewolf",
  46056. image: {
  46057. source: "./media/characters/autumn/werewolf.svg",
  46058. extra: 2154/2031,
  46059. bottom: 160/2314
  46060. }
  46061. },
  46062. human: {
  46063. height: math.unit(5 + 8/12, "feet"),
  46064. weight: math.unit(150, "lb"),
  46065. name: "Human",
  46066. image: {
  46067. source: "./media/characters/autumn/human.svg",
  46068. extra: 1200/1149,
  46069. bottom: 30/1230
  46070. }
  46071. },
  46072. },
  46073. [
  46074. {
  46075. name: "Normal",
  46076. height: math.unit(8, "feet"),
  46077. default: true
  46078. },
  46079. ]
  46080. ))
  46081. characterMakers.push(() => makeCharacter(
  46082. { name: "Cobalt (Charizard)", species: ["charizard"], tags: ["anthro"] },
  46083. {
  46084. front: {
  46085. height: math.unit(8 + 5/12, "feet"),
  46086. weight: math.unit(825, "lb"),
  46087. name: "Front",
  46088. image: {
  46089. source: "./media/characters/cobalt-charizard/front.svg",
  46090. extra: 1268/1155,
  46091. bottom: 122/1390
  46092. }
  46093. },
  46094. side: {
  46095. height: math.unit(8 + 5/12, "feet"),
  46096. weight: math.unit(825, "lb"),
  46097. name: "Side",
  46098. image: {
  46099. source: "./media/characters/cobalt-charizard/side.svg",
  46100. extra: 1348/1257,
  46101. bottom: 58/1406
  46102. }
  46103. },
  46104. gMax: {
  46105. height: math.unit(134 + 11/12, "feet"),
  46106. name: "G-Max",
  46107. image: {
  46108. source: "./media/characters/cobalt-charizard/g-max.svg",
  46109. extra: 1835/1541,
  46110. bottom: 151/1986
  46111. }
  46112. },
  46113. },
  46114. [
  46115. {
  46116. name: "Normal",
  46117. height: math.unit(8 + 5/12, "feet"),
  46118. default: true
  46119. },
  46120. ]
  46121. ))
  46122. characterMakers.push(() => makeCharacter(
  46123. { name: "Stella", species: ["gryphon"], tags: ["anthro"] },
  46124. {
  46125. front: {
  46126. height: math.unit(6 + 3/12, "feet"),
  46127. weight: math.unit(210, "lb"),
  46128. name: "Front",
  46129. image: {
  46130. source: "./media/characters/stella/front.svg",
  46131. extra: 3549/3335,
  46132. bottom: 51/3600
  46133. }
  46134. },
  46135. },
  46136. [
  46137. {
  46138. name: "Normal",
  46139. height: math.unit(6 + 3/12, "feet"),
  46140. default: true
  46141. },
  46142. ]
  46143. ))
  46144. characterMakers.push(() => makeCharacter(
  46145. { name: "Riley Bishop", species: ["human"], tags: ["anthro"] },
  46146. {
  46147. front: {
  46148. height: math.unit(5, "feet"),
  46149. weight: math.unit(90, "lb"),
  46150. name: "Front",
  46151. image: {
  46152. source: "./media/characters/riley-bishop/front.svg",
  46153. extra: 1450/1428,
  46154. bottom: 152/1602
  46155. }
  46156. },
  46157. },
  46158. [
  46159. {
  46160. name: "Normal",
  46161. height: math.unit(5, "feet"),
  46162. default: true
  46163. },
  46164. ]
  46165. ))
  46166. characterMakers.push(() => makeCharacter(
  46167. { name: "Theo (Arcanine)", species: ["arcanine"], tags: ["feral"] },
  46168. {
  46169. side: {
  46170. height: math.unit(8 + 2/12, "feet"),
  46171. weight: math.unit(500, "kg"),
  46172. name: "Side",
  46173. image: {
  46174. source: "./media/characters/theo-arcanine/side.svg",
  46175. extra: 1342/1074,
  46176. bottom: 111/1453
  46177. }
  46178. },
  46179. },
  46180. [
  46181. {
  46182. name: "Normal",
  46183. height: math.unit(8 + 2/12, "feet"),
  46184. default: true
  46185. },
  46186. ]
  46187. ))
  46188. characterMakers.push(() => makeCharacter(
  46189. { name: "Kali", species: ["avali"], tags: ["anthro"] },
  46190. {
  46191. front: {
  46192. height: math.unit(4, "feet"),
  46193. name: "Front",
  46194. image: {
  46195. source: "./media/characters/kali/front.svg",
  46196. extra: 1074/867,
  46197. bottom: 34/1108
  46198. }
  46199. },
  46200. back: {
  46201. height: math.unit(4, "feet"),
  46202. name: "Back",
  46203. image: {
  46204. source: "./media/characters/kali/back.svg",
  46205. extra: 1068/863,
  46206. bottom: 26/1094
  46207. }
  46208. },
  46209. frontAlt: {
  46210. height: math.unit(4, "feet"),
  46211. name: "Front (Alt)",
  46212. image: {
  46213. source: "./media/characters/kali/front-alt.svg",
  46214. extra: 1921/1357,
  46215. bottom: 70/1991
  46216. }
  46217. },
  46218. },
  46219. [
  46220. {
  46221. name: "Normal",
  46222. height: math.unit(4, "feet"),
  46223. default: true
  46224. },
  46225. {
  46226. name: "Big'vali",
  46227. height: math.unit(11, "feet")
  46228. },
  46229. {
  46230. name: "Macro",
  46231. height: math.unit(32, "meters")
  46232. },
  46233. {
  46234. name: "Macro+",
  46235. height: math.unit(150, "meters")
  46236. },
  46237. {
  46238. name: "Megamacro",
  46239. height: math.unit(7500, "meters")
  46240. },
  46241. {
  46242. name: "Megamacro+",
  46243. height: math.unit(80, "kilometers")
  46244. },
  46245. ]
  46246. ))
  46247. characterMakers.push(() => makeCharacter(
  46248. { name: "Gapp", species: ["zorgoia"], tags: ["feral"] },
  46249. {
  46250. side: {
  46251. height: math.unit(5 + 11/12, "feet"),
  46252. weight: math.unit(236, "lb"),
  46253. name: "Side",
  46254. image: {
  46255. source: "./media/characters/gapp/side.svg",
  46256. extra: 775/340,
  46257. bottom: 58/833
  46258. }
  46259. },
  46260. mouth: {
  46261. height: math.unit(2.98, "feet"),
  46262. name: "Mouth",
  46263. image: {
  46264. source: "./media/characters/gapp/mouth.svg"
  46265. }
  46266. },
  46267. },
  46268. [
  46269. {
  46270. name: "Normal",
  46271. height: math.unit(5 + 1/12, "feet"),
  46272. default: true
  46273. },
  46274. ]
  46275. ))
  46276. characterMakers.push(() => makeCharacter(
  46277. { name: "Persephone", species: ["absol"], tags: ["anthro"] },
  46278. {
  46279. front: {
  46280. height: math.unit(6, "feet"),
  46281. name: "Front",
  46282. image: {
  46283. source: "./media/characters/persephone/front.svg",
  46284. extra: 1895/1717,
  46285. bottom: 96/1991
  46286. }
  46287. },
  46288. back: {
  46289. height: math.unit(6, "feet"),
  46290. name: "Back",
  46291. image: {
  46292. source: "./media/characters/persephone/back.svg",
  46293. extra: 1868/1679,
  46294. bottom: 26/1894
  46295. }
  46296. },
  46297. casual: {
  46298. height: math.unit(6, "feet"),
  46299. name: "Casual",
  46300. image: {
  46301. source: "./media/characters/persephone/casual.svg",
  46302. extra: 1713/1541,
  46303. bottom: 76/1789
  46304. }
  46305. },
  46306. gaming: {
  46307. height: math.unit(3.55, "feet"),
  46308. name: "Gaming",
  46309. image: {
  46310. source: "./media/characters/persephone/gaming.svg",
  46311. extra: 1242/1038,
  46312. bottom: 66/1308
  46313. }
  46314. },
  46315. head: {
  46316. height: math.unit(2.15, "feet"),
  46317. name: "😐",
  46318. image: {
  46319. source: "./media/characters/persephone/head.svg"
  46320. }
  46321. },
  46322. talking: {
  46323. height: math.unit(2.5, "feet"),
  46324. name: "💬",
  46325. image: {
  46326. source: "./media/characters/persephone/talking.svg"
  46327. }
  46328. },
  46329. hmm: {
  46330. height: math.unit(2.28, "feet"),
  46331. name: "🤨",
  46332. image: {
  46333. source: "./media/characters/persephone/hmm.svg"
  46334. }
  46335. },
  46336. },
  46337. [
  46338. {
  46339. name: "Human Size",
  46340. height: math.unit(6, "feet")
  46341. },
  46342. {
  46343. name: "Big Steppy",
  46344. height: math.unit(600, "meters"),
  46345. default: true
  46346. },
  46347. {
  46348. name: "Galaxy Brain",
  46349. height: math.unit(1, "zettameter")
  46350. },
  46351. ]
  46352. ))
  46353. characterMakers.push(() => makeCharacter(
  46354. { name: "Riley Foxthing", species: ["fox"], tags: ["anthro"] },
  46355. {
  46356. front: {
  46357. height: math.unit(1.85, "meters"),
  46358. name: "Front",
  46359. image: {
  46360. source: "./media/characters/riley-foxthing/front.svg",
  46361. extra: 1495/1354,
  46362. bottom: 122/1617
  46363. }
  46364. },
  46365. frontAlt: {
  46366. height: math.unit(1.85, "meters"),
  46367. name: "Front (Alt)",
  46368. image: {
  46369. source: "./media/characters/riley-foxthing/front-alt.svg",
  46370. extra: 1572/1389,
  46371. bottom: 116/1688
  46372. }
  46373. },
  46374. },
  46375. [
  46376. {
  46377. name: "Normal Sized",
  46378. height: math.unit(1.85, "meters"),
  46379. default: true
  46380. },
  46381. {
  46382. name: "Quite Sizable",
  46383. height: math.unit(5, "meters")
  46384. },
  46385. {
  46386. name: "Rather Large",
  46387. height: math.unit(20, "meters")
  46388. },
  46389. {
  46390. name: "Macro",
  46391. height: math.unit(450, "meters")
  46392. },
  46393. {
  46394. name: "Giga",
  46395. height: math.unit(5, "km")
  46396. },
  46397. ]
  46398. ))
  46399. characterMakers.push(() => makeCharacter(
  46400. { name: "Blizzard", species: ["arctic-fox"], tags: ["anthro"] },
  46401. {
  46402. front: {
  46403. height: math.unit(6, "feet"),
  46404. weight: math.unit(200, "lb"),
  46405. name: "Front",
  46406. image: {
  46407. source: "./media/characters/blizzard/front.svg",
  46408. extra: 1136/990,
  46409. bottom: 136/1272
  46410. }
  46411. },
  46412. back: {
  46413. height: math.unit(6, "feet"),
  46414. weight: math.unit(200, "lb"),
  46415. name: "Back",
  46416. image: {
  46417. source: "./media/characters/blizzard/back.svg",
  46418. extra: 1175/1034,
  46419. bottom: 97/1272
  46420. }
  46421. },
  46422. sitting: {
  46423. height: math.unit(3.725, "feet"),
  46424. weight: math.unit(200, "lb"),
  46425. name: "Sitting",
  46426. image: {
  46427. source: "./media/characters/blizzard/sitting.svg",
  46428. extra: 581/485,
  46429. bottom: 90/671
  46430. }
  46431. },
  46432. frontWizard: {
  46433. height: math.unit(7.9, "feet"),
  46434. weight: math.unit(200, "lb"),
  46435. name: "Front (Wizard)",
  46436. image: {
  46437. source: "./media/characters/blizzard/front-wizard.svg"
  46438. }
  46439. },
  46440. backWizard: {
  46441. height: math.unit(7.9, "feet"),
  46442. weight: math.unit(200, "lb"),
  46443. name: "Back (Wizard)",
  46444. image: {
  46445. source: "./media/characters/blizzard/back-wizard.svg"
  46446. }
  46447. },
  46448. frontNsfw: {
  46449. height: math.unit(6, "feet"),
  46450. weight: math.unit(200, "lb"),
  46451. name: "Front (NSFW)",
  46452. image: {
  46453. source: "./media/characters/blizzard/front-nsfw.svg",
  46454. extra: 1136/990,
  46455. bottom: 136/1272
  46456. }
  46457. },
  46458. backNsfw: {
  46459. height: math.unit(6, "feet"),
  46460. weight: math.unit(200, "lb"),
  46461. name: "Back (NSFW)",
  46462. image: {
  46463. source: "./media/characters/blizzard/back-nsfw.svg",
  46464. extra: 1175/1034,
  46465. bottom: 97/1272
  46466. }
  46467. },
  46468. sittingNsfw: {
  46469. height: math.unit(3.725, "feet"),
  46470. weight: math.unit(200, "lb"),
  46471. name: "Sitting (NSFW)",
  46472. image: {
  46473. source: "./media/characters/blizzard/sitting-nsfw.svg",
  46474. extra: 581/485,
  46475. bottom: 90/671
  46476. }
  46477. },
  46478. wizardFrontNsfw: {
  46479. height: math.unit(7.9, "feet"),
  46480. weight: math.unit(200, "lb"),
  46481. name: "Wizard (Front, NSFW)",
  46482. image: {
  46483. source: "./media/characters/blizzard/wizard-front-nsfw.svg"
  46484. }
  46485. },
  46486. },
  46487. [
  46488. {
  46489. name: "Normal",
  46490. height: math.unit(6, "feet"),
  46491. default: true
  46492. },
  46493. ]
  46494. ))
  46495. characterMakers.push(() => makeCharacter(
  46496. { name: "Lumi", species: ["snow-tiger"], tags: ["anthro"] },
  46497. {
  46498. front: {
  46499. height: math.unit(5 + 2/12, "feet"),
  46500. name: "Front",
  46501. image: {
  46502. source: "./media/characters/lumi/front.svg",
  46503. extra: 1328/1268,
  46504. bottom: 103/1431
  46505. }
  46506. },
  46507. back: {
  46508. height: math.unit(5 + 2/12, "feet"),
  46509. name: "Back",
  46510. image: {
  46511. source: "./media/characters/lumi/back.svg",
  46512. extra: 1381/1327,
  46513. bottom: 43/1424
  46514. }
  46515. },
  46516. },
  46517. [
  46518. {
  46519. name: "Normal",
  46520. height: math.unit(5 + 2/12, "feet"),
  46521. default: true
  46522. },
  46523. ]
  46524. ))
  46525. characterMakers.push(() => makeCharacter(
  46526. { name: "Aliya Cotton", species: ["rabbit"], tags: ["anthro"] },
  46527. {
  46528. front: {
  46529. height: math.unit(5 + 9/12, "feet"),
  46530. name: "Front",
  46531. image: {
  46532. source: "./media/characters/aliya-cotton/front.svg",
  46533. extra: 577/564,
  46534. bottom: 29/606
  46535. }
  46536. },
  46537. },
  46538. [
  46539. {
  46540. name: "Normal",
  46541. height: math.unit(5 + 9/12, "feet"),
  46542. default: true
  46543. },
  46544. ]
  46545. ))
  46546. characterMakers.push(() => makeCharacter(
  46547. { name: "Noah (Luxray)", species: ["luxray"], tags: ["anthro"] },
  46548. {
  46549. front: {
  46550. height: math.unit(2.7, "meters"),
  46551. weight: math.unit(25000, "lb"),
  46552. name: "Front",
  46553. image: {
  46554. source: "./media/characters/noah-luxray/front.svg",
  46555. extra: 1644/825,
  46556. bottom: 339/1983
  46557. }
  46558. },
  46559. side: {
  46560. height: math.unit(2.97, "meters"),
  46561. weight: math.unit(25000, "lb"),
  46562. name: "Side",
  46563. image: {
  46564. source: "./media/characters/noah-luxray/side.svg",
  46565. extra: 1319/650,
  46566. bottom: 163/1482
  46567. }
  46568. },
  46569. dick: {
  46570. height: math.unit(7.4, "feet"),
  46571. weight: math.unit(2500, "lb"),
  46572. name: "Dick",
  46573. image: {
  46574. source: "./media/characters/noah-luxray/dick.svg"
  46575. }
  46576. },
  46577. dickAlt: {
  46578. height: math.unit(10.83, "feet"),
  46579. weight: math.unit(2500, "lb"),
  46580. name: "Dick-alt",
  46581. image: {
  46582. source: "./media/characters/noah-luxray/dick-alt.svg"
  46583. }
  46584. },
  46585. },
  46586. [
  46587. {
  46588. name: "BIG",
  46589. height: math.unit(2.7, "meters"),
  46590. default: true
  46591. },
  46592. ]
  46593. ))
  46594. characterMakers.push(() => makeCharacter(
  46595. { name: "Arion", species: ["horse"], tags: ["anthro"] },
  46596. {
  46597. standing: {
  46598. height: math.unit(183, "cm"),
  46599. weight: math.unit(68, "kg"),
  46600. name: "Standing",
  46601. image: {
  46602. source: "./media/characters/arion/standing.svg",
  46603. extra: 1869/1807,
  46604. bottom: 93/1962
  46605. }
  46606. },
  46607. reclining: {
  46608. height: math.unit(70.5, "cm"),
  46609. weight: math.unit(68, "lb"),
  46610. name: "Reclining",
  46611. image: {
  46612. source: "./media/characters/arion/reclining.svg",
  46613. extra: 937/870,
  46614. bottom: 63/1000
  46615. }
  46616. },
  46617. },
  46618. [
  46619. {
  46620. name: "Colossus Size, Low",
  46621. height: math.unit(33, "meters"),
  46622. default: true
  46623. },
  46624. {
  46625. name: "Colossus Size, Mid",
  46626. height: math.unit(52, "meters")
  46627. },
  46628. {
  46629. name: "Colossus Size, High",
  46630. height: math.unit(60, "meters")
  46631. },
  46632. {
  46633. name: "Titan Size, Low",
  46634. height: math.unit(91, "meters"),
  46635. },
  46636. {
  46637. name: "Titan Size, Mid",
  46638. height: math.unit(122, "meters")
  46639. },
  46640. {
  46641. name: "Titan Size, High",
  46642. height: math.unit(162, "meters")
  46643. },
  46644. ]
  46645. ))
  46646. characterMakers.push(() => makeCharacter(
  46647. { name: "Stellar Marbey", species: ["marble-fox"], tags: ["anthro"] },
  46648. {
  46649. front: {
  46650. height: math.unit(53, "meters"),
  46651. name: "Front",
  46652. image: {
  46653. source: "./media/characters/stellar-marbey/front.svg",
  46654. extra: 1913/1805,
  46655. bottom: 92/2005
  46656. }
  46657. },
  46658. back: {
  46659. height: math.unit(53, "meters"),
  46660. name: "Back",
  46661. image: {
  46662. source: "./media/characters/stellar-marbey/back.svg",
  46663. extra: 1960/1851,
  46664. bottom: 28/1988
  46665. }
  46666. },
  46667. mouth: {
  46668. height: math.unit(3.5, "meters"),
  46669. name: "Mouth",
  46670. image: {
  46671. source: "./media/characters/stellar-marbey/mouth.svg"
  46672. }
  46673. },
  46674. },
  46675. [
  46676. {
  46677. name: "Macro",
  46678. height: math.unit(53, "meters"),
  46679. default: true
  46680. },
  46681. ]
  46682. ))
  46683. characterMakers.push(() => makeCharacter(
  46684. { name: "Matsu", species: ["dragon", "deer"], tags: ["anthro"] },
  46685. {
  46686. front: {
  46687. height: math.unit(8 + 1/12, "feet"),
  46688. weight: math.unit(233, "lb"),
  46689. name: "Front",
  46690. image: {
  46691. source: "./media/characters/matsu/front.svg",
  46692. extra: 832/772,
  46693. bottom: 40/872
  46694. }
  46695. },
  46696. back: {
  46697. height: math.unit(8 + 1/12, "feet"),
  46698. weight: math.unit(233, "lb"),
  46699. name: "Back",
  46700. image: {
  46701. source: "./media/characters/matsu/back.svg",
  46702. extra: 839/780,
  46703. bottom: 47/886
  46704. }
  46705. },
  46706. },
  46707. [
  46708. {
  46709. name: "Normal",
  46710. height: math.unit(8 + 1/12, "feet"),
  46711. default: true
  46712. },
  46713. ]
  46714. ))
  46715. characterMakers.push(() => makeCharacter(
  46716. { name: "Thiz", species: ["gremlin"], tags: ["anthro"] },
  46717. {
  46718. front: {
  46719. height: math.unit(4, "feet"),
  46720. weight: math.unit(148, "lb"),
  46721. name: "Front",
  46722. image: {
  46723. source: "./media/characters/thiz/front.svg",
  46724. extra: 1913/1748,
  46725. bottom: 62/1975
  46726. }
  46727. },
  46728. },
  46729. [
  46730. {
  46731. name: "Normal",
  46732. height: math.unit(4, "feet"),
  46733. default: true
  46734. },
  46735. ]
  46736. ))
  46737. characterMakers.push(() => makeCharacter(
  46738. { name: "Marcel", species: ["king-wickerbeast"], tags: ["anthro"] },
  46739. {
  46740. front: {
  46741. height: math.unit(7 + 6/12, "feet"),
  46742. weight: math.unit(267, "lb"),
  46743. name: "Front",
  46744. image: {
  46745. source: "./media/characters/marcel/front.svg",
  46746. extra: 1221/1096,
  46747. bottom: 76/1297
  46748. }
  46749. },
  46750. },
  46751. [
  46752. {
  46753. name: "Normal",
  46754. height: math.unit(7 + 6/12, "feet"),
  46755. default: true
  46756. },
  46757. ]
  46758. ))
  46759. characterMakers.push(() => makeCharacter(
  46760. { name: "Flake", species: ["dragon"], tags: ["feral"] },
  46761. {
  46762. side: {
  46763. height: math.unit(42, "meters"),
  46764. name: "Side",
  46765. image: {
  46766. source: "./media/characters/flake/side.svg",
  46767. extra: 1525/1306,
  46768. bottom: 209/1734
  46769. }
  46770. },
  46771. },
  46772. [
  46773. {
  46774. name: "Normal",
  46775. height: math.unit(42, "meters"),
  46776. default: true
  46777. },
  46778. ]
  46779. ))
  46780. characterMakers.push(() => makeCharacter(
  46781. { name: "Someonne", species: ["alien", "robot"], tags: ["anthro"] },
  46782. {
  46783. dressed: {
  46784. height: math.unit(6 + 4/12, "feet"),
  46785. weight: math.unit(520, "lb"),
  46786. name: "Dressed",
  46787. image: {
  46788. source: "./media/characters/someonne/dressed.svg",
  46789. extra: 1020/1010,
  46790. bottom: 178/1198
  46791. }
  46792. },
  46793. undressed: {
  46794. height: math.unit(6 + 4/12, "feet"),
  46795. weight: math.unit(520, "lb"),
  46796. name: "Undressed",
  46797. image: {
  46798. source: "./media/characters/someonne/undressed.svg",
  46799. extra: 1019/1014,
  46800. bottom: 169/1188
  46801. }
  46802. },
  46803. },
  46804. [
  46805. {
  46806. name: "Normal",
  46807. height: math.unit(6 + 4/12, "feet"),
  46808. default: true
  46809. },
  46810. ]
  46811. ))
  46812. characterMakers.push(() => makeCharacter(
  46813. { name: "Till", species: ["kobold"], tags: ["anthro"] },
  46814. {
  46815. front: {
  46816. height: math.unit(3, "feet"),
  46817. weight: math.unit(30, "lb"),
  46818. name: "Front",
  46819. image: {
  46820. source: "./media/characters/till/front.svg",
  46821. extra: 892/823,
  46822. bottom: 55/947
  46823. }
  46824. },
  46825. },
  46826. [
  46827. {
  46828. name: "Normal",
  46829. height: math.unit(3, "feet"),
  46830. default: true
  46831. },
  46832. ]
  46833. ))
  46834. characterMakers.push(() => makeCharacter(
  46835. { name: "Sydney Heki", species: ["werewolf"], tags: ["anthro"] },
  46836. {
  46837. front: {
  46838. height: math.unit(9 + 8/12, "feet"),
  46839. weight: math.unit(800, "lb"),
  46840. name: "Front",
  46841. image: {
  46842. source: "./media/characters/sydney-heki/front.svg",
  46843. extra: 1360/1300,
  46844. bottom: 22/1382
  46845. }
  46846. },
  46847. back: {
  46848. height: math.unit(9 + 8/12, "feet"),
  46849. weight: math.unit(800, "lb"),
  46850. name: "Back",
  46851. image: {
  46852. source: "./media/characters/sydney-heki/back.svg",
  46853. extra: 1356/1293,
  46854. bottom: 12/1368
  46855. }
  46856. },
  46857. frontDressed: {
  46858. height: math.unit(9 + 8/12, "feet"),
  46859. weight: math.unit(800, "lb"),
  46860. name: "Front-dressed",
  46861. image: {
  46862. source: "./media/characters/sydney-heki/front-dressed.svg",
  46863. extra: 1360/1300,
  46864. bottom: 22/1382
  46865. }
  46866. },
  46867. },
  46868. [
  46869. {
  46870. name: "Normal",
  46871. height: math.unit(9 + 8/12, "feet"),
  46872. default: true
  46873. },
  46874. {
  46875. name: "Macro",
  46876. height: math.unit(500, "feet")
  46877. },
  46878. {
  46879. name: "Megamacro",
  46880. height: math.unit(3.6, "miles")
  46881. },
  46882. ]
  46883. ))
  46884. characterMakers.push(() => makeCharacter(
  46885. { name: "Fowler Karlsson", species: ["horse"], tags: ["anthro"] },
  46886. {
  46887. front: {
  46888. height: math.unit(200, "cm"),
  46889. weight: math.unit(250, "lb"),
  46890. name: "Front",
  46891. image: {
  46892. source: "./media/characters/fowler-karlsson/front.svg",
  46893. extra: 897/845,
  46894. bottom: 123/1020
  46895. }
  46896. },
  46897. back: {
  46898. height: math.unit(200, "cm"),
  46899. weight: math.unit(250, "lb"),
  46900. name: "Back",
  46901. image: {
  46902. source: "./media/characters/fowler-karlsson/back.svg",
  46903. extra: 999/944,
  46904. bottom: 26/1025
  46905. }
  46906. },
  46907. dick: {
  46908. height: math.unit(1.92, "feet"),
  46909. weight: math.unit(150, "lb"),
  46910. name: "Dick",
  46911. image: {
  46912. source: "./media/characters/fowler-karlsson/dick.svg"
  46913. }
  46914. },
  46915. },
  46916. [
  46917. {
  46918. name: "Normal",
  46919. height: math.unit(200, "cm"),
  46920. default: true
  46921. },
  46922. {
  46923. name: "Smaller Macro",
  46924. height: math.unit(90, "m")
  46925. },
  46926. {
  46927. name: "Macro",
  46928. height: math.unit(150, "m")
  46929. },
  46930. {
  46931. name: "Bigger Macro",
  46932. height: math.unit(300, "m")
  46933. },
  46934. ]
  46935. ))
  46936. characterMakers.push(() => makeCharacter(
  46937. { name: "Rylide", species: ["jackalope"], tags: ["taur"] },
  46938. {
  46939. side: {
  46940. height: math.unit(8 + 2/12, "feet"),
  46941. weight: math.unit(1, "tonne"),
  46942. name: "Side",
  46943. image: {
  46944. source: "./media/characters/rylide/side.svg",
  46945. extra: 1318/1034,
  46946. bottom: 106/1424
  46947. }
  46948. },
  46949. sitting: {
  46950. height: math.unit(303, "cm"),
  46951. weight: math.unit(1, "tonne"),
  46952. name: "Sitting",
  46953. image: {
  46954. source: "./media/characters/rylide/sitting.svg",
  46955. extra: 1303/1103,
  46956. bottom: 36/1339
  46957. }
  46958. },
  46959. },
  46960. [
  46961. {
  46962. name: "Normal",
  46963. height: math.unit(8 + 2/12, "feet"),
  46964. default: true
  46965. },
  46966. ]
  46967. ))
  46968. characterMakers.push(() => makeCharacter(
  46969. { name: "Pudask", species: ["european-polecat"], tags: ["anthro"] },
  46970. {
  46971. front: {
  46972. height: math.unit(5 + 10/12, "feet"),
  46973. weight: math.unit(160, "lb"),
  46974. name: "Front",
  46975. image: {
  46976. source: "./media/characters/pudask/front.svg",
  46977. extra: 1616/1590,
  46978. bottom: 161/1777
  46979. }
  46980. },
  46981. },
  46982. [
  46983. {
  46984. name: "Ferret Height",
  46985. height: math.unit(2 + 5/12, "feet")
  46986. },
  46987. {
  46988. name: "Canon Height",
  46989. height: math.unit(5 + 10/12, "feet"),
  46990. default: true
  46991. },
  46992. ]
  46993. ))
  46994. characterMakers.push(() => makeCharacter(
  46995. { name: "Ramita", species: ["teshari"], tags: ["anthro"] },
  46996. {
  46997. front: {
  46998. height: math.unit(3 + 6/12, "feet"),
  46999. weight: math.unit(60, "lb"),
  47000. name: "Front",
  47001. image: {
  47002. source: "./media/characters/ramita/front.svg",
  47003. extra: 1402/1232,
  47004. bottom: 62/1464
  47005. }
  47006. },
  47007. dressed: {
  47008. height: math.unit(3 + 6/12, "feet"),
  47009. weight: math.unit(60, "lb"),
  47010. name: "Dressed",
  47011. image: {
  47012. source: "./media/characters/ramita/dressed.svg",
  47013. extra: 1534/1249,
  47014. bottom: 50/1584
  47015. }
  47016. },
  47017. },
  47018. [
  47019. {
  47020. name: "Normal",
  47021. height: math.unit(3 + 6/12, "feet"),
  47022. default: true
  47023. },
  47024. ]
  47025. ))
  47026. characterMakers.push(() => makeCharacter(
  47027. { name: "Ark", species: ["dragon"], tags: ["anthro"] },
  47028. {
  47029. front: {
  47030. height: math.unit(8, "feet"),
  47031. name: "Front",
  47032. image: {
  47033. source: "./media/characters/ark/front.svg",
  47034. extra: 772/693,
  47035. bottom: 45/817
  47036. }
  47037. },
  47038. },
  47039. [
  47040. {
  47041. name: "Normal",
  47042. height: math.unit(8, "feet"),
  47043. default: true
  47044. },
  47045. ]
  47046. ))
  47047. characterMakers.push(() => makeCharacter(
  47048. { name: "Ludwig-Horn", species: ["tiger", "dragon"], tags: ["anthro"] },
  47049. {
  47050. front: {
  47051. height: math.unit(6, "feet"),
  47052. weight: math.unit(250, "lb"),
  47053. volume: math.unit(5/8, "gallons"),
  47054. name: "Front",
  47055. image: {
  47056. source: "./media/characters/ludwig-horn/front.svg",
  47057. extra: 1782/1635,
  47058. bottom: 96/1878
  47059. }
  47060. },
  47061. back: {
  47062. height: math.unit(6, "feet"),
  47063. weight: math.unit(250, "lb"),
  47064. volume: math.unit(5/8, "gallons"),
  47065. name: "Back",
  47066. image: {
  47067. source: "./media/characters/ludwig-horn/back.svg",
  47068. extra: 1874/1729,
  47069. bottom: 27/1901
  47070. }
  47071. },
  47072. dick: {
  47073. height: math.unit(1.05, "feet"),
  47074. weight: math.unit(15, "lb"),
  47075. volume: math.unit(5/8, "gallons"),
  47076. name: "Dick",
  47077. image: {
  47078. source: "./media/characters/ludwig-horn/dick.svg"
  47079. }
  47080. },
  47081. },
  47082. [
  47083. {
  47084. name: "Small",
  47085. height: math.unit(6, "feet")
  47086. },
  47087. {
  47088. name: "Typical",
  47089. height: math.unit(12, "feet"),
  47090. default: true
  47091. },
  47092. {
  47093. name: "Building",
  47094. height: math.unit(80, "feet")
  47095. },
  47096. {
  47097. name: "Town",
  47098. height: math.unit(800, "feet")
  47099. },
  47100. {
  47101. name: "Kingdom",
  47102. height: math.unit(80000, "feet")
  47103. },
  47104. {
  47105. name: "Planet",
  47106. height: math.unit(8000000, "feet")
  47107. },
  47108. {
  47109. name: "Universe",
  47110. height: math.unit(8000000000, "feet")
  47111. },
  47112. {
  47113. name: "Transcended",
  47114. height: math.unit(8e27, "feet")
  47115. },
  47116. ]
  47117. ))
  47118. characterMakers.push(() => makeCharacter(
  47119. { name: "Biot Avery", species: ["dragon"], tags: ["anthro"] },
  47120. {
  47121. front: {
  47122. height: math.unit(5, "feet"),
  47123. weight: math.unit(50, "kg"),
  47124. name: "Front",
  47125. image: {
  47126. source: "./media/characters/biot-avery/front.svg",
  47127. extra: 1295/1232,
  47128. bottom: 86/1381
  47129. }
  47130. },
  47131. },
  47132. [
  47133. {
  47134. name: "Normal",
  47135. height: math.unit(5, "feet"),
  47136. default: true
  47137. },
  47138. ]
  47139. ))
  47140. characterMakers.push(() => makeCharacter(
  47141. { name: "Kitsune Kiro", species: ["kitsune"], tags: ["anthro"] },
  47142. {
  47143. front: {
  47144. height: math.unit(6, "feet"),
  47145. name: "Front",
  47146. image: {
  47147. source: "./media/characters/kitsune-kiro/front.svg",
  47148. extra: 1270/1158,
  47149. bottom: 42/1312
  47150. }
  47151. },
  47152. frontAlt: {
  47153. height: math.unit(6, "feet"),
  47154. name: "Front-alt",
  47155. image: {
  47156. source: "./media/characters/kitsune-kiro/front-alt.svg",
  47157. extra: 1130/1081,
  47158. bottom: 36/1166
  47159. }
  47160. },
  47161. },
  47162. [
  47163. {
  47164. name: "Smol",
  47165. height: math.unit(3, "feet")
  47166. },
  47167. {
  47168. name: "Normal",
  47169. height: math.unit(6, "feet"),
  47170. default: true
  47171. },
  47172. ]
  47173. ))
  47174. characterMakers.push(() => makeCharacter(
  47175. { name: "Jack Thatcher", species: ["fox"], tags: ["anthro"] },
  47176. {
  47177. front: {
  47178. height: math.unit(6, "feet"),
  47179. weight: math.unit(125, "lb"),
  47180. name: "Front",
  47181. image: {
  47182. source: "./media/characters/jack-thatcher/front.svg",
  47183. extra: 1474/1370,
  47184. bottom: 26/1500
  47185. }
  47186. },
  47187. back: {
  47188. height: math.unit(6, "feet"),
  47189. weight: math.unit(125, "lb"),
  47190. name: "Back",
  47191. image: {
  47192. source: "./media/characters/jack-thatcher/back.svg",
  47193. extra: 1489/1384,
  47194. bottom: 18/1507
  47195. }
  47196. },
  47197. },
  47198. [
  47199. {
  47200. name: "Normal",
  47201. height: math.unit(6, "feet"),
  47202. default: true
  47203. },
  47204. {
  47205. name: "Macro",
  47206. height: math.unit(75, "feet")
  47207. },
  47208. {
  47209. name: "Macro-er",
  47210. height: math.unit(250, "feet")
  47211. },
  47212. ]
  47213. ))
  47214. characterMakers.push(() => makeCharacter(
  47215. { name: "Max Hyper", species: ["husky"], tags: ["anthro"] },
  47216. {
  47217. front: {
  47218. height: math.unit(7, "feet"),
  47219. weight: math.unit(110, "kg"),
  47220. name: "Front",
  47221. image: {
  47222. source: "./media/characters/max-hyper/front.svg",
  47223. extra: 1969/1881,
  47224. bottom: 49/2018
  47225. }
  47226. },
  47227. },
  47228. [
  47229. {
  47230. name: "Normal",
  47231. height: math.unit(7, "feet"),
  47232. default: true
  47233. },
  47234. ]
  47235. ))
  47236. characterMakers.push(() => makeCharacter(
  47237. { name: "Spook", species: ["alien"], tags: ["anthro"] },
  47238. {
  47239. front: {
  47240. height: math.unit(5 + 5/12, "feet"),
  47241. weight: math.unit(160, "lb"),
  47242. name: "Front",
  47243. image: {
  47244. source: "./media/characters/spook/front.svg",
  47245. extra: 794/791,
  47246. bottom: 54/848
  47247. }
  47248. },
  47249. back: {
  47250. height: math.unit(5 + 5/12, "feet"),
  47251. weight: math.unit(160, "lb"),
  47252. name: "Back",
  47253. image: {
  47254. source: "./media/characters/spook/back.svg",
  47255. extra: 812/798,
  47256. bottom: 32/844
  47257. }
  47258. },
  47259. },
  47260. [
  47261. {
  47262. name: "Normal",
  47263. height: math.unit(5 + 5/12, "feet"),
  47264. default: true
  47265. },
  47266. ]
  47267. ))
  47268. characterMakers.push(() => makeCharacter(
  47269. { name: "Xeaduulix", species: ["dragon"], tags: ["anthro"] },
  47270. {
  47271. front: {
  47272. height: math.unit(18, "feet"),
  47273. name: "Front",
  47274. image: {
  47275. source: "./media/characters/xeaduulix/front.svg",
  47276. extra: 1380/1166,
  47277. bottom: 110/1490
  47278. }
  47279. },
  47280. back: {
  47281. height: math.unit(18, "feet"),
  47282. name: "Back",
  47283. image: {
  47284. source: "./media/characters/xeaduulix/back.svg",
  47285. extra: 1592/1170,
  47286. bottom: 128/1720
  47287. }
  47288. },
  47289. frontNsfw: {
  47290. height: math.unit(18, "feet"),
  47291. name: "Front (NSFW)",
  47292. image: {
  47293. source: "./media/characters/xeaduulix/front-nsfw.svg",
  47294. extra: 1380/1166,
  47295. bottom: 110/1490
  47296. }
  47297. },
  47298. backNsfw: {
  47299. height: math.unit(18, "feet"),
  47300. name: "Back (NSFW)",
  47301. image: {
  47302. source: "./media/characters/xeaduulix/back-nsfw.svg",
  47303. extra: 1592/1170,
  47304. bottom: 128/1720
  47305. }
  47306. },
  47307. },
  47308. [
  47309. {
  47310. name: "Normal",
  47311. height: math.unit(18, "feet"),
  47312. default: true
  47313. },
  47314. ]
  47315. ))
  47316. characterMakers.push(() => makeCharacter(
  47317. { name: "Fledge", species: ["alicorn"], tags: ["anthro"] },
  47318. {
  47319. spreadWings: {
  47320. height: math.unit(20, "feet"),
  47321. name: "Spread Wings",
  47322. image: {
  47323. source: "./media/characters/fledge/spread-wings.svg",
  47324. extra: 693/635,
  47325. bottom: 26/719
  47326. }
  47327. },
  47328. front: {
  47329. height: math.unit(20, "feet"),
  47330. name: "Front",
  47331. image: {
  47332. source: "./media/characters/fledge/front.svg",
  47333. extra: 684/637,
  47334. bottom: 18/702
  47335. }
  47336. },
  47337. frontAlt: {
  47338. height: math.unit(20, "feet"),
  47339. name: "Front (Alt)",
  47340. image: {
  47341. source: "./media/characters/fledge/front-alt.svg",
  47342. extra: 708/664,
  47343. bottom: 13/721
  47344. }
  47345. },
  47346. back: {
  47347. height: math.unit(20, "feet"),
  47348. name: "Back",
  47349. image: {
  47350. source: "./media/characters/fledge/back.svg",
  47351. extra: 718/634,
  47352. bottom: 22/740
  47353. }
  47354. },
  47355. head: {
  47356. height: math.unit(5.55, "feet"),
  47357. name: "Head",
  47358. image: {
  47359. source: "./media/characters/fledge/head.svg"
  47360. }
  47361. },
  47362. headAlt: {
  47363. height: math.unit(5.1, "feet"),
  47364. name: "Head (Alt)",
  47365. image: {
  47366. source: "./media/characters/fledge/head-alt.svg"
  47367. }
  47368. },
  47369. },
  47370. [
  47371. {
  47372. name: "Small",
  47373. height: math.unit(6 + 2/12, "feet")
  47374. },
  47375. {
  47376. name: "Big",
  47377. height: math.unit(20, "feet"),
  47378. default: true
  47379. },
  47380. {
  47381. name: "Giant",
  47382. height: math.unit(100, "feet")
  47383. },
  47384. {
  47385. name: "Macro",
  47386. height: math.unit(200, "feet")
  47387. },
  47388. ]
  47389. ))
  47390. characterMakers.push(() => makeCharacter(
  47391. { name: "Atlas Morenai", species: ["red-panda", "atlas-moth"], tags: ["anthro"] },
  47392. {
  47393. front: {
  47394. height: math.unit(1, "meter"),
  47395. name: "Front",
  47396. image: {
  47397. source: "./media/characters/atlas-morenai/front.svg",
  47398. extra: 1275/1043,
  47399. bottom: 19/1294
  47400. }
  47401. },
  47402. back: {
  47403. height: math.unit(1, "meter"),
  47404. name: "Back",
  47405. image: {
  47406. source: "./media/characters/atlas-morenai/back.svg",
  47407. extra: 1141/1001,
  47408. bottom: 25/1166
  47409. }
  47410. },
  47411. },
  47412. [
  47413. {
  47414. name: "Normal",
  47415. height: math.unit(1, "meter"),
  47416. default: true
  47417. },
  47418. {
  47419. name: "Magic-Infused",
  47420. height: math.unit(5, "meters")
  47421. },
  47422. ]
  47423. ))
  47424. characterMakers.push(() => makeCharacter(
  47425. { name: "Cintia", species: ["fox"], tags: ["anthro"] },
  47426. {
  47427. front: {
  47428. height: math.unit(5, "meters"),
  47429. name: "Front",
  47430. image: {
  47431. source: "./media/characters/cintia/front.svg",
  47432. extra: 1312/1228,
  47433. bottom: 38/1350
  47434. }
  47435. },
  47436. back: {
  47437. height: math.unit(5, "meters"),
  47438. name: "Back",
  47439. image: {
  47440. source: "./media/characters/cintia/back.svg",
  47441. extra: 1260/1166,
  47442. bottom: 98/1358
  47443. }
  47444. },
  47445. frontDick: {
  47446. height: math.unit(5, "meters"),
  47447. name: "Front (Dick)",
  47448. image: {
  47449. source: "./media/characters/cintia/front-dick.svg",
  47450. extra: 1312/1228,
  47451. bottom: 38/1350
  47452. }
  47453. },
  47454. backDick: {
  47455. height: math.unit(5, "meters"),
  47456. name: "Back (Dick)",
  47457. image: {
  47458. source: "./media/characters/cintia/back-dick.svg",
  47459. extra: 1260/1166,
  47460. bottom: 98/1358
  47461. }
  47462. },
  47463. bust: {
  47464. height: math.unit(1.97, "meters"),
  47465. name: "Bust",
  47466. image: {
  47467. source: "./media/characters/cintia/bust.svg",
  47468. extra: 617/565,
  47469. bottom: 0/617
  47470. }
  47471. },
  47472. },
  47473. [
  47474. {
  47475. name: "Normal",
  47476. height: math.unit(5, "meters"),
  47477. default: true
  47478. },
  47479. ]
  47480. ))
  47481. characterMakers.push(() => makeCharacter(
  47482. { name: "Denora", species: ["husky"], tags: ["anthro"] },
  47483. {
  47484. side: {
  47485. height: math.unit(100, "feet"),
  47486. name: "Side",
  47487. image: {
  47488. source: "./media/characters/denora/side.svg",
  47489. extra: 875/803,
  47490. bottom: 9/884
  47491. }
  47492. },
  47493. },
  47494. [
  47495. {
  47496. name: "Standard",
  47497. height: math.unit(100, "feet"),
  47498. default: true
  47499. },
  47500. {
  47501. name: "Grand",
  47502. height: math.unit(1000, "feet")
  47503. },
  47504. {
  47505. name: "Conquering",
  47506. height: math.unit(10000, "feet")
  47507. },
  47508. ]
  47509. ))
  47510. characterMakers.push(() => makeCharacter(
  47511. { name: "Kiva", species: ["dire-wolf"], tags: ["anthro"] },
  47512. {
  47513. dressed: {
  47514. height: math.unit(8 + 5/12, "feet"),
  47515. weight: math.unit(700, "lb"),
  47516. name: "Dressed",
  47517. image: {
  47518. source: "./media/characters/kiva/dressed.svg",
  47519. extra: 1102/1055,
  47520. bottom: 60/1162
  47521. }
  47522. },
  47523. nude: {
  47524. height: math.unit(8 + 5/12, "feet"),
  47525. weight: math.unit(700, "lb"),
  47526. name: "Nude",
  47527. image: {
  47528. source: "./media/characters/kiva/nude.svg",
  47529. extra: 1102/1055,
  47530. bottom: 60/1162
  47531. }
  47532. },
  47533. },
  47534. [
  47535. {
  47536. name: "Base Height",
  47537. height: math.unit(8 + 5/12, "feet"),
  47538. default: true
  47539. },
  47540. {
  47541. name: "Macro",
  47542. height: math.unit(100, "feet")
  47543. },
  47544. {
  47545. name: "Max",
  47546. height: math.unit(3280, "feet")
  47547. },
  47548. ]
  47549. ))
  47550. characterMakers.push(() => makeCharacter(
  47551. { name: "ZTragon", species: ["dragon"], tags: ["anthro"] },
  47552. {
  47553. front: {
  47554. height: math.unit(6 + 8/12, "feet"),
  47555. weight: math.unit(250, "lb"),
  47556. name: "Front",
  47557. image: {
  47558. source: "./media/characters/ztragon/front.svg",
  47559. extra: 1825/1684,
  47560. bottom: 98/1923
  47561. }
  47562. },
  47563. },
  47564. [
  47565. {
  47566. name: "Normal",
  47567. height: math.unit(6 + 8/12, "feet"),
  47568. default: true
  47569. },
  47570. {
  47571. name: "Macro",
  47572. height: math.unit(80, "feet")
  47573. },
  47574. ]
  47575. ))
  47576. characterMakers.push(() => makeCharacter(
  47577. { name: "Yesenia", species: ["snake"], tags: ["naga"] },
  47578. {
  47579. front: {
  47580. height: math.unit(10.4, "feet"),
  47581. weight: math.unit(2, "tons"),
  47582. name: "Front",
  47583. image: {
  47584. source: "./media/characters/yesenia/front.svg",
  47585. extra: 1479/1474,
  47586. bottom: 233/1712
  47587. }
  47588. },
  47589. },
  47590. [
  47591. {
  47592. name: "Normal",
  47593. height: math.unit(10.4, "feet"),
  47594. default: true
  47595. },
  47596. ]
  47597. ))
  47598. characterMakers.push(() => makeCharacter(
  47599. { name: "Leanne Lycheborne", species: ["wolf", "dog", "werewolf"], tags: ["anthro"] },
  47600. {
  47601. normal: {
  47602. height: math.unit(6 + 1/12, "feet"),
  47603. weight: math.unit(180, "lb"),
  47604. name: "Normal",
  47605. image: {
  47606. source: "./media/characters/leanne-lycheborne/normal.svg",
  47607. extra: 1748/1660,
  47608. bottom: 98/1846
  47609. }
  47610. },
  47611. were: {
  47612. height: math.unit(12, "feet"),
  47613. weight: math.unit(1600, "lb"),
  47614. name: "Were",
  47615. image: {
  47616. source: "./media/characters/leanne-lycheborne/were.svg",
  47617. extra: 1485/1432,
  47618. bottom: 66/1551
  47619. }
  47620. },
  47621. },
  47622. [
  47623. {
  47624. name: "Normal",
  47625. height: math.unit(6 + 1/12, "feet"),
  47626. default: true
  47627. },
  47628. ]
  47629. ))
  47630. characterMakers.push(() => makeCharacter(
  47631. { name: "Kira Tyler", species: ["dragon", "cat"], tags: ["feral"] },
  47632. {
  47633. side: {
  47634. height: math.unit(13, "feet"),
  47635. name: "Side",
  47636. image: {
  47637. source: "./media/characters/kira-tyler/side.svg",
  47638. extra: 693/393,
  47639. bottom: 58/751
  47640. }
  47641. },
  47642. },
  47643. [
  47644. {
  47645. name: "Normal",
  47646. height: math.unit(13, "feet"),
  47647. default: true
  47648. },
  47649. ]
  47650. ))
  47651. characterMakers.push(() => makeCharacter(
  47652. { name: "Blaze", species: ["octopus", "avian"], tags: ["anthro"] },
  47653. {
  47654. front: {
  47655. height: math.unit(10.3, "feet"),
  47656. weight: math.unit(150, "lb"),
  47657. name: "Front",
  47658. image: {
  47659. source: "./media/characters/blaze/front.svg",
  47660. extra: 1378/1286,
  47661. bottom: 172/1550
  47662. }
  47663. },
  47664. },
  47665. [
  47666. {
  47667. name: "Normal",
  47668. height: math.unit(10.3, "feet"),
  47669. default: true
  47670. },
  47671. ]
  47672. ))
  47673. characterMakers.push(() => makeCharacter(
  47674. { name: "Anu", species: ["fennec-fox", "jackal"], tags: ["taur"] },
  47675. {
  47676. side: {
  47677. height: math.unit(2, "meters"),
  47678. weight: math.unit(400, "kg"),
  47679. name: "Side",
  47680. image: {
  47681. source: "./media/characters/anu/side.svg",
  47682. extra: 506/394,
  47683. bottom: 18/524
  47684. }
  47685. },
  47686. },
  47687. [
  47688. {
  47689. name: "Humanoid",
  47690. height: math.unit(2, "meters")
  47691. },
  47692. {
  47693. name: "Normal",
  47694. height: math.unit(5, "meters"),
  47695. default: true
  47696. },
  47697. ]
  47698. ))
  47699. characterMakers.push(() => makeCharacter(
  47700. { name: "Synx the Lynx", species: ["lynx"], tags: ["anthro"] },
  47701. {
  47702. front: {
  47703. height: math.unit(5 + 5/12, "feet"),
  47704. weight: math.unit(170, "lb"),
  47705. name: "Front",
  47706. image: {
  47707. source: "./media/characters/synx-the-lynx/front.svg",
  47708. extra: 1893/1745,
  47709. bottom: 17/1910
  47710. }
  47711. },
  47712. side: {
  47713. height: math.unit(5 + 5/12, "feet"),
  47714. weight: math.unit(170, "lb"),
  47715. name: "Side",
  47716. image: {
  47717. source: "./media/characters/synx-the-lynx/side.svg",
  47718. extra: 1884/1740,
  47719. bottom: 39/1923
  47720. }
  47721. },
  47722. back: {
  47723. height: math.unit(5 + 5/12, "feet"),
  47724. weight: math.unit(170, "lb"),
  47725. name: "Back",
  47726. image: {
  47727. source: "./media/characters/synx-the-lynx/back.svg",
  47728. extra: 1903/1755,
  47729. bottom: 14/1917
  47730. }
  47731. },
  47732. },
  47733. [
  47734. {
  47735. name: "Normal",
  47736. height: math.unit(5 + 5/12, "feet"),
  47737. default: true
  47738. },
  47739. ]
  47740. ))
  47741. characterMakers.push(() => makeCharacter(
  47742. { name: "Nadezda Fex", species: ["fox"], tags: ["anthro"] },
  47743. {
  47744. back: {
  47745. height: math.unit(15, "feet"),
  47746. name: "Back",
  47747. image: {
  47748. source: "./media/characters/nadezda-fex/back.svg",
  47749. extra: 1695/1481,
  47750. bottom: 25/1720
  47751. }
  47752. },
  47753. },
  47754. [
  47755. {
  47756. name: "Normal",
  47757. height: math.unit(15, "feet"),
  47758. default: true
  47759. },
  47760. {
  47761. name: "Macro",
  47762. height: math.unit(2.5, "miles")
  47763. },
  47764. {
  47765. name: "Goddess",
  47766. height: math.unit(2, "multiverses")
  47767. },
  47768. ]
  47769. ))
  47770. characterMakers.push(() => makeCharacter(
  47771. { name: "Lev", species: ["snake"], tags: ["anthro"] },
  47772. {
  47773. front: {
  47774. height: math.unit(216, "cm"),
  47775. name: "Front",
  47776. image: {
  47777. source: "./media/characters/lev/front.svg",
  47778. extra: 1728/1670,
  47779. bottom: 82/1810
  47780. }
  47781. },
  47782. back: {
  47783. height: math.unit(216, "cm"),
  47784. name: "Back",
  47785. image: {
  47786. source: "./media/characters/lev/back.svg",
  47787. extra: 1738/1675,
  47788. bottom: 24/1762
  47789. }
  47790. },
  47791. dressed: {
  47792. height: math.unit(216, "cm"),
  47793. name: "Dressed",
  47794. image: {
  47795. source: "./media/characters/lev/dressed.svg",
  47796. extra: 1397/1351,
  47797. bottom: 73/1470
  47798. }
  47799. },
  47800. head: {
  47801. height: math.unit(0.51, "meter"),
  47802. name: "Head",
  47803. image: {
  47804. source: "./media/characters/lev/head.svg"
  47805. }
  47806. },
  47807. },
  47808. [
  47809. {
  47810. name: "Normal",
  47811. height: math.unit(216, "cm"),
  47812. default: true
  47813. },
  47814. {
  47815. name: "Relatively Macro",
  47816. height: math.unit(80, "meters")
  47817. },
  47818. {
  47819. name: "Megamacro",
  47820. height: math.unit(21600, "meters")
  47821. },
  47822. {
  47823. name: "Megamacro+",
  47824. height: math.unit(64800, "meters")
  47825. },
  47826. ]
  47827. ))
  47828. characterMakers.push(() => makeCharacter(
  47829. { name: "Moka", species: ["dragon"], tags: ["anthro"] },
  47830. {
  47831. front: {
  47832. height: math.unit(2, "meters"),
  47833. weight: math.unit(80, "kg"),
  47834. name: "Front",
  47835. image: {
  47836. source: "./media/characters/moka/front.svg",
  47837. extra: 1337/1255,
  47838. bottom: 58/1395
  47839. }
  47840. },
  47841. },
  47842. [
  47843. {
  47844. name: "Micro",
  47845. height: math.unit(15, "cm")
  47846. },
  47847. {
  47848. name: "Normal",
  47849. height: math.unit(2, "meters"),
  47850. default: true
  47851. },
  47852. {
  47853. name: "Macro",
  47854. height: math.unit(20, "meters"),
  47855. },
  47856. ]
  47857. ))
  47858. characterMakers.push(() => makeCharacter(
  47859. { name: "Kuzco", species: ["snake"], tags: ["anthro"] },
  47860. {
  47861. front: {
  47862. height: math.unit(9, "feet"),
  47863. weight: math.unit(240, "lb"),
  47864. name: "Front",
  47865. image: {
  47866. source: "./media/characters/kuzco/front.svg",
  47867. extra: 1593/1487,
  47868. bottom: 32/1625
  47869. }
  47870. },
  47871. side: {
  47872. height: math.unit(9, "feet"),
  47873. weight: math.unit(240, "lb"),
  47874. name: "Side",
  47875. image: {
  47876. source: "./media/characters/kuzco/side.svg",
  47877. extra: 1575/1485,
  47878. bottom: 30/1605
  47879. }
  47880. },
  47881. back: {
  47882. height: math.unit(9, "feet"),
  47883. weight: math.unit(240, "lb"),
  47884. name: "Back",
  47885. image: {
  47886. source: "./media/characters/kuzco/back.svg",
  47887. extra: 1603/1514,
  47888. bottom: 14/1617
  47889. }
  47890. },
  47891. },
  47892. [
  47893. {
  47894. name: "Normal",
  47895. height: math.unit(9, "feet"),
  47896. default: true
  47897. },
  47898. ]
  47899. ))
  47900. characterMakers.push(() => makeCharacter(
  47901. { name: "Ceruleus", species: ["fox", "dragon"], tags: ["feral"] },
  47902. {
  47903. side: {
  47904. height: math.unit(2, "meters"),
  47905. weight: math.unit(300, "kg"),
  47906. name: "Side",
  47907. image: {
  47908. source: "./media/characters/ceruleus/side.svg",
  47909. extra: 1068/974,
  47910. bottom: 126/1194
  47911. }
  47912. },
  47913. maw: {
  47914. height: math.unit(0.8125, "meter"),
  47915. name: "Maw",
  47916. image: {
  47917. source: "./media/characters/ceruleus/maw.svg"
  47918. }
  47919. },
  47920. },
  47921. [
  47922. {
  47923. name: "Normal",
  47924. height: math.unit(16, "meters"),
  47925. default: true
  47926. },
  47927. ]
  47928. ))
  47929. characterMakers.push(() => makeCharacter(
  47930. { name: "Acouya", species: ["kangaroo"], tags: ["anthro"] },
  47931. {
  47932. front: {
  47933. height: math.unit(9, "feet"),
  47934. weight: math.unit(500, "kg"),
  47935. name: "Front",
  47936. image: {
  47937. source: "./media/characters/acouya/front.svg",
  47938. extra: 1660/1473,
  47939. bottom: 28/1688
  47940. }
  47941. },
  47942. },
  47943. [
  47944. {
  47945. name: "Normal",
  47946. height: math.unit(9, "feet"),
  47947. default: true
  47948. },
  47949. ]
  47950. ))
  47951. characterMakers.push(() => makeCharacter(
  47952. { name: "Vant", species: ["husky"], tags: ["anthro"] },
  47953. {
  47954. front: {
  47955. height: math.unit(5 + 6/12, "feet"),
  47956. weight: math.unit(195, "lb"),
  47957. name: "Front",
  47958. image: {
  47959. source: "./media/characters/vant/front.svg",
  47960. extra: 1396/1320,
  47961. bottom: 20/1416
  47962. }
  47963. },
  47964. back: {
  47965. height: math.unit(5 + 6/12, "feet"),
  47966. weight: math.unit(195, "lb"),
  47967. name: "Back",
  47968. image: {
  47969. source: "./media/characters/vant/back.svg",
  47970. extra: 1396/1320,
  47971. bottom: 20/1416
  47972. }
  47973. },
  47974. maw: {
  47975. height: math.unit(0.75, "feet"),
  47976. name: "Maw",
  47977. image: {
  47978. source: "./media/characters/vant/maw.svg"
  47979. }
  47980. },
  47981. paw: {
  47982. height: math.unit(1.07, "feet"),
  47983. name: "Paw",
  47984. image: {
  47985. source: "./media/characters/vant/paw.svg"
  47986. }
  47987. },
  47988. },
  47989. [
  47990. {
  47991. name: "Micro",
  47992. height: math.unit(0.25, "inches")
  47993. },
  47994. {
  47995. name: "Normal",
  47996. height: math.unit(5 + 6/12, "feet"),
  47997. default: true
  47998. },
  47999. {
  48000. name: "Macro",
  48001. height: math.unit(75, "feet")
  48002. },
  48003. ]
  48004. ))
  48005. characterMakers.push(() => makeCharacter(
  48006. { name: "Ahra", species: ["fox"], tags: ["anthro"] },
  48007. {
  48008. front: {
  48009. height: math.unit(30, "meters"),
  48010. weight: math.unit(363, "tons"),
  48011. name: "Front",
  48012. image: {
  48013. source: "./media/characters/ahra/front.svg",
  48014. extra: 1914/1814,
  48015. bottom: 46/1960
  48016. }
  48017. },
  48018. },
  48019. [
  48020. {
  48021. name: "Macro",
  48022. height: math.unit(30, "meters"),
  48023. default: true
  48024. },
  48025. ]
  48026. ))
  48027. characterMakers.push(() => makeCharacter(
  48028. { name: "Coriander", species: ["owlbear"], tags: ["anthro"] },
  48029. {
  48030. undressed: {
  48031. height: math.unit(2, "m"),
  48032. weight: math.unit(250, "kg"),
  48033. name: "Undressed",
  48034. image: {
  48035. source: "./media/characters/coriander/undressed.svg",
  48036. extra: 1757/1606,
  48037. bottom: 107/1864
  48038. }
  48039. },
  48040. dressed: {
  48041. height: math.unit(2, "m"),
  48042. weight: math.unit(250, "kg"),
  48043. name: "Dressed",
  48044. image: {
  48045. source: "./media/characters/coriander/dressed.svg",
  48046. extra: 1757/1606,
  48047. bottom: 107/1864
  48048. }
  48049. },
  48050. },
  48051. [
  48052. {
  48053. name: "Normal",
  48054. height: math.unit(4, "meters"),
  48055. default: true
  48056. },
  48057. {
  48058. name: "XL",
  48059. height: math.unit(6, "meters")
  48060. },
  48061. {
  48062. name: "XXL",
  48063. height: math.unit(8, "meters")
  48064. },
  48065. ]
  48066. ))
  48067. characterMakers.push(() => makeCharacter(
  48068. { name: "Syrinx", species: ["phoenix"], tags: ["anthro"] },
  48069. {
  48070. front: {
  48071. height: math.unit(6, "feet"),
  48072. name: "Front",
  48073. image: {
  48074. source: "./media/characters/syrinx/front.svg",
  48075. extra: 1557/1259,
  48076. bottom: 171/1728
  48077. }
  48078. },
  48079. },
  48080. [
  48081. {
  48082. name: "Normal",
  48083. height: math.unit(6 + 3/12, "feet"),
  48084. default: true
  48085. },
  48086. ]
  48087. ))
  48088. characterMakers.push(() => makeCharacter(
  48089. { name: "Bor", species: ["silvertongue"], tags: ["anthro"] },
  48090. {
  48091. front: {
  48092. height: math.unit(11 + 6/12, "feet"),
  48093. weight: math.unit(1.5, "tons"),
  48094. name: "Front",
  48095. image: {
  48096. source: "./media/characters/bor/front.svg",
  48097. extra: 1189/1109,
  48098. bottom: 170/1359
  48099. }
  48100. },
  48101. },
  48102. [
  48103. {
  48104. name: "Normal",
  48105. height: math.unit(11 + 6/12, "feet"),
  48106. default: true
  48107. },
  48108. {
  48109. name: "Macro",
  48110. height: math.unit(32 + 9/12, "feet")
  48111. },
  48112. ]
  48113. ))
  48114. characterMakers.push(() => makeCharacter(
  48115. { name: "Abacus", species: ["construct", "corvid"], tags: ["anthro", "feral"] },
  48116. {
  48117. anthro: {
  48118. height: math.unit(9, "feet"),
  48119. weight: math.unit(2076, "lb"),
  48120. name: "Anthro",
  48121. image: {
  48122. source: "./media/characters/abacus/anthro.svg",
  48123. extra: 1540/1494,
  48124. bottom: 233/1773
  48125. }
  48126. },
  48127. pigeon: {
  48128. height: math.unit(1, "feet"),
  48129. name: "Pigeon",
  48130. image: {
  48131. source: "./media/characters/abacus/pigeon.svg",
  48132. extra: 528/525,
  48133. bottom: 46/574
  48134. }
  48135. },
  48136. },
  48137. [
  48138. {
  48139. name: "Normal",
  48140. height: math.unit(9, "feet"),
  48141. default: true
  48142. },
  48143. ]
  48144. ))
  48145. characterMakers.push(() => makeCharacter(
  48146. { name: "Delkhan", species: ["t-rex"], tags: ["feral"] },
  48147. {
  48148. side: {
  48149. height: math.unit(6, "feet"),
  48150. name: "Side",
  48151. image: {
  48152. source: "./media/characters/delkhan/side.svg",
  48153. extra: 1884/1786,
  48154. bottom: 308/2192
  48155. }
  48156. },
  48157. head: {
  48158. height: math.unit(3.38, "feet"),
  48159. name: "Head",
  48160. image: {
  48161. source: "./media/characters/delkhan/head.svg"
  48162. }
  48163. },
  48164. },
  48165. [
  48166. {
  48167. name: "Normal",
  48168. height: math.unit(72, "feet"),
  48169. default: true
  48170. },
  48171. {
  48172. name: "Giant",
  48173. height: math.unit(172, "feet")
  48174. },
  48175. ]
  48176. ))
  48177. characterMakers.push(() => makeCharacter(
  48178. { name: "Euchidat", species: ["opossum"], tags: ["anthro"] },
  48179. {
  48180. standing: {
  48181. height: math.unit(6, "feet"),
  48182. name: "Standing",
  48183. image: {
  48184. source: "./media/characters/euchidat/standing.svg",
  48185. extra: 1612/1553,
  48186. bottom: 116/1728
  48187. }
  48188. },
  48189. leaning: {
  48190. height: math.unit(6, "feet"),
  48191. name: "Leaning",
  48192. image: {
  48193. source: "./media/characters/euchidat/leaning.svg",
  48194. extra: 1719/1674,
  48195. bottom: 27/1746
  48196. }
  48197. },
  48198. },
  48199. [
  48200. {
  48201. name: "Normal",
  48202. height: math.unit(175, "feet"),
  48203. default: true
  48204. },
  48205. {
  48206. name: "Megamacro",
  48207. height: math.unit(190, "miles")
  48208. },
  48209. {
  48210. name: "Gigamacro",
  48211. height: math.unit(190000, "miles")
  48212. },
  48213. ]
  48214. ))
  48215. characterMakers.push(() => makeCharacter(
  48216. { name: "Rebecca Stack", species: ["human"], tags: ["anthro"] },
  48217. {
  48218. front: {
  48219. height: math.unit(6, "feet"),
  48220. weight: math.unit(150, "lb"),
  48221. name: "Front",
  48222. image: {
  48223. source: "./media/characters/rebecca-stack/front.svg",
  48224. extra: 1256/1201,
  48225. bottom: 18/1274
  48226. }
  48227. },
  48228. },
  48229. [
  48230. {
  48231. name: "Normal",
  48232. height: math.unit(5 + 8/12, "feet"),
  48233. default: true
  48234. },
  48235. {
  48236. name: "Demolitionist",
  48237. height: math.unit(200, "feet")
  48238. },
  48239. {
  48240. name: "Out of Control",
  48241. height: math.unit(2, "miles")
  48242. },
  48243. {
  48244. name: "Giga",
  48245. height: math.unit(7200, "miles")
  48246. },
  48247. ]
  48248. ))
  48249. characterMakers.push(() => makeCharacter(
  48250. { name: "Jenny Cartwright", species: ["human"], tags: ["anthro"] },
  48251. {
  48252. front: {
  48253. height: math.unit(6, "feet"),
  48254. weight: math.unit(150, "lb"),
  48255. name: "Front",
  48256. image: {
  48257. source: "./media/characters/jenny-cartwright/front.svg",
  48258. extra: 1384/1376,
  48259. bottom: 58/1442
  48260. }
  48261. },
  48262. },
  48263. [
  48264. {
  48265. name: "Normal",
  48266. height: math.unit(6 + 7/12, "feet"),
  48267. default: true
  48268. },
  48269. {
  48270. name: "Librarian",
  48271. height: math.unit(55, "feet")
  48272. },
  48273. {
  48274. name: "Sightseer",
  48275. height: math.unit(50, "miles")
  48276. },
  48277. {
  48278. name: "Giga",
  48279. height: math.unit(30000, "miles")
  48280. },
  48281. ]
  48282. ))
  48283. characterMakers.push(() => makeCharacter(
  48284. { name: "Marvy", species: ["sergal"], tags: ["anthro"] },
  48285. {
  48286. nude: {
  48287. height: math.unit(8, "feet"),
  48288. weight: math.unit(225, "lb"),
  48289. name: "Nude",
  48290. image: {
  48291. source: "./media/characters/marvy/nude.svg",
  48292. extra: 1900/1683,
  48293. bottom: 89/1989
  48294. }
  48295. },
  48296. dressed: {
  48297. height: math.unit(8, "feet"),
  48298. weight: math.unit(225, "lb"),
  48299. name: "Dressed",
  48300. image: {
  48301. source: "./media/characters/marvy/dressed.svg",
  48302. extra: 1900/1683,
  48303. bottom: 89/1989
  48304. }
  48305. },
  48306. head: {
  48307. height: math.unit(2.85, "feet"),
  48308. name: "Head",
  48309. image: {
  48310. source: "./media/characters/marvy/head.svg"
  48311. }
  48312. },
  48313. },
  48314. [
  48315. {
  48316. name: "Normal",
  48317. height: math.unit(8, "feet"),
  48318. default: true
  48319. },
  48320. ]
  48321. ))
  48322. characterMakers.push(() => makeCharacter(
  48323. { name: "Leah", species: ["maned-wolf"], tags: ["anthro"] },
  48324. {
  48325. front: {
  48326. height: math.unit(8, "feet"),
  48327. weight: math.unit(250, "lb"),
  48328. name: "Front",
  48329. image: {
  48330. source: "./media/characters/leah/front.svg",
  48331. extra: 1257/1149,
  48332. bottom: 109/1366
  48333. }
  48334. },
  48335. },
  48336. [
  48337. {
  48338. name: "Normal",
  48339. height: math.unit(8, "feet"),
  48340. default: true
  48341. },
  48342. {
  48343. name: "Minimacro",
  48344. height: math.unit(40, "feet")
  48345. },
  48346. {
  48347. name: "Macro",
  48348. height: math.unit(124, "feet")
  48349. },
  48350. {
  48351. name: "Megamacro",
  48352. height: math.unit(850, "feet")
  48353. },
  48354. ]
  48355. ))
  48356. characterMakers.push(() => makeCharacter(
  48357. { name: "Alvir", species: ["ahuizotl"], tags: ["feral"] },
  48358. {
  48359. side: {
  48360. height: math.unit(13 + 6/12, "feet"),
  48361. weight: math.unit(3200, "lb"),
  48362. name: "Side",
  48363. image: {
  48364. source: "./media/characters/alvir/side.svg",
  48365. extra: 896/589,
  48366. bottom: 26/922
  48367. }
  48368. },
  48369. },
  48370. [
  48371. {
  48372. name: "Normal",
  48373. height: math.unit(13 + 6/12, "feet"),
  48374. default: true
  48375. },
  48376. ]
  48377. ))
  48378. characterMakers.push(() => makeCharacter(
  48379. { name: "Zaina Khalil", species: ["human"], tags: ["anthro"] },
  48380. {
  48381. front: {
  48382. height: math.unit(5 + 4/12, "feet"),
  48383. weight: math.unit(236, "lb"),
  48384. name: "Front",
  48385. image: {
  48386. source: "./media/characters/zaina-khalil/front.svg",
  48387. extra: 1533/1485,
  48388. bottom: 94/1627
  48389. }
  48390. },
  48391. side: {
  48392. height: math.unit(5 + 4/12, "feet"),
  48393. weight: math.unit(236, "lb"),
  48394. name: "Side",
  48395. image: {
  48396. source: "./media/characters/zaina-khalil/side.svg",
  48397. extra: 1537/1498,
  48398. bottom: 66/1603
  48399. }
  48400. },
  48401. back: {
  48402. height: math.unit(5 + 4/12, "feet"),
  48403. weight: math.unit(236, "lb"),
  48404. name: "Back",
  48405. image: {
  48406. source: "./media/characters/zaina-khalil/back.svg",
  48407. extra: 1546/1494,
  48408. bottom: 89/1635
  48409. }
  48410. },
  48411. },
  48412. [
  48413. {
  48414. name: "Normal",
  48415. height: math.unit(5 + 4/12, "feet"),
  48416. default: true
  48417. },
  48418. ]
  48419. ))
  48420. characterMakers.push(() => makeCharacter(
  48421. { name: "Terry", species: ["husky"], tags: ["taur"] },
  48422. {
  48423. side: {
  48424. height: math.unit(12, "feet"),
  48425. weight: math.unit(4000, "lb"),
  48426. name: "Side",
  48427. image: {
  48428. source: "./media/characters/terry/side.svg",
  48429. extra: 1518/1439,
  48430. bottom: 149/1667
  48431. }
  48432. },
  48433. },
  48434. [
  48435. {
  48436. name: "Normal",
  48437. height: math.unit(12, "feet"),
  48438. default: true
  48439. },
  48440. ]
  48441. ))
  48442. characterMakers.push(() => makeCharacter(
  48443. { name: "Kahea", species: ["werewolf"], tags: ["anthro"] },
  48444. {
  48445. front: {
  48446. height: math.unit(12, "feet"),
  48447. weight: math.unit(1500, "lb"),
  48448. name: "Front",
  48449. image: {
  48450. source: "./media/characters/kahea/front.svg",
  48451. extra: 1722/1617,
  48452. bottom: 179/1901
  48453. }
  48454. },
  48455. },
  48456. [
  48457. {
  48458. name: "Normal",
  48459. height: math.unit(12, "feet"),
  48460. default: true
  48461. },
  48462. ]
  48463. ))
  48464. characterMakers.push(() => makeCharacter(
  48465. { name: "Alex Xuria", species: ["demon", "rabbit"], tags: ["anthro"] },
  48466. {
  48467. demonFront: {
  48468. height: math.unit(36, "feet"),
  48469. name: "Front",
  48470. image: {
  48471. source: "./media/characters/alex-xuria/demon-front.svg",
  48472. extra: 1705/1673,
  48473. bottom: 198/1903
  48474. },
  48475. form: "demon",
  48476. default: true
  48477. },
  48478. demonBack: {
  48479. height: math.unit(36, "feet"),
  48480. name: "Back",
  48481. image: {
  48482. source: "./media/characters/alex-xuria/demon-back.svg",
  48483. extra: 1725/1693,
  48484. bottom: 70/1795
  48485. },
  48486. form: "demon"
  48487. },
  48488. demonHead: {
  48489. height: math.unit(2.14, "meters"),
  48490. name: "Head",
  48491. image: {
  48492. source: "./media/characters/alex-xuria/demon-head.svg"
  48493. },
  48494. form: "demon"
  48495. },
  48496. demonHand: {
  48497. height: math.unit(1.61, "meters"),
  48498. name: "Hand",
  48499. image: {
  48500. source: "./media/characters/alex-xuria/demon-hand.svg"
  48501. },
  48502. form: "demon"
  48503. },
  48504. demonPaw: {
  48505. height: math.unit(1.35, "meters"),
  48506. name: "Paw",
  48507. image: {
  48508. source: "./media/characters/alex-xuria/demon-paw.svg"
  48509. },
  48510. form: "demon"
  48511. },
  48512. demonFoot: {
  48513. height: math.unit(2.2, "meters"),
  48514. name: "Foot",
  48515. image: {
  48516. source: "./media/characters/alex-xuria/demon-foot.svg"
  48517. },
  48518. form: "demon"
  48519. },
  48520. demonCock: {
  48521. height: math.unit(1.74, "meters"),
  48522. name: "Cock",
  48523. image: {
  48524. source: "./media/characters/alex-xuria/demon-cock.svg"
  48525. },
  48526. form: "demon"
  48527. },
  48528. demonTailClosed: {
  48529. height: math.unit(1.47, "meters"),
  48530. name: "Tail (Closed)",
  48531. image: {
  48532. source: "./media/characters/alex-xuria/demon-tail-closed.svg"
  48533. },
  48534. form: "demon"
  48535. },
  48536. demonTailOpen: {
  48537. height: math.unit(2.85, "meters"),
  48538. name: "Tail (Open)",
  48539. image: {
  48540. source: "./media/characters/alex-xuria/demon-tail-open.svg"
  48541. },
  48542. form: "demon"
  48543. },
  48544. incubusFront: {
  48545. height: math.unit(12, "feet"),
  48546. name: "Front",
  48547. image: {
  48548. source: "./media/characters/alex-xuria/incubus-front.svg",
  48549. extra: 1754/1677,
  48550. bottom: 125/1879
  48551. },
  48552. form: "incubus",
  48553. default: true
  48554. },
  48555. incubusBack: {
  48556. height: math.unit(12, "feet"),
  48557. name: "Back",
  48558. image: {
  48559. source: "./media/characters/alex-xuria/incubus-back.svg",
  48560. extra: 1702/1647,
  48561. bottom: 30/1732
  48562. },
  48563. form: "incubus"
  48564. },
  48565. incubusHead: {
  48566. height: math.unit(3.45, "feet"),
  48567. name: "Head",
  48568. image: {
  48569. source: "./media/characters/alex-xuria/incubus-head.svg"
  48570. },
  48571. form: "incubus"
  48572. },
  48573. rabbitFront: {
  48574. height: math.unit(6, "feet"),
  48575. name: "Front",
  48576. image: {
  48577. source: "./media/characters/alex-xuria/rabbit-front.svg",
  48578. extra: 1369/1349,
  48579. bottom: 45/1414
  48580. },
  48581. form: "rabbit",
  48582. default: true
  48583. },
  48584. rabbitSide: {
  48585. height: math.unit(6, "feet"),
  48586. name: "Side",
  48587. image: {
  48588. source: "./media/characters/alex-xuria/rabbit-side.svg",
  48589. extra: 1370/1356,
  48590. bottom: 37/1407
  48591. },
  48592. form: "rabbit"
  48593. },
  48594. rabbitBack: {
  48595. height: math.unit(6, "feet"),
  48596. name: "Back",
  48597. image: {
  48598. source: "./media/characters/alex-xuria/rabbit-back.svg",
  48599. extra: 1375/1358,
  48600. bottom: 43/1418
  48601. },
  48602. form: "rabbit"
  48603. },
  48604. },
  48605. [
  48606. {
  48607. name: "Normal",
  48608. height: math.unit(6, "feet"),
  48609. default: true,
  48610. form: "rabbit"
  48611. },
  48612. {
  48613. name: "Incubus",
  48614. height: math.unit(12, "feet"),
  48615. default: true,
  48616. form: "incubus"
  48617. },
  48618. {
  48619. name: "Demon",
  48620. height: math.unit(36, "feet"),
  48621. default: true,
  48622. form: "demon"
  48623. }
  48624. ],
  48625. {
  48626. "demon": {
  48627. name: "Demon",
  48628. default: true
  48629. },
  48630. "incubus": {
  48631. name: "Incubus",
  48632. },
  48633. "rabbit": {
  48634. name: "Rabbit"
  48635. }
  48636. }
  48637. ))
  48638. characterMakers.push(() => makeCharacter(
  48639. { name: "Syrup", species: ["rabbit"], tags: ["anthro"] },
  48640. {
  48641. front: {
  48642. height: math.unit(7 + 5/12, "feet"),
  48643. weight: math.unit(510, "lb"),
  48644. name: "Front",
  48645. image: {
  48646. source: "./media/characters/syrup/front.svg",
  48647. extra: 932/916,
  48648. bottom: 26/958
  48649. }
  48650. },
  48651. },
  48652. [
  48653. {
  48654. name: "Normal",
  48655. height: math.unit(7 + 5/12, "feet"),
  48656. default: true
  48657. },
  48658. {
  48659. name: "Big",
  48660. height: math.unit(50, "feet")
  48661. },
  48662. {
  48663. name: "Macro",
  48664. height: math.unit(300, "feet")
  48665. },
  48666. {
  48667. name: "Megamacro",
  48668. height: math.unit(1, "mile")
  48669. },
  48670. ]
  48671. ))
  48672. characterMakers.push(() => makeCharacter(
  48673. { name: "Zeimne", species: ["kitsune", "demon", "deity"], tags: ["anthro"] },
  48674. {
  48675. front: {
  48676. height: math.unit(6 + 9/12, "feet"),
  48677. name: "Front",
  48678. image: {
  48679. source: "./media/characters/zeimne/front.svg",
  48680. extra: 1969/1806,
  48681. bottom: 53/2022
  48682. }
  48683. },
  48684. },
  48685. [
  48686. {
  48687. name: "Normal",
  48688. height: math.unit(6 + 9/12, "feet"),
  48689. default: true
  48690. },
  48691. {
  48692. name: "Giant",
  48693. height: math.unit(550, "feet")
  48694. },
  48695. {
  48696. name: "Mega",
  48697. height: math.unit(3, "miles")
  48698. },
  48699. {
  48700. name: "Giga",
  48701. height: math.unit(250, "miles")
  48702. },
  48703. {
  48704. name: "Tera",
  48705. height: math.unit(1, "AU")
  48706. },
  48707. ]
  48708. ))
  48709. characterMakers.push(() => makeCharacter(
  48710. { name: "Grar", species: ["jackalope"], tags: ["anthro"] },
  48711. {
  48712. front: {
  48713. height: math.unit(5 + 2/12, "feet"),
  48714. name: "Front",
  48715. image: {
  48716. source: "./media/characters/grar/front.svg",
  48717. extra: 1331/1119,
  48718. bottom: 60/1391
  48719. }
  48720. },
  48721. back: {
  48722. height: math.unit(5 + 2/12, "feet"),
  48723. name: "Back",
  48724. image: {
  48725. source: "./media/characters/grar/back.svg",
  48726. extra: 1385/1169,
  48727. bottom: 23/1408
  48728. }
  48729. },
  48730. },
  48731. [
  48732. {
  48733. name: "Normal",
  48734. height: math.unit(5 + 2/12, "feet"),
  48735. default: true
  48736. },
  48737. ]
  48738. ))
  48739. characterMakers.push(() => makeCharacter(
  48740. { name: "Endraya", species: ["ender-dragon"], tags: ["anthro"] },
  48741. {
  48742. front: {
  48743. height: math.unit(13 + 7/12, "feet"),
  48744. weight: math.unit(2200, "lb"),
  48745. name: "Front",
  48746. image: {
  48747. source: "./media/characters/endraya/front.svg",
  48748. extra: 1289/1215,
  48749. bottom: 50/1339
  48750. }
  48751. },
  48752. nude: {
  48753. height: math.unit(13 + 7/12, "feet"),
  48754. weight: math.unit(2200, "lb"),
  48755. name: "Nude",
  48756. image: {
  48757. source: "./media/characters/endraya/nude.svg",
  48758. extra: 1247/1171,
  48759. bottom: 40/1287
  48760. }
  48761. },
  48762. head: {
  48763. height: math.unit(2.6, "feet"),
  48764. name: "Head",
  48765. image: {
  48766. source: "./media/characters/endraya/head.svg"
  48767. }
  48768. },
  48769. slit: {
  48770. height: math.unit(3.4, "feet"),
  48771. name: "Slit",
  48772. image: {
  48773. source: "./media/characters/endraya/slit.svg"
  48774. }
  48775. },
  48776. },
  48777. [
  48778. {
  48779. name: "Normal",
  48780. height: math.unit(13 + 7/12, "feet"),
  48781. default: true
  48782. },
  48783. {
  48784. name: "Macro",
  48785. height: math.unit(200, "feet")
  48786. },
  48787. ]
  48788. ))
  48789. characterMakers.push(() => makeCharacter(
  48790. { name: "Rodryana", species: ["hyena"], tags: ["anthro"] },
  48791. {
  48792. front: {
  48793. height: math.unit(1.81, "meters"),
  48794. weight: math.unit(69, "kg"),
  48795. name: "Front",
  48796. image: {
  48797. source: "./media/characters/rodryana/front.svg",
  48798. extra: 2002/1921,
  48799. bottom: 53/2055
  48800. }
  48801. },
  48802. back: {
  48803. height: math.unit(1.81, "meters"),
  48804. weight: math.unit(69, "kg"),
  48805. name: "Back",
  48806. image: {
  48807. source: "./media/characters/rodryana/back.svg",
  48808. extra: 1993/1926,
  48809. bottom: 48/2041
  48810. }
  48811. },
  48812. maw: {
  48813. height: math.unit(0.19769417475, "meters"),
  48814. name: "Maw",
  48815. image: {
  48816. source: "./media/characters/rodryana/maw.svg"
  48817. }
  48818. },
  48819. slit: {
  48820. height: math.unit(0.31631067961, "meters"),
  48821. name: "Slit",
  48822. image: {
  48823. source: "./media/characters/rodryana/slit.svg"
  48824. }
  48825. },
  48826. },
  48827. [
  48828. {
  48829. name: "Normal",
  48830. height: math.unit(1.81, "meters")
  48831. },
  48832. {
  48833. name: "Mini Macro",
  48834. height: math.unit(181, "meters")
  48835. },
  48836. {
  48837. name: "Macro",
  48838. height: math.unit(452, "meters"),
  48839. default: true
  48840. },
  48841. {
  48842. name: "Mega Macro",
  48843. height: math.unit(1.375, "km")
  48844. },
  48845. {
  48846. name: "Giga Macro",
  48847. height: math.unit(13.575, "km")
  48848. },
  48849. ]
  48850. ))
  48851. characterMakers.push(() => makeCharacter(
  48852. { name: "Asaya", species: ["human", "deity"], tags: ["anthro"] },
  48853. {
  48854. front: {
  48855. height: math.unit(6, "feet"),
  48856. weight: math.unit(1000, "lb"),
  48857. name: "Front",
  48858. image: {
  48859. source: "./media/characters/asaya/front.svg",
  48860. extra: 1460/1200,
  48861. bottom: 71/1531
  48862. }
  48863. },
  48864. },
  48865. [
  48866. {
  48867. name: "Normal",
  48868. height: math.unit(8, "km"),
  48869. default: true
  48870. },
  48871. ]
  48872. ))
  48873. characterMakers.push(() => makeCharacter(
  48874. { name: "Sarzu and Israz", species: ["naga"], tags: ["naga"] },
  48875. {
  48876. front: {
  48877. height: math.unit(3.5, "meters"),
  48878. name: "Front",
  48879. image: {
  48880. source: "./media/characters/sarzu-and-israz/front.svg",
  48881. extra: 1570/1558,
  48882. bottom: 150/1720
  48883. },
  48884. },
  48885. back: {
  48886. height: math.unit(3.5, "meters"),
  48887. name: "Back",
  48888. image: {
  48889. source: "./media/characters/sarzu-and-israz/back.svg",
  48890. extra: 1523/1509,
  48891. bottom: 132/1655
  48892. },
  48893. },
  48894. frontFemale: {
  48895. height: math.unit(3.5, "meters"),
  48896. name: "Front (Female)",
  48897. image: {
  48898. source: "./media/characters/sarzu-and-israz/front-female.svg",
  48899. extra: 1570/1558,
  48900. bottom: 150/1720
  48901. },
  48902. },
  48903. frontHerm: {
  48904. height: math.unit(3.5, "meters"),
  48905. name: "Front (Herm)",
  48906. image: {
  48907. source: "./media/characters/sarzu-and-israz/front-herm.svg",
  48908. extra: 1570/1558,
  48909. bottom: 150/1720
  48910. },
  48911. },
  48912. },
  48913. [
  48914. {
  48915. name: "Normal",
  48916. height: math.unit(3.5, "meters"),
  48917. default: true,
  48918. },
  48919. {
  48920. name: "Macro",
  48921. height: math.unit(65.5, "meters"),
  48922. },
  48923. ],
  48924. ))
  48925. characterMakers.push(() => makeCharacter(
  48926. { name: "Zenimma", species: ["bruhathkayosaurus"], tags: ["anthro"] },
  48927. {
  48928. front: {
  48929. height: math.unit(6, "feet"),
  48930. weight: math.unit(250, "lb"),
  48931. name: "Front",
  48932. image: {
  48933. source: "./media/characters/zenimma/front.svg",
  48934. extra: 1346/1320,
  48935. bottom: 58/1404
  48936. }
  48937. },
  48938. back: {
  48939. height: math.unit(6, "feet"),
  48940. weight: math.unit(250, "lb"),
  48941. name: "Back",
  48942. image: {
  48943. source: "./media/characters/zenimma/back.svg",
  48944. extra: 1324/1308,
  48945. bottom: 44/1368
  48946. }
  48947. },
  48948. dick: {
  48949. height: math.unit(1.44, "feet"),
  48950. name: "Dick",
  48951. image: {
  48952. source: "./media/characters/zenimma/dick.svg"
  48953. }
  48954. },
  48955. },
  48956. [
  48957. {
  48958. name: "Canon Height",
  48959. height: math.unit(66, "miles"),
  48960. default: true
  48961. },
  48962. ]
  48963. ))
  48964. characterMakers.push(() => makeCharacter(
  48965. { name: "Shavon", species: ["black-sable-antelope"], tags: ["anthro"] },
  48966. {
  48967. nude: {
  48968. height: math.unit(6, "feet"),
  48969. weight: math.unit(150, "lb"),
  48970. name: "Nude",
  48971. image: {
  48972. source: "./media/characters/shavon/nude.svg",
  48973. extra: 1242/1096,
  48974. bottom: 98/1340
  48975. }
  48976. },
  48977. dressed: {
  48978. height: math.unit(6, "feet"),
  48979. weight: math.unit(150, "lb"),
  48980. name: "Dressed",
  48981. image: {
  48982. source: "./media/characters/shavon/dressed.svg",
  48983. extra: 1242/1096,
  48984. bottom: 98/1340
  48985. }
  48986. },
  48987. },
  48988. [
  48989. {
  48990. name: "Macro",
  48991. height: math.unit(255, "feet"),
  48992. default: true
  48993. },
  48994. ]
  48995. ))
  48996. characterMakers.push(() => makeCharacter(
  48997. { name: "Steph", species: ["shark"], tags: ["anthro"] },
  48998. {
  48999. front: {
  49000. height: math.unit(6, "feet"),
  49001. name: "Front",
  49002. image: {
  49003. source: "./media/characters/steph/front.svg",
  49004. extra: 1430/1330,
  49005. bottom: 54/1484
  49006. }
  49007. },
  49008. },
  49009. [
  49010. {
  49011. name: "Normal",
  49012. height: math.unit(6, "feet"),
  49013. default: true
  49014. },
  49015. ]
  49016. ))
  49017. characterMakers.push(() => makeCharacter(
  49018. { name: "Kil'aman", species: ["dragon", "deity"], tags: ["anthro"] },
  49019. {
  49020. front: {
  49021. height: math.unit(9, "feet"),
  49022. weight: math.unit(400, "lb"),
  49023. name: "Front",
  49024. image: {
  49025. source: "./media/characters/kil'aman/front.svg",
  49026. extra: 1210/1159,
  49027. bottom: 109/1319
  49028. }
  49029. },
  49030. head: {
  49031. height: math.unit(2.14, "feet"),
  49032. name: "Head",
  49033. image: {
  49034. source: "./media/characters/kil'aman/head.svg"
  49035. }
  49036. },
  49037. maw: {
  49038. height: math.unit(1.21, "feet"),
  49039. name: "Maw",
  49040. image: {
  49041. source: "./media/characters/kil'aman/maw.svg"
  49042. }
  49043. },
  49044. foot: {
  49045. height: math.unit(1.7, "feet"),
  49046. name: "Foot",
  49047. image: {
  49048. source: "./media/characters/kil'aman/foot.svg"
  49049. }
  49050. },
  49051. dick: {
  49052. height: math.unit(2.1, "feet"),
  49053. name: "Dick",
  49054. image: {
  49055. source: "./media/characters/kil'aman/dick.svg"
  49056. }
  49057. },
  49058. },
  49059. [
  49060. {
  49061. name: "Normal",
  49062. height: math.unit(9, "feet")
  49063. },
  49064. {
  49065. name: "Canon Height",
  49066. height: math.unit(10, "miles"),
  49067. default: true
  49068. },
  49069. {
  49070. name: "Maximum",
  49071. height: math.unit(6e9, "miles")
  49072. },
  49073. ]
  49074. ))
  49075. characterMakers.push(() => makeCharacter(
  49076. { name: "Qadan", species: ["utahraptor"], tags: ["anthro"] },
  49077. {
  49078. front: {
  49079. height: math.unit(90, "feet"),
  49080. weight: math.unit(675000, "lb"),
  49081. name: "Front",
  49082. image: {
  49083. source: "./media/characters/qadan/front.svg",
  49084. extra: 1012/1004,
  49085. bottom: 78/1090
  49086. }
  49087. },
  49088. back: {
  49089. height: math.unit(90, "feet"),
  49090. weight: math.unit(675000, "lb"),
  49091. name: "Back",
  49092. image: {
  49093. source: "./media/characters/qadan/back.svg",
  49094. extra: 1042/1031,
  49095. bottom: 55/1097
  49096. }
  49097. },
  49098. armored: {
  49099. height: math.unit(90, "feet"),
  49100. weight: math.unit(675000, "lb"),
  49101. name: "Armored",
  49102. image: {
  49103. source: "./media/characters/qadan/armored.svg",
  49104. extra: 1047/1037,
  49105. bottom: 48/1095
  49106. }
  49107. },
  49108. },
  49109. [
  49110. {
  49111. name: "Normal",
  49112. height: math.unit(90, "feet"),
  49113. default: true
  49114. },
  49115. ]
  49116. ))
  49117. characterMakers.push(() => makeCharacter(
  49118. { name: "Brooke", species: ["indian-giant-squirrel"], tags: ["anthro"] },
  49119. {
  49120. front: {
  49121. height: math.unit(6, "feet"),
  49122. weight: math.unit(225, "lb"),
  49123. name: "Front",
  49124. image: {
  49125. source: "./media/characters/brooke/front.svg",
  49126. extra: 1050/1010,
  49127. bottom: 66/1116
  49128. }
  49129. },
  49130. back: {
  49131. height: math.unit(6, "feet"),
  49132. weight: math.unit(225, "lb"),
  49133. name: "Back",
  49134. image: {
  49135. source: "./media/characters/brooke/back.svg",
  49136. extra: 1053/1013,
  49137. bottom: 41/1094
  49138. }
  49139. },
  49140. dressed: {
  49141. height: math.unit(6, "feet"),
  49142. weight: math.unit(225, "lb"),
  49143. name: "Dressed",
  49144. image: {
  49145. source: "./media/characters/brooke/dressed.svg",
  49146. extra: 1050/1010,
  49147. bottom: 66/1116
  49148. }
  49149. },
  49150. },
  49151. [
  49152. {
  49153. name: "Canon Height",
  49154. height: math.unit(500, "miles"),
  49155. default: true
  49156. },
  49157. ]
  49158. ))
  49159. characterMakers.push(() => makeCharacter(
  49160. { name: "Wubs", species: ["golden-retriever"], tags: ["anthro"] },
  49161. {
  49162. front: {
  49163. height: math.unit(6 + 2/12, "feet"),
  49164. weight: math.unit(210, "lb"),
  49165. name: "Front",
  49166. image: {
  49167. source: "./media/characters/wubs/front.svg",
  49168. extra: 1345/1325,
  49169. bottom: 70/1415
  49170. }
  49171. },
  49172. back: {
  49173. height: math.unit(6 + 2/12, "feet"),
  49174. weight: math.unit(210, "lb"),
  49175. name: "Back",
  49176. image: {
  49177. source: "./media/characters/wubs/back.svg",
  49178. extra: 1296/1275,
  49179. bottom: 58/1354
  49180. }
  49181. },
  49182. },
  49183. [
  49184. {
  49185. name: "Normal",
  49186. height: math.unit(6 + 2/12, "feet"),
  49187. default: true
  49188. },
  49189. {
  49190. name: "Macro",
  49191. height: math.unit(1000, "feet")
  49192. },
  49193. {
  49194. name: "Megamacro",
  49195. height: math.unit(1, "mile")
  49196. },
  49197. ]
  49198. ))
  49199. characterMakers.push(() => makeCharacter(
  49200. { name: "Blue", species: ["deer", "bat"], tags: ["anthro"] },
  49201. {
  49202. front: {
  49203. height: math.unit(4, "feet"),
  49204. weight: math.unit(120, "lb"),
  49205. name: "Front",
  49206. image: {
  49207. source: "./media/characters/blue/front.svg",
  49208. extra: 1636/1525,
  49209. bottom: 43/1679
  49210. }
  49211. },
  49212. back: {
  49213. height: math.unit(4, "feet"),
  49214. weight: math.unit(120, "lb"),
  49215. name: "Back",
  49216. image: {
  49217. source: "./media/characters/blue/back.svg",
  49218. extra: 1660/1560,
  49219. bottom: 57/1717
  49220. }
  49221. },
  49222. paws: {
  49223. height: math.unit(0.826, "feet"),
  49224. name: "Paws",
  49225. image: {
  49226. source: "./media/characters/blue/paws.svg"
  49227. }
  49228. },
  49229. },
  49230. [
  49231. {
  49232. name: "Micro",
  49233. height: math.unit(3, "inches")
  49234. },
  49235. {
  49236. name: "Normal",
  49237. height: math.unit(4, "feet"),
  49238. default: true
  49239. },
  49240. {
  49241. name: "Femenine Form",
  49242. height: math.unit(14, "feet")
  49243. },
  49244. {
  49245. name: "Werebat Form",
  49246. height: math.unit(18, "feet")
  49247. },
  49248. ]
  49249. ))
  49250. characterMakers.push(() => makeCharacter(
  49251. { name: "Kaya", species: ["dragon"], tags: ["anthro"] },
  49252. {
  49253. female: {
  49254. height: math.unit(7 + 4/12, "feet"),
  49255. weight: math.unit(243, "lb"),
  49256. name: "Female",
  49257. image: {
  49258. source: "./media/characters/kaya/female.svg",
  49259. extra: 975/898,
  49260. bottom: 34/1009
  49261. }
  49262. },
  49263. herm: {
  49264. height: math.unit(7 + 4/12, "feet"),
  49265. weight: math.unit(243, "lb"),
  49266. name: "Herm",
  49267. image: {
  49268. source: "./media/characters/kaya/herm.svg",
  49269. extra: 975/898,
  49270. bottom: 34/1009
  49271. }
  49272. },
  49273. },
  49274. [
  49275. {
  49276. name: "Normal",
  49277. height: math.unit(7 + 4/12, "feet"),
  49278. default: true
  49279. },
  49280. ]
  49281. ))
  49282. characterMakers.push(() => makeCharacter(
  49283. { name: "Kassandra", species: ["dragon", "snake"], tags: ["anthro"] },
  49284. {
  49285. female: {
  49286. height: math.unit(9 + 4/12, "feet"),
  49287. weight: math.unit(398, "lb"),
  49288. name: "Female",
  49289. image: {
  49290. source: "./media/characters/kassandra/female.svg",
  49291. extra: 908/839,
  49292. bottom: 61/969
  49293. }
  49294. },
  49295. intersex: {
  49296. height: math.unit(9 + 4/12, "feet"),
  49297. weight: math.unit(398, "lb"),
  49298. name: "Intersex",
  49299. image: {
  49300. source: "./media/characters/kassandra/intersex.svg",
  49301. extra: 908/839,
  49302. bottom: 61/969
  49303. }
  49304. },
  49305. },
  49306. [
  49307. {
  49308. name: "Normal",
  49309. height: math.unit(9 + 4/12, "feet"),
  49310. default: true
  49311. },
  49312. ]
  49313. ))
  49314. characterMakers.push(() => makeCharacter(
  49315. { name: "Amy", species: ["snow-leopard"], tags: ["anthro"] },
  49316. {
  49317. front: {
  49318. height: math.unit(3, "meters"),
  49319. name: "Front",
  49320. image: {
  49321. source: "./media/characters/amy/front.svg",
  49322. extra: 1380/1343,
  49323. bottom: 70/1450
  49324. }
  49325. },
  49326. back: {
  49327. height: math.unit(3, "meters"),
  49328. name: "Back",
  49329. image: {
  49330. source: "./media/characters/amy/back.svg",
  49331. extra: 1380/1347,
  49332. bottom: 66/1446
  49333. }
  49334. },
  49335. },
  49336. [
  49337. {
  49338. name: "Normal",
  49339. height: math.unit(3, "meters"),
  49340. default: true
  49341. },
  49342. ]
  49343. ))
  49344. characterMakers.push(() => makeCharacter(
  49345. { name: "Alphaschakal", species: ["jackal"], tags: ["feral"] },
  49346. {
  49347. side: {
  49348. height: math.unit(47, "cm"),
  49349. weight: math.unit(10.8, "kg"),
  49350. name: "Side",
  49351. image: {
  49352. source: "./media/characters/alphaschakal/side.svg",
  49353. extra: 1058/568,
  49354. bottom: 62/1120
  49355. }
  49356. },
  49357. back: {
  49358. height: math.unit(78, "cm"),
  49359. weight: math.unit(10.8, "kg"),
  49360. name: "Back",
  49361. image: {
  49362. source: "./media/characters/alphaschakal/back.svg",
  49363. extra: 1102/942,
  49364. bottom: 185/1287
  49365. }
  49366. },
  49367. head: {
  49368. height: math.unit(28, "cm"),
  49369. name: "Head",
  49370. image: {
  49371. source: "./media/characters/alphaschakal/head.svg",
  49372. extra: 696/508,
  49373. bottom: 0/696
  49374. }
  49375. },
  49376. paw: {
  49377. height: math.unit(16, "cm"),
  49378. name: "Paw",
  49379. image: {
  49380. source: "./media/characters/alphaschakal/paw.svg"
  49381. }
  49382. },
  49383. },
  49384. [
  49385. {
  49386. name: "Normal",
  49387. height: math.unit(47, "cm"),
  49388. default: true
  49389. },
  49390. {
  49391. name: "Macro",
  49392. height: math.unit(340, "cm")
  49393. },
  49394. ]
  49395. ))
  49396. characterMakers.push(() => makeCharacter(
  49397. { name: "EcoByss", species: ["goat", "deity", "demon"], tags: ["anthro"] },
  49398. {
  49399. front: {
  49400. height: math.unit(36, "earths"),
  49401. name: "Front",
  49402. image: {
  49403. source: "./media/characters/ecobyss/front.svg",
  49404. extra: 1282/1215,
  49405. bottom: 11/1293
  49406. }
  49407. },
  49408. back: {
  49409. height: math.unit(36, "earths"),
  49410. name: "Back",
  49411. image: {
  49412. source: "./media/characters/ecobyss/back.svg",
  49413. extra: 1291/1222,
  49414. bottom: 8/1299
  49415. }
  49416. },
  49417. },
  49418. [
  49419. {
  49420. name: "Normal",
  49421. height: math.unit(36, "earths"),
  49422. default: true
  49423. },
  49424. ]
  49425. ))
  49426. characterMakers.push(() => makeCharacter(
  49427. { name: "Vasuk", species: ["snake", "chimera"], tags: ["naga"] },
  49428. {
  49429. front: {
  49430. height: math.unit(12, "feet"),
  49431. name: "Front",
  49432. image: {
  49433. source: "./media/characters/vasuk/front.svg",
  49434. extra: 1326/1207,
  49435. bottom: 64/1390
  49436. }
  49437. },
  49438. },
  49439. [
  49440. {
  49441. name: "Normal",
  49442. height: math.unit(12, "feet"),
  49443. default: true
  49444. },
  49445. ]
  49446. ))
  49447. characterMakers.push(() => makeCharacter(
  49448. { name: "Linneaus", species: ["cougar", "deer"], tags: ["taur"] },
  49449. {
  49450. side: {
  49451. height: math.unit(100, "feet"),
  49452. name: "Side",
  49453. image: {
  49454. source: "./media/characters/linneaus/side.svg",
  49455. extra: 987/807,
  49456. bottom: 47/1034
  49457. }
  49458. },
  49459. },
  49460. [
  49461. {
  49462. name: "Macro",
  49463. height: math.unit(100, "feet"),
  49464. default: true
  49465. },
  49466. ]
  49467. ))
  49468. characterMakers.push(() => makeCharacter(
  49469. { name: "Nyterious Daligdig", species: ["triceratops"], tags: ["anthro"] },
  49470. {
  49471. front: {
  49472. height: math.unit(8, "feet"),
  49473. weight: math.unit(1200, "lb"),
  49474. name: "Front",
  49475. image: {
  49476. source: "./media/characters/nyterious-daligdig/front.svg",
  49477. extra: 1284/1094,
  49478. bottom: 84/1368
  49479. }
  49480. },
  49481. back: {
  49482. height: math.unit(8, "feet"),
  49483. weight: math.unit(1200, "lb"),
  49484. name: "Back",
  49485. image: {
  49486. source: "./media/characters/nyterious-daligdig/back.svg",
  49487. extra: 1301/1121,
  49488. bottom: 129/1430
  49489. }
  49490. },
  49491. mouth: {
  49492. height: math.unit(1.464, "feet"),
  49493. name: "Mouth",
  49494. image: {
  49495. source: "./media/characters/nyterious-daligdig/mouth.svg"
  49496. }
  49497. },
  49498. },
  49499. [
  49500. {
  49501. name: "Small",
  49502. height: math.unit(8, "feet"),
  49503. default: true
  49504. },
  49505. {
  49506. name: "Normal",
  49507. height: math.unit(15, "feet")
  49508. },
  49509. {
  49510. name: "Macro",
  49511. height: math.unit(90, "feet")
  49512. },
  49513. ]
  49514. ))
  49515. characterMakers.push(() => makeCharacter(
  49516. { name: "Bandel", species: ["drake"], tags: ["anthro"] },
  49517. {
  49518. front: {
  49519. height: math.unit(7 + 4/12, "feet"),
  49520. weight: math.unit(252, "lb"),
  49521. name: "Front",
  49522. image: {
  49523. source: "./media/characters/bandel/front.svg",
  49524. extra: 1946/1775,
  49525. bottom: 26/1972
  49526. }
  49527. },
  49528. back: {
  49529. height: math.unit(7 + 4/12, "feet"),
  49530. weight: math.unit(252, "lb"),
  49531. name: "Back",
  49532. image: {
  49533. source: "./media/characters/bandel/back.svg",
  49534. extra: 1940/1770,
  49535. bottom: 25/1965
  49536. }
  49537. },
  49538. maw: {
  49539. height: math.unit(2.15, "feet"),
  49540. name: "Maw",
  49541. image: {
  49542. source: "./media/characters/bandel/maw.svg"
  49543. }
  49544. },
  49545. stomach: {
  49546. height: math.unit(1.95, "feet"),
  49547. name: "Stomach",
  49548. image: {
  49549. source: "./media/characters/bandel/stomach.svg"
  49550. }
  49551. },
  49552. },
  49553. [
  49554. {
  49555. name: "Normal",
  49556. height: math.unit(7 + 4/12, "feet"),
  49557. default: true
  49558. },
  49559. ]
  49560. ))
  49561. characterMakers.push(() => makeCharacter(
  49562. { name: "Zed", species: ["avian", "mimic"], tags: ["anthro"] },
  49563. {
  49564. front: {
  49565. height: math.unit(10 + 5/12, "feet"),
  49566. weight: math.unit(773.5, "kg"),
  49567. name: "Front",
  49568. image: {
  49569. source: "./media/characters/zed/front.svg",
  49570. extra: 987/941,
  49571. bottom: 52/1039
  49572. }
  49573. },
  49574. },
  49575. [
  49576. {
  49577. name: "Short",
  49578. height: math.unit(5 + 4/12, "feet")
  49579. },
  49580. {
  49581. name: "Average",
  49582. height: math.unit(10 + 5/12, "feet"),
  49583. default: true
  49584. },
  49585. {
  49586. name: "Mini-Macro",
  49587. height: math.unit(24 + 9/12, "feet")
  49588. },
  49589. {
  49590. name: "Macro",
  49591. height: math.unit(249, "feet")
  49592. },
  49593. {
  49594. name: "Mega-Macro",
  49595. height: math.unit(12490, "feet")
  49596. },
  49597. {
  49598. name: "Giga-Macro",
  49599. height: math.unit(24.9, "miles")
  49600. },
  49601. {
  49602. name: "Tera-Macro",
  49603. height: math.unit(24900, "miles")
  49604. },
  49605. {
  49606. name: "Cosmic Scale",
  49607. height: math.unit(38.9, "lightyears")
  49608. },
  49609. {
  49610. name: "Universal Scale",
  49611. height: math.unit(138e12, "lightyears")
  49612. },
  49613. ]
  49614. ))
  49615. characterMakers.push(() => makeCharacter(
  49616. { name: "Ivan", species: ["okapi"], tags: ["anthro"] },
  49617. {
  49618. front: {
  49619. height: math.unit(1561, "inches"),
  49620. name: "Front",
  49621. image: {
  49622. source: "./media/characters/ivan/front.svg",
  49623. extra: 1126/1071,
  49624. bottom: 26/1152
  49625. }
  49626. },
  49627. back: {
  49628. height: math.unit(1561, "inches"),
  49629. name: "Back",
  49630. image: {
  49631. source: "./media/characters/ivan/back.svg",
  49632. extra: 1134/1079,
  49633. bottom: 30/1164
  49634. }
  49635. },
  49636. },
  49637. [
  49638. {
  49639. name: "Normal",
  49640. height: math.unit(1561, "inches"),
  49641. default: true
  49642. },
  49643. ]
  49644. ))
  49645. characterMakers.push(() => makeCharacter(
  49646. { name: "Robin (Arctic Hare)", species: ["arctic-hare"], tags: ["anthro"] },
  49647. {
  49648. front: {
  49649. height: math.unit(5 + 7/12, "feet"),
  49650. weight: math.unit(150, "lb"),
  49651. name: "Front",
  49652. image: {
  49653. source: "./media/characters/robin-arctic-hare/front.svg",
  49654. extra: 1148/974,
  49655. bottom: 20/1168
  49656. }
  49657. },
  49658. },
  49659. [
  49660. {
  49661. name: "Normal",
  49662. height: math.unit(5 + 7/12, "feet"),
  49663. default: true
  49664. },
  49665. ]
  49666. ))
  49667. characterMakers.push(() => makeCharacter(
  49668. { name: "Birch", species: ["dragon"], tags: ["feral"] },
  49669. {
  49670. side: {
  49671. height: math.unit(5, "feet"),
  49672. name: "Side",
  49673. image: {
  49674. source: "./media/characters/birch/side.svg",
  49675. extra: 985/796,
  49676. bottom: 111/1096
  49677. }
  49678. },
  49679. },
  49680. [
  49681. {
  49682. name: "Normal",
  49683. height: math.unit(5, "feet"),
  49684. default: true
  49685. },
  49686. ]
  49687. ))
  49688. characterMakers.push(() => makeCharacter(
  49689. { name: "Rasp", species: ["mew"], tags: ["anthro"] },
  49690. {
  49691. front: {
  49692. height: math.unit(4, "feet"),
  49693. name: "Front",
  49694. image: {
  49695. source: "./media/characters/rasp/front.svg",
  49696. extra: 561/478,
  49697. bottom: 74/635
  49698. }
  49699. },
  49700. },
  49701. [
  49702. {
  49703. name: "Normal",
  49704. height: math.unit(4, "feet"),
  49705. default: true
  49706. },
  49707. ]
  49708. ))
  49709. characterMakers.push(() => makeCharacter(
  49710. { name: "Agatha", species: ["leopard-gecko"], tags: ["anthro"] },
  49711. {
  49712. front: {
  49713. height: math.unit(4 + 6/12, "feet"),
  49714. name: "Front",
  49715. image: {
  49716. source: "./media/characters/agatha/front.svg",
  49717. extra: 947/933,
  49718. bottom: 42/989
  49719. }
  49720. },
  49721. back: {
  49722. height: math.unit(4 + 6/12, "feet"),
  49723. name: "Back",
  49724. image: {
  49725. source: "./media/characters/agatha/back.svg",
  49726. extra: 935/922,
  49727. bottom: 48/983
  49728. }
  49729. },
  49730. },
  49731. [
  49732. {
  49733. name: "Normal",
  49734. height: math.unit(4 + 6 /12, "feet"),
  49735. default: true
  49736. },
  49737. {
  49738. name: "Max Size",
  49739. height: math.unit(500, "feet")
  49740. },
  49741. ]
  49742. ))
  49743. characterMakers.push(() => makeCharacter(
  49744. { name: "Roggy", species: ["monster"], tags: ["feral"] },
  49745. {
  49746. side: {
  49747. height: math.unit(30, "feet"),
  49748. name: "Side",
  49749. image: {
  49750. source: "./media/characters/roggy/side.svg",
  49751. extra: 909/643,
  49752. bottom: 63/972
  49753. }
  49754. },
  49755. lounging: {
  49756. height: math.unit(20, "feet"),
  49757. name: "Lounging",
  49758. image: {
  49759. source: "./media/characters/roggy/lounging.svg",
  49760. extra: 643/479,
  49761. bottom: 145/788
  49762. }
  49763. },
  49764. handpaw: {
  49765. height: math.unit(13.1, "feet"),
  49766. name: "Handpaw",
  49767. image: {
  49768. source: "./media/characters/roggy/handpaw.svg"
  49769. }
  49770. },
  49771. footpaw: {
  49772. height: math.unit(15.8, "feet"),
  49773. name: "Footpaw",
  49774. image: {
  49775. source: "./media/characters/roggy/footpaw.svg"
  49776. }
  49777. },
  49778. },
  49779. [
  49780. {
  49781. name: "Menacing",
  49782. height: math.unit(30, "feet"),
  49783. default: true
  49784. },
  49785. ]
  49786. ))
  49787. characterMakers.push(() => makeCharacter(
  49788. { name: "Naomi", species: ["mienshao"], tags: ["anthro"] },
  49789. {
  49790. front: {
  49791. height: math.unit(5 + 7/12, "feet"),
  49792. weight: math.unit(135, "lb"),
  49793. name: "Front",
  49794. image: {
  49795. source: "./media/characters/naomi/front.svg",
  49796. extra: 1209/1154,
  49797. bottom: 129/1338
  49798. }
  49799. },
  49800. back: {
  49801. height: math.unit(5 + 7/12, "feet"),
  49802. weight: math.unit(135, "lb"),
  49803. name: "Back",
  49804. image: {
  49805. source: "./media/characters/naomi/back.svg",
  49806. extra: 1252/1190,
  49807. bottom: 23/1275
  49808. }
  49809. },
  49810. },
  49811. [
  49812. {
  49813. name: "Normal",
  49814. height: math.unit(5 + 7 /12, "feet"),
  49815. default: true
  49816. },
  49817. ]
  49818. ))
  49819. characterMakers.push(() => makeCharacter(
  49820. { name: "Kimpi", species: ["dreamspawn"], tags: ["feral"] },
  49821. {
  49822. side: {
  49823. height: math.unit(35, "meters"),
  49824. name: "Side",
  49825. image: {
  49826. source: "./media/characters/kimpi/side.svg",
  49827. extra: 419/382,
  49828. bottom: 63/482
  49829. }
  49830. },
  49831. hand: {
  49832. height: math.unit(8.96, "meters"),
  49833. name: "Hand",
  49834. image: {
  49835. source: "./media/characters/kimpi/hand.svg"
  49836. }
  49837. },
  49838. },
  49839. [
  49840. {
  49841. name: "Normal",
  49842. height: math.unit(35, "meters"),
  49843. default: true
  49844. },
  49845. ]
  49846. ))
  49847. characterMakers.push(() => makeCharacter(
  49848. { name: "Pepper (Purrloin)", species: ["purrloin"], tags: ["anthro"] },
  49849. {
  49850. front: {
  49851. height: math.unit(4 + 4/12, "feet"),
  49852. name: "Front",
  49853. image: {
  49854. source: "./media/characters/pepper-purrloin/front.svg",
  49855. extra: 1141/1024,
  49856. bottom: 21/1162
  49857. }
  49858. },
  49859. },
  49860. [
  49861. {
  49862. name: "Normal",
  49863. height: math.unit(4 + 4/12, "feet"),
  49864. default: true
  49865. },
  49866. ]
  49867. ))
  49868. characterMakers.push(() => makeCharacter(
  49869. { name: "Raphael", species: ["noivern"], tags: ["anthro"] },
  49870. {
  49871. front: {
  49872. height: math.unit(6 + 2/12, "feet"),
  49873. name: "Front",
  49874. image: {
  49875. source: "./media/characters/raphael/front.svg",
  49876. extra: 1101/962,
  49877. bottom: 59/1160
  49878. }
  49879. },
  49880. },
  49881. [
  49882. {
  49883. name: "Normal",
  49884. height: math.unit(6 + 2/12, "feet"),
  49885. default: true
  49886. },
  49887. ]
  49888. ))
  49889. characterMakers.push(() => makeCharacter(
  49890. { name: "Victor Williams", species: ["wolf"], tags: ["anthro"] },
  49891. {
  49892. front: {
  49893. height: math.unit(6, "feet"),
  49894. weight: math.unit(150, "lb"),
  49895. name: "Front",
  49896. image: {
  49897. source: "./media/characters/victor-williams/front.svg",
  49898. extra: 1894/1825,
  49899. bottom: 67/1961
  49900. }
  49901. },
  49902. },
  49903. [
  49904. {
  49905. name: "Normal",
  49906. height: math.unit(6, "feet"),
  49907. default: true
  49908. },
  49909. ]
  49910. ))
  49911. characterMakers.push(() => makeCharacter(
  49912. { name: "Rachel", species: ["hedgehog"], tags: ["anthro"] },
  49913. {
  49914. front: {
  49915. height: math.unit(5 + 8/12, "feet"),
  49916. weight: math.unit(150, "lb"),
  49917. name: "Front",
  49918. image: {
  49919. source: "./media/characters/rachel/front.svg",
  49920. extra: 1902/1787,
  49921. bottom: 46/1948
  49922. }
  49923. },
  49924. },
  49925. [
  49926. {
  49927. name: "Base Height",
  49928. height: math.unit(5 + 8/12, "feet"),
  49929. default: true
  49930. },
  49931. {
  49932. name: "Macro",
  49933. height: math.unit(200, "feet")
  49934. },
  49935. {
  49936. name: "Mega Macro",
  49937. height: math.unit(1, "mile")
  49938. },
  49939. {
  49940. name: "Giga Macro",
  49941. height: math.unit(1500, "miles")
  49942. },
  49943. {
  49944. name: "Tera Macro",
  49945. height: math.unit(8000, "miles")
  49946. },
  49947. {
  49948. name: "Tera Macro+",
  49949. height: math.unit(2e5, "miles")
  49950. },
  49951. ]
  49952. ))
  49953. characterMakers.push(() => makeCharacter(
  49954. { name: "Svetlana Rozovskaya", species: ["dragon", "naga"], tags: ["naga"] },
  49955. {
  49956. front: {
  49957. height: math.unit(6.5, "feet"),
  49958. name: "Front",
  49959. image: {
  49960. source: "./media/characters/svetlana-rozovskaya/front.svg",
  49961. extra: 860/819,
  49962. bottom: 307/1167
  49963. }
  49964. },
  49965. back: {
  49966. height: math.unit(6.5, "feet"),
  49967. name: "Back",
  49968. image: {
  49969. source: "./media/characters/svetlana-rozovskaya/back.svg",
  49970. extra: 880/837,
  49971. bottom: 395/1275
  49972. }
  49973. },
  49974. sleeping: {
  49975. height: math.unit(2.79, "feet"),
  49976. name: "Sleeping",
  49977. image: {
  49978. source: "./media/characters/svetlana-rozovskaya/sleeping.svg",
  49979. extra: 465/383,
  49980. bottom: 263/728
  49981. }
  49982. },
  49983. maw: {
  49984. height: math.unit(2.52, "feet"),
  49985. name: "Maw",
  49986. image: {
  49987. source: "./media/characters/svetlana-rozovskaya/maw.svg"
  49988. }
  49989. },
  49990. },
  49991. [
  49992. {
  49993. name: "Normal",
  49994. height: math.unit(6.5, "feet"),
  49995. default: true
  49996. },
  49997. ]
  49998. ))
  49999. characterMakers.push(() => makeCharacter(
  50000. { name: "Nova Nerium", species: ["dragon", "cat"], tags: ["anthro"] },
  50001. {
  50002. front: {
  50003. height: math.unit(5, "feet"),
  50004. name: "Front",
  50005. image: {
  50006. source: "./media/characters/nova-nerium/front.svg",
  50007. extra: 1548/1392,
  50008. bottom: 374/1922
  50009. }
  50010. },
  50011. back: {
  50012. height: math.unit(5, "feet"),
  50013. name: "Back",
  50014. image: {
  50015. source: "./media/characters/nova-nerium/back.svg",
  50016. extra: 1658/1468,
  50017. bottom: 257/1915
  50018. }
  50019. },
  50020. },
  50021. [
  50022. {
  50023. name: "Normal",
  50024. height: math.unit(5, "feet"),
  50025. default: true
  50026. },
  50027. ]
  50028. ))
  50029. characterMakers.push(() => makeCharacter(
  50030. { name: "Ashe Pyriph", species: ["liger"], tags: ["anthro"] },
  50031. {
  50032. front: {
  50033. height: math.unit(5 + 4/12, "feet"),
  50034. name: "Front",
  50035. image: {
  50036. source: "./media/characters/ashe-pyriph/front.svg",
  50037. extra: 1935/1747,
  50038. bottom: 60/1995
  50039. }
  50040. },
  50041. },
  50042. [
  50043. {
  50044. name: "Normal",
  50045. height: math.unit(5 + 4/12, "feet"),
  50046. default: true
  50047. },
  50048. ]
  50049. ))
  50050. characterMakers.push(() => makeCharacter(
  50051. { name: "Flicker Wisp", species: ["wolf", "drider"], tags: ["anthro"] },
  50052. {
  50053. front: {
  50054. height: math.unit(8.7, "feet"),
  50055. name: "Front",
  50056. image: {
  50057. source: "./media/characters/flicker-wisp/front.svg",
  50058. extra: 1835/1613,
  50059. bottom: 449/2284
  50060. }
  50061. },
  50062. side: {
  50063. height: math.unit(8.7, "feet"),
  50064. name: "Side",
  50065. image: {
  50066. source: "./media/characters/flicker-wisp/side.svg",
  50067. extra: 1841/1642,
  50068. bottom: 336/2177
  50069. },
  50070. default: true
  50071. },
  50072. maw: {
  50073. height: math.unit(3.35, "feet"),
  50074. name: "Maw",
  50075. image: {
  50076. source: "./media/characters/flicker-wisp/maw.svg",
  50077. extra: 2338/1506,
  50078. bottom: 0/2338
  50079. }
  50080. },
  50081. ovipositor: {
  50082. height: math.unit(4.95, "feet"),
  50083. name: "Ovipositor",
  50084. image: {
  50085. source: "./media/characters/flicker-wisp/ovipositor.svg"
  50086. }
  50087. },
  50088. egg: {
  50089. height: math.unit(0.385, "feet"),
  50090. weight: math.unit(2, "lb"),
  50091. name: "Egg",
  50092. image: {
  50093. source: "./media/characters/flicker-wisp/egg.svg"
  50094. }
  50095. },
  50096. },
  50097. [
  50098. {
  50099. name: "Normal",
  50100. height: math.unit(8.7, "feet"),
  50101. default: true
  50102. },
  50103. ]
  50104. ))
  50105. characterMakers.push(() => makeCharacter(
  50106. { name: "Faefnul", species: ["alien", "lizard"], tags: ["anthro"] },
  50107. {
  50108. side: {
  50109. height: math.unit(11, "feet"),
  50110. name: "Side",
  50111. image: {
  50112. source: "./media/characters/faefnul/side.svg",
  50113. extra: 1100/1007,
  50114. bottom: 0/1100
  50115. }
  50116. },
  50117. },
  50118. [
  50119. {
  50120. name: "Normal",
  50121. height: math.unit(11, "feet"),
  50122. default: true
  50123. },
  50124. ]
  50125. ))
  50126. characterMakers.push(() => makeCharacter(
  50127. { name: "Shady", species: ["fox"], tags: ["anthro"] },
  50128. {
  50129. front: {
  50130. height: math.unit(6 + 2/12, "feet"),
  50131. name: "Front",
  50132. image: {
  50133. source: "./media/characters/shady/front.svg",
  50134. extra: 502/461,
  50135. bottom: 9/511
  50136. }
  50137. },
  50138. kneeling: {
  50139. height: math.unit(4.6, "feet"),
  50140. name: "Kneeling",
  50141. image: {
  50142. source: "./media/characters/shady/kneeling.svg",
  50143. extra: 1328/1219,
  50144. bottom: 117/1445
  50145. }
  50146. },
  50147. maw: {
  50148. height: math.unit(2, "feet"),
  50149. name: "Maw",
  50150. image: {
  50151. source: "./media/characters/shady/maw.svg"
  50152. }
  50153. },
  50154. },
  50155. [
  50156. {
  50157. name: "Nano",
  50158. height: math.unit(1, "mm")
  50159. },
  50160. {
  50161. name: "Micro",
  50162. height: math.unit(12, "mm")
  50163. },
  50164. {
  50165. name: "Tiny",
  50166. height: math.unit(3, "inches")
  50167. },
  50168. {
  50169. name: "Normal",
  50170. height: math.unit(6 + 2/12, "feet"),
  50171. default: true
  50172. },
  50173. {
  50174. name: "Big",
  50175. height: math.unit(15, "feet")
  50176. },
  50177. {
  50178. name: "Macro",
  50179. height: math.unit(150, "feet")
  50180. },
  50181. {
  50182. name: "Titanic",
  50183. height: math.unit(500, "feet")
  50184. },
  50185. ]
  50186. ))
  50187. characterMakers.push(() => makeCharacter(
  50188. { name: "Fenrir", species: ["wolf"], tags: ["anthro"] },
  50189. {
  50190. front: {
  50191. height: math.unit(12, "feet"),
  50192. name: "Front",
  50193. image: {
  50194. source: "./media/characters/fenrir/front.svg",
  50195. extra: 968/875,
  50196. bottom: 22/990
  50197. }
  50198. },
  50199. },
  50200. [
  50201. {
  50202. name: "Big",
  50203. height: math.unit(12, "feet"),
  50204. default: true
  50205. },
  50206. ]
  50207. ))
  50208. characterMakers.push(() => makeCharacter(
  50209. { name: "Makar", species: ["cat"], tags: ["anthro"] },
  50210. {
  50211. front: {
  50212. height: math.unit(5 + 4/12, "feet"),
  50213. name: "Front",
  50214. image: {
  50215. source: "./media/characters/makar/front.svg",
  50216. extra: 1181/1112,
  50217. bottom: 78/1259
  50218. }
  50219. },
  50220. },
  50221. [
  50222. {
  50223. name: "Normal",
  50224. height: math.unit(5 + 4/12, "feet"),
  50225. default: true
  50226. },
  50227. ]
  50228. ))
  50229. characterMakers.push(() => makeCharacter(
  50230. { name: "Callow", species: ["deer"], tags: ["anthro"] },
  50231. {
  50232. front: {
  50233. height: math.unit(5 + 7/12, "feet"),
  50234. name: "Front",
  50235. image: {
  50236. source: "./media/characters/callow/front.svg",
  50237. extra: 1482/1304,
  50238. bottom: 23/1505
  50239. }
  50240. },
  50241. back: {
  50242. height: math.unit(5 + 7/12, "feet"),
  50243. name: "Back",
  50244. image: {
  50245. source: "./media/characters/callow/back.svg",
  50246. extra: 1484/1296,
  50247. bottom: 25/1509
  50248. }
  50249. },
  50250. },
  50251. [
  50252. {
  50253. name: "Micro",
  50254. height: math.unit(3, "inches"),
  50255. default: true
  50256. },
  50257. {
  50258. name: "Normal",
  50259. height: math.unit(5 + 7/12, "feet")
  50260. },
  50261. ]
  50262. ))
  50263. characterMakers.push(() => makeCharacter(
  50264. { name: "Natel", species: ["folf"], tags: ["anthro"] },
  50265. {
  50266. front: {
  50267. height: math.unit(6 + 2/12, "feet"),
  50268. name: "Front",
  50269. image: {
  50270. source: "./media/characters/natel/front.svg",
  50271. extra: 1833/1692,
  50272. bottom: 166/1999
  50273. }
  50274. },
  50275. },
  50276. [
  50277. {
  50278. name: "Normal",
  50279. height: math.unit(6 + 2/12, "feet"),
  50280. default: true
  50281. },
  50282. ]
  50283. ))
  50284. characterMakers.push(() => makeCharacter(
  50285. { name: "Misu", species: ["coyote"], tags: ["anthro"] },
  50286. {
  50287. front: {
  50288. height: math.unit(1.75, "meters"),
  50289. name: "Front",
  50290. image: {
  50291. source: "./media/characters/misu/front.svg",
  50292. extra: 1690/1558,
  50293. bottom: 234/1924
  50294. }
  50295. },
  50296. back: {
  50297. height: math.unit(1.75, "meters"),
  50298. name: "Back",
  50299. image: {
  50300. source: "./media/characters/misu/back.svg",
  50301. extra: 1762/1618,
  50302. bottom: 146/1908
  50303. }
  50304. },
  50305. frontNude: {
  50306. height: math.unit(1.75, "meters"),
  50307. name: "Front (Nude)",
  50308. image: {
  50309. source: "./media/characters/misu/front-nude.svg",
  50310. extra: 1690/1558,
  50311. bottom: 234/1924
  50312. }
  50313. },
  50314. backNude: {
  50315. height: math.unit(1.75, "meters"),
  50316. name: "Back (Nude)",
  50317. image: {
  50318. source: "./media/characters/misu/back-nude.svg",
  50319. extra: 1762/1618,
  50320. bottom: 146/1908
  50321. }
  50322. },
  50323. frontErect: {
  50324. height: math.unit(1.75, "meters"),
  50325. name: "Front (Erect)",
  50326. image: {
  50327. source: "./media/characters/misu/front-erect.svg",
  50328. extra: 1690/1558,
  50329. bottom: 234/1924
  50330. }
  50331. },
  50332. maw: {
  50333. height: math.unit(0.47, "meters"),
  50334. name: "Maw",
  50335. image: {
  50336. source: "./media/characters/misu/maw.svg"
  50337. }
  50338. },
  50339. head: {
  50340. height: math.unit(0.35, "meters"),
  50341. name: "Head",
  50342. image: {
  50343. source: "./media/characters/misu/head.svg"
  50344. }
  50345. },
  50346. rear: {
  50347. height: math.unit(0.47, "meters"),
  50348. name: "Rear",
  50349. image: {
  50350. source: "./media/characters/misu/rear.svg"
  50351. }
  50352. },
  50353. },
  50354. [
  50355. {
  50356. name: "Normal",
  50357. height: math.unit(1.75, "meters")
  50358. },
  50359. {
  50360. name: "Not good for the people",
  50361. height: math.unit(42, "meters")
  50362. },
  50363. {
  50364. name: "Not good for the neighborhood",
  50365. height: math.unit(135, "meters")
  50366. },
  50367. {
  50368. name: "Bit bigger problem",
  50369. height: math.unit(380, "meters"),
  50370. default: true
  50371. },
  50372. {
  50373. name: "Not good for the city",
  50374. height: math.unit(1.5, "km")
  50375. },
  50376. {
  50377. name: "Not good for the county",
  50378. height: math.unit(5.5, "km")
  50379. },
  50380. {
  50381. name: "Not good for the state",
  50382. height: math.unit(25, "km")
  50383. },
  50384. {
  50385. name: "Not good for the country",
  50386. height: math.unit(125, "km")
  50387. },
  50388. {
  50389. name: "Not good for the continent",
  50390. height: math.unit(2100, "km")
  50391. },
  50392. {
  50393. name: "Not good for the planet",
  50394. height: math.unit(35000, "km")
  50395. },
  50396. {
  50397. name: "Just no",
  50398. height: math.unit(8.5e18, "km")
  50399. },
  50400. ]
  50401. ))
  50402. characterMakers.push(() => makeCharacter(
  50403. { name: "Poppy", species: ["human"], tags: ["anthro"] },
  50404. {
  50405. front: {
  50406. height: math.unit(6.5, "feet"),
  50407. name: "Front",
  50408. image: {
  50409. source: "./media/characters/poppy/front.svg",
  50410. extra: 1878/1812,
  50411. bottom: 43/1921
  50412. }
  50413. },
  50414. feet: {
  50415. height: math.unit(1.06, "feet"),
  50416. name: "Feet",
  50417. image: {
  50418. source: "./media/characters/poppy/feet.svg",
  50419. extra: 1083/1083,
  50420. bottom: 87/1170
  50421. }
  50422. },
  50423. },
  50424. [
  50425. {
  50426. name: "Human",
  50427. height: math.unit(6.5, "feet")
  50428. },
  50429. {
  50430. name: "Default",
  50431. height: math.unit(300, "feet"),
  50432. default: true
  50433. },
  50434. {
  50435. name: "Huge",
  50436. height: math.unit(850, "feet")
  50437. },
  50438. {
  50439. name: "Mega",
  50440. height: math.unit(8000, "feet")
  50441. },
  50442. {
  50443. name: "Giga",
  50444. height: math.unit(300, "miles")
  50445. },
  50446. ]
  50447. ))
  50448. characterMakers.push(() => makeCharacter(
  50449. { name: "Zener", species: ["dragon" ,"robot"], tags: ["anthro", "feral"] },
  50450. {
  50451. bipedal: {
  50452. height: math.unit(7, "feet"),
  50453. name: "Bipedal",
  50454. image: {
  50455. source: "./media/characters/zener/bipedal.svg",
  50456. extra: 874/805,
  50457. bottom: 109/983
  50458. }
  50459. },
  50460. quadrupedal: {
  50461. height: math.unit(4.64, "feet"),
  50462. name: "Quadrupedal",
  50463. image: {
  50464. source: "./media/characters/zener/quadrupedal.svg",
  50465. extra: 638/507,
  50466. bottom: 190/828
  50467. }
  50468. },
  50469. cock: {
  50470. height: math.unit(18, "inches"),
  50471. name: "Cock",
  50472. image: {
  50473. source: "./media/characters/zener/cock.svg"
  50474. }
  50475. },
  50476. },
  50477. [
  50478. {
  50479. name: "Normal",
  50480. height: math.unit(7, "feet"),
  50481. default: true
  50482. },
  50483. ]
  50484. ))
  50485. characterMakers.push(() => makeCharacter(
  50486. { name: "Charlie (Dog)", species: ["dog"], tags: ["anthro"] },
  50487. {
  50488. nude: {
  50489. height: math.unit(5 + 6/12, "feet"),
  50490. name: "Nude",
  50491. image: {
  50492. source: "./media/characters/charlie-dog/nude.svg",
  50493. extra: 768/734,
  50494. bottom: 26/794
  50495. }
  50496. },
  50497. dressed: {
  50498. height: math.unit(5 + 6/12, "feet"),
  50499. name: "Dressed",
  50500. image: {
  50501. source: "./media/characters/charlie-dog/dressed.svg",
  50502. extra: 768/734,
  50503. bottom: 26/794
  50504. }
  50505. },
  50506. },
  50507. [
  50508. {
  50509. name: "Normal",
  50510. height: math.unit(5 + 6/12, "feet"),
  50511. default: true
  50512. },
  50513. ]
  50514. ))
  50515. characterMakers.push(() => makeCharacter(
  50516. { name: "Ir'istrasz", species: ["dragon"], tags: ["anthro"] },
  50517. {
  50518. front: {
  50519. height: math.unit(6 + 4/12, "feet"),
  50520. name: "Front",
  50521. image: {
  50522. source: "./media/characters/ir'istrasz/front.svg",
  50523. extra: 1014/977,
  50524. bottom: 65/1079
  50525. }
  50526. },
  50527. back: {
  50528. height: math.unit(6 + 4/12, "feet"),
  50529. name: "Back",
  50530. image: {
  50531. source: "./media/characters/ir'istrasz/back.svg",
  50532. extra: 1024/992,
  50533. bottom: 34/1058
  50534. }
  50535. },
  50536. },
  50537. [
  50538. {
  50539. name: "Normal",
  50540. height: math.unit(6 + 4/12, "feet"),
  50541. default: true
  50542. },
  50543. ]
  50544. ))
  50545. characterMakers.push(() => makeCharacter(
  50546. { name: "Dee (Ditto)", species: ["ditto"], tags: ["anthro", "goo"] },
  50547. {
  50548. front: {
  50549. height: math.unit(5 + 8/12, "feet"),
  50550. name: "Front",
  50551. image: {
  50552. source: "./media/characters/dee-ditto/front.svg",
  50553. extra: 1874/1785,
  50554. bottom: 68/1942
  50555. }
  50556. },
  50557. back: {
  50558. height: math.unit(5 + 8/12, "feet"),
  50559. name: "Back",
  50560. image: {
  50561. source: "./media/characters/dee-ditto/back.svg",
  50562. extra: 1870/1783,
  50563. bottom: 77/1947
  50564. }
  50565. },
  50566. },
  50567. [
  50568. {
  50569. name: "Normal",
  50570. height: math.unit(5 + 8/12, "feet"),
  50571. default: true
  50572. },
  50573. ]
  50574. ))
  50575. characterMakers.push(() => makeCharacter(
  50576. { name: "Fey", species: ["werebeast", "fox"], tags: ["anthro"] },
  50577. {
  50578. front: {
  50579. height: math.unit(7 + 6/12, "feet"),
  50580. name: "Front",
  50581. image: {
  50582. source: "./media/characters/fey/front.svg",
  50583. extra: 995/979,
  50584. bottom: 30/1025
  50585. }
  50586. },
  50587. back: {
  50588. height: math.unit(7 + 6/12, "feet"),
  50589. name: "Back",
  50590. image: {
  50591. source: "./media/characters/fey/back.svg",
  50592. extra: 1079/1008,
  50593. bottom: 5/1084
  50594. }
  50595. },
  50596. dressed: {
  50597. height: math.unit(7 + 6/12, "feet"),
  50598. name: "Dressed",
  50599. image: {
  50600. source: "./media/characters/fey/dressed.svg",
  50601. extra: 995/979,
  50602. bottom: 30/1025
  50603. }
  50604. },
  50605. },
  50606. [
  50607. {
  50608. name: "Normal",
  50609. height: math.unit(7 + 6/12, "feet"),
  50610. default: true
  50611. },
  50612. ]
  50613. ))
  50614. characterMakers.push(() => makeCharacter(
  50615. { name: "Aster", species: ["alien"], tags: ["anthro"] },
  50616. {
  50617. standing: {
  50618. height: math.unit(17, "feet"),
  50619. name: "Standing",
  50620. image: {
  50621. source: "./media/characters/aster/standing.svg",
  50622. extra: 1798/1598,
  50623. bottom: 117/1915
  50624. }
  50625. },
  50626. },
  50627. [
  50628. {
  50629. name: "Normal",
  50630. height: math.unit(17, "feet"),
  50631. default: true
  50632. },
  50633. {
  50634. name: "Homewrecker",
  50635. height: math.unit(95, "feet")
  50636. },
  50637. {
  50638. name: "Planet Devourer",
  50639. height: math.unit(1008000, "miles")
  50640. },
  50641. ]
  50642. ))
  50643. characterMakers.push(() => makeCharacter(
  50644. { name: "Devon Childs", species: ["hyena"], tags: ["anthro"] },
  50645. {
  50646. front: {
  50647. height: math.unit(6 + 5/12, "feet"),
  50648. weight: math.unit(265, "lb"),
  50649. name: "Front",
  50650. image: {
  50651. source: "./media/characters/devon-childs/front.svg",
  50652. extra: 1795/1721,
  50653. bottom: 41/1836
  50654. }
  50655. },
  50656. side: {
  50657. height: math.unit(6 + 5/12, "feet"),
  50658. weight: math.unit(265, "lb"),
  50659. name: "Side",
  50660. image: {
  50661. source: "./media/characters/devon-childs/side.svg",
  50662. extra: 1812/1738,
  50663. bottom: 30/1842
  50664. }
  50665. },
  50666. back: {
  50667. height: math.unit(6 + 5/12, "feet"),
  50668. weight: math.unit(265, "lb"),
  50669. name: "Back",
  50670. image: {
  50671. source: "./media/characters/devon-childs/back.svg",
  50672. extra: 1808/1735,
  50673. bottom: 23/1831
  50674. }
  50675. },
  50676. hand: {
  50677. height: math.unit(1.464, "feet"),
  50678. name: "Hand",
  50679. image: {
  50680. source: "./media/characters/devon-childs/hand.svg"
  50681. }
  50682. },
  50683. foot: {
  50684. height: math.unit(1.6, "feet"),
  50685. name: "Foot",
  50686. image: {
  50687. source: "./media/characters/devon-childs/foot.svg"
  50688. }
  50689. },
  50690. },
  50691. [
  50692. {
  50693. name: "Micro",
  50694. height: math.unit(7, "cm")
  50695. },
  50696. {
  50697. name: "Normal",
  50698. height: math.unit(6 + 5/12, "feet"),
  50699. default: true
  50700. },
  50701. {
  50702. name: "Macro",
  50703. height: math.unit(154, "feet")
  50704. },
  50705. ]
  50706. ))
  50707. characterMakers.push(() => makeCharacter(
  50708. { name: "Lydemox Vir", species: ["kitsune"], tags: ["anthro"] },
  50709. {
  50710. front: {
  50711. height: math.unit(6, "feet"),
  50712. weight: math.unit(180, "lb"),
  50713. name: "Front",
  50714. image: {
  50715. source: "./media/characters/lydemox-vir/front.svg",
  50716. extra: 1632/1435,
  50717. bottom: 58/1690
  50718. }
  50719. },
  50720. frontSFW: {
  50721. height: math.unit(6, "feet"),
  50722. weight: math.unit(180, "lb"),
  50723. name: "Front (SFW)",
  50724. image: {
  50725. source: "./media/characters/lydemox-vir/front-sfw.svg",
  50726. extra: 1632/1435,
  50727. bottom: 58/1690
  50728. }
  50729. },
  50730. back: {
  50731. height: math.unit(6, "feet"),
  50732. weight: math.unit(180, "lb"),
  50733. name: "Back",
  50734. image: {
  50735. source: "./media/characters/lydemox-vir/back.svg",
  50736. extra: 1593/1408,
  50737. bottom: 31/1624
  50738. }
  50739. },
  50740. paw: {
  50741. height: math.unit(1.85, "feet"),
  50742. name: "Paw",
  50743. image: {
  50744. source: "./media/characters/lydemox-vir/paw.svg"
  50745. }
  50746. },
  50747. dick: {
  50748. height: math.unit(1.8, "feet"),
  50749. name: "Dick",
  50750. image: {
  50751. source: "./media/characters/lydemox-vir/dick.svg"
  50752. }
  50753. },
  50754. },
  50755. [
  50756. {
  50757. name: "Macro",
  50758. height: math.unit(100, "feet"),
  50759. default: true
  50760. },
  50761. {
  50762. name: "Teramacro",
  50763. height: math.unit(1, "earth")
  50764. },
  50765. {
  50766. name: "Planetary",
  50767. height: math.unit(20, "earths")
  50768. },
  50769. ]
  50770. ))
  50771. characterMakers.push(() => makeCharacter(
  50772. { name: "Mia", species: ["panda"], tags: ["anthro"] },
  50773. {
  50774. front: {
  50775. height: math.unit(15 + 8/12, "feet"),
  50776. weight: math.unit(1237, "kg"),
  50777. name: "Front",
  50778. image: {
  50779. source: "./media/characters/mia/front.svg",
  50780. extra: 1573/1446,
  50781. bottom: 58/1631
  50782. }
  50783. },
  50784. },
  50785. [
  50786. {
  50787. name: "Small",
  50788. height: math.unit(9 + 5/12, "feet")
  50789. },
  50790. {
  50791. name: "Normal",
  50792. height: math.unit(15 + 8/12, "feet"),
  50793. default: true
  50794. },
  50795. ]
  50796. ))
  50797. characterMakers.push(() => makeCharacter(
  50798. { name: "Mr. Graves", species: ["wolf"], tags: ["anthro"] },
  50799. {
  50800. front: {
  50801. height: math.unit(10 + 6/12, "feet"),
  50802. weight: math.unit(1.3, "tons"),
  50803. name: "Front",
  50804. image: {
  50805. source: "./media/characters/mr-graves/front.svg",
  50806. extra: 1779/1695,
  50807. bottom: 198/1977
  50808. }
  50809. },
  50810. },
  50811. [
  50812. {
  50813. name: "Normal",
  50814. height: math.unit(10 + 6 /12, "feet"),
  50815. default: true
  50816. },
  50817. ]
  50818. ))
  50819. characterMakers.push(() => makeCharacter(
  50820. { name: "Jess", species: ["human"], tags: ["anthro"] },
  50821. {
  50822. dressedFront: {
  50823. height: math.unit(5 + 8/12, "feet"),
  50824. weight: math.unit(125, "lb"),
  50825. name: "Dressed (Front)",
  50826. image: {
  50827. source: "./media/characters/jess/dressed-front.svg",
  50828. extra: 1176/1152,
  50829. bottom: 42/1218
  50830. }
  50831. },
  50832. dressedSide: {
  50833. height: math.unit(5 + 8/12, "feet"),
  50834. weight: math.unit(125, "lb"),
  50835. name: "Dressed (Side)",
  50836. image: {
  50837. source: "./media/characters/jess/dressed-side.svg",
  50838. extra: 1204/1190,
  50839. bottom: 6/1210
  50840. }
  50841. },
  50842. nudeFront: {
  50843. height: math.unit(5 + 8/12, "feet"),
  50844. weight: math.unit(125, "lb"),
  50845. name: "Nude (Front)",
  50846. image: {
  50847. source: "./media/characters/jess/nude-front.svg",
  50848. extra: 1176/1152,
  50849. bottom: 42/1218
  50850. }
  50851. },
  50852. nudeSide: {
  50853. height: math.unit(5 + 8/12, "feet"),
  50854. weight: math.unit(125, "lb"),
  50855. name: "Nude (Side)",
  50856. image: {
  50857. source: "./media/characters/jess/nude-side.svg",
  50858. extra: 1204/1190,
  50859. bottom: 6/1210
  50860. }
  50861. },
  50862. organsFront: {
  50863. height: math.unit(2.83799342105, "feet"),
  50864. name: "Organs (Front)",
  50865. image: {
  50866. source: "./media/characters/jess/organs-front.svg"
  50867. }
  50868. },
  50869. organsSide: {
  50870. height: math.unit(2.64225290474, "feet"),
  50871. name: "Organs (Side)",
  50872. image: {
  50873. source: "./media/characters/jess/organs-side.svg"
  50874. }
  50875. },
  50876. digestiveTractFront: {
  50877. height: math.unit(2.8106580871, "feet"),
  50878. name: "Digestive Tract (Front)",
  50879. image: {
  50880. source: "./media/characters/jess/digestive-tract-front.svg"
  50881. }
  50882. },
  50883. digestiveTractSide: {
  50884. height: math.unit(2.54365045014, "feet"),
  50885. name: "Digestive Tract (Side)",
  50886. image: {
  50887. source: "./media/characters/jess/digestive-tract-side.svg"
  50888. }
  50889. },
  50890. respiratorySystemFront: {
  50891. height: math.unit(1.11196233456, "feet"),
  50892. name: "Respiratory System (Front)",
  50893. image: {
  50894. source: "./media/characters/jess/respiratory-system-front.svg"
  50895. }
  50896. },
  50897. respiratorySystemSide: {
  50898. height: math.unit(0.89327966297, "feet"),
  50899. name: "Respiratory System (Side)",
  50900. image: {
  50901. source: "./media/characters/jess/respiratory-system-side.svg"
  50902. }
  50903. },
  50904. urinaryTractFront: {
  50905. height: math.unit(1.16126356186, "feet"),
  50906. name: "Urinary Tract (Front)",
  50907. image: {
  50908. source: "./media/characters/jess/urinary-tract-front.svg"
  50909. }
  50910. },
  50911. urinaryTractSide: {
  50912. height: math.unit(1.20910039627, "feet"),
  50913. name: "Urinary Tract (Side)",
  50914. image: {
  50915. source: "./media/characters/jess/urinary-tract-side.svg"
  50916. }
  50917. },
  50918. reproductiveOrgansFront: {
  50919. height: math.unit(0.48422591566, "feet"),
  50920. name: "Reproductive Organs (Front)",
  50921. image: {
  50922. source: "./media/characters/jess/reproductive-organs-front.svg"
  50923. }
  50924. },
  50925. reproductiveOrgansSide: {
  50926. height: math.unit(0.61553314481, "feet"),
  50927. name: "Reproductive Organs (Side)",
  50928. image: {
  50929. source: "./media/characters/jess/reproductive-organs-side.svg"
  50930. }
  50931. },
  50932. breastsFront: {
  50933. height: math.unit(0.47690395121, "feet"),
  50934. name: "Breasts (Front)",
  50935. image: {
  50936. source: "./media/characters/jess/breasts-front.svg"
  50937. }
  50938. },
  50939. breastsSide: {
  50940. height: math.unit(0.30556998307, "feet"),
  50941. name: "Breasts (Side)",
  50942. image: {
  50943. source: "./media/characters/jess/breasts-side.svg"
  50944. }
  50945. },
  50946. heartFront: {
  50947. height: math.unit(0.53011022622, "feet"),
  50948. name: "Heart (Front)",
  50949. image: {
  50950. source: "./media/characters/jess/heart-front.svg"
  50951. }
  50952. },
  50953. heartSide: {
  50954. height: math.unit(0.51790695213, "feet"),
  50955. name: "Heart (Side)",
  50956. image: {
  50957. source: "./media/characters/jess/heart-side.svg"
  50958. }
  50959. },
  50960. earsAndNoseFront: {
  50961. height: math.unit(0.29385483995, "feet"),
  50962. name: "Ears and Nose (Front)",
  50963. image: {
  50964. source: "./media/characters/jess/ears-and-nose-front.svg"
  50965. }
  50966. },
  50967. earsAndNoseSide: {
  50968. height: math.unit(0.18109658741, "feet"),
  50969. name: "Ears and Nose (Side)",
  50970. image: {
  50971. source: "./media/characters/jess/ears-and-nose-side.svg"
  50972. }
  50973. },
  50974. },
  50975. [
  50976. {
  50977. name: "Normal",
  50978. height: math.unit(5 + 8/12, "feet"),
  50979. default: true
  50980. },
  50981. ]
  50982. ))
  50983. characterMakers.push(() => makeCharacter(
  50984. { name: "Wimpering", species: ["human"], tags: ["anthro"] },
  50985. {
  50986. front: {
  50987. height: math.unit(6, "feet"),
  50988. weight: math.unit(6.64467e-7, "grams"),
  50989. name: "Front",
  50990. image: {
  50991. source: "./media/characters/wimpering/front.svg",
  50992. extra: 597/587,
  50993. bottom: 34/631
  50994. }
  50995. },
  50996. },
  50997. [
  50998. {
  50999. name: "Micro",
  51000. height: math.unit(0.4, "mm"),
  51001. default: true
  51002. },
  51003. ]
  51004. ))
  51005. characterMakers.push(() => makeCharacter(
  51006. { name: "Keltre", species: ["dog"], tags: ["anthro"] },
  51007. {
  51008. front: {
  51009. height: math.unit(5 + 2/12, "feet"),
  51010. weight: math.unit(110, "lb"),
  51011. name: "Front",
  51012. image: {
  51013. source: "./media/characters/keltre/front.svg",
  51014. extra: 1099/1057,
  51015. bottom: 22/1121
  51016. }
  51017. },
  51018. back: {
  51019. height: math.unit(5 + 2/12, "feet"),
  51020. weight: math.unit(110, "lb"),
  51021. name: "Back",
  51022. image: {
  51023. source: "./media/characters/keltre/back.svg",
  51024. extra: 1095/1053,
  51025. bottom: 17/1112
  51026. }
  51027. },
  51028. dressed: {
  51029. height: math.unit(5 + 2/12, "feet"),
  51030. weight: math.unit(110, "lb"),
  51031. name: "Dressed",
  51032. image: {
  51033. source: "./media/characters/keltre/dressed.svg",
  51034. extra: 1099/1057,
  51035. bottom: 22/1121
  51036. }
  51037. },
  51038. winter: {
  51039. height: math.unit(5 + 2/12, "feet"),
  51040. weight: math.unit(110, "lb"),
  51041. name: "Winter",
  51042. image: {
  51043. source: "./media/characters/keltre/winter.svg",
  51044. extra: 1099/1057,
  51045. bottom: 22/1121
  51046. }
  51047. },
  51048. head: {
  51049. height: math.unit(1.61 * 0.86, "feet"),
  51050. name: "Head",
  51051. image: {
  51052. source: "./media/characters/keltre/head.svg",
  51053. extra: 534/421,
  51054. bottom: 0/534
  51055. }
  51056. },
  51057. hand: {
  51058. height: math.unit(1.3 * 0.86, "feet"),
  51059. name: "Hand",
  51060. image: {
  51061. source: "./media/characters/keltre/hand.svg"
  51062. }
  51063. },
  51064. foot: {
  51065. height: math.unit(1.8 * 0.86, "feet"),
  51066. name: "Foot",
  51067. image: {
  51068. source: "./media/characters/keltre/foot.svg"
  51069. }
  51070. },
  51071. },
  51072. [
  51073. {
  51074. name: "Fine",
  51075. height: math.unit(1, "inch")
  51076. },
  51077. {
  51078. name: "Dimnutive",
  51079. height: math.unit(4, "inches")
  51080. },
  51081. {
  51082. name: "Tiny",
  51083. height: math.unit(1, "foot")
  51084. },
  51085. {
  51086. name: "Small",
  51087. height: math.unit(3, "feet")
  51088. },
  51089. {
  51090. name: "Normal",
  51091. height: math.unit(5 + 2/12, "feet"),
  51092. default: true
  51093. },
  51094. ]
  51095. ))
  51096. characterMakers.push(() => makeCharacter(
  51097. { name: "Nox", species: ["cat"], tags: ["anthro"] },
  51098. {
  51099. front: {
  51100. height: math.unit(6 + 2/12, "feet"),
  51101. name: "Front",
  51102. image: {
  51103. source: "./media/characters/nox/front.svg",
  51104. extra: 1917/1830,
  51105. bottom: 74/1991
  51106. }
  51107. },
  51108. back: {
  51109. height: math.unit(6 + 2/12, "feet"),
  51110. name: "Back",
  51111. image: {
  51112. source: "./media/characters/nox/back.svg",
  51113. extra: 1896/1815,
  51114. bottom: 21/1917
  51115. }
  51116. },
  51117. head: {
  51118. height: math.unit(1.1, "feet"),
  51119. name: "Head",
  51120. image: {
  51121. source: "./media/characters/nox/head.svg",
  51122. extra: 874/704,
  51123. bottom: 0/874
  51124. }
  51125. },
  51126. tattoo: {
  51127. height: math.unit(0.729, "feet"),
  51128. name: "Tattoo",
  51129. image: {
  51130. source: "./media/characters/nox/tattoo.svg"
  51131. }
  51132. },
  51133. },
  51134. [
  51135. {
  51136. name: "Normal",
  51137. height: math.unit(6 + 2/12, "feet")
  51138. },
  51139. {
  51140. name: "Gigamacro",
  51141. height: math.unit(2, "earths"),
  51142. default: true
  51143. },
  51144. {
  51145. name: "Cosmic",
  51146. height: math.unit(867, "yottameters")
  51147. },
  51148. ]
  51149. ))
  51150. characterMakers.push(() => makeCharacter(
  51151. { name: "Caspian", species: ["ferret"], tags: ["anthro"] },
  51152. {
  51153. front: {
  51154. height: math.unit(6, "feet"),
  51155. weight: math.unit(150, "lb"),
  51156. name: "Front",
  51157. image: {
  51158. source: "./media/characters/caspian/front.svg",
  51159. extra: 1443/1359,
  51160. bottom: 0/1443
  51161. }
  51162. },
  51163. back: {
  51164. height: math.unit(6, "feet"),
  51165. weight: math.unit(150, "lb"),
  51166. name: "Back",
  51167. image: {
  51168. source: "./media/characters/caspian/back.svg",
  51169. extra: 1379/1309,
  51170. bottom: 0/1379
  51171. }
  51172. },
  51173. head: {
  51174. height: math.unit(0.9, "feet"),
  51175. name: "Head",
  51176. image: {
  51177. source: "./media/characters/caspian/head.svg",
  51178. extra: 692/492,
  51179. bottom: 0/692
  51180. }
  51181. },
  51182. headAlt: {
  51183. height: math.unit(0.95, "feet"),
  51184. name: "Head (Alt)",
  51185. image: {
  51186. source: "./media/characters/caspian/head-alt.svg",
  51187. extra: 668/508,
  51188. bottom: 0/668
  51189. }
  51190. },
  51191. hand: {
  51192. height: math.unit(0.8, "feet"),
  51193. name: "Hand",
  51194. image: {
  51195. source: "./media/characters/caspian/hand.svg"
  51196. }
  51197. },
  51198. paw: {
  51199. height: math.unit(0.95, "feet"),
  51200. name: "Paw",
  51201. image: {
  51202. source: "./media/characters/caspian/paw.svg"
  51203. }
  51204. },
  51205. },
  51206. [
  51207. {
  51208. name: "Normal",
  51209. height: math.unit(162, "feet"),
  51210. default: true
  51211. },
  51212. ]
  51213. ))
  51214. characterMakers.push(() => makeCharacter(
  51215. { name: "Myra Aisling", species: ["coyote"], tags: ["anthro"] },
  51216. {
  51217. front: {
  51218. height: math.unit(6, "feet"),
  51219. name: "Front",
  51220. image: {
  51221. source: "./media/characters/myra-aisling/front.svg",
  51222. extra: 1268/1166,
  51223. bottom: 73/1341
  51224. }
  51225. },
  51226. back: {
  51227. height: math.unit(6, "feet"),
  51228. name: "Back",
  51229. image: {
  51230. source: "./media/characters/myra-aisling/back.svg",
  51231. extra: 1249/1149,
  51232. bottom: 79/1328
  51233. }
  51234. },
  51235. dressed: {
  51236. height: math.unit(6, "feet"),
  51237. name: "Dressed",
  51238. image: {
  51239. source: "./media/characters/myra-aisling/dressed.svg",
  51240. extra: 1290/1189,
  51241. bottom: 47/1337
  51242. }
  51243. },
  51244. hand: {
  51245. height: math.unit(1.1, "feet"),
  51246. name: "Hand",
  51247. image: {
  51248. source: "./media/characters/myra-aisling/hand.svg"
  51249. }
  51250. },
  51251. paw: {
  51252. height: math.unit(1.23, "feet"),
  51253. name: "Paw",
  51254. image: {
  51255. source: "./media/characters/myra-aisling/paw.svg"
  51256. }
  51257. },
  51258. },
  51259. [
  51260. {
  51261. name: "Normal",
  51262. height: math.unit(160, "feet"),
  51263. default: true
  51264. },
  51265. ]
  51266. ))
  51267. characterMakers.push(() => makeCharacter(
  51268. { name: "Tenley Sidero", species: ["lycanroc"], tags: ["anthro"] },
  51269. {
  51270. front: {
  51271. height: math.unit(6, "feet"),
  51272. name: "Front",
  51273. image: {
  51274. source: "./media/characters/tenley-sidero/front.svg",
  51275. extra: 1365/1276,
  51276. bottom: 47/1412
  51277. }
  51278. },
  51279. back: {
  51280. height: math.unit(6, "feet"),
  51281. name: "Back",
  51282. image: {
  51283. source: "./media/characters/tenley-sidero/back.svg",
  51284. extra: 1383/1283,
  51285. bottom: 35/1418
  51286. }
  51287. },
  51288. dressed: {
  51289. height: math.unit(6, "feet"),
  51290. name: "Dressed",
  51291. image: {
  51292. source: "./media/characters/tenley-sidero/dressed.svg",
  51293. extra: 1364/1275,
  51294. bottom: 42/1406
  51295. }
  51296. },
  51297. head: {
  51298. height: math.unit(1.47, "feet"),
  51299. name: "Head",
  51300. image: {
  51301. source: "./media/characters/tenley-sidero/head.svg",
  51302. extra: 610/490,
  51303. bottom: 0/610
  51304. }
  51305. },
  51306. },
  51307. [
  51308. {
  51309. name: "Normal",
  51310. height: math.unit(154, "feet"),
  51311. default: true
  51312. },
  51313. ]
  51314. ))
  51315. characterMakers.push(() => makeCharacter(
  51316. { name: "Mallory", species: ["rabbit"], tags: ["anthro"] },
  51317. {
  51318. front: {
  51319. height: math.unit(5, "inches"),
  51320. name: "Front",
  51321. image: {
  51322. source: "./media/characters/mallory/front.svg",
  51323. extra: 1919/1678,
  51324. bottom: 29/1948
  51325. }
  51326. },
  51327. hand: {
  51328. height: math.unit(0.73, "inches"),
  51329. name: "Hand",
  51330. image: {
  51331. source: "./media/characters/mallory/hand.svg"
  51332. }
  51333. },
  51334. paw: {
  51335. height: math.unit(0.68, "inches"),
  51336. name: "Paw",
  51337. image: {
  51338. source: "./media/characters/mallory/paw.svg"
  51339. }
  51340. },
  51341. },
  51342. [
  51343. {
  51344. name: "Small",
  51345. height: math.unit(5, "inches"),
  51346. default: true
  51347. },
  51348. ]
  51349. ))
  51350. characterMakers.push(() => makeCharacter(
  51351. { name: "Mab", species: ["opossum"], tags: ["anthro"] },
  51352. {
  51353. naked: {
  51354. height: math.unit(6, "feet"),
  51355. name: "Naked",
  51356. image: {
  51357. source: "./media/characters/mab/naked.svg",
  51358. extra: 1855/1757,
  51359. bottom: 208/2063
  51360. }
  51361. },
  51362. outside: {
  51363. height: math.unit(6, "feet"),
  51364. name: "Outside",
  51365. image: {
  51366. source: "./media/characters/mab/outside.svg",
  51367. extra: 1855/1757,
  51368. bottom: 208/2063
  51369. }
  51370. },
  51371. party: {
  51372. height: math.unit(6, "feet"),
  51373. name: "Party",
  51374. image: {
  51375. source: "./media/characters/mab/party.svg",
  51376. extra: 1855/1757,
  51377. bottom: 208/2063
  51378. }
  51379. },
  51380. },
  51381. [
  51382. {
  51383. name: "Normal",
  51384. height: math.unit(165, "feet"),
  51385. default: true
  51386. },
  51387. ]
  51388. ))
  51389. characterMakers.push(() => makeCharacter(
  51390. { name: "Winter", species: ["arcanine"], tags: ["feral"] },
  51391. {
  51392. feral: {
  51393. height: math.unit(12, "feet"),
  51394. weight: math.unit(20000, "lb"),
  51395. name: "Side",
  51396. image: {
  51397. source: "./media/characters/winter/feral.svg",
  51398. extra: 1286/943,
  51399. bottom: 112/1398
  51400. },
  51401. form: "feral",
  51402. default: true
  51403. },
  51404. feralNsfw: {
  51405. height: math.unit(12, "feet"),
  51406. weight: math.unit(20000, "lb"),
  51407. name: "Side (NSFW)",
  51408. image: {
  51409. source: "./media/characters/winter/feral-nsfw.svg",
  51410. extra: 1286/943,
  51411. bottom: 112/1398
  51412. },
  51413. form: "feral"
  51414. },
  51415. dick: {
  51416. height: math.unit(3.79, "feet"),
  51417. name: "Dick",
  51418. image: {
  51419. source: "./media/characters/winter/dick.svg"
  51420. },
  51421. form: "feral"
  51422. },
  51423. anthro: {
  51424. height: math.unit(12, "feet"),
  51425. weight: math.unit(10, "tons"),
  51426. name: "Anthro",
  51427. image: {
  51428. source: "./media/characters/winter/anthro.svg",
  51429. extra: 1701/1553,
  51430. bottom: 64/1765
  51431. },
  51432. form: "anthro",
  51433. default: true
  51434. },
  51435. },
  51436. [
  51437. {
  51438. name: "Big",
  51439. height: math.unit(12, "feet"),
  51440. default: true,
  51441. form: "feral"
  51442. },
  51443. {
  51444. name: "Big",
  51445. height: math.unit(12, "feet"),
  51446. default: true,
  51447. form: "anthro"
  51448. },
  51449. ],
  51450. {
  51451. "feral": {
  51452. name: "Feral",
  51453. default: true
  51454. },
  51455. "anthro": {
  51456. name: "Anthro"
  51457. }
  51458. }
  51459. ))
  51460. characterMakers.push(() => makeCharacter(
  51461. { name: "Alto", species: ["mouse", "chinchilla"], tags: ["anthro"] },
  51462. {
  51463. front: {
  51464. height: math.unit(4.1, "inches"),
  51465. name: "Front",
  51466. image: {
  51467. source: "./media/characters/alto/front.svg",
  51468. extra: 736/627,
  51469. bottom: 90/826
  51470. }
  51471. },
  51472. },
  51473. [
  51474. {
  51475. name: "Normal",
  51476. height: math.unit(4.1, "inches"),
  51477. default: true
  51478. },
  51479. ]
  51480. ))
  51481. characterMakers.push(() => makeCharacter(
  51482. { name: "Ratstrid V", species: ["opossum"], tags: ["anthro"] },
  51483. {
  51484. sitting: {
  51485. height: math.unit(3, "feet"),
  51486. name: "Sitting",
  51487. image: {
  51488. source: "./media/characters/ratstrid-v/sitting.svg",
  51489. extra: 355/310,
  51490. bottom: 136/491
  51491. }
  51492. },
  51493. },
  51494. [
  51495. {
  51496. name: "Normal",
  51497. height: math.unit(3, "feet"),
  51498. default: true
  51499. },
  51500. ]
  51501. ))
  51502. characterMakers.push(() => makeCharacter(
  51503. { name: "Siz", species: ["cinderace"], tags: ["anthro"] },
  51504. {
  51505. back: {
  51506. height: math.unit(6, "feet"),
  51507. weight: math.unit(450, "lb"),
  51508. name: "Back",
  51509. image: {
  51510. source: "./media/characters/siz/back.svg",
  51511. extra: 1449/1274,
  51512. bottom: 13/1462
  51513. }
  51514. },
  51515. },
  51516. [
  51517. {
  51518. name: "Smallest",
  51519. height: math.unit(18 + 3/12, "feet")
  51520. },
  51521. {
  51522. name: "Modest",
  51523. height: math.unit(56 + 8/12, "feet"),
  51524. default: true
  51525. },
  51526. {
  51527. name: "Largest",
  51528. height: math.unit(3590, "feet")
  51529. },
  51530. ]
  51531. ))
  51532. characterMakers.push(() => makeCharacter(
  51533. { name: "Ven", species: ["raven"], tags: ["anthro"] },
  51534. {
  51535. front: {
  51536. height: math.unit(5 + 9/12, "feet"),
  51537. weight: math.unit(150, "lb"),
  51538. name: "Front",
  51539. image: {
  51540. source: "./media/characters/ven/front.svg",
  51541. extra: 1372/1320,
  51542. bottom: 73/1445
  51543. }
  51544. },
  51545. side: {
  51546. height: math.unit(5 + 9/12, "feet"),
  51547. weight: math.unit(1150, "lb"),
  51548. name: "Side",
  51549. image: {
  51550. source: "./media/characters/ven/side.svg",
  51551. extra: 1119/1070,
  51552. bottom: 42/1161
  51553. },
  51554. default: true
  51555. },
  51556. },
  51557. [
  51558. {
  51559. name: "Normal",
  51560. height: math.unit(5 + 9/12, "feet"),
  51561. default: true
  51562. },
  51563. ]
  51564. ))
  51565. characterMakers.push(() => makeCharacter(
  51566. { name: "Maple", species: ["caudin"], tags: ["anthro"] },
  51567. {
  51568. front: {
  51569. height: math.unit(12, "feet"),
  51570. weight: math.unit(1000, "kg"),
  51571. name: "Front",
  51572. image: {
  51573. source: "./media/characters/maple/front.svg",
  51574. extra: 1193/1081,
  51575. bottom: 22/1215
  51576. }
  51577. },
  51578. },
  51579. [
  51580. {
  51581. name: "Compressed",
  51582. height: math.unit(7, "feet")
  51583. },
  51584. {
  51585. name: "Normal",
  51586. height: math.unit(12, "feet"),
  51587. default: true
  51588. },
  51589. ]
  51590. ))
  51591. characterMakers.push(() => makeCharacter(
  51592. { name: "Nora", species: ["blaziken"], tags: ["anthro"] },
  51593. {
  51594. front: {
  51595. height: math.unit(9, "feet"),
  51596. weight: math.unit(1500, "lb"),
  51597. name: "Front",
  51598. image: {
  51599. source: "./media/characters/nora/front.svg",
  51600. extra: 1348/1286,
  51601. bottom: 218/1566
  51602. }
  51603. },
  51604. erect: {
  51605. height: math.unit(9, "feet"),
  51606. weight: math.unit(11500, "lb"),
  51607. name: "Erect",
  51608. image: {
  51609. source: "./media/characters/nora/erect.svg",
  51610. extra: 1488/1433,
  51611. bottom: 133/1621
  51612. }
  51613. },
  51614. },
  51615. [
  51616. {
  51617. name: "Normal",
  51618. height: math.unit(9, "feet"),
  51619. default: true
  51620. },
  51621. ]
  51622. ))
  51623. characterMakers.push(() => makeCharacter(
  51624. { name: "North (Caudin)", species: ["caudin"], tags: ["anthro"] },
  51625. {
  51626. front: {
  51627. height: math.unit(25, "feet"),
  51628. weight: math.unit(27500, "lb"),
  51629. name: "Front",
  51630. image: {
  51631. source: "./media/characters/north-caudin/front.svg",
  51632. extra: 1184/1082,
  51633. bottom: 23/1207
  51634. }
  51635. },
  51636. },
  51637. [
  51638. {
  51639. name: "Compressed",
  51640. height: math.unit(10, "feet")
  51641. },
  51642. {
  51643. name: "Normal",
  51644. height: math.unit(25, "feet"),
  51645. default: true
  51646. },
  51647. ]
  51648. ))
  51649. characterMakers.push(() => makeCharacter(
  51650. { name: "Merrian", species: ["caudin", "avian"], tags: ["anthro"] },
  51651. {
  51652. front: {
  51653. height: math.unit(9, "feet"),
  51654. weight: math.unit(1250, "lb"),
  51655. name: "Front",
  51656. image: {
  51657. source: "./media/characters/merrian/front.svg",
  51658. extra: 2393/2304,
  51659. bottom: 40/2433
  51660. }
  51661. },
  51662. },
  51663. [
  51664. {
  51665. name: "Normal",
  51666. height: math.unit(9, "feet"),
  51667. default: true
  51668. },
  51669. ]
  51670. ))
  51671. characterMakers.push(() => makeCharacter(
  51672. { name: "Hazel", species: ["red-winged-blackbird"], tags: ["anthro"] },
  51673. {
  51674. front: {
  51675. height: math.unit(9, "feet"),
  51676. weight: math.unit(1000, "lb"),
  51677. name: "Front",
  51678. image: {
  51679. source: "./media/characters/hazel/front.svg",
  51680. extra: 2351/2298,
  51681. bottom: 38/2389
  51682. }
  51683. },
  51684. },
  51685. [
  51686. {
  51687. name: "Normal",
  51688. height: math.unit(9, "feet"),
  51689. default: true
  51690. },
  51691. ]
  51692. ))
  51693. characterMakers.push(() => makeCharacter(
  51694. { name: "Emma", species: ["caudin"], tags: ["anthro"] },
  51695. {
  51696. front: {
  51697. height: math.unit(13, "feet"),
  51698. weight: math.unit(3200, "lb"),
  51699. name: "Front",
  51700. image: {
  51701. source: "./media/characters/emma/front.svg",
  51702. extra: 2263/2029,
  51703. bottom: 68/2331
  51704. }
  51705. },
  51706. },
  51707. [
  51708. {
  51709. name: "Normal",
  51710. height: math.unit(13, "feet"),
  51711. default: true
  51712. },
  51713. ]
  51714. ))
  51715. characterMakers.push(() => makeCharacter(
  51716. { name: "Ilumina", species: ["hooded-wheater"], tags: ["anthro"] },
  51717. {
  51718. front: {
  51719. height: math.unit(11 + 9/12, "feet"),
  51720. weight: math.unit(2500, "lb"),
  51721. name: "Front",
  51722. image: {
  51723. source: "./media/characters/ilumina/front.svg",
  51724. extra: 2248/2209,
  51725. bottom: 164/2412
  51726. }
  51727. },
  51728. },
  51729. [
  51730. {
  51731. name: "Normal",
  51732. height: math.unit(11 + 9/12, "feet"),
  51733. default: true
  51734. },
  51735. ]
  51736. ))
  51737. characterMakers.push(() => makeCharacter(
  51738. { name: "Moonshine", species: ["caudin"], tags: ["anthro"] },
  51739. {
  51740. front: {
  51741. height: math.unit(8 + 10/12, "feet"),
  51742. weight: math.unit(1350, "lb"),
  51743. name: "Front",
  51744. image: {
  51745. source: "./media/characters/moonshine/front.svg",
  51746. extra: 2395/2288,
  51747. bottom: 40/2435
  51748. }
  51749. },
  51750. },
  51751. [
  51752. {
  51753. name: "Normal",
  51754. height: math.unit(8 + 10/12, "feet"),
  51755. default: true
  51756. },
  51757. ]
  51758. ))
  51759. characterMakers.push(() => makeCharacter(
  51760. { name: "Aletia", species: ["caudin"], tags: ["anthro"] },
  51761. {
  51762. front: {
  51763. height: math.unit(14, "feet"),
  51764. weight: math.unit(3400, "lb"),
  51765. name: "Front",
  51766. image: {
  51767. source: "./media/characters/aletia/front.svg",
  51768. extra: 1185/1052,
  51769. bottom: 21/1206
  51770. }
  51771. },
  51772. },
  51773. [
  51774. {
  51775. name: "Compressed",
  51776. height: math.unit(8, "feet")
  51777. },
  51778. {
  51779. name: "Normal",
  51780. height: math.unit(14, "feet"),
  51781. default: true
  51782. },
  51783. ]
  51784. ))
  51785. characterMakers.push(() => makeCharacter(
  51786. { name: "Deidra", species: ["caudin"], tags: ["anthro"] },
  51787. {
  51788. front: {
  51789. height: math.unit(17, "feet"),
  51790. weight: math.unit(6500, "lb"),
  51791. name: "Front",
  51792. image: {
  51793. source: "./media/characters/deidra/front.svg",
  51794. extra: 1201/1081,
  51795. bottom: 16/1217
  51796. }
  51797. },
  51798. },
  51799. [
  51800. {
  51801. name: "Compressed",
  51802. height: math.unit(9 + 6/12, "feet")
  51803. },
  51804. {
  51805. name: "Normal",
  51806. height: math.unit(17, "feet"),
  51807. default: true
  51808. },
  51809. ]
  51810. ))
  51811. characterMakers.push(() => makeCharacter(
  51812. { name: "Freki Yrmori", species: ["folf"], tags: ["anthro"] },
  51813. {
  51814. front: {
  51815. height: math.unit(7 + 4/12, "feet"),
  51816. weight: math.unit(280, "lb"),
  51817. name: "Front",
  51818. image: {
  51819. source: "./media/characters/freki-yrmori/front.svg",
  51820. extra: 1286/1182,
  51821. bottom: 29/1315
  51822. }
  51823. },
  51824. maw: {
  51825. height: math.unit(0.9, "feet"),
  51826. name: "Maw",
  51827. image: {
  51828. source: "./media/characters/freki-yrmori/maw.svg"
  51829. }
  51830. },
  51831. },
  51832. [
  51833. {
  51834. name: "Normal",
  51835. height: math.unit(7 + 4/12, "feet"),
  51836. default: true
  51837. },
  51838. {
  51839. name: "Macro",
  51840. height: math.unit(38.5, "meters")
  51841. },
  51842. ]
  51843. ))
  51844. characterMakers.push(() => makeCharacter(
  51845. { name: "Aetherios", species: ["dragon"], tags: ["feral"] },
  51846. {
  51847. side: {
  51848. height: math.unit(47.2, "meters"),
  51849. weight: math.unit(10000, "tons"),
  51850. name: "Side",
  51851. image: {
  51852. source: "./media/characters/aetherios/side.svg",
  51853. extra: 2363/642,
  51854. bottom: 221/2584
  51855. }
  51856. },
  51857. top: {
  51858. height: math.unit(240, "meters"),
  51859. weight: math.unit(10000, "tons"),
  51860. name: "Top",
  51861. image: {
  51862. source: "./media/characters/aetherios/top.svg"
  51863. }
  51864. },
  51865. bottom: {
  51866. height: math.unit(240, "meters"),
  51867. weight: math.unit(10000, "tons"),
  51868. name: "Bottom",
  51869. image: {
  51870. source: "./media/characters/aetherios/bottom.svg"
  51871. }
  51872. },
  51873. head: {
  51874. height: math.unit(38.6, "meters"),
  51875. name: "Head",
  51876. image: {
  51877. source: "./media/characters/aetherios/head.svg",
  51878. extra: 1335/1112,
  51879. bottom: 0/1335
  51880. }
  51881. },
  51882. front: {
  51883. height: math.unit(29, "meters"),
  51884. name: "Front",
  51885. image: {
  51886. source: "./media/characters/aetherios/front.svg",
  51887. extra: 1266/953,
  51888. bottom: 158/1424
  51889. }
  51890. },
  51891. maw: {
  51892. height: math.unit(16.37, "meters"),
  51893. name: "Maw",
  51894. image: {
  51895. source: "./media/characters/aetherios/maw.svg",
  51896. extra: 748/637,
  51897. bottom: 0/748
  51898. },
  51899. extraAttributes: {
  51900. preyCapacity: {
  51901. name: "Capacity",
  51902. power: 3,
  51903. type: "volume",
  51904. base: math.unit(1000, "people")
  51905. },
  51906. tongueSize: {
  51907. name: "Tongue Size",
  51908. power: 2,
  51909. type: "area",
  51910. base: math.unit(21, "m^2")
  51911. }
  51912. }
  51913. },
  51914. forepaw: {
  51915. height: math.unit(18, "meters"),
  51916. name: "Forepaw",
  51917. image: {
  51918. source: "./media/characters/aetherios/forepaw.svg"
  51919. }
  51920. },
  51921. hindpaw: {
  51922. height: math.unit(23, "meters"),
  51923. name: "Hindpaw",
  51924. image: {
  51925. source: "./media/characters/aetherios/hindpaw.svg"
  51926. }
  51927. },
  51928. genitals: {
  51929. height: math.unit(42, "meters"),
  51930. name: "Genitals",
  51931. image: {
  51932. source: "./media/characters/aetherios/genitals.svg"
  51933. }
  51934. },
  51935. },
  51936. [
  51937. {
  51938. name: "Normal",
  51939. height: math.unit(47.2, "meters"),
  51940. default: true
  51941. },
  51942. {
  51943. name: "Macro",
  51944. height: math.unit(160, "meters")
  51945. },
  51946. {
  51947. name: "Mega",
  51948. height: math.unit(1.87, "km")
  51949. },
  51950. {
  51951. name: "Giga",
  51952. height: math.unit(40000, "km")
  51953. },
  51954. {
  51955. name: "Stellar",
  51956. height: math.unit(158000000, "km")
  51957. },
  51958. {
  51959. name: "Cosmic",
  51960. height: math.unit(9.46e12, "km")
  51961. },
  51962. ]
  51963. ))
  51964. characterMakers.push(() => makeCharacter(
  51965. { name: "Mizu (Gieeg)", species: ["gieeg"], tags: ["anthro"] },
  51966. {
  51967. front: {
  51968. height: math.unit(5 + 4/12, "feet"),
  51969. weight: math.unit(80, "lb"),
  51970. name: "Front",
  51971. image: {
  51972. source: "./media/characters/mizu-gieeg/front.svg",
  51973. extra: 850/709,
  51974. bottom: 52/902
  51975. }
  51976. },
  51977. back: {
  51978. height: math.unit(5 + 4/12, "feet"),
  51979. weight: math.unit(80, "lb"),
  51980. name: "Back",
  51981. image: {
  51982. source: "./media/characters/mizu-gieeg/back.svg",
  51983. extra: 882/745,
  51984. bottom: 25/907
  51985. }
  51986. },
  51987. },
  51988. [
  51989. {
  51990. name: "Normal",
  51991. height: math.unit(5 + 4/12, "feet"),
  51992. default: true
  51993. },
  51994. ]
  51995. ))
  51996. characterMakers.push(() => makeCharacter(
  51997. { name: "Roselle St. Papier", species: ["ringtail"], tags: ["anthro"] },
  51998. {
  51999. front: {
  52000. height: math.unit(6, "feet"),
  52001. name: "Front",
  52002. image: {
  52003. source: "./media/characters/roselle-st-papier/front.svg",
  52004. extra: 1430/1280,
  52005. bottom: 37/1467
  52006. }
  52007. },
  52008. back: {
  52009. height: math.unit(6, "feet"),
  52010. name: "Back",
  52011. image: {
  52012. source: "./media/characters/roselle-st-papier/back.svg",
  52013. extra: 1491/1296,
  52014. bottom: 23/1514
  52015. }
  52016. },
  52017. ear: {
  52018. height: math.unit(1.26, "feet"),
  52019. name: "Ear",
  52020. image: {
  52021. source: "./media/characters/roselle-st-papier/ear.svg"
  52022. }
  52023. },
  52024. },
  52025. [
  52026. {
  52027. name: "Normal",
  52028. height: math.unit(150, "feet"),
  52029. default: true
  52030. },
  52031. ]
  52032. ))
  52033. characterMakers.push(() => makeCharacter(
  52034. { name: "Valargent", species: ["fox"], tags: ["anthro"] },
  52035. {
  52036. front: {
  52037. height: math.unit(1, "inches"),
  52038. name: "Front",
  52039. image: {
  52040. source: "./media/characters/valargent/front.svg",
  52041. extra: 1825/1694,
  52042. bottom: 62/1887
  52043. }
  52044. },
  52045. back: {
  52046. height: math.unit(1, "inches"),
  52047. name: "Back",
  52048. image: {
  52049. source: "./media/characters/valargent/back.svg",
  52050. extra: 1775/1682,
  52051. bottom: 88/1863
  52052. }
  52053. },
  52054. },
  52055. [
  52056. {
  52057. name: "Micro",
  52058. height: math.unit(1, "inch"),
  52059. default: true
  52060. },
  52061. ]
  52062. ))
  52063. characterMakers.push(() => makeCharacter(
  52064. { name: "Zarina", species: ["hisuian-zoroark"], tags: ["anthro"] },
  52065. {
  52066. front: {
  52067. height: math.unit(3.4, "meters"),
  52068. name: "Front",
  52069. image: {
  52070. source: "./media/characters/zarina/front.svg",
  52071. extra: 1733/1425,
  52072. bottom: 93/1826
  52073. }
  52074. },
  52075. squatting: {
  52076. height: math.unit(2.14, "meters"),
  52077. name: "Squatting",
  52078. image: {
  52079. source: "./media/characters/zarina/squatting.svg",
  52080. extra: 1073/788,
  52081. bottom: 63/1136
  52082. }
  52083. },
  52084. back: {
  52085. height: math.unit(2.14, "meters"),
  52086. name: "Back",
  52087. image: {
  52088. source: "./media/characters/zarina/back.svg",
  52089. extra: 1128/885,
  52090. bottom: 0/1128
  52091. }
  52092. },
  52093. },
  52094. [
  52095. {
  52096. name: "Normal",
  52097. height: math.unit(3.4, "meters"),
  52098. default: true
  52099. },
  52100. {
  52101. name: "Big",
  52102. height: math.unit(5, "meters")
  52103. },
  52104. {
  52105. name: "Macro",
  52106. height: math.unit(110, "meters")
  52107. },
  52108. ]
  52109. ))
  52110. characterMakers.push(() => makeCharacter(
  52111. { name: "VentusAstroFox", species: ["fox"], tags: ["anthro"] },
  52112. {
  52113. front: {
  52114. height: math.unit(7, "feet"),
  52115. name: "Front",
  52116. image: {
  52117. source: "./media/characters/ventus-astro-fox/front.svg",
  52118. extra: 1792/1623,
  52119. bottom: 28/1820
  52120. }
  52121. },
  52122. back: {
  52123. height: math.unit(7, "feet"),
  52124. name: "Back",
  52125. image: {
  52126. source: "./media/characters/ventus-astro-fox/back.svg",
  52127. extra: 1789/1620,
  52128. bottom: 31/1820
  52129. }
  52130. },
  52131. outfit: {
  52132. height: math.unit(7, "feet"),
  52133. name: "Outfit",
  52134. image: {
  52135. source: "./media/characters/ventus-astro-fox/outfit.svg",
  52136. extra: 1054/925,
  52137. bottom: 15/1069
  52138. }
  52139. },
  52140. head: {
  52141. height: math.unit(1.12, "feet"),
  52142. name: "Head",
  52143. image: {
  52144. source: "./media/characters/ventus-astro-fox/head.svg",
  52145. extra: 866/504,
  52146. bottom: 0/866
  52147. }
  52148. },
  52149. hand: {
  52150. height: math.unit(1, "feet"),
  52151. name: "Hand",
  52152. image: {
  52153. source: "./media/characters/ventus-astro-fox/hand.svg"
  52154. }
  52155. },
  52156. paw: {
  52157. height: math.unit(1.5, "feet"),
  52158. name: "Paw",
  52159. image: {
  52160. source: "./media/characters/ventus-astro-fox/paw.svg"
  52161. }
  52162. },
  52163. },
  52164. [
  52165. {
  52166. name: "Normal",
  52167. height: math.unit(7, "feet"),
  52168. default: true
  52169. },
  52170. {
  52171. name: "Macro",
  52172. height: math.unit(200, "feet")
  52173. },
  52174. {
  52175. name: "Cosmic",
  52176. height: math.unit(3, "universes")
  52177. },
  52178. ]
  52179. ))
  52180. characterMakers.push(() => makeCharacter(
  52181. { name: "CORE-T", species: ["cybeast"], tags: ["anthro"] },
  52182. {
  52183. front: {
  52184. height: math.unit(3, "meters"),
  52185. weight: math.unit(7000, "lb"),
  52186. name: "Front",
  52187. image: {
  52188. source: "./media/characters/core-t/front.svg",
  52189. extra: 5729/4941,
  52190. bottom: 1129/6858
  52191. }
  52192. },
  52193. },
  52194. [
  52195. {
  52196. name: "Big",
  52197. height: math.unit(3, "meters"),
  52198. default: true
  52199. },
  52200. ]
  52201. ))
  52202. characterMakers.push(() => makeCharacter(
  52203. { name: "Cadbunny", species: ["cinderace"], tags: ["anthro"] },
  52204. {
  52205. normal: {
  52206. height: math.unit(6 + 6/12, "feet"),
  52207. weight: math.unit(275, "lb"),
  52208. name: "Front",
  52209. image: {
  52210. source: "./media/characters/cadbunny/normal.svg",
  52211. extra: 1129/947,
  52212. bottom: 93/1222
  52213. },
  52214. default: true,
  52215. form: "normal"
  52216. },
  52217. gigantamax: {
  52218. height: math.unit(26, "feet"),
  52219. weight: math.unit(16000, "lb"),
  52220. name: "Front",
  52221. image: {
  52222. source: "./media/characters/cadbunny/gigantamax.svg",
  52223. extra: 1133/944,
  52224. bottom: 90/1223
  52225. },
  52226. default: true,
  52227. form: "gigantamax"
  52228. },
  52229. },
  52230. [
  52231. {
  52232. name: "Normal",
  52233. height: math.unit(6 + 6/12, "feet"),
  52234. default: true,
  52235. form: "normal"
  52236. },
  52237. {
  52238. name: "Small",
  52239. height: math.unit(26, "feet"),
  52240. default: true,
  52241. form: "gigantamax"
  52242. },
  52243. {
  52244. name: "Large",
  52245. height: math.unit(78, "feet"),
  52246. form: "gigantamax"
  52247. },
  52248. ],
  52249. {
  52250. "normal": {
  52251. name: "Normal",
  52252. default: true
  52253. },
  52254. "gigantamax": {
  52255. name: "Gigantamax"
  52256. }
  52257. }
  52258. ))
  52259. characterMakers.push(() => makeCharacter(
  52260. { name: "Blitz Dunkelheit", species: ["wolf"], tags: ["anthro", "feral"] },
  52261. {
  52262. anthroFront: {
  52263. height: math.unit(8, "feet"),
  52264. weight: math.unit(300, "lb"),
  52265. name: "Front",
  52266. image: {
  52267. source: "./media/characters/blitz-dunkelheit/anthro-front.svg",
  52268. extra: 1272/1176,
  52269. bottom: 53/1325
  52270. },
  52271. form: "anthro",
  52272. default: true
  52273. },
  52274. feralSide: {
  52275. height: math.unit(4, "feet"),
  52276. weight: math.unit(250, "lb"),
  52277. name: "Side",
  52278. image: {
  52279. source: "./media/characters/blitz-dunkelheit/feral-side.svg",
  52280. extra: 731/621,
  52281. bottom: 0/731
  52282. },
  52283. form: "feral",
  52284. default: true
  52285. },
  52286. },
  52287. [
  52288. {
  52289. name: "Regular",
  52290. height: math.unit(8, "feet"),
  52291. form: "anthro"
  52292. },
  52293. {
  52294. name: "Macro",
  52295. height: math.unit(250, "feet"),
  52296. form: "anthro",
  52297. default: true
  52298. },
  52299. {
  52300. name: "Regular",
  52301. height: math.unit(4, "feet"),
  52302. form: "feral"
  52303. },
  52304. {
  52305. name: "Macro",
  52306. height: math.unit(125, "feet"),
  52307. form: "feral",
  52308. default: true
  52309. },
  52310. ],
  52311. {
  52312. "anthro": {
  52313. name: "Anthro",
  52314. default: true
  52315. },
  52316. "feral": {
  52317. name: "Feral",
  52318. },
  52319. }
  52320. ))
  52321. characterMakers.push(() => makeCharacter(
  52322. { name: "Maple (Javira Dragon)", species: ["javira-dragon"], tags: ["feral"] },
  52323. {
  52324. front: {
  52325. height: math.unit(11 + 10/12, "feet"),
  52326. weight: math.unit(1587, "kg"),
  52327. name: "Front",
  52328. image: {
  52329. source: "./media/characters/maple-javira-dragon/front.svg",
  52330. extra: 1136/744,
  52331. bottom: 73/1209
  52332. }
  52333. },
  52334. side: {
  52335. height: math.unit(11 + 10/12, "feet"),
  52336. weight: math.unit(1587, "kg"),
  52337. name: "Side",
  52338. image: {
  52339. source: "./media/characters/maple-javira-dragon/side.svg",
  52340. extra: 712/505,
  52341. bottom: 17/729
  52342. }
  52343. },
  52344. head: {
  52345. height: math.unit(8.05, "feet"),
  52346. name: "Head",
  52347. image: {
  52348. source: "./media/characters/maple-javira-dragon/head.svg",
  52349. extra: 1420/1344,
  52350. bottom: 0/1420
  52351. }
  52352. },
  52353. },
  52354. [
  52355. {
  52356. name: "Normal",
  52357. height: math.unit(11 + 10/12, "feet"),
  52358. default: true
  52359. },
  52360. ]
  52361. ))
  52362. characterMakers.push(() => makeCharacter(
  52363. { name: "Sonia Wyverntail", species: ["kobold"], tags: ["anthro"] },
  52364. {
  52365. front: {
  52366. height: math.unit(117, "cm"),
  52367. weight: math.unit(50, "kg"),
  52368. name: "Front",
  52369. image: {
  52370. source: "./media/characters/sonia-wyverntail/front.svg",
  52371. extra: 708/592,
  52372. bottom: 25/733
  52373. }
  52374. },
  52375. },
  52376. [
  52377. {
  52378. name: "Normal",
  52379. height: math.unit(117, "cm"),
  52380. default: true
  52381. },
  52382. ]
  52383. ))
  52384. characterMakers.push(() => makeCharacter(
  52385. { name: "Micah", species: ["moth"], tags: ["anthro"] },
  52386. {
  52387. front: {
  52388. height: math.unit(6 + 5/12, "feet"),
  52389. name: "Front",
  52390. image: {
  52391. source: "./media/characters/micah/front.svg",
  52392. extra: 1758/1546,
  52393. bottom: 214/1972
  52394. }
  52395. },
  52396. },
  52397. [
  52398. {
  52399. name: "Normal",
  52400. height: math.unit(6 + 5/12, "feet"),
  52401. default: true
  52402. },
  52403. ]
  52404. ))
  52405. characterMakers.push(() => makeCharacter(
  52406. { name: "Zarya", species: ["skunk"], tags: ["anthro"] },
  52407. {
  52408. front: {
  52409. height: math.unit(1.75, "meters"),
  52410. weight: math.unit(100, "kg"),
  52411. name: "Front",
  52412. image: {
  52413. source: "./media/characters/zarya/front.svg",
  52414. extra: 741/735,
  52415. bottom: 44/785
  52416. },
  52417. extraAttributes: {
  52418. "tailLength": {
  52419. name: "Tail Length",
  52420. power: 1,
  52421. type: "length",
  52422. base: math.unit(180, "cm")
  52423. },
  52424. "pawLength": {
  52425. name: "Paw Length",
  52426. power: 1,
  52427. type: "length",
  52428. base: math.unit(31, "cm")
  52429. },
  52430. }
  52431. },
  52432. side: {
  52433. height: math.unit(1.75, "meters"),
  52434. weight: math.unit(100, "kg"),
  52435. name: "Side",
  52436. image: {
  52437. source: "./media/characters/zarya/side.svg",
  52438. extra: 776/770,
  52439. bottom: 17/793
  52440. },
  52441. extraAttributes: {
  52442. "tailLength": {
  52443. name: "Tail Length",
  52444. power: 1,
  52445. type: "length",
  52446. base: math.unit(180, "cm")
  52447. },
  52448. "pawLength": {
  52449. name: "Paw Length",
  52450. power: 1,
  52451. type: "length",
  52452. base: math.unit(31, "cm")
  52453. },
  52454. }
  52455. },
  52456. back: {
  52457. height: math.unit(1.75, "meters"),
  52458. weight: math.unit(100, "kg"),
  52459. name: "Back",
  52460. image: {
  52461. source: "./media/characters/zarya/back.svg",
  52462. extra: 741/735,
  52463. bottom: 44/785
  52464. },
  52465. extraAttributes: {
  52466. "tailLength": {
  52467. name: "Tail Length",
  52468. power: 1,
  52469. type: "length",
  52470. base: math.unit(180, "cm")
  52471. },
  52472. "pawLength": {
  52473. name: "Paw Length",
  52474. power: 1,
  52475. type: "length",
  52476. base: math.unit(31, "cm")
  52477. },
  52478. }
  52479. },
  52480. frontNoTail: {
  52481. height: math.unit(1.75, "meters"),
  52482. weight: math.unit(100, "kg"),
  52483. name: "Front (No Tail)",
  52484. image: {
  52485. source: "./media/characters/zarya/front-no-tail.svg",
  52486. extra: 741/735,
  52487. bottom: 44/785
  52488. },
  52489. extraAttributes: {
  52490. "tailLength": {
  52491. name: "Tail Length",
  52492. power: 1,
  52493. type: "length",
  52494. base: math.unit(180, "cm")
  52495. },
  52496. "pawLength": {
  52497. name: "Paw Length",
  52498. power: 1,
  52499. type: "length",
  52500. base: math.unit(31, "cm")
  52501. },
  52502. }
  52503. },
  52504. dressed: {
  52505. height: math.unit(1.75, "meters"),
  52506. weight: math.unit(100, "kg"),
  52507. name: "Dressed",
  52508. image: {
  52509. source: "./media/characters/zarya/dressed.svg",
  52510. extra: 683/672,
  52511. bottom: 79/762
  52512. },
  52513. extraAttributes: {
  52514. "tailLength": {
  52515. name: "Tail Length",
  52516. power: 1,
  52517. type: "length",
  52518. base: math.unit(180, "cm")
  52519. },
  52520. "pawLength": {
  52521. name: "Paw Length",
  52522. power: 1,
  52523. type: "length",
  52524. base: math.unit(31, "cm")
  52525. },
  52526. }
  52527. },
  52528. },
  52529. [
  52530. {
  52531. name: "Micro",
  52532. height: math.unit(5, "cm")
  52533. },
  52534. {
  52535. name: "Normal",
  52536. height: math.unit(1.75, "meters"),
  52537. default: true
  52538. },
  52539. {
  52540. name: "Macro",
  52541. height: math.unit(122, "meters")
  52542. },
  52543. ]
  52544. ))
  52545. characterMakers.push(() => makeCharacter(
  52546. { name: "Sven Hatisson", species: ["wolf"], tags: ["anthro"] },
  52547. {
  52548. front: {
  52549. height: math.unit(7.5, "feet"),
  52550. name: "Front",
  52551. image: {
  52552. source: "./media/characters/sven-hatisson/front.svg",
  52553. extra: 917/857,
  52554. bottom: 42/959
  52555. }
  52556. },
  52557. back: {
  52558. height: math.unit(7.5, "feet"),
  52559. name: "Back",
  52560. image: {
  52561. source: "./media/characters/sven-hatisson/back.svg",
  52562. extra: 903/856,
  52563. bottom: 15/918
  52564. }
  52565. },
  52566. },
  52567. [
  52568. {
  52569. name: "Base Height",
  52570. height: math.unit(7.5, "feet")
  52571. },
  52572. {
  52573. name: "Usual Height",
  52574. height: math.unit(13.5, "feet"),
  52575. default: true
  52576. },
  52577. {
  52578. name: "Smaller Macro",
  52579. height: math.unit(85, "feet")
  52580. },
  52581. {
  52582. name: "Moderate Macro",
  52583. height: math.unit(320, "feet")
  52584. },
  52585. {
  52586. name: "Large Macro",
  52587. height: math.unit(1000, "feet")
  52588. },
  52589. {
  52590. name: "Largest Size",
  52591. height: math.unit(2, "miles")
  52592. },
  52593. ]
  52594. ))
  52595. characterMakers.push(() => makeCharacter(
  52596. { name: "Terra", species: ["dragon", "otter"], tags: ["feral"] },
  52597. {
  52598. side: {
  52599. height: math.unit(1.8, "meters"),
  52600. weight: math.unit(275, "kg"),
  52601. name: "Side",
  52602. image: {
  52603. source: "./media/characters/terra/side.svg",
  52604. extra: 1273/1147,
  52605. bottom: 0/1273
  52606. }
  52607. },
  52608. },
  52609. [
  52610. {
  52611. name: "Normal",
  52612. height: math.unit(16.2, "meters"),
  52613. default: true
  52614. },
  52615. ]
  52616. ))
  52617. characterMakers.push(() => makeCharacter(
  52618. { name: "Rae", species: ["borzoi", "werewolf"], tags: ["anthro"] },
  52619. {
  52620. borzoiFront: {
  52621. height: math.unit(6 + 9/12, "feet"),
  52622. name: "Front",
  52623. image: {
  52624. source: "./media/characters/rae/borzoi-front.svg",
  52625. extra: 1161/1098,
  52626. bottom: 31/1192
  52627. },
  52628. form: "borzoi",
  52629. default: true
  52630. },
  52631. werewolfFront: {
  52632. height: math.unit(8 + 7/12, "feet"),
  52633. name: "Front",
  52634. image: {
  52635. source: "./media/characters/rae/werewolf-front.svg",
  52636. extra: 1411/1334,
  52637. bottom: 127/1538
  52638. },
  52639. form: "werewolf",
  52640. default: true
  52641. },
  52642. },
  52643. [
  52644. {
  52645. name: "Normal",
  52646. height: math.unit(6 + 9/12, "feet"),
  52647. default: true,
  52648. form: "borzoi"
  52649. },
  52650. {
  52651. name: "Normal",
  52652. height: math.unit(8 + 7/12, "feet"),
  52653. default: true,
  52654. form: "werewolf"
  52655. },
  52656. ],
  52657. {
  52658. "borzoi": {
  52659. name: "Borzoi",
  52660. default: true
  52661. },
  52662. "werewolf": {
  52663. name: "Werewolf",
  52664. },
  52665. }
  52666. ))
  52667. characterMakers.push(() => makeCharacter(
  52668. { name: "Kit", species: ["kitsune"], tags: ["anthro"] },
  52669. {
  52670. front: {
  52671. height: math.unit(8 + 7/12, "feet"),
  52672. weight: math.unit(482, "lb"),
  52673. name: "Front",
  52674. image: {
  52675. source: "./media/characters/kit/front.svg",
  52676. extra: 1247/1103,
  52677. bottom: 41/1288
  52678. }
  52679. },
  52680. back: {
  52681. height: math.unit(8 + 7/12, "feet"),
  52682. weight: math.unit(482, "lb"),
  52683. name: "Back",
  52684. image: {
  52685. source: "./media/characters/kit/back.svg",
  52686. extra: 1252/1123,
  52687. bottom: 21/1273
  52688. }
  52689. },
  52690. paw: {
  52691. height: math.unit(1.46, "feet"),
  52692. name: "Paw",
  52693. image: {
  52694. source: "./media/characters/kit/paw.svg"
  52695. }
  52696. },
  52697. },
  52698. [
  52699. {
  52700. name: "Normal",
  52701. height: math.unit(2.61, "meters"),
  52702. default: true
  52703. },
  52704. {
  52705. name: "\"Tall\"",
  52706. height: math.unit(8.21, "meters")
  52707. },
  52708. {
  52709. name: "Tall",
  52710. height: math.unit(19.6, "meters")
  52711. },
  52712. {
  52713. name: "Very Tall",
  52714. height: math.unit(57.91, "meters")
  52715. },
  52716. {
  52717. name: "Semi-Macro",
  52718. height: math.unit(138.64, "meters")
  52719. },
  52720. {
  52721. name: "Macro",
  52722. height: math.unit(831.99, "meters")
  52723. },
  52724. {
  52725. name: "EX-Macro",
  52726. height: math.unit(96451121, "meters")
  52727. },
  52728. {
  52729. name: "S1-Omnipotent",
  52730. height: math.unit(4.42074e+9, "meters")
  52731. },
  52732. {
  52733. name: "S2-Omnipotent",
  52734. height: math.unit(9.42074e+17, "meters")
  52735. },
  52736. {
  52737. name: "Omnipotent",
  52738. height: math.unit(4.23112e+24, "meters")
  52739. },
  52740. {
  52741. name: "Hypergod",
  52742. height: math.unit(5.05176e+27, "meters")
  52743. },
  52744. {
  52745. name: "Hypergod-EX",
  52746. height: math.unit(9.45532e+49, "meters")
  52747. },
  52748. {
  52749. name: "Hypergod-SP",
  52750. height: math.unit(9.45532e+195, "meters")
  52751. },
  52752. ]
  52753. ))
  52754. characterMakers.push(() => makeCharacter(
  52755. { name: "Celeste", species: ["raptor", "alien"], tags: ["feral"] },
  52756. {
  52757. side: {
  52758. height: math.unit(0.6, "meters"),
  52759. weight: math.unit(24, "kg"),
  52760. name: "Side",
  52761. image: {
  52762. source: "./media/characters/celeste/side.svg",
  52763. extra: 810/517,
  52764. bottom: 53/863
  52765. }
  52766. },
  52767. },
  52768. [
  52769. {
  52770. name: "Velociraptor",
  52771. height: math.unit(0.6, "meters"),
  52772. default: true
  52773. },
  52774. {
  52775. name: "Utahraptor",
  52776. height: math.unit(1.8, "meters")
  52777. },
  52778. {
  52779. name: "Gallimimus",
  52780. height: math.unit(4.0, "meters")
  52781. },
  52782. {
  52783. name: "Large",
  52784. height: math.unit(20, "meters")
  52785. },
  52786. {
  52787. name: "Planetary",
  52788. height: math.unit(50, "megameters")
  52789. },
  52790. {
  52791. name: "Stellar",
  52792. height: math.unit(1.5, "gigameters")
  52793. },
  52794. {
  52795. name: "Galactic",
  52796. height: math.unit(100, "exameters")
  52797. },
  52798. ]
  52799. ))
  52800. characterMakers.push(() => makeCharacter(
  52801. { name: "Glacia", species: ["koopew"], tags: ["anthro"] },
  52802. {
  52803. front: {
  52804. height: math.unit(6, "feet"),
  52805. weight: math.unit(210, "lb"),
  52806. name: "Front",
  52807. image: {
  52808. source: "./media/characters/glacia/front.svg",
  52809. extra: 958/901,
  52810. bottom: 45/1003
  52811. }
  52812. },
  52813. },
  52814. [
  52815. {
  52816. name: "Macro",
  52817. height: math.unit(1000, "meters"),
  52818. default: true
  52819. },
  52820. ]
  52821. ))
  52822. characterMakers.push(() => makeCharacter(
  52823. { name: "Giri", species: ["giraffe"], tags: ["anthro"] },
  52824. {
  52825. front: {
  52826. height: math.unit(4, "meters"),
  52827. name: "Front",
  52828. image: {
  52829. source: "./media/characters/giri/front.svg",
  52830. extra: 966/894,
  52831. bottom: 21/987
  52832. }
  52833. },
  52834. },
  52835. [
  52836. {
  52837. name: "Normal",
  52838. height: math.unit(4, "meters"),
  52839. default: true
  52840. },
  52841. ]
  52842. ))
  52843. characterMakers.push(() => makeCharacter(
  52844. { name: "Tin", species: ["nevrean"], tags: ["anthro"] },
  52845. {
  52846. back: {
  52847. height: math.unit(4, "feet"),
  52848. weight: math.unit(37, "lb"),
  52849. name: "Back",
  52850. image: {
  52851. source: "./media/characters/tin/back.svg",
  52852. extra: 845/780,
  52853. bottom: 28/873
  52854. }
  52855. },
  52856. },
  52857. [
  52858. {
  52859. name: "Normal",
  52860. height: math.unit(4, "feet"),
  52861. default: true
  52862. },
  52863. ]
  52864. ))
  52865. characterMakers.push(() => makeCharacter(
  52866. { name: "Cadenza Vivace", species: ["titanoboa"], tags: ["feral"] },
  52867. {
  52868. front: {
  52869. height: math.unit(25, "feet"),
  52870. name: "Front",
  52871. image: {
  52872. source: "./media/characters/cadenza-vivace/front.svg",
  52873. extra: 1842/1578,
  52874. bottom: 30/1872
  52875. }
  52876. },
  52877. },
  52878. [
  52879. {
  52880. name: "Macro",
  52881. height: math.unit(25, "feet"),
  52882. default: true
  52883. },
  52884. ]
  52885. ))
  52886. characterMakers.push(() => makeCharacter(
  52887. { name: "Zain", species: ["kangaroo"], tags: ["anthro"] },
  52888. {
  52889. front: {
  52890. height: math.unit(10, "feet"),
  52891. weight: math.unit(625, "kg"),
  52892. name: "Front",
  52893. image: {
  52894. source: "./media/characters/zain/front.svg",
  52895. extra: 1682/1498,
  52896. bottom: 223/1905
  52897. }
  52898. },
  52899. back: {
  52900. height: math.unit(10, "feet"),
  52901. weight: math.unit(625, "kg"),
  52902. name: "Back",
  52903. image: {
  52904. source: "./media/characters/zain/back.svg",
  52905. extra: 1814/1657,
  52906. bottom: 152/1966
  52907. }
  52908. },
  52909. head: {
  52910. height: math.unit(10, "feet"),
  52911. weight: math.unit(625, "kg"),
  52912. name: "Head",
  52913. image: {
  52914. source: "./media/characters/zain/head.svg",
  52915. extra: 1059/762,
  52916. bottom: 0/1059
  52917. }
  52918. },
  52919. },
  52920. [
  52921. {
  52922. name: "Normal",
  52923. height: math.unit(10, "feet"),
  52924. default: true
  52925. },
  52926. ]
  52927. ))
  52928. characterMakers.push(() => makeCharacter(
  52929. { name: "Ruchex", species: ["raichu"], tags: ["anthro"] },
  52930. {
  52931. front: {
  52932. height: math.unit(6 + 5/12, "feet"),
  52933. weight: math.unit(750, "lb"),
  52934. name: "Front",
  52935. image: {
  52936. source: "./media/characters/ruchex/front.svg",
  52937. extra: 877/820,
  52938. bottom: 17/894
  52939. },
  52940. extraAttributes: {
  52941. "width": {
  52942. name: "Width",
  52943. power: 1,
  52944. type: "length",
  52945. base: math.unit(4.757, "feet")
  52946. },
  52947. }
  52948. },
  52949. },
  52950. [
  52951. {
  52952. name: "Normal",
  52953. height: math.unit(6 + 5/12, "feet"),
  52954. default: true
  52955. },
  52956. ]
  52957. ))
  52958. characterMakers.push(() => makeCharacter(
  52959. { name: "Buster", species: ["sergal", "goo"], tags: ["anthro"] },
  52960. {
  52961. dressedFront: {
  52962. height: math.unit(191, "cm"),
  52963. weight: math.unit(80, "kg"),
  52964. name: "Front",
  52965. image: {
  52966. source: "./media/characters/buster/dressed-front.svg",
  52967. extra: 1022/973,
  52968. bottom: 69/1091
  52969. }
  52970. },
  52971. dressedBack: {
  52972. height: math.unit(191, "cm"),
  52973. weight: math.unit(80, "kg"),
  52974. name: "Back",
  52975. image: {
  52976. source: "./media/characters/buster/dressed-back.svg",
  52977. extra: 1018/970,
  52978. bottom: 55/1073
  52979. }
  52980. },
  52981. nudeFront: {
  52982. height: math.unit(191, "cm"),
  52983. weight: math.unit(80, "kg"),
  52984. name: "Front (Nude)",
  52985. image: {
  52986. source: "./media/characters/buster/nude-front.svg",
  52987. extra: 1022/973,
  52988. bottom: 69/1091
  52989. }
  52990. },
  52991. nudeBack: {
  52992. height: math.unit(191, "cm"),
  52993. weight: math.unit(80, "kg"),
  52994. name: "Back (Nude)",
  52995. image: {
  52996. source: "./media/characters/buster/nude-back.svg",
  52997. extra: 1018/970,
  52998. bottom: 55/1073
  52999. }
  53000. },
  53001. dick: {
  53002. height: math.unit(2.59, "feet"),
  53003. name: "Dick",
  53004. image: {
  53005. source: "./media/characters/buster/dick.svg"
  53006. }
  53007. },
  53008. ass: {
  53009. height: math.unit(1.2, "feet"),
  53010. name: "Ass",
  53011. image: {
  53012. source: "./media/characters/buster/ass.svg"
  53013. }
  53014. },
  53015. },
  53016. [
  53017. {
  53018. name: "Normal",
  53019. height: math.unit(191, "cm"),
  53020. default: true
  53021. },
  53022. ]
  53023. ))
  53024. characterMakers.push(() => makeCharacter(
  53025. { name: "Sonya", species: ["suicune"], tags: ["feral"] },
  53026. {
  53027. side: {
  53028. height: math.unit(8.1, "feet"),
  53029. weight: math.unit(3500, "lb"),
  53030. name: "Side",
  53031. image: {
  53032. source: "./media/characters/sonya/side.svg",
  53033. extra: 1730/1317,
  53034. bottom: 86/1816
  53035. }
  53036. },
  53037. },
  53038. [
  53039. {
  53040. name: "Normal",
  53041. height: math.unit(8.1, "feet"),
  53042. default: true
  53043. },
  53044. ]
  53045. ))
  53046. characterMakers.push(() => makeCharacter(
  53047. { name: "Cadence Andrysiak", species: ["civet"], tags: ["anthro"] },
  53048. {
  53049. front: {
  53050. height: math.unit(6, "feet"),
  53051. weight: math.unit(150, "lb"),
  53052. name: "Front",
  53053. image: {
  53054. source: "./media/characters/cadence-andrysiak/front.svg",
  53055. extra: 1164/1121,
  53056. bottom: 60/1224
  53057. }
  53058. },
  53059. back: {
  53060. height: math.unit(6, "feet"),
  53061. weight: math.unit(150, "lb"),
  53062. name: "Back",
  53063. image: {
  53064. source: "./media/characters/cadence-andrysiak/back.svg",
  53065. extra: 1200/1165,
  53066. bottom: 9/1209
  53067. }
  53068. },
  53069. dressed: {
  53070. height: math.unit(6, "feet"),
  53071. weight: math.unit(150, "lb"),
  53072. name: "Dressed",
  53073. image: {
  53074. source: "./media/characters/cadence-andrysiak/dressed.svg",
  53075. extra: 1164/1121,
  53076. bottom: 60/1224
  53077. }
  53078. },
  53079. },
  53080. [
  53081. {
  53082. name: "Micro",
  53083. height: math.unit(1, "mm")
  53084. },
  53085. {
  53086. name: "Normal",
  53087. height: math.unit(6, "feet"),
  53088. default: true
  53089. },
  53090. ]
  53091. ))
  53092. characterMakers.push(() => makeCharacter(
  53093. { name: "PENNY", species: ["lynx" ,"computer-virus"], tags: ["anthro"] },
  53094. {
  53095. front: {
  53096. height: math.unit(60, "inches"),
  53097. weight: math.unit(16, "lb"),
  53098. preyCapacity: math.unit(80, "liters"),
  53099. name: "Front",
  53100. image: {
  53101. source: "./media/characters/penny-lynx/front.svg",
  53102. extra: 1959/1769,
  53103. bottom: 49/2008
  53104. }
  53105. },
  53106. },
  53107. [
  53108. {
  53109. name: "Nokia",
  53110. height: math.unit(2, "inches")
  53111. },
  53112. {
  53113. name: "Desktop",
  53114. height: math.unit(24, "inches")
  53115. },
  53116. {
  53117. name: "TV",
  53118. height: math.unit(60, "inches")
  53119. },
  53120. {
  53121. name: "Jumbotron",
  53122. height: math.unit(12, "feet")
  53123. },
  53124. {
  53125. name: "Billboard",
  53126. height: math.unit(48, "feet"),
  53127. default: true
  53128. },
  53129. {
  53130. name: "IMAX",
  53131. height: math.unit(96, "feet")
  53132. },
  53133. {
  53134. name: "SINGULARITY",
  53135. height: math.unit(864938, "miles")
  53136. },
  53137. ]
  53138. ))
  53139. characterMakers.push(() => makeCharacter(
  53140. { name: "Sukebe", species: ["panda"], tags: ["anthro"] },
  53141. {
  53142. front: {
  53143. height: math.unit(5 + 4/12, "feet"),
  53144. weight: math.unit(230, "lb"),
  53145. name: "Front",
  53146. image: {
  53147. source: "./media/characters/sukebe/front.svg",
  53148. extra: 2130/2038,
  53149. bottom: 90/2220
  53150. }
  53151. },
  53152. back: {
  53153. height: math.unit(3.48, "feet"),
  53154. weight: math.unit(230, "lb"),
  53155. name: "Back",
  53156. image: {
  53157. source: "./media/characters/sukebe/back.svg",
  53158. extra: 1670/1604,
  53159. bottom: 0/1670
  53160. }
  53161. },
  53162. },
  53163. [
  53164. {
  53165. name: "Normal",
  53166. height: math.unit(5 + 4/12, "feet"),
  53167. default: true
  53168. },
  53169. ]
  53170. ))
  53171. characterMakers.push(() => makeCharacter(
  53172. { name: "Nylla", species: ["dragon"], tags: ["anthro"] },
  53173. {
  53174. front: {
  53175. height: math.unit(6, "feet"),
  53176. name: "Front",
  53177. image: {
  53178. source: "./media/characters/nylla/front.svg",
  53179. extra: 1868/1699,
  53180. bottom: 97/1965
  53181. }
  53182. },
  53183. back: {
  53184. height: math.unit(6, "feet"),
  53185. name: "Back",
  53186. image: {
  53187. source: "./media/characters/nylla/back.svg",
  53188. extra: 1889/1712,
  53189. bottom: 93/1982
  53190. }
  53191. },
  53192. frontNsfw: {
  53193. height: math.unit(6, "feet"),
  53194. name: "Front (NSFW)",
  53195. image: {
  53196. source: "./media/characters/nylla/front-nsfw.svg",
  53197. extra: 1868/1699,
  53198. bottom: 97/1965
  53199. },
  53200. extraAttributes: {
  53201. "dickLength": {
  53202. name: "Dick Length",
  53203. power: 1,
  53204. type: "length",
  53205. base: math.unit(1.4, "feet")
  53206. },
  53207. "cumVolume": {
  53208. name: "Cum Volume",
  53209. power: 3,
  53210. type: "volume",
  53211. base: math.unit(100, "mL")
  53212. },
  53213. }
  53214. },
  53215. backNsfw: {
  53216. height: math.unit(6, "feet"),
  53217. name: "Back (NSFW)",
  53218. image: {
  53219. source: "./media/characters/nylla/back-nsfw.svg",
  53220. extra: 1889/1712,
  53221. bottom: 93/1982
  53222. }
  53223. },
  53224. maw: {
  53225. height: math.unit(2.10, "feet"),
  53226. name: "Maw",
  53227. image: {
  53228. source: "./media/characters/nylla/maw.svg"
  53229. }
  53230. },
  53231. paws: {
  53232. height: math.unit(2.06, "feet"),
  53233. name: "Paws",
  53234. image: {
  53235. source: "./media/characters/nylla/paws.svg"
  53236. }
  53237. },
  53238. muzzle: {
  53239. height: math.unit(0.61, "feet"),
  53240. name: "Muzzle",
  53241. image: {
  53242. source: "./media/characters/nylla/muzzle.svg"
  53243. }
  53244. },
  53245. sheath: {
  53246. height: math.unit(1.305, "feet"),
  53247. name: "Sheath",
  53248. image: {
  53249. source: "./media/characters/nylla/sheath.svg"
  53250. }
  53251. },
  53252. },
  53253. [
  53254. {
  53255. name: "Micro",
  53256. height: math.unit(7.5, "inches")
  53257. },
  53258. {
  53259. name: "Normal",
  53260. height: math.unit(7, "feet"),
  53261. default: true
  53262. },
  53263. {
  53264. name: "Macro",
  53265. height: math.unit(60, "feet")
  53266. },
  53267. {
  53268. name: "Mega",
  53269. height: math.unit(200, "feet")
  53270. },
  53271. ]
  53272. ))
  53273. characterMakers.push(() => makeCharacter(
  53274. { name: "HUNT3R", species: ["protogen"], tags: ["anthro"] },
  53275. {
  53276. front: {
  53277. height: math.unit(10, "feet"),
  53278. weight: math.unit(2300, "lb"),
  53279. name: "Front",
  53280. image: {
  53281. source: "./media/characters/hunt3r/front.svg",
  53282. extra: 1909/1742,
  53283. bottom: 46/1955
  53284. }
  53285. },
  53286. },
  53287. [
  53288. {
  53289. name: "Normal",
  53290. height: math.unit(10, "feet"),
  53291. default: true
  53292. },
  53293. ]
  53294. ))
  53295. characterMakers.push(() => makeCharacter(
  53296. { name: "Cylphis", species: ["draconi", "deity"], tags: ["anthro"] },
  53297. {
  53298. dressed: {
  53299. height: math.unit(11, "feet"),
  53300. weight: math.unit(18500, "lb"),
  53301. preyCapacity: math.unit(9, "people"),
  53302. name: "Dressed",
  53303. image: {
  53304. source: "./media/characters/cylphis/dressed.svg",
  53305. extra: 1028/1003,
  53306. bottom: 75/1103
  53307. },
  53308. },
  53309. undressed: {
  53310. height: math.unit(11, "feet"),
  53311. weight: math.unit(18500, "lb"),
  53312. preyCapacity: math.unit(9, "people"),
  53313. name: "Undressed",
  53314. image: {
  53315. source: "./media/characters/cylphis/undressed.svg",
  53316. extra: 1028/1003,
  53317. bottom: 75/1103
  53318. }
  53319. },
  53320. full: {
  53321. height: math.unit(11, "feet"),
  53322. weight: math.unit(18500 + 150*9, "lb"),
  53323. preyCapacity: math.unit(9, "people"),
  53324. name: "Full",
  53325. image: {
  53326. source: "./media/characters/cylphis/full.svg",
  53327. extra: 1028/1003,
  53328. bottom: 75/1103
  53329. }
  53330. },
  53331. },
  53332. [
  53333. {
  53334. name: "Small",
  53335. height: math.unit(8, "feet")
  53336. },
  53337. {
  53338. name: "Normal",
  53339. height: math.unit(11, "feet"),
  53340. default: true
  53341. },
  53342. ]
  53343. ))
  53344. characterMakers.push(() => makeCharacter(
  53345. { name: "Orishan", species: ["rabbit"], tags: ["anthro"] },
  53346. {
  53347. front: {
  53348. height: math.unit(2 + 7/12, "feet"),
  53349. name: "Front",
  53350. image: {
  53351. source: "./media/characters/orishan/front.svg",
  53352. extra: 1058/1023,
  53353. bottom: 23/1081
  53354. }
  53355. },
  53356. back: {
  53357. height: math.unit(2 + 7/12, "feet"),
  53358. name: "Back",
  53359. image: {
  53360. source: "./media/characters/orishan/back.svg",
  53361. extra: 1058/1023,
  53362. bottom: 23/1081
  53363. }
  53364. },
  53365. },
  53366. [
  53367. {
  53368. name: "Micro",
  53369. height: math.unit(2, "cm")
  53370. },
  53371. {
  53372. name: "Normal",
  53373. height: math.unit(2 + 7/12, "feet"),
  53374. default: true
  53375. },
  53376. ]
  53377. ))
  53378. characterMakers.push(() => makeCharacter(
  53379. { name: "Seranis", species: ["cat"], tags: ["anthro"] },
  53380. {
  53381. front: {
  53382. height: math.unit(3, "meters"),
  53383. weight: math.unit(508, "kg"),
  53384. name: "Front",
  53385. image: {
  53386. source: "./media/characters/seranis/front.svg",
  53387. extra: 1478/1454,
  53388. bottom: 41/1519
  53389. }
  53390. },
  53391. },
  53392. [
  53393. {
  53394. name: "Normal",
  53395. height: math.unit(3, "meters"),
  53396. default: true
  53397. },
  53398. {
  53399. name: "Macro",
  53400. height: math.unit(108, "meters")
  53401. },
  53402. {
  53403. name: "Megamacro",
  53404. height: math.unit(1250, "meters")
  53405. },
  53406. ]
  53407. ))
  53408. characterMakers.push(() => makeCharacter(
  53409. { name: "Ankou", species: ["mouse", "imp"], tags: ["anthro"] },
  53410. {
  53411. undressed: {
  53412. height: math.unit(5 + 3/12, "feet"),
  53413. name: "Undressed",
  53414. image: {
  53415. source: "./media/characters/ankou/undressed.svg",
  53416. extra: 1301/1213,
  53417. bottom: 87/1388
  53418. }
  53419. },
  53420. dressed: {
  53421. height: math.unit(5 + 3/12, "feet"),
  53422. name: "Dressed",
  53423. image: {
  53424. source: "./media/characters/ankou/dressed.svg",
  53425. extra: 1301/1213,
  53426. bottom: 87/1388
  53427. }
  53428. },
  53429. head: {
  53430. height: math.unit(1.61, "feet"),
  53431. name: "Head",
  53432. image: {
  53433. source: "./media/characters/ankou/head.svg"
  53434. }
  53435. },
  53436. },
  53437. [
  53438. {
  53439. name: "Normal",
  53440. height: math.unit(5 + 3/12, "feet"),
  53441. default: true
  53442. },
  53443. ]
  53444. ))
  53445. characterMakers.push(() => makeCharacter(
  53446. { name: "Juniper Skunktaur", species: ["skunk", "taur"], tags: ["taur"] },
  53447. {
  53448. side: {
  53449. height: math.unit(6 + 3/12, "feet"),
  53450. weight: math.unit(200, "kg"),
  53451. name: "Side",
  53452. image: {
  53453. source: "./media/characters/juniper-skunktaur/side.svg",
  53454. extra: 1574/1229,
  53455. bottom: 38/1612
  53456. }
  53457. },
  53458. front: {
  53459. height: math.unit(6 + 3/12, "feet"),
  53460. weight: math.unit(200, "kg"),
  53461. name: "Front",
  53462. image: {
  53463. source: "./media/characters/juniper-skunktaur/front.svg",
  53464. extra: 1337/1278,
  53465. bottom: 22/1359
  53466. }
  53467. },
  53468. back: {
  53469. height: math.unit(6 + 3/12, "feet"),
  53470. weight: math.unit(200, "kg"),
  53471. name: "Back",
  53472. image: {
  53473. source: "./media/characters/juniper-skunktaur/back.svg",
  53474. extra: 1618/1273,
  53475. bottom: 13/1631
  53476. }
  53477. },
  53478. top: {
  53479. height: math.unit(2.62, "feet"),
  53480. weight: math.unit(200, "kg"),
  53481. name: "Top",
  53482. image: {
  53483. source: "./media/characters/juniper-skunktaur/top.svg"
  53484. }
  53485. },
  53486. },
  53487. [
  53488. {
  53489. name: "Normal",
  53490. height: math.unit(6 + 3/12, "feet"),
  53491. default: true
  53492. },
  53493. ]
  53494. ))
  53495. characterMakers.push(() => makeCharacter(
  53496. { name: "Rei", species: ["kitsune"], tags: ["anthro"] },
  53497. {
  53498. front: {
  53499. height: math.unit(20.5, "feet"),
  53500. name: "Front",
  53501. image: {
  53502. source: "./media/characters/rei/front.svg",
  53503. extra: 1349/1195,
  53504. bottom: 31/1380
  53505. }
  53506. },
  53507. back: {
  53508. height: math.unit(20.5, "feet"),
  53509. name: "Back",
  53510. image: {
  53511. source: "./media/characters/rei/back.svg",
  53512. extra: 1358/1204,
  53513. bottom: 22/1380
  53514. }
  53515. },
  53516. pawsDigi: {
  53517. height: math.unit(3.45, "feet"),
  53518. name: "Paws (Digi)",
  53519. image: {
  53520. source: "./media/characters/rei/paws-digi.svg"
  53521. }
  53522. },
  53523. pawsPlanti: {
  53524. height: math.unit(3.45, "feet"),
  53525. name: "Paws (Planti)",
  53526. image: {
  53527. source: "./media/characters/rei/paws-planti.svg"
  53528. }
  53529. },
  53530. },
  53531. [
  53532. {
  53533. name: "Normal",
  53534. height: math.unit(20.5, "feet"),
  53535. default: true
  53536. },
  53537. ]
  53538. ))
  53539. characterMakers.push(() => makeCharacter(
  53540. { name: "Carina", species: ["arctic-fox"], tags: ["anthro"] },
  53541. {
  53542. front: {
  53543. height: math.unit(5 + 11/12, "feet"),
  53544. name: "Front",
  53545. image: {
  53546. source: "./media/characters/carina/front.svg",
  53547. extra: 1720/1449,
  53548. bottom: 14/1734
  53549. }
  53550. },
  53551. back: {
  53552. height: math.unit(5 + 11/12, "feet"),
  53553. name: "Back",
  53554. image: {
  53555. source: "./media/characters/carina/back.svg",
  53556. extra: 1493/1445,
  53557. bottom: 17/1510
  53558. }
  53559. },
  53560. paw: {
  53561. height: math.unit(0.92, "feet"),
  53562. name: "Paw",
  53563. image: {
  53564. source: "./media/characters/carina/paw.svg"
  53565. }
  53566. },
  53567. },
  53568. [
  53569. {
  53570. name: "Normal",
  53571. height: math.unit(5 + 11/12, "feet"),
  53572. default: true
  53573. },
  53574. ]
  53575. ))
  53576. characterMakers.push(() => makeCharacter(
  53577. { name: "Maya", species: ["cat"], tags: ["anthro", "taur"] },
  53578. {
  53579. normal_front: {
  53580. height: math.unit(4.88, "meters"),
  53581. name: "Front",
  53582. image: {
  53583. source: "./media/characters/maya/normal-front.svg",
  53584. extra: 1222/1145,
  53585. bottom: 57/1279
  53586. },
  53587. form: "normal",
  53588. default: true
  53589. },
  53590. monstrous_front: {
  53591. height: math.unit(10, "meters"),
  53592. name: "Front",
  53593. image: {
  53594. source: "./media/characters/maya/monstrous-front.svg",
  53595. extra: 1523/1109,
  53596. bottom: 113/1636
  53597. },
  53598. form: "monstrous",
  53599. extraAttributes: {
  53600. "swallowSize": {
  53601. name: "Tailmaw Bite Size",
  53602. power: 3,
  53603. type: "volume",
  53604. base: math.unit(43000, "liters")
  53605. },
  53606. }
  53607. },
  53608. taur_front: {
  53609. height: math.unit(10, "meters"),
  53610. name: "Front",
  53611. image: {
  53612. source: "./media/characters/maya/taur-front.svg",
  53613. extra: 743/506,
  53614. bottom: 101/844
  53615. },
  53616. form: "taur",
  53617. },
  53618. },
  53619. [
  53620. {
  53621. name: "Normal",
  53622. height: math.unit(4.88, "meters"),
  53623. default: true,
  53624. form: "normal"
  53625. },
  53626. {
  53627. name: "Macro",
  53628. height: math.unit(38.1, "meters"),
  53629. form: "normal"
  53630. },
  53631. {
  53632. name: "Macro+",
  53633. height: math.unit(152.4, "meters"),
  53634. form: "normal"
  53635. },
  53636. {
  53637. name: "Macro++",
  53638. height: math.unit(16.09, "km"),
  53639. form: "normal"
  53640. },
  53641. {
  53642. name: "Mega-macro",
  53643. height: math.unit(700, "megameters"),
  53644. form: "normal"
  53645. },
  53646. {
  53647. name: "Satiated",
  53648. height: math.unit(10, "meters"),
  53649. default: true,
  53650. form: "monstrous"
  53651. },
  53652. {
  53653. name: "Hungry",
  53654. height: math.unit(75, "meters"),
  53655. form: "monstrous"
  53656. },
  53657. {
  53658. name: "Ravenous",
  53659. height: math.unit(500, "meters"),
  53660. form: "monstrous"
  53661. },
  53662. {
  53663. name: "\"Normal\"",
  53664. height: math.unit(10, "meters"),
  53665. form: "taur"
  53666. },
  53667. {
  53668. name: "Macro",
  53669. height: math.unit(50, "meters"),
  53670. form: "taur"
  53671. },
  53672. ],
  53673. {
  53674. "normal": {
  53675. name: "Normal",
  53676. default: true
  53677. },
  53678. "monstrous": {
  53679. name: "Monstrous",
  53680. },
  53681. "taur": {
  53682. name: "Taur",
  53683. },
  53684. }
  53685. ))
  53686. characterMakers.push(() => makeCharacter(
  53687. { name: "Yepir", species: ["hyena"], tags: ["anthro"] },
  53688. {
  53689. front: {
  53690. height: math.unit(6 + 2/12, "feet"),
  53691. weight: math.unit(500, "lb"),
  53692. preyCapacity: math.unit(4, "people"),
  53693. name: "Front",
  53694. image: {
  53695. source: "./media/characters/yepir/front.svg"
  53696. }
  53697. },
  53698. side: {
  53699. height: math.unit(6 + 2/12, "feet"),
  53700. weight: math.unit(500, "lb"),
  53701. preyCapacity: math.unit(4, "people"),
  53702. name: "Side",
  53703. image: {
  53704. source: "./media/characters/yepir/side.svg"
  53705. }
  53706. },
  53707. paw: {
  53708. height: math.unit(1.05, "feet"),
  53709. name: "Paw",
  53710. image: {
  53711. source: "./media/characters/yepir/paw.svg"
  53712. }
  53713. },
  53714. },
  53715. [
  53716. {
  53717. name: "Normal",
  53718. height: math.unit(6 + 2/12, "feet"),
  53719. default: true
  53720. },
  53721. ]
  53722. ))
  53723. characterMakers.push(() => makeCharacter(
  53724. { name: "Russec", species: ["continental-giant-rabbit"], tags: ["anthro"] },
  53725. {
  53726. front: {
  53727. height: math.unit(5 + 4/12, "feet"),
  53728. name: "Front",
  53729. image: {
  53730. source: "./media/characters/russec/front.svg",
  53731. extra: 1926/1626,
  53732. bottom: 72/1998
  53733. }
  53734. },
  53735. back: {
  53736. height: math.unit(5 + 4/12, "feet"),
  53737. name: "Back",
  53738. image: {
  53739. source: "./media/characters/russec/back.svg",
  53740. extra: 1910/1591,
  53741. bottom: 48/1958
  53742. }
  53743. },
  53744. },
  53745. [
  53746. {
  53747. name: "Small",
  53748. height: math.unit(5 + 4/12, "feet")
  53749. },
  53750. {
  53751. name: "Normal",
  53752. height: math.unit(72, "feet"),
  53753. default: true
  53754. },
  53755. ]
  53756. ))
  53757. characterMakers.push(() => makeCharacter(
  53758. { name: "Cianus", species: ["demigryph"], tags: ["anthro"] },
  53759. {
  53760. side: {
  53761. height: math.unit(12, "feet"),
  53762. name: "Side",
  53763. image: {
  53764. source: "./media/characters/cianus/side.svg",
  53765. extra: 808/526,
  53766. bottom: 61/869
  53767. }
  53768. },
  53769. },
  53770. [
  53771. {
  53772. name: "Normal",
  53773. height: math.unit(12, "feet"),
  53774. default: true
  53775. },
  53776. ]
  53777. ))
  53778. characterMakers.push(() => makeCharacter(
  53779. { name: "Ahab", species: ["bald-eagle"], tags: ["anthro"] },
  53780. {
  53781. front: {
  53782. height: math.unit(9 + 6/12, "feet"),
  53783. weight: math.unit(300, "lb"),
  53784. name: "Front",
  53785. image: {
  53786. source: "./media/characters/ahab/front.svg",
  53787. extra: 1897/1868,
  53788. bottom: 121/2018
  53789. }
  53790. },
  53791. frontNsfw: {
  53792. height: math.unit(9 + 6/12, "feet"),
  53793. weight: math.unit(300, "lb"),
  53794. name: "Front-nsfw",
  53795. image: {
  53796. source: "./media/characters/ahab/front-nsfw.svg",
  53797. extra: 1897/1868,
  53798. bottom: 121/2018
  53799. }
  53800. },
  53801. },
  53802. [
  53803. {
  53804. name: "Normal",
  53805. height: math.unit(9 + 6/12, "feet")
  53806. },
  53807. {
  53808. name: "Macro",
  53809. height: math.unit(657, "feet"),
  53810. default: true
  53811. },
  53812. ]
  53813. ))
  53814. characterMakers.push(() => makeCharacter(
  53815. { name: "Aarkus", species: ["deer"], tags: ["anthro"] },
  53816. {
  53817. front: {
  53818. height: math.unit(2.69, "meters"),
  53819. weight: math.unit(132, "kg"),
  53820. name: "Front",
  53821. image: {
  53822. source: "./media/characters/aarkus/front.svg",
  53823. extra: 1400/1231,
  53824. bottom: 34/1434
  53825. }
  53826. },
  53827. back: {
  53828. height: math.unit(2.69, "meters"),
  53829. weight: math.unit(132, "kg"),
  53830. name: "Back",
  53831. image: {
  53832. source: "./media/characters/aarkus/back.svg",
  53833. extra: 1381/1218,
  53834. bottom: 30/1411
  53835. }
  53836. },
  53837. frontNsfw: {
  53838. height: math.unit(2.69, "meters"),
  53839. weight: math.unit(132, "kg"),
  53840. name: "Front (NSFW)",
  53841. image: {
  53842. source: "./media/characters/aarkus/front-nsfw.svg",
  53843. extra: 1400/1231,
  53844. bottom: 34/1434
  53845. }
  53846. },
  53847. foot: {
  53848. height: math.unit(1.45, "feet"),
  53849. name: "Foot",
  53850. image: {
  53851. source: "./media/characters/aarkus/foot.svg"
  53852. }
  53853. },
  53854. head: {
  53855. height: math.unit(2.85, "feet"),
  53856. name: "Head",
  53857. image: {
  53858. source: "./media/characters/aarkus/head.svg"
  53859. }
  53860. },
  53861. headAlt: {
  53862. height: math.unit(3.07, "feet"),
  53863. name: "Head (Alt)",
  53864. image: {
  53865. source: "./media/characters/aarkus/head-alt.svg"
  53866. }
  53867. },
  53868. mouth: {
  53869. height: math.unit(1.25, "feet"),
  53870. name: "Mouth",
  53871. image: {
  53872. source: "./media/characters/aarkus/mouth.svg"
  53873. }
  53874. },
  53875. dick: {
  53876. height: math.unit(1.77, "feet"),
  53877. name: "Dick",
  53878. image: {
  53879. source: "./media/characters/aarkus/dick.svg"
  53880. }
  53881. },
  53882. },
  53883. [
  53884. {
  53885. name: "Normal",
  53886. height: math.unit(2.69, "meters"),
  53887. default: true
  53888. },
  53889. {
  53890. name: "Macro",
  53891. height: math.unit(269, "meters")
  53892. },
  53893. {
  53894. name: "Macro+",
  53895. height: math.unit(672.5, "meters")
  53896. },
  53897. {
  53898. name: "Megamacro",
  53899. height: math.unit(2.017, "km")
  53900. },
  53901. ]
  53902. ))
  53903. characterMakers.push(() => makeCharacter(
  53904. { name: "Diode", species: ["moth"], tags: ["anthro"] },
  53905. {
  53906. front: {
  53907. height: math.unit(23.47, "cm"),
  53908. weight: math.unit(600, "grams"),
  53909. name: "Front",
  53910. image: {
  53911. source: "./media/characters/diode/front.svg",
  53912. extra: 1778/1396,
  53913. bottom: 95/1873
  53914. }
  53915. },
  53916. side: {
  53917. height: math.unit(23.47, "cm"),
  53918. weight: math.unit(600, "grams"),
  53919. name: "Side",
  53920. image: {
  53921. source: "./media/characters/diode/side.svg",
  53922. extra: 1831/1404,
  53923. bottom: 86/1917
  53924. }
  53925. },
  53926. wings: {
  53927. height: math.unit(0.683, "feet"),
  53928. name: "Wings",
  53929. image: {
  53930. source: "./media/characters/diode/wings.svg"
  53931. }
  53932. },
  53933. },
  53934. [
  53935. {
  53936. name: "Normal",
  53937. height: math.unit(23.47, "cm"),
  53938. default: true
  53939. },
  53940. ]
  53941. ))
  53942. characterMakers.push(() => makeCharacter(
  53943. { name: "Reika", species: ["kestrel", "mockingbird"], tags: ["anthro"] },
  53944. {
  53945. front: {
  53946. height: math.unit(6 + 3/12, "feet"),
  53947. weight: math.unit(250, "lb"),
  53948. name: "Front",
  53949. image: {
  53950. source: "./media/characters/reika/front.svg",
  53951. extra: 1120/1078,
  53952. bottom: 86/1206
  53953. }
  53954. },
  53955. },
  53956. [
  53957. {
  53958. name: "Normal",
  53959. height: math.unit(6 + 3/12, "feet"),
  53960. default: true
  53961. },
  53962. ]
  53963. ))
  53964. characterMakers.push(() => makeCharacter(
  53965. { name: "Lokuto Takama", species: ["arctic-fox", "kitsune"], tags: ["anthro"] },
  53966. {
  53967. front: {
  53968. height: math.unit(16 + 8/12, "feet"),
  53969. weight: math.unit(9000, "lb"),
  53970. name: "Front",
  53971. image: {
  53972. source: "./media/characters/lokuto-takama/front.svg",
  53973. extra: 1774/1632,
  53974. bottom: 147/1921
  53975. },
  53976. extraAttributes: {
  53977. "bustWidth": {
  53978. name: "Bust Width",
  53979. power: 1,
  53980. type: "length",
  53981. base: math.unit(2.4, "meters")
  53982. },
  53983. "breastWeight": {
  53984. name: "Breast Weight",
  53985. power: 3,
  53986. type: "mass",
  53987. base: math.unit(1000, "kg")
  53988. },
  53989. }
  53990. },
  53991. },
  53992. [
  53993. {
  53994. name: "Normal",
  53995. height: math.unit(16 + 8/12, "feet"),
  53996. default: true
  53997. },
  53998. ]
  53999. ))
  54000. characterMakers.push(() => makeCharacter(
  54001. { name: "Owak Bone", species: ["marowak"], tags: ["anthro"] },
  54002. {
  54003. front: {
  54004. height: math.unit(10, "cm"),
  54005. weight: math.unit(850, "grams"),
  54006. name: "Front",
  54007. image: {
  54008. source: "./media/characters/owak-bone/front.svg",
  54009. extra: 1965/1801,
  54010. bottom: 31/1996
  54011. }
  54012. },
  54013. },
  54014. [
  54015. {
  54016. name: "Normal",
  54017. height: math.unit(10, "cm"),
  54018. default: true
  54019. },
  54020. ]
  54021. ))
  54022. characterMakers.push(() => makeCharacter(
  54023. { name: "Muffin", species: ["ferret"], tags: ["anthro"] },
  54024. {
  54025. front: {
  54026. height: math.unit(2 + 6/12, "feet"),
  54027. weight: math.unit(9, "lb"),
  54028. name: "Front",
  54029. image: {
  54030. source: "./media/characters/muffin/front.svg",
  54031. extra: 1220/1195,
  54032. bottom: 84/1304
  54033. }
  54034. },
  54035. },
  54036. [
  54037. {
  54038. name: "Normal",
  54039. height: math.unit(2 + 6/12, "feet"),
  54040. default: true
  54041. },
  54042. ]
  54043. ))
  54044. characterMakers.push(() => makeCharacter(
  54045. { name: "Chimera", species: ["pegasus"], tags: ["anthro"] },
  54046. {
  54047. front: {
  54048. height: math.unit(7, "feet"),
  54049. name: "Front",
  54050. image: {
  54051. source: "./media/characters/chimera/front.svg",
  54052. extra: 1752/1614,
  54053. bottom: 68/1820
  54054. }
  54055. },
  54056. },
  54057. [
  54058. {
  54059. name: "Normal",
  54060. height: math.unit(7, "feet")
  54061. },
  54062. {
  54063. name: "Gigamacro",
  54064. height: math.unit(2.9, "gigameters"),
  54065. default: true
  54066. },
  54067. {
  54068. name: "Universal",
  54069. height: math.unit(1.56e26, "yottameters")
  54070. },
  54071. ]
  54072. ))
  54073. characterMakers.push(() => makeCharacter(
  54074. { name: "Kit (Fennec Fox)", species: ["fennec-fox"], tags: ["anthro"] },
  54075. {
  54076. front: {
  54077. height: math.unit(3, "feet"),
  54078. weight: math.unit(20, "lb"),
  54079. name: "Front",
  54080. image: {
  54081. source: "./media/characters/kit-fennec-fox/front.svg",
  54082. extra: 1027/932,
  54083. bottom: 16/1043
  54084. }
  54085. },
  54086. back: {
  54087. height: math.unit(3, "feet"),
  54088. weight: math.unit(20, "lb"),
  54089. name: "Back",
  54090. image: {
  54091. source: "./media/characters/kit-fennec-fox/back.svg",
  54092. extra: 1027/932,
  54093. bottom: 16/1043
  54094. }
  54095. },
  54096. },
  54097. [
  54098. {
  54099. name: "Normal",
  54100. height: math.unit(3, "feet"),
  54101. default: true
  54102. },
  54103. ]
  54104. ))
  54105. characterMakers.push(() => makeCharacter(
  54106. { name: "Blue (Otter)", species: ["otter"], tags: ["anthro"] },
  54107. {
  54108. front: {
  54109. height: math.unit(167, "cm"),
  54110. name: "Front",
  54111. image: {
  54112. source: "./media/characters/blue-otter/front.svg",
  54113. extra: 1951/1920,
  54114. bottom: 31/1982
  54115. }
  54116. },
  54117. },
  54118. [
  54119. {
  54120. name: "Otter-Sized",
  54121. height: math.unit(100, "cm")
  54122. },
  54123. {
  54124. name: "Normal",
  54125. height: math.unit(167, "cm"),
  54126. default: true
  54127. },
  54128. ]
  54129. ))
  54130. characterMakers.push(() => makeCharacter(
  54131. { name: "Maverick (Leopard Gecko)", species: ["leopard-gecko"], tags: ["anthro"] },
  54132. {
  54133. front: {
  54134. height: math.unit(4 + 4/12, "feet"),
  54135. name: "Front",
  54136. image: {
  54137. source: "./media/characters/maverick-leopard-gecko/front.svg",
  54138. extra: 1072/1067,
  54139. bottom: 117/1189
  54140. }
  54141. },
  54142. back: {
  54143. height: math.unit(4 + 4/12, "feet"),
  54144. name: "Back",
  54145. image: {
  54146. source: "./media/characters/maverick-leopard-gecko/back.svg",
  54147. extra: 1135/1129,
  54148. bottom: 57/1192
  54149. }
  54150. },
  54151. head: {
  54152. height: math.unit(1.77, "feet"),
  54153. name: "Head",
  54154. image: {
  54155. source: "./media/characters/maverick-leopard-gecko/head.svg"
  54156. }
  54157. },
  54158. },
  54159. [
  54160. {
  54161. name: "Normal",
  54162. height: math.unit(4 + 4/12, "feet"),
  54163. default: true
  54164. },
  54165. ]
  54166. ))
  54167. characterMakers.push(() => makeCharacter(
  54168. { name: "Carley Hartford", species: ["joltik"], tags: ["anthro"] },
  54169. {
  54170. front: {
  54171. height: math.unit(2, "inches"),
  54172. name: "Front",
  54173. image: {
  54174. source: "./media/characters/carley-hartford/front.svg",
  54175. extra: 1035/988,
  54176. bottom: 23/1058
  54177. }
  54178. },
  54179. back: {
  54180. height: math.unit(2, "inches"),
  54181. name: "Back",
  54182. image: {
  54183. source: "./media/characters/carley-hartford/back.svg",
  54184. extra: 1035/988,
  54185. bottom: 23/1058
  54186. }
  54187. },
  54188. dressed: {
  54189. height: math.unit(2, "inches"),
  54190. name: "Dressed",
  54191. image: {
  54192. source: "./media/characters/carley-hartford/dressed.svg",
  54193. extra: 651/620,
  54194. bottom: 0/651
  54195. }
  54196. },
  54197. },
  54198. [
  54199. {
  54200. name: "Micro",
  54201. height: math.unit(2, "inches"),
  54202. default: true
  54203. },
  54204. {
  54205. name: "Macro",
  54206. height: math.unit(6 + 3/12, "feet")
  54207. },
  54208. ]
  54209. ))
  54210. characterMakers.push(() => makeCharacter(
  54211. { name: "Duke", species: ["ferret"], tags: ["anthro"] },
  54212. {
  54213. front: {
  54214. height: math.unit(2 + 3/12, "feet"),
  54215. weight: math.unit(15 + 7/16, "lb"),
  54216. name: "Front",
  54217. image: {
  54218. source: "./media/characters/duke/front.svg",
  54219. extra: 910/815,
  54220. bottom: 30/940
  54221. }
  54222. },
  54223. },
  54224. [
  54225. {
  54226. name: "Normal",
  54227. height: math.unit(2 + 3/12, "feet"),
  54228. default: true
  54229. },
  54230. ]
  54231. ))
  54232. characterMakers.push(() => makeCharacter(
  54233. { name: "Dein", species: ["ferret"], tags: ["anthro"] },
  54234. {
  54235. front: {
  54236. height: math.unit(5 + 4/12, "feet"),
  54237. weight: math.unit(156, "lb"),
  54238. name: "Front",
  54239. image: {
  54240. source: "./media/characters/dein/front.svg",
  54241. extra: 855/815,
  54242. bottom: 48/903
  54243. }
  54244. },
  54245. side: {
  54246. height: math.unit(5 + 4/12, "feet"),
  54247. weight: math.unit(156, "lb"),
  54248. name: "side",
  54249. image: {
  54250. source: "./media/characters/dein/side.svg",
  54251. extra: 846/803,
  54252. bottom: 25/871
  54253. }
  54254. },
  54255. maw: {
  54256. height: math.unit(1.45, "feet"),
  54257. name: "Maw",
  54258. image: {
  54259. source: "./media/characters/dein/maw.svg"
  54260. }
  54261. },
  54262. },
  54263. [
  54264. {
  54265. name: "Ferret Sized",
  54266. height: math.unit(2 + 5/12, "feet")
  54267. },
  54268. {
  54269. name: "Normal",
  54270. height: math.unit(5 + 4/12, "feet"),
  54271. default: true
  54272. },
  54273. ]
  54274. ))
  54275. characterMakers.push(() => makeCharacter(
  54276. { name: "Daurine Arima", species: ["werewolf"], tags: ["anthro"] },
  54277. {
  54278. front: {
  54279. height: math.unit(84 + 8/12, "feet"),
  54280. weight: math.unit(942180, "lb"),
  54281. name: "Front",
  54282. image: {
  54283. source: "./media/characters/daurine-arima/front.svg",
  54284. extra: 1989/1782,
  54285. bottom: 37/2026
  54286. }
  54287. },
  54288. side: {
  54289. height: math.unit(84 + 8/12, "feet"),
  54290. weight: math.unit(942180, "lb"),
  54291. name: "Side",
  54292. image: {
  54293. source: "./media/characters/daurine-arima/side.svg",
  54294. extra: 1997/1790,
  54295. bottom: 21/2018
  54296. }
  54297. },
  54298. back: {
  54299. height: math.unit(84 + 8/12, "feet"),
  54300. weight: math.unit(942180, "lb"),
  54301. name: "Back",
  54302. image: {
  54303. source: "./media/characters/daurine-arima/back.svg",
  54304. extra: 1992/1800,
  54305. bottom: 12/2004
  54306. }
  54307. },
  54308. head: {
  54309. height: math.unit(15.5, "feet"),
  54310. name: "Head",
  54311. image: {
  54312. source: "./media/characters/daurine-arima/head.svg"
  54313. }
  54314. },
  54315. headAlt: {
  54316. height: math.unit(19.19, "feet"),
  54317. name: "Head (Alt)",
  54318. image: {
  54319. source: "./media/characters/daurine-arima/head-alt.svg"
  54320. }
  54321. },
  54322. },
  54323. [
  54324. {
  54325. name: "Minimum height",
  54326. height: math.unit(8 + 10/12, "feet")
  54327. },
  54328. {
  54329. name: "Comfort height",
  54330. height: math.unit(19 + 6 /12, "feet")
  54331. },
  54332. {
  54333. name: "\"Normal\" height",
  54334. height: math.unit(28 + 10/12, "feet")
  54335. },
  54336. {
  54337. name: "Base height",
  54338. height: math.unit(84 + 8/12, "feet"),
  54339. default: true
  54340. },
  54341. {
  54342. name: "Mini-macro",
  54343. height: math.unit(2360, "feet")
  54344. },
  54345. {
  54346. name: "Macro",
  54347. height: math.unit(10, "miles")
  54348. },
  54349. {
  54350. name: "Goddess",
  54351. height: math.unit(9.99e40, "yottameters")
  54352. },
  54353. ]
  54354. ))
  54355. characterMakers.push(() => makeCharacter(
  54356. { name: "Cilenomon", species: ["slime"], tags: ["anthro"] },
  54357. {
  54358. front: {
  54359. height: math.unit(2.3, "meters"),
  54360. name: "Front",
  54361. image: {
  54362. source: "./media/characters/cilenomon/front.svg",
  54363. extra: 1963/1778,
  54364. bottom: 54/2017
  54365. }
  54366. },
  54367. },
  54368. [
  54369. {
  54370. name: "Normal",
  54371. height: math.unit(2.3, "meters"),
  54372. default: true
  54373. },
  54374. {
  54375. name: "Big",
  54376. height: math.unit(5, "meters")
  54377. },
  54378. {
  54379. name: "Macro",
  54380. height: math.unit(30, "meters")
  54381. },
  54382. {
  54383. name: "True",
  54384. height: math.unit(1, "universe")
  54385. },
  54386. ]
  54387. ))
  54388. characterMakers.push(() => makeCharacter(
  54389. { name: "Sen (Mink)", species: ["mink"], tags: ["anthro"] },
  54390. {
  54391. front: {
  54392. height: math.unit(5, "feet"),
  54393. name: "Front",
  54394. image: {
  54395. source: "./media/characters/sen-mink/front.svg",
  54396. extra: 1727/1675,
  54397. bottom: 35/1762
  54398. }
  54399. },
  54400. },
  54401. [
  54402. {
  54403. name: "Normal",
  54404. height: math.unit(5, "feet"),
  54405. default: true
  54406. },
  54407. ]
  54408. ))
  54409. characterMakers.push(() => makeCharacter(
  54410. { name: "Ophois", species: ["jackal", "sandcat"], tags: ["anthro"] },
  54411. {
  54412. front: {
  54413. height: math.unit(5.42999, "feet"),
  54414. weight: math.unit(100, "lb"),
  54415. name: "Front",
  54416. image: {
  54417. source: "./media/characters/ophois/front.svg",
  54418. extra: 1429/1286,
  54419. bottom: 60/1489
  54420. }
  54421. },
  54422. },
  54423. [
  54424. {
  54425. name: "Normal",
  54426. height: math.unit(5.42999, "feet"),
  54427. default: true
  54428. },
  54429. ]
  54430. ))
  54431. characterMakers.push(() => makeCharacter(
  54432. { name: "Riley", species: ["eagle"], tags: ["anthro"] },
  54433. {
  54434. front: {
  54435. height: math.unit(2, "meters"),
  54436. name: "Front",
  54437. image: {
  54438. source: "./media/characters/riley/front.svg",
  54439. extra: 1779/1754,
  54440. bottom: 139/1918
  54441. }
  54442. },
  54443. },
  54444. [
  54445. {
  54446. name: "Normal",
  54447. height: math.unit(2, "meters"),
  54448. default: true
  54449. },
  54450. ]
  54451. ))
  54452. characterMakers.push(() => makeCharacter(
  54453. { name: "Shuken Flash", species: ["arctic-fox"], tags: ["anthro"] },
  54454. {
  54455. front: {
  54456. height: math.unit(6 + 2/12, "feet"),
  54457. weight: math.unit(195, "lb"),
  54458. preyCapacity: math.unit(6, "people"),
  54459. name: "Front",
  54460. image: {
  54461. source: "./media/characters/shuken-flash/front.svg",
  54462. extra: 1905/1739,
  54463. bottom: 65/1970
  54464. }
  54465. },
  54466. back: {
  54467. height: math.unit(6 + 2/12, "feet"),
  54468. weight: math.unit(195, "lb"),
  54469. preyCapacity: math.unit(6, "people"),
  54470. name: "Back",
  54471. image: {
  54472. source: "./media/characters/shuken-flash/back.svg",
  54473. extra: 1912/1751,
  54474. bottom: 13/1925
  54475. }
  54476. },
  54477. },
  54478. [
  54479. {
  54480. name: "Normal",
  54481. height: math.unit(6 + 2/12, "feet"),
  54482. default: true
  54483. },
  54484. ]
  54485. ))
  54486. characterMakers.push(() => makeCharacter(
  54487. { name: "Plat", species: ["raven"], tags: ["anthro"] },
  54488. {
  54489. front: {
  54490. height: math.unit(5 + 9/12, "feet"),
  54491. weight: math.unit(150, "lb"),
  54492. name: "Front",
  54493. image: {
  54494. source: "./media/characters/plat/front.svg",
  54495. extra: 1816/1703,
  54496. bottom: 43/1859
  54497. }
  54498. },
  54499. side: {
  54500. height: math.unit(5 + 9/12, "feet"),
  54501. weight: math.unit(300, "lb"),
  54502. name: "Side",
  54503. image: {
  54504. source: "./media/characters/plat/side.svg",
  54505. extra: 1824/1699,
  54506. bottom: 18/1842
  54507. }
  54508. },
  54509. },
  54510. [
  54511. {
  54512. name: "Normal",
  54513. height: math.unit(5 + 9/12, "feet"),
  54514. default: true
  54515. },
  54516. ]
  54517. ))
  54518. characterMakers.push(() => makeCharacter(
  54519. { name: "Elaine", species: ["snake", "dragon"], tags: ["anthro"] },
  54520. {
  54521. front: {
  54522. height: math.unit(9, "feet"),
  54523. weight: math.unit(1800, "lb"),
  54524. name: "Front",
  54525. image: {
  54526. source: "./media/characters/elaine/front.svg",
  54527. extra: 1833/1354,
  54528. bottom: 25/1858
  54529. }
  54530. },
  54531. back: {
  54532. height: math.unit(8.8, "feet"),
  54533. weight: math.unit(1800, "lb"),
  54534. name: "Back",
  54535. image: {
  54536. source: "./media/characters/elaine/back.svg",
  54537. extra: 1641/1233,
  54538. bottom: 53/1694
  54539. }
  54540. },
  54541. },
  54542. [
  54543. {
  54544. name: "Normal",
  54545. height: math.unit(9, "feet"),
  54546. default: true
  54547. },
  54548. ]
  54549. ))
  54550. characterMakers.push(() => makeCharacter(
  54551. { name: "Vera (Raven)", species: ["raven"], tags: ["anthro"] },
  54552. {
  54553. front: {
  54554. height: math.unit(17 + 9/12, "feet"),
  54555. weight: math.unit(8000, "lb"),
  54556. name: "Front",
  54557. image: {
  54558. source: "./media/characters/vera-raven/front.svg",
  54559. extra: 1457/1412,
  54560. bottom: 121/1578
  54561. }
  54562. },
  54563. side: {
  54564. height: math.unit(17 + 9/12, "feet"),
  54565. weight: math.unit(8000, "lb"),
  54566. name: "Side",
  54567. image: {
  54568. source: "./media/characters/vera-raven/side.svg",
  54569. extra: 1510/1464,
  54570. bottom: 54/1564
  54571. }
  54572. },
  54573. },
  54574. [
  54575. {
  54576. name: "Normal",
  54577. height: math.unit(17 + 9/12, "feet"),
  54578. default: true
  54579. },
  54580. ]
  54581. ))
  54582. characterMakers.push(() => makeCharacter(
  54583. { name: "Nakisha", species: ["sabertooth-tiger", "leopard"], tags: ["anthro"] },
  54584. {
  54585. dressed: {
  54586. height: math.unit(6 + 9/12, "feet"),
  54587. name: "Dressed",
  54588. image: {
  54589. source: "./media/characters/nakisha/dressed.svg",
  54590. extra: 1909/1757,
  54591. bottom: 48/1957
  54592. }
  54593. },
  54594. nude: {
  54595. height: math.unit(6 + 9/12, "feet"),
  54596. name: "Nude",
  54597. image: {
  54598. source: "./media/characters/nakisha/nude.svg",
  54599. extra: 1917/1765,
  54600. bottom: 34/1951
  54601. }
  54602. },
  54603. },
  54604. [
  54605. {
  54606. name: "Normal",
  54607. height: math.unit(6 + 9/12, "feet"),
  54608. default: true
  54609. },
  54610. ]
  54611. ))
  54612. characterMakers.push(() => makeCharacter(
  54613. { name: "Serafin", species: ["dragon"], tags: ["anthro"] },
  54614. {
  54615. front: {
  54616. height: math.unit(87, "meters"),
  54617. name: "Front",
  54618. image: {
  54619. source: "./media/characters/serafin/front.svg",
  54620. extra: 1919/1776,
  54621. bottom: 65/1984
  54622. }
  54623. },
  54624. },
  54625. [
  54626. {
  54627. name: "Normal",
  54628. height: math.unit(87, "meters"),
  54629. default: true
  54630. },
  54631. ]
  54632. ))
  54633. characterMakers.push(() => makeCharacter(
  54634. { name: "Poptart", species: ["red-panda", "husky"], tags: ["anthro"] },
  54635. {
  54636. front: {
  54637. height: math.unit(6, "feet"),
  54638. weight: math.unit(200, "lb"),
  54639. name: "Front",
  54640. image: {
  54641. source: "./media/characters/poptart/front.svg",
  54642. extra: 615/583,
  54643. bottom: 23/638
  54644. }
  54645. },
  54646. back: {
  54647. height: math.unit(6, "feet"),
  54648. weight: math.unit(200, "lb"),
  54649. name: "Back",
  54650. image: {
  54651. source: "./media/characters/poptart/back.svg",
  54652. extra: 617/584,
  54653. bottom: 22/639
  54654. }
  54655. },
  54656. frontNsfw: {
  54657. height: math.unit(6, "feet"),
  54658. weight: math.unit(200, "lb"),
  54659. name: "Front (NSFW)",
  54660. image: {
  54661. source: "./media/characters/poptart/front-nsfw.svg",
  54662. extra: 615/583,
  54663. bottom: 23/638
  54664. }
  54665. },
  54666. backNsfw: {
  54667. height: math.unit(6, "feet"),
  54668. weight: math.unit(200, "lb"),
  54669. name: "Back (NSFW)",
  54670. image: {
  54671. source: "./media/characters/poptart/back-nsfw.svg",
  54672. extra: 617/584,
  54673. bottom: 22/639
  54674. }
  54675. },
  54676. hand: {
  54677. height: math.unit(1.14, "feet"),
  54678. name: "Hand",
  54679. image: {
  54680. source: "./media/characters/poptart/hand.svg"
  54681. }
  54682. },
  54683. foot: {
  54684. height: math.unit(1.5, "feet"),
  54685. name: "Foot",
  54686. image: {
  54687. source: "./media/characters/poptart/foot.svg"
  54688. }
  54689. },
  54690. },
  54691. [
  54692. {
  54693. name: "Normal",
  54694. height: math.unit(6, "feet"),
  54695. default: true
  54696. },
  54697. {
  54698. name: "Grande",
  54699. height: math.unit(350, "feet")
  54700. },
  54701. {
  54702. name: "Massif",
  54703. height: math.unit(967, "feet")
  54704. },
  54705. ]
  54706. ))
  54707. characterMakers.push(() => makeCharacter(
  54708. { name: "Trance", species: ["hyena"], tags: ["anthro"] },
  54709. {
  54710. hyenaSide: {
  54711. height: math.unit(120, "cm"),
  54712. weight: math.unit(120, "lb"),
  54713. name: "Side",
  54714. image: {
  54715. source: "./media/characters/trance/hyena-side.svg",
  54716. extra: 998/904,
  54717. bottom: 76/1074
  54718. }
  54719. },
  54720. },
  54721. [
  54722. {
  54723. name: "Normal",
  54724. height: math.unit(120, "cm"),
  54725. default: true
  54726. },
  54727. {
  54728. name: "Dire",
  54729. height: math.unit(230, "cm")
  54730. },
  54731. {
  54732. name: "Macro",
  54733. height: math.unit(37, "feet")
  54734. },
  54735. ]
  54736. ))
  54737. characterMakers.push(() => makeCharacter(
  54738. { name: "Michael Berretta", species: ["lion"], tags: ["anthro"] },
  54739. {
  54740. front: {
  54741. height: math.unit(6 + 3/12, "feet"),
  54742. name: "Front",
  54743. image: {
  54744. source: "./media/characters/michael-berretta/front.svg",
  54745. extra: 515/494,
  54746. bottom: 20/535
  54747. }
  54748. },
  54749. back: {
  54750. height: math.unit(6 + 3/12, "feet"),
  54751. name: "Back",
  54752. image: {
  54753. source: "./media/characters/michael-berretta/back.svg",
  54754. extra: 520/497,
  54755. bottom: 21/541
  54756. }
  54757. },
  54758. frontNsfw: {
  54759. height: math.unit(6 + 3/12, "feet"),
  54760. name: "Front (NSFW)",
  54761. image: {
  54762. source: "./media/characters/michael-berretta/front-nsfw.svg",
  54763. extra: 515/494,
  54764. bottom: 20/535
  54765. }
  54766. },
  54767. dick: {
  54768. height: math.unit(1, "feet"),
  54769. name: "Dick",
  54770. image: {
  54771. source: "./media/characters/michael-berretta/dick.svg"
  54772. }
  54773. },
  54774. },
  54775. [
  54776. {
  54777. name: "Normal",
  54778. height: math.unit(6 + 3/12, "feet"),
  54779. default: true
  54780. },
  54781. {
  54782. name: "Big",
  54783. height: math.unit(12, "feet")
  54784. },
  54785. {
  54786. name: "Macro",
  54787. height: math.unit(187.5, "feet")
  54788. },
  54789. ]
  54790. ))
  54791. characterMakers.push(() => makeCharacter(
  54792. { name: "Stella Edgecomb", species: ["bear"], tags: ["anthro"] },
  54793. {
  54794. front: {
  54795. height: math.unit(9 + 9/12, "feet"),
  54796. weight: math.unit(1244, "lb"),
  54797. name: "Front",
  54798. image: {
  54799. source: "./media/characters/stella-edgecomb/front.svg",
  54800. extra: 1835/1706,
  54801. bottom: 49/1884
  54802. }
  54803. },
  54804. pen: {
  54805. height: math.unit(0.95, "feet"),
  54806. name: "Pen",
  54807. image: {
  54808. source: "./media/characters/stella-edgecomb/pen.svg"
  54809. }
  54810. },
  54811. },
  54812. [
  54813. {
  54814. name: "Cozy Bear",
  54815. height: math.unit(0.5, "inches")
  54816. },
  54817. {
  54818. name: "Normal",
  54819. height: math.unit(9 + 9/12, "feet"),
  54820. default: true
  54821. },
  54822. {
  54823. name: "Giga Bear",
  54824. height: math.unit(1, "mile")
  54825. },
  54826. {
  54827. name: "Great Bear",
  54828. height: math.unit(53, "miles")
  54829. },
  54830. {
  54831. name: "Goddess Bear",
  54832. height: math.unit(40000, "miles")
  54833. },
  54834. {
  54835. name: "Sun Bear",
  54836. height: math.unit(900000, "miles")
  54837. },
  54838. ]
  54839. ))
  54840. characterMakers.push(() => makeCharacter(
  54841. { name: "Ash´iika", species: ["dragon"], tags: ["anthro", "feral"] },
  54842. {
  54843. anthroFront: {
  54844. height: math.unit(556, "cm"),
  54845. weight: math.unit(2650, "kg"),
  54846. preyCapacity: math.unit(3, "people"),
  54847. name: "Front",
  54848. image: {
  54849. source: "./media/characters/ash´iika/front.svg",
  54850. extra: 710/673,
  54851. bottom: 15/725
  54852. },
  54853. form: "anthro",
  54854. default: true
  54855. },
  54856. anthroSide: {
  54857. height: math.unit(556, "cm"),
  54858. weight: math.unit(2650, "kg"),
  54859. preyCapacity: math.unit(3, "people"),
  54860. name: "Side",
  54861. image: {
  54862. source: "./media/characters/ash´iika/side.svg",
  54863. extra: 696/676,
  54864. bottom: 13/709
  54865. },
  54866. form: "anthro"
  54867. },
  54868. anthroDressed: {
  54869. height: math.unit(556, "cm"),
  54870. weight: math.unit(2650, "kg"),
  54871. preyCapacity: math.unit(3, "people"),
  54872. name: "Dressed",
  54873. image: {
  54874. source: "./media/characters/ash´iika/dressed.svg",
  54875. extra: 710/673,
  54876. bottom: 15/725
  54877. },
  54878. form: "anthro"
  54879. },
  54880. anthroHead: {
  54881. height: math.unit(3.5, "feet"),
  54882. name: "Head",
  54883. image: {
  54884. source: "./media/characters/ash´iika/head.svg",
  54885. extra: 348/291,
  54886. bottom: 45/393
  54887. },
  54888. form: "anthro"
  54889. },
  54890. feralSide: {
  54891. height: math.unit(870, "cm"),
  54892. weight: math.unit(17500, "kg"),
  54893. preyCapacity: math.unit(15, "people"),
  54894. name: "Side",
  54895. image: {
  54896. source: "./media/characters/ash´iika/feral.svg",
  54897. extra: 595/199,
  54898. bottom: 7/602
  54899. },
  54900. form: "feral",
  54901. default: true,
  54902. },
  54903. },
  54904. [
  54905. {
  54906. name: "Normal",
  54907. height: math.unit(556, "cm"),
  54908. default: true,
  54909. form: "anthro"
  54910. },
  54911. {
  54912. name: "Macro",
  54913. height: math.unit(88, "meters"),
  54914. form: "anthro"
  54915. },
  54916. {
  54917. name: "Normal",
  54918. height: math.unit(870, "cm"),
  54919. default: true,
  54920. form: "feral"
  54921. },
  54922. {
  54923. name: "Large",
  54924. height: math.unit(25, "meters"),
  54925. form: "feral"
  54926. },
  54927. ],
  54928. {
  54929. "anthro": {
  54930. name: "Anthro",
  54931. default: true
  54932. },
  54933. "feral": {
  54934. name: "Feral",
  54935. },
  54936. }
  54937. ))
  54938. characterMakers.push(() => makeCharacter(
  54939. { name: "Yen", species: ["hrothgar"], tags: ["anthro"] },
  54940. {
  54941. front: {
  54942. height: math.unit(10, "feet"),
  54943. weight: math.unit(800, "lb"),
  54944. name: "Front",
  54945. image: {
  54946. source: "./media/characters/yen/front.svg",
  54947. extra: 443/411,
  54948. bottom: 6/449
  54949. }
  54950. },
  54951. sleeping: {
  54952. height: math.unit(10, "feet"),
  54953. weight: math.unit(800, "lb"),
  54954. name: "Sleeping",
  54955. image: {
  54956. source: "./media/characters/yen/sleeping.svg",
  54957. extra: 470/422,
  54958. bottom: 0/470
  54959. }
  54960. },
  54961. head: {
  54962. height: math.unit(2.2, "feet"),
  54963. name: "Head",
  54964. image: {
  54965. source: "./media/characters/yen/head.svg"
  54966. }
  54967. },
  54968. headAlt: {
  54969. height: math.unit(2.1, "feet"),
  54970. name: "Head (Alt)",
  54971. image: {
  54972. source: "./media/characters/yen/head-alt.svg"
  54973. }
  54974. },
  54975. },
  54976. [
  54977. {
  54978. name: "Normal",
  54979. height: math.unit(10, "feet"),
  54980. default: true
  54981. },
  54982. ]
  54983. ))
  54984. characterMakers.push(() => makeCharacter(
  54985. { name: "Citra", species: ["dragon"], tags: ["anthro"] },
  54986. {
  54987. front: {
  54988. height: math.unit(12, "feet"),
  54989. name: "Front",
  54990. image: {
  54991. source: "./media/characters/citra/front.svg",
  54992. extra: 1950/1710,
  54993. bottom: 47/1997
  54994. }
  54995. },
  54996. },
  54997. [
  54998. {
  54999. name: "Normal",
  55000. height: math.unit(12, "feet"),
  55001. default: true
  55002. },
  55003. ]
  55004. ))
  55005. characterMakers.push(() => makeCharacter(
  55006. { name: "Sholstim", species: ["dragon"], tags: ["feral"] },
  55007. {
  55008. side: {
  55009. height: math.unit(7 + 10/12, "feet"),
  55010. name: "Side",
  55011. image: {
  55012. source: "./media/characters/sholstim/side.svg",
  55013. extra: 786/682,
  55014. bottom: 40/826
  55015. }
  55016. },
  55017. },
  55018. [
  55019. {
  55020. name: "Normal",
  55021. height: math.unit(7 + 10/12, "feet"),
  55022. default: true
  55023. },
  55024. ]
  55025. ))
  55026. characterMakers.push(() => makeCharacter(
  55027. { name: "Aggyn", species: ["human", "cobra"], tags: ["anthro"] },
  55028. {
  55029. front: {
  55030. height: math.unit(3.10, "meters"),
  55031. name: "Front",
  55032. image: {
  55033. source: "./media/characters/aggyn/front.svg",
  55034. extra: 1188/963,
  55035. bottom: 24/1212
  55036. }
  55037. },
  55038. },
  55039. [
  55040. {
  55041. name: "Normal",
  55042. height: math.unit(3.10, "meters"),
  55043. default: true
  55044. },
  55045. ]
  55046. ))
  55047. characterMakers.push(() => makeCharacter(
  55048. { name: "Alsandair Hergenroether", species: ["pangolin", "deity"], tags: ["anthro"] },
  55049. {
  55050. front: {
  55051. height: math.unit(7 + 5/12, "feet"),
  55052. weight: math.unit(687, "lb"),
  55053. name: "Front",
  55054. image: {
  55055. source: "./media/characters/alsandair-hergenroether/front.svg",
  55056. extra: 1251/1186,
  55057. bottom: 75/1326
  55058. }
  55059. },
  55060. back: {
  55061. height: math.unit(7 + 5/12, "feet"),
  55062. weight: math.unit(687, "lb"),
  55063. name: "Back",
  55064. image: {
  55065. source: "./media/characters/alsandair-hergenroether/back.svg",
  55066. extra: 1290/1229,
  55067. bottom: 17/1307
  55068. }
  55069. },
  55070. },
  55071. [
  55072. {
  55073. name: "Max Compression",
  55074. height: math.unit(7 + 5/12, "feet"),
  55075. default: true
  55076. },
  55077. {
  55078. name: "\"Normal\"",
  55079. height: math.unit(2, "universes")
  55080. },
  55081. ]
  55082. ))
  55083. characterMakers.push(() => makeCharacter(
  55084. { name: "Ie", species: ["teshari"], tags: ["anthro"] },
  55085. {
  55086. front: {
  55087. height: math.unit(4 + 1/12, "feet"),
  55088. weight: math.unit(92, "lb"),
  55089. name: "Front",
  55090. image: {
  55091. source: "./media/characters/ie/front.svg",
  55092. extra: 1585/1352,
  55093. bottom: 91/1676
  55094. }
  55095. },
  55096. },
  55097. [
  55098. {
  55099. name: "Normal",
  55100. height: math.unit(4 + 1/12, "feet"),
  55101. default: true
  55102. },
  55103. ]
  55104. ))
  55105. characterMakers.push(() => makeCharacter(
  55106. { name: "Willow", species: ["nargacuga", "garchomp"], tags: ["anthro", "taur"] },
  55107. {
  55108. anthro: {
  55109. height: math.unit(6, "feet"),
  55110. weight: math.unit(150, "lb"),
  55111. name: "Front",
  55112. image: {
  55113. source: "./media/characters/willow/anthro.svg",
  55114. extra: 1073/986,
  55115. bottom: 34/1107
  55116. },
  55117. form: "anthro",
  55118. default: true
  55119. },
  55120. taur: {
  55121. height: math.unit(6, "feet"),
  55122. weight: math.unit(150, "lb"),
  55123. name: "Side",
  55124. image: {
  55125. source: "./media/characters/willow/taur.svg",
  55126. extra: 647/512,
  55127. bottom: 136/783
  55128. },
  55129. form: "taur",
  55130. default: true
  55131. },
  55132. },
  55133. [
  55134. {
  55135. name: "Humanoid",
  55136. height: math.unit(2.7, "meters"),
  55137. form: "anthro"
  55138. },
  55139. {
  55140. name: "Normal",
  55141. height: math.unit(9, "meters"),
  55142. form: "anthro",
  55143. default: true
  55144. },
  55145. {
  55146. name: "Humanoid",
  55147. height: math.unit(2.1, "meters"),
  55148. form: "taur"
  55149. },
  55150. {
  55151. name: "Normal",
  55152. height: math.unit(7, "meters"),
  55153. form: "taur",
  55154. default: true
  55155. },
  55156. ],
  55157. {
  55158. "anthro": {
  55159. name: "Anthro",
  55160. default: true
  55161. },
  55162. "taur": {
  55163. name: "Taur",
  55164. },
  55165. }
  55166. ))
  55167. characterMakers.push(() => makeCharacter(
  55168. { name: "Kyan", species: ["sable"], tags: ["anthro"] },
  55169. {
  55170. front: {
  55171. height: math.unit(2 + 5/12, "feet"),
  55172. name: "Front",
  55173. image: {
  55174. source: "./media/characters/kyan/front.svg",
  55175. extra: 460/334,
  55176. bottom: 23/483
  55177. },
  55178. extraAttributes: {
  55179. "toeLength": {
  55180. name: "Toe Length",
  55181. power: 1,
  55182. type: "length",
  55183. base: math.unit(7, "cm")
  55184. },
  55185. "toeclawLength": {
  55186. name: "Toeclaw Length",
  55187. power: 1,
  55188. type: "length",
  55189. base: math.unit(4.7, "cm")
  55190. },
  55191. "earHeight": {
  55192. name: "Ear Height",
  55193. power: 1,
  55194. type: "length",
  55195. base: math.unit(14.1, "cm")
  55196. },
  55197. }
  55198. },
  55199. paws: {
  55200. height: math.unit(0.45, "feet"),
  55201. name: "Paws",
  55202. image: {
  55203. source: "./media/characters/kyan/paws.svg",
  55204. extra: 581/581,
  55205. bottom: 114/695
  55206. }
  55207. },
  55208. },
  55209. [
  55210. {
  55211. name: "Normal",
  55212. height: math.unit(2 + 5/12, "feet"),
  55213. default: true
  55214. },
  55215. ]
  55216. ))
  55217. characterMakers.push(() => makeCharacter(
  55218. { name: "Xazzon", species: ["deino"], tags: ["anthro"] },
  55219. {
  55220. front: {
  55221. height: math.unit(2 + 2/3, "feet"),
  55222. name: "Front",
  55223. image: {
  55224. source: "./media/characters/xazzon/front.svg",
  55225. extra: 1109/984,
  55226. bottom: 42/1151
  55227. }
  55228. },
  55229. back: {
  55230. height: math.unit(2 + 2/3, "feet"),
  55231. name: "Back",
  55232. image: {
  55233. source: "./media/characters/xazzon/back.svg",
  55234. extra: 1095/971,
  55235. bottom: 23/1118
  55236. }
  55237. },
  55238. },
  55239. [
  55240. {
  55241. name: "Normal",
  55242. height: math.unit(2 + 2/3, "feet"),
  55243. default: true
  55244. },
  55245. ]
  55246. ))
  55247. characterMakers.push(() => makeCharacter(
  55248. { name: "Khyla Shadowsong", species: ["charr"], tags: ["anthro"] },
  55249. {
  55250. front: {
  55251. height: math.unit(8, "feet"),
  55252. weight: math.unit(300, "lb"),
  55253. name: "Front",
  55254. image: {
  55255. source: "./media/characters/khyla-shadowsong/front.svg",
  55256. extra: 861/798,
  55257. bottom: 32/893
  55258. }
  55259. },
  55260. side: {
  55261. height: math.unit(8, "feet"),
  55262. weight: math.unit(300, "lb"),
  55263. name: "Side",
  55264. image: {
  55265. source: "./media/characters/khyla-shadowsong/side.svg",
  55266. extra: 790/750,
  55267. bottom: 87/877
  55268. }
  55269. },
  55270. back: {
  55271. height: math.unit(8, "feet"),
  55272. weight: math.unit(300, "lb"),
  55273. name: "Back",
  55274. image: {
  55275. source: "./media/characters/khyla-shadowsong/back.svg",
  55276. extra: 855/808,
  55277. bottom: 14/869
  55278. }
  55279. },
  55280. head: {
  55281. height: math.unit(2.7, "feet"),
  55282. name: "Head",
  55283. image: {
  55284. source: "./media/characters/khyla-shadowsong/head.svg"
  55285. }
  55286. },
  55287. },
  55288. [
  55289. {
  55290. name: "Micro",
  55291. height: math.unit(6, "inches")
  55292. },
  55293. {
  55294. name: "Normal",
  55295. height: math.unit(8, "feet"),
  55296. default: true
  55297. },
  55298. ]
  55299. ))
  55300. characterMakers.push(() => makeCharacter(
  55301. { name: "Tiden", species: ["housecat"], tags: ["anthro"] },
  55302. {
  55303. hyperFront: {
  55304. height: math.unit(9 + 4/12, "feet"),
  55305. weight: math.unit(2000, "lb"),
  55306. name: "Front",
  55307. image: {
  55308. source: "./media/characters/tiden/hyper-front.svg",
  55309. extra: 400/382,
  55310. bottom: 6/406
  55311. },
  55312. form: "hyper",
  55313. },
  55314. regularFront: {
  55315. height: math.unit(7 + 10/12, "feet"),
  55316. weight: math.unit(470, "lb"),
  55317. name: "Front",
  55318. image: {
  55319. source: "./media/characters/tiden/regular-front.svg",
  55320. extra: 468/442,
  55321. bottom: 6/474
  55322. },
  55323. form: "regular",
  55324. },
  55325. },
  55326. [
  55327. {
  55328. name: "Normal",
  55329. height: math.unit(9 + 4/12, "feet"),
  55330. default: true,
  55331. form: "hyper"
  55332. },
  55333. {
  55334. name: "Normal",
  55335. height: math.unit(7 + 10/12, "feet"),
  55336. default: true,
  55337. form: "regular"
  55338. },
  55339. ],
  55340. {
  55341. "hyper": {
  55342. name: "Hyper",
  55343. default: true
  55344. },
  55345. "regular": {
  55346. name: "Regular",
  55347. },
  55348. }
  55349. ))
  55350. characterMakers.push(() => makeCharacter(
  55351. { name: "Jason Crowe", species: ["gryphon", "raven", "bombay-cat"], tags: ["feral"] },
  55352. {
  55353. side: {
  55354. height: math.unit(6, "feet"),
  55355. weight: math.unit(150, "lb"),
  55356. name: "Side",
  55357. image: {
  55358. source: "./media/characters/jason-crowe/side.svg",
  55359. extra: 1771/766,
  55360. bottom: 219/1990
  55361. }
  55362. },
  55363. },
  55364. [
  55365. {
  55366. name: "Pocket Gryphon",
  55367. height: math.unit(6, "cm")
  55368. },
  55369. {
  55370. name: "Raven",
  55371. height: math.unit(60, "cm")
  55372. },
  55373. {
  55374. name: "Normal",
  55375. height: math.unit(1, "meter"),
  55376. default: true
  55377. },
  55378. ]
  55379. ))
  55380. characterMakers.push(() => makeCharacter(
  55381. { name: "Django", species: ["maine-coon"], tags: ["anthro"] },
  55382. {
  55383. front: {
  55384. height: math.unit(9 + 6/12, "feet"),
  55385. weight: math.unit(1100, "lb"),
  55386. name: "Front",
  55387. image: {
  55388. source: "./media/characters/django/front.svg",
  55389. extra: 1231/1136,
  55390. bottom: 34/1265
  55391. }
  55392. },
  55393. side: {
  55394. height: math.unit(9 + 6/12, "feet"),
  55395. weight: math.unit(1100, "lb"),
  55396. name: "Side",
  55397. image: {
  55398. source: "./media/characters/django/side.svg",
  55399. extra: 1267/1174,
  55400. bottom: 9/1276
  55401. }
  55402. },
  55403. },
  55404. [
  55405. {
  55406. name: "Normal",
  55407. height: math.unit(9 + 6/12, "feet"),
  55408. default: true
  55409. },
  55410. {
  55411. name: "Macro 1",
  55412. height: math.unit(50, "feet")
  55413. },
  55414. {
  55415. name: "Macro 2",
  55416. height: math.unit(500, "feet")
  55417. },
  55418. {
  55419. name: "Mega Macro",
  55420. height: math.unit(5300, "feet")
  55421. },
  55422. ]
  55423. ))
  55424. characterMakers.push(() => makeCharacter(
  55425. { name: "Eri", species: ["moth", "alien"], tags: ["anthro"] },
  55426. {
  55427. frontSfw: {
  55428. height: math.unit(120, "cm"),
  55429. weight: math.unit(15, "kg"),
  55430. name: "Front (SFW)",
  55431. image: {
  55432. source: "./media/characters/eri/front-sfw.svg",
  55433. extra: 1014/939,
  55434. bottom: 37/1051
  55435. },
  55436. form: "moth",
  55437. },
  55438. frontNsfw: {
  55439. height: math.unit(120, "cm"),
  55440. weight: math.unit(15, "kg"),
  55441. name: "Front (NSFW)",
  55442. image: {
  55443. source: "./media/characters/eri/front-nsfw.svg",
  55444. extra: 1014/939,
  55445. bottom: 37/1051
  55446. },
  55447. form: "moth",
  55448. default: true
  55449. },
  55450. egg: {
  55451. height: math.unit(10, "cm"),
  55452. name: "Egg",
  55453. image: {
  55454. source: "./media/characters/eri/egg.svg"
  55455. },
  55456. form: "egg",
  55457. default: true
  55458. },
  55459. },
  55460. [
  55461. {
  55462. name: "Normal",
  55463. height: math.unit(120, "cm"),
  55464. default: true,
  55465. form: "moth"
  55466. },
  55467. {
  55468. name: "Normal",
  55469. height: math.unit(10, "cm"),
  55470. default: true,
  55471. form: "egg"
  55472. },
  55473. ],
  55474. {
  55475. "moth": {
  55476. name: "Moth",
  55477. default: true
  55478. },
  55479. "egg": {
  55480. name: "Egg",
  55481. },
  55482. }
  55483. ))
  55484. characterMakers.push(() => makeCharacter(
  55485. { name: "Bishop Dowser", species: ["red-panda"], tags: ["anthro"] },
  55486. {
  55487. front: {
  55488. height: math.unit(200, "feet"),
  55489. name: "Front",
  55490. image: {
  55491. source: "./media/characters/bishop-dowser/front.svg",
  55492. extra: 933/868,
  55493. bottom: 106/1039
  55494. }
  55495. },
  55496. },
  55497. [
  55498. {
  55499. name: "Giant",
  55500. height: math.unit(200, "feet"),
  55501. default: true
  55502. },
  55503. ]
  55504. ))
  55505. characterMakers.push(() => makeCharacter(
  55506. { name: "Fryra", species: ["dragon", "cow"], tags: ["anthro"] },
  55507. {
  55508. front: {
  55509. height: math.unit(2, "meters"),
  55510. preyCapacity: math.unit(3, "people"),
  55511. name: "Front",
  55512. image: {
  55513. source: "./media/characters/fryra/front.svg",
  55514. extra: 1025/948,
  55515. bottom: 30/1055
  55516. },
  55517. extraAttributes: {
  55518. "breastVolume": {
  55519. name: "Breast Volume",
  55520. power: 3,
  55521. type: "volume",
  55522. base: math.unit(8, "liters")
  55523. },
  55524. }
  55525. },
  55526. back: {
  55527. height: math.unit(2, "meters"),
  55528. preyCapacity: math.unit(3, "people"),
  55529. name: "Back",
  55530. image: {
  55531. source: "./media/characters/fryra/back.svg",
  55532. extra: 993/938,
  55533. bottom: 38/1031
  55534. },
  55535. extraAttributes: {
  55536. "breastVolume": {
  55537. name: "Breast Volume",
  55538. power: 3,
  55539. type: "volume",
  55540. base: math.unit(8, "liters")
  55541. },
  55542. }
  55543. },
  55544. head: {
  55545. height: math.unit(1.33, "feet"),
  55546. name: "Head",
  55547. image: {
  55548. source: "./media/characters/fryra/head.svg"
  55549. }
  55550. },
  55551. maw: {
  55552. height: math.unit(0.56, "feet"),
  55553. name: "Maw",
  55554. image: {
  55555. source: "./media/characters/fryra/maw.svg"
  55556. }
  55557. },
  55558. },
  55559. [
  55560. {
  55561. name: "Micro",
  55562. height: math.unit(5, "cm")
  55563. },
  55564. {
  55565. name: "Normal",
  55566. height: math.unit(2, "meters"),
  55567. default: true
  55568. },
  55569. {
  55570. name: "Small Macro",
  55571. height: math.unit(8, "meters")
  55572. },
  55573. {
  55574. name: "Macro",
  55575. height: math.unit(50, "meters")
  55576. },
  55577. {
  55578. name: "Megamacro",
  55579. height: math.unit(1, "km")
  55580. },
  55581. {
  55582. name: "Planetary",
  55583. height: math.unit(300000, "km")
  55584. },
  55585. {
  55586. name: "Universal",
  55587. height: math.unit(250, "lightyears")
  55588. },
  55589. {
  55590. name: "Fabric of Reality",
  55591. height: math.unit(1000, "multiverses")
  55592. },
  55593. ]
  55594. ))
  55595. characterMakers.push(() => makeCharacter(
  55596. { name: "Fiera", species: ["husky"], tags: ["anthro"] },
  55597. {
  55598. frontDressed: {
  55599. height: math.unit(6 + 2/12, "feet"),
  55600. name: "Front (Dressed)",
  55601. image: {
  55602. source: "./media/characters/fiera/front-dressed.svg",
  55603. extra: 1883/1793,
  55604. bottom: 70/1953
  55605. }
  55606. },
  55607. backDressed: {
  55608. height: math.unit(6 + 2/12, "feet"),
  55609. name: "Back (Dressed)",
  55610. image: {
  55611. source: "./media/characters/fiera/back-dressed.svg",
  55612. extra: 1847/1780,
  55613. bottom: 70/1917
  55614. }
  55615. },
  55616. frontNude: {
  55617. height: math.unit(6 + 2/12, "feet"),
  55618. name: "Front (Nude)",
  55619. image: {
  55620. source: "./media/characters/fiera/front-nude.svg",
  55621. extra: 1875/1785,
  55622. bottom: 66/1941
  55623. }
  55624. },
  55625. backNude: {
  55626. height: math.unit(6 + 2/12, "feet"),
  55627. name: "Back (Nude)",
  55628. image: {
  55629. source: "./media/characters/fiera/back-nude.svg",
  55630. extra: 1855/1788,
  55631. bottom: 44/1899
  55632. }
  55633. },
  55634. maw: {
  55635. height: math.unit(1.3, "feet"),
  55636. name: "Maw",
  55637. image: {
  55638. source: "./media/characters/fiera/maw.svg"
  55639. }
  55640. },
  55641. paw: {
  55642. height: math.unit(1, "feet"),
  55643. name: "Paw",
  55644. image: {
  55645. source: "./media/characters/fiera/paw.svg"
  55646. }
  55647. },
  55648. shoe: {
  55649. height: math.unit(1.05, "feet"),
  55650. name: "Shoe",
  55651. image: {
  55652. source: "./media/characters/fiera/shoe.svg"
  55653. }
  55654. },
  55655. },
  55656. [
  55657. {
  55658. name: "Normal",
  55659. height: math.unit(6 + 2/12, "feet"),
  55660. default: true
  55661. },
  55662. {
  55663. name: "Size Difference",
  55664. height: math.unit(13, "feet")
  55665. },
  55666. {
  55667. name: "Macro",
  55668. height: math.unit(60, "feet")
  55669. },
  55670. {
  55671. name: "Mega Macro",
  55672. height: math.unit(200, "feet")
  55673. },
  55674. ]
  55675. ))
  55676. characterMakers.push(() => makeCharacter(
  55677. { name: "Flare", species: ["husky"], tags: ["anthro"] },
  55678. {
  55679. back: {
  55680. height: math.unit(6, "feet"),
  55681. name: "Back",
  55682. image: {
  55683. source: "./media/characters/flare/back.svg",
  55684. extra: 1883/1765,
  55685. bottom: 32/1915
  55686. }
  55687. },
  55688. },
  55689. [
  55690. {
  55691. name: "Normal",
  55692. height: math.unit(6 + 2/12, "feet"),
  55693. default: true
  55694. },
  55695. {
  55696. name: "Size Difference",
  55697. height: math.unit(13, "feet")
  55698. },
  55699. {
  55700. name: "Macro",
  55701. height: math.unit(60, "feet")
  55702. },
  55703. {
  55704. name: "Macro 2",
  55705. height: math.unit(100, "feet")
  55706. },
  55707. {
  55708. name: "Mega Macro",
  55709. height: math.unit(200, "feet")
  55710. },
  55711. ]
  55712. ))
  55713. characterMakers.push(() => makeCharacter(
  55714. { name: "Hanna", species: ["coelacanth"], tags: ["anthro"] },
  55715. {
  55716. front: {
  55717. height: math.unit(2.2, "m"),
  55718. weight: math.unit(300, "kg"),
  55719. name: "Front",
  55720. image: {
  55721. source: "./media/characters/hanna/front.svg",
  55722. extra: 1696/1502,
  55723. bottom: 206/1902
  55724. }
  55725. },
  55726. },
  55727. [
  55728. {
  55729. name: "Humanoid",
  55730. height: math.unit(2.2, "meters")
  55731. },
  55732. {
  55733. name: "Normal",
  55734. height: math.unit(4.8, "meters"),
  55735. default: true
  55736. },
  55737. ]
  55738. ))
  55739. characterMakers.push(() => makeCharacter(
  55740. { name: "Argo", species: ["silvally"], tags: ["taur"] },
  55741. {
  55742. front: {
  55743. height: math.unit(2.8, "meters"),
  55744. name: "Front",
  55745. image: {
  55746. source: "./media/characters/argo/front.svg",
  55747. extra: 731/518,
  55748. bottom: 84/815
  55749. }
  55750. },
  55751. },
  55752. [
  55753. {
  55754. name: "Normal",
  55755. height: math.unit(3, "meters"),
  55756. default: true
  55757. },
  55758. ]
  55759. ))
  55760. characterMakers.push(() => makeCharacter(
  55761. { name: "Sybil", species: ["scolipede", "typhlosion"], tags: ["feral"] },
  55762. {
  55763. side: {
  55764. height: math.unit(3.8, "meters"),
  55765. name: "Side",
  55766. image: {
  55767. source: "./media/characters/sybil/side.svg",
  55768. extra: 382/361,
  55769. bottom: 25/407
  55770. }
  55771. },
  55772. },
  55773. [
  55774. {
  55775. name: "Normal",
  55776. height: math.unit(3.8, "meters"),
  55777. default: true
  55778. },
  55779. ]
  55780. ))
  55781. characterMakers.push(() => makeCharacter(
  55782. { name: "Plum", species: ["great-maccao"], tags: ["taur", "feral"] },
  55783. {
  55784. side: {
  55785. height: math.unit(6, "meters"),
  55786. name: "Side",
  55787. image: {
  55788. source: "./media/characters/plum/side.svg",
  55789. extra: 858/755,
  55790. bottom: 45/903
  55791. },
  55792. form: "taur",
  55793. default: true
  55794. },
  55795. back: {
  55796. height: math.unit(6.3, "meters"),
  55797. name: "Back",
  55798. image: {
  55799. source: "./media/characters/plum/back.svg",
  55800. extra: 887/813,
  55801. bottom: 32/919
  55802. },
  55803. form: "taur",
  55804. },
  55805. feral: {
  55806. height: math.unit(5.5, "meter"),
  55807. name: "Front",
  55808. image: {
  55809. source: "./media/characters/plum/feral.svg",
  55810. extra: 568/403,
  55811. bottom: 51/619
  55812. },
  55813. form: "feral",
  55814. default: true
  55815. },
  55816. head: {
  55817. height: math.unit(1.46, "meter"),
  55818. name: "Head",
  55819. image: {
  55820. source: "./media/characters/plum/head.svg"
  55821. },
  55822. form: "taur"
  55823. },
  55824. tailTop: {
  55825. height: math.unit(5.6, "meter"),
  55826. name: "Tail (Top)",
  55827. image: {
  55828. source: "./media/characters/plum/tail-top.svg"
  55829. },
  55830. form: "taur",
  55831. },
  55832. tailBottom: {
  55833. height: math.unit(5.6, "meter"),
  55834. name: "Tail (Bottom)",
  55835. image: {
  55836. source: "./media/characters/plum/tail-bottom.svg"
  55837. },
  55838. form: "taur",
  55839. },
  55840. feralHead: {
  55841. height: math.unit(2.56549521, "meter"),
  55842. name: "Head",
  55843. image: {
  55844. source: "./media/characters/plum/head.svg"
  55845. },
  55846. form: "feral"
  55847. },
  55848. feralTailTop: {
  55849. height: math.unit(5.44728435, "meter"),
  55850. name: "Tail (Top)",
  55851. image: {
  55852. source: "./media/characters/plum/tail-top.svg"
  55853. },
  55854. form: "feral",
  55855. },
  55856. feralTailBottom: {
  55857. height: math.unit(5.44728435, "meter"),
  55858. name: "Tail (Bottom)",
  55859. image: {
  55860. source: "./media/characters/plum/tail-bottom.svg"
  55861. },
  55862. form: "feral",
  55863. },
  55864. },
  55865. [
  55866. {
  55867. name: "Normal",
  55868. height: math.unit(6, "meters"),
  55869. default: true,
  55870. form: "taur"
  55871. },
  55872. {
  55873. name: "Normal",
  55874. height: math.unit(5.5, "meters"),
  55875. default: true,
  55876. form: "feral"
  55877. },
  55878. ],
  55879. {
  55880. "taur": {
  55881. name: "Taur",
  55882. default: true
  55883. },
  55884. "feral": {
  55885. name: "Feral",
  55886. },
  55887. }
  55888. ))
  55889. characterMakers.push(() => makeCharacter(
  55890. { name: "Celeste (Kitsune)", species: ["kitsune"], tags: ["anthro"] },
  55891. {
  55892. front: {
  55893. height: math.unit(6, "feet"),
  55894. weight: math.unit(115, "lb"),
  55895. name: "Front",
  55896. image: {
  55897. source: "./media/characters/celeste-kitsune/front.svg",
  55898. extra: 393/366,
  55899. bottom: 7/400
  55900. }
  55901. },
  55902. side: {
  55903. height: math.unit(6, "feet"),
  55904. weight: math.unit(115, "lb"),
  55905. name: "Side",
  55906. image: {
  55907. source: "./media/characters/celeste-kitsune/side.svg",
  55908. extra: 818/765,
  55909. bottom: 40/858
  55910. }
  55911. },
  55912. },
  55913. [
  55914. {
  55915. name: "Megamacro",
  55916. height: math.unit(1500, "miles"),
  55917. default: true
  55918. },
  55919. ]
  55920. ))
  55921. characterMakers.push(() => makeCharacter(
  55922. { name: "Io", species: ["shapeshifter"], tags: ["anthro"] },
  55923. {
  55924. front: {
  55925. height: math.unit(8, "meters"),
  55926. name: "Front",
  55927. image: {
  55928. source: "./media/characters/io/front.svg",
  55929. extra: 865/722,
  55930. bottom: 58/923
  55931. }
  55932. },
  55933. back: {
  55934. height: math.unit(8, "meters"),
  55935. name: "Back",
  55936. image: {
  55937. source: "./media/characters/io/back.svg",
  55938. extra: 920/776,
  55939. bottom: 42/962
  55940. }
  55941. },
  55942. head: {
  55943. height: math.unit(5.09, "meters"),
  55944. name: "Head",
  55945. image: {
  55946. source: "./media/characters/io/head.svg"
  55947. }
  55948. },
  55949. hand: {
  55950. height: math.unit(1.6, "meters"),
  55951. name: "Hand",
  55952. image: {
  55953. source: "./media/characters/io/hand.svg"
  55954. }
  55955. },
  55956. foot: {
  55957. height: math.unit(2.4, "meters"),
  55958. name: "Foot",
  55959. image: {
  55960. source: "./media/characters/io/foot.svg"
  55961. }
  55962. },
  55963. },
  55964. [
  55965. {
  55966. name: "Normal",
  55967. height: math.unit(8, "meters"),
  55968. default: true
  55969. },
  55970. ]
  55971. ))
  55972. characterMakers.push(() => makeCharacter(
  55973. { name: "Silas", species: ["skaven"], tags: ["anthro"] },
  55974. {
  55975. side: {
  55976. height: math.unit(6 + 3/12, "feet"),
  55977. weight: math.unit(225, "lb"),
  55978. name: "Side",
  55979. image: {
  55980. source: "./media/characters/silas/side.svg",
  55981. extra: 703/653,
  55982. bottom: 23/726
  55983. },
  55984. extraAttributes: {
  55985. "pawLength": {
  55986. name: "Paw Length",
  55987. power: 1,
  55988. type: "length",
  55989. base: math.unit(12, "inches")
  55990. },
  55991. "pawWidth": {
  55992. name: "Paw Width",
  55993. power: 1,
  55994. type: "length",
  55995. base: math.unit(4.5, "inches")
  55996. },
  55997. "pawArea": {
  55998. name: "Paw Area",
  55999. power: 2,
  56000. type: "area",
  56001. base: math.unit(12 * 4.5, "inches^2")
  56002. },
  56003. }
  56004. },
  56005. },
  56006. [
  56007. {
  56008. name: "Normal",
  56009. height: math.unit(6 + 3/12, "feet"),
  56010. default: true
  56011. },
  56012. ]
  56013. ))
  56014. characterMakers.push(() => makeCharacter(
  56015. { name: "Zari", species: ["otter"], tags: ["anthro"] },
  56016. {
  56017. back: {
  56018. height: math.unit(1.6, "meters"),
  56019. weight: math.unit(150, "lb"),
  56020. name: "Back",
  56021. image: {
  56022. source: "./media/characters/zari/back.svg",
  56023. extra: 424/411,
  56024. bottom: 32/456
  56025. },
  56026. extraAttributes: {
  56027. "bladderCapacity": {
  56028. name: "Bladder Size",
  56029. power: 3,
  56030. type: "volume",
  56031. base: math.unit(500, "mL")
  56032. },
  56033. "bladderFlow": {
  56034. name: "Flow Rate",
  56035. power: 3,
  56036. type: "volume",
  56037. base: math.unit(25, "mL")
  56038. },
  56039. }
  56040. },
  56041. },
  56042. [
  56043. {
  56044. name: "Normal",
  56045. height: math.unit(1.6, "meters"),
  56046. default: true
  56047. },
  56048. ]
  56049. ))
  56050. characterMakers.push(() => makeCharacter(
  56051. { name: "Charlie (Human)", species: ["human"], tags: ["anthro"] },
  56052. {
  56053. front: {
  56054. height: math.unit(25, "feet"),
  56055. weight: math.unit(5, "tons"),
  56056. name: "Front",
  56057. image: {
  56058. source: "./media/characters/charlie-human/front.svg",
  56059. extra: 1870/1740,
  56060. bottom: 102/1972
  56061. },
  56062. extraAttributes: {
  56063. "dickLength": {
  56064. name: "Dick Length",
  56065. power: 1,
  56066. type: "length",
  56067. base: math.unit(9, "feet")
  56068. },
  56069. }
  56070. },
  56071. back: {
  56072. height: math.unit(25, "feet"),
  56073. weight: math.unit(5, "tons"),
  56074. name: "Back",
  56075. image: {
  56076. source: "./media/characters/charlie-human/back.svg",
  56077. extra: 1858/1733,
  56078. bottom: 105/1963
  56079. },
  56080. extraAttributes: {
  56081. "dickLength": {
  56082. name: "Dick Length",
  56083. power: 1,
  56084. type: "length",
  56085. base: math.unit(9, "feet")
  56086. },
  56087. }
  56088. },
  56089. },
  56090. [
  56091. {
  56092. name: "\"Normal\"",
  56093. height: math.unit(6 + 4/12, "feet")
  56094. },
  56095. {
  56096. name: "Big",
  56097. height: math.unit(25, "feet"),
  56098. default: true
  56099. },
  56100. ]
  56101. ))
  56102. characterMakers.push(() => makeCharacter(
  56103. { name: "Ookitsu", species: ["kitsune"], tags: ["anthro"] },
  56104. {
  56105. front: {
  56106. height: math.unit(6 + 4/12, "feet"),
  56107. weight: math.unit(320, "lb"),
  56108. name: "Front",
  56109. image: {
  56110. source: "./media/characters/ookitsu/front.svg",
  56111. extra: 1160/976,
  56112. bottom: 38/1198
  56113. }
  56114. },
  56115. frontNsfw: {
  56116. height: math.unit(6 + 4/12, "feet"),
  56117. weight: math.unit(320, "lb"),
  56118. name: "Front (NSFW)",
  56119. image: {
  56120. source: "./media/characters/ookitsu/front-nsfw.svg",
  56121. extra: 1160/976,
  56122. bottom: 38/1198
  56123. }
  56124. },
  56125. back: {
  56126. height: math.unit(6 + 4/12, "feet"),
  56127. weight: math.unit(320, "lb"),
  56128. name: "Back",
  56129. image: {
  56130. source: "./media/characters/ookitsu/back.svg",
  56131. extra: 1030/975,
  56132. bottom: 70/1100
  56133. }
  56134. },
  56135. head: {
  56136. height: math.unit(1.79, "feet"),
  56137. name: "Head",
  56138. image: {
  56139. source: "./media/characters/ookitsu/head.svg"
  56140. }
  56141. },
  56142. hand: {
  56143. height: math.unit(0.92, "feet"),
  56144. name: "Hand",
  56145. image: {
  56146. source: "./media/characters/ookitsu/hand.svg"
  56147. }
  56148. },
  56149. tails: {
  56150. height: math.unit(3.3, "feet"),
  56151. name: "Tails",
  56152. image: {
  56153. source: "./media/characters/ookitsu/tails.svg"
  56154. }
  56155. },
  56156. dick: {
  56157. height: math.unit(1.10833, "feet"),
  56158. name: "Dick",
  56159. image: {
  56160. source: "./media/characters/ookitsu/dick.svg"
  56161. }
  56162. },
  56163. },
  56164. [
  56165. {
  56166. name: "Normal",
  56167. height: math.unit(6 + 4/12, "feet"),
  56168. default: true
  56169. },
  56170. {
  56171. name: "Macro",
  56172. height: math.unit(30, "feet")
  56173. },
  56174. ]
  56175. ))
  56176. characterMakers.push(() => makeCharacter(
  56177. { name: "JHusky", species: ["husky"], tags: ["anthro", "taur"] },
  56178. {
  56179. anthroFront: {
  56180. height: math.unit(6, "feet"),
  56181. weight: math.unit(250, "lb"),
  56182. name: "Front",
  56183. image: {
  56184. source: "./media/characters/jhusky/anthro-front.svg",
  56185. extra: 474/439,
  56186. bottom: 7/481
  56187. },
  56188. form: "anthro",
  56189. default: true
  56190. },
  56191. taurSideSfw: {
  56192. height: math.unit(6 + 4/12, "feet"),
  56193. weight: math.unit(500, "lb"),
  56194. name: "Side (SFW)",
  56195. image: {
  56196. source: "./media/characters/jhusky/taur-side-sfw.svg",
  56197. extra: 1741/1629,
  56198. bottom: 196/1937
  56199. },
  56200. form: "taur",
  56201. default: true
  56202. },
  56203. taurSideNsfw: {
  56204. height: math.unit(6 + 4/12, "feet"),
  56205. weight: math.unit(500, "lb"),
  56206. name: "Taur (NSFW)",
  56207. image: {
  56208. source: "./media/characters/jhusky/taur-side-nsfw.svg",
  56209. extra: 1741/1629,
  56210. bottom: 196/1937
  56211. },
  56212. form: "taur",
  56213. },
  56214. },
  56215. [
  56216. {
  56217. name: "Huge",
  56218. height: math.unit(500, "feet"),
  56219. form: "anthro"
  56220. },
  56221. {
  56222. name: "Macro",
  56223. height: math.unit(1000, "feet"),
  56224. default: true,
  56225. form: "anthro"
  56226. },
  56227. {
  56228. name: "Megamacro",
  56229. height: math.unit(10000, "feet"),
  56230. form: "anthro"
  56231. },
  56232. {
  56233. name: "Huge",
  56234. height: math.unit(528, "feet"),
  56235. form: "taur"
  56236. },
  56237. {
  56238. name: "Macro",
  56239. height: math.unit(1056, "feet"),
  56240. default: true,
  56241. form: "taur"
  56242. },
  56243. {
  56244. name: "Megamacro",
  56245. height: math.unit(10556, "feet"),
  56246. form: "taur"
  56247. },
  56248. ],
  56249. {
  56250. "anthro": {
  56251. name: "Anthro",
  56252. default: true
  56253. },
  56254. "taur": {
  56255. name: "Taur",
  56256. },
  56257. }
  56258. ))
  56259. characterMakers.push(() => makeCharacter(
  56260. { name: "Armail", species: ["obstagoon"], tags: ["anthro"] },
  56261. {
  56262. front: {
  56263. height: math.unit(8, "feet"),
  56264. weight: math.unit(500, "lb"),
  56265. name: "Front",
  56266. image: {
  56267. source: "./media/characters/armail/front.svg",
  56268. extra: 1753/1669,
  56269. bottom: 155/1908
  56270. }
  56271. },
  56272. back: {
  56273. height: math.unit(8, "feet"),
  56274. weight: math.unit(500, "lb"),
  56275. name: "Back",
  56276. image: {
  56277. source: "./media/characters/armail/back.svg",
  56278. extra: 1872/1803,
  56279. bottom: 63/1935
  56280. }
  56281. },
  56282. },
  56283. [
  56284. {
  56285. name: "Micro",
  56286. height: math.unit(0.25, "feet")
  56287. },
  56288. {
  56289. name: "Normal",
  56290. height: math.unit(8, "feet"),
  56291. default: true
  56292. },
  56293. {
  56294. name: "Mini-macro",
  56295. height: math.unit(30, "feet")
  56296. },
  56297. {
  56298. name: "Macro",
  56299. height: math.unit(400, "feet")
  56300. },
  56301. {
  56302. name: "Mega-macro",
  56303. height: math.unit(6000, "feet")
  56304. },
  56305. ]
  56306. ))
  56307. characterMakers.push(() => makeCharacter(
  56308. { name: "Wilfred T. Buxton", species: ["thomsons-gazelle"], tags: ["anthro"] },
  56309. {
  56310. front: {
  56311. height: math.unit(6 + 7/12, "feet"),
  56312. weight: math.unit(210, "lb"),
  56313. name: "Front",
  56314. image: {
  56315. source: "./media/characters/wilfred-t-buxton/front.svg",
  56316. extra: 1068/882,
  56317. bottom: 28/1096
  56318. }
  56319. },
  56320. },
  56321. [
  56322. {
  56323. name: "Normal",
  56324. height: math.unit(6 + 7/12, "feet"),
  56325. default: true
  56326. },
  56327. ]
  56328. ))
  56329. characterMakers.push(() => makeCharacter(
  56330. { name: "Leighton Marrow", species: ["deer"], tags: ["anthro"] },
  56331. {
  56332. front: {
  56333. height: math.unit(5 + 2/12, "feet"),
  56334. weight: math.unit(120, "lb"),
  56335. name: "Front",
  56336. image: {
  56337. source: "./media/characters/leighton-marrow/front.svg",
  56338. extra: 441/409,
  56339. bottom: 37/478
  56340. }
  56341. },
  56342. },
  56343. [
  56344. {
  56345. name: "Normal",
  56346. height: math.unit(5 + 2/12, "feet"),
  56347. default: true
  56348. },
  56349. ]
  56350. ))
  56351. characterMakers.push(() => makeCharacter(
  56352. { name: "Licos", species: ["werewolf"], tags: ["anthro", "taur"] },
  56353. {
  56354. front: {
  56355. height: math.unit(4, "meters"),
  56356. weight: math.unit(1200, "kg"),
  56357. name: "Front",
  56358. image: {
  56359. source: "./media/characters/licos/front.svg",
  56360. extra: 1727/1604,
  56361. bottom: 101/1828
  56362. },
  56363. form: "anthro",
  56364. default: true
  56365. },
  56366. taur_side: {
  56367. height: math.unit(20, "meters"),
  56368. weight: math.unit(1100000, "kg"),
  56369. name: "Side",
  56370. image: {
  56371. source: "./media/characters/licos/taur.svg",
  56372. extra: 1158/1091,
  56373. bottom: 80/1238
  56374. },
  56375. form: "taur",
  56376. default: true
  56377. },
  56378. },
  56379. [
  56380. {
  56381. name: "Normal",
  56382. height: math.unit(4, "meters"),
  56383. default: true,
  56384. form: "anthro"
  56385. },
  56386. {
  56387. name: "Normal",
  56388. height: math.unit(20, "meters"),
  56389. default: true,
  56390. form: "taur"
  56391. },
  56392. ],
  56393. {
  56394. "anthro": {
  56395. name: "Anthro",
  56396. default: true
  56397. },
  56398. "taur": {
  56399. name: "Taur",
  56400. },
  56401. }
  56402. ))
  56403. characterMakers.push(() => makeCharacter(
  56404. { name: "Theo (Monkey)", species: ["monkey"], tags: ["anthro"] },
  56405. {
  56406. front: {
  56407. height: math.unit(10 + 3/12, "feet"),
  56408. name: "Front",
  56409. image: {
  56410. source: "./media/characters/theo-monkey/front.svg",
  56411. extra: 1735/1658,
  56412. bottom: 73/1808
  56413. }
  56414. },
  56415. back: {
  56416. height: math.unit(10 + 3/12, "feet"),
  56417. name: "Back",
  56418. image: {
  56419. source: "./media/characters/theo-monkey/back.svg",
  56420. extra: 1742/1664,
  56421. bottom: 33/1775
  56422. }
  56423. },
  56424. head: {
  56425. height: math.unit(2.29, "feet"),
  56426. name: "Head",
  56427. image: {
  56428. source: "./media/characters/theo-monkey/head.svg"
  56429. }
  56430. },
  56431. handPalm: {
  56432. height: math.unit(1.73, "feet"),
  56433. name: "Hand (Palm)",
  56434. image: {
  56435. source: "./media/characters/theo-monkey/hand-palm.svg"
  56436. }
  56437. },
  56438. handBack: {
  56439. height: math.unit(1.63, "feet"),
  56440. name: "Hand (Back)",
  56441. image: {
  56442. source: "./media/characters/theo-monkey/hand-back.svg"
  56443. }
  56444. },
  56445. footSole: {
  56446. height: math.unit(2.15, "feet"),
  56447. name: "Foot (Sole)",
  56448. image: {
  56449. source: "./media/characters/theo-monkey/foot-sole.svg"
  56450. }
  56451. },
  56452. footSide: {
  56453. height: math.unit(1.6, "feet"),
  56454. name: "Foot (Side)",
  56455. image: {
  56456. source: "./media/characters/theo-monkey/foot-side.svg"
  56457. }
  56458. },
  56459. },
  56460. [
  56461. {
  56462. name: "Normal",
  56463. height: math.unit(10 + 3/12, "feet"),
  56464. default: true
  56465. },
  56466. ]
  56467. ))
  56468. characterMakers.push(() => makeCharacter(
  56469. { name: "Brook", species: ["serval"], tags: ["anthro"] },
  56470. {
  56471. front: {
  56472. height: math.unit(11, "feet"),
  56473. weight: math.unit(3000, "lb"),
  56474. preyCapacity: math.unit(10, "people"),
  56475. name: "Front",
  56476. image: {
  56477. source: "./media/characters/brook/front.svg",
  56478. extra: 909/835,
  56479. bottom: 108/1017
  56480. }
  56481. },
  56482. back: {
  56483. height: math.unit(11, "feet"),
  56484. weight: math.unit(3000, "lb"),
  56485. preyCapacity: math.unit(10, "people"),
  56486. name: "Back",
  56487. image: {
  56488. source: "./media/characters/brook/back.svg",
  56489. extra: 976/916,
  56490. bottom: 34/1010
  56491. }
  56492. },
  56493. backAlt: {
  56494. height: math.unit(11, "feet"),
  56495. weight: math.unit(3000, "lb"),
  56496. preyCapacity: math.unit(10, "people"),
  56497. name: "Back (Alt)",
  56498. image: {
  56499. source: "./media/characters/brook/back-alt.svg",
  56500. extra: 1283/1213,
  56501. bottom: 35/1318
  56502. }
  56503. },
  56504. bust: {
  56505. height: math.unit(9.0859030837, "feet"),
  56506. weight: math.unit(3000, "lb"),
  56507. preyCapacity: math.unit(10, "people"),
  56508. name: "Bust",
  56509. image: {
  56510. source: "./media/characters/brook/bust.svg",
  56511. extra: 2043/1923,
  56512. bottom: 0/2043
  56513. }
  56514. },
  56515. },
  56516. [
  56517. {
  56518. name: "Small",
  56519. height: math.unit(11, "feet"),
  56520. default: true
  56521. },
  56522. {
  56523. name: "Towering",
  56524. height: math.unit(5, "km")
  56525. },
  56526. {
  56527. name: "Enormous",
  56528. height: math.unit(25, "earths")
  56529. },
  56530. ]
  56531. ))
  56532. characterMakers.push(() => makeCharacter(
  56533. { name: "Squishi", species: ["swampert"], tags: ["anthro"] },
  56534. {
  56535. front: {
  56536. height: math.unit(4, "feet"),
  56537. weight: math.unit(150, "lb"),
  56538. name: "Front",
  56539. image: {
  56540. source: "./media/characters/squishi/front.svg",
  56541. extra: 1428/1271,
  56542. bottom: 30/1458
  56543. },
  56544. extraAttributes: {
  56545. "pawSize": {
  56546. name: "Paw Size",
  56547. power: 1,
  56548. type: "length",
  56549. base: math.unit(14, "ShoeSizeMensUS"),
  56550. defaultUnit: "ShoeSizeMensUS"
  56551. },
  56552. }
  56553. },
  56554. side: {
  56555. height: math.unit(4, "feet"),
  56556. weight: math.unit(150, "lb"),
  56557. name: "Side",
  56558. image: {
  56559. source: "./media/characters/squishi/side.svg",
  56560. extra: 1428/1271,
  56561. bottom: 30/1458
  56562. },
  56563. extraAttributes: {
  56564. "pawSize": {
  56565. name: "Paw Size",
  56566. power: 1,
  56567. type: "length",
  56568. base: math.unit(14, "ShoeSizeMensUS"),
  56569. defaultUnit: "ShoeSizeMensUS"
  56570. },
  56571. }
  56572. },
  56573. back: {
  56574. height: math.unit(4, "feet"),
  56575. weight: math.unit(150, "lb"),
  56576. name: "Back",
  56577. image: {
  56578. source: "./media/characters/squishi/back.svg",
  56579. extra: 1428/1271,
  56580. bottom: 30/1458
  56581. },
  56582. extraAttributes: {
  56583. "pawSize": {
  56584. name: "Paw Size",
  56585. power: 1,
  56586. type: "length",
  56587. base: math.unit(14, "ShoeSizeMensUS"),
  56588. defaultUnit: "ShoeSizeMensUS"
  56589. },
  56590. }
  56591. },
  56592. },
  56593. [
  56594. {
  56595. name: "Normal",
  56596. height: math.unit(4, "feet"),
  56597. default: true
  56598. },
  56599. ]
  56600. ))
  56601. characterMakers.push(() => makeCharacter(
  56602. { name: "Vincent Vasroc", species: ["red-fox"], tags: ["anthro"] },
  56603. {
  56604. front: {
  56605. height: math.unit(7 + 8/12, "feet"),
  56606. weight: math.unit(333, "lb"),
  56607. name: "Front",
  56608. image: {
  56609. source: "./media/characters/vincent-vasroc/front.svg",
  56610. extra: 1962/1860,
  56611. bottom: 41/2003
  56612. }
  56613. },
  56614. back: {
  56615. height: math.unit(7 + 8/12, "feet"),
  56616. weight: math.unit(333, "lb"),
  56617. name: "Back",
  56618. image: {
  56619. source: "./media/characters/vincent-vasroc/back.svg",
  56620. extra: 1952/1815,
  56621. bottom: 33/1985
  56622. }
  56623. },
  56624. paw: {
  56625. height: math.unit(1.24, "feet"),
  56626. name: "Paw",
  56627. image: {
  56628. source: "./media/characters/vincent-vasroc/paw.svg"
  56629. }
  56630. },
  56631. ear: {
  56632. height: math.unit(0.75, "feet"),
  56633. name: "Ear",
  56634. image: {
  56635. source: "./media/characters/vincent-vasroc/ear.svg"
  56636. }
  56637. },
  56638. },
  56639. [
  56640. {
  56641. name: "Nano",
  56642. height: math.unit(92, "micrometers")
  56643. },
  56644. {
  56645. name: "Normal",
  56646. height: math.unit(7 + 8/12, "feet"),
  56647. default: true
  56648. },
  56649. ]
  56650. ))
  56651. characterMakers.push(() => makeCharacter(
  56652. { name: "Ru-Kahn", species: ["fennec-fox"], tags: ["anthro"] },
  56653. {
  56654. frontNsfw: {
  56655. height: math.unit(40, "feet"),
  56656. weight: math.unit(58, "tons"),
  56657. name: "Front (NSFW)",
  56658. image: {
  56659. source: "./media/characters/ru-kahn/front-nsfw.svg",
  56660. extra: 1265/965,
  56661. bottom: 155/1420
  56662. }
  56663. },
  56664. frontSfw: {
  56665. height: math.unit(40, "feet"),
  56666. weight: math.unit(58, "tons"),
  56667. name: "Front (SFW)",
  56668. image: {
  56669. source: "./media/characters/ru-kahn/front-sfw.svg",
  56670. extra: 1265/965,
  56671. bottom: 80/1345
  56672. }
  56673. },
  56674. },
  56675. [
  56676. {
  56677. name: "Small",
  56678. height: math.unit(4, "feet")
  56679. },
  56680. {
  56681. name: "Normal",
  56682. height: math.unit(40, "feet"),
  56683. default: true
  56684. },
  56685. {
  56686. name: "Macro",
  56687. height: math.unit(400, "feet")
  56688. },
  56689. ]
  56690. ))
  56691. characterMakers.push(() => makeCharacter(
  56692. { name: "Sylvie LaForge", species: ["alligator"], tags: ["anthro"] },
  56693. {
  56694. frontNude: {
  56695. height: math.unit(6 + 5/12, "feet"),
  56696. name: "Front (Nude)",
  56697. image: {
  56698. source: "./media/characters/sylvie-laforge/front-nude.svg",
  56699. extra: 1369/1366,
  56700. bottom: 68/1437
  56701. }
  56702. },
  56703. frontDressed: {
  56704. height: math.unit(6 + 5/12, "feet"),
  56705. name: "Front (Dressed)",
  56706. image: {
  56707. source: "./media/characters/sylvie-laforge/front-dressed.svg",
  56708. extra: 1369/1366,
  56709. bottom: 68/1437
  56710. }
  56711. },
  56712. },
  56713. [
  56714. {
  56715. name: "Normal",
  56716. height: math.unit(6 + 5/12, "feet"),
  56717. default: true
  56718. },
  56719. {
  56720. name: "Maximum",
  56721. height: math.unit(1930, "feet")
  56722. },
  56723. ]
  56724. ))
  56725. characterMakers.push(() => makeCharacter(
  56726. { name: "Kaja", species: ["zoroark"], tags: ["anthro"] },
  56727. {
  56728. front: {
  56729. height: math.unit(5 + 6/12, "feet"),
  56730. name: "Front",
  56731. image: {
  56732. source: "./media/characters/kaja/front.svg",
  56733. extra: 1874/1514,
  56734. bottom: 117/1991
  56735. }
  56736. },
  56737. },
  56738. [
  56739. {
  56740. name: "Normal",
  56741. height: math.unit(5 + 6/12, "feet"),
  56742. default: true
  56743. },
  56744. ]
  56745. ))
  56746. characterMakers.push(() => makeCharacter(
  56747. { name: "Mark Smith", species: ["husky"], tags: ["anthro"] },
  56748. {
  56749. front: {
  56750. height: math.unit(5 + 9/12, "feet"),
  56751. weight: math.unit(200, "lb"),
  56752. name: "Front",
  56753. image: {
  56754. source: "./media/characters/mark-smith/front.svg",
  56755. extra: 1004/943,
  56756. bottom: 58/1062
  56757. }
  56758. },
  56759. back: {
  56760. height: math.unit(5 + 9/12, "feet"),
  56761. weight: math.unit(200, "lb"),
  56762. name: "Back",
  56763. image: {
  56764. source: "./media/characters/mark-smith/back.svg",
  56765. extra: 1023/953,
  56766. bottom: 24/1047
  56767. }
  56768. },
  56769. head: {
  56770. height: math.unit(1.82, "feet"),
  56771. name: "Head",
  56772. image: {
  56773. source: "./media/characters/mark-smith/head.svg"
  56774. }
  56775. },
  56776. hand: {
  56777. height: math.unit(1.4, "feet"),
  56778. name: "Hand",
  56779. image: {
  56780. source: "./media/characters/mark-smith/hand.svg"
  56781. }
  56782. },
  56783. paw: {
  56784. height: math.unit(1.69, "feet"),
  56785. name: "Paw",
  56786. image: {
  56787. source: "./media/characters/mark-smith/paw.svg"
  56788. }
  56789. },
  56790. },
  56791. [
  56792. {
  56793. name: "Micro",
  56794. height: math.unit(0.25, "inches")
  56795. },
  56796. {
  56797. name: "Normal",
  56798. height: math.unit(5 + 9/12, "feet"),
  56799. default: true
  56800. },
  56801. {
  56802. name: "Macro",
  56803. height: math.unit(500, "feet")
  56804. },
  56805. ]
  56806. ))
  56807. characterMakers.push(() => makeCharacter(
  56808. { name: "Rebecca 'Becky' Houston", species: ["gryphon"], tags: ["anthro"] },
  56809. {
  56810. frontNude: {
  56811. height: math.unit(6, "feet"),
  56812. name: "Front (Nude)",
  56813. image: {
  56814. source: "./media/characters/rebecca-becky-houston/front-nude.svg",
  56815. extra: 1384/1321,
  56816. bottom: 57/1441
  56817. }
  56818. },
  56819. frontDressed: {
  56820. height: math.unit(6, "feet"),
  56821. name: "Front (Dressed)",
  56822. image: {
  56823. source: "./media/characters/rebecca-becky-houston/front-dressed.svg",
  56824. extra: 1384/1321,
  56825. bottom: 57/1441
  56826. }
  56827. },
  56828. },
  56829. [
  56830. {
  56831. name: "Normal",
  56832. height: math.unit(6, "feet"),
  56833. default: true
  56834. },
  56835. {
  56836. name: "Maximum",
  56837. height: math.unit(1776, "feet")
  56838. },
  56839. ]
  56840. ))
  56841. characterMakers.push(() => makeCharacter(
  56842. { name: "Devos", species: ["dragon"], tags: ["feral"] },
  56843. {
  56844. front: {
  56845. height: math.unit(2 + 4/12, "feet"),
  56846. weight: math.unit(350, "lb"),
  56847. name: "Front",
  56848. image: {
  56849. source: "./media/characters/devos/front.svg",
  56850. extra: 958/852,
  56851. bottom: 143/1101
  56852. }
  56853. },
  56854. },
  56855. [
  56856. {
  56857. name: "Base",
  56858. height: math.unit(2 + 4/12, "feet"),
  56859. default: true
  56860. },
  56861. ]
  56862. ))
  56863. characterMakers.push(() => makeCharacter(
  56864. { name: "Hiveheart", species: ["sliver"], tags: ["anthro"] },
  56865. {
  56866. front: {
  56867. height: math.unit(9 + 2/12, "feet"),
  56868. name: "Front",
  56869. image: {
  56870. source: "./media/characters/hiveheart/front.svg",
  56871. extra: 394/364,
  56872. bottom: 65/459
  56873. }
  56874. },
  56875. back: {
  56876. height: math.unit(9 + 2/12, "feet"),
  56877. name: "Back",
  56878. image: {
  56879. source: "./media/characters/hiveheart/back.svg",
  56880. extra: 374/357,
  56881. bottom: 63/437
  56882. }
  56883. },
  56884. },
  56885. [
  56886. {
  56887. name: "Base",
  56888. height: math.unit(9 + 2/12, "feet"),
  56889. default: true
  56890. },
  56891. ]
  56892. ))
  56893. characterMakers.push(() => makeCharacter(
  56894. { name: "Bryn", species: ["moth"], tags: ["anthro"] },
  56895. {
  56896. front: {
  56897. height: math.unit(2.5, "inches"),
  56898. weight: math.unit(0.6, "oz"),
  56899. name: "Front",
  56900. image: {
  56901. source: "./media/characters/bryn/front.svg",
  56902. extra: 1484/1119,
  56903. bottom: 66/1550
  56904. }
  56905. },
  56906. back: {
  56907. height: math.unit(2.5, "inches"),
  56908. weight: math.unit(0.6, "oz"),
  56909. name: "Back",
  56910. image: {
  56911. source: "./media/characters/bryn/back.svg",
  56912. extra: 1472/1170,
  56913. bottom: 32/1504
  56914. }
  56915. },
  56916. wings: {
  56917. height: math.unit(2.5, "inches"),
  56918. weight: math.unit(0.6, "oz"),
  56919. name: "Wings",
  56920. image: {
  56921. source: "./media/characters/bryn/wings.svg",
  56922. extra: 567/448,
  56923. bottom: 10/577
  56924. }
  56925. },
  56926. dressed: {
  56927. height: math.unit(2.5, "inches"),
  56928. weight: math.unit(0.6, "oz"),
  56929. name: "Dressed",
  56930. image: {
  56931. source: "./media/characters/bryn/dressed.svg",
  56932. extra: 719/589,
  56933. bottom: 54/773
  56934. }
  56935. },
  56936. head: {
  56937. height: math.unit(1.75, "inches"),
  56938. name: "Head",
  56939. image: {
  56940. source: "./media/characters/bryn/head.svg"
  56941. }
  56942. },
  56943. foot: {
  56944. height: math.unit(0.4, "inches"),
  56945. name: "Foot",
  56946. image: {
  56947. source: "./media/characters/bryn/foot.svg"
  56948. }
  56949. },
  56950. },
  56951. [
  56952. {
  56953. name: "Normal",
  56954. height: math.unit(2.5, "inches"),
  56955. default: true
  56956. },
  56957. ]
  56958. ))
  56959. characterMakers.push(() => makeCharacter(
  56960. { name: "Delta", species: ["dragon"], tags: ["feral"] },
  56961. {
  56962. side: {
  56963. height: math.unit(7, "feet"),
  56964. weight: math.unit(657, "kg"),
  56965. name: "Side",
  56966. image: {
  56967. source: "./media/characters/delta/side.svg",
  56968. extra: 781/212,
  56969. bottom: 7/788
  56970. },
  56971. extraAttributes: {
  56972. "wingspan": {
  56973. name: "Wingspan",
  56974. power: 1,
  56975. type: "length",
  56976. base: math.unit(48, "feet")
  56977. },
  56978. "length": {
  56979. name: "Length",
  56980. power: 1,
  56981. type: "length",
  56982. base: math.unit(21, "feet")
  56983. },
  56984. "pawSize": {
  56985. name: "Paw Size",
  56986. power: 2,
  56987. type: "area",
  56988. base: math.unit(1.5*1.4, "feet^2")
  56989. },
  56990. }
  56991. },
  56992. },
  56993. [
  56994. {
  56995. name: "Normal",
  56996. height: math.unit(6, "feet"),
  56997. default: true
  56998. },
  56999. ]
  57000. ))
  57001. characterMakers.push(() => makeCharacter(
  57002. { name: "Pyrow", species: ["sergix"], tags: ["anthro"] },
  57003. {
  57004. front: {
  57005. height: math.unit(6, "feet"),
  57006. name: "Front",
  57007. image: {
  57008. source: "./media/characters/pyrow/front.svg",
  57009. extra: 513/486,
  57010. bottom: 14/527
  57011. }
  57012. },
  57013. frontWing: {
  57014. height: math.unit(6, "feet"),
  57015. name: "Front (Wing)",
  57016. image: {
  57017. source: "./media/characters/pyrow/front-wing.svg",
  57018. extra: 539/383,
  57019. bottom: 20/559
  57020. }
  57021. },
  57022. back: {
  57023. height: math.unit(6, "feet"),
  57024. name: "Back",
  57025. image: {
  57026. source: "./media/characters/pyrow/back.svg",
  57027. extra: 500/473,
  57028. bottom: 9/509
  57029. }
  57030. },
  57031. },
  57032. [
  57033. {
  57034. name: "Normal",
  57035. height: math.unit(6, "feet"),
  57036. default: true
  57037. },
  57038. ]
  57039. ))
  57040. characterMakers.push(() => makeCharacter(
  57041. { name: "Velikan", species: ["behemoth"], tags: ["anthro"] },
  57042. {
  57043. front: {
  57044. height: math.unit(5, "meters"),
  57045. weight: math.unit(3, "tonnes"),
  57046. name: "Front",
  57047. image: {
  57048. source: "./media/characters/velikan/front.svg",
  57049. extra: 867/744,
  57050. bottom: 71/938
  57051. },
  57052. extraAttributes: {
  57053. "shoeSize": {
  57054. name: "Shoe Size",
  57055. power: 1,
  57056. type: "length",
  57057. base: math.unit(135, "ShoeSizeUK"),
  57058. defaultUnit: "ShoeSizeUK"
  57059. },
  57060. }
  57061. },
  57062. },
  57063. [
  57064. {
  57065. name: "Normal",
  57066. height: math.unit(5, "meters"),
  57067. default: true
  57068. },
  57069. {
  57070. name: "Macro",
  57071. height: math.unit(1, "km")
  57072. },
  57073. {
  57074. name: "Mega Macro",
  57075. height: math.unit(100, "km")
  57076. },
  57077. {
  57078. name: "Giga Macro",
  57079. height: math.unit(2, "megameters")
  57080. },
  57081. {
  57082. name: "Planetary",
  57083. height: math.unit(22, "megameters")
  57084. },
  57085. {
  57086. name: "Solar",
  57087. height: math.unit(8, "gigameters")
  57088. },
  57089. {
  57090. name: "Cosmic",
  57091. height: math.unit(10, "zettameters")
  57092. },
  57093. {
  57094. name: "Omni",
  57095. height: math.unit(9e260, "multiverses")
  57096. },
  57097. ]
  57098. ))
  57099. characterMakers.push(() => makeCharacter(
  57100. { name: "Sabiki", species: ["werewolf", "fennec-fox"], tags: ["anthro"] },
  57101. {
  57102. front: {
  57103. height: math.unit(4 + 3/12, "feet"),
  57104. weight: math.unit(90, "lb"),
  57105. name: "Front",
  57106. image: {
  57107. source: "./media/characters/sabiki/front.svg",
  57108. extra: 1662/1423,
  57109. bottom: 65/1727
  57110. }
  57111. },
  57112. },
  57113. [
  57114. {
  57115. name: "Normal",
  57116. height: math.unit(4 + 3/12, "feet"),
  57117. default: true
  57118. },
  57119. ]
  57120. ))
  57121. characterMakers.push(() => makeCharacter(
  57122. { name: "Carmel", species: ["ant"], tags: ["anthro"] },
  57123. {
  57124. frontSfw: {
  57125. height: math.unit(2, "mm"),
  57126. name: "Front (SFW)",
  57127. image: {
  57128. source: "./media/characters/carmel/front-sfw.svg",
  57129. extra: 1131/1006,
  57130. bottom: 66/1197
  57131. }
  57132. },
  57133. frontNsfw: {
  57134. height: math.unit(2, "mm"),
  57135. name: "Front (NSFW)",
  57136. image: {
  57137. source: "./media/characters/carmel/front-nsfw.svg",
  57138. extra: 1131/1006,
  57139. bottom: 66/1197
  57140. }
  57141. },
  57142. foot: {
  57143. height: math.unit(0.3, "mm"),
  57144. name: "Foot",
  57145. image: {
  57146. source: "./media/characters/carmel/foot.svg"
  57147. }
  57148. },
  57149. tongue: {
  57150. height: math.unit(0.71, "mm"),
  57151. name: "Tongue",
  57152. image: {
  57153. source: "./media/characters/carmel/tongue.svg"
  57154. }
  57155. },
  57156. dick: {
  57157. height: math.unit(0.085, "mm"),
  57158. name: "Dick",
  57159. image: {
  57160. source: "./media/characters/carmel/dick.svg"
  57161. }
  57162. },
  57163. },
  57164. [
  57165. {
  57166. name: "Micro",
  57167. height: math.unit(2, "mm"),
  57168. default: true
  57169. },
  57170. {
  57171. name: "Normal",
  57172. height: math.unit(4 + 8/12, "feet")
  57173. },
  57174. {
  57175. name: "Mega Macro",
  57176. height: math.unit(250, "feet")
  57177. },
  57178. {
  57179. name: "BIGGER",
  57180. height: math.unit(1000, "feet")
  57181. },
  57182. {
  57183. name: "BIGGEST",
  57184. height: math.unit(2, "miles")
  57185. },
  57186. ]
  57187. ))
  57188. characterMakers.push(() => makeCharacter(
  57189. { name: "Tamani", species: ["lion"], tags: ["anthro", "feral"] },
  57190. {
  57191. front: {
  57192. height: math.unit(6.5, "feet"),
  57193. weight: math.unit(198, "lb"),
  57194. name: "Front",
  57195. image: {
  57196. source: "./media/characters/tamani/anthro.svg",
  57197. extra: 930/890,
  57198. bottom: 34/964
  57199. },
  57200. form: "anthro",
  57201. default: true
  57202. },
  57203. side: {
  57204. height: math.unit(6, "feet"),
  57205. weight: math.unit(198*2, "lb"),
  57206. name: "Side",
  57207. image: {
  57208. source: "./media/characters/tamani/feral.svg",
  57209. extra: 559/519,
  57210. bottom: 43/602
  57211. },
  57212. form: "feral"
  57213. },
  57214. },
  57215. [
  57216. {
  57217. name: "Normal",
  57218. height: math.unit(6.5, "feet"),
  57219. default: true,
  57220. form: "anthro"
  57221. },
  57222. {
  57223. name: "Normal",
  57224. height: math.unit(6, "feet"),
  57225. default: true,
  57226. form: "feral"
  57227. },
  57228. ],
  57229. {
  57230. "anthro": {
  57231. name: "Anthro",
  57232. default: true
  57233. },
  57234. "feral": {
  57235. name: "Feral",
  57236. },
  57237. }
  57238. ))
  57239. characterMakers.push(() => makeCharacter(
  57240. { name: "Dex", species: ["eastern-cottontail-rabbit"], tags: ["anthro"] },
  57241. {
  57242. front: {
  57243. height: math.unit(4 + 1/12, "feet"),
  57244. weight: math.unit(114, "lb"),
  57245. name: "Front",
  57246. image: {
  57247. source: "./media/characters/dex/front.svg",
  57248. extra: 787/680,
  57249. bottom: 18/805
  57250. }
  57251. },
  57252. side: {
  57253. height: math.unit(4 + 1/12, "feet"),
  57254. weight: math.unit(114, "lb"),
  57255. name: "Side",
  57256. image: {
  57257. source: "./media/characters/dex/side.svg",
  57258. extra: 785/680,
  57259. bottom: 12/797
  57260. }
  57261. },
  57262. back: {
  57263. height: math.unit(4 + 1/12, "feet"),
  57264. weight: math.unit(114, "lb"),
  57265. name: "Back",
  57266. image: {
  57267. source: "./media/characters/dex/back.svg",
  57268. extra: 785/681,
  57269. bottom: 17/802
  57270. }
  57271. },
  57272. loungewear: {
  57273. height: math.unit(4 + 1/12, "feet"),
  57274. weight: math.unit(114, "lb"),
  57275. name: "Loungewear",
  57276. image: {
  57277. source: "./media/characters/dex/loungewear.svg",
  57278. extra: 787/680,
  57279. bottom: 18/805
  57280. }
  57281. },
  57282. workout: {
  57283. height: math.unit(4 + 1/12, "feet"),
  57284. weight: math.unit(114, "lb"),
  57285. name: "Workout",
  57286. image: {
  57287. source: "./media/characters/dex/workout.svg",
  57288. extra: 787/680,
  57289. bottom: 18/805
  57290. }
  57291. },
  57292. schoolUniform: {
  57293. height: math.unit(4 + 1/12, "feet"),
  57294. weight: math.unit(114, "lb"),
  57295. name: "School-uniform",
  57296. image: {
  57297. source: "./media/characters/dex/school-uniform.svg",
  57298. extra: 787/680,
  57299. bottom: 18/805
  57300. }
  57301. },
  57302. maw: {
  57303. height: math.unit(0.55, "feet"),
  57304. name: "Maw",
  57305. image: {
  57306. source: "./media/characters/dex/maw.svg"
  57307. }
  57308. },
  57309. paw: {
  57310. height: math.unit(0.87, "feet"),
  57311. name: "Paw",
  57312. image: {
  57313. source: "./media/characters/dex/paw.svg"
  57314. }
  57315. },
  57316. bust: {
  57317. height: math.unit(1.67, "feet"),
  57318. name: "Bust",
  57319. image: {
  57320. source: "./media/characters/dex/bust.svg"
  57321. }
  57322. },
  57323. },
  57324. [
  57325. {
  57326. name: "Normal",
  57327. height: math.unit(4 + 1/12, "feet"),
  57328. default: true
  57329. },
  57330. ]
  57331. ))
  57332. characterMakers.push(() => makeCharacter(
  57333. { name: "Silke", species: ["sylveon"], tags: ["anthro"] },
  57334. {
  57335. front: {
  57336. height: math.unit(4 + 3/12, "feet"),
  57337. weight: math.unit(60, "lb"),
  57338. name: "Front",
  57339. image: {
  57340. source: "./media/characters/silke/front.svg",
  57341. extra: 1334/1122,
  57342. bottom: 21/1355
  57343. }
  57344. },
  57345. back: {
  57346. height: math.unit(4 + 3/12, "feet"),
  57347. weight: math.unit(60, "lb"),
  57348. name: "Back",
  57349. image: {
  57350. source: "./media/characters/silke/back.svg",
  57351. extra: 1328/1092,
  57352. bottom: 16/1344
  57353. }
  57354. },
  57355. dressed: {
  57356. height: math.unit(4 + 3/12, "feet"),
  57357. weight: math.unit(60, "lb"),
  57358. name: "Dressed",
  57359. image: {
  57360. source: "./media/characters/silke/dressed.svg",
  57361. extra: 1334/1122,
  57362. bottom: 43/1377
  57363. }
  57364. },
  57365. },
  57366. [
  57367. {
  57368. name: "Normal",
  57369. height: math.unit(4 + 3/12, "feet"),
  57370. default: true
  57371. },
  57372. ]
  57373. ))
  57374. characterMakers.push(() => makeCharacter(
  57375. { name: "Wireshark", species: ["thresher-shark"], tags: ["anthro"] },
  57376. {
  57377. front: {
  57378. height: math.unit(1.58, "meters"),
  57379. weight: math.unit(47, "kg"),
  57380. name: "Front",
  57381. image: {
  57382. source: "./media/characters/wireshark/front.svg",
  57383. extra: 883/838,
  57384. bottom: 66/949
  57385. }
  57386. },
  57387. },
  57388. [
  57389. {
  57390. name: "Normal",
  57391. height: math.unit(1.58, "meters"),
  57392. default: true
  57393. },
  57394. ]
  57395. ))
  57396. characterMakers.push(() => makeCharacter(
  57397. { name: "Gallagher", species: ["shark", "cyborg", "ai"], tags: ["anthro"] },
  57398. {
  57399. front: {
  57400. height: math.unit(6, "meters"),
  57401. weight: math.unit(15000, "kg"),
  57402. name: "Front",
  57403. image: {
  57404. source: "./media/characters/gallagher/front.svg",
  57405. extra: 532/493,
  57406. bottom: 0/532
  57407. }
  57408. },
  57409. },
  57410. [
  57411. {
  57412. name: "Normal",
  57413. height: math.unit(6, "meters"),
  57414. default: true
  57415. },
  57416. ]
  57417. ))
  57418. characterMakers.push(() => makeCharacter(
  57419. { name: "Alice", species: ["black-tip-reef-shark"], tags: ["anthro"] },
  57420. {
  57421. front: {
  57422. height: math.unit(2.4, "meters"),
  57423. weight: math.unit(270, "kg"),
  57424. name: "Front",
  57425. image: {
  57426. source: "./media/characters/alice/front.svg",
  57427. extra: 950/900,
  57428. bottom: 36/986
  57429. }
  57430. },
  57431. side: {
  57432. height: math.unit(2.4, "meters"),
  57433. weight: math.unit(270, "kg"),
  57434. name: "Side",
  57435. image: {
  57436. source: "./media/characters/alice/side.svg",
  57437. extra: 921/876,
  57438. bottom: 19/940
  57439. }
  57440. },
  57441. dressed: {
  57442. height: math.unit(2.4, "meters"),
  57443. weight: math.unit(270, "kg"),
  57444. name: "Dressed",
  57445. image: {
  57446. source: "./media/characters/alice/dressed.svg",
  57447. extra: 905/850,
  57448. bottom: 81/986
  57449. }
  57450. },
  57451. fishnet: {
  57452. height: math.unit(2.4, "meters"),
  57453. weight: math.unit(270, "kg"),
  57454. name: "Fishnet",
  57455. image: {
  57456. source: "./media/characters/alice/fishnet.svg",
  57457. extra: 905/850,
  57458. bottom: 81/986
  57459. }
  57460. },
  57461. },
  57462. [
  57463. {
  57464. name: "Normal",
  57465. height: math.unit(2.4, "meters"),
  57466. default: true
  57467. },
  57468. ]
  57469. ))
  57470. characterMakers.push(() => makeCharacter(
  57471. { name: "Fio", species: ["deer"], tags: ["anthro"] },
  57472. {
  57473. front: {
  57474. height: math.unit(175.25, "feet"),
  57475. name: "Front",
  57476. image: {
  57477. source: "./media/characters/fio/front.svg",
  57478. extra: 1883/1591,
  57479. bottom: 34/1917
  57480. }
  57481. },
  57482. },
  57483. [
  57484. {
  57485. name: "Normal",
  57486. height: math.unit(175.25, "cm"),
  57487. default: true
  57488. },
  57489. ]
  57490. ))
  57491. characterMakers.push(() => makeCharacter(
  57492. { name: "Hass", species: ["quetzalcoatlus-northropi"], tags: ["feral"] },
  57493. {
  57494. side: {
  57495. height: math.unit(6, "meters"),
  57496. weight: math.unit(3400, "kg"),
  57497. preyCapacity: math.unit(1700, "liters"),
  57498. name: "Side",
  57499. image: {
  57500. source: "./media/characters/hass/side.svg",
  57501. extra: 1058/997,
  57502. bottom: 177/1235
  57503. }
  57504. },
  57505. feeding: {
  57506. height: math.unit(6*0.63, "meters"),
  57507. weight: math.unit(3400, "kg"),
  57508. preyCapacity: math.unit(1700, "liters"),
  57509. name: "Feeding",
  57510. image: {
  57511. source: "./media/characters/hass/feeding.svg",
  57512. extra: 689/579,
  57513. bottom: 146/835
  57514. }
  57515. },
  57516. guts: {
  57517. height: math.unit(6, "meters"),
  57518. weight: math.unit(3400, "kg"),
  57519. name: "Guts",
  57520. image: {
  57521. source: "./media/characters/hass/guts.svg",
  57522. extra: 1223/1198,
  57523. bottom: 182/1405
  57524. }
  57525. },
  57526. dickFront: {
  57527. height: math.unit(1.4, "meters"),
  57528. name: "Dick (Front)",
  57529. image: {
  57530. source: "./media/characters/hass/dick-front.svg"
  57531. }
  57532. },
  57533. dickSide: {
  57534. height: math.unit(1.3, "meters"),
  57535. name: "Dick (Side)",
  57536. image: {
  57537. source: "./media/characters/hass/dick-side.svg"
  57538. }
  57539. },
  57540. dickBack: {
  57541. height: math.unit(1.4, "meters"),
  57542. name: "Dick (Back)",
  57543. image: {
  57544. source: "./media/characters/hass/dick-back.svg"
  57545. }
  57546. },
  57547. },
  57548. [
  57549. {
  57550. name: "Normal",
  57551. height: math.unit(6, "meters"),
  57552. default: true
  57553. },
  57554. ]
  57555. ))
  57556. characterMakers.push(() => makeCharacter(
  57557. { name: "Hickory Finnegan", species: ["fennec-fox"], tags: ["anthro"] },
  57558. {
  57559. front: {
  57560. height: math.unit(4, "feet"),
  57561. weight: math.unit(60, "lb"),
  57562. name: "Front",
  57563. image: {
  57564. source: "./media/characters/hickory-finnegan/front.svg",
  57565. extra: 444/411,
  57566. bottom: 10/454
  57567. }
  57568. },
  57569. side: {
  57570. height: math.unit(4, "feet"),
  57571. weight: math.unit(60, "lb"),
  57572. name: "Side",
  57573. image: {
  57574. source: "./media/characters/hickory-finnegan/side.svg",
  57575. extra: 444/411,
  57576. bottom: 10/454
  57577. }
  57578. },
  57579. back: {
  57580. height: math.unit(4, "feet"),
  57581. weight: math.unit(60, "lb"),
  57582. name: "Back",
  57583. image: {
  57584. source: "./media/characters/hickory-finnegan/back.svg",
  57585. extra: 444/411,
  57586. bottom: 10/454
  57587. }
  57588. },
  57589. },
  57590. [
  57591. {
  57592. name: "Normal",
  57593. height: math.unit(4, "feet"),
  57594. default: true
  57595. },
  57596. ]
  57597. ))
  57598. characterMakers.push(() => makeCharacter(
  57599. { name: "Robin Phox", species: ["snivy", "yoshi", "delphox", "mienshao", "inteleon", "reshiram", "samurott"], tags: ["anthro"] },
  57600. {
  57601. snivy_front: {
  57602. height: math.unit(2, "feet"),
  57603. weight: math.unit(17.9, "lb"),
  57604. name: "Front",
  57605. image: {
  57606. source: "./media/characters/robin-phox/snivy-front.svg",
  57607. extra: 569/504,
  57608. bottom: 33/602
  57609. },
  57610. form: "snivy",
  57611. default: true
  57612. },
  57613. snivy_frontNsfw: {
  57614. height: math.unit(2, "feet"),
  57615. weight: math.unit(17.9, "lb"),
  57616. name: "Front (NSFW)",
  57617. image: {
  57618. source: "./media/characters/robin-phox/snivy-front-nsfw.svg",
  57619. extra: 569/504,
  57620. bottom: 33/602
  57621. },
  57622. form: "snivy",
  57623. },
  57624. snivy_back: {
  57625. height: math.unit(2, "feet"),
  57626. weight: math.unit(17.9, "lb"),
  57627. name: "Back",
  57628. image: {
  57629. source: "./media/characters/robin-phox/snivy-back.svg",
  57630. extra: 577/508,
  57631. bottom: 21/598
  57632. },
  57633. form: "snivy",
  57634. },
  57635. snivy_foot: {
  57636. height: math.unit(0.68, "feet"),
  57637. name: "Foot",
  57638. image: {
  57639. source: "./media/characters/robin-phox/snivy-foot.svg"
  57640. },
  57641. form: "snivy",
  57642. },
  57643. snivy_sole: {
  57644. height: math.unit(0.68, "feet"),
  57645. name: "Sole",
  57646. image: {
  57647. source: "./media/characters/robin-phox/snivy-sole.svg"
  57648. },
  57649. form: "snivy",
  57650. },
  57651. yoshi_front: {
  57652. height: math.unit(6, "feet"),
  57653. weight: math.unit(150, "lb"),
  57654. name: "Front",
  57655. image: {
  57656. source: "./media/characters/robin-phox/yoshi-front.svg",
  57657. extra: 890/792,
  57658. bottom: 29/919
  57659. },
  57660. form: "yoshi",
  57661. default: true
  57662. },
  57663. yoshi_frontNsfw: {
  57664. height: math.unit(6, "feet"),
  57665. weight: math.unit(150, "lb"),
  57666. name: "Front (NSFW)",
  57667. image: {
  57668. source: "./media/characters/robin-phox/yoshi-front-nsfw.svg",
  57669. extra: 890/792,
  57670. bottom: 29/919
  57671. },
  57672. form: "yoshi",
  57673. },
  57674. yoshi_back: {
  57675. height: math.unit(6, "feet"),
  57676. weight: math.unit(150, "lb"),
  57677. name: "Back",
  57678. image: {
  57679. source: "./media/characters/robin-phox/yoshi-back.svg",
  57680. extra: 890/792,
  57681. bottom: 29/919
  57682. },
  57683. form: "yoshi",
  57684. },
  57685. yoshi_foot: {
  57686. height: math.unit(1.5, "feet"),
  57687. name: "Foot",
  57688. image: {
  57689. source: "./media/characters/robin-phox/yoshi-foot.svg"
  57690. },
  57691. form: "yoshi",
  57692. },
  57693. delphox_front: {
  57694. height: math.unit(4 + 11/12, "feet"),
  57695. weight: math.unit(86, "lb"),
  57696. name: "Front",
  57697. image: {
  57698. source: "./media/characters/robin-phox/delphox-front.svg",
  57699. extra: 1266/1069,
  57700. bottom: 32/1298
  57701. },
  57702. form: "delphox",
  57703. default: true
  57704. },
  57705. delphox_frontNsfw: {
  57706. height: math.unit(4 + 11/12, "feet"),
  57707. weight: math.unit(86, "lb"),
  57708. name: "Front (NSFW)",
  57709. image: {
  57710. source: "./media/characters/robin-phox/delphox-front-nsfw.svg",
  57711. extra: 1266/1069,
  57712. bottom: 32/1298
  57713. },
  57714. form: "delphox",
  57715. },
  57716. delphox_back: {
  57717. height: math.unit(4 + 11/12, "feet"),
  57718. weight: math.unit(86, "lb"),
  57719. name: "Back",
  57720. image: {
  57721. source: "./media/characters/robin-phox/delphox-back.svg",
  57722. extra: 1269/1083,
  57723. bottom: 15/1284
  57724. },
  57725. form: "delphox",
  57726. },
  57727. mienshao_front: {
  57728. height: math.unit(4 + 7/12, "feet"),
  57729. weight: math.unit(78.3, "lb"),
  57730. name: "Front",
  57731. image: {
  57732. source: "./media/characters/robin-phox/mienshao-front.svg",
  57733. extra: 1052/970,
  57734. bottom: 108/1160
  57735. },
  57736. form: "mienshao",
  57737. default: true
  57738. },
  57739. mienshao_frontNsfw: {
  57740. height: math.unit(4 + 7/12, "feet"),
  57741. weight: math.unit(78.3, "lb"),
  57742. name: "Front (NSFW)",
  57743. image: {
  57744. source: "./media/characters/robin-phox/mienshao-front-nsfw.svg",
  57745. extra: 1052/970,
  57746. bottom: 108/1160
  57747. },
  57748. form: "mienshao",
  57749. },
  57750. mienshao_back: {
  57751. height: math.unit(4 + 7/12, "feet"),
  57752. weight: math.unit(78.3, "lb"),
  57753. name: "Back",
  57754. image: {
  57755. source: "./media/characters/robin-phox/mienshao-back.svg",
  57756. extra: 1102/982,
  57757. bottom: 32/1134
  57758. },
  57759. form: "mienshao",
  57760. },
  57761. inteleon_front: {
  57762. height: math.unit(6 + 3/12, "feet"),
  57763. weight: math.unit(99.6, "lb"),
  57764. name: "Front",
  57765. image: {
  57766. source: "./media/characters/robin-phox/inteleon-front.svg",
  57767. extra: 910/799,
  57768. bottom: 76/986
  57769. },
  57770. form: "inteleon",
  57771. default: true
  57772. },
  57773. inteleon_frontNsfw: {
  57774. height: math.unit(6 + 3/12, "feet"),
  57775. weight: math.unit(99.6, "lb"),
  57776. name: "Front (NSFW)",
  57777. image: {
  57778. source: "./media/characters/robin-phox/inteleon-front-nsfw.svg",
  57779. extra: 910/799,
  57780. bottom: 76/986
  57781. },
  57782. form: "inteleon",
  57783. },
  57784. inteleon_back: {
  57785. height: math.unit(6 + 3/12, "feet"),
  57786. weight: math.unit(99.6, "lb"),
  57787. name: "Back",
  57788. image: {
  57789. source: "./media/characters/robin-phox/inteleon-back.svg",
  57790. extra: 907/796,
  57791. bottom: 25/932
  57792. },
  57793. form: "inteleon",
  57794. },
  57795. reshiram_front: {
  57796. height: math.unit(10 + 6/12, "feet"),
  57797. weight: math.unit(727.5, "lb"),
  57798. name: "Front",
  57799. image: {
  57800. source: "./media/characters/robin-phox/reshiram-front.svg",
  57801. extra: 1198/940,
  57802. bottom: 123/1321
  57803. },
  57804. form: "reshiram",
  57805. },
  57806. reshiram_frontNsfw: {
  57807. height: math.unit(10 + 6/12, "feet"),
  57808. weight: math.unit(727.5, "lb"),
  57809. name: "Front-nsfw",
  57810. image: {
  57811. source: "./media/characters/robin-phox/reshiram-front-nsfw.svg",
  57812. extra: 1198/940,
  57813. bottom: 123/1321
  57814. },
  57815. form: "reshiram",
  57816. },
  57817. reshiram_back: {
  57818. height: math.unit(10 + 6/12, "feet"),
  57819. weight: math.unit(727.5, "lb"),
  57820. name: "Back",
  57821. image: {
  57822. source: "./media/characters/robin-phox/reshiram-back.svg",
  57823. extra: 1024/904,
  57824. bottom: 85/1109
  57825. },
  57826. form: "reshiram",
  57827. },
  57828. samurott_front: {
  57829. height: math.unit(8, "feet"),
  57830. weight: math.unit(208.6, "lb"),
  57831. name: "Front",
  57832. image: {
  57833. source: "./media/characters/robin-phox/samurott-front.svg",
  57834. extra: 1048/984,
  57835. bottom: 100/1148
  57836. },
  57837. form: "samurott",
  57838. },
  57839. samurott_frontNsfw: {
  57840. height: math.unit(8, "feet"),
  57841. weight: math.unit(208.6, "lb"),
  57842. name: "Front-nsfw",
  57843. image: {
  57844. source: "./media/characters/robin-phox/samurott-front-nsfw.svg",
  57845. extra: 1048/984,
  57846. bottom: 100/1148
  57847. },
  57848. form: "samurott",
  57849. },
  57850. samurott_back: {
  57851. height: math.unit(8, "feet"),
  57852. weight: math.unit(208.6, "lb"),
  57853. name: "Back",
  57854. image: {
  57855. source: "./media/characters/robin-phox/samurott-back.svg",
  57856. extra: 1110/1042,
  57857. bottom: 12/1122
  57858. },
  57859. form: "samurott",
  57860. },
  57861. samurott_feral: {
  57862. height: math.unit(4 + 11/12, "feet"),
  57863. weight: math.unit(208.6, "lb"),
  57864. name: "Feral",
  57865. image: {
  57866. source: "./media/characters/robin-phox/samurott-feral.svg",
  57867. extra: 766/681,
  57868. bottom: 108/874
  57869. },
  57870. form: "samurott",
  57871. },
  57872. },
  57873. [
  57874. {
  57875. name: "Normal",
  57876. height: math.unit(2, "feet"),
  57877. default: true,
  57878. form: "snivy"
  57879. },
  57880. {
  57881. name: "Normal",
  57882. height: math.unit(6, "feet"),
  57883. default: true,
  57884. form: "yoshi"
  57885. },
  57886. {
  57887. name: "Normal",
  57888. height: math.unit(4 + 11/12, "feet"),
  57889. default: true,
  57890. form: "delphox"
  57891. },
  57892. {
  57893. name: "Normal",
  57894. height: math.unit(4 + 7/12, "feet"),
  57895. default: true,
  57896. form: "mienshao"
  57897. },
  57898. {
  57899. name: "Normal",
  57900. height: math.unit(6 + 3/12, "feet"),
  57901. default: true,
  57902. form: "inteleon"
  57903. },
  57904. {
  57905. name: "Normal",
  57906. height: math.unit(10 + 6/12, "feet"),
  57907. default: true,
  57908. form: "reshiram"
  57909. },
  57910. {
  57911. name: "Normal",
  57912. height: math.unit(8, "feet"),
  57913. default: true,
  57914. form: "samurott"
  57915. },
  57916. {
  57917. name: "Macro",
  57918. height: math.unit(500, "feet"),
  57919. allForms: true
  57920. },
  57921. {
  57922. name: "Mega Macro",
  57923. height: math.unit(10, "earths"),
  57924. allForms: true
  57925. },
  57926. {
  57927. name: "Giga Macro",
  57928. height: math.unit(1, "galaxy"),
  57929. allForms: true
  57930. },
  57931. {
  57932. name: "Godly Macro",
  57933. height: math.unit(1e10, "multiverses"),
  57934. allForms: true
  57935. },
  57936. ],
  57937. {
  57938. "snivy": {
  57939. name: "Snivy",
  57940. default: true
  57941. },
  57942. "yoshi": {
  57943. name: "Yoshi",
  57944. },
  57945. "delphox": {
  57946. name: "Delphox",
  57947. },
  57948. "mienshao": {
  57949. name: "Mienshao",
  57950. },
  57951. "inteleon": {
  57952. name: "Inteleon",
  57953. },
  57954. "reshiram": {
  57955. name: "Reshiram",
  57956. },
  57957. "samurott": {
  57958. name: "Samurott",
  57959. },
  57960. }
  57961. ))
  57962. characterMakers.push(() => makeCharacter(
  57963. { name: "Ash Leung", species: ["red-panda"], tags: ["anthro"] },
  57964. {
  57965. front: {
  57966. height: math.unit(4, "feet"),
  57967. name: "Front",
  57968. image: {
  57969. source: "./media/characters/ash-leung/front.svg",
  57970. extra: 1916/1792,
  57971. bottom: 50/1966
  57972. }
  57973. },
  57974. },
  57975. [
  57976. {
  57977. name: "Atomic",
  57978. height: math.unit(1, "angstrom")
  57979. },
  57980. {
  57981. name: "Microscopic",
  57982. height: math.unit(4000, "angstroms")
  57983. },
  57984. {
  57985. name: "Speck",
  57986. height: math.unit(1, "mm")
  57987. },
  57988. {
  57989. name: "Small",
  57990. height: math.unit(1, "inch")
  57991. },
  57992. {
  57993. name: "Normal",
  57994. height: math.unit(4, "feet"),
  57995. default: true
  57996. },
  57997. ]
  57998. ))
  57999. characterMakers.push(() => makeCharacter(
  58000. { name: "Carie", species: ["lucario"], tags: ["anthro"] },
  58001. {
  58002. frontDressed: {
  58003. height: math.unit(2.08, "meters"),
  58004. weight: math.unit(175, "lb"),
  58005. name: "Front (Dressed)",
  58006. image: {
  58007. source: "./media/characters/carie/front-dressed.svg",
  58008. extra: 456/417,
  58009. bottom: 7/463
  58010. }
  58011. },
  58012. backDressed: {
  58013. height: math.unit(2.08, "meters"),
  58014. weight: math.unit(175, "lb"),
  58015. name: "Back (Dressed)",
  58016. image: {
  58017. source: "./media/characters/carie/back-dressed.svg",
  58018. extra: 455/414,
  58019. bottom: 11/466
  58020. }
  58021. },
  58022. front: {
  58023. height: math.unit(2, "meters"),
  58024. weight: math.unit(175, "lb"),
  58025. name: "Front",
  58026. image: {
  58027. source: "./media/characters/carie/front.svg",
  58028. extra: 438/399,
  58029. bottom: 12/450
  58030. }
  58031. },
  58032. back: {
  58033. height: math.unit(2, "meters"),
  58034. weight: math.unit(175, "lb"),
  58035. name: "Back",
  58036. image: {
  58037. source: "./media/characters/carie/back.svg",
  58038. extra: 438/397,
  58039. bottom: 7/445
  58040. }
  58041. },
  58042. },
  58043. [
  58044. {
  58045. name: "Normal",
  58046. height: math.unit(2.08, "meters"),
  58047. default: true
  58048. },
  58049. {
  58050. name: "Macro",
  58051. height: math.unit(2.08e3, "meters")
  58052. },
  58053. {
  58054. name: "Mega Macro",
  58055. height: math.unit(2.08e6, "meters")
  58056. },
  58057. {
  58058. name: "Giga Macro",
  58059. height: math.unit(2.08e9, "meters")
  58060. },
  58061. {
  58062. name: "Tera Macro",
  58063. height: math.unit(2.08e12, "meters")
  58064. },
  58065. {
  58066. name: "Peta Macro",
  58067. height: math.unit(2.08e15, "meters")
  58068. },
  58069. {
  58070. name: "Exa Macro",
  58071. height: math.unit(2.08e18, "meters")
  58072. },
  58073. {
  58074. name: "Zetta Macro",
  58075. height: math.unit(2.08e21, "meters")
  58076. },
  58077. {
  58078. name: "Yotta Macro",
  58079. height: math.unit(2.08e24, "meters")
  58080. },
  58081. ]
  58082. ))
  58083. characterMakers.push(() => makeCharacter(
  58084. { name: "Sai Bree", species: ["sabertooth-tiger"], tags: ["anthro"] },
  58085. {
  58086. front: {
  58087. height: math.unit(5 + 2/12, "feet"),
  58088. weight: math.unit(120, "lb"),
  58089. name: "Front",
  58090. image: {
  58091. source: "./media/characters/sai-bree/front.svg",
  58092. extra: 1843/1702,
  58093. bottom: 91/1934
  58094. }
  58095. },
  58096. back: {
  58097. height: math.unit(5 + 2/12, "feet"),
  58098. weight: math.unit(120, "lb"),
  58099. name: "Back",
  58100. image: {
  58101. source: "./media/characters/sai-bree/back.svg",
  58102. extra: 1809/1637,
  58103. bottom: 56/1865
  58104. }
  58105. },
  58106. },
  58107. [
  58108. {
  58109. name: "Normal",
  58110. height: math.unit(5 + 2/12, "feet"),
  58111. default: true
  58112. },
  58113. {
  58114. name: "Macro",
  58115. height: math.unit(500, "feet")
  58116. },
  58117. ]
  58118. ))
  58119. characterMakers.push(() => makeCharacter(
  58120. { name: "Davwyn", species: ["dragon"], tags: ["feral"] },
  58121. {
  58122. side: {
  58123. height: math.unit(0.77, "meters"),
  58124. weight: math.unit(120, "lb"),
  58125. name: "Side",
  58126. image: {
  58127. source: "./media/characters/davwyn/side.svg",
  58128. extra: 1557/1225,
  58129. bottom: 131/1688
  58130. }
  58131. },
  58132. front: {
  58133. height: math.unit(0.835410, "meters"),
  58134. weight: math.unit(120, "lb"),
  58135. name: "Front",
  58136. image: {
  58137. source: "./media/characters/davwyn/front.svg",
  58138. extra: 870/843,
  58139. bottom: 175/1045
  58140. }
  58141. },
  58142. },
  58143. [
  58144. {
  58145. name: "Minidrake",
  58146. height: math.unit(0.77/4, "meters")
  58147. },
  58148. {
  58149. name: "Normal",
  58150. height: math.unit(0.77, "meters"),
  58151. default: true
  58152. },
  58153. ]
  58154. ))
  58155. characterMakers.push(() => makeCharacter(
  58156. { name: "Balans", species: ["dragon", "kangaroo"], tags: ["anthro"] },
  58157. {
  58158. front: {
  58159. height: math.unit(10 + 3/12, "feet"),
  58160. weight: math.unit(2857, "lb"),
  58161. name: "Front",
  58162. image: {
  58163. source: "./media/characters/balans/front.svg",
  58164. extra: 427/402,
  58165. bottom: 26/453
  58166. }
  58167. },
  58168. side: {
  58169. height: math.unit(10 + 3/12, "feet"),
  58170. weight: math.unit(2857, "lb"),
  58171. name: "Side",
  58172. image: {
  58173. source: "./media/characters/balans/side.svg",
  58174. extra: 397/371,
  58175. bottom: 17/414
  58176. }
  58177. },
  58178. back: {
  58179. height: math.unit(10 + 3/12, "feet"),
  58180. weight: math.unit(2857, "lb"),
  58181. name: "Back",
  58182. image: {
  58183. source: "./media/characters/balans/back.svg",
  58184. extra: 408/381,
  58185. bottom: 14/422
  58186. }
  58187. },
  58188. hand: {
  58189. height: math.unit(1.15, "feet"),
  58190. name: "Hand",
  58191. image: {
  58192. source: "./media/characters/balans/hand.svg"
  58193. }
  58194. },
  58195. footRest: {
  58196. height: math.unit(3.1, "feet"),
  58197. name: "Foot (Rest)",
  58198. image: {
  58199. source: "./media/characters/balans/foot-rest.svg"
  58200. }
  58201. },
  58202. footActive: {
  58203. height: math.unit(3.5, "feet"),
  58204. name: "Foot (Active)",
  58205. image: {
  58206. source: "./media/characters/balans/foot-active.svg"
  58207. }
  58208. },
  58209. },
  58210. [
  58211. {
  58212. name: "Normal",
  58213. height: math.unit(10 + 3/12, "feet"),
  58214. default: true
  58215. },
  58216. ]
  58217. ))
  58218. characterMakers.push(() => makeCharacter(
  58219. { name: "Eldkveikir", species: ["dragon"], tags: ["feral"] },
  58220. {
  58221. side: {
  58222. height: math.unit(9, "meters"),
  58223. weight: math.unit(114, "tonnes"),
  58224. name: "Side",
  58225. image: {
  58226. source: "./media/characters/eldkveikir/side.svg",
  58227. extra: 1927/338,
  58228. bottom: 42/1969
  58229. }
  58230. },
  58231. sitting: {
  58232. height: math.unit(13.4, "meters"),
  58233. weight: math.unit(114, "tonnes"),
  58234. name: "Sitting",
  58235. image: {
  58236. source: "./media/characters/eldkveikir/sitting.svg",
  58237. extra: 1108/963,
  58238. bottom: 610/1718
  58239. }
  58240. },
  58241. maw: {
  58242. height: math.unit(8.36, "meters"),
  58243. name: "Maw",
  58244. image: {
  58245. source: "./media/characters/eldkveikir/maw.svg"
  58246. }
  58247. },
  58248. hand: {
  58249. height: math.unit(4.84, "meters"),
  58250. name: "Hand",
  58251. image: {
  58252. source: "./media/characters/eldkveikir/hand.svg"
  58253. }
  58254. },
  58255. foot: {
  58256. height: math.unit(6.9, "meters"),
  58257. name: "Foot",
  58258. image: {
  58259. source: "./media/characters/eldkveikir/foot.svg"
  58260. }
  58261. },
  58262. genitals: {
  58263. height: math.unit(9.6, "meters"),
  58264. name: "Genitals",
  58265. image: {
  58266. source: "./media/characters/eldkveikir/genitals.svg"
  58267. }
  58268. },
  58269. },
  58270. [
  58271. {
  58272. name: "Normal",
  58273. height: math.unit(9, "meters"),
  58274. default: true
  58275. },
  58276. ]
  58277. ))
  58278. characterMakers.push(() => makeCharacter(
  58279. { name: "Arrow", species: ["wolf"], tags: ["anthro"] },
  58280. {
  58281. front: {
  58282. height: math.unit(14, "feet"),
  58283. weight: math.unit(4100, "lb"),
  58284. name: "Front",
  58285. image: {
  58286. source: "./media/characters/arrow/front.svg",
  58287. extra: 330/318,
  58288. bottom: 56/386
  58289. }
  58290. },
  58291. },
  58292. [
  58293. {
  58294. name: "Normal",
  58295. height: math.unit(14, "feet"),
  58296. default: true
  58297. },
  58298. {
  58299. name: "Minimacro",
  58300. height: math.unit(63, "feet")
  58301. },
  58302. {
  58303. name: "Macro",
  58304. height: math.unit(630, "feet")
  58305. },
  58306. {
  58307. name: "Megamacro",
  58308. height: math.unit(12600, "feet")
  58309. },
  58310. {
  58311. name: "Gigamacro",
  58312. height: math.unit(18000, "miles")
  58313. },
  58314. ]
  58315. ))
  58316. characterMakers.push(() => makeCharacter(
  58317. { name: "3YK-K0 Unit", species: ["synth"], tags: ["anthro"] },
  58318. {
  58319. front: {
  58320. height: math.unit(10, "feet"),
  58321. weight: math.unit(2.4, "tons"),
  58322. name: "Front",
  58323. image: {
  58324. source: "./media/characters/3yk-k0-unit/front.svg",
  58325. extra: 573/561,
  58326. bottom: 33/606
  58327. }
  58328. },
  58329. back: {
  58330. height: math.unit(10, "feet"),
  58331. weight: math.unit(2.4, "tons"),
  58332. name: "Back",
  58333. image: {
  58334. source: "./media/characters/3yk-k0-unit/back.svg",
  58335. extra: 614/573,
  58336. bottom: 32/646
  58337. }
  58338. },
  58339. maw: {
  58340. height: math.unit(2.15, "feet"),
  58341. name: "Maw",
  58342. image: {
  58343. source: "./media/characters/3yk-k0-unit/maw.svg"
  58344. }
  58345. },
  58346. },
  58347. [
  58348. {
  58349. name: "Normal",
  58350. height: math.unit(10, "feet"),
  58351. default: true
  58352. },
  58353. ]
  58354. ))
  58355. characterMakers.push(() => makeCharacter(
  58356. { name: "Nemo", species: ["dragon"], tags: ["anthro"] },
  58357. {
  58358. front: {
  58359. height: math.unit(8 + 8/12, "feet"),
  58360. name: "Front",
  58361. image: {
  58362. source: "./media/characters/nemo/front.svg",
  58363. extra: 1308/1217,
  58364. bottom: 57/1365
  58365. }
  58366. },
  58367. },
  58368. [
  58369. {
  58370. name: "Normal",
  58371. height: math.unit(8 + 8/12, "feet"),
  58372. default: true
  58373. },
  58374. ]
  58375. ))
  58376. characterMakers.push(() => makeCharacter(
  58377. { name: "Rexx", species: ["wolf"], tags: ["anthro"] },
  58378. {
  58379. front: {
  58380. height: math.unit(8, "feet"),
  58381. weight: math.unit(760, "lb"),
  58382. name: "Front",
  58383. image: {
  58384. source: "./media/characters/rexx/front.svg",
  58385. extra: 786/750,
  58386. bottom: 17/803
  58387. },
  58388. extraAttributes: {
  58389. "pawLength": {
  58390. name: "Paw Length",
  58391. power: 1,
  58392. type: "length",
  58393. base: math.unit(27, "inches")
  58394. },
  58395. }
  58396. },
  58397. },
  58398. [
  58399. {
  58400. name: "Micro",
  58401. height: math.unit(2, "inches")
  58402. },
  58403. {
  58404. name: "Normal",
  58405. height: math.unit(8, "feet"),
  58406. default: true
  58407. },
  58408. {
  58409. name: "Macro",
  58410. height: math.unit(150, "feet")
  58411. },
  58412. ]
  58413. ))
  58414. characterMakers.push(() => makeCharacter(
  58415. { name: "Draco", species: ["dragon"], tags: ["anthro"] },
  58416. {
  58417. front: {
  58418. height: math.unit(18, "feet"),
  58419. weight: math.unit(1975, "lb"),
  58420. name: "Front",
  58421. image: {
  58422. source: "./media/characters/draco/front.svg",
  58423. extra: 1325/1241,
  58424. bottom: 83/1408
  58425. }
  58426. },
  58427. back: {
  58428. height: math.unit(18, "feet"),
  58429. weight: math.unit(1975, "lb"),
  58430. name: "Back",
  58431. image: {
  58432. source: "./media/characters/draco/back.svg",
  58433. extra: 1332/1250,
  58434. bottom: 43/1375
  58435. }
  58436. },
  58437. dick: {
  58438. height: math.unit(7.5, "feet"),
  58439. name: "Dick",
  58440. image: {
  58441. source: "./media/characters/draco/dick.svg"
  58442. }
  58443. },
  58444. },
  58445. [
  58446. {
  58447. name: "Normal",
  58448. height: math.unit(18, "feet"),
  58449. default: true
  58450. },
  58451. ]
  58452. ))
  58453. characterMakers.push(() => makeCharacter(
  58454. { name: "Harriett", species: ["nedynvor"], tags: ["anthro"] },
  58455. {
  58456. front: {
  58457. height: math.unit(3.2, "meters"),
  58458. name: "Front",
  58459. image: {
  58460. source: "./media/characters/harriett/front.svg",
  58461. extra: 1966/1915,
  58462. bottom: 9/1975
  58463. }
  58464. },
  58465. },
  58466. [
  58467. {
  58468. name: "Normal",
  58469. height: math.unit(3.2, "meters"),
  58470. default: true
  58471. },
  58472. ]
  58473. ))
  58474. characterMakers.push(() => makeCharacter(
  58475. { name: "Serpentus", species: ["snake"], tags: ["anthro"] },
  58476. {
  58477. sitting: {
  58478. height: math.unit(0.8, "meter"),
  58479. name: "Sitting",
  58480. image: {
  58481. source: "./media/characters/serpentus/sitting.svg",
  58482. extra: 293/290,
  58483. bottom: 140/433
  58484. }
  58485. },
  58486. },
  58487. [
  58488. {
  58489. name: "Normal",
  58490. height: math.unit(0.8, "meter"),
  58491. default: true
  58492. },
  58493. ]
  58494. ))
  58495. characterMakers.push(() => makeCharacter(
  58496. { name: "Nova (Polecat)", species: ["marbled-polecat"], tags: ["anthro"] },
  58497. {
  58498. front: {
  58499. height: math.unit(5.7174385736, "feet"),
  58500. name: "Front",
  58501. image: {
  58502. source: "./media/characters/nova-polecat/front.svg",
  58503. extra: 1317/1216,
  58504. bottom: 92/1409
  58505. }
  58506. },
  58507. },
  58508. [
  58509. {
  58510. name: "Normal",
  58511. height: math.unit(5.7174385736, "feet"),
  58512. default: true
  58513. },
  58514. ]
  58515. ))
  58516. characterMakers.push(() => makeCharacter(
  58517. { name: "Mook", species: ["monkey", "ape"], tags: ["anthro"] },
  58518. {
  58519. front: {
  58520. height: math.unit(5 + 4/12, "feet"),
  58521. weight: math.unit(250, "lb"),
  58522. name: "Front",
  58523. image: {
  58524. source: "./media/characters/mook/front.svg",
  58525. extra: 1088/1037,
  58526. bottom: 132/1220
  58527. }
  58528. },
  58529. back: {
  58530. height: math.unit(5 + 1/12, "feet"),
  58531. weight: math.unit(250, "lb"),
  58532. name: "Back",
  58533. image: {
  58534. source: "./media/characters/mook/back.svg",
  58535. extra: 1184/905,
  58536. bottom: 96/1280
  58537. }
  58538. },
  58539. head: {
  58540. height: math.unit(1.85, "feet"),
  58541. name: "Head",
  58542. image: {
  58543. source: "./media/characters/mook/head.svg"
  58544. }
  58545. },
  58546. hand: {
  58547. height: math.unit(1.9, "feet"),
  58548. name: "Hand",
  58549. image: {
  58550. source: "./media/characters/mook/hand.svg"
  58551. }
  58552. },
  58553. palm: {
  58554. height: math.unit(1.84, "feet"),
  58555. name: "Palm",
  58556. image: {
  58557. source: "./media/characters/mook/palm.svg"
  58558. }
  58559. },
  58560. foot: {
  58561. height: math.unit(1.44, "feet"),
  58562. name: "Foot",
  58563. image: {
  58564. source: "./media/characters/mook/foot.svg"
  58565. }
  58566. },
  58567. sole: {
  58568. height: math.unit(1.44, "feet"),
  58569. name: "Sole",
  58570. image: {
  58571. source: "./media/characters/mook/sole.svg"
  58572. }
  58573. },
  58574. },
  58575. [
  58576. {
  58577. name: "Normal",
  58578. height: math.unit(5 + 4/12, "feet"),
  58579. default: true
  58580. },
  58581. {
  58582. name: "Big",
  58583. height: math.unit(12, "feet")
  58584. },
  58585. ]
  58586. ))
  58587. characterMakers.push(() => makeCharacter(
  58588. { name: "Kayla", species: ["human"], tags: ["anthro"] },
  58589. {
  58590. front: {
  58591. height: math.unit(6 + 10/12, "feet"),
  58592. weight: math.unit(233, "lb"),
  58593. name: "Front",
  58594. image: {
  58595. source: "./media/characters/kayla/front.svg",
  58596. extra: 1850/1775,
  58597. bottom: 65/1915
  58598. }
  58599. },
  58600. },
  58601. [
  58602. {
  58603. name: "Normal",
  58604. height: math.unit(6 + 10/12, "feet"),
  58605. default: true
  58606. },
  58607. {
  58608. name: "Amazonian",
  58609. height: math.unit(12 + 5/12, "feet")
  58610. },
  58611. {
  58612. name: "Mini Giantess",
  58613. height: math.unit(26, "feet")
  58614. },
  58615. {
  58616. name: "Giantess",
  58617. height: math.unit(200, "feet")
  58618. },
  58619. {
  58620. name: "Mega Giantess",
  58621. height: math.unit(2500, "feet")
  58622. },
  58623. {
  58624. name: "City Sized",
  58625. height: math.unit(50, "miles")
  58626. },
  58627. {
  58628. name: "Country Sized",
  58629. height: math.unit(500, "miles")
  58630. },
  58631. {
  58632. name: "Continent Sized",
  58633. height: math.unit(2500, "miles")
  58634. },
  58635. {
  58636. name: "Planet Sized",
  58637. height: math.unit(10000, "miles")
  58638. },
  58639. {
  58640. name: "Star Sized",
  58641. height: math.unit(5e6, "miles")
  58642. },
  58643. {
  58644. name: "Solar System Sized",
  58645. height: math.unit(125, "AU")
  58646. },
  58647. {
  58648. name: "Galaxy Sized",
  58649. height: math.unit(300e3, "lightyears")
  58650. },
  58651. {
  58652. name: "Universe Sized",
  58653. height: math.unit(200e9, "lightyears")
  58654. },
  58655. {
  58656. name: "Multiverse Sized",
  58657. height: math.unit(20, "exauniverses")
  58658. },
  58659. {
  58660. name: "Mother of Existence",
  58661. height: math.unit(1e6, "yottauniverses")
  58662. },
  58663. ]
  58664. ))
  58665. characterMakers.push(() => makeCharacter(
  58666. { name: "Kulve Ragnarok", species: ["kulve-taroth"], tags: ["taur"] },
  58667. {
  58668. side: {
  58669. height: math.unit(9.5, "meters"),
  58670. name: "Side",
  58671. image: {
  58672. source: "./media/characters/kulve-ragnarok/side.svg",
  58673. extra: 364/326,
  58674. bottom: 50/414
  58675. }
  58676. },
  58677. },
  58678. [
  58679. {
  58680. name: "Normal",
  58681. height: math.unit(9.5, "meters"),
  58682. default: true
  58683. },
  58684. ]
  58685. ))
  58686. characterMakers.push(() => makeCharacter(
  58687. { name: "Atlas (Goat)", species: ["goat"], tags: ["anthro"] },
  58688. {
  58689. front: {
  58690. height: math.unit(8 + 9/12, "feet"),
  58691. name: "Front",
  58692. image: {
  58693. source: "./media/characters/atlas-goat/front.svg",
  58694. extra: 1462/1323,
  58695. bottom: 12/1474
  58696. }
  58697. },
  58698. },
  58699. [
  58700. {
  58701. name: "Normal",
  58702. height: math.unit(8 + 9/12, "feet"),
  58703. default: true
  58704. },
  58705. {
  58706. name: "Skyline",
  58707. height: math.unit(845, "feet")
  58708. },
  58709. {
  58710. name: "Orbital",
  58711. height: math.unit(93000, "miles")
  58712. },
  58713. {
  58714. name: "Constellation",
  58715. height: math.unit(27000, "lightyears")
  58716. },
  58717. ]
  58718. ))
  58719. characterMakers.push(() => makeCharacter(
  58720. { name: "Xie Ling", species: ["irthos"], tags: ["anthro"] },
  58721. {
  58722. side: {
  58723. height: math.unit(1.8, "meters"),
  58724. weight: math.unit(120, "kg"),
  58725. name: "Side",
  58726. image: {
  58727. source: "./media/characters/xie-ling/side.svg",
  58728. extra: 646/574,
  58729. bottom: 44/690
  58730. }
  58731. },
  58732. },
  58733. [
  58734. {
  58735. name: "Tiny",
  58736. height: math.unit(1.80, "meters")
  58737. },
  58738. {
  58739. name: "Small",
  58740. height: math.unit(6, "meters")
  58741. },
  58742. {
  58743. name: "Medium",
  58744. height: math.unit(15, "meters")
  58745. },
  58746. {
  58747. name: "Normal",
  58748. height: math.unit(30, "meters"),
  58749. default: true
  58750. },
  58751. {
  58752. name: "Above Normal",
  58753. height: math.unit(60, "meters")
  58754. },
  58755. {
  58756. name: "Big",
  58757. height: math.unit(220, "meters")
  58758. },
  58759. {
  58760. name: "Giant",
  58761. height: math.unit(2.2, "km")
  58762. },
  58763. {
  58764. name: "Macro",
  58765. height: math.unit(25, "km")
  58766. },
  58767. {
  58768. name: "Mega Macro",
  58769. height: math.unit(350, "km")
  58770. },
  58771. {
  58772. name: "Mega Macro+",
  58773. height: math.unit(5000, "km")
  58774. },
  58775. {
  58776. name: "Goddess",
  58777. height: math.unit(3, "multiverses")
  58778. },
  58779. ]
  58780. ))
  58781. characterMakers.push(() => makeCharacter(
  58782. { name: "Sune Nemeruva", species: ["furred-dragon"], tags: ["anthro"] },
  58783. {
  58784. frontSfw: {
  58785. height: math.unit(5 + 11/12, "feet"),
  58786. weight: math.unit(210, "lb"),
  58787. name: "Front",
  58788. image: {
  58789. source: "./media/characters/sune-nemeruva/front-sfw.svg",
  58790. extra: 1928/1821,
  58791. bottom: 45/1973
  58792. }
  58793. },
  58794. backSfw: {
  58795. height: math.unit(5 + 11/12, "feet"),
  58796. weight: math.unit(210, "lb"),
  58797. name: "Back",
  58798. image: {
  58799. source: "./media/characters/sune-nemeruva/back-sfw.svg",
  58800. extra: 1920/1813,
  58801. bottom: 34/1954
  58802. }
  58803. },
  58804. frontNsfw: {
  58805. height: math.unit(5 + 11/12, "feet"),
  58806. weight: math.unit(210, "lb"),
  58807. name: "Front (NSFW)",
  58808. image: {
  58809. source: "./media/characters/sune-nemeruva/front-nsfw.svg",
  58810. extra: 1928/1821,
  58811. bottom: 45/1973
  58812. }
  58813. },
  58814. backNsfw: {
  58815. height: math.unit(5 + 11/12, "feet"),
  58816. weight: math.unit(210, "lb"),
  58817. name: "Back (NSFW)",
  58818. image: {
  58819. source: "./media/characters/sune-nemeruva/back-nsfw.svg",
  58820. extra: 1920/1813,
  58821. bottom: 34/1954
  58822. }
  58823. },
  58824. },
  58825. [
  58826. {
  58827. name: "Normal",
  58828. height: math.unit(5 + 11/12, "feet"),
  58829. default: true
  58830. },
  58831. {
  58832. name: "Goddess",
  58833. height: math.unit(20 + 3/12, "feet")
  58834. },
  58835. {
  58836. name: "Breaker of Man",
  58837. height: math.unit(329 + 9/12, "feet")
  58838. },
  58839. {
  58840. name: "Solar Justice",
  58841. height: math.unit(0.6, "solarradii")
  58842. },
  58843. {
  58844. name: "She Who Judges",
  58845. height: math.unit(1, "universe")
  58846. },
  58847. ]
  58848. ))
  58849. characterMakers.push(() => makeCharacter(
  58850. { name: "Managarmr", species: ["dragon", "deity"], tags: ["anthro"] },
  58851. {
  58852. casual_front: {
  58853. height: math.unit(6 + 1/12, "feet"),
  58854. weight: math.unit(190, "lb"),
  58855. preyCapacity: math.unit(1, "people"),
  58856. name: "Front",
  58857. image: {
  58858. source: "./media/characters/managarmr/casual-front.svg",
  58859. extra: 411/381,
  58860. bottom: 15/426
  58861. },
  58862. extraAttributes: {
  58863. "pawSize": {
  58864. name: "Paw Size",
  58865. power: 1,
  58866. type: "length",
  58867. base: math.unit(0.2, "meters")
  58868. },
  58869. },
  58870. form: "casual",
  58871. },
  58872. casual_back: {
  58873. height: math.unit(6 + 1/12, "feet"),
  58874. weight: math.unit(190, "lb"),
  58875. preyCapacity: math.unit(1, "people"),
  58876. name: "Back",
  58877. image: {
  58878. source: "./media/characters/managarmr/casual-back.svg",
  58879. extra: 413/383,
  58880. bottom: 13/426
  58881. },
  58882. extraAttributes: {
  58883. "pawSize": {
  58884. name: "Paw Size",
  58885. power: 1,
  58886. type: "length",
  58887. base: math.unit(0.2, "meters")
  58888. },
  58889. },
  58890. form: "casual",
  58891. },
  58892. base_front: {
  58893. height: math.unit(7, "feet"),
  58894. weight: math.unit(210, "lb"),
  58895. preyCapacity: math.unit(2, "people"),
  58896. name: "Front",
  58897. image: {
  58898. source: "./media/characters/managarmr/base-front.svg",
  58899. extra: 580/485,
  58900. bottom: 32/612
  58901. },
  58902. extraAttributes: {
  58903. "wingspan": {
  58904. name: "Wingspan",
  58905. power: 1,
  58906. type: "length",
  58907. base: math.unit(4, "meters")
  58908. },
  58909. "pawSize": {
  58910. name: "Paw Size",
  58911. power: 1,
  58912. type: "length",
  58913. base: math.unit(0.2, "meters")
  58914. },
  58915. },
  58916. form: "base",
  58917. },
  58918. "true-divine_front": {
  58919. height: math.unit(40, "feet"),
  58920. weight: math.unit(39000, "lb"),
  58921. preyCapacity: math.unit(375, "people"),
  58922. name: "Front",
  58923. image: {
  58924. source: "./media/characters/managarmr/true-divine-front.svg",
  58925. extra: 725/573,
  58926. bottom: 120/845
  58927. },
  58928. extraAttributes: {
  58929. "wingspan": {
  58930. name: "Wingspan",
  58931. power: 1,
  58932. type: "length",
  58933. base: math.unit(20, "meters")
  58934. },
  58935. "pawSize": {
  58936. name: "Paw Size",
  58937. power: 1,
  58938. type: "length",
  58939. base: math.unit(1.5, "meters")
  58940. },
  58941. },
  58942. form: "true-divine",
  58943. },
  58944. },
  58945. [
  58946. {
  58947. name: "Normal",
  58948. height: math.unit(6 + 1/12, "feet"),
  58949. form: "casual",
  58950. default: true
  58951. },
  58952. {
  58953. name: "Normal",
  58954. height: math.unit(7, "feet"),
  58955. form: "base",
  58956. default: true
  58957. },
  58958. ],
  58959. {
  58960. "casual": {
  58961. name: "Casual",
  58962. default: true
  58963. },
  58964. "base": {
  58965. name: "Base",
  58966. },
  58967. "true-divine": {
  58968. name: "True Divine",
  58969. },
  58970. }
  58971. ))
  58972. characterMakers.push(() => makeCharacter(
  58973. { name: "Mystra", species: ["sergal", "deity"], tags: ["anthro"] },
  58974. {
  58975. front: {
  58976. height: math.unit(1.8, "meters"),
  58977. weight: math.unit(110, "kg"),
  58978. name: "Front",
  58979. image: {
  58980. source: "./media/characters/mystra/front.svg",
  58981. extra: 529/442,
  58982. bottom: 31/560
  58983. }
  58984. },
  58985. frontLewd: {
  58986. height: math.unit(1.8, "meters"),
  58987. weight: math.unit(110, "kg"),
  58988. name: "Front (Lewd)",
  58989. image: {
  58990. source: "./media/characters/mystra/front-lewd.svg",
  58991. extra: 529/442,
  58992. bottom: 31/560
  58993. }
  58994. },
  58995. head: {
  58996. height: math.unit(1.63, "feet"),
  58997. name: "Head",
  58998. image: {
  58999. source: "./media/characters/mystra/head.svg"
  59000. }
  59001. },
  59002. paw: {
  59003. height: math.unit(1.9, "feet"),
  59004. name: "Paw",
  59005. image: {
  59006. source: "./media/characters/mystra/paw.svg"
  59007. }
  59008. },
  59009. },
  59010. [
  59011. {
  59012. name: "Incognito",
  59013. height: math.unit(2.3, "meters")
  59014. },
  59015. {
  59016. name: "Small Macro",
  59017. height: math.unit(300, "meters")
  59018. },
  59019. {
  59020. name: "Small Mega",
  59021. height: math.unit(2, "km")
  59022. },
  59023. {
  59024. name: "Mega",
  59025. height: math.unit(30, "km")
  59026. },
  59027. {
  59028. name: "Small Giga",
  59029. height: math.unit(100, "km")
  59030. },
  59031. {
  59032. name: "Giga",
  59033. height: math.unit(1000, "km"),
  59034. default: true
  59035. },
  59036. {
  59037. name: "Continental",
  59038. height: math.unit(5000, "km")
  59039. },
  59040. {
  59041. name: "Terra",
  59042. height: math.unit(20000, "km")
  59043. },
  59044. {
  59045. name: "Solar",
  59046. height: math.unit(2e6, "km")
  59047. },
  59048. {
  59049. name: "Galactic",
  59050. height: math.unit(528502, "lightyears")
  59051. },
  59052. {
  59053. name: "Universal",
  59054. height: math.unit(20, "universes")
  59055. },
  59056. ]
  59057. ))
  59058. characterMakers.push(() => makeCharacter(
  59059. { name: "Caleb", species: ["lion", "cobra", "dragon", "chimera", "deity"], tags: ["anthro"] },
  59060. {
  59061. front: {
  59062. height: math.unit(2, "meters"),
  59063. weight: math.unit(140, "kg"),
  59064. name: "Front",
  59065. image: {
  59066. source: "./media/characters/caleb/front.svg",
  59067. extra: 873/817,
  59068. bottom: 47/920
  59069. }
  59070. },
  59071. back: {
  59072. height: math.unit(2, "meters"),
  59073. weight: math.unit(140, "kg"),
  59074. name: "Back",
  59075. image: {
  59076. source: "./media/characters/caleb/back.svg",
  59077. extra: 877/828,
  59078. bottom: 24/901
  59079. }
  59080. },
  59081. snakeTail: {
  59082. height: math.unit(1.44, "feet"),
  59083. name: "Snake Tail",
  59084. image: {
  59085. source: "./media/characters/caleb/snake-tail.svg"
  59086. }
  59087. },
  59088. dick: {
  59089. height: math.unit(2.6, "feet"),
  59090. name: "Dick",
  59091. image: {
  59092. source: "./media/characters/caleb/dick.svg"
  59093. }
  59094. },
  59095. },
  59096. [
  59097. {
  59098. name: "Incognito",
  59099. height: math.unit(3, "meters")
  59100. },
  59101. {
  59102. name: "Home Size",
  59103. height: math.unit(200, "meters"),
  59104. default: true
  59105. },
  59106. {
  59107. name: "Macro",
  59108. height: math.unit(500, "meters")
  59109. },
  59110. {
  59111. name: "Big Macro",
  59112. height: math.unit(5, "km")
  59113. },
  59114. {
  59115. name: "Giga",
  59116. height: math.unit(250, "km")
  59117. },
  59118. {
  59119. name: "Giga+",
  59120. height: math.unit(5000, "km")
  59121. },
  59122. {
  59123. name: "Small Terra",
  59124. height: math.unit(35e3, "km")
  59125. },
  59126. {
  59127. name: "Terra",
  59128. height: math.unit(2e6, "km")
  59129. },
  59130. {
  59131. name: "Terra+",
  59132. height: math.unit(1.5e6, "km")
  59133. },
  59134. ]
  59135. ))
  59136. characterMakers.push(() => makeCharacter(
  59137. { name: "Gilirian", species: ["giraffe", "zebra", "deity"], tags: ["anthro"] },
  59138. {
  59139. front: {
  59140. height: math.unit(2, "meters"),
  59141. weight: math.unit(120, "kg"),
  59142. name: "Front",
  59143. image: {
  59144. source: "./media/characters/gilirian/front.svg",
  59145. extra: 805/737,
  59146. bottom: 13/818
  59147. }
  59148. },
  59149. side: {
  59150. height: math.unit(2, "meters"),
  59151. weight: math.unit(120, "kg"),
  59152. name: "Side",
  59153. image: {
  59154. source: "./media/characters/gilirian/side.svg",
  59155. extra: 810/746,
  59156. bottom: 6/816
  59157. }
  59158. },
  59159. back: {
  59160. height: math.unit(2, "meters"),
  59161. weight: math.unit(120, "kg"),
  59162. name: "Back",
  59163. image: {
  59164. source: "./media/characters/gilirian/back.svg",
  59165. extra: 815/745,
  59166. bottom: 15/830
  59167. }
  59168. },
  59169. frontNsfw: {
  59170. height: math.unit(2, "meters"),
  59171. weight: math.unit(120, "kg"),
  59172. name: "Front (NSFW)",
  59173. image: {
  59174. source: "./media/characters/gilirian/front-nsfw.svg",
  59175. extra: 805/737,
  59176. bottom: 13/818
  59177. }
  59178. },
  59179. sideNsfw: {
  59180. height: math.unit(2, "meters"),
  59181. weight: math.unit(120, "kg"),
  59182. name: "Side (NSFW)",
  59183. image: {
  59184. source: "./media/characters/gilirian/side-nsfw.svg",
  59185. extra: 810/746,
  59186. bottom: 6/816
  59187. }
  59188. },
  59189. },
  59190. [
  59191. {
  59192. name: "Incognito",
  59193. height: math.unit(2, "meters"),
  59194. default: true
  59195. },
  59196. {
  59197. name: "Macro",
  59198. height: math.unit(250, "meters")
  59199. },
  59200. {
  59201. name: "Big Macro",
  59202. height: math.unit(1500, "meters")
  59203. },
  59204. {
  59205. name: "Mega",
  59206. height: math.unit(40, "km")
  59207. },
  59208. {
  59209. name: "Giga",
  59210. height: math.unit(300, "km")
  59211. },
  59212. {
  59213. name: "Extra Giga",
  59214. height: math.unit(5000, "km")
  59215. },
  59216. {
  59217. name: "Small Terra",
  59218. height: math.unit(10e3, "km")
  59219. },
  59220. {
  59221. name: "Terra",
  59222. height: math.unit(3e5, "km")
  59223. },
  59224. {
  59225. name: "Galactic",
  59226. height: math.unit(369950, "lightyears")
  59227. },
  59228. ]
  59229. ))
  59230. characterMakers.push(() => makeCharacter(
  59231. { name: "Tarken", species: ["t-rex", "kaiju", "deity"], tags: ["anthro"] },
  59232. {
  59233. front: {
  59234. height: math.unit(2.5, "meters"),
  59235. weight: math.unit(230, "lb"),
  59236. name: "Front",
  59237. image: {
  59238. source: "./media/characters/tarken/front.svg",
  59239. extra: 764/720,
  59240. bottom: 49/813
  59241. }
  59242. },
  59243. back: {
  59244. height: math.unit(2.5, "meters"),
  59245. weight: math.unit(230, "lb"),
  59246. name: "Back",
  59247. image: {
  59248. source: "./media/characters/tarken/back.svg",
  59249. extra: 756/720,
  59250. bottom: 35/791
  59251. }
  59252. },
  59253. frontNsfw: {
  59254. height: math.unit(2.5, "meters"),
  59255. weight: math.unit(230, "lb"),
  59256. name: "Front (NSFW)",
  59257. image: {
  59258. source: "./media/characters/tarken/front-nsfw.svg",
  59259. extra: 764/720,
  59260. bottom: 49/813
  59261. }
  59262. },
  59263. backNsfw: {
  59264. height: math.unit(2.5, "meters"),
  59265. weight: math.unit(230, "lb"),
  59266. name: "Back (NSFW)",
  59267. image: {
  59268. source: "./media/characters/tarken/back-nsfw.svg",
  59269. extra: 756/720,
  59270. bottom: 35/791
  59271. }
  59272. },
  59273. head: {
  59274. height: math.unit(2.22, "feet"),
  59275. name: "Head",
  59276. image: {
  59277. source: "./media/characters/tarken/head.svg"
  59278. }
  59279. },
  59280. tail: {
  59281. height: math.unit(5.25, "feet"),
  59282. name: "Tail",
  59283. image: {
  59284. source: "./media/characters/tarken/tail.svg"
  59285. }
  59286. },
  59287. dick: {
  59288. height: math.unit(1.95, "feet"),
  59289. name: "Dick",
  59290. image: {
  59291. source: "./media/characters/tarken/dick.svg"
  59292. }
  59293. },
  59294. hand: {
  59295. height: math.unit(1.78, "feet"),
  59296. name: "Hand",
  59297. image: {
  59298. source: "./media/characters/tarken/hand.svg"
  59299. }
  59300. },
  59301. beam: {
  59302. height: math.unit(1.5, "feet"),
  59303. name: "Beam",
  59304. image: {
  59305. source: "./media/characters/tarken/beam.svg"
  59306. }
  59307. },
  59308. },
  59309. [
  59310. {
  59311. name: "Original Size",
  59312. height: math.unit(2.5, "meters")
  59313. },
  59314. {
  59315. name: "Macro",
  59316. height: math.unit(150, "meters"),
  59317. default: true
  59318. },
  59319. {
  59320. name: "Macro+",
  59321. height: math.unit(300, "meters")
  59322. },
  59323. {
  59324. name: "Mega",
  59325. height: math.unit(2, "km")
  59326. },
  59327. {
  59328. name: "Mega+",
  59329. height: math.unit(35, "km")
  59330. },
  59331.  {
  59332. name: "Mega++",
  59333. height: math.unit(60, "km")
  59334. },
  59335. {
  59336. name: "Giga",
  59337. height: math.unit(200, "km")
  59338. },
  59339. {
  59340. name: "Giga+",
  59341. height: math.unit(2500, "km")
  59342. },
  59343. {
  59344. name: "Giga++",
  59345. height: math.unit(6600, "km")
  59346. },
  59347. {
  59348. name: "Terra",
  59349. height: math.unit(20000, "km")
  59350. },
  59351. {
  59352. name: "Terra+",
  59353. height: math.unit(300000, "km")
  59354. },
  59355. ]
  59356. ))
  59357. characterMakers.push(() => makeCharacter(
  59358. { name: "Otreus", species: ["magpie", "hippogriff", "deity"], tags: ["anthro"] },
  59359. {
  59360. magpie_dressed: {
  59361. height: math.unit(1.7, "meters"),
  59362. weight: math.unit(70, "kg"),
  59363. name: "Dressed",
  59364. image: {
  59365. source: "./media/characters/otreus/magpie-dressed.svg",
  59366. extra: 691/672,
  59367. bottom: 116/807
  59368. },
  59369. form: "magpie",
  59370. default: true
  59371. },
  59372. magpie_nude: {
  59373. height: math.unit(1.7, "meters"),
  59374. weight: math.unit(70, "kg"),
  59375. name: "Nude",
  59376. image: {
  59377. source: "./media/characters/otreus/magpie-nude.svg",
  59378. extra: 691/672,
  59379. bottom: 116/807
  59380. },
  59381. form: "magpie",
  59382. },
  59383. magpie_dressedLewd: {
  59384. height: math.unit(1.7, "meters"),
  59385. weight: math.unit(70, "kg"),
  59386. name: "Dressed (Lewd)",
  59387. image: {
  59388. source: "./media/characters/otreus/magpie-dressed-lewd.svg",
  59389. extra: 691/672,
  59390. bottom: 116/807
  59391. },
  59392. form: "magpie",
  59393. },
  59394. magpie_nudeLewd: {
  59395. height: math.unit(1.7, "meters"),
  59396. weight: math.unit(70, "kg"),
  59397. name: "Nude (Lewd)",
  59398. image: {
  59399. source: "./media/characters/otreus/magpie-nude-lewd.svg",
  59400. extra: 691/672,
  59401. bottom: 116/807
  59402. },
  59403. form: "magpie",
  59404. },
  59405. magpie_leftFoot: {
  59406. height: math.unit(1.58, "feet"),
  59407. name: "Left Foot",
  59408. image: {
  59409. source: "./media/characters/otreus/magpie-left-foot.svg"
  59410. },
  59411. form: "magpie",
  59412. },
  59413. magpie_rightFoot: {
  59414. height: math.unit(1.58, "feet"),
  59415. name: "Right Foot",
  59416. image: {
  59417. source: "./media/characters/otreus/magpie-right-foot.svg"
  59418. },
  59419. form: "magpie",
  59420. },
  59421. magpie_wingspan: {
  59422. height: math.unit(2, "meters"),
  59423. weight: math.unit(70, "kg"),
  59424. name: "Wingspan",
  59425. image: {
  59426. source: "./media/characters/otreus/magpie-wingspan.svg"
  59427. },
  59428. extraAttributes: {
  59429. "wingspan": {
  59430. name: "Wingspan",
  59431. power: 1,
  59432. type: "length",
  59433. base: math.unit(3.35, "meters")
  59434. },
  59435. },
  59436. form: "magpie",
  59437. },
  59438. hippogriff_dressed: {
  59439. height: math.unit(1.7, "meters"),
  59440. weight: math.unit(70, "kg"),
  59441. name: "Dressed",
  59442. image: {
  59443. source: "./media/characters/otreus/hippogriff-dressed.svg",
  59444. extra: 710/689,
  59445. bottom: 67/777
  59446. },
  59447. form: "hippogriff",
  59448. default: true
  59449. },
  59450. hippogriff_nude: {
  59451. height: math.unit(1.7, "meters"),
  59452. weight: math.unit(70, "kg"),
  59453. name: "Nude",
  59454. image: {
  59455. source: "./media/characters/otreus/hippogriff-nude.svg",
  59456. extra: 710/689,
  59457. bottom: 67/777
  59458. },
  59459. form: "hippogriff",
  59460. },
  59461. hippogriff_dressedLewd: {
  59462. height: math.unit(1.7, "meters"),
  59463. weight: math.unit(70, "kg"),
  59464. name: "Dressed (Lewd)",
  59465. image: {
  59466. source: "./media/characters/otreus/hippogriff-dressed-lewd.svg",
  59467. extra: 710/689,
  59468. bottom: 67/777
  59469. },
  59470. form: "hippogriff",
  59471. },
  59472. hippogriff_nudeLewd: {
  59473. height: math.unit(1.7, "meters"),
  59474. weight: math.unit(70, "kg"),
  59475. name: "Nude (Lewd)",
  59476. image: {
  59477. source: "./media/characters/otreus/hippogriff-nude-lewd.svg",
  59478. extra: 710/689,
  59479. bottom: 67/777
  59480. },
  59481. form: "hippogriff",
  59482. },
  59483. },
  59484. [
  59485. {
  59486. name: "Original Size",
  59487. height: math.unit(1.7, "meters"),
  59488. allForms: true
  59489. },
  59490. {
  59491. name: "Incognito Size",
  59492. height: math.unit(2, "meters"),
  59493. allForms: true
  59494. },
  59495. {
  59496. name: "Mega",
  59497. height: math.unit(2, "km"),
  59498. allForms: true
  59499. },
  59500. {
  59501. name: "Mega+",
  59502. height: math.unit(40, "km"),
  59503. allForms: true
  59504. },
  59505. {
  59506. name: "Giga",
  59507. height: math.unit(250, "km"),
  59508. allForms: true
  59509. },
  59510. {
  59511. name: "Giga+",
  59512. height: math.unit(3000, "km"),
  59513. allForms: true
  59514. },
  59515. {
  59516. name: "Terra",
  59517. height: math.unit(20000, "km"),
  59518. allForms: true
  59519. },
  59520. {
  59521. name: "Solar (Home Size)",
  59522. height: math.unit(3e6, "km"),
  59523. allForms: true,
  59524. default: true
  59525. },
  59526. ],
  59527. {
  59528. "magpie": {
  59529. name: "Magpie",
  59530. default: true
  59531. },
  59532. "hippogriff": {
  59533. name: "Hippogriff",
  59534. },
  59535. }
  59536. ))
  59537. characterMakers.push(() => makeCharacter(
  59538. { name: "Thalia", species: ["flying-fox", "fox", "deity"], tags: ["anthro"] },
  59539. {
  59540. frontDressed: {
  59541. height: math.unit(1.8, "meters"),
  59542. weight: math.unit(90, "kg"),
  59543. name: "Front (Dressed)",
  59544. image: {
  59545. source: "./media/characters/thalia/front-dressed.svg",
  59546. extra: 478/402,
  59547. bottom: 55/533
  59548. }
  59549. },
  59550. backDressed: {
  59551. height: math.unit(1.8, "meters"),
  59552. weight: math.unit(90, "kg"),
  59553. name: "Back (Dressed)",
  59554. image: {
  59555. source: "./media/characters/thalia/back-dressed.svg",
  59556. extra: 500/424,
  59557. bottom: 15/515
  59558. }
  59559. },
  59560. frontNude: {
  59561. height: math.unit(1.8, "meters"),
  59562. weight: math.unit(90, "kg"),
  59563. name: "Front (Nude)",
  59564. image: {
  59565. source: "./media/characters/thalia/front-nude.svg",
  59566. extra: 478/402,
  59567. bottom: 55/533
  59568. }
  59569. },
  59570. backNude: {
  59571. height: math.unit(1.8, "meters"),
  59572. weight: math.unit(90, "kg"),
  59573. name: "Back (Nude)",
  59574. image: {
  59575. source: "./media/characters/thalia/back-nude.svg",
  59576. extra: 500/424,
  59577. bottom: 15/515
  59578. }
  59579. },
  59580. },
  59581. [
  59582. {
  59583. name: "Incognito",
  59584. height: math.unit(3, "meters")
  59585. },
  59586. {
  59587. name: "Macro",
  59588. height: math.unit(500, "meters")
  59589. },
  59590. {
  59591. name: "Mega",
  59592. height: math.unit(5, "km")
  59593. },
  59594. {
  59595. name: "Mega+",
  59596. height: math.unit(30, "km")
  59597. },
  59598. {
  59599. name: "Giga",
  59600. height: math.unit(350, "km")
  59601. },
  59602. {
  59603. name: "Giga+",
  59604. height: math.unit(4000, "km")
  59605. },
  59606. {
  59607. name: "Terra",
  59608. height: math.unit(35000, "km")
  59609. },
  59610. {
  59611. name: "Original Size",
  59612. height: math.unit(130000, "km")
  59613. },
  59614. {
  59615. name: "Solar (Home Size)",
  59616. height: math.unit(4e6, "km"),
  59617. default: true
  59618. },
  59619. ]
  59620. ))
  59621. characterMakers.push(() => makeCharacter(
  59622. { name: "Shango", species: ["african-wild-dog", "deity"], tags: ["anthro"] },
  59623. {
  59624. front: {
  59625. height: math.unit(1.8, "meters"),
  59626. weight: math.unit(95, "kg"),
  59627. name: "Front",
  59628. image: {
  59629. source: "./media/characters/shango/front.svg",
  59630. extra: 1925/1774,
  59631. bottom: 67/1992
  59632. }
  59633. },
  59634. back: {
  59635. height: math.unit(1.8, "meters"),
  59636. weight: math.unit(95, "kg"),
  59637. name: "Back",
  59638. image: {
  59639. source: "./media/characters/shango/back.svg",
  59640. extra: 1915/1766,
  59641. bottom: 52/1967
  59642. }
  59643. },
  59644. frontLewd: {
  59645. height: math.unit(1.8, "meters"),
  59646. weight: math.unit(95, "kg"),
  59647. name: "Front (Lewd)",
  59648. image: {
  59649. source: "./media/characters/shango/front-lewd.svg",
  59650. extra: 1925/1774,
  59651. bottom: 67/1992
  59652. }
  59653. },
  59654. backLewd: {
  59655. height: math.unit(1.8, "meters"),
  59656. weight: math.unit(95, "kg"),
  59657. name: "Back (Lewd)",
  59658. image: {
  59659. source: "./media/characters/shango/back-lewd.svg",
  59660. extra: 1915/1766,
  59661. bottom: 52/1967
  59662. }
  59663. },
  59664. maw: {
  59665. height: math.unit(1.64, "feet"),
  59666. name: "Maw",
  59667. image: {
  59668. source: "./media/characters/shango/maw.svg"
  59669. }
  59670. },
  59671. dick: {
  59672. height: math.unit(2.14, "feet"),
  59673. name: "Dick",
  59674. image: {
  59675. source: "./media/characters/shango/dick.svg"
  59676. }
  59677. },
  59678. },
  59679. [
  59680. {
  59681. name: "Incognito",
  59682. height: math.unit(1.8, "meters")
  59683. },
  59684. {
  59685. name: "Home Size",
  59686. height: math.unit(60, "meters"),
  59687. default: true
  59688. },
  59689. {
  59690. name: "Macro",
  59691. height: math.unit(450, "meters")
  59692. },
  59693. {
  59694. name: "Mega",
  59695. height: math.unit(6, "km")
  59696. },
  59697. {
  59698. name: "Mega+",
  59699. height: math.unit(35, "km")
  59700. },
  59701. {
  59702. name: "Giga",
  59703. height: math.unit(500, "km")
  59704. },
  59705. {
  59706. name: "Giga+",
  59707. height: math.unit(5000, "km")
  59708. },
  59709. {
  59710. name: "Terra",
  59711. height: math.unit(60000, "km")
  59712. },
  59713. {
  59714. name: "Terra+",
  59715. height: math.unit(400000, "km")
  59716. },
  59717. ]
  59718. ))
  59719. characterMakers.push(() => makeCharacter(
  59720. { name: "Osiris (Gryphon)", species: ["gryphon", "snow-leopard", "peregrine-falcon", "deity"], tags: ["anthro"] },
  59721. {
  59722. front: {
  59723. height: math.unit(2, "meters"),
  59724. weight: math.unit(95, "kg"),
  59725. name: "Front",
  59726. image: {
  59727. source: "./media/characters/osiris-gryphon/front.svg",
  59728. extra: 1508/1313,
  59729. bottom: 87/1595
  59730. }
  59731. },
  59732. back: {
  59733. height: math.unit(2, "meters"),
  59734. weight: math.unit(95, "kg"),
  59735. name: "Back",
  59736. image: {
  59737. source: "./media/characters/osiris-gryphon/back.svg",
  59738. extra: 1436/1309,
  59739. bottom: 64/1500
  59740. }
  59741. },
  59742. frontLewd: {
  59743. height: math.unit(2, "meters"),
  59744. weight: math.unit(95, "kg"),
  59745. name: "Front-lewd",
  59746. image: {
  59747. source: "./media/characters/osiris-gryphon/front-lewd.svg",
  59748. extra: 1508/1313,
  59749. bottom: 87/1595
  59750. }
  59751. },
  59752. wing: {
  59753. height: math.unit(6.3333, "feet"),
  59754. name: "Wing",
  59755. image: {
  59756. source: "./media/characters/osiris-gryphon/wing.svg"
  59757. }
  59758. },
  59759. },
  59760. [
  59761. {
  59762. name: "Incognito",
  59763. height: math.unit(2, "meters")
  59764. },
  59765. {
  59766. name: "Home Size",
  59767. height: math.unit(30, "meters"),
  59768. default: true
  59769. },
  59770. {
  59771. name: "Macro",
  59772. height: math.unit(100, "meters")
  59773. },
  59774. {
  59775. name: "Macro+",
  59776. height: math.unit(350, "meters")
  59777. },
  59778. {
  59779. name: "Mega",
  59780. height: math.unit(40, "km")
  59781. },
  59782. {
  59783. name: "Giga",
  59784. height: math.unit(300, "km")
  59785. },
  59786. {
  59787. name: "Giga+",
  59788. height: math.unit(2000, "km")
  59789. },
  59790. {
  59791. name: "Terra",
  59792. height: math.unit(30000, "km")
  59793. },
  59794. ]
  59795. ))
  59796. characterMakers.push(() => makeCharacter(
  59797. { name: "Atlas (Dragon)", species: ["dragon", "deity"], tags: ["anthro"] },
  59798. {
  59799. front: {
  59800. height: math.unit(2.5, "meters"),
  59801. weight: math.unit(200, "kg"),
  59802. name: "Front",
  59803. image: {
  59804. source: "./media/characters/atlas-dragon/front.svg",
  59805. extra: 745/462,
  59806. bottom: 36/781
  59807. }
  59808. },
  59809. back: {
  59810. height: math.unit(2.5, "meters"),
  59811. weight: math.unit(200, "kg"),
  59812. name: "Back",
  59813. image: {
  59814. source: "./media/characters/atlas-dragon/back.svg",
  59815. extra: 848/822,
  59816. bottom: 57/905
  59817. }
  59818. },
  59819. frontLewd: {
  59820. height: math.unit(2.5, "meters"),
  59821. weight: math.unit(200, "kg"),
  59822. name: "Front (Lewd)",
  59823. image: {
  59824. source: "./media/characters/atlas-dragon/front-lewd.svg",
  59825. extra: 745/462,
  59826. bottom: 36/781
  59827. }
  59828. },
  59829. backLewd: {
  59830. height: math.unit(2.5, "meters"),
  59831. weight: math.unit(200, "kg"),
  59832. name: "Back (Lewd)",
  59833. image: {
  59834. source: "./media/characters/atlas-dragon/back-lewd.svg",
  59835. extra: 848/822,
  59836. bottom: 57/905
  59837. }
  59838. },
  59839. },
  59840. [
  59841. {
  59842. name: "Incognito",
  59843. height: math.unit(2.5, "meters")
  59844. },
  59845. {
  59846. name: "Small Macro",
  59847. height: math.unit(50, "meters")
  59848. },
  59849. {
  59850. name: "Macro",
  59851. height: math.unit(350, "meters")
  59852. },
  59853. {
  59854. name: "Mega",
  59855. height: math.unit(5.5, "kilometers")
  59856. },
  59857. {
  59858. name: "Mega+",
  59859. height: math.unit(50, "km")
  59860. },
  59861. {
  59862. name: "Giga",
  59863. height: math.unit(350, "km")
  59864. },
  59865. {
  59866. name: "Giga+",
  59867. height: math.unit(2000, "km")
  59868. },
  59869. {
  59870. name: "Giga++",
  59871. height: math.unit(6500, "km")
  59872. },
  59873. {
  59874. name: "Terra",
  59875. height: math.unit(30000, "km")
  59876. },
  59877. {
  59878. name: "Terra+",
  59879. height: math.unit(250000, "km")
  59880. },
  59881. {
  59882. name: "True Size",
  59883. height: math.unit(100, "multiverses"),
  59884. default: true
  59885. },
  59886. ]
  59887. ))
  59888. characterMakers.push(() => makeCharacter(
  59889. { name: "Chey", species: ["coyote", "deity"], tags: ["anthro"] },
  59890. {
  59891. front: {
  59892. height: math.unit(1.8, "m"),
  59893. weight: math.unit(120, "kg"),
  59894. name: "Front",
  59895. image: {
  59896. source: "./media/characters/chey/front.svg",
  59897. extra: 1359/1270,
  59898. bottom: 18/1377
  59899. }
  59900. },
  59901. arm: {
  59902. height: math.unit(2.05, "feet"),
  59903. name: "Arm",
  59904. image: {
  59905. source: "./media/characters/chey/arm.svg"
  59906. }
  59907. },
  59908. head: {
  59909. height: math.unit(1.89, "feet"),
  59910. name: "Head",
  59911. image: {
  59912. source: "./media/characters/chey/head.svg"
  59913. }
  59914. },
  59915. },
  59916. [
  59917. {
  59918. name: "Original Size",
  59919. height: math.unit(5, "cm")
  59920. },
  59921. {
  59922. name: "Incognito Size",
  59923. height: math.unit(2.4, "m")
  59924. },
  59925. {
  59926. name: "Home Size",
  59927. height: math.unit(200, "meters"),
  59928. default: true
  59929. },
  59930. {
  59931. name: "Mega",
  59932. height: math.unit(2, "km")
  59933. },
  59934. {
  59935. name: "Giga (Preferred Size)",
  59936. height: math.unit(2000, "km")
  59937. },
  59938. {
  59939. name: "Giga+",
  59940. height: math.unit(6000, "km")
  59941. },
  59942. {
  59943. name: "Terra",
  59944. height: math.unit(17000, "km")
  59945. },
  59946. {
  59947. name: "Terra+",
  59948. height: math.unit(75000, "km")
  59949. },
  59950. {
  59951. name: "Terra++",
  59952. height: math.unit(225000, "km")
  59953. },
  59954. ]
  59955. ))
  59956. characterMakers.push(() => makeCharacter(
  59957. { name: "Ragnarok", species: ["suicune"], tags: ["taur"] },
  59958. {
  59959. side: {
  59960. height: math.unit(7.8, "meters"),
  59961. name: "Side",
  59962. image: {
  59963. source: "./media/characters/ragnarok/side.svg",
  59964. extra: 725/621,
  59965. bottom: 72/797
  59966. }
  59967. },
  59968. },
  59969. [
  59970. {
  59971. name: "Normal",
  59972. height: math.unit(7.8, "meters"),
  59973. default: true
  59974. },
  59975. ]
  59976. ))
  59977. characterMakers.push(() => makeCharacter(
  59978. { name: "Nima", species: ["hyena", "shark", "deity"], tags: ["anthro"] },
  59979. {
  59980. hyena_front: {
  59981. height: math.unit(2.1, "meters"),
  59982. weight: math.unit(110, "kg"),
  59983. name: "Front",
  59984. image: {
  59985. source: "./media/characters/nima/hyena-front.svg",
  59986. extra: 1904/1796,
  59987. bottom: 67/1971
  59988. },
  59989. form: "hyena",
  59990. },
  59991. hyena_back: {
  59992. height: math.unit(2.1, "meters"),
  59993. weight: math.unit(110, "kg"),
  59994. name: "Back",
  59995. image: {
  59996. source: "./media/characters/nima/hyena-back.svg",
  59997. extra: 1964/1884,
  59998. bottom: 35/1999
  59999. },
  60000. form: "hyena",
  60001. },
  60002. shark_front: {
  60003. height: math.unit(1.95, "meters"),
  60004. weight: math.unit(110, "kg"),
  60005. name: "Front",
  60006. image: {
  60007. source: "./media/characters/nima/shark-front.svg",
  60008. extra: 2238/2013,
  60009. bottom: 0/223
  60010. },
  60011. form: "shark",
  60012. },
  60013. paw: {
  60014. height: math.unit(1, "feet"),
  60015. name: "Paw",
  60016. image: {
  60017. source: "./media/characters/nima/paw.svg"
  60018. }
  60019. },
  60020. circlet: {
  60021. height: math.unit(0.3, "feet"),
  60022. name: "Circlet",
  60023. image: {
  60024. source: "./media/characters/nima/circlet.svg"
  60025. }
  60026. },
  60027. necklace: {
  60028. height: math.unit(1.2, "feet"),
  60029. name: "Necklace",
  60030. image: {
  60031. source: "./media/characters/nima/necklace.svg"
  60032. }
  60033. },
  60034. bracelet: {
  60035. height: math.unit(0.51, "feet"),
  60036. name: "Bracelet",
  60037. image: {
  60038. source: "./media/characters/nima/bracelet.svg"
  60039. }
  60040. },
  60041. armband: {
  60042. height: math.unit(1.3, "feet"),
  60043. name: "Armband",
  60044. image: {
  60045. source: "./media/characters/nima/armband.svg"
  60046. }
  60047. },
  60048. },
  60049. [
  60050. {
  60051. name: "Incognito",
  60052. height: math.unit(2.1, "meters"),
  60053. allForms: true
  60054. },
  60055. {
  60056. name: "Small Macro",
  60057. height: math.unit(50, "meters"),
  60058. allForms: true
  60059. },
  60060. {
  60061. name: "Macro",
  60062. height: math.unit(200, "meters"),
  60063. allForms: true
  60064. },
  60065. {
  60066. name: "Mega",
  60067. height: math.unit(2.5, "km"),
  60068. allForms: true
  60069. },
  60070. {
  60071. name: "Mega+",
  60072. height: math.unit(30, "km"),
  60073. allForms: true
  60074. },
  60075. {
  60076. name: "Giga (Home Size)",
  60077. height: math.unit(400, "km"),
  60078. allForms: true,
  60079. default: true
  60080. },
  60081. {
  60082. name: "Giga+",
  60083. height: math.unit(2500, "km"),
  60084. allForms: true
  60085. },
  60086. {
  60087. name: "Giga++",
  60088. height: math.unit(8000, "km"),
  60089. allForms: true
  60090. },
  60091. {
  60092. name: "Terra",
  60093. height: math.unit(20000, "km"),
  60094. allForms: true
  60095. },
  60096. {
  60097. name: "Terra+",
  60098. height: math.unit(70000, "km"),
  60099. allForms: true
  60100. },
  60101. {
  60102. name: "Terra++",
  60103. height: math.unit(600000, "km"),
  60104. allForms: true
  60105. },
  60106. {
  60107. name: "Galactic",
  60108. height: math.unit(40, "galaxies"),
  60109. allForms: true
  60110. },
  60111. {
  60112. name: "Universal",
  60113. height: math.unit(40, "universes"),
  60114. allForms: true
  60115. },
  60116. ],
  60117. {
  60118. "hyena": {
  60119. name: "Hyena",
  60120. default: true
  60121. },
  60122. "shark": {
  60123. name: "Shark",
  60124. },
  60125. }
  60126. ))
  60127. characterMakers.push(() => makeCharacter(
  60128. { name: "Adelaide", species: ["deinonychus"], tags: ["anthro", "feral"] },
  60129. {
  60130. anthro_front: {
  60131. height: math.unit(1.5, "meters"),
  60132. name: "Front",
  60133. image: {
  60134. source: "./media/characters/adelaide/anthro-front.svg",
  60135. extra: 860/783,
  60136. bottom: 60/920
  60137. },
  60138. form: "anthro",
  60139. default: true
  60140. },
  60141. hand: {
  60142. height: math.unit(0.65, "feet"),
  60143. name: "Hand",
  60144. image: {
  60145. source: "./media/characters/adelaide/hand.svg"
  60146. },
  60147. form: "anthro"
  60148. },
  60149. foot: {
  60150. height: math.unit(1.38 * 259 / 314, "feet"),
  60151. name: "Foot",
  60152. image: {
  60153. source: "./media/characters/adelaide/foot.svg",
  60154. extra: 259/259,
  60155. bottom: 55/314
  60156. },
  60157. form: "anthro"
  60158. },
  60159. feather: {
  60160. height: math.unit(0.85, "feet"),
  60161. name: "Feather",
  60162. image: {
  60163. source: "./media/characters/adelaide/feather.svg"
  60164. },
  60165. form: "anthro"
  60166. },
  60167. feral_side: {
  60168. height: math.unit(1, "meters"),
  60169. name: "Side",
  60170. image: {
  60171. source: "./media/characters/adelaide/feral-side.svg",
  60172. extra: 550/467,
  60173. bottom: 37/587
  60174. },
  60175. form: "feral",
  60176. default: true
  60177. },
  60178. feral_hand: {
  60179. height: math.unit(0.58, "feet"),
  60180. name: "Hand",
  60181. image: {
  60182. source: "./media/characters/adelaide/hand.svg"
  60183. },
  60184. form: "feral"
  60185. },
  60186. feral_foot: {
  60187. height: math.unit(1.2 * 259 / 314, "feet"),
  60188. name: "Foot",
  60189. image: {
  60190. source: "./media/characters/adelaide/foot.svg",
  60191. extra: 259/259,
  60192. bottom: 55/314
  60193. },
  60194. form: "feral"
  60195. },
  60196. feral_feather: {
  60197. height: math.unit(0.63, "feet"),
  60198. name: "Feather",
  60199. image: {
  60200. source: "./media/characters/adelaide/feather.svg"
  60201. },
  60202. form: "feral"
  60203. },
  60204. },
  60205. [
  60206. {
  60207. name: "Normal",
  60208. height: math.unit(1.5, "meters"),
  60209. form: "anthro",
  60210. default: true
  60211. },
  60212. {
  60213. name: "Normal",
  60214. height: math.unit(1, "meters"),
  60215. form: "feral",
  60216. default: true
  60217. },
  60218. ],
  60219. {
  60220. "anthro": {
  60221. name: "Anthro",
  60222. default: true
  60223. },
  60224. "feral": {
  60225. name: "Feral",
  60226. },
  60227. }
  60228. ))
  60229. characterMakers.push(() => makeCharacter(
  60230. { name: "Goa", species: ["chocobo"], tags: ["taur"] },
  60231. {
  60232. front: {
  60233. height: math.unit(2.5, "meters"),
  60234. name: "Front",
  60235. image: {
  60236. source: "./media/characters/goa/front.svg",
  60237. extra: 1109/1013,
  60238. bottom: 150/1259
  60239. }
  60240. },
  60241. },
  60242. [
  60243. {
  60244. name: "Normal",
  60245. height: math.unit(2.5, "meters"),
  60246. default: true
  60247. },
  60248. ]
  60249. ))
  60250. characterMakers.push(() => makeCharacter(
  60251. { name: "Kiki (Weavile)", species: ["weavile"], tags: ["anthro"] },
  60252. {
  60253. front: {
  60254. height: math.unit(2, "meters"),
  60255. weight: math.unit(100, "kg"),
  60256. name: "Front",
  60257. image: {
  60258. source: "./media/characters/kiki-weavile/front.svg",
  60259. extra: 357/332,
  60260. bottom: 60/417
  60261. }
  60262. },
  60263. },
  60264. [
  60265. {
  60266. name: "Normal",
  60267. height: math.unit(2, "meters"),
  60268. default: true
  60269. },
  60270. ]
  60271. ))
  60272. characterMakers.push(() => makeCharacter(
  60273. { name: "Liza", species: ["stilio"], tags: ["taur"] },
  60274. {
  60275. side: {
  60276. height: math.unit(1.6, "meters"),
  60277. name: "Side",
  60278. image: {
  60279. source: "./media/characters/liza/side.svg",
  60280. extra: 943/915,
  60281. bottom: 72/1015
  60282. }
  60283. },
  60284. },
  60285. [
  60286. {
  60287. name: "Normal",
  60288. height: math.unit(1.6, "meters"),
  60289. default: true
  60290. },
  60291. ]
  60292. ))
  60293. characterMakers.push(() => makeCharacter(
  60294. { name: "Persephone Sweetbreath", species: ["hyena", "gnoll"], tags: ["taur"] },
  60295. {
  60296. side: {
  60297. height: math.unit(2.5, "meters"),
  60298. preyCapacity: math.unit(1, "people"),
  60299. name: "Side",
  60300. image: {
  60301. source: "./media/characters/persephone-sweetbreath/side.svg",
  60302. extra: 796/700,
  60303. bottom: 44/840
  60304. }
  60305. },
  60306. sideVore: {
  60307. height: math.unit(2.5, "meters"),
  60308. preyCapacity: math.unit(1, "people"),
  60309. name: "Side (Full)",
  60310. image: {
  60311. source: "./media/characters/persephone-sweetbreath/side-vore.svg",
  60312. extra: 796/700,
  60313. bottom: 44/840
  60314. }
  60315. },
  60316. },
  60317. [
  60318. {
  60319. name: "Normal",
  60320. height: math.unit(2.5, "meters"),
  60321. default: true
  60322. },
  60323. ]
  60324. ))
  60325. characterMakers.push(() => makeCharacter(
  60326. { name: "Pierce", species: ["dragon"], tags: ["feral"] },
  60327. {
  60328. front: {
  60329. height: math.unit(32, "meters"),
  60330. name: "Front",
  60331. image: {
  60332. source: "./media/characters/pierce/front.svg",
  60333. extra: 1695/1475,
  60334. bottom: 185/1880
  60335. }
  60336. },
  60337. side: {
  60338. height: math.unit(32, "meters"),
  60339. name: "Side",
  60340. image: {
  60341. source: "./media/characters/pierce/side.svg",
  60342. extra: 974/859,
  60343. bottom: 43/1017
  60344. }
  60345. },
  60346. frontWingless: {
  60347. height: math.unit(32, "meters"),
  60348. name: "Front (Wingless)",
  60349. image: {
  60350. source: "./media/characters/pierce/front-wingless.svg",
  60351. extra: 1695/1475,
  60352. bottom: 185/1880
  60353. }
  60354. },
  60355. sideWingless: {
  60356. height: math.unit(32, "meters"),
  60357. name: "Side (Wingless)",
  60358. image: {
  60359. source: "./media/characters/pierce/side-wingless.svg",
  60360. extra: 974/859,
  60361. bottom: 43/1017
  60362. }
  60363. },
  60364. maw: {
  60365. height: math.unit(19.3, "meters"),
  60366. name: "Maw",
  60367. image: {
  60368. source: "./media/characters/pierce/maw.svg"
  60369. }
  60370. },
  60371. },
  60372. [
  60373. {
  60374. name: "Small",
  60375. height: math.unit(8.5, "meters")
  60376. },
  60377. {
  60378. name: "Normal",
  60379. height: math.unit(32, "meters"),
  60380. default: true
  60381. },
  60382. ]
  60383. ))
  60384. characterMakers.push(() => makeCharacter(
  60385. { name: "Shira", species: ["cobra", "deity", "dragon"], tags: ["anthro"] },
  60386. {
  60387. front: {
  60388. height: math.unit(2.3, "meters"),
  60389. weight: math.unit(165, "kg"),
  60390. name: "Front",
  60391. image: {
  60392. source: "./media/characters/shira/front.svg",
  60393. extra: 924/919,
  60394. bottom: 17/941
  60395. },
  60396. form: "cobra",
  60397. default: true
  60398. },
  60399. back: {
  60400. height: math.unit(2.3, "meters"),
  60401. weight: math.unit(165, "kg"),
  60402. name: "Back",
  60403. image: {
  60404. source: "./media/characters/shira/back.svg",
  60405. extra: 928/922,
  60406. bottom: 18/946
  60407. },
  60408. form: "cobra"
  60409. },
  60410. frontLewd: {
  60411. height: math.unit(2.3, "meters"),
  60412. weight: math.unit(165, "kg"),
  60413. name: "Front (Lewd)",
  60414. image: {
  60415. source: "./media/characters/shira/front-lewd.svg",
  60416. extra: 924/919,
  60417. bottom: 17/941
  60418. },
  60419. form: "cobra"
  60420. },
  60421. backLewd: {
  60422. height: math.unit(2.3, "meters"),
  60423. weight: math.unit(165, "kg"),
  60424. name: "Back (Lewd)",
  60425. image: {
  60426. source: "./media/characters/shira/back-lewd.svg",
  60427. extra: 928/922,
  60428. bottom: 18/946
  60429. },
  60430. form: "cobra"
  60431. },
  60432. maw: {
  60433. height: math.unit(1.14, "feet"),
  60434. name: "Maw",
  60435. image: {
  60436. source: "./media/characters/shira/maw.svg"
  60437. },
  60438. form: "cobra"
  60439. },
  60440. magma_front: {
  60441. height: math.unit(2.3, "meters"),
  60442. weight: math.unit(165, "kg"),
  60443. name: "Front",
  60444. image: {
  60445. source: "./media/characters/shira/magma-front.svg",
  60446. extra: 1870/1693,
  60447. bottom: 24/1894
  60448. },
  60449. form: "magma",
  60450. },
  60451. magma_back: {
  60452. height: math.unit(2.3, "meters"),
  60453. weight: math.unit(165, "kg"),
  60454. name: "Back",
  60455. image: {
  60456. source: "./media/characters/shira/magma-back.svg",
  60457. extra: 1918/1756,
  60458. bottom: 46/1964
  60459. },
  60460. form: "magma",
  60461. },
  60462. },
  60463. [
  60464. {
  60465. name: "Incognito",
  60466. height: math.unit(2.3, "meters"),
  60467. allForms: true
  60468. },
  60469. {
  60470. name: "Home Size",
  60471. height: math.unit(150, "meters"),
  60472. default: true,
  60473. allForms: true
  60474. },
  60475. {
  60476. name: "Macro",
  60477. height: math.unit(2, "km"),
  60478. allForms: true
  60479. },
  60480. {
  60481. name: "Mega",
  60482. height: math.unit(30, "km"),
  60483. allForms: true
  60484. },
  60485. {
  60486. name: "Giga",
  60487. height: math.unit(450, "km"),
  60488. allForms: true
  60489. },
  60490. {
  60491. name: "Giga+",
  60492. height: math.unit(3000, "km"),
  60493. allForms: true
  60494. },
  60495. {
  60496. name: "Giga++",
  60497. height: math.unit(6000, "km"),
  60498. allForms: true
  60499. },
  60500. {
  60501. name: "Terra",
  60502. height: math.unit(80000, "km"),
  60503. allForms: true
  60504. },
  60505. {
  60506. name: "Terra+",
  60507. height: math.unit(350000, "km"),
  60508. allForms: true
  60509. },
  60510. {
  60511. name: "Solar",
  60512. height: math.unit(1e6, "km"),
  60513. allForms: true
  60514. },
  60515. ],
  60516. {
  60517. "cobra": {
  60518. name: "Cobra",
  60519. default: true
  60520. },
  60521. "magma": {
  60522. name: "Magma Dragon",
  60523. },
  60524. }
  60525. ))
  60526. characterMakers.push(() => makeCharacter(
  60527. { name: "Daxerios", species: ["wolf", "cerberus", "deity"], tags: ["anthro"] },
  60528. {
  60529. front: {
  60530. height: math.unit(2, "meters"),
  60531. weight: math.unit(160, "kg"),
  60532. name: "Front",
  60533. image: {
  60534. source: "./media/characters/daxerios/front.svg",
  60535. extra: 1334/1277,
  60536. bottom: 45/1379
  60537. }
  60538. },
  60539. frontLewd: {
  60540. height: math.unit(2, "meters"),
  60541. weight: math.unit(160, "kg"),
  60542. name: "Front (Lewd)",
  60543. image: {
  60544. source: "./media/characters/daxerios/front-lewd.svg",
  60545. extra: 1334/1277,
  60546. bottom: 45/1379
  60547. }
  60548. },
  60549. dick: {
  60550. height: math.unit(2.35, "feet"),
  60551. name: "Dick",
  60552. image: {
  60553. source: "./media/characters/daxerios/dick.svg"
  60554. }
  60555. },
  60556. },
  60557. [
  60558. {
  60559. name: "\"Small\"",
  60560. height: math.unit(5, "meters")
  60561. },
  60562. {
  60563. name: "Original Size",
  60564. height: math.unit(500, "meters"),
  60565. default: true
  60566. },
  60567. {
  60568. name: "Mega",
  60569. height: math.unit(2, "km")
  60570. },
  60571. {
  60572. name: "Mega+",
  60573. height: math.unit(35, "km")
  60574. },
  60575. {
  60576. name: "Giga",
  60577. height: math.unit(250, "km")
  60578. },
  60579. {
  60580. name: "Giga+",
  60581. height: math.unit(3000, "km")
  60582. },
  60583. {
  60584. name: "Terra",
  60585. height: math.unit(25000, "km")
  60586. },
  60587. {
  60588. name: "Terra+",
  60589. height: math.unit(300000, "km")
  60590. },
  60591. {
  60592. name: "Solar",
  60593. height: math.unit(1e6, "km")
  60594. },
  60595. ]
  60596. ))
  60597. characterMakers.push(() => makeCharacter(
  60598. { name: "Caveat", species: ["luxray", "plush"], tags: ["anthro"] },
  60599. {
  60600. front: {
  60601. height: math.unit(8 + 4/12, "feet"),
  60602. weight: math.unit(464, "lb"),
  60603. name: "Front",
  60604. image: {
  60605. source: "./media/characters/caveat/front.svg",
  60606. extra: 1861/1678,
  60607. bottom: 40/1901
  60608. }
  60609. },
  60610. },
  60611. [
  60612. {
  60613. name: "Normal",
  60614. height: math.unit(8 + 4/12, "feet"),
  60615. default: true
  60616. },
  60617. ]
  60618. ))
  60619. characterMakers.push(() => makeCharacter(
  60620. { name: "Centbair", species: ["kardox"], tags: ["anthro"] },
  60621. {
  60622. front: {
  60623. height: math.unit(12, "feet"),
  60624. weight: math.unit(1800, "lb"),
  60625. name: "Front",
  60626. image: {
  60627. source: "./media/characters/centbair/front.svg",
  60628. extra: 781/663,
  60629. bottom: 25/806
  60630. }
  60631. },
  60632. frontNsfw: {
  60633. height: math.unit(12, "feet"),
  60634. weight: math.unit(1800, "lb"),
  60635. name: "Front (NSFW)",
  60636. image: {
  60637. source: "./media/characters/centbair/front-nsfw.svg",
  60638. extra: 781/663,
  60639. bottom: 25/806
  60640. }
  60641. },
  60642. back: {
  60643. height: math.unit(12, "feet"),
  60644. weight: math.unit(1800, "lb"),
  60645. name: "Back",
  60646. image: {
  60647. source: "./media/characters/centbair/back.svg",
  60648. extra: 808/761,
  60649. bottom: 19/827
  60650. }
  60651. },
  60652. dick: {
  60653. height: math.unit(6.5, "feet"),
  60654. name: "Dick",
  60655. image: {
  60656. source: "./media/characters/centbair/dick.svg"
  60657. }
  60658. },
  60659. slit: {
  60660. height: math.unit(3.25, "feet"),
  60661. name: "Slit",
  60662. image: {
  60663. source: "./media/characters/centbair/slit.svg"
  60664. }
  60665. },
  60666. },
  60667. [
  60668. {
  60669. name: "Normal",
  60670. height: math.unit(12, "feet"),
  60671. default: true
  60672. },
  60673. ]
  60674. ))
  60675. characterMakers.push(() => makeCharacter(
  60676. { name: "Andy", species: ["tanuki"], tags: ["anthro"] },
  60677. {
  60678. front: {
  60679. height: math.unit(5 + 7/12, "feet"),
  60680. name: "Front",
  60681. image: {
  60682. source: "./media/characters/andy/front.svg",
  60683. extra: 634/588,
  60684. bottom: 36/670
  60685. },
  60686. extraAttributes: {
  60687. "pawLength": {
  60688. name: "Paw Length",
  60689. power: 1,
  60690. type: "length",
  60691. base: math.unit(1, "feet")
  60692. },
  60693. }
  60694. },
  60695. side: {
  60696. height: math.unit(5 + 7/12, "feet"),
  60697. name: "Side",
  60698. image: {
  60699. source: "./media/characters/andy/side.svg",
  60700. extra: 641/596,
  60701. bottom: 34/675
  60702. },
  60703. extraAttributes: {
  60704. "pawLength": {
  60705. name: "Paw Length",
  60706. power: 1,
  60707. type: "length",
  60708. base: math.unit(1, "feet")
  60709. },
  60710. }
  60711. },
  60712. back: {
  60713. height: math.unit(5 + 7/12, "feet"),
  60714. name: "Back",
  60715. image: {
  60716. source: "./media/characters/andy/back.svg",
  60717. extra: 618/583,
  60718. bottom: 39/657
  60719. },
  60720. extraAttributes: {
  60721. "pawLength": {
  60722. name: "Paw Length",
  60723. power: 1,
  60724. type: "length",
  60725. base: math.unit(1, "feet")
  60726. },
  60727. }
  60728. },
  60729. paw: {
  60730. height: math.unit(1.13, "feet"),
  60731. name: "Paw",
  60732. image: {
  60733. source: "./media/characters/andy/paw.svg"
  60734. }
  60735. },
  60736. },
  60737. [
  60738. {
  60739. name: "Micro",
  60740. height: math.unit(4, "inches")
  60741. },
  60742. {
  60743. name: "Normal",
  60744. height: math.unit(5 + 7/12, "feet"),
  60745. default: true
  60746. },
  60747. {
  60748. name: "Macro",
  60749. height: math.unit(390.42, "feet")
  60750. },
  60751. ]
  60752. ))
  60753. characterMakers.push(() => makeCharacter(
  60754. { name: "Vix Titan", species: ["fox", "demon"], tags: ["anthro"] },
  60755. {
  60756. front: {
  60757. height: math.unit(7, "feet"),
  60758. weight: math.unit(250, "lb"),
  60759. name: "Front",
  60760. image: {
  60761. source: "./media/characters/vix-titan/front.svg",
  60762. extra: 460/428,
  60763. bottom: 15/475
  60764. },
  60765. extraAttributes: {
  60766. "pawWidth": {
  60767. name: "Paw Width",
  60768. power: 1,
  60769. type: "length",
  60770. base: math.unit(0.75, "feet")
  60771. },
  60772. }
  60773. },
  60774. },
  60775. [
  60776. {
  60777. name: "Normal",
  60778. height: math.unit(7, "feet"),
  60779. default: true
  60780. },
  60781. {
  60782. name: "Giant",
  60783. height: math.unit(1500, "feet")
  60784. },
  60785. {
  60786. name: "Mega",
  60787. height: math.unit(10, "miles")
  60788. },
  60789. {
  60790. name: "Giga",
  60791. height: math.unit(150, "miles")
  60792. },
  60793. {
  60794. name: "Tera",
  60795. height: math.unit(144000, "miles")
  60796. },
  60797. ]
  60798. ))
  60799. characterMakers.push(() => makeCharacter(
  60800. { name: "Reiku", species: ["dragon"], tags: ["anthro"] },
  60801. {
  60802. front: {
  60803. height: math.unit(6 + 2/12, "feet"),
  60804. name: "Front",
  60805. image: {
  60806. source: "./media/characters/reiku/front.svg",
  60807. extra: 1910/1757,
  60808. bottom: 103/2013
  60809. },
  60810. extraAttributes: {
  60811. "thighThickness": {
  60812. name: "Thigh Thickness",
  60813. power: 1,
  60814. type: "length",
  60815. base: math.unit(1.12, "feet")
  60816. },
  60817. "assThickness": {
  60818. name: "Ass Thickness",
  60819. power: 1,
  60820. type: "length",
  60821. base: math.unit(1.12*2, "feet")
  60822. },
  60823. }
  60824. },
  60825. side: {
  60826. height: math.unit(6 + 2/12, "feet"),
  60827. name: "Side",
  60828. image: {
  60829. source: "./media/characters/reiku/side.svg",
  60830. extra: 1846/1748,
  60831. bottom: 99/1945
  60832. },
  60833. extraAttributes: {
  60834. "thighThickness": {
  60835. name: "Thigh Thickness",
  60836. power: 1,
  60837. type: "length",
  60838. base: math.unit(1.12, "feet")
  60839. },
  60840. "assThickness": {
  60841. name: "Ass Thickness",
  60842. power: 1,
  60843. type: "length",
  60844. base: math.unit(1.12*2, "feet")
  60845. },
  60846. }
  60847. },
  60848. back: {
  60849. height: math.unit(6 + 2/12, "feet"),
  60850. name: "Back",
  60851. image: {
  60852. source: "./media/characters/reiku/back.svg",
  60853. extra: 1941/1786,
  60854. bottom: 34/1975
  60855. },
  60856. extraAttributes: {
  60857. "thighThickness": {
  60858. name: "Thigh Thickness",
  60859. power: 1,
  60860. type: "length",
  60861. base: math.unit(1.12, "feet")
  60862. },
  60863. "assThickness": {
  60864. name: "Ass Thickness",
  60865. power: 1,
  60866. type: "length",
  60867. base: math.unit(1.12*2, "feet")
  60868. },
  60869. }
  60870. },
  60871. head: {
  60872. height: math.unit(1.8, "feet"),
  60873. name: "Head",
  60874. image: {
  60875. source: "./media/characters/reiku/head.svg"
  60876. }
  60877. },
  60878. tailTop: {
  60879. height: math.unit(8.4, "feet"),
  60880. name: "Tail (Top)",
  60881. image: {
  60882. source: "./media/characters/reiku/tail-top.svg"
  60883. }
  60884. },
  60885. tailBottom: {
  60886. height: math.unit(8.4, "feet"),
  60887. name: "Tail (Bottom)",
  60888. image: {
  60889. source: "./media/characters/reiku/tail-bottom.svg"
  60890. }
  60891. },
  60892. foot: {
  60893. height: math.unit(2.6, "feet"),
  60894. name: "Foot",
  60895. image: {
  60896. source: "./media/characters/reiku/foot.svg"
  60897. }
  60898. },
  60899. footCurled: {
  60900. height: math.unit(2.3, "feet"),
  60901. name: "Foot (Curled)",
  60902. image: {
  60903. source: "./media/characters/reiku/foot-curled.svg"
  60904. }
  60905. },
  60906. footSide: {
  60907. height: math.unit(1.26, "feet"),
  60908. name: "Foot (Side)",
  60909. image: {
  60910. source: "./media/characters/reiku/foot-side.svg"
  60911. }
  60912. },
  60913. },
  60914. [
  60915. {
  60916. name: "Normal",
  60917. height: math.unit(6 + 2/12, "feet"),
  60918. default: true
  60919. },
  60920. ]
  60921. ))
  60922. characterMakers.push(() => makeCharacter(
  60923. { name: "Cialda", species: ["zorgoia", "food"], tags: ["feral"] },
  60924. {
  60925. front: {
  60926. height: math.unit(7, "feet"),
  60927. weight: math.unit(500, "kg"),
  60928. name: "Front",
  60929. image: {
  60930. source: "./media/characters/cialda/front.svg",
  60931. extra: 912/745,
  60932. bottom: 55/967
  60933. }
  60934. },
  60935. },
  60936. [
  60937. {
  60938. name: "Normal",
  60939. height: math.unit(7, "feet"),
  60940. default: true
  60941. },
  60942. ]
  60943. ))
  60944. characterMakers.push(() => makeCharacter(
  60945. { name: "Darkkin", species: ["honey-badger", "behemoth"], tags: ["anthro"] },
  60946. {
  60947. side: {
  60948. height: math.unit(6, "feet"),
  60949. weight: math.unit(600, "lb"),
  60950. preyCapacity: math.unit(25, "liters"),
  60951. name: "Side",
  60952. image: {
  60953. source: "./media/characters/darkkin/side.svg",
  60954. extra: 1597/1447,
  60955. bottom: 101/1698
  60956. }
  60957. },
  60958. },
  60959. [
  60960. {
  60961. name: "Canon Height",
  60962. height: math.unit(568, "feet"),
  60963. default: true
  60964. },
  60965. ]
  60966. ))
  60967. characterMakers.push(() => makeCharacter(
  60968. { name: "Livnia", species: ["rattlesnake", "diamondback"], tags: ["naga"] },
  60969. {
  60970. front: {
  60971. height: math.unit(6, "feet"),
  60972. weight: math.unit(1500, "lb"),
  60973. preyCapacity: math.unit(3, "people"),
  60974. name: "Front",
  60975. image: {
  60976. source: "./media/characters/livnia/front.svg",
  60977. extra: 934/932,
  60978. bottom: 83/1017
  60979. }
  60980. },
  60981. back: {
  60982. height: math.unit(6, "feet"),
  60983. weight: math.unit(1500, "lb"),
  60984. preyCapacity: math.unit(3, "people"),
  60985. name: "Back",
  60986. image: {
  60987. source: "./media/characters/livnia/back.svg",
  60988. extra: 916/915,
  60989. bottom: 58/974
  60990. }
  60991. },
  60992. head: {
  60993. height: math.unit(1.53, "feet"),
  60994. name: "Head",
  60995. image: {
  60996. source: "./media/characters/livnia/head.svg"
  60997. }
  60998. },
  60999. maw: {
  61000. height: math.unit(0.78, "feet"),
  61001. name: "Maw",
  61002. image: {
  61003. source: "./media/characters/livnia/maw.svg"
  61004. }
  61005. },
  61006. genitals: {
  61007. height: math.unit(0.35, "feet"),
  61008. name: "Genitals",
  61009. image: {
  61010. source: "./media/characters/livnia/genitals.svg"
  61011. }
  61012. },
  61013. },
  61014. [
  61015. {
  61016. name: "Normal",
  61017. height: math.unit(1000, "feet"),
  61018. default: true
  61019. },
  61020. ]
  61021. ))
  61022. characterMakers.push(() => makeCharacter(
  61023. { name: "Hayaku", species: ["spidox"], tags: ["anthro"] },
  61024. {
  61025. front: {
  61026. height: math.unit(4, "feet"),
  61027. weight: math.unit(73, "lb"),
  61028. name: "Front",
  61029. image: {
  61030. source: "./media/characters/hayaku/front.svg",
  61031. extra: 1011/888,
  61032. bottom: 33/1044
  61033. }
  61034. },
  61035. back: {
  61036. height: math.unit(4, "feet"),
  61037. weight: math.unit(73, "lb"),
  61038. name: "Back",
  61039. image: {
  61040. source: "./media/characters/hayaku/back.svg",
  61041. extra: 1040/930,
  61042. bottom: 20/1060
  61043. }
  61044. },
  61045. },
  61046. [
  61047. {
  61048. name: "Normal",
  61049. height: math.unit(4, "feet"),
  61050. default: true
  61051. },
  61052. ]
  61053. ))
  61054. characterMakers.push(() => makeCharacter(
  61055. { name: "Athena Bryzant", species: ["gryphon"], tags: ["anthro"] },
  61056. {
  61057. front: {
  61058. height: math.unit(6 + 7/12, "feet"),
  61059. weight: math.unit(300, "lb"),
  61060. name: "Front",
  61061. image: {
  61062. source: "./media/characters/athena-bryzant/front.svg",
  61063. extra: 870/835,
  61064. bottom: 33/903
  61065. }
  61066. },
  61067. back: {
  61068. height: math.unit(6 + 7/12, "feet"),
  61069. weight: math.unit(300, "lb"),
  61070. name: "Back",
  61071. image: {
  61072. source: "./media/characters/athena-bryzant/back.svg",
  61073. extra: 858/823,
  61074. bottom: 30/888
  61075. }
  61076. },
  61077. head: {
  61078. height: math.unit(2.38, "feet"),
  61079. name: "Head",
  61080. image: {
  61081. source: "./media/characters/athena-bryzant/head.svg"
  61082. }
  61083. },
  61084. wings: {
  61085. height: math.unit(2.85, "feet"),
  61086. name: "Wings",
  61087. image: {
  61088. source: "./media/characters/athena-bryzant/wings.svg"
  61089. }
  61090. },
  61091. },
  61092. [
  61093. {
  61094. name: "Normal",
  61095. height: math.unit(6 + 7/12, "feet"),
  61096. default: true
  61097. },
  61098. {
  61099. name: "Big",
  61100. height: math.unit(8, "feet")
  61101. },
  61102. {
  61103. name: "Very Big",
  61104. height: math.unit(11, "feet")
  61105. },
  61106. ]
  61107. ))
  61108. characterMakers.push(() => makeCharacter(
  61109. { name: "Zel-Kesh", species: ["zorgoia", "demon"], tags: ["feral"] },
  61110. {
  61111. side: {
  61112. height: math.unit(3, "meters"),
  61113. weight: math.unit(7500, "kg"),
  61114. preyCapacity: math.unit(1e12, "people"),
  61115. name: "Side",
  61116. image: {
  61117. source: "./media/characters/zel-kesh/side.svg",
  61118. extra: 910/407,
  61119. bottom: 147/1057
  61120. }
  61121. },
  61122. },
  61123. [
  61124. {
  61125. name: "Normal",
  61126. height: math.unit(3, "meters"),
  61127. default: true
  61128. },
  61129. ]
  61130. ))
  61131. characterMakers.push(() => makeCharacter(
  61132. { name: "Kane (Fox)", species: ["fox", "deity"], tags: ["anthro"] },
  61133. {
  61134. front: {
  61135. height: math.unit(2, "meters"),
  61136. weight: math.unit(95, "kg"),
  61137. name: "Front",
  61138. image: {
  61139. source: "./media/characters/kane-fox/front.svg",
  61140. extra: 945/888,
  61141. bottom: 27/972
  61142. }
  61143. },
  61144. back: {
  61145. height: math.unit(2, "meters"),
  61146. weight: math.unit(95, "kg"),
  61147. name: "Back",
  61148. image: {
  61149. source: "./media/characters/kane-fox/back.svg",
  61150. extra: 959/914,
  61151. bottom: 15/974
  61152. }
  61153. },
  61154. frontLewd: {
  61155. height: math.unit(2, "meters"),
  61156. weight: math.unit(95, "kg"),
  61157. name: "Front (Lewd)",
  61158. image: {
  61159. source: "./media/characters/kane-fox/front-lewd.svg",
  61160. extra: 945/888,
  61161. bottom: 27/972
  61162. }
  61163. },
  61164. },
  61165. [
  61166. {
  61167. name: "Home Size",
  61168. height: math.unit(2, "meters"),
  61169. default: true
  61170. },
  61171. {
  61172. name: "Macro",
  61173. height: math.unit(200, "meters")
  61174. },
  61175. {
  61176. name: "Small Mega",
  61177. height: math.unit(3, "km")
  61178. },
  61179. {
  61180. name: "Mega",
  61181. height: math.unit(50, "km")
  61182. },
  61183. {
  61184. name: "Giga",
  61185. height: math.unit(200, "km")
  61186. },
  61187. {
  61188. name: "Giga+",
  61189. height: math.unit(2500, "km")
  61190. },
  61191. {
  61192. name: "Terra",
  61193. height: math.unit(70000, "km")
  61194. },
  61195. {
  61196. name: "Terra+",
  61197. height: math.unit(150000, "km")
  61198. },
  61199. {
  61200. name: "Terra++",
  61201. height: math.unit(400000, "km")
  61202. },
  61203. ]
  61204. ))
  61205. characterMakers.push(() => makeCharacter(
  61206. { name: "Ayranus", species: ["otter", "lion", "bat", "deity"], tags: ["anthro"] },
  61207. {
  61208. otter_front: {
  61209. height: math.unit(1.8, "meters"),
  61210. weight: math.unit(90, "kg"),
  61211. name: "Front",
  61212. image: {
  61213. source: "./media/characters/ayranus/otter-front.svg",
  61214. extra: 468/452,
  61215. bottom: 43/511
  61216. },
  61217. form: "otter",
  61218. },
  61219. otter_frontLewd: {
  61220. height: math.unit(1.8, "meters"),
  61221. weight: math.unit(90, "kg"),
  61222. name: "Front (Lewd)",
  61223. image: {
  61224. source: "./media/characters/ayranus/otter-front-lewd.svg",
  61225. extra: 468/452,
  61226. bottom: 43/511
  61227. },
  61228. form: "otter",
  61229. },
  61230. lionbat_front: {
  61231. height: math.unit(1.8, "meters"),
  61232. weight: math.unit(90, "kg"),
  61233. name: "Front (Lewd)",
  61234. image: {
  61235. source: "./media/characters/ayranus/lionbat-front-lewd.svg",
  61236. extra: 797/740,
  61237. bottom: 78/875
  61238. },
  61239. form: "lionbat",
  61240. },
  61241. paw: {
  61242. height: math.unit(1.5, "feet"),
  61243. name: "Paw",
  61244. image: {
  61245. source: "./media/characters/ayranus/paw.svg"
  61246. },
  61247. },
  61248. },
  61249. [
  61250. {
  61251. name: "Incognito",
  61252. height: math.unit(1.8, "meters"),
  61253. allForms: true
  61254. },
  61255. {
  61256. name: "Macro",
  61257. height: math.unit(60, "meters"),
  61258. allForms: true
  61259. },
  61260. {
  61261. name: "Macro+",
  61262. height: math.unit(200, "meters"),
  61263. allForms: true
  61264. },
  61265. {
  61266. name: "Mega",
  61267. height: math.unit(35, "km"),
  61268. allForms: true
  61269. },
  61270. {
  61271. name: "Giga",
  61272. height: math.unit(220, "km"),
  61273. allForms: true
  61274. },
  61275. {
  61276. name: "Giga+",
  61277. height: math.unit(1500, "km"),
  61278. allForms: true
  61279. },
  61280. {
  61281. name: "Terra",
  61282. height: math.unit(13000, "km"),
  61283. allForms: true
  61284. },
  61285. {
  61286. name: "Terra+",
  61287. height: math.unit(500000, "km"),
  61288. allForms: true
  61289. },
  61290. {
  61291. name: "Galactic",
  61292. height: math.unit(486080, "parsecs"),
  61293. default: true,
  61294. allForms: true
  61295. },
  61296. ],
  61297. {
  61298. "otter": {
  61299. name: "Otter",
  61300. default: true
  61301. },
  61302. "lionbat": {
  61303. name: "Lionbat",
  61304. },
  61305. }
  61306. ))
  61307. characterMakers.push(() => makeCharacter(
  61308. { name: "Proxy", species: ["kodiak-bear"], tags: ["anthro"] },
  61309. {
  61310. front: {
  61311. height: math.unit(7 + 4/12, "feet"),
  61312. weight: math.unit(400, "lb"),
  61313. name: "Front",
  61314. image: {
  61315. source: "./media/characters/proxy/front.svg",
  61316. extra: 1605/1542,
  61317. bottom: 55/1660
  61318. }
  61319. },
  61320. side: {
  61321. height: math.unit(7 + 4/12, "feet"),
  61322. weight: math.unit(400, "lb"),
  61323. name: "Side",
  61324. image: {
  61325. source: "./media/characters/proxy/side.svg",
  61326. extra: 794/759,
  61327. bottom: 6/800
  61328. }
  61329. },
  61330. hand: {
  61331. height: math.unit(1.54, "feet"),
  61332. name: "Hand",
  61333. image: {
  61334. source: "./media/characters/proxy/hand.svg"
  61335. }
  61336. },
  61337. paw: {
  61338. height: math.unit(1.53, "feet"),
  61339. name: "Paw",
  61340. image: {
  61341. source: "./media/characters/proxy/paw.svg"
  61342. }
  61343. },
  61344. maw: {
  61345. height: math.unit(1.9, "feet"),
  61346. name: "Maw",
  61347. image: {
  61348. source: "./media/characters/proxy/maw.svg"
  61349. }
  61350. },
  61351. },
  61352. [
  61353. {
  61354. name: "Normal",
  61355. height: math.unit(7 + 4/12, "feet"),
  61356. default: true
  61357. },
  61358. ]
  61359. ))
  61360. characterMakers.push(() => makeCharacter(
  61361. { name: "Crocozilla", species: ["crocodile"], tags: ["anthro"] },
  61362. {
  61363. front: {
  61364. height: math.unit(4, "meters"),
  61365. name: "Front",
  61366. image: {
  61367. source: "./media/characters/crocozilla/front.svg",
  61368. extra: 1790/1742,
  61369. bottom: 78/1868
  61370. }
  61371. },
  61372. },
  61373. [
  61374. {
  61375. name: "Normal",
  61376. height: math.unit(4, "meters"),
  61377. default: true
  61378. },
  61379. ]
  61380. ))
  61381. characterMakers.push(() => makeCharacter(
  61382. { name: "Kurz", species: ["alurean", "deity"], tags: ["anthro"] },
  61383. {
  61384. front: {
  61385. height: math.unit(1.8, "meters"),
  61386. weight: math.unit(120, "kg"),
  61387. name: "Front",
  61388. image: {
  61389. source: "./media/characters/kurz/front.svg",
  61390. extra: 1960/1824,
  61391. bottom: 41/2001
  61392. }
  61393. },
  61394. back: {
  61395. height: math.unit(1.8, "meters"),
  61396. weight: math.unit(120, "kg"),
  61397. name: "Back",
  61398. image: {
  61399. source: "./media/characters/kurz/back.svg",
  61400. extra: 1906/1787,
  61401. bottom: 60/1966
  61402. }
  61403. },
  61404. frontLewd: {
  61405. height: math.unit(1.8, "meters"),
  61406. weight: math.unit(120, "kg"),
  61407. name: "Front (Lewd)",
  61408. image: {
  61409. source: "./media/characters/kurz/front-lewd.svg",
  61410. extra: 1960/1824,
  61411. bottom: 41/2001
  61412. }
  61413. },
  61414. maw: {
  61415. height: math.unit(0.69, "meters"),
  61416. name: "Maw",
  61417. image: {
  61418. source: "./media/characters/kurz/maw.svg"
  61419. }
  61420. },
  61421. },
  61422. [
  61423. {
  61424. name: "Original Size",
  61425. height: math.unit(1.8, "meters")
  61426. },
  61427. {
  61428. name: "Incognito Size",
  61429. height: math.unit(2.4, "meters"),
  61430. default: true
  61431. },
  61432. {
  61433. name: "Macro",
  61434. height: math.unit(30, "meters")
  61435. },
  61436. {
  61437. name: "Macro+",
  61438. height: math.unit(250, "meters")
  61439. },
  61440. {
  61441. name: "Mega",
  61442. height: math.unit(2, "km")
  61443. },
  61444. {
  61445. name: "Mega+",
  61446. height: math.unit(35, "km")
  61447. },
  61448. {
  61449. name: "Mega++",
  61450. height: math.unit(75, "km")
  61451. },
  61452. {
  61453. name: "Giga",
  61454. height: math.unit(250, "km")
  61455. },
  61456. {
  61457. name: "Terra",
  61458. height: math.unit(15000, "km")
  61459. },
  61460. {
  61461. name: "Terra+",
  61462. height: math.unit(2250000, "km")
  61463. },
  61464. ]
  61465. ))
  61466. characterMakers.push(() => makeCharacter(
  61467. { name: "Nikita", species: ["werewolf"], tags: ["anthro"] },
  61468. {
  61469. front: {
  61470. height: math.unit(16 + 3/12, "feet"),
  61471. weight: math.unit(3575, "lb"),
  61472. name: "Front",
  61473. image: {
  61474. source: "./media/characters/nikita/front.svg",
  61475. extra: 1064/955,
  61476. bottom: 47/1111
  61477. }
  61478. },
  61479. },
  61480. [
  61481. {
  61482. name: "Normal",
  61483. height: math.unit(16 + 3/12, "feet"),
  61484. default: true
  61485. },
  61486. {
  61487. name: "Big",
  61488. height: math.unit(21, "feet")
  61489. },
  61490. {
  61491. name: "Biggest",
  61492. height: math.unit(50, "feet")
  61493. },
  61494. ]
  61495. ))
  61496. characterMakers.push(() => makeCharacter(
  61497. { name: "Kyara", species: ["wolf"], tags: ["anthro"] },
  61498. {
  61499. front: {
  61500. height: math.unit(1.92, "m"),
  61501. weight: math.unit(76, "kg"),
  61502. name: "Front",
  61503. image: {
  61504. source: "./media/characters/kyara/front.svg",
  61505. extra: 1550/1438,
  61506. bottom: 139/1689
  61507. }
  61508. },
  61509. back: {
  61510. height: math.unit(1.92, "m"),
  61511. weight: math.unit(76, "kg"),
  61512. name: "Back",
  61513. image: {
  61514. source: "./media/characters/kyara/back.svg",
  61515. extra: 1523/1427,
  61516. bottom: 83/1606
  61517. }
  61518. },
  61519. head: {
  61520. height: math.unit(1.22, "feet"),
  61521. name: "Head",
  61522. image: {
  61523. source: "./media/characters/kyara/head.svg"
  61524. }
  61525. },
  61526. maw: {
  61527. height: math.unit(0.73, "feet"),
  61528. name: "Maw",
  61529. image: {
  61530. source: "./media/characters/kyara/maw.svg"
  61531. }
  61532. },
  61533. paws: {
  61534. height: math.unit(0.95, "feet"),
  61535. name: "Paws",
  61536. image: {
  61537. source: "./media/characters/kyara/paws.svg"
  61538. }
  61539. },
  61540. },
  61541. [
  61542. {
  61543. name: "Normal",
  61544. height: math.unit(1.92, "meters"),
  61545. default: true
  61546. },
  61547. {
  61548. name: "Mini Macro",
  61549. height: math.unit(192, "meters")
  61550. },
  61551. {
  61552. name: "Macro",
  61553. height: math.unit(480, "meters")
  61554. },
  61555. {
  61556. name: "Mega Macro",
  61557. height: math.unit(1440, "meters")
  61558. },
  61559. ]
  61560. ))
  61561. characterMakers.push(() => makeCharacter(
  61562. { name: "Layla Amari", species: ["rabbit"], tags: ["anthro"] },
  61563. {
  61564. front: {
  61565. height: math.unit(6, "feet"),
  61566. weight: math.unit(160, "lbs"),
  61567. preyCapacity: math.unit(0.05, "people"),
  61568. name: "Front",
  61569. image: {
  61570. source: "./media/characters/layla-amari/front.svg",
  61571. extra: 1922/1723,
  61572. bottom: 90/2012
  61573. }
  61574. },
  61575. back: {
  61576. height: math.unit(6, "feet"),
  61577. weight: math.unit(160, "lbs"),
  61578. preyCapacity: math.unit(0.05, "people"),
  61579. name: "Back",
  61580. image: {
  61581. source: "./media/characters/layla-amari/back.svg",
  61582. extra: 1917/1718,
  61583. bottom: 50/1967
  61584. }
  61585. },
  61586. frontDressed: {
  61587. height: math.unit(6, "feet"),
  61588. weight: math.unit(160, "lbs"),
  61589. preyCapacity: math.unit(0.05, "people"),
  61590. name: "Front (Dressed)",
  61591. image: {
  61592. source: "./media/characters/layla-amari/front-dressed.svg",
  61593. extra: 1922/1723,
  61594. bottom: 90/2012
  61595. }
  61596. },
  61597. face: {
  61598. height: math.unit(0.93, "feet"),
  61599. name: "Face",
  61600. image: {
  61601. source: "./media/characters/layla-amari/face.svg"
  61602. }
  61603. },
  61604. hand: {
  61605. height: math.unit(0.66 , "feet"),
  61606. name: "Hand",
  61607. image: {
  61608. source: "./media/characters/layla-amari/hand.svg"
  61609. }
  61610. },
  61611. foot: {
  61612. height: math.unit(1, "feet"),
  61613. name: "Foot",
  61614. image: {
  61615. source: "./media/characters/layla-amari/foot.svg"
  61616. }
  61617. },
  61618. necklace: {
  61619. height: math.unit(0.32, "feet"),
  61620. name: "Necklace",
  61621. image: {
  61622. source: "./media/characters/layla-amari/necklace.svg"
  61623. }
  61624. },
  61625. nipple: {
  61626. height: math.unit(0.2, "feet"),
  61627. name: "Nipple",
  61628. image: {
  61629. source: "./media/characters/layla-amari/nipple.svg"
  61630. }
  61631. },
  61632. slit: {
  61633. height: math.unit(0.26, "feet"),
  61634. name: "Slit",
  61635. image: {
  61636. source: "./media/characters/layla-amari/slit.svg"
  61637. }
  61638. },
  61639. },
  61640. [
  61641. {
  61642. name: "Natural",
  61643. height: math.unit(825, "feet"),
  61644. default: true
  61645. },
  61646. {
  61647. name: "Enhanced",
  61648. height: math.unit(8250, "feet")
  61649. },
  61650. {
  61651. name: "Apparent Size",
  61652. height: math.unit(9.04363e+8, "meters")
  61653. },
  61654. ]
  61655. ))
  61656. characterMakers.push(() => makeCharacter(
  61657. { name: "Percy", species: ["magpie", "leopard", "gryphon"], tags: ["anthro"] },
  61658. {
  61659. front: {
  61660. height: math.unit(1.3, "meters"),
  61661. name: "Front",
  61662. image: {
  61663. source: "./media/characters/percy/front.svg",
  61664. extra: 1444/1289,
  61665. bottom: 54/1498
  61666. }
  61667. },
  61668. },
  61669. [
  61670. {
  61671. name: "Normal",
  61672. height: math.unit(1.3, "meters"),
  61673. default: true
  61674. },
  61675. ]
  61676. ))
  61677. characterMakers.push(() => makeCharacter(
  61678. { name: "Grev", species: ["tigrex"], tags: ["feral"] },
  61679. {
  61680. side: {
  61681. height: math.unit(10, "meters"),
  61682. name: "Side",
  61683. image: {
  61684. source: "./media/characters/grev/side.svg",
  61685. extra: 653/266,
  61686. bottom: 77/730
  61687. }
  61688. },
  61689. head: {
  61690. height: math.unit(16.2, "m"),
  61691. name: "Head",
  61692. image: {
  61693. source: "./media/characters/grev/head.svg"
  61694. }
  61695. },
  61696. dick: {
  61697. height: math.unit(2.8135932034, "m"),
  61698. name: "Dick",
  61699. image: {
  61700. source: "./media/characters/grev/dick.svg"
  61701. }
  61702. },
  61703. },
  61704. [
  61705. {
  61706. name: "Friend-Sized",
  61707. height: math.unit(80, "cm")
  61708. },
  61709. {
  61710. name: "Normal",
  61711. height: math.unit(10, "meters"),
  61712. default: true
  61713. },
  61714. {
  61715. name: "Macro",
  61716. height: math.unit(200, "meters")
  61717. },
  61718. ]
  61719. ))
  61720. characterMakers.push(() => makeCharacter(
  61721. { name: "Azuuca", species: ["catfish"], tags: ["anthro"] },
  61722. {
  61723. front: {
  61724. height: math.unit(19.75, "feet"),
  61725. weight: math.unit(20000, "lb"),
  61726. name: "Front",
  61727. image: {
  61728. source: "./media/characters/azuuca/front.svg",
  61729. extra: 1593/1511,
  61730. bottom: 55/1648
  61731. }
  61732. },
  61733. },
  61734. [
  61735. {
  61736. name: "Normal",
  61737. height: math.unit(19.75, "feet"),
  61738. default: true
  61739. },
  61740. ]
  61741. ))
  61742. characterMakers.push(() => makeCharacter(
  61743. { name: "Valuria", species: ["vesempress"], tags: ["anthro"] },
  61744. {
  61745. front: {
  61746. height: math.unit(15, "feet"),
  61747. weight: math.unit(1500, "lb"),
  61748. name: "Front",
  61749. image: {
  61750. source: "./media/characters/valuria/front.svg",
  61751. extra: 1588/1486,
  61752. bottom: 31/1619
  61753. }
  61754. },
  61755. },
  61756. [
  61757. {
  61758. name: "Normal",
  61759. height: math.unit(15, "feet"),
  61760. default: true
  61761. },
  61762. {
  61763. name: "Small",
  61764. height: math.unit(500, "feet")
  61765. },
  61766. {
  61767. name: "Macro",
  61768. height: math.unit(4000, "feet")
  61769. },
  61770. {
  61771. name: "Mega Macro",
  61772. height: math.unit(2000, "miles")
  61773. },
  61774. {
  61775. name: "Giga Macro",
  61776. height: math.unit(3e6, "miles")
  61777. },
  61778. ]
  61779. ))
  61780. characterMakers.push(() => makeCharacter(
  61781. { name: "Terigaia", species: ["gaelterranian"], tags: ["anthro"] },
  61782. {
  61783. front: {
  61784. height: math.unit(3500, "solarradii"),
  61785. name: "Front",
  61786. image: {
  61787. source: "./media/characters/terigaia/front.svg",
  61788. extra: 1531/1451,
  61789. bottom: 98/1629
  61790. }
  61791. },
  61792. },
  61793. [
  61794. {
  61795. name: "Normal",
  61796. height: math.unit(3500, "solarradii"),
  61797. default: true
  61798. },
  61799. ]
  61800. ))
  61801. characterMakers.push(() => makeCharacter(
  61802. { name: "Blair (Blaziken)", species: ["blaziken"], tags: ["anthro"] },
  61803. {
  61804. front: {
  61805. height: math.unit(9.34, "feet"),
  61806. weight: math.unit(600, "lb"),
  61807. name: "Front",
  61808. image: {
  61809. source: "./media/characters/blair-blaziken/front.svg",
  61810. extra: 1557/1462,
  61811. bottom: 55/1612
  61812. }
  61813. },
  61814. },
  61815. [
  61816. {
  61817. name: "Normal",
  61818. height: math.unit(9.34, "feet"),
  61819. default: true
  61820. },
  61821. ]
  61822. ))
  61823. characterMakers.push(() => makeCharacter(
  61824. { name: "Braxia", species: ["pistrogre", "human"], tags: ["anthro"] },
  61825. {
  61826. pistrogre_front: {
  61827. height: math.unit(10, "feet"),
  61828. weight: math.unit(10, "tons"),
  61829. name: "Front",
  61830. image: {
  61831. source: "./media/characters/braxia/pistrogre-front.svg",
  61832. extra: 1531/1334,
  61833. bottom: 114/1645
  61834. },
  61835. form: "pistrogre",
  61836. default: true
  61837. },
  61838. human_front: {
  61839. height: math.unit(10, "feet"),
  61840. weight: math.unit(10, "tons"),
  61841. name: "Front",
  61842. image: {
  61843. source: "./media/characters/braxia/human-front.svg",
  61844. extra: 1574/1501,
  61845. bottom: 37/1611
  61846. },
  61847. form: "human",
  61848. default: true
  61849. },
  61850. },
  61851. [
  61852. {
  61853. name: "Normal",
  61854. height: math.unit(10, "feet"),
  61855. default: true,
  61856. allForms: true
  61857. },
  61858. {
  61859. name: "Macro",
  61860. height: math.unit(1000, "feet"),
  61861. allForms: true
  61862. },
  61863. {
  61864. name: "Mega Macro",
  61865. height: math.unit(100, "miles"),
  61866. allForms: true
  61867. },
  61868. {
  61869. name: "Cosmic",
  61870. height: math.unit(1000000, "lightyears"),
  61871. allForms: true
  61872. },
  61873. {
  61874. name: "ϐѮԆԬӁꭍϞԢ",
  61875. height: math.unit(1000, "multiverses"),
  61876. allForms: true
  61877. },
  61878. ],
  61879. {
  61880. "pistrogre": {
  61881. name: "Pistrogre",
  61882. default: true
  61883. },
  61884. "human": {
  61885. name: "Human",
  61886. },
  61887. }
  61888. ))
  61889. characterMakers.push(() => makeCharacter(
  61890. { name: "Kiriga Yato", species: ["zorgoia"], tags: ["anthro"] },
  61891. {
  61892. front: {
  61893. height: math.unit(6 + 1/12, "feet"),
  61894. weight: math.unit(280, "lb"),
  61895. name: "Front",
  61896. image: {
  61897. source: "./media/characters/kiriga-yato/front.svg",
  61898. extra: 445/394,
  61899. bottom: 11/456
  61900. }
  61901. },
  61902. },
  61903. [
  61904. {
  61905. name: "Descended",
  61906. height: math.unit(3, "feet")
  61907. },
  61908. {
  61909. name: "Average",
  61910. height: math.unit(6 + 1/12, "feet"),
  61911. default: true
  61912. },
  61913. {
  61914. name: "Ascended",
  61915. height: math.unit(9 + 2/12, "feet")
  61916. },
  61917. ]
  61918. ))
  61919. characterMakers.push(() => makeCharacter(
  61920. { name: "Kylie", species: ["giraffe"], tags: ["anthro"] },
  61921. {
  61922. front: {
  61923. height: math.unit(6, "feet"),
  61924. weight: math.unit(150, "lb"),
  61925. name: "Front",
  61926. image: {
  61927. source: "./media/characters/kylie/front.svg",
  61928. extra: 1114/1046,
  61929. bottom: 65/1179
  61930. },
  61931. extraAttributes: {
  61932. "hoofSize": {
  61933. name: "Hoof Size",
  61934. power: 2,
  61935. type: "area",
  61936. base: math.unit(0.034, "m^2")
  61937. },
  61938. "footSize": {
  61939. name: "Foot Size",
  61940. power: 2,
  61941. type: "area",
  61942. base: math.unit(0.75, "m^2")
  61943. },
  61944. }
  61945. },
  61946. side: {
  61947. height: math.unit(6, "feet"),
  61948. weight: math.unit(150, "lb"),
  61949. name: "Side",
  61950. image: {
  61951. source: "./media/characters/kylie/side.svg",
  61952. extra: 1178/1110,
  61953. bottom: 21/1199
  61954. },
  61955. extraAttributes: {
  61956. "hoofSize": {
  61957. name: "Hoof Size",
  61958. power: 2,
  61959. type: "area",
  61960. base: math.unit(0.034, "m^2")
  61961. },
  61962. "footSize": {
  61963. name: "Foot Size",
  61964. power: 2,
  61965. type: "area",
  61966. base: math.unit(0.75, "m^2")
  61967. },
  61968. }
  61969. },
  61970. back: {
  61971. height: math.unit(6, "feet"),
  61972. weight: math.unit(150, "lb"),
  61973. name: "Back",
  61974. image: {
  61975. source: "./media/characters/kylie/back.svg",
  61976. extra: 1115/1047,
  61977. bottom: 66/1181
  61978. },
  61979. extraAttributes: {
  61980. "hoofSize": {
  61981. name: "Hoof Size",
  61982. power: 2,
  61983. type: "area",
  61984. base: math.unit(0.034, "m^2")
  61985. },
  61986. "footSize": {
  61987. name: "Foot Size",
  61988. power: 2,
  61989. type: "area",
  61990. base: math.unit(0.75, "m^2")
  61991. },
  61992. }
  61993. },
  61994. head: {
  61995. height: math.unit(1.85, "feet"),
  61996. name: "Head",
  61997. image: {
  61998. source: "./media/characters/kylie/head.svg"
  61999. }
  62000. },
  62001. },
  62002. [
  62003. {
  62004. name: "Normal",
  62005. height: math.unit(90, "meters"),
  62006. default: true
  62007. },
  62008. ]
  62009. ))
  62010. characterMakers.push(() => makeCharacter(
  62011. { name: "Sabado", species: ["suicune"], tags: ["anthro"] },
  62012. {
  62013. front: {
  62014. height: math.unit(245, "feet"),
  62015. weight: math.unit(400000, "lb"),
  62016. name: "Front",
  62017. image: {
  62018. source: "./media/characters/sabado/front.svg",
  62019. extra: 1309/1164,
  62020. bottom: 29/1338
  62021. }
  62022. },
  62023. },
  62024. [
  62025. {
  62026. name: "Normal",
  62027. height: math.unit(245, "feet"),
  62028. default: true
  62029. },
  62030. ]
  62031. ))
  62032. characterMakers.push(() => makeCharacter(
  62033. { name: "Zechal", species: ["shark", "dragon", "deity"], tags: ["anthro"] },
  62034. {
  62035. shark_front: {
  62036. height: math.unit(2, "meters"),
  62037. weight: math.unit(200, "kg"),
  62038. name: "Front",
  62039. image: {
  62040. source: "./media/characters/zechal/shark-front.svg",
  62041. extra: 969/925,
  62042. bottom: 74/1043
  62043. },
  62044. form: "shark",
  62045. },
  62046. shark_back: {
  62047. height: math.unit(2, "meters"),
  62048. weight: math.unit(200, "kg"),
  62049. name: "Back",
  62050. image: {
  62051. source: "./media/characters/zechal/shark-back.svg",
  62052. extra: 994/949,
  62053. bottom: 176/1170
  62054. },
  62055. form: "shark",
  62056. },
  62057. shark_frontLewd: {
  62058. height: math.unit(2, "meters"),
  62059. weight: math.unit(200, "kg"),
  62060. name: "Front (Lewd)",
  62061. image: {
  62062. source: "./media/characters/zechal/shark-front-lewd.svg",
  62063. extra: 969/925,
  62064. bottom: 74/1043
  62065. },
  62066. form: "shark",
  62067. },
  62068. shark_side: {
  62069. height: math.unit(1.56, "meters"),
  62070. weight: math.unit(200, "kg"),
  62071. name: "Side",
  62072. image: {
  62073. source: "./media/characters/zechal/shark-side.svg"
  62074. },
  62075. form: "shark",
  62076. },
  62077. dragon_front: {
  62078. height: math.unit(2, "meters"),
  62079. weight: math.unit(200, "kg"),
  62080. name: "Front",
  62081. image: {
  62082. source: "./media/characters/zechal/dragon-front.svg",
  62083. extra: 1041/925,
  62084. bottom: 74/1115
  62085. },
  62086. form: "dragon",
  62087. },
  62088. dragon_back: {
  62089. height: math.unit(2, "meters"),
  62090. weight: math.unit(200, "kg"),
  62091. name: "Back",
  62092. image: {
  62093. source: "./media/characters/zechal/dragon-back.svg",
  62094. extra: 1061/949,
  62095. bottom: 176/1237
  62096. },
  62097. form: "dragon",
  62098. },
  62099. dragon_frontLewd: {
  62100. height: math.unit(2, "meters"),
  62101. weight: math.unit(200, "kg"),
  62102. name: "Front (Lewd)",
  62103. image: {
  62104. source: "./media/characters/zechal/dragon-front-lewd.svg",
  62105. extra: 1041/925,
  62106. bottom: 74/1115
  62107. },
  62108. form: "dragon",
  62109. },
  62110. dragon_side: {
  62111. height: math.unit(1.56, "meters"),
  62112. weight: math.unit(200, "kg"),
  62113. name: "Side",
  62114. image: {
  62115. source: "./media/characters/zechal/dragon-side.svg"
  62116. },
  62117. form: "dragon",
  62118. },
  62119. foot: {
  62120. height: math.unit(0.5, "meters"),
  62121. name: "Foot",
  62122. image: {
  62123. source: "./media/characters/zechal/foot.svg"
  62124. }
  62125. },
  62126. sheathFront: {
  62127. height: math.unit(0.45, "meters"),
  62128. name: "Sheath (Front)",
  62129. image: {
  62130. source: "./media/characters/zechal/sheath-front.svg"
  62131. }
  62132. },
  62133. sheathSide: {
  62134. height: math.unit(0.45, "meters"),
  62135. name: "Sheath (Side)",
  62136. image: {
  62137. source: "./media/characters/zechal/sheath-side.svg"
  62138. }
  62139. },
  62140. },
  62141. [
  62142. {
  62143. name: "Incognito",
  62144. height: math.unit(2, "meters"),
  62145. allForms: true
  62146. },
  62147. {
  62148. name: "Small Rampage",
  62149. height: math.unit(25, "meters"),
  62150. allForms: true
  62151. },
  62152. {
  62153. name: "Home Size",
  62154. height: math.unit(250, "meters"),
  62155. allForms: true,
  62156. default: true
  62157. },
  62158. {
  62159. name: "Macro+",
  62160. height: math.unit(700, "meters"),
  62161. allForms: true
  62162. },
  62163. {
  62164. name: "Small Mega",
  62165. height: math.unit(3, "km"),
  62166. allForms: true
  62167. },
  62168. {
  62169. name: "Mega",
  62170. height: math.unit(15, "km"),
  62171. allForms: true
  62172. },
  62173. {
  62174. name: "Giga",
  62175. height: math.unit(300, "km"),
  62176. allForms: true
  62177. },
  62178. {
  62179. name: "Giga+",
  62180. height: math.unit(1750, "km"),
  62181. allForms: true
  62182. },
  62183. {
  62184. name: "Continental",
  62185. height: math.unit(5000, "km"),
  62186. allForms: true
  62187. },
  62188. {
  62189. name: "Terra",
  62190. height: math.unit(20000, "km"),
  62191. allForms: true
  62192. },
  62193. {
  62194. name: "Terra+",
  62195. height: math.unit(300000, "km"),
  62196. allForms: true
  62197. },
  62198. {
  62199. name: "Solar",
  62200. height: math.unit(40000000, "km"),
  62201. allForms: true
  62202. },
  62203. {
  62204. name: "Galactic",
  62205. height: math.unit(810133, "parsecs"),
  62206. allForms: true
  62207. },
  62208. {
  62209. name: "Universal",
  62210. height: math.unit(25, "universes"),
  62211. allForms: true
  62212. },
  62213. ],
  62214. {
  62215. "shark": {
  62216. name: "Shark",
  62217. default: true
  62218. },
  62219. "dragon": {
  62220. name: "Dragon",
  62221. },
  62222. }
  62223. ))
  62224. characterMakers.push(() => makeCharacter(
  62225. { name: "Sergis", species: ["komodo-dragon", "deity"], tags: ["anthro"] },
  62226. {
  62227. front: {
  62228. height: math.unit(2.2, "meters"),
  62229. weight: math.unit(150, "kg"),
  62230. name: "Front",
  62231. image: {
  62232. source: "./media/characters/sergis/front.svg",
  62233. extra: 1314/1312,
  62234. bottom: 112/1426
  62235. }
  62236. },
  62237. back: {
  62238. height: math.unit(2.2, "meters"),
  62239. weight: math.unit(150, "kg"),
  62240. name: "Back",
  62241. image: {
  62242. source: "./media/characters/sergis/back.svg",
  62243. extra: 1335/1333,
  62244. bottom: 19/1354
  62245. }
  62246. },
  62247. frontLewd: {
  62248. height: math.unit(2.2, "meters"),
  62249. weight: math.unit(150, "kg"),
  62250. name: "Front (Lewd)",
  62251. image: {
  62252. source: "./media/characters/sergis/front-lewd.svg",
  62253. extra: 1314/1312,
  62254. bottom: 112/1426
  62255. }
  62256. },
  62257. frontDressed: {
  62258. height: math.unit(2.2, "meters"),
  62259. weight: math.unit(150, "kg"),
  62260. name: "Front (Dressed)",
  62261. image: {
  62262. source: "./media/characters/sergis/front-dressed.svg",
  62263. extra: 1330/1328,
  62264. bottom: 95/1425
  62265. }
  62266. },
  62267. frontDressedLewd: {
  62268. height: math.unit(2.2, "meters"),
  62269. weight: math.unit(150, "kg"),
  62270. name: "Front (Dressed, Lewd)",
  62271. image: {
  62272. source: "./media/characters/sergis/front-dressed-lewd.svg",
  62273. extra: 1330/1328,
  62274. bottom: 95/1425
  62275. }
  62276. },
  62277. maw: {
  62278. height: math.unit(0.48, "meters"),
  62279. name: "Maw",
  62280. image: {
  62281. source: "./media/characters/sergis/maw.svg"
  62282. }
  62283. },
  62284. sheath: {
  62285. height: math.unit(0.38, "meters"),
  62286. name: "Sheath",
  62287. image: {
  62288. source: "./media/characters/sergis/sheath.svg"
  62289. }
  62290. },
  62291. },
  62292. [
  62293. {
  62294. name: "Incognito Size",
  62295. height: math.unit(2.2, "meters")
  62296. },
  62297. {
  62298. name: "Small Macro",
  62299. height: math.unit(40, "meters")
  62300. },
  62301. {
  62302. name: "Macro",
  62303. height: math.unit(150, "meters")
  62304. },
  62305. {
  62306. name: "Macro+",
  62307. height: math.unit(300, "meters")
  62308. },
  62309. {
  62310. name: "Mega",
  62311. height: math.unit(2.5, "km")
  62312. },
  62313. {
  62314. name: "Mega+",
  62315. height: math.unit(30, "km")
  62316. },
  62317. {
  62318. name: "Home Size",
  62319. height: math.unit(300, "km"),
  62320. default: true
  62321. },
  62322. {
  62323. name: "Giga+",
  62324. height: math.unit(1000, "km")
  62325. },
  62326. {
  62327. name: "Giga++",
  62328. height: math.unit(6000, "km")
  62329. },
  62330. {
  62331. name: "Terra",
  62332. height: math.unit(70000, "km")
  62333. },
  62334. {
  62335. name: "Terra+",
  62336. height: math.unit(200000, "km")
  62337. },
  62338. {
  62339. name: "Galactic",
  62340. height: math.unit(634200, "lightyears")
  62341. },
  62342. ]
  62343. ))
  62344. characterMakers.push(() => makeCharacter(
  62345. { name: "Spade", species: ["demon", "mouse"], tags: ["anthro"] },
  62346. {
  62347. standard: {
  62348. height: math.unit(1 + 5/12, "feet"),
  62349. name: "Standard",
  62350. image: {
  62351. source: "./media/characters/spade/standard.svg",
  62352. extra: 1794/1703,
  62353. bottom: 115/1909
  62354. }
  62355. },
  62356. disguised: {
  62357. height: math.unit(1 + 5/12, "feet"),
  62358. name: "Disguised",
  62359. image: {
  62360. source: "./media/characters/spade/disguised.svg",
  62361. extra: 1794/1700,
  62362. bottom: 98/1892
  62363. }
  62364. },
  62365. },
  62366. [
  62367. {
  62368. name: "Normal",
  62369. height: math.unit(1 + 5/12, "feet"),
  62370. default: true
  62371. },
  62372. ]
  62373. ))
  62374. characterMakers.push(() => makeCharacter(
  62375. { name: "Zeanlain", species: ["harpy-eagle"], tags: ["anthro"] },
  62376. {
  62377. frontNsfw: {
  62378. height: math.unit(5, "meters"),
  62379. weight: math.unit(2000, "kg"),
  62380. preyCapacity: math.unit(5, "people"),
  62381. name: "Front (NSFW)",
  62382. image: {
  62383. source: "./media/characters/zeanlain/front-nsfw.svg",
  62384. extra: 1087/938,
  62385. bottom: 93/1180
  62386. },
  62387. extraAttributes: {
  62388. "wingspan": {
  62389. name: "Wingspan",
  62390. power: 1,
  62391. type: "length",
  62392. base: math.unit(10, "meters")
  62393. },
  62394. "footSize": {
  62395. name: "Foot Size",
  62396. power: 1,
  62397. type: "length",
  62398. base: math.unit(0.68, "meters")
  62399. },
  62400. "cockLength": {
  62401. name: "Cock Length",
  62402. power: 1,
  62403. type: "length",
  62404. base: math.unit(1.69, "meters")
  62405. },
  62406. "ballVolume": {
  62407. name: "Ball Volume",
  62408. power: 3,
  62409. type: "volume",
  62410. base: math.unit(0.028, "m^3")
  62411. },
  62412. }
  62413. },
  62414. front: {
  62415. height: math.unit(5, "meters"),
  62416. weight: math.unit(2000, "kg"),
  62417. preyCapacity: math.unit(3, "people"),
  62418. name: "Front",
  62419. image: {
  62420. source: "./media/characters/zeanlain/front.svg",
  62421. extra: 1087/938,
  62422. bottom: 93/1180
  62423. },
  62424. extraAttributes: {
  62425. "wingspan": {
  62426. name: "Wingspan",
  62427. power: 1,
  62428. type: "length",
  62429. base: math.unit(10, "meters")
  62430. },
  62431. "footSize": {
  62432. name: "Foot Size",
  62433. power: 1,
  62434. type: "length",
  62435. base: math.unit(0.68, "meters")
  62436. },
  62437. }
  62438. },
  62439. },
  62440. [
  62441. {
  62442. name: "Normal",
  62443. height: math.unit(5, "meters"),
  62444. default: true
  62445. },
  62446. ]
  62447. ))
  62448. characterMakers.push(() => makeCharacter(
  62449. { name: "Airamis", species: ["aeromorph", "dragon"], tags: ["anthro"] },
  62450. {
  62451. front: {
  62452. height: math.unit(10, "meters"),
  62453. weight: math.unit(250000, "kg"),
  62454. name: "Front",
  62455. image: {
  62456. source: "./media/characters/airamis/front.svg",
  62457. extra: 865/835,
  62458. bottom: 13/878
  62459. }
  62460. },
  62461. },
  62462. [
  62463. {
  62464. name: "Normal",
  62465. height: math.unit(10, "meters"),
  62466. default: true
  62467. },
  62468. ]
  62469. ))
  62470. characterMakers.push(() => makeCharacter(
  62471. { name: "Corra Tourmaline", species: ["vaporeon"], tags: ["anthro"] },
  62472. {
  62473. front: {
  62474. height: math.unit(3 + 3/12, "feet"),
  62475. weight: math.unit(75, "lb"),
  62476. name: "Front",
  62477. image: {
  62478. source: "./media/characters/corra-tourmaline/front.svg",
  62479. extra: 1037/864,
  62480. bottom: 39/1076
  62481. }
  62482. },
  62483. back: {
  62484. height: math.unit(3 + 3/12, "feet"),
  62485. weight: math.unit(75, "lb"),
  62486. name: "Back",
  62487. image: {
  62488. source: "./media/characters/corra-tourmaline/back.svg",
  62489. extra: 1022/849,
  62490. bottom: 26/1048
  62491. }
  62492. },
  62493. dressed: {
  62494. height: math.unit(3 + 3/12, "feet"),
  62495. weight: math.unit(75, "lb"),
  62496. name: "Dressed",
  62497. image: {
  62498. source: "./media/characters/corra-tourmaline/dressed.svg",
  62499. extra: 1037/864,
  62500. bottom: 39/1076
  62501. }
  62502. },
  62503. beans: {
  62504. height: math.unit(0.37, "feet"),
  62505. name: "Beans",
  62506. image: {
  62507. source: "./media/characters/corra-tourmaline/beans.svg"
  62508. }
  62509. },
  62510. },
  62511. [
  62512. {
  62513. name: "Normal",
  62514. height: math.unit(3 + 3/12, "feet"),
  62515. default: true
  62516. },
  62517. {
  62518. name: "Macro",
  62519. height: math.unit(32, "feet")
  62520. },
  62521. ]
  62522. ))
  62523. characterMakers.push(() => makeCharacter(
  62524. { name: "Maki Kawa", species: ["sabertooth-tiger", "serval"], tags: ["anthro"] },
  62525. {
  62526. front: {
  62527. height: math.unit(6 + 2/12, "feet"),
  62528. weight: math.unit(203, "lb"),
  62529. name: "Front",
  62530. image: {
  62531. source: "./media/characters/maki-kawa/front.svg",
  62532. extra: 950/890,
  62533. bottom: 62/1012
  62534. }
  62535. },
  62536. back: {
  62537. height: math.unit(6 + 2/12, "feet"),
  62538. weight: math.unit(203, "lb"),
  62539. name: "Back",
  62540. image: {
  62541. source: "./media/characters/maki-kawa/back.svg",
  62542. extra: 953/878,
  62543. bottom: 49/1002
  62544. }
  62545. },
  62546. frontBarista: {
  62547. height: math.unit(6 + 2/12, "feet"),
  62548. weight: math.unit(203, "lb"),
  62549. name: "Front (Barista)",
  62550. image: {
  62551. source: "./media/characters/maki-kawa/front-barista.svg",
  62552. extra: 943/883,
  62553. bottom: 69/1012
  62554. }
  62555. },
  62556. backBarista: {
  62557. height: math.unit(6 + 2/12, "feet"),
  62558. weight: math.unit(203, "lb"),
  62559. name: "Back (Barista)",
  62560. image: {
  62561. source: "./media/characters/maki-kawa/back-barista.svg",
  62562. extra: 953/878,
  62563. bottom: 49/1002
  62564. }
  62565. },
  62566. frontWrestler: {
  62567. height: math.unit(6 + 2/12, "feet"),
  62568. weight: math.unit(203, "lb"),
  62569. name: "Front (Wrestler)",
  62570. image: {
  62571. source: "./media/characters/maki-kawa/front-wrestler.svg",
  62572. extra: 950/890,
  62573. bottom: 62/1012
  62574. }
  62575. },
  62576. backWrestler: {
  62577. height: math.unit(6 + 2/12, "feet"),
  62578. weight: math.unit(203, "lb"),
  62579. name: "Back (Wrestler)",
  62580. image: {
  62581. source: "./media/characters/maki-kawa/back-wrestler.svg",
  62582. extra: 953/878,
  62583. bottom: 49/1002
  62584. }
  62585. },
  62586. headFront: {
  62587. height: math.unit(1.64, "feet"),
  62588. name: "Head (Front)",
  62589. image: {
  62590. source: "./media/characters/maki-kawa/head-front.svg"
  62591. }
  62592. },
  62593. headSide: {
  62594. height: math.unit(1.59, "feet"),
  62595. name: "Head (Side)",
  62596. image: {
  62597. source: "./media/characters/maki-kawa/head-side.svg"
  62598. }
  62599. },
  62600. paw: {
  62601. height: math.unit(0.9, "feet"),
  62602. name: "Paw",
  62603. image: {
  62604. source: "./media/characters/maki-kawa/paw.svg"
  62605. }
  62606. },
  62607. },
  62608. [
  62609. {
  62610. name: "Normal",
  62611. height: math.unit(6 + 2/12, "feet"),
  62612. default: true
  62613. },
  62614. {
  62615. name: "Macro",
  62616. height: math.unit(617, "feet")
  62617. },
  62618. ]
  62619. ))
  62620. characterMakers.push(() => makeCharacter(
  62621. { name: "Lennox", species: ["wolf"], tags: ["anthro"] },
  62622. {
  62623. front: {
  62624. height: math.unit(10, "feet"),
  62625. weight: math.unit(1500, "lb"),
  62626. name: "Front",
  62627. image: {
  62628. source: "./media/characters/lennox/front.svg",
  62629. extra: 1623/1496,
  62630. bottom: 18/1641
  62631. }
  62632. },
  62633. back: {
  62634. height: math.unit(10, "feet"),
  62635. weight: math.unit(1500, "lb"),
  62636. name: "Back",
  62637. image: {
  62638. source: "./media/characters/lennox/back.svg",
  62639. extra: 1641/1481,
  62640. bottom: 13/1654
  62641. }
  62642. },
  62643. maw: {
  62644. height: math.unit(2.94, "feet"),
  62645. name: "Maw",
  62646. image: {
  62647. source: "./media/characters/lennox/maw.svg"
  62648. }
  62649. },
  62650. },
  62651. [
  62652. {
  62653. name: "Micro",
  62654. height: math.unit(1, "inch")
  62655. },
  62656. {
  62657. name: "Normal",
  62658. height: math.unit(10, "feet"),
  62659. default: true
  62660. },
  62661. {
  62662. name: "Macro",
  62663. height: math.unit(200, "feet")
  62664. },
  62665. ]
  62666. ))
  62667. characterMakers.push(() => makeCharacter(
  62668. { name: "Vyse Iron-Thunder", species: ["luxray", "shiny"], tags: ["anthro"] },
  62669. {
  62670. frontDressed: {
  62671. height: math.unit(15 + 7/12, "feet"),
  62672. weight: math.unit(5000, "lb"),
  62673. name: "Front (Dressed)",
  62674. image: {
  62675. source: "./media/characters/vyse-iron-thunder/front-dressed.svg",
  62676. extra: 1136/1023,
  62677. bottom: 51/1187
  62678. }
  62679. },
  62680. backDressed: {
  62681. height: math.unit(15 + 7/12, "feet"),
  62682. weight: math.unit(5000, "lb"),
  62683. name: "Back (Dressed)",
  62684. image: {
  62685. source: "./media/characters/vyse-iron-thunder/back-dressed.svg",
  62686. extra: 2359/2143,
  62687. bottom: 103/2462
  62688. }
  62689. },
  62690. front: {
  62691. height: math.unit(15 + 7/12, "feet"),
  62692. weight: math.unit(5000, "lb"),
  62693. name: "Front",
  62694. image: {
  62695. source: "./media/characters/vyse-iron-thunder/front.svg",
  62696. extra: 1136/1023,
  62697. bottom: 51/1187
  62698. }
  62699. },
  62700. hand: {
  62701. height: math.unit(2.36, "feet"),
  62702. name: "Hand",
  62703. image: {
  62704. source: "./media/characters/vyse-iron-thunder/hand.svg"
  62705. }
  62706. },
  62707. foot: {
  62708. height: math.unit(1.72, "feet"),
  62709. name: "Foot",
  62710. image: {
  62711. source: "./media/characters/vyse-iron-thunder/foot.svg"
  62712. }
  62713. },
  62714. mouth: {
  62715. height: math.unit(2, "feet"),
  62716. name: "Mouth",
  62717. image: {
  62718. source: "./media/characters/vyse-iron-thunder/mouth.svg"
  62719. }
  62720. },
  62721. eye: {
  62722. height: math.unit(0.58, "feet"),
  62723. name: "Eye",
  62724. image: {
  62725. source: "./media/characters/vyse-iron-thunder/eye.svg"
  62726. }
  62727. },
  62728. },
  62729. [
  62730. {
  62731. name: "Normal",
  62732. height: math.unit(15 + 7/12, "feet"),
  62733. default: true
  62734. },
  62735. {
  62736. name: "Macro",
  62737. height: math.unit(157, "feet")
  62738. },
  62739. {
  62740. name: "Macro+",
  62741. height: math.unit(1570, "feet")
  62742. },
  62743. {
  62744. name: "Macro++",
  62745. height: math.unit(15700, "feet")
  62746. },
  62747. {
  62748. name: "Macro+++",
  62749. height: math.unit(157000, "feet")
  62750. },
  62751. {
  62752. name: "Macro++++",
  62753. height: math.unit(1570000, "feet")
  62754. },
  62755. ]
  62756. ))
  62757. characterMakers.push(() => makeCharacter(
  62758. { name: "Moonbeam", species: ["latex", "wolf"], tags: ["feral"] },
  62759. {
  62760. side: {
  62761. height: math.unit(6, "feet"),
  62762. weight: math.unit(115, "lb"),
  62763. name: "Side",
  62764. image: {
  62765. source: "./media/characters/moonbeam/side.svg",
  62766. extra: 839/485,
  62767. bottom: 60/899
  62768. }
  62769. },
  62770. },
  62771. [
  62772. {
  62773. name: "Normal",
  62774. height: math.unit(6, "feet"),
  62775. default: true
  62776. },
  62777. ]
  62778. ))
  62779. characterMakers.push(() => makeCharacter(
  62780. { name: "Baltica", species: ["orca"], tags: ["anthro"] },
  62781. {
  62782. front: {
  62783. height: math.unit(3500, "miles"),
  62784. weight: math.unit(1659, "petatonnes"),
  62785. name: "Front",
  62786. image: {
  62787. source: "./media/characters/baltica/front.svg",
  62788. extra: 429/428,
  62789. bottom: 41/470
  62790. }
  62791. },
  62792. back: {
  62793. height: math.unit(3500, "miles"),
  62794. weight: math.unit(1659, "petatonnes"),
  62795. name: "Back",
  62796. image: {
  62797. source: "./media/characters/baltica/back.svg",
  62798. extra: 452/451,
  62799. bottom: 8/460
  62800. }
  62801. },
  62802. },
  62803. [
  62804. {
  62805. name: "Gigamacro",
  62806. height: math.unit(3500, "miles"),
  62807. default: true
  62808. },
  62809. ]
  62810. ))
  62811. characterMakers.push(() => makeCharacter(
  62812. { name: "Shadow (Wolf)", species: ["wolf", "demi"], tags: ["anthro"] },
  62813. {
  62814. front: {
  62815. height: math.unit(6 + 10/12, "feet"),
  62816. weight: math.unit(200, "lb"),
  62817. name: "Front",
  62818. image: {
  62819. source: "./media/characters/shadow-wolf/front.svg",
  62820. extra: 1931/1760,
  62821. bottom: 88/2019
  62822. }
  62823. },
  62824. },
  62825. [
  62826. {
  62827. name: "Normal",
  62828. height: math.unit(6 + 10/12, "feet"),
  62829. default: true
  62830. },
  62831. ]
  62832. ))
  62833. characterMakers.push(() => makeCharacter(
  62834. { name: "Quincy (Praying Mantis)", species: ["praying-mantis"], tags: ["anthro"] },
  62835. {
  62836. front: {
  62837. height: math.unit(5 + 10/12, "feet"),
  62838. name: "Front",
  62839. image: {
  62840. source: "./media/characters/quincy-praying-mantis/front.svg",
  62841. extra: 1055/891,
  62842. bottom: 92/1147
  62843. }
  62844. },
  62845. soles: {
  62846. height: math.unit(0.85, "feet"),
  62847. name: "Soles",
  62848. image: {
  62849. source: "./media/characters/quincy-praying-mantis/soles.svg",
  62850. extra: 429/324,
  62851. bottom: 89/518
  62852. },
  62853. extraAttributes: {
  62854. "shoeSize": {
  62855. name: "Shoe Size",
  62856. power: 1,
  62857. type: "length",
  62858. base: math.unit(23, "ShoeSizeMensUS"),
  62859. defaultUnit: "ShoeSizeMensUS"
  62860. },
  62861. }
  62862. },
  62863. foot: {
  62864. height: math.unit(0.72, "feet"),
  62865. name: "Foot",
  62866. image: {
  62867. source: "./media/characters/quincy-praying-mantis/foot.svg",
  62868. extra: 349/349,
  62869. bottom: 76/425
  62870. }
  62871. },
  62872. },
  62873. [
  62874. {
  62875. name: "Normal",
  62876. height: math.unit(5 + 10/12, "feet"),
  62877. default: true
  62878. },
  62879. ]
  62880. ))
  62881. characterMakers.push(() => makeCharacter(
  62882. { name: "Christopher Redwood", species: ["gray-wolf"], tags: ["anthro"] },
  62883. {
  62884. front: {
  62885. height: math.unit(6, "feet"),
  62886. name: "Front",
  62887. image: {
  62888. source: "./media/characters/christopher-redwood/front.svg",
  62889. extra: 1402/1341,
  62890. bottom: 23/1425
  62891. }
  62892. },
  62893. back: {
  62894. height: math.unit(6, "feet"),
  62895. name: "Back",
  62896. image: {
  62897. source: "./media/characters/christopher-redwood/back.svg",
  62898. extra: 1406/1345,
  62899. bottom: 36/1442
  62900. }
  62901. },
  62902. head: {
  62903. height: math.unit(1.685, "feet"),
  62904. name: "Head",
  62905. image: {
  62906. source: "./media/characters/christopher-redwood/head.svg"
  62907. }
  62908. },
  62909. },
  62910. [
  62911. {
  62912. name: "Normal",
  62913. height: math.unit(6, "feet"),
  62914. default: true
  62915. },
  62916. ]
  62917. ))
  62918. characterMakers.push(() => makeCharacter(
  62919. { name: "Kara (Fox)", species: ["fox"], tags: ["anthro"] },
  62920. {
  62921. front: {
  62922. height: math.unit(1.9, "meters"),
  62923. weight: math.unit(140, "lb"),
  62924. name: "Front",
  62925. image: {
  62926. source: "./media/characters/kara-fox/front.svg",
  62927. extra: 766/711,
  62928. bottom: 41/807
  62929. }
  62930. },
  62931. back: {
  62932. height: math.unit(1.9, "meters"),
  62933. weight: math.unit(140, "lb"),
  62934. name: "Back",
  62935. image: {
  62936. source: "./media/characters/kara-fox/back.svg",
  62937. extra: 766/596,
  62938. bottom: 29/795
  62939. }
  62940. },
  62941. maw: {
  62942. height: math.unit(0.78, "feet"),
  62943. name: "Maw",
  62944. image: {
  62945. source: "./media/characters/kara-fox/maw.svg"
  62946. }
  62947. },
  62948. pawpads: {
  62949. height: math.unit(0.96, "feet"),
  62950. name: "Pawpads",
  62951. image: {
  62952. source: "./media/characters/kara-fox/pawpads.svg"
  62953. }
  62954. },
  62955. },
  62956. [
  62957. {
  62958. name: "Normal",
  62959. height: math.unit(1.9, "meters"),
  62960. default: true
  62961. },
  62962. {
  62963. name: "Giantess",
  62964. height: math.unit(80, "meters")
  62965. },
  62966. ]
  62967. ))
  62968. characterMakers.push(() => makeCharacter(
  62969. { name: "Naomi (Espeon)", species: ["espeon"], tags: ["anthro"] },
  62970. {
  62971. front: {
  62972. height: math.unit(12, "feet"),
  62973. name: "Front",
  62974. image: {
  62975. source: "./media/characters/naomi-espeon/front.svg",
  62976. extra: 892/797,
  62977. bottom: 5/897
  62978. }
  62979. },
  62980. back: {
  62981. height: math.unit(12, "feet"),
  62982. name: "Back",
  62983. image: {
  62984. source: "./media/characters/naomi-espeon/back.svg",
  62985. extra: 890/785,
  62986. bottom: 12/902
  62987. }
  62988. },
  62989. },
  62990. [
  62991. {
  62992. name: "Normal",
  62993. height: math.unit(12, "feet"),
  62994. default: true
  62995. },
  62996. ]
  62997. ))
  62998. characterMakers.push(() => makeCharacter(
  62999. { name: "Asher Heulfyrn", species: ["skullwolf"], tags: ["anthro", "taur"] },
  63000. {
  63001. anthro_front: {
  63002. height: math.unit(8, "feet"),
  63003. weight: math.unit(625, "lb"),
  63004. name: "Front",
  63005. image: {
  63006. source: "./media/characters/asher-heulfyrn/anthro-front.svg",
  63007. extra: 638/574,
  63008. bottom: 73/711
  63009. },
  63010. form: "anthro",
  63011. default: true
  63012. },
  63013. anthro_back: {
  63014. height: math.unit(8, "feet"),
  63015. weight: math.unit(625, "lb"),
  63016. name: "Back",
  63017. image: {
  63018. source: "./media/characters/asher-heulfyrn/anthro-back.svg",
  63019. extra: 674/614,
  63020. bottom: 7/681
  63021. },
  63022. form: "anthro",
  63023. },
  63024. taur_side: {
  63025. height: math.unit(16, "feet"),
  63026. weight: math.unit(4.5, "tons"),
  63027. name: "Side",
  63028. image: {
  63029. source: "./media/characters/asher-heulfyrn/taur-side.svg",
  63030. extra: 704/646,
  63031. bottom: 132/836
  63032. },
  63033. form: "taur",
  63034. default: true
  63035. },
  63036. },
  63037. [
  63038. {
  63039. name: "Normal",
  63040. height: math.unit(8, "feet"),
  63041. default: true,
  63042. form: "anthro"
  63043. },
  63044. {
  63045. name: "Normal",
  63046. height: math.unit(16, "feet"),
  63047. default: true,
  63048. form: "taur"
  63049. },
  63050. ],
  63051. {
  63052. "anthro": {
  63053. name: "Anthro",
  63054. default: true
  63055. },
  63056. "taur": {
  63057. name: "Taur",
  63058. },
  63059. }
  63060. ))
  63061. characterMakers.push(() => makeCharacter(
  63062. { name: "Amelie", species: ["ferrin"], tags: ["anthro"] },
  63063. {
  63064. front: {
  63065. height: math.unit(190, "cm"),
  63066. weight: math.unit(110, "kg"),
  63067. name: "Front",
  63068. image: {
  63069. source: "./media/characters/amelie/front.svg",
  63070. extra: 530/442,
  63071. bottom: 35/565
  63072. }
  63073. },
  63074. },
  63075. [
  63076. {
  63077. name: "Normal",
  63078. height: math.unit(190, "cm"),
  63079. default: true
  63080. },
  63081. ]
  63082. ))
  63083. characterMakers.push(() => makeCharacter(
  63084. { name: "Valence", species: ["skulldragon"], tags: ["anthro"] },
  63085. {
  63086. front: {
  63087. height: math.unit(21, "feet"),
  63088. weight: math.unit(30000, "lb"),
  63089. name: "Front",
  63090. image: {
  63091. source: "./media/characters/valence/front.svg",
  63092. extra: 1430/1306,
  63093. bottom: 51/1481
  63094. }
  63095. },
  63096. },
  63097. [
  63098. {
  63099. name: "Normal",
  63100. height: math.unit(21, "feet"),
  63101. default: true
  63102. },
  63103. ]
  63104. ))
  63105. characterMakers.push(() => makeCharacter(
  63106. { name: "Aurora Adkins", species: ["rusty-spotted-cat"], tags: ["anthro"] },
  63107. {
  63108. front: {
  63109. height: math.unit(5 + 9/12, "feet"),
  63110. weight: math.unit(170, "lb"),
  63111. name: "Front",
  63112. image: {
  63113. source: "./media/characters/aurora-adkins/front.svg",
  63114. extra: 1141/1089,
  63115. bottom: 41/1182
  63116. }
  63117. },
  63118. },
  63119. [
  63120. {
  63121. name: "Tiny",
  63122. height: math.unit(7, "mm")
  63123. },
  63124. {
  63125. name: "Small",
  63126. height: math.unit(3.4, "inches")
  63127. },
  63128. {
  63129. name: "Normal",
  63130. height: math.unit(5 + 9/12, "feet"),
  63131. default: true
  63132. },
  63133. {
  63134. name: "Big",
  63135. height: math.unit(31, "feet")
  63136. },
  63137. {
  63138. name: "Giant",
  63139. height: math.unit(300, "feet")
  63140. },
  63141. ]
  63142. ))
  63143. characterMakers.push(() => makeCharacter(
  63144. { name: "Cyber", species: ["maned-wolf", "lynx", "deity"], tags: ["anthro"] },
  63145. {
  63146. front: {
  63147. height: math.unit(5 + 6/12, "feet"),
  63148. weight: math.unit(210, "lb"),
  63149. name: "Front",
  63150. image: {
  63151. source: "./media/characters/cyber/front.svg",
  63152. extra: 1968/1798,
  63153. bottom: 10/1978
  63154. },
  63155. extraAttributes: {
  63156. "shoeSize": {
  63157. name: "Shoe Size",
  63158. power: 1,
  63159. type: "length",
  63160. base: math.unit(30, "ShoeSizeMensUS")
  63161. },
  63162. }
  63163. },
  63164. },
  63165. [
  63166. {
  63167. name: "Normal",
  63168. height: math.unit(5 + 6/12, "feet"),
  63169. default: true
  63170. },
  63171. ]
  63172. ))
  63173. characterMakers.push(() => makeCharacter(
  63174. { name: "Sapphire Wairimea", species: ["elf"], tags: ["anthro"] },
  63175. {
  63176. front: {
  63177. height: math.unit(6 + 6/12, "feet"),
  63178. weight: math.unit(140, "lb"),
  63179. name: "Front",
  63180. image: {
  63181. source: "./media/characters/sapphire-wairimea/front.svg",
  63182. extra: 475/458,
  63183. bottom: 14/489
  63184. }
  63185. },
  63186. },
  63187. [
  63188. {
  63189. name: "Normal",
  63190. height: math.unit(6 + 6/12, "feet")
  63191. },
  63192. {
  63193. name: "Macro",
  63194. height: math.unit(132, "feet"),
  63195. default: true
  63196. },
  63197. ]
  63198. ))
  63199. characterMakers.push(() => makeCharacter(
  63200. { name: "Cirkazi", species: ["elf"], tags: ["anthro"] },
  63201. {
  63202. front: {
  63203. height: math.unit(1.6, "meters"),
  63204. weight: math.unit(100, "lb"),
  63205. name: "Front",
  63206. image: {
  63207. source: "./media/characters/cirkazi/front.svg",
  63208. extra: 489/477,
  63209. bottom: 0/489
  63210. }
  63211. },
  63212. },
  63213. [
  63214. {
  63215. name: "Normal",
  63216. height: math.unit(1.6, "meters")
  63217. },
  63218. {
  63219. name: "Macro",
  63220. height: math.unit(800, "feet"),
  63221. default: true
  63222. },
  63223. ]
  63224. ))
  63225. characterMakers.push(() => makeCharacter(
  63226. { name: "Corrin Cavelli", species: ["human"], tags: ["anthro"] },
  63227. {
  63228. front: {
  63229. height: math.unit(5 + 10/12, "feet"),
  63230. weight: math.unit(145, "lb"),
  63231. name: "Front",
  63232. image: {
  63233. source: "./media/characters/corrin-cavelli/front.svg",
  63234. extra: 483/464,
  63235. bottom: 6/489
  63236. }
  63237. },
  63238. },
  63239. [
  63240. {
  63241. name: "Human",
  63242. height: math.unit(5 + 10/12, "feet")
  63243. },
  63244. {
  63245. name: "Giant",
  63246. height: math.unit(210, "feet"),
  63247. default: true
  63248. },
  63249. ]
  63250. ))
  63251. characterMakers.push(() => makeCharacter(
  63252. { name: "Lori Lopez", species: ["human"], tags: ["anthro"] },
  63253. {
  63254. back: {
  63255. height: math.unit(5 + 6/12, "feet"),
  63256. weight: math.unit(115, "lb"),
  63257. name: "Back",
  63258. image: {
  63259. source: "./media/characters/lori-lopez/back.svg",
  63260. extra: 483/474,
  63261. bottom: 6/489
  63262. }
  63263. },
  63264. },
  63265. [
  63266. {
  63267. name: "Human",
  63268. height: math.unit(5 + 6/12, "feet")
  63269. },
  63270. {
  63271. name: "Macro",
  63272. height: math.unit(198, "feet"),
  63273. default: true
  63274. },
  63275. ]
  63276. ))
  63277. characterMakers.push(() => makeCharacter(
  63278. { name: "Sylvia Beauregard", species: ["human"], tags: ["anthro"] },
  63279. {
  63280. front: {
  63281. height: math.unit(6, "feet"),
  63282. weight: math.unit(220, "lb"),
  63283. name: "Front",
  63284. image: {
  63285. source: "./media/characters/sylvia-beauregard/front.svg",
  63286. extra: 483/479,
  63287. bottom: 6/489
  63288. }
  63289. },
  63290. },
  63291. [
  63292. {
  63293. name: "Macro",
  63294. height: math.unit(2071, "feet"),
  63295. default: true
  63296. },
  63297. ]
  63298. ))
  63299. characterMakers.push(() => makeCharacter(
  63300. { name: "Akiko Takahashi", species: ["human"], tags: ["anthro"] },
  63301. {
  63302. back: {
  63303. height: math.unit(5 + 6/12, "feet"),
  63304. weight: math.unit(160, "lb"),
  63305. name: "Back",
  63306. image: {
  63307. source: "./media/characters/akiko-takahashi/back.svg",
  63308. extra: 459/454,
  63309. bottom: 27/486
  63310. }
  63311. },
  63312. },
  63313. [
  63314. {
  63315. name: "Human",
  63316. height: math.unit(5 + 6/12, "feet")
  63317. },
  63318. {
  63319. name: "Macro",
  63320. height: math.unit(198, "feet"),
  63321. default: true
  63322. },
  63323. {
  63324. name: "Megamacro",
  63325. height: math.unit(7128, "feet")
  63326. },
  63327. ]
  63328. ))
  63329. characterMakers.push(() => makeCharacter(
  63330. { name: "Velvet Garza", species: ["human"], tags: ["anthro"] },
  63331. {
  63332. front: {
  63333. height: math.unit(6, "feet"),
  63334. weight: math.unit(140, "lb"),
  63335. name: "Front",
  63336. image: {
  63337. source: "./media/characters/velvet-garza/front.svg",
  63338. extra: 480/462,
  63339. bottom: 7/487
  63340. }
  63341. },
  63342. },
  63343. [
  63344. {
  63345. name: "Macro",
  63346. height: math.unit(37, "feet"),
  63347. default: true
  63348. },
  63349. ]
  63350. ))
  63351. characterMakers.push(() => makeCharacter(
  63352. { name: "Gaia", species: ["deity", "human"], tags: ["anthro"] },
  63353. {
  63354. front: {
  63355. height: math.unit(7 + 6/12, "feet"),
  63356. weight: math.unit(400, "lb"),
  63357. name: "Front",
  63358. image: {
  63359. source: "./media/characters/gaia/front.svg",
  63360. extra: 474/463,
  63361. bottom: 13/487
  63362. }
  63363. },
  63364. },
  63365. [
  63366. {
  63367. name: "MiniMacro",
  63368. height: math.unit(7 + 6/12, "feet")
  63369. },
  63370. {
  63371. name: "GigaMacro",
  63372. height: math.unit(14500, "feet"),
  63373. default: true
  63374. },
  63375. ]
  63376. ))
  63377. characterMakers.push(() => makeCharacter(
  63378. { name: "Tim", species: ["rabbit"], tags: ["anthro"] },
  63379. {
  63380. front: {
  63381. height: math.unit(6, "feet"),
  63382. weight: math.unit(150, "lb"),
  63383. name: "Front",
  63384. image: {
  63385. source: "./media/characters/tim/front.svg",
  63386. extra: 1878/1743,
  63387. bottom: 9/1887
  63388. }
  63389. },
  63390. frontDressed: {
  63391. height: math.unit(6, "feet"),
  63392. weight: math.unit(150, "lb"),
  63393. name: "Front (Dressed)",
  63394. image: {
  63395. source: "./media/characters/tim/front-dressed.svg",
  63396. extra: 1765/1485,
  63397. bottom: 48/1813
  63398. }
  63399. },
  63400. backDressed: {
  63401. height: math.unit(6, "feet"),
  63402. weight: math.unit(150, "lb"),
  63403. name: "Back (Dressed)",
  63404. image: {
  63405. source: "./media/characters/tim/back-dressed.svg",
  63406. extra: 1750/1465,
  63407. bottom: 25/1775
  63408. }
  63409. },
  63410. dick: {
  63411. height: math.unit(1.5, "feet"),
  63412. weight: math.unit(6, "lb"),
  63413. name: "Dick",
  63414. image: {
  63415. source: "./media/characters/tim/dick.svg"
  63416. }
  63417. },
  63418. hand: {
  63419. height: math.unit(0.522, "feet"),
  63420. name: "Hand",
  63421. image: {
  63422. source: "./media/characters/tim/hand.svg"
  63423. }
  63424. },
  63425. palm: {
  63426. height: math.unit(0.48, "feet"),
  63427. name: "Palm",
  63428. image: {
  63429. source: "./media/characters/tim/palm.svg"
  63430. }
  63431. },
  63432. paw: {
  63433. height: math.unit(0.9, "feet"),
  63434. name: "Paw",
  63435. image: {
  63436. source: "./media/characters/tim/paw.svg"
  63437. }
  63438. },
  63439. sole: {
  63440. height: math.unit(0.88, "feet"),
  63441. name: "Sole",
  63442. image: {
  63443. source: "./media/characters/tim/sole.svg"
  63444. }
  63445. },
  63446. },
  63447. [
  63448. {
  63449. name: "Macro",
  63450. height: math.unit(1000, "feet")
  63451. },
  63452. {
  63453. name: "Megamacro",
  63454. height: math.unit(10000, "feet"),
  63455. default: true
  63456. },
  63457. {
  63458. name: "Megamacro+",
  63459. height: math.unit(50000, "feet")
  63460. },
  63461. {
  63462. name: "Gigamacro",
  63463. height: math.unit(150000, "km")
  63464. },
  63465. ]
  63466. ))
  63467. characterMakers.push(() => makeCharacter(
  63468. { name: "Abel Delreoux", species: ["maine-coon"], tags: ["anthro"] },
  63469. {
  63470. front: {
  63471. height: math.unit(5 + 8/12, "feet"),
  63472. weight: math.unit(170, "lb"),
  63473. name: "Front",
  63474. image: {
  63475. source: "./media/characters/abel-delreoux/front.svg",
  63476. extra: 1615/1500,
  63477. bottom: 82/1697
  63478. }
  63479. },
  63480. back: {
  63481. height: math.unit(5 + 8/12, "feet"),
  63482. weight: math.unit(170, "lb"),
  63483. name: "Back",
  63484. image: {
  63485. source: "./media/characters/abel-delreoux/back.svg",
  63486. extra: 1644/1534,
  63487. bottom: 24/1668
  63488. }
  63489. },
  63490. casual: {
  63491. height: math.unit(5 + 8/12, "feet"),
  63492. weight: math.unit(170, "lb"),
  63493. name: "Casual",
  63494. image: {
  63495. source: "./media/characters/abel-delreoux/casual.svg",
  63496. extra: 1716/1598,
  63497. bottom: 29/1745
  63498. }
  63499. },
  63500. sleepy: {
  63501. height: math.unit(5 + 8/12, "feet"),
  63502. weight: math.unit(170, "lb"),
  63503. name: "Sleepy",
  63504. image: {
  63505. source: "./media/characters/abel-delreoux/sleepy.svg",
  63506. extra: 1649/1573,
  63507. bottom: 22/1671
  63508. }
  63509. },
  63510. fem: {
  63511. height: math.unit(5 + 8/12, "feet"),
  63512. weight: math.unit(170, "lb"),
  63513. name: "Fem",
  63514. image: {
  63515. source: "./media/characters/abel-delreoux/fem.svg",
  63516. extra: 1680/1564,
  63517. bottom: 17/1697
  63518. }
  63519. },
  63520. hand: {
  63521. height: math.unit(0.78, "feet"),
  63522. name: "Hand",
  63523. image: {
  63524. source: "./media/characters/abel-delreoux/hand.svg"
  63525. }
  63526. },
  63527. paw: {
  63528. height: math.unit(0.78, "feet"),
  63529. name: "Paw",
  63530. image: {
  63531. source: "./media/characters/abel-delreoux/paw.svg"
  63532. }
  63533. },
  63534. },
  63535. [
  63536. {
  63537. name: "Normal",
  63538. height: math.unit(5 + 8/12, "feet"),
  63539. default: true
  63540. },
  63541. ]
  63542. ))
  63543. characterMakers.push(() => makeCharacter(
  63544. { name: "Meus", species: ["phoenix"], tags: ["anthro"] },
  63545. {
  63546. front: {
  63547. height: math.unit(6, "feet"),
  63548. weight: math.unit(159, "lb"),
  63549. name: "Front",
  63550. image: {
  63551. source: "./media/characters/meus/front.svg",
  63552. extra: 938/843,
  63553. bottom: 37/975
  63554. }
  63555. },
  63556. back: {
  63557. height: math.unit(6, "feet"),
  63558. weight: math.unit(159, "lb"),
  63559. name: "Back",
  63560. image: {
  63561. source: "./media/characters/meus/back.svg",
  63562. extra: 967/873,
  63563. bottom: 12/979
  63564. }
  63565. },
  63566. },
  63567. [
  63568. {
  63569. name: "Micro",
  63570. height: math.unit(2, "inches")
  63571. },
  63572. {
  63573. name: "Mini",
  63574. height: math.unit(6, "inches")
  63575. },
  63576. {
  63577. name: "Normal",
  63578. height: math.unit(6, "feet"),
  63579. default: true
  63580. },
  63581. {
  63582. name: "Macro",
  63583. height: math.unit(84, "feet")
  63584. },
  63585. ]
  63586. ))
  63587. characterMakers.push(() => makeCharacter(
  63588. { name: "Yamato", species: ["kobold"], tags: ["anthro"] },
  63589. {
  63590. front: {
  63591. height: math.unit(60, "cm"),
  63592. weight: math.unit(18, "kg"),
  63593. name: "Front",
  63594. image: {
  63595. source: "./media/characters/yamato/front.svg",
  63596. extra: 733/688,
  63597. bottom: 29/762
  63598. }
  63599. },
  63600. },
  63601. [
  63602. {
  63603. name: "Micro",
  63604. height: math.unit(6, "cm")
  63605. },
  63606. {
  63607. name: "Normal",
  63608. height: math.unit(60, "cm"),
  63609. default: true
  63610. },
  63611. ]
  63612. ))
  63613. characterMakers.push(() => makeCharacter(
  63614. { name: "Barus", species: ["deity"], tags: ["anthro"] },
  63615. {
  63616. front: {
  63617. height: math.unit(9, "feet"),
  63618. weight: math.unit(518, "lb"),
  63619. name: "Front",
  63620. image: {
  63621. source: "./media/characters/barus/front.svg",
  63622. extra: 1877/1795,
  63623. bottom: 55/1932
  63624. }
  63625. },
  63626. },
  63627. [
  63628. {
  63629. name: "Base Height",
  63630. height: math.unit(9, "feet"),
  63631. default: true
  63632. },
  63633. {
  63634. name: "Large",
  63635. height: math.unit(18, "feet")
  63636. },
  63637. {
  63638. name: "Giant",
  63639. height: math.unit(100, "feet")
  63640. },
  63641. {
  63642. name: "Huge",
  63643. height: math.unit(500, "feet")
  63644. },
  63645. {
  63646. name: "Enormous",
  63647. height: math.unit(300, "meters")
  63648. },
  63649. {
  63650. name: "Deity Among Man",
  63651. height: math.unit(3000, "meters")
  63652. },
  63653. ]
  63654. ))
  63655. characterMakers.push(() => makeCharacter(
  63656. { name: "Yari", species: ["sergal"], tags: ["anthro"] },
  63657. {
  63658. front: {
  63659. height: math.unit(1.7, "meters"),
  63660. name: "Front",
  63661. image: {
  63662. source: "./media/characters/yari/front.svg",
  63663. extra: 1210/1125,
  63664. bottom: 283/1493
  63665. }
  63666. },
  63667. back: {
  63668. height: math.unit(1.7, "meters"),
  63669. name: "Back",
  63670. image: {
  63671. source: "./media/characters/yari/back.svg",
  63672. extra: 1240/1195,
  63673. bottom: 180/1420
  63674. }
  63675. },
  63676. head: {
  63677. height: math.unit(1.26, "feet"),
  63678. name: "Head",
  63679. image: {
  63680. source: "./media/characters/yari/head.svg"
  63681. }
  63682. },
  63683. },
  63684. [
  63685. {
  63686. name: "Nano",
  63687. height: math.unit(0.5, "mm")
  63688. },
  63689. {
  63690. name: "Micro",
  63691. height: math.unit(3, "inches")
  63692. },
  63693. {
  63694. name: "Short",
  63695. height: math.unit(1.5, "meters")
  63696. },
  63697. {
  63698. name: "Norm",
  63699. height: math.unit(1.7, "meters"),
  63700. default: true
  63701. },
  63702. ]
  63703. ))
  63704. characterMakers.push(() => makeCharacter(
  63705. { name: "Salem", species: ["mouse"], tags: ["anthro"] },
  63706. {
  63707. front: {
  63708. height: math.unit(5 + 2/12, "feet"),
  63709. weight: math.unit(110, "lb"),
  63710. name: "Front",
  63711. image: {
  63712. source: "./media/characters/salem/front.svg",
  63713. extra: 1895/1800,
  63714. bottom: 23/1918
  63715. }
  63716. },
  63717. back: {
  63718. height: math.unit(5 + 2/12, "feet"),
  63719. weight: math.unit(110, "lb"),
  63720. name: "Back",
  63721. image: {
  63722. source: "./media/characters/salem/back.svg",
  63723. extra: 1875/1802,
  63724. bottom: 20/1895
  63725. }
  63726. },
  63727. head: {
  63728. height: math.unit(1, "feet"),
  63729. name: "Head",
  63730. image: {
  63731. source: "./media/characters/salem/head.svg"
  63732. }
  63733. },
  63734. paw: {
  63735. height: math.unit(0.59, "feet"),
  63736. name: "Paw",
  63737. image: {
  63738. source: "./media/characters/salem/paw.svg"
  63739. }
  63740. },
  63741. beans: {
  63742. height: math.unit(0.66, "feet"),
  63743. name: "Beans",
  63744. image: {
  63745. source: "./media/characters/salem/beans.svg"
  63746. }
  63747. },
  63748. eye: {
  63749. height: math.unit(0.224, "feet"),
  63750. name: "Eye",
  63751. image: {
  63752. source: "./media/characters/salem/eye.svg"
  63753. }
  63754. },
  63755. semiferal: {
  63756. height: math.unit(2.3, "feet"),
  63757. name: "Semiferal",
  63758. image: {
  63759. source: "./media/characters/salem/semiferal.svg",
  63760. extra: 914/839,
  63761. bottom: 32/946
  63762. }
  63763. },
  63764. },
  63765. [
  63766. {
  63767. name: "Micro",
  63768. height: math.unit(4, "inches")
  63769. },
  63770. {
  63771. name: "Normal",
  63772. height: math.unit(5 + 2/12, "feet"),
  63773. default: true
  63774. },
  63775. {
  63776. name: "Macro",
  63777. height: math.unit(108, "feet")
  63778. },
  63779. {
  63780. name: "Macro+",
  63781. height: math.unit(1500, "feet")
  63782. },
  63783. ]
  63784. ))
  63785. characterMakers.push(() => makeCharacter(
  63786. { name: "Kii", species: ["dragon", "dog"], tags: ["anthro"] },
  63787. {
  63788. front: {
  63789. height: math.unit(7 + 6/12, "feet"),
  63790. weight: math.unit(600, "kg"),
  63791. preyCapacity: math.unit(10, "people"),
  63792. name: "Front",
  63793. image: {
  63794. source: "./media/characters/kii/front.svg",
  63795. extra: 3296/3087,
  63796. bottom: 130/3426
  63797. }
  63798. },
  63799. },
  63800. [
  63801. {
  63802. name: "Normal",
  63803. height: math.unit(7 + 6/12, "feet"),
  63804. default: true
  63805. },
  63806. ]
  63807. ))
  63808. characterMakers.push(() => makeCharacter(
  63809. { name: "Taffy", species: ["saltwater-crocodile"], tags: ["anthro"] },
  63810. {
  63811. front: {
  63812. height: math.unit(2, "meters"),
  63813. weight: math.unit(200, "lb"),
  63814. name: "Front",
  63815. image: {
  63816. source: "./media/characters/taffy/front.svg",
  63817. extra: 1666/1618,
  63818. bottom: 157/1823
  63819. }
  63820. },
  63821. back: {
  63822. height: math.unit(2, "meters"),
  63823. weight: math.unit(200, "lb"),
  63824. name: "Back",
  63825. image: {
  63826. source: "./media/characters/taffy/back.svg",
  63827. extra: 1635/1583,
  63828. bottom: 153/1788
  63829. }
  63830. },
  63831. },
  63832. [
  63833. {
  63834. name: "Normal",
  63835. height: math.unit(2, "meters"),
  63836. default: true
  63837. },
  63838. ]
  63839. ))
  63840. characterMakers.push(() => makeCharacter(
  63841. { name: "Barley", species: ["eastern-grey-kangaroo"], tags: ["anthro"] },
  63842. {
  63843. front: {
  63844. height: math.unit(1.55, "meters"),
  63845. weight: math.unit(60, "kg"),
  63846. name: "Front",
  63847. image: {
  63848. source: "./media/characters/barley/front.svg",
  63849. extra: 1520/1340,
  63850. bottom: 47/1567
  63851. }
  63852. },
  63853. back: {
  63854. height: math.unit(1.55, "meters"),
  63855. weight: math.unit(60, "kg"),
  63856. name: "Back",
  63857. image: {
  63858. source: "./media/characters/barley/back.svg",
  63859. extra: 1543/1341,
  63860. bottom: 12/1555
  63861. }
  63862. },
  63863. feet: {
  63864. height: math.unit(2.18, "feet"),
  63865. name: "Feet",
  63866. image: {
  63867. source: "./media/characters/barley/feet.svg"
  63868. }
  63869. },
  63870. },
  63871. [
  63872. {
  63873. name: "Normal",
  63874. height: math.unit(1.55, "meters"),
  63875. default: true
  63876. },
  63877. ]
  63878. ))
  63879. characterMakers.push(() => makeCharacter(
  63880. { name: "Lydia Lopez", species: ["shark"], tags: ["anthro"] },
  63881. {
  63882. dressed: {
  63883. height: math.unit(6, "feet"),
  63884. name: "Dressed",
  63885. image: {
  63886. source: "./media/characters/lydia-lopez/dressed.svg",
  63887. extra: 1319/1277,
  63888. bottom: 90/1409
  63889. }
  63890. },
  63891. nude: {
  63892. height: math.unit(6, "feet"),
  63893. name: "Nude",
  63894. image: {
  63895. source: "./media/characters/lydia-lopez/nude.svg",
  63896. extra: 1319/1277,
  63897. bottom: 90/1409
  63898. }
  63899. },
  63900. },
  63901. [
  63902. {
  63903. name: "Normal",
  63904. height: math.unit(6, "feet"),
  63905. default: true
  63906. },
  63907. {
  63908. name: "Maximum",
  63909. height: math.unit(2101, "feet")
  63910. },
  63911. ]
  63912. ))
  63913. characterMakers.push(() => makeCharacter(
  63914. { name: "Kira (Slime)", species: ["slime"], tags: ["goo"] },
  63915. {
  63916. front: {
  63917. height: math.unit(5 + 4/12, "feet"),
  63918. weight: math.unit(250, "lb"),
  63919. volume: math.unit(20, "gallons"),
  63920. name: "Front",
  63921. image: {
  63922. source: "./media/characters/kira-slime/front.svg",
  63923. extra: 442/403,
  63924. bottom: 18/460
  63925. }
  63926. },
  63927. frontNsfw: {
  63928. height: math.unit(5 + 4/12, "feet"),
  63929. weight: math.unit(250, "lb"),
  63930. volume: math.unit(20, "gallons"),
  63931. name: "Front (NSFW)",
  63932. image: {
  63933. source: "./media/characters/kira-slime/front-nsfw.svg",
  63934. extra: 442/403,
  63935. bottom: 18/460
  63936. }
  63937. },
  63938. },
  63939. [
  63940. {
  63941. name: "Droplet",
  63942. height: math.unit(0.0464452, "feet")
  63943. },
  63944. {
  63945. name: "Pint",
  63946. height: math.unit(0.9824, "feet")
  63947. },
  63948. {
  63949. name: "Bucket",
  63950. height: math.unit(2.83, "feet")
  63951. },
  63952. {
  63953. name: "Normal",
  63954. height: math.unit(5 + 4/12, "feet"),
  63955. default: true
  63956. },
  63957. {
  63958. name: "Tub",
  63959. height: math.unit(8.46614, "feet")
  63960. },
  63961. {
  63962. name: "Pool",
  63963. height: math.unit(31.1895, "feet")
  63964. },
  63965. {
  63966. name: "Pond",
  63967. height: math.unit(170.349, "feet")
  63968. },
  63969. {
  63970. name: "Lake",
  63971. height: math.unit(289334, "feet")
  63972. },
  63973. {
  63974. name: "Ocean",
  63975. height: math.unit(1.11940e+7, "feet")
  63976. },
  63977. ]
  63978. ))
  63979. characterMakers.push(() => makeCharacter(
  63980. { name: "Holiday", species: ["fennec-fox", "deer"], tags: ["anthro"] },
  63981. {
  63982. front: {
  63983. height: math.unit(5 + 6/12, "feet"),
  63984. weight: math.unit(120, "lb"),
  63985. name: "Front",
  63986. image: {
  63987. source: "./media/characters/holiday/front.svg",
  63988. extra: 456/403,
  63989. bottom: 4/460
  63990. }
  63991. },
  63992. back: {
  63993. height: math.unit(5 + 6/12, "feet"),
  63994. weight: math.unit(120, "lb"),
  63995. name: "Back",
  63996. image: {
  63997. source: "./media/characters/holiday/back.svg",
  63998. extra: 450/404,
  63999. bottom: 12/462
  64000. }
  64001. },
  64002. head: {
  64003. height: math.unit(2.3, "feet"),
  64004. name: "Head",
  64005. image: {
  64006. source: "./media/characters/holiday/head.svg"
  64007. }
  64008. },
  64009. },
  64010. [
  64011. {
  64012. name: "Normal",
  64013. height: math.unit(5 + 6/12, "feet"),
  64014. default: true
  64015. },
  64016. {
  64017. name: "Macro",
  64018. height: math.unit(6574.25, "feet")
  64019. },
  64020. ]
  64021. ))
  64022. characterMakers.push(() => makeCharacter(
  64023. { name: "Camina", species: ["latenivenatrix"], tags: ["anthro"] },
  64024. {
  64025. front: {
  64026. height: math.unit(6 + 2/12, "feet"),
  64027. weight: math.unit(200, "lb"),
  64028. name: "Front",
  64029. image: {
  64030. source: "./media/characters/camina/front.svg",
  64031. extra: 1048/985,
  64032. bottom: 30/1078
  64033. }
  64034. },
  64035. },
  64036. [
  64037. {
  64038. name: "Normal",
  64039. height: math.unit(6 + 2/12, "feet"),
  64040. default: true
  64041. },
  64042. ]
  64043. ))
  64044. characterMakers.push(() => makeCharacter(
  64045. { name: "Smuck", species: ["duck"], tags: ["feral"] },
  64046. {
  64047. front: {
  64048. height: math.unit(30, "cm"),
  64049. weight: math.unit(420, "grams"),
  64050. name: "Front",
  64051. image: {
  64052. source: "./media/characters/smuck/front.svg",
  64053. extra: 379/345,
  64054. bottom: 36/415
  64055. }
  64056. },
  64057. },
  64058. [
  64059. {
  64060. name: "Smuck-Sized",
  64061. height: math.unit(30, "cm"),
  64062. default: true
  64063. },
  64064. ]
  64065. ))
  64066. characterMakers.push(() => makeCharacter(
  64067. { name: "Bylur", species: ["monster"], tags: ["anthro"] },
  64068. {
  64069. frontSfw: {
  64070. height: math.unit(10, "feet"),
  64071. weight: math.unit(1000, "kg"),
  64072. preyCapacity: math.unit(2, "people"),
  64073. name: "Front (SFW)",
  64074. image: {
  64075. source: "./media/characters/bylur/front-sfw.svg",
  64076. extra: 419/343,
  64077. bottom: 3/422
  64078. },
  64079. default: true
  64080. },
  64081. frontSheath: {
  64082. height: math.unit(10, "feet"),
  64083. weight: math.unit(1000, "kg"),
  64084. preyCapacity: math.unit(2, "people"),
  64085. name: "Front (Sheath)",
  64086. image: {
  64087. source: "./media/characters/bylur/front-sheath.svg",
  64088. extra: 419/343,
  64089. bottom: 3/422
  64090. }
  64091. },
  64092. frontErect: {
  64093. height: math.unit(10, "feet"),
  64094. weight: math.unit(1000, "kg"),
  64095. preyCapacity: math.unit(2, "people"),
  64096. name: "Front (Erect)",
  64097. image: {
  64098. source: "./media/characters/bylur/front-erect.svg",
  64099. extra: 419/343,
  64100. bottom: 3/422
  64101. }
  64102. },
  64103. back: {
  64104. height: math.unit(10, "feet"),
  64105. weight: math.unit(1000, "kg"),
  64106. preyCapacity: math.unit(2, "people"),
  64107. name: "Back",
  64108. image: {
  64109. source: "./media/characters/bylur/back.svg",
  64110. extra: 392/315,
  64111. bottom: 3/395
  64112. }
  64113. },
  64114. maw: {
  64115. height: math.unit(3.65, "feet"),
  64116. name: "Maw",
  64117. image: {
  64118. source: "./media/characters/bylur/maw.svg"
  64119. }
  64120. },
  64121. },
  64122. [
  64123. {
  64124. name: "Slightly Human Sized",
  64125. height: math.unit(10, "feet")
  64126. },
  64127. {
  64128. name: "Normal",
  64129. height: math.unit(35, "feet"),
  64130. default: true
  64131. },
  64132. {
  64133. name: "Macro",
  64134. height: math.unit(130, "feet")
  64135. },
  64136. ]
  64137. ))
  64138. characterMakers.push(() => makeCharacter(
  64139. { name: "Oarven", species: ["earless-monitor-lizard"], tags: ["anthro"] },
  64140. {
  64141. frontNsfw: {
  64142. height: math.unit(6, "feet"),
  64143. weight: math.unit(250, "lb"),
  64144. preyCapacity: math.unit(0.05, "people"),
  64145. name: "Front (NSFW)",
  64146. image: {
  64147. source: "./media/characters/oarven/front-nsfw.svg",
  64148. extra: 1795/1783,
  64149. bottom: 142/1937
  64150. }
  64151. },
  64152. frontSfw: {
  64153. height: math.unit(6, "feet"),
  64154. weight: math.unit(250, "lb"),
  64155. preyCapacity: math.unit(0.05, "people"),
  64156. name: "Front (SFW)",
  64157. image: {
  64158. source: "./media/characters/oarven/front-sfw.svg",
  64159. extra: 1795/1783,
  64160. bottom: 142/1937
  64161. }
  64162. },
  64163. },
  64164. [
  64165. {
  64166. name: "Megamacro",
  64167. height: math.unit(5, "miles"),
  64168. default: true
  64169. },
  64170. {
  64171. name: "Maximum Height",
  64172. height: math.unit(5, "AUs")
  64173. },
  64174. ]
  64175. ))
  64176. characterMakers.push(() => makeCharacter(
  64177. { name: "Solidarity", species: ["aerosynth"], tags: ["feral"] },
  64178. {
  64179. side: {
  64180. height: math.unit(1065, "meters"),
  64181. weight: math.unit(1e12, "kg"),
  64182. volume: math.unit(3265000000, "m^3"),
  64183. name: "Side",
  64184. image: {
  64185. source: "./media/characters/solidarity/side.svg"
  64186. }
  64187. },
  64188. front: {
  64189. height: math.unit(1065, "meters"),
  64190. weight: math.unit(3265000000000, "kg"),
  64191. volume: math.unit(3265000000, "m^3"),
  64192. name: "Front",
  64193. image: {
  64194. source: "./media/characters/solidarity/front.svg"
  64195. }
  64196. },
  64197. top: {
  64198. height: math.unit(5823, "meters"),
  64199. weight: math.unit(3265000000000, "kg"),
  64200. volume: math.unit(3265000000, "m^3"),
  64201. name: "Top",
  64202. image: {
  64203. source: "./media/characters/solidarity/top.svg"
  64204. }
  64205. },
  64206. },
  64207. [
  64208. {
  64209. name: "Normal",
  64210. height: math.unit(1065, "meters"),
  64211. default: true
  64212. },
  64213. ]
  64214. ))
  64215. characterMakers.push(() => makeCharacter(
  64216. { name: "Ani'szi", species: ["phenx"], tags: ["taur"] },
  64217. {
  64218. side: {
  64219. height: math.unit(18 + 4/12, "feet"),
  64220. weight: math.unit(13000, "kg"),
  64221. name: "Side",
  64222. image: {
  64223. source: "./media/characters/ani'szi/side.svg",
  64224. extra: 468/459,
  64225. bottom: 60/528
  64226. }
  64227. },
  64228. head: {
  64229. height: math.unit(4.8, "feet"),
  64230. name: "Head",
  64231. image: {
  64232. source: "./media/characters/ani'szi/head.svg"
  64233. }
  64234. },
  64235. jaws: {
  64236. height: math.unit(2.25, "feet"),
  64237. name: "Jaws",
  64238. image: {
  64239. source: "./media/characters/ani'szi/jaws.svg"
  64240. }
  64241. },
  64242. bust: {
  64243. height: math.unit(8.9, "feet"),
  64244. name: "Bust",
  64245. image: {
  64246. source: "./media/characters/ani'szi/bust.svg"
  64247. }
  64248. },
  64249. back: {
  64250. height: math.unit(13.53, "feet"),
  64251. name: "Back",
  64252. image: {
  64253. source: "./media/characters/ani'szi/back.svg"
  64254. }
  64255. },
  64256. eye: {
  64257. height: math.unit(0.44, "feet"),
  64258. name: "Eye",
  64259. image: {
  64260. source: "./media/characters/ani'szi/eye.svg"
  64261. }
  64262. },
  64263. },
  64264. [
  64265. {
  64266. name: "Normal",
  64267. height: math.unit(18 + 4/12, "feet"),
  64268. default: true
  64269. },
  64270. ]
  64271. ))
  64272. characterMakers.push(() => makeCharacter(
  64273. { name: "Rain", species: ["driger"], tags: ["anthro"] },
  64274. {
  64275. front: {
  64276. height: math.unit(7 + 6/12, "feet"),
  64277. weight: math.unit(300, "lb"),
  64278. name: "Front",
  64279. image: {
  64280. source: "./media/characters/rain/front.svg",
  64281. extra: 2955/2698,
  64282. bottom: 235/3190
  64283. }
  64284. },
  64285. dressed: {
  64286. height: math.unit(7 + 6/12, "feet"),
  64287. weight: math.unit(300, "lb"),
  64288. name: "Dressed",
  64289. image: {
  64290. source: "./media/characters/rain/dressed.svg",
  64291. extra: 2783/2572,
  64292. bottom: 430/3213
  64293. }
  64294. },
  64295. },
  64296. [
  64297. {
  64298. name: "Normal",
  64299. height: math.unit(7 + 6/12, "feet"),
  64300. default: true
  64301. },
  64302. {
  64303. name: "Macro",
  64304. height: math.unit(200, "feet")
  64305. },
  64306. {
  64307. name: "Macro+",
  64308. height: math.unit(500, "feet")
  64309. },
  64310. {
  64311. name: "Megamacro",
  64312. height: math.unit(5, "miles")
  64313. },
  64314. ]
  64315. ))
  64316. characterMakers.push(() => makeCharacter(
  64317. { name: "Anise", species: ["gryphon"], tags: ["feral", "taur"] },
  64318. {
  64319. taur_side: {
  64320. height: math.unit(3, "meters"),
  64321. name: "Side",
  64322. image: {
  64323. source: "./media/characters/anise/taur-side.svg",
  64324. extra: 1833/926,
  64325. bottom: 134/1967
  64326. },
  64327. form: "taur",
  64328. default: true
  64329. },
  64330. feral_side: {
  64331. height: math.unit(3, "meters"),
  64332. name: "Side",
  64333. image: {
  64334. source: "./media/characters/anise/feral-side.svg",
  64335. extra: 681/349,
  64336. bottom: 26/707
  64337. },
  64338. form: "feral"
  64339. },
  64340. },
  64341. [
  64342. {
  64343. name: "Normal",
  64344. height: math.unit(3, "meters"),
  64345. default: true,
  64346. allForms: true
  64347. },
  64348. ],
  64349. {
  64350. "taur": {
  64351. name: "Taur",
  64352. default: true
  64353. },
  64354. "feral": {
  64355. name: "Feral",
  64356. },
  64357. }
  64358. ))
  64359. characterMakers.push(() => makeCharacter(
  64360. { name: "Sarina", species: ["red-panda"], tags: ["anthro"] },
  64361. {
  64362. front: {
  64363. height: math.unit(1.9, "meters"),
  64364. weight: math.unit(75, "kg"),
  64365. name: "Front",
  64366. image: {
  64367. source: "./media/characters/sarina/front.svg",
  64368. extra: 1275/1200,
  64369. bottom: 49/1324
  64370. }
  64371. },
  64372. back: {
  64373. height: math.unit(1.9, "meters"),
  64374. weight: math.unit(75, "kg"),
  64375. name: "Back",
  64376. image: {
  64377. source: "./media/characters/sarina/back.svg",
  64378. extra: 1279/1209,
  64379. bottom: 14/1293
  64380. }
  64381. },
  64382. dressed: {
  64383. height: math.unit(1.9, "meters"),
  64384. weight: math.unit(75, "kg"),
  64385. name: "Dressed",
  64386. image: {
  64387. source: "./media/characters/sarina/dressed.svg",
  64388. extra: 1256/1187,
  64389. bottom: 56/1312
  64390. }
  64391. },
  64392. paw: {
  64393. height: math.unit(0.57, "feet"),
  64394. name: "Paw",
  64395. image: {
  64396. source: "./media/characters/sarina/paw.svg"
  64397. }
  64398. },
  64399. toering: {
  64400. height: math.unit(0.27, "feet"),
  64401. name: "Toering",
  64402. image: {
  64403. source: "./media/characters/sarina/toering.svg"
  64404. }
  64405. },
  64406. },
  64407. [
  64408. {
  64409. name: "Incognito",
  64410. height: math.unit(1.9, "meters")
  64411. },
  64412. {
  64413. name: "Home Size",
  64414. height: math.unit(160, "meters"),
  64415. default: true
  64416. },
  64417. {
  64418. name: "Mega",
  64419. height: math.unit(50, "km")
  64420. },
  64421. {
  64422. name: "Small Giga",
  64423. height: math.unit(250, "km")
  64424. },
  64425. {
  64426. name: "Giga (Preferred Size)",
  64427. height: math.unit(3000, "km")
  64428. },
  64429. {
  64430. name: "Terra",
  64431. height: math.unit(40000, "km")
  64432. },
  64433. {
  64434. name: "Terra+",
  64435. height: math.unit(400000, "km")
  64436. },
  64437. {
  64438. name: "Solar",
  64439. height: math.unit(35e6, "km")
  64440. },
  64441. {
  64442. name: "Galactic",
  64443. height: math.unit(648106, "parsecs")
  64444. },
  64445. {
  64446. name: "Universal",
  64447. height: math.unit(7, "universes")
  64448. },
  64449. {
  64450. name: "Universal+",
  64451. height: math.unit(30, "universes")
  64452. },
  64453. ]
  64454. ))
  64455. characterMakers.push(() => makeCharacter(
  64456. { name: "Sifray", species: ["homestuck-troll"], tags: ["anthro"] },
  64457. {
  64458. front: {
  64459. height: math.unit(5 + 6/12, "feet"),
  64460. name: "Front",
  64461. image: {
  64462. source: "./media/characters/sifray/front.svg",
  64463. extra: 722/691,
  64464. bottom: 64/786
  64465. }
  64466. },
  64467. },
  64468. [
  64469. {
  64470. name: "Normal",
  64471. height: math.unit(5 + 6/12, "feet"),
  64472. default: true
  64473. },
  64474. ]
  64475. ))
  64476. characterMakers.push(() => makeCharacter(
  64477. { name: "Spots", species: ["dog"], tags: ["feral"] },
  64478. {
  64479. side: {
  64480. height: math.unit(2.64, "feet"),
  64481. weight: math.unit(100, "lb"),
  64482. preyCapacity: math.unit(3, "people"),
  64483. name: "Side",
  64484. image: {
  64485. source: "./media/characters/spots/side.svg",
  64486. extra: 1859/977,
  64487. bottom: 19/1878
  64488. },
  64489. extraAttributes: {
  64490. "preyPerMinute": {
  64491. name: "Prey Per Minute",
  64492. power: 3,
  64493. type: "volume",
  64494. base: math.unit(6, "people"),
  64495. defaultUnit: "people"
  64496. },
  64497. "preyPerDay": {
  64498. name: "Prey Per Day",
  64499. power: 3,
  64500. type: "volume",
  64501. base: math.unit(6 * 60 * 24, "people"),
  64502. defaultUnit: "people"
  64503. },
  64504. }
  64505. },
  64506. },
  64507. [
  64508. {
  64509. name: "Normal",
  64510. height: math.unit(2.64, "feet"),
  64511. default: true
  64512. },
  64513. ]
  64514. ))
  64515. characterMakers.push(() => makeCharacter(
  64516. { name: "Mona", species: ["caudin"], tags: ["anthro"] },
  64517. {
  64518. front: {
  64519. height: math.unit(29 + 11/12, "feet"),
  64520. weight: math.unit(40, "tons"),
  64521. name: "Front",
  64522. image: {
  64523. source: "./media/characters/mona/front.svg",
  64524. extra: 1257/1116,
  64525. bottom: 34/1291
  64526. }
  64527. },
  64528. },
  64529. [
  64530. {
  64531. name: "Normal",
  64532. height: math.unit(29 + 11/12, "feet"),
  64533. default: true
  64534. },
  64535. ]
  64536. ))
  64537. characterMakers.push(() => makeCharacter(
  64538. { name: "FrostFire", species: ["dragon"], tags: ["anthro"] },
  64539. {
  64540. front: {
  64541. height: math.unit(15, "feet"),
  64542. weight: math.unit(3000, "kg"),
  64543. preyCapacity: math.unit(5, "people"),
  64544. name: "Front",
  64545. image: {
  64546. source: "./media/characters/frostfire/front.svg",
  64547. extra: 675/558,
  64548. bottom: 73/748
  64549. }
  64550. },
  64551. side: {
  64552. height: math.unit(15, "feet"),
  64553. weight: math.unit(3000, "kg"),
  64554. preyCapacity: math.unit(5, "people"),
  64555. name: "Side",
  64556. image: {
  64557. source: "./media/characters/frostfire/side.svg",
  64558. extra: 687/585,
  64559. bottom: 50/737
  64560. }
  64561. },
  64562. back: {
  64563. height: math.unit(15, "feet"),
  64564. weight: math.unit(3000, "kg"),
  64565. preyCapacity: math.unit(5, "people"),
  64566. name: "Back",
  64567. image: {
  64568. source: "./media/characters/frostfire/back.svg",
  64569. extra: 707/607,
  64570. bottom: 16/723
  64571. }
  64572. },
  64573. head: {
  64574. height: math.unit(9.35, "feet"),
  64575. name: "Head",
  64576. image: {
  64577. source: "./media/characters/frostfire/head.svg"
  64578. }
  64579. },
  64580. maw: {
  64581. height: math.unit(3.32, "feet"),
  64582. name: "Maw",
  64583. image: {
  64584. source: "./media/characters/frostfire/maw.svg"
  64585. }
  64586. },
  64587. hand: {
  64588. height: math.unit(3.7, "feet"),
  64589. name: "Hand",
  64590. image: {
  64591. source: "./media/characters/frostfire/hand.svg"
  64592. }
  64593. },
  64594. paw: {
  64595. height: math.unit(5.8, "feet"),
  64596. name: "Paw",
  64597. image: {
  64598. source: "./media/characters/frostfire/paw.svg"
  64599. }
  64600. },
  64601. },
  64602. [
  64603. {
  64604. name: "Normal",
  64605. height: math.unit(15, "feet"),
  64606. default: true
  64607. },
  64608. ]
  64609. ))
  64610. characterMakers.push(() => makeCharacter(
  64611. { name: "Valeroo", species: ["kangaroo"], tags: ["anthro"] },
  64612. {
  64613. front: {
  64614. height: math.unit(5 + 2/12, "feet"),
  64615. weight: math.unit(122, "lb"),
  64616. name: "Front",
  64617. image: {
  64618. source: "./media/characters/valeroo/front.svg",
  64619. extra: 1789/1534,
  64620. bottom: 66/1855
  64621. }
  64622. },
  64623. back: {
  64624. height: math.unit(5 + 2/12, "feet"),
  64625. weight: math.unit(122, "lb"),
  64626. name: "Back",
  64627. image: {
  64628. source: "./media/characters/valeroo/back.svg",
  64629. extra: 1848/1588,
  64630. bottom: 68/1916
  64631. }
  64632. },
  64633. head: {
  64634. height: math.unit(1.87, "feet"),
  64635. name: "Head",
  64636. image: {
  64637. source: "./media/characters/valeroo/head.svg"
  64638. }
  64639. },
  64640. hand: {
  64641. height: math.unit(0.82, "feet"),
  64642. name: "Hand",
  64643. image: {
  64644. source: "./media/characters/valeroo/hand.svg"
  64645. }
  64646. },
  64647. foot: {
  64648. height: math.unit(2.42, "feet"),
  64649. name: "Foot",
  64650. image: {
  64651. source: "./media/characters/valeroo/foot.svg"
  64652. }
  64653. },
  64654. },
  64655. [
  64656. {
  64657. name: "Normal",
  64658. height: math.unit(5 + 2/12, "feet"),
  64659. default: true
  64660. },
  64661. ]
  64662. ))
  64663. characterMakers.push(() => makeCharacter(
  64664. { name: "Corrin", species: ["secretary-bird"], tags: ["anthro"] },
  64665. {
  64666. front: {
  64667. height: math.unit(11 + 3/12, "feet"),
  64668. name: "Front",
  64669. image: {
  64670. source: "./media/characters/corrin/front.svg",
  64671. extra: 665/597,
  64672. bottom: 74/739
  64673. }
  64674. },
  64675. },
  64676. [
  64677. {
  64678. name: "Standard",
  64679. height: math.unit(11 + 3/12, "feet"),
  64680. default: true
  64681. },
  64682. {
  64683. name: "The Boss",
  64684. height: math.unit(110, "feet")
  64685. },
  64686. {
  64687. name: "Shipbreaker",
  64688. height: math.unit(38, "km")
  64689. },
  64690. ]
  64691. ))
  64692. characterMakers.push(() => makeCharacter(
  64693. { name: "Kiba Ulrich", species: ["dire-wolf"], tags: ["anthro"] },
  64694. {
  64695. front: {
  64696. height: math.unit(10, "feet"),
  64697. weight: math.unit(1750, "lb"),
  64698. name: "Front",
  64699. image: {
  64700. source: "./media/characters/kiba-ulrich/front.svg",
  64701. extra: 1037/973,
  64702. bottom: 36/1073
  64703. }
  64704. },
  64705. },
  64706. [
  64707. {
  64708. name: "Normal",
  64709. height: math.unit(10, "feet"),
  64710. default: true
  64711. },
  64712. {
  64713. name: "Minimacro",
  64714. height: math.unit(20, "feet")
  64715. },
  64716. {
  64717. name: "Macro",
  64718. height: math.unit(200, "feet")
  64719. },
  64720. {
  64721. name: "Megamacro",
  64722. height: math.unit(22500, "feet")
  64723. },
  64724. {
  64725. name: "Gigamacro",
  64726. height: math.unit(2700, "miles")
  64727. },
  64728. {
  64729. name: "Teramacro",
  64730. height: math.unit(10000, "miles")
  64731. },
  64732. ]
  64733. ))
  64734. characterMakers.push(() => makeCharacter(
  64735. { name: "Ceanoth", species: ["gryphon"], tags: ["anthro"] },
  64736. {
  64737. gryphon_front: {
  64738. height: math.unit(220, "cm"),
  64739. weight: math.unit(160, "kg"),
  64740. name: "Front",
  64741. image: {
  64742. source: "./media/characters/ceanoth/gryphon-front.svg",
  64743. extra: 616/552,
  64744. bottom: 33/649
  64745. },
  64746. form: "gryphon",
  64747. default: true
  64748. },
  64749. },
  64750. [
  64751. {
  64752. name: "Normal",
  64753. height: math.unit(220, "cm"),
  64754. form: "gryphon",
  64755. default: true
  64756. },
  64757. ],
  64758. {
  64759. "gryphon": {
  64760. name: "Grpyhon",
  64761. default: true
  64762. },
  64763. }
  64764. ))
  64765. characterMakers.push(() => makeCharacter(
  64766. { name: "Vanadiya Athelya", species: ["dragon"], tags: ["taur"] },
  64767. {
  64768. dressed: {
  64769. height: math.unit(2.2 * 0.79, "meters"),
  64770. weight: math.unit(0.5, "tonnes"),
  64771. name: "Dressed",
  64772. image: {
  64773. source: "./media/characters/vanadiya-athelya/dressed.svg",
  64774. extra: 665/315,
  64775. bottom: 106/771
  64776. },
  64777. extraAttributes: {
  64778. "bodyLength": {
  64779. name: "Body Length",
  64780. power: 1,
  64781. type: "length",
  64782. base: math.unit(2.5, "meters")
  64783. },
  64784. "tailLength": {
  64785. name: "Tail Length",
  64786. power: 1,
  64787. type: "length",
  64788. base: math.unit(4.5, "meters")
  64789. },
  64790. "wingspan": {
  64791. name: "Wingspan",
  64792. power: 1,
  64793. type: "length",
  64794. base: math.unit(6, "meters")
  64795. },
  64796. "taurStomachCapacity": {
  64797. name: "Taur Stomach Capacity",
  64798. power: 3,
  64799. type: "volume",
  64800. base: math.unit(4, "people"),
  64801. defaultUnit: "people"
  64802. },
  64803. "anthroStomachCapacity": {
  64804. name: "Anthro Stomach Capacity",
  64805. power: 3,
  64806. type: "volume",
  64807. base: math.unit(1, "people"),
  64808. defaultUnit: "people"
  64809. },
  64810. }
  64811. },
  64812. nude: {
  64813. height: math.unit(2.2 * 0.79, "meters"),
  64814. weight: math.unit(0.5, "tonnes"),
  64815. name: "Nude",
  64816. image: {
  64817. source: "./media/characters/vanadiya-athelya/nude.svg",
  64818. extra: 665/315,
  64819. bottom: 106/771
  64820. },
  64821. extraAttributes: {
  64822. "bodyLength": {
  64823. name: "Body Length",
  64824. power: 1,
  64825. type: "length",
  64826. base: math.unit(2.5, "meters")
  64827. },
  64828. "tailLength": {
  64829. name: "Tail Length",
  64830. power: 1,
  64831. type: "length",
  64832. base: math.unit(4.5, "meters")
  64833. },
  64834. "wingspan": {
  64835. name: "Wingspan",
  64836. power: 1,
  64837. type: "length",
  64838. base: math.unit(6, "meters")
  64839. },
  64840. "taurStomachCapacity": {
  64841. name: "Taur Stomach Capacity",
  64842. power: 3,
  64843. type: "volume",
  64844. base: math.unit(4, "people"),
  64845. defaultUnit: "people"
  64846. },
  64847. "anthroStomachCapacity": {
  64848. name: "Anthro Stomach Capacity",
  64849. power: 3,
  64850. type: "volume",
  64851. base: math.unit(1, "people"),
  64852. defaultUnit: "people"
  64853. },
  64854. }
  64855. },
  64856. },
  64857. [
  64858. {
  64859. name: "Handheld",
  64860. height: math.unit(0.79 * 0.06, "meters")
  64861. },
  64862. {
  64863. name: "Mini",
  64864. height: math.unit(0.79 * 0.7, "meters")
  64865. },
  64866. {
  64867. name: "Short",
  64868. height: math.unit(0.79 * 1.4, "meters")
  64869. },
  64870. {
  64871. name: "Imposing",
  64872. height: math.unit(0.79 * 2.2, "meters"),
  64873. default: true
  64874. },
  64875. {
  64876. name: "Big",
  64877. height: math.unit(0.79 * 3.8, "meters")
  64878. },
  64879. {
  64880. name: "Giant",
  64881. height: math.unit(0.79 * 6.7, "meters")
  64882. },
  64883. {
  64884. name: "Airliner",
  64885. height: math.unit(0.79 * 64, "meters")
  64886. },
  64887. {
  64888. name: "Skyscraper",
  64889. height: math.unit(0.79 * 220, "meters")
  64890. },
  64891. {
  64892. name: "Mountain",
  64893. height: math.unit(0.79 * 3.6, "km")
  64894. },
  64895. {
  64896. name: "Spacescraper",
  64897. height: math.unit(0.79 * 70, "km")
  64898. },
  64899. {
  64900. name: "Continental",
  64901. height: math.unit(0.79 * 1290, "km")
  64902. },
  64903. {
  64904. name: "Moon",
  64905. height: math.unit(0.79 * 32200, "km")
  64906. },
  64907. {
  64908. name: "Planetary",
  64909. height: math.unit(0.79 * 145000, "km")
  64910. },
  64911. {
  64912. name: "Stellar",
  64913. height: math.unit(0.79 * 19e6, "km")
  64914. },
  64915. {
  64916. name: "Solar",
  64917. height: math.unit(0.79 * 40, "AU")
  64918. },
  64919. {
  64920. name: "Intersteller",
  64921. height: math.unit(0.79 * 3, "lightyears")
  64922. },
  64923. {
  64924. name: "Star Cluster",
  64925. height: math.unit(0.79 * 80, "lightyears")
  64926. },
  64927. {
  64928. name: "Ecumenical",
  64929. height: math.unit(0.79 * 2e3, "lightyears")
  64930. },
  64931. {
  64932. name: "Galactic",
  64933. height: math.unit(0.79 * 175000, "lightyears")
  64934. },
  64935. {
  64936. name: "Galaxy Cluster",
  64937. height: math.unit(0.79 * 25e6, "lightyears")
  64938. },
  64939. ]
  64940. ))
  64941. //characters
  64942. function makeCharacters() {
  64943. const results = [];
  64944. characterMakers.forEach(character => {
  64945. results.push(character());
  64946. });
  64947. return results;
  64948. }