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

68980 строки
1.7 MiB

  1. const characterMakers = [];
  2. function makeCharacter(info, viewInfo, defaultSizes, forms) {
  3. views = {};
  4. Object.entries(viewInfo).forEach(([key, value]) => {
  5. views[key] = {
  6. attributes: {
  7. height: {
  8. name: "Height",
  9. power: 1,
  10. type: "length",
  11. base: value.height
  12. }
  13. },
  14. image: value.image,
  15. form: value.form,
  16. name: value.name,
  17. info: value.info,
  18. rename: value.rename,
  19. default: value.default
  20. }
  21. if (value.weight) {
  22. views[key].attributes.weight = {
  23. name: "Mass",
  24. power: 3,
  25. type: "mass",
  26. base: value.weight
  27. };
  28. }
  29. if (value.volume) {
  30. views[key].attributes.volume = {
  31. name: "Volume",
  32. power: 3,
  33. type: "volume",
  34. base: value.volume
  35. };
  36. }
  37. if (value.capacity) {
  38. views[key].attributes.capacity = {
  39. name: "Capacity",
  40. power: 3,
  41. type: "volume",
  42. base: value.capacity
  43. }
  44. }
  45. if (value.preyCapacity) {
  46. views[key].attributes.preyCapacity = {
  47. name: "Prey Capacity",
  48. power: 3,
  49. type: "volume",
  50. base: value.preyCapacity,
  51. defaultUnit: "people"
  52. }
  53. }
  54. if (value.energyNeed) {
  55. views[key].attributes.capacity = {
  56. name: "Food Intake",
  57. power: 3 * 3 / 4,
  58. type: "energy",
  59. base: value.energyNeed
  60. }
  61. }
  62. if (value.extraAttributes) {
  63. Object.entries(value.extraAttributes).forEach(([attrKey, attrValue]) => {
  64. views[key].attributes[attrKey] = attrValue
  65. })
  66. }
  67. });
  68. return createEntityMaker(info, views, defaultSizes, forms);
  69. }
  70. const speciesData = {
  71. animal: {
  72. name: "Animal"
  73. },
  74. dog: {
  75. name: "Dog",
  76. parents: [
  77. "canine"
  78. ]
  79. },
  80. canine: {
  81. name: "Canine",
  82. parents: [
  83. "mammal"
  84. ]
  85. },
  86. crux: {
  87. name: "Crux",
  88. parents: [
  89. "mammal"
  90. ]
  91. },
  92. mammal: {
  93. name: "Mammal",
  94. parents: [
  95. "animal"
  96. ]
  97. },
  98. "rough-collie": {
  99. name: "Rough Collie",
  100. parents: [
  101. "dog"
  102. ]
  103. },
  104. dragon: {
  105. name: "Dragon",
  106. parents: [
  107. "reptile"
  108. ]
  109. },
  110. reptile: {
  111. name: "Reptile",
  112. parents: [
  113. "animal"
  114. ]
  115. },
  116. woodpecker: {
  117. name: "Woodpecker",
  118. parents: [
  119. "avian"
  120. ]
  121. },
  122. avian: {
  123. name: "Avian",
  124. parents: [
  125. "animal"
  126. ]
  127. },
  128. kitsune: {
  129. name: "Kitsune",
  130. parents: [
  131. "fox"
  132. ]
  133. },
  134. fox: {
  135. name: "Fox",
  136. parents: [
  137. "mammal"
  138. ]
  139. },
  140. pokemon: {
  141. name: "Pokemon",
  142. parents: [
  143. "video-games"
  144. ]
  145. },
  146. tiger: {
  147. name: "Tiger",
  148. parents: [
  149. "cat"
  150. ]
  151. },
  152. cat: {
  153. name: "Cat",
  154. parents: [
  155. "feliform"
  156. ]
  157. },
  158. "blue-jay": {
  159. name: "Blue Jay",
  160. parents: [
  161. "corvid"
  162. ]
  163. },
  164. wolf: {
  165. name: "Wolf",
  166. parents: [
  167. "mammal"
  168. ]
  169. },
  170. coyote: {
  171. name: "Coyote",
  172. parents: [
  173. "mammal"
  174. ]
  175. },
  176. raccoon: {
  177. name: "Raccoon",
  178. parents: [
  179. "mammal"
  180. ]
  181. },
  182. weasel: {
  183. name: "Weasel",
  184. parents: [
  185. "mustelid"
  186. ]
  187. },
  188. "red-panda": {
  189. name: "Red Panda",
  190. parents: [
  191. "mammal"
  192. ]
  193. },
  194. dolphin: {
  195. name: "Dolphin",
  196. parents: [
  197. "mammal"
  198. ]
  199. },
  200. "african-wild-dog": {
  201. name: "African Wild Dog",
  202. parents: [
  203. "canine"
  204. ]
  205. },
  206. "hyena": {
  207. name: "Hyena",
  208. parents: [
  209. "feliform"
  210. ]
  211. },
  212. "carbuncle": {
  213. name: "Carbuncle",
  214. parents: [
  215. "animal"
  216. ]
  217. },
  218. bat: {
  219. name: "Bat",
  220. parents: [
  221. "mammal"
  222. ]
  223. },
  224. "leaf-nosed-bat": {
  225. name: "Leaf-Nosed Bat",
  226. parents: [
  227. "bat"
  228. ]
  229. },
  230. "fish": {
  231. name: "Fish",
  232. parents: [
  233. "animal",
  234. "aquatic"
  235. ]
  236. },
  237. "ram": {
  238. name: "Ram",
  239. parents: [
  240. "mammal"
  241. ]
  242. },
  243. "demon": {
  244. name: "Demon",
  245. parents: [
  246. "supernatural"
  247. ]
  248. },
  249. "cougar": {
  250. name: "Cougar",
  251. parents: [
  252. "cat"
  253. ]
  254. },
  255. "goat": {
  256. name: "Goat",
  257. parents: [
  258. "mammal"
  259. ]
  260. },
  261. "lion": {
  262. name: "Lion",
  263. parents: [
  264. "cat"
  265. ]
  266. },
  267. "harpy-eager": {
  268. name: "Harpy Eagle",
  269. parents: [
  270. "avian"
  271. ]
  272. },
  273. "deer": {
  274. name: "Deer",
  275. parents: [
  276. "mammal"
  277. ]
  278. },
  279. "phoenix": {
  280. name: "Phoenix",
  281. parents: [
  282. "avian"
  283. ]
  284. },
  285. "aeromorph": {
  286. name: "Aeromorph",
  287. parents: [
  288. "machine"
  289. ]
  290. },
  291. "machine": {
  292. name: "Machine",
  293. },
  294. "android": {
  295. name: "Android",
  296. parents: [
  297. "machine"
  298. ]
  299. },
  300. "jackal": {
  301. name: "Jackal",
  302. parents: [
  303. "canine"
  304. ]
  305. },
  306. "corvid": {
  307. name: "Corvid",
  308. parents: [
  309. "passerine"
  310. ]
  311. },
  312. "pharaoh-hound": {
  313. name: "Pharaoh Hound",
  314. parents: [
  315. "dog"
  316. ]
  317. },
  318. "skunk": {
  319. name: "Skunk",
  320. parents: [
  321. "mammal"
  322. ]
  323. },
  324. "shark": {
  325. name: "Shark",
  326. parents: [
  327. "fish"
  328. ]
  329. },
  330. "black-panther": {
  331. name: "Black Panther",
  332. parents: [
  333. "cat"
  334. ]
  335. },
  336. "umbra": {
  337. name: "Umbra",
  338. parents: [
  339. "animal"
  340. ]
  341. },
  342. "raven": {
  343. name: "Raven",
  344. parents: [
  345. "corvid"
  346. ]
  347. },
  348. "snow-leopard": {
  349. name: "Snow Leopard",
  350. parents: [
  351. "cat"
  352. ]
  353. },
  354. "barbary-lion": {
  355. name: "Barbary Lion",
  356. parents: [
  357. "lion"
  358. ]
  359. },
  360. "dra'gal": {
  361. name: "Dra'Gal",
  362. parents: [
  363. "mammal"
  364. ]
  365. },
  366. "german-shepherd": {
  367. name: "German Shepherd",
  368. parents: [
  369. "dog"
  370. ]
  371. },
  372. "bayleef": {
  373. name: "Bayleef",
  374. parents: [
  375. "pokemon",
  376. "plant",
  377. "animal"
  378. ]
  379. },
  380. "mouse": {
  381. name: "Mouse",
  382. parents: [
  383. "rodent"
  384. ]
  385. },
  386. "rat": {
  387. name: "Rat",
  388. parents: [
  389. "mammal"
  390. ]
  391. },
  392. "hoshiko-beast": {
  393. name: "Hoshiko Beast",
  394. parents: ["animal"]
  395. },
  396. "snow-jugani": {
  397. name: "Snow Jugani",
  398. parents: ["cat"]
  399. },
  400. "patamon": {
  401. name: "Patamon",
  402. parents: ["digimon", "guinea-pig"]
  403. },
  404. "digimon": {
  405. name: "Digimon",
  406. parents: [
  407. "video-games"
  408. ]
  409. },
  410. "jugani": {
  411. name: "Jugani",
  412. parents: ["cat"]
  413. },
  414. "luxray": {
  415. name: "Luxray",
  416. parents: ["pokemon", "lion"]
  417. },
  418. "mech": {
  419. name: "Mech",
  420. parents: ["machine"]
  421. },
  422. "zoid": {
  423. name: "Zoid",
  424. parents: ["mech"]
  425. },
  426. "monster": {
  427. name: "Monster",
  428. parents: ["animal"]
  429. },
  430. "foo-dog": {
  431. name: "Foo Dog",
  432. parents: ["mammal"]
  433. },
  434. "elephant": {
  435. name: "Elephant",
  436. parents: ["mammal"]
  437. },
  438. "eagle": {
  439. name: "Eagle",
  440. parents: ["bird-of-prey"]
  441. },
  442. "cow": {
  443. name: "Cow",
  444. parents: ["mammal"]
  445. },
  446. "crocodile": {
  447. name: "Crocodile",
  448. parents: ["reptile"]
  449. },
  450. "borzoi": {
  451. name: "Borzoi",
  452. parents: ["dog"]
  453. },
  454. "snake": {
  455. name: "Snake",
  456. parents: ["reptile"]
  457. },
  458. "horned-bush-viper": {
  459. name: "Horned Bush Viper",
  460. parents: ["viper"]
  461. },
  462. "cobra": {
  463. name: "Cobra",
  464. parents: ["snake"]
  465. },
  466. "harpy-eagle": {
  467. name: "Harpy Eagle",
  468. parents: ["eagle"]
  469. },
  470. "raptor": {
  471. name: "Raptor",
  472. parents: ["dinosaur"]
  473. },
  474. "dinosaur": {
  475. name: "Dinosaur",
  476. parents: ["saurian"]
  477. },
  478. "saurian": {
  479. name: "Saurian",
  480. parents: ["lizard"]
  481. },
  482. "veilhound": {
  483. name: "Veilhound",
  484. parents: ["hellhound"]
  485. },
  486. "hellhound": {
  487. name: "Hellhound",
  488. parents: ["canine", "demon"]
  489. },
  490. "insect": {
  491. name: "Insect",
  492. parents: ["animal"]
  493. },
  494. "beetle": {
  495. name: "Beetle",
  496. parents: ["insect"]
  497. },
  498. "moth": {
  499. name: "Moth",
  500. parents: ["insect"]
  501. },
  502. "eastern-dragon": {
  503. name: "Eastern Dragon",
  504. parents: ["dragon"]
  505. },
  506. "jaguar": {
  507. name: "Jaguar",
  508. parents: ["cat"]
  509. },
  510. "horse": {
  511. name: "Horse",
  512. parents: ["mammal"]
  513. },
  514. "sergal": {
  515. name: "Sergal",
  516. parents: ["mammal", "avian", "vilous"]
  517. },
  518. "gryphon": {
  519. name: "Gryphon",
  520. parents: ["lion", "eagle"]
  521. },
  522. "robot": {
  523. name: "Robot",
  524. parents: ["machine"]
  525. },
  526. "medihound": {
  527. name: "Medihound",
  528. parents: ["robot", "dog"]
  529. },
  530. "sylveon": {
  531. name: "Sylveon",
  532. parents: ["pokemon"]
  533. },
  534. "catgirl": {
  535. name: "Catgirl",
  536. parents: ["mammal"]
  537. },
  538. "cowgirl": {
  539. name: "Cowgirl",
  540. parents: ["mammal"]
  541. },
  542. "pony": {
  543. name: "Pony",
  544. parents: ["horse"]
  545. },
  546. "rabbit": {
  547. name: "Rabbit",
  548. parents: ["leporidae"]
  549. },
  550. "fennec-fox": {
  551. name: "Fennec Fox",
  552. parents: ["fox"]
  553. },
  554. "azodian": {
  555. name: "Azodian",
  556. parents: ["mouse"]
  557. },
  558. "shiba-inu": {
  559. name: "Shiba Inu",
  560. parents: ["dog"]
  561. },
  562. "changeling": {
  563. name: "Changeling",
  564. parents: ["insect"]
  565. },
  566. "cheetah": {
  567. name: "Cheetah",
  568. parents: ["cat"]
  569. },
  570. "golden-jackal": {
  571. name: "Golden Jackal",
  572. parents: ["jackal"]
  573. },
  574. "manectric": {
  575. name: "Manectric",
  576. parents: ["pokemon", "wolf"]
  577. },
  578. "rat": {
  579. name: "Rat",
  580. parents: ["rodent"]
  581. },
  582. "rodent": {
  583. name: "Rodent",
  584. parents: ["mammal"]
  585. },
  586. "octocoon": {
  587. name: "Octocoon",
  588. parents: ["raccoon", "octopus"]
  589. },
  590. "octopus": {
  591. name: "Octopus",
  592. parents: ["fish"]
  593. },
  594. "werewolf": {
  595. name: "Werewolf",
  596. parents: ["wolf", "werebeast"]
  597. },
  598. "werebeast": {
  599. name: "Werebeast",
  600. parents: ["monster"]
  601. },
  602. "meerkat": {
  603. name: "Meerkat",
  604. parents: ["mammal"]
  605. },
  606. "human": {
  607. name: "Human",
  608. parents: ["mammal", "humanoid"]
  609. },
  610. "geth": {
  611. name: "Geth",
  612. parents: ["android"]
  613. },
  614. "husky": {
  615. name: "Husky",
  616. parents: ["dog"]
  617. },
  618. "long-eared-bat": {
  619. name: "Long Eared Bat",
  620. parents: ["bat"]
  621. },
  622. "lizard": {
  623. name: "Lizard",
  624. parents: ["reptile"]
  625. },
  626. "salamander": {
  627. name: "Salamander",
  628. parents: ["lizard"]
  629. },
  630. "chameleon": {
  631. name: "Chameleon",
  632. parents: ["lizard"]
  633. },
  634. "gecko": {
  635. name: "Gecko",
  636. parents: ["lizard"]
  637. },
  638. "kobold": {
  639. name: "Kobold",
  640. parents: ["reptile"]
  641. },
  642. "charizard": {
  643. name: "Charizard",
  644. parents: ["pokemon", "dragon"]
  645. },
  646. "lugia": {
  647. name: "Lugia",
  648. parents: ["pokemon", "avian"]
  649. },
  650. "cerberus": {
  651. name: "Cerberus",
  652. parents: ["dog"]
  653. },
  654. "tyrantrum": {
  655. name: "Tyrantrum",
  656. parents: ["pokemon"]
  657. },
  658. "lemur": {
  659. name: "Lemur",
  660. parents: ["mammal"]
  661. },
  662. "kelpie": {
  663. name: "Kelpie",
  664. parents: ["horse", "monster"]
  665. },
  666. "labrador": {
  667. name: "Labrador",
  668. parents: ["dog"]
  669. },
  670. "sylveon": {
  671. name: "Sylveon",
  672. parents: ["eeveelution"]
  673. },
  674. "eeveelution": {
  675. name: "Eeveelution",
  676. parents: ["pokemon", "cat"]
  677. },
  678. "polar-bear": {
  679. name: "Polar Bear",
  680. parents: ["bear"]
  681. },
  682. "bear": {
  683. name: "Bear",
  684. parents: ["mammal"]
  685. },
  686. "absol": {
  687. name: "Absol",
  688. parents: ["pokemon", "cat"]
  689. },
  690. "wolver": {
  691. name: "Wolver",
  692. parents: ["mammal"]
  693. },
  694. "rottweiler": {
  695. name: "Rottweiler",
  696. parents: ["dog"]
  697. },
  698. "zebra": {
  699. name: "Zebra",
  700. parents: ["horse"]
  701. },
  702. "yoshi": {
  703. name: "Yoshi",
  704. parents: ["dinosaur"]
  705. },
  706. "lynx": {
  707. name: "Lynx",
  708. parents: ["cat"]
  709. },
  710. "unknown": {
  711. name: "Unknown",
  712. parents: []
  713. },
  714. "thylacine": {
  715. name: "Thylacine",
  716. parents: ["mammal"]
  717. },
  718. "gabumon": {
  719. name: "Gabumon",
  720. parents: ["digimon"]
  721. },
  722. "border-collie": {
  723. name: "Border Collie",
  724. parents: ["dog"]
  725. },
  726. "imp": {
  727. name: "Imp",
  728. parents: ["demon"]
  729. },
  730. "kangaroo": {
  731. name: "Kangaroo",
  732. parents: ["marsupial"]
  733. },
  734. "renamon": {
  735. name: "Renamon",
  736. parents: ["digimon", "fox"]
  737. },
  738. "candy-orca-dragon": {
  739. name: "Candy Orca Dragon",
  740. parents: ["fish", "dragon", "candy"]
  741. },
  742. "sabertooth-tiger": {
  743. name: "Sabertooth Tiger",
  744. parents: ["cat"]
  745. },
  746. "espurr": {
  747. name: "Espurr",
  748. parents: ["pokemon", "cat"]
  749. },
  750. "otter": {
  751. name: "Otter",
  752. parents: ["mustelid"]
  753. },
  754. "elemental": {
  755. name: "Elemental",
  756. parents: ["mammal"]
  757. },
  758. "mew": {
  759. name: "Mew",
  760. parents: ["pokemon"]
  761. },
  762. "goodra": {
  763. name: "Goodra",
  764. parents: ["pokemon"]
  765. },
  766. "fairy": {
  767. name: "Fairy",
  768. parents: ["magical"]
  769. },
  770. "typhlosion": {
  771. name: "Typhlosion",
  772. parents: ["pokemon"]
  773. },
  774. "magical": {
  775. name: "Magical",
  776. parents: []
  777. },
  778. "xenomorph": {
  779. name: "Xenomorph",
  780. parents: ["monster", "alien"]
  781. },
  782. "charr": {
  783. name: "Charr",
  784. parents: ["cat"]
  785. },
  786. "siberian-husky": {
  787. name: "Siberian Husky",
  788. parents: ["husky"]
  789. },
  790. "alligator": {
  791. name: "Alligator",
  792. parents: ["reptile"]
  793. },
  794. "bernese-mountain-dog": {
  795. name: "Bernese Mountain Dog",
  796. parents: ["dog"]
  797. },
  798. "reshiram": {
  799. name: "Reshiram",
  800. parents: ["pokemon", "dragon"]
  801. },
  802. "grizzly-bear": {
  803. name: "Grizzly Bear",
  804. parents: ["bear"]
  805. },
  806. "water-monitor": {
  807. name: "Water Monitor",
  808. parents: ["lizard"]
  809. },
  810. "banchofossa": {
  811. name: "Banchofossa",
  812. parents: ["mammal"]
  813. },
  814. "kirin": {
  815. name: "Kirin",
  816. parents: ["monster"]
  817. },
  818. "quilava": {
  819. name: "Quilava",
  820. parents: ["pokemon"]
  821. },
  822. "seviper": {
  823. name: "Seviper",
  824. parents: ["pokemon", "viper"]
  825. },
  826. "flying-fox": {
  827. name: "Flying Fox",
  828. parents: ["bat"]
  829. },
  830. "keynain": {
  831. name: "Keynain",
  832. parents: ["avian"]
  833. },
  834. "lucario": {
  835. name: "Lucario",
  836. parents: ["pokemon", "jackal"]
  837. },
  838. "siamese-cat": {
  839. name: "Siamese Cat",
  840. parents: ["cat"]
  841. },
  842. "spider": {
  843. name: "Spider",
  844. parents: ["insect"]
  845. },
  846. "samurott": {
  847. name: "Samurott",
  848. parents: ["pokemon", "otter"]
  849. },
  850. "megalodon": {
  851. name: "Megalodon",
  852. parents: ["shark"]
  853. },
  854. "unicorn": {
  855. name: "Unicorn",
  856. parents: ["horse"]
  857. },
  858. "greninja": {
  859. name: "Greninja",
  860. parents: ["pokemon", "frog"]
  861. },
  862. "water-dragon": {
  863. name: "Water Dragon",
  864. parents: ["dragon"]
  865. },
  866. "cross-fox": {
  867. name: "Cross Fox",
  868. parents: ["fox"]
  869. },
  870. "synth": {
  871. name: "Synth",
  872. parents: ["machine"]
  873. },
  874. "construct": {
  875. name: "Construct",
  876. parents: []
  877. },
  878. "mexican-wolf": {
  879. name: "Mexican Wolf",
  880. parents: ["wolf"]
  881. },
  882. "leopard": {
  883. name: "Leopard",
  884. parents: ["cat"]
  885. },
  886. "pig": {
  887. name: "Pig",
  888. parents: ["mammal"]
  889. },
  890. "ampharos": {
  891. name: "Ampharos",
  892. parents: ["pokemon", "sheep"]
  893. },
  894. "orca": {
  895. name: "Orca",
  896. parents: ["fish"]
  897. },
  898. "lycanroc": {
  899. name: "Lycanroc",
  900. parents: ["pokemon", "wolf"]
  901. },
  902. "surkanu": {
  903. name: "Surkanu",
  904. parents: ["monster"]
  905. },
  906. "seal": {
  907. name: "Seal",
  908. parents: ["mammal"]
  909. },
  910. "keldeo": {
  911. name: "Keldeo",
  912. parents: ["pokemon"]
  913. },
  914. "great-dane": {
  915. name: "Great Dane",
  916. parents: ["dog"]
  917. },
  918. "black-backed-jackal": {
  919. name: "Black Backed Jackal",
  920. parents: ["jackal"]
  921. },
  922. "sheep": {
  923. name: "Sheep",
  924. parents: ["mammal"]
  925. },
  926. "leopard-seal": {
  927. name: "Leopard Seal",
  928. parents: ["seal"]
  929. },
  930. "zoroark": {
  931. name: "Zoroark",
  932. parents: ["pokemon", "fox"]
  933. },
  934. "maned-wolf": {
  935. name: "Maned Wolf",
  936. parents: ["canine"]
  937. },
  938. "dracha": {
  939. name: "Dracha",
  940. parents: ["dragon"]
  941. },
  942. "wolxi": {
  943. name: "Wolxi",
  944. parents: ["mammal", "alien"]
  945. },
  946. "dratini": {
  947. name: "Dratini",
  948. parents: ["pokemon", "dragon"]
  949. },
  950. "skaven": {
  951. name: "Skaven",
  952. parents: ["rat"]
  953. },
  954. "mongoose": {
  955. name: "Mongoose",
  956. parents: ["mammal"]
  957. },
  958. "lopunny": {
  959. name: "Lopunny",
  960. parents: ["pokemon", "rabbit"]
  961. },
  962. "feraligatr": {
  963. name: "Feraligatr",
  964. parents: ["pokemon", "alligator"]
  965. },
  966. "houndoom": {
  967. name: "Houndoom",
  968. parents: ["pokemon", "dog"]
  969. },
  970. "protogen": {
  971. name: "Protogen",
  972. parents: ["machine"]
  973. },
  974. "saint-bernard": {
  975. name: "Saint Bernard",
  976. parents: ["dog"]
  977. },
  978. "crow": {
  979. name: "Crow",
  980. parents: ["corvid"]
  981. },
  982. "delphox": {
  983. name: "Delphox",
  984. parents: ["pokemon", "fox"]
  985. },
  986. "moose": {
  987. name: "Moose",
  988. parents: ["mammal"]
  989. },
  990. "joraxian": {
  991. name: "Joraxian",
  992. parents: ["monster", "canine", "demon"]
  993. },
  994. "nimbat": {
  995. name: "Nimbat",
  996. parents: ["mammal"]
  997. },
  998. "aardwolf": {
  999. name: "Aardwolf",
  1000. parents: ["canine"]
  1001. },
  1002. "fluudrani": {
  1003. name: "Fluudrani",
  1004. parents: ["animal"]
  1005. },
  1006. "arcanine": {
  1007. name: "Arcanine",
  1008. parents: ["pokemon", "dog"]
  1009. },
  1010. "inteleon": {
  1011. name: "Inteleon",
  1012. parents: ["pokemon", "fish"]
  1013. },
  1014. "ninetales": {
  1015. name: "Ninetales",
  1016. parents: ["pokemon", "kitsune"]
  1017. },
  1018. "tigrex": {
  1019. name: "Tigrex",
  1020. parents: ["wyvern", "monster-hunter"]
  1021. },
  1022. "zorua": {
  1023. name: "Zorua",
  1024. parents: ["pokemon", "fox"]
  1025. },
  1026. "vulpix": {
  1027. name: "Vulpix",
  1028. parents: ["pokemon", "fox"]
  1029. },
  1030. "barghest": {
  1031. name: "Barghest",
  1032. parents: ["monster"]
  1033. },
  1034. "gray-wolf": {
  1035. name: "Gray Wolf",
  1036. parents: ["wolf"]
  1037. },
  1038. "ruppells-fox": {
  1039. name: "Rüppell's Fox",
  1040. parents: ["fox"]
  1041. },
  1042. "bull-terrier": {
  1043. name: "Bull Terrier",
  1044. parents: ["dog"]
  1045. },
  1046. "european-honey-buzzard": {
  1047. name: "European Honey Buzzard",
  1048. parents: ["avian"]
  1049. },
  1050. "t-rex": {
  1051. name: "Tyrannosaurus Rex",
  1052. parents: ["theropod"]
  1053. },
  1054. "mactarian": {
  1055. name: "Mactarian",
  1056. parents: ["shark", "monster"]
  1057. },
  1058. "mewtwo-y": {
  1059. name: "Mewtwo Y",
  1060. parents: ["mewtwo"]
  1061. },
  1062. "mewtwo": {
  1063. name: "Mewtwo",
  1064. parents: ["pokemon"]
  1065. },
  1066. "eevee": {
  1067. name: "Eevee",
  1068. parents: ["eeveelution"]
  1069. },
  1070. "mienshao": {
  1071. name: "Mienshao",
  1072. parents: ["pokemon"]
  1073. },
  1074. "sugar-glider": {
  1075. name: "Sugar Glider",
  1076. parents: ["opossum"]
  1077. },
  1078. "spectral-bat": {
  1079. name: "Spectral Bat",
  1080. parents: ["bat"]
  1081. },
  1082. "scolipede": {
  1083. name: "Scolipede",
  1084. parents: ["pokemon", "insect"]
  1085. },
  1086. "jackalope": {
  1087. name: "Jackalope",
  1088. parents: ["rabbit", "antelope"]
  1089. },
  1090. "caracal": {
  1091. name: "Caracal",
  1092. parents: ["cat"]
  1093. },
  1094. "stoat": {
  1095. name: "Stoat",
  1096. parents: ["mammal"]
  1097. },
  1098. "african-golden-cat": {
  1099. name: "African Golden Cat",
  1100. parents: ["cat"]
  1101. },
  1102. "gigantosaurus": {
  1103. name: "Gigantosaurus",
  1104. parents: ["dinosaur"]
  1105. },
  1106. "zorgoia": {
  1107. name: "Zorgoia",
  1108. parents: ["mammal"]
  1109. },
  1110. "monitor-lizard": {
  1111. name: "Monitor Lizard",
  1112. parents: ["lizard"]
  1113. },
  1114. "ziralkia": {
  1115. name: "Ziralkia",
  1116. parents: ["mammal"]
  1117. },
  1118. "kiiasi": {
  1119. name: "Kiiasi",
  1120. parents: ["animal"]
  1121. },
  1122. "synx": {
  1123. name: "Synx",
  1124. parents: ["monster"]
  1125. },
  1126. "panther": {
  1127. name: "Panther",
  1128. parents: ["cat"]
  1129. },
  1130. "azumarill": {
  1131. name: "Azumarill",
  1132. parents: ["pokemon"]
  1133. },
  1134. "river-snaptail": {
  1135. name: "River Snaptail",
  1136. parents: ["otter", "crocodile"]
  1137. },
  1138. "great-blue-heron": {
  1139. name: "Great Blue Heron",
  1140. parents: ["avian"]
  1141. },
  1142. "smeargle": {
  1143. name: "Smeargle",
  1144. parents: ["pokemon"]
  1145. },
  1146. "vendeilen": {
  1147. name: "Vendeilen",
  1148. parents: ["monster"]
  1149. },
  1150. "ventura": {
  1151. name: "Ventura",
  1152. parents: ["canine"]
  1153. },
  1154. "clouded-leopard": {
  1155. name: "Clouded Leopard",
  1156. parents: ["leopard"]
  1157. },
  1158. "argonian": {
  1159. name: "Argonian",
  1160. parents: ["lizard"]
  1161. },
  1162. "salazzle": {
  1163. name: "Salazzle",
  1164. parents: ["pokemon", "lizard"]
  1165. },
  1166. "je-stoff-drachen": {
  1167. name: "Je-Stoff Drachen",
  1168. parents: ["dragon"]
  1169. },
  1170. "finnish-spitz-dog": {
  1171. name: "Finnish Spitz Dog",
  1172. parents: ["dog"]
  1173. },
  1174. "gray-fox": {
  1175. name: "Gray Fox",
  1176. parents: ["fox"]
  1177. },
  1178. "opossum": {
  1179. name: "Opossum",
  1180. parents: ["mammal"]
  1181. },
  1182. "antelope": {
  1183. name: "Antelope",
  1184. parents: ["mammal"]
  1185. },
  1186. "weavile": {
  1187. name: "Weavile",
  1188. parents: ["pokemon"]
  1189. },
  1190. "pikachu": {
  1191. name: "Pikachu",
  1192. parents: ["pokemon", "mouse"]
  1193. },
  1194. "grovyle": {
  1195. name: "Grovyle",
  1196. parents: ["pokemon", "plant"]
  1197. },
  1198. "sthara": {
  1199. name: "Sthara",
  1200. parents: ["snow-leopard", "reptile"]
  1201. },
  1202. "star-warrior": {
  1203. name: "Star Warrior",
  1204. parents: ["magical"]
  1205. },
  1206. "dragonoid": {
  1207. name: "Dragonoid",
  1208. parents: ["dragon"]
  1209. },
  1210. "suicune": {
  1211. name: "Suicune",
  1212. parents: ["pokemon"]
  1213. },
  1214. "vole": {
  1215. name: "Vole",
  1216. parents: ["mammal"]
  1217. },
  1218. "blaziken": {
  1219. name: "Blaziken",
  1220. parents: ["pokemon", "avian"]
  1221. },
  1222. "buizel": {
  1223. name: "Buizel",
  1224. parents: ["pokemon", "fish"]
  1225. },
  1226. "floatzel": {
  1227. name: "Floatzel",
  1228. parents: ["pokemon", "fish"]
  1229. },
  1230. "umok": {
  1231. name: "Umok",
  1232. parents: ["avian"]
  1233. },
  1234. "sea-monster": {
  1235. name: "Sea Monster",
  1236. parents: ["monster", "fish"]
  1237. },
  1238. "egyptian-vulture": {
  1239. name: "Egyptian Vulture",
  1240. parents: ["avian"]
  1241. },
  1242. "doberman": {
  1243. name: "Doberman",
  1244. parents: ["dog"]
  1245. },
  1246. "zangoose": {
  1247. name: "Zangoose",
  1248. parents: ["pokemon", "mongoose"]
  1249. },
  1250. "mongoose": {
  1251. name: "Mongoose",
  1252. parents: ["mammal"]
  1253. },
  1254. "wickerbeast": {
  1255. name: "Wickerbeast",
  1256. parents: ["monster"]
  1257. },
  1258. "zenari": {
  1259. name: "Zenari",
  1260. parents: ["lizard"]
  1261. },
  1262. "plant": {
  1263. name: "Plant",
  1264. parents: []
  1265. },
  1266. "raskatox": {
  1267. name: "Raskatox",
  1268. parents: ["raccoon", "skunk", "cat", "fox"]
  1269. },
  1270. "mikromare": {
  1271. name: "mikromare",
  1272. parents: ["alien"]
  1273. },
  1274. "alien": {
  1275. name: "Alien",
  1276. parents: ["animal"]
  1277. },
  1278. "deity": {
  1279. name: "Deity",
  1280. parents: []
  1281. },
  1282. "skarlan": {
  1283. name: "Skarlan",
  1284. parents: ["slug", "dragon"]
  1285. },
  1286. "slug": {
  1287. name: "Slug",
  1288. parents: ["mollusk"]
  1289. },
  1290. "mollusk": {
  1291. name: "Mollusk",
  1292. parents: ["animal"]
  1293. },
  1294. "chimera": {
  1295. name: "Chimera",
  1296. parents: ["monster"]
  1297. },
  1298. "gestalt": {
  1299. name: "Gestalt",
  1300. parents: ["construct"]
  1301. },
  1302. "mimic": {
  1303. name: "Mimic",
  1304. parents: ["monster"]
  1305. },
  1306. "calico-rat": {
  1307. name: "Calico Rat",
  1308. parents: ["rat"]
  1309. },
  1310. "panda": {
  1311. name: "Panda",
  1312. parents: ["mammal"]
  1313. },
  1314. "oni": {
  1315. name: "Oni",
  1316. parents: ["monster"]
  1317. },
  1318. "pegasus": {
  1319. name: "Pegasus",
  1320. parents: ["horse"]
  1321. },
  1322. "vulpera": {
  1323. name: "Vulpera",
  1324. parents: ["fennec-fox"]
  1325. },
  1326. "ceratosaurus": {
  1327. name: "Ceratosaurus",
  1328. parents: ["dinosaur"]
  1329. },
  1330. "nykur": {
  1331. name: "Nykur",
  1332. parents: ["horse", "monster"]
  1333. },
  1334. "giraffe": {
  1335. name: "Giraffe",
  1336. parents: ["mammal"]
  1337. },
  1338. "tauren": {
  1339. name: "Tauren",
  1340. parents: ["cow"]
  1341. },
  1342. "draconi": {
  1343. name: "Draconi",
  1344. parents: ["alien", "cat", "cyborg"]
  1345. },
  1346. "dire-wolf": {
  1347. name: "Dire Wolf",
  1348. parents: ["wolf"]
  1349. },
  1350. "ferromorph": {
  1351. name: "Ferromorph",
  1352. parents: ["construct"]
  1353. },
  1354. "meowth": {
  1355. name: "Meowth",
  1356. parents: ["cat", "pokemon"]
  1357. },
  1358. "pavodragon": {
  1359. name: "Pavodragon",
  1360. parents: ["dragon"]
  1361. },
  1362. "aaltranae": {
  1363. name: "Aaltranae",
  1364. parents: ["dragon"]
  1365. },
  1366. "cyborg": {
  1367. name: "Cyborg",
  1368. parents: ["machine"]
  1369. },
  1370. "draptor": {
  1371. name: "Draptor",
  1372. parents: ["dragon"]
  1373. },
  1374. "candy": {
  1375. name: "Candy",
  1376. parents: []
  1377. },
  1378. "drenath": {
  1379. name: "Drenath",
  1380. parents: ["dragon", "snake", "rabbit"]
  1381. },
  1382. "coyju": {
  1383. name: "Coyju",
  1384. parents: ["coyote", "kaiju"]
  1385. },
  1386. "kaiju": {
  1387. name: "Kaiju",
  1388. parents: ["monster"]
  1389. },
  1390. "nickit": {
  1391. name: "Nickit",
  1392. parents: ["pokemon", "cat"]
  1393. },
  1394. "lopunny": {
  1395. name: "Lopunny",
  1396. parents: ["pokemon", "rabbit"]
  1397. },
  1398. "korean-jindo-dog": {
  1399. name: "Korean Jindo Dog",
  1400. parents: ["dog"]
  1401. },
  1402. "naga": {
  1403. name: "Naga",
  1404. parents: ["snake", "monster"]
  1405. },
  1406. "undead": {
  1407. name: "Undead",
  1408. parents: ["monster"]
  1409. },
  1410. "whale": {
  1411. name: "Whale",
  1412. parents: ["fish"]
  1413. },
  1414. "gelato-bee": {
  1415. name: "Gelato Bee",
  1416. parents: ["bee"]
  1417. },
  1418. "bee": {
  1419. name: "Bee",
  1420. parents: ["insect"]
  1421. },
  1422. "gardevoir": {
  1423. name: "Gardevoir",
  1424. parents: ["pokemon"]
  1425. },
  1426. "ant": {
  1427. name: "Ant",
  1428. parents: ["insect"]
  1429. },
  1430. "frog": {
  1431. name: "Frog",
  1432. parents: ["amphibian"]
  1433. },
  1434. "amphibian": {
  1435. name: "Amphibian",
  1436. parents: ["animal", "aquatic"]
  1437. },
  1438. "pangolin": {
  1439. name: "Pangolin",
  1440. parents: ["mammal"]
  1441. },
  1442. "uragi'viidorn": {
  1443. name: "Uragi'viidorn",
  1444. parents: ["avian", "bear"]
  1445. },
  1446. "gryphdelphais": {
  1447. name: "Gryphdelphais",
  1448. parents: ["dolphin", "gryphon"]
  1449. },
  1450. "plush": {
  1451. name: "Plush",
  1452. parents: ["construct"]
  1453. },
  1454. "draiger": {
  1455. name: "Draiger",
  1456. parents: ["dragon","tiger"]
  1457. },
  1458. "foxsky": {
  1459. name: "Foxsky",
  1460. parents: ["fox", "husky"]
  1461. },
  1462. "umbreon": {
  1463. name: "Umbreon",
  1464. parents: ["eeveelution"]
  1465. },
  1466. "slime-dragon": {
  1467. name: "Slime Dragon",
  1468. parents: ["dragon", "goo"]
  1469. },
  1470. "enderman": {
  1471. name: "Enderman",
  1472. parents: ["monster"]
  1473. },
  1474. "gremlin": {
  1475. name: "Gremlin",
  1476. parents: ["monster"]
  1477. },
  1478. "dragonsune": {
  1479. name: "Dragonsune",
  1480. parents: ["dragon", "kitsune"]
  1481. },
  1482. "ghost": {
  1483. name: "Ghost",
  1484. parents: ["supernatural"]
  1485. },
  1486. "false-vampire-bat": {
  1487. name: "False Vampire Bat",
  1488. parents: ["bat"]
  1489. },
  1490. "succubus": {
  1491. name: "Succubus",
  1492. parents: ["demon"]
  1493. },
  1494. "mia": {
  1495. name: "Mia",
  1496. parents: ["canine"]
  1497. },
  1498. "rainbow": {
  1499. name: "Rainbow",
  1500. parents: ["monster"]
  1501. },
  1502. "solgaleo": {
  1503. name: "Solgaleo",
  1504. parents: ["pokemon"]
  1505. },
  1506. "lucent-nargacuga": {
  1507. name: "Lucent Nargacuga",
  1508. parents: ["nargacuga"]
  1509. },
  1510. "monster-hunter": {
  1511. name: "Monster Hunter",
  1512. parents: ["monster", "video-games"]
  1513. },
  1514. "leviathan": {
  1515. "name": "Leviathan",
  1516. "url": "sea-monster"
  1517. },
  1518. "bull": {
  1519. name: "Bull",
  1520. parents: ["mammal"]
  1521. },
  1522. "tanuki": {
  1523. name: "Tanuki",
  1524. parents: ["monster"]
  1525. },
  1526. "chakat": {
  1527. name: "Chakat",
  1528. parents: ["cat"]
  1529. },
  1530. "hydra": {
  1531. name: "Hydra",
  1532. parents: ["monster"]
  1533. },
  1534. "zigzagoon": {
  1535. name: "Zigzagoon",
  1536. parents: ["raccoon", "pokemon"]
  1537. },
  1538. "vulture": {
  1539. name: "Vulture",
  1540. parents: ["avian"]
  1541. },
  1542. "eastern-dragon": {
  1543. name: "Eastern Dragon",
  1544. parents: ["dragon"]
  1545. },
  1546. "gryffon": {
  1547. name: "Gryffon",
  1548. parents: ["phoenix", "red-panda"]
  1549. },
  1550. "amtsvane": {
  1551. name: "Amtsvane",
  1552. parents: ["reptile"]
  1553. },
  1554. "kigavi": {
  1555. name: "Kigavi",
  1556. parents: ["avian"]
  1557. },
  1558. "turian": {
  1559. name: "Turian",
  1560. parents: ["avian"]
  1561. },
  1562. "zeraora": {
  1563. name: "Zeraora",
  1564. parents: ["pokemon", "cat"]
  1565. },
  1566. "sandshrew": {
  1567. name: "Sandshrew",
  1568. parents: ["pokemon", "pangolin"]
  1569. },
  1570. "valais-blacknose-sheep": {
  1571. name: "Valais Blacknose Sheep",
  1572. parents: ["sheep"]
  1573. },
  1574. "novaleit": {
  1575. name: "Novaleit",
  1576. parents: ["mammal"]
  1577. },
  1578. "dunnoh": {
  1579. name: "Dunnoh",
  1580. parents: ["mammal"]
  1581. },
  1582. "lunaral-dragon": {
  1583. name: "Lunaral Dragon",
  1584. parents: ["dragon"]
  1585. },
  1586. "arctic-wolf": {
  1587. name: "Arctic Wolf",
  1588. parents: ["wolf"]
  1589. },
  1590. "donkey": {
  1591. name: "Donkey",
  1592. parents: ["horse"]
  1593. },
  1594. "chinchilla": {
  1595. name: "Chinchilla",
  1596. parents: ["rodent"]
  1597. },
  1598. "felkin": {
  1599. name: "Felkin",
  1600. parents: ["dragon"]
  1601. },
  1602. "tykeriel": {
  1603. name: "Tykeriel",
  1604. parents: ["avian"]
  1605. },
  1606. "folf": {
  1607. name: "Folf",
  1608. parents: ["fox", "wolf"]
  1609. },
  1610. "pooltoy": {
  1611. name: "Pooltoy",
  1612. parents: ["construct"]
  1613. },
  1614. "demi": {
  1615. name: "Demi",
  1616. parents: ["human"]
  1617. },
  1618. "stegosaurus": {
  1619. name: "Stegosaurus",
  1620. parents: ["dinosaur"]
  1621. },
  1622. "computer-virus": {
  1623. name: "Computer Virus",
  1624. parents: ["program"]
  1625. },
  1626. "program": {
  1627. name: "Program",
  1628. parents: ["construct"]
  1629. },
  1630. "space-springhare": {
  1631. name: "Space Springhare",
  1632. parents: ["hare"]
  1633. },
  1634. "river-drake": {
  1635. name: "River Drake",
  1636. parents: ["dragon"]
  1637. },
  1638. "djinn": {
  1639. "name": "Djinn",
  1640. "url": "supernatural"
  1641. },
  1642. "supernatural": {
  1643. name: "Supernatural",
  1644. parents: ["monster"]
  1645. },
  1646. "grasshopper-mouse": {
  1647. name: "Grasshopper Mouse",
  1648. parents: ["mouse"]
  1649. },
  1650. "somali-cat": {
  1651. name: "Somali Cat",
  1652. parents: ["cat"]
  1653. },
  1654. "minccino": {
  1655. name: "Minccino",
  1656. parents: ["pokemon", "chinchilla"]
  1657. },
  1658. "pine-marten": {
  1659. name: "Pine Marten",
  1660. parents: ["marten"]
  1661. },
  1662. "marten": {
  1663. name: "Marten",
  1664. parents: ["mustelid"]
  1665. },
  1666. "mustelid": {
  1667. name: "Mustelid",
  1668. parents: ["mammal"]
  1669. },
  1670. "caribou": {
  1671. name: "Caribou",
  1672. parents: ["deer"]
  1673. },
  1674. "gnoll": {
  1675. name: "Gnoll",
  1676. parents: ["hyena", "monster"]
  1677. },
  1678. "peacekeeper": {
  1679. name: "Peacekeeper",
  1680. parents: ["human"]
  1681. },
  1682. "river-otter": {
  1683. name: "River Otter",
  1684. parents: ["otter"]
  1685. },
  1686. "dhole": {
  1687. name: "Dhole",
  1688. parents: ["canine"]
  1689. },
  1690. "springbok": {
  1691. name: "Springbok",
  1692. parents: ["antelope"]
  1693. },
  1694. "marsupial": {
  1695. name: "Marsupial",
  1696. parents: ["mammal"]
  1697. },
  1698. "townsend-big-eared-bat": {
  1699. name: "Townsend Big-eared Bat",
  1700. parents: ["bat"]
  1701. },
  1702. "squirrel": {
  1703. name: "Squirrel",
  1704. parents: ["rodent"]
  1705. },
  1706. "magpie": {
  1707. name: "Magpie",
  1708. parents: ["corvid"]
  1709. },
  1710. "civet": {
  1711. name: "Civet",
  1712. parents: ["feliform"]
  1713. },
  1714. "feliform": {
  1715. name: "Feliform",
  1716. parents: ["mammal"]
  1717. },
  1718. "tiefling": {
  1719. name: "Tiefling",
  1720. parents: ["devil"]
  1721. },
  1722. "devil": {
  1723. name: "Devil",
  1724. parents: ["supernatural"]
  1725. },
  1726. "sika-deer": {
  1727. name: "Sika Deer",
  1728. parents: ["deer"]
  1729. },
  1730. "vaporeon": {
  1731. name: "Vaporeon",
  1732. parents: ["eeveelution"]
  1733. },
  1734. "leafeon": {
  1735. name: "Leafeon",
  1736. parents: ["eeveelution"]
  1737. },
  1738. "jolteon": {
  1739. name: "Jolteon",
  1740. parents: ["eeveelution"]
  1741. },
  1742. "spireborn": {
  1743. name: "Spireborn",
  1744. parents: ["zorgoia"]
  1745. },
  1746. "vampire": {
  1747. name: "Vampire",
  1748. parents: ["monster"]
  1749. },
  1750. "extraplanar": {
  1751. name: "Extraplanar",
  1752. parents: []
  1753. },
  1754. "goo": {
  1755. name: "Goo",
  1756. parents: []
  1757. },
  1758. "skink": {
  1759. name: "Skink",
  1760. parents: ["lizard"]
  1761. },
  1762. "bat-eared-fox": {
  1763. name: "Bat-eared Fox",
  1764. parents: ["fox"]
  1765. },
  1766. "belted-kingfisher": {
  1767. name: "Belted Kingfisher",
  1768. parents: ["avian"]
  1769. },
  1770. "omnifalcon": {
  1771. name: "Omnifalcon",
  1772. parents: ["gryphon", "falcon", "harpy-eagle"]
  1773. },
  1774. "falcon": {
  1775. name: "Falcon",
  1776. parents: ["bird-of-prey"]
  1777. },
  1778. "avali": {
  1779. name: "Avali",
  1780. parents: ["avian", "alien"]
  1781. },
  1782. "arctic-fox": {
  1783. name: "Arctic Fox",
  1784. parents: ["fox"]
  1785. },
  1786. "snow-tiger": {
  1787. name: "Snow Tiger",
  1788. parents: ["tiger"]
  1789. },
  1790. "marble-fox": {
  1791. name: "Marble Fox",
  1792. parents: ["fox"]
  1793. },
  1794. "king-wickerbeast": {
  1795. name: "King Wickerbeast",
  1796. parents: ["wickerbeast"]
  1797. },
  1798. "wickerbeast": {
  1799. name: "Wickerbeast",
  1800. parents: ["mammal"]
  1801. },
  1802. "european-polecat": {
  1803. name: "European Polecat",
  1804. parents: ["polecat"]
  1805. },
  1806. "polecat": {
  1807. name: "Polecat",
  1808. parents: ["mustelid"]
  1809. },
  1810. "teshari": {
  1811. name: "Teshari",
  1812. parents: ["avian", "raptor"]
  1813. },
  1814. "alicorn": {
  1815. name: "Alicorn",
  1816. parents: ["horse"]
  1817. },
  1818. "atlas-moth": {
  1819. name: "Atlas Moth",
  1820. parents: ["moth"]
  1821. },
  1822. "owlbear": {
  1823. name: "Owlbear",
  1824. parents: ["owl", "bear", "monster"]
  1825. },
  1826. "owl": {
  1827. name: "Owl",
  1828. parents: ["avian"]
  1829. },
  1830. "silvertongue": {
  1831. name: "Silvertongue",
  1832. parents: ["reptile"]
  1833. },
  1834. "ahuizotl": {
  1835. name: "Ahuizotl",
  1836. parents: ["monster"]
  1837. },
  1838. "ender-dragon": {
  1839. name: "Ender Dragon",
  1840. parents: ["dragon"]
  1841. },
  1842. "bruhathkayosaurus": {
  1843. name: "Bruhathkayosaurus",
  1844. parents: ["sauropod"]
  1845. },
  1846. "sauropod": {
  1847. name: "Sauropod",
  1848. parents: ["dinosaur"]
  1849. },
  1850. "black-sable-antelope": {
  1851. name: "Black Sable Antelope",
  1852. parents: ["antelope"]
  1853. },
  1854. "slime": {
  1855. name: "Slime",
  1856. parents: ["goo"]
  1857. },
  1858. "utahraptor": {
  1859. name: "Utahraptor",
  1860. parents: ["raptor"]
  1861. },
  1862. "indian-giant-squirrel": {
  1863. name: "Indian Giant Squirrel",
  1864. parents: ["squirrel"]
  1865. },
  1866. "golden-retriever": {
  1867. name: "Golden Retriever",
  1868. parents: ["dog"]
  1869. },
  1870. "triceratops": {
  1871. name: "Triceratops",
  1872. parents: ["dinosaur"]
  1873. },
  1874. "drake": {
  1875. name: "Drake",
  1876. parents: ["dragon"]
  1877. },
  1878. "okapi": {
  1879. name: "Okapi",
  1880. parents: ["giraffe"]
  1881. },
  1882. "arctic-hare": {
  1883. name: "Arctic Hare",
  1884. parents: ["hare"]
  1885. },
  1886. "hare": {
  1887. name: "Hare",
  1888. parents: ["leporidae"]
  1889. },
  1890. "leporidae": {
  1891. name: "Leporidae",
  1892. parents: ["mammal"]
  1893. },
  1894. "leopard-gecko": {
  1895. name: "Leopard Gecko",
  1896. parents: ["gecko"]
  1897. },
  1898. "dreamspawn": {
  1899. name: "Dreamspawn",
  1900. parents: ["illusion"]
  1901. },
  1902. "illusion": {
  1903. name: "Illusion",
  1904. parents: []
  1905. },
  1906. "purrloin": {
  1907. name: "Purrloin",
  1908. parents: ["cat", "pokemon"]
  1909. },
  1910. "noivern": {
  1911. name: "Noivern",
  1912. parents: ["bat", "dragon", "pokemon"]
  1913. },
  1914. "hedgehog": {
  1915. name: "Hedgehog",
  1916. parents: ["mammal"]
  1917. },
  1918. "liger": {
  1919. name: "Liger",
  1920. parents: ["lion", "tiger", "hybrid"]
  1921. },
  1922. "hybrid": {
  1923. name: "Hybrid",
  1924. parents: []
  1925. },
  1926. "drider": {
  1927. name: "Drider",
  1928. parents: ["spider"]
  1929. },
  1930. "sabresune": {
  1931. name: "Sabresune",
  1932. parents: ["kitsune", "sabertooth-tiger"]
  1933. },
  1934. "ditto": {
  1935. name: "Ditto",
  1936. parents: ["pokemon", "goo"]
  1937. },
  1938. "amogus": {
  1939. name: "Amogus",
  1940. parents: ["deity"]
  1941. },
  1942. "ferret": {
  1943. name: "Ferret",
  1944. parents: ["mustelid"]
  1945. },
  1946. "guinea-pig": {
  1947. name: "Guinea Pig",
  1948. parents: ["rodent"]
  1949. },
  1950. "viper": {
  1951. name: "Viper",
  1952. parents: ["snake"]
  1953. },
  1954. "cinderace": {
  1955. name: "Cinderace",
  1956. parents: ["pokemon", "rabbit"]
  1957. },
  1958. "caudin": {
  1959. name: "Caudin",
  1960. parents: ["dragon"]
  1961. },
  1962. "red-winged-blackbird": {
  1963. name: "Red-Winged Blackbird",
  1964. parents: ["avian"]
  1965. },
  1966. "hooded-wheater": {
  1967. name: "Hooded Wheater",
  1968. parents: ["passerine"]
  1969. },
  1970. "passerine": {
  1971. name: "Passerine",
  1972. parents: ["avian"]
  1973. },
  1974. "gieeg": {
  1975. name: "Gieeg",
  1976. parents: ["alien"]
  1977. },
  1978. "ringtail": {
  1979. name: "Ringtail",
  1980. parents: ["raccoon"]
  1981. },
  1982. "hisuian-zoroark": {
  1983. name: "Hisuian Zoroark",
  1984. parents: ["zoroark", "hisuian"]
  1985. },
  1986. "hisuian": {
  1987. name: "Hisuian",
  1988. parents: ["regional-pokemon"]
  1989. },
  1990. "regional-pokemon": {
  1991. name: "Regional Pokemon",
  1992. parents: ["pokemon"]
  1993. },
  1994. "cybeast": {
  1995. name: "Cybeast",
  1996. parents: ["computer-virus"]
  1997. },
  1998. "javira-dragon": {
  1999. name: "Javira Dragon",
  2000. parents: ["dragon"]
  2001. },
  2002. "koopew": {
  2003. name: "Koopew",
  2004. parents: ["dragon", "alien"]
  2005. },
  2006. "nevrean": {
  2007. name: "Nevrean",
  2008. parents: ["avian", "vilous"]
  2009. },
  2010. "vilous": {
  2011. name: "Vilous Species",
  2012. parents: []
  2013. },
  2014. "titanoboa": {
  2015. name: "Titanoboa",
  2016. parents: ["snake"]
  2017. },
  2018. "raichu": {
  2019. name: "Raichu",
  2020. parents: ["pikachu"]
  2021. },
  2022. "taur": {
  2023. name: "Taur",
  2024. parents: []
  2025. },
  2026. "continental-giant-rabbit": {
  2027. name: "Continental Giant Rabbit",
  2028. parents: ["rabbit"]
  2029. },
  2030. "demigryph": {
  2031. name: "Demigryph",
  2032. parents: ["lion", "eagle"]
  2033. },
  2034. "bald-eagle": {
  2035. name: "Bald Eagle",
  2036. parents: ["eagle"]
  2037. },
  2038. "kestrel": {
  2039. name: "Kestrel",
  2040. parents: ["falcon"]
  2041. },
  2042. "mockingbird": {
  2043. name: "Mockingbird",
  2044. parents: ["songbird"]
  2045. },
  2046. "songbird": {
  2047. name: "Songbird",
  2048. parents: ["avian"]
  2049. },
  2050. "bird-of-prey": {
  2051. name: "Bird of Prey",
  2052. parents: ["avian"]
  2053. },
  2054. "marowak": {
  2055. name: "Marowak",
  2056. parents: ["pokemon", "reptile"]
  2057. },
  2058. "joltik": {
  2059. name: "Joltik",
  2060. parents: ["pokemon", "insect"]
  2061. },
  2062. "mink": {
  2063. name: "Mink",
  2064. parents: ["mustelid"]
  2065. },
  2066. "sandcat": {
  2067. name: "Sandcat",
  2068. parents: ["cat"]
  2069. },
  2070. "hrothgar": {
  2071. name: "Hrothgar",
  2072. parents: ["cat"]
  2073. },
  2074. "garchomp": {
  2075. name: "Garchomp",
  2076. parents: ["dragon", "pokemon"]
  2077. },
  2078. "nargacuga": {
  2079. name: "Nargacuga",
  2080. parents: ["monster-hunter"]
  2081. },
  2082. "sable": {
  2083. name: "Sable",
  2084. parents: ["marten"]
  2085. },
  2086. "deino": {
  2087. name: "Deino",
  2088. parents: ["pokemon", "dinosaur"]
  2089. },
  2090. "housecat": {
  2091. name: "Housecat",
  2092. parents: ["cat"]
  2093. },
  2094. "bombay-cat": {
  2095. name: "Bombay Cat",
  2096. parents: ["housecat"]
  2097. },
  2098. "maine-coon": {
  2099. name: "Maine Coon",
  2100. parents: ["housecat"]
  2101. },
  2102. "coelacanth": {
  2103. name: "Coelacanth",
  2104. parents: ["fish"]
  2105. },
  2106. "silvally": {
  2107. name: "Silvally",
  2108. parents: ["legendary-pokemon"]
  2109. },
  2110. "legendary-pokemon": {
  2111. name: "Legendary Pokemon",
  2112. parents: ["pokemon"]
  2113. },
  2114. "great-maccao": {
  2115. name: "Great Maccao",
  2116. parents: ["monster-hunter", "raptor"]
  2117. },
  2118. "shapeshifter": {
  2119. name: "shapeshifter",
  2120. parents: []
  2121. },
  2122. "obstagoon": {
  2123. name: "Obstagoon",
  2124. parents: ["zigzagoon"]
  2125. },
  2126. "thomsons-gazelle": {
  2127. name: "Thomsons Gazelle",
  2128. parents: ["gazelle"]
  2129. },
  2130. "gazelle": {
  2131. name: "Gazelle",
  2132. parents: ["antelope"]
  2133. },
  2134. "monkey": {
  2135. name: "Monkey",
  2136. parents: ["primate"]
  2137. },
  2138. "serval": {
  2139. name: "Serval",
  2140. parents: ["cat"]
  2141. },
  2142. "swampert": {
  2143. name: "Swampert",
  2144. parents: ["pokemon"]
  2145. },
  2146. "red-fox": {
  2147. name: "Red Fox",
  2148. parents: ["fox"]
  2149. },
  2150. "sliver": {
  2151. name: "Sliver",
  2152. parents: ["alien"]
  2153. },
  2154. "sergix": {
  2155. name: "Sergix",
  2156. parents: ["demon", "sergal", "phoenix"]
  2157. },
  2158. "behemoth": {
  2159. name: "Behemoth",
  2160. parents: ["monster", "dragon", "final-fantasy"]
  2161. },
  2162. "final-fantasy": {
  2163. name: "Final Fantasy",
  2164. parents: ["video-games"]
  2165. },
  2166. "video-games": {
  2167. name: "Video Games",
  2168. parents: []
  2169. },
  2170. "eastern-cottontail-rabbit": {
  2171. name: "Eastern Cottontail Rabbit",
  2172. parents: ["rabbit"]
  2173. },
  2174. "thresher-shark": {
  2175. name: "Thresher Shark",
  2176. parents: ["shark"]
  2177. },
  2178. "ai": {
  2179. name: "AI",
  2180. parents: []
  2181. },
  2182. "black-tip-reef-shark": {
  2183. name: "Black Tip Reef Shark",
  2184. parents: ["shark"]
  2185. },
  2186. "quetzalcoatlus-northropi": {
  2187. name: "Quetzalcoatlus Northropi",
  2188. parents: ["dinosaur"]
  2189. },
  2190. "snivy": {
  2191. name: "Snivy",
  2192. parents: ["pokemon", "snake"]
  2193. },
  2194. "nedynvor": {
  2195. name: "Nedynvor",
  2196. parents: ["avian"]
  2197. },
  2198. "marbled-polecat": {
  2199. name: "Marbled Polecat",
  2200. parents: ["polecat"]
  2201. },
  2202. "ape": {
  2203. name: "Ape",
  2204. parents: ["primate"]
  2205. },
  2206. "primate": {
  2207. name: "Primate",
  2208. parents: ["mammal"]
  2209. },
  2210. "kulve-taroth": {
  2211. name: "Kulve Taroth",
  2212. parents: ["monster-hunter", "dragon"]
  2213. },
  2214. "irthos": {
  2215. name: "Irthos",
  2216. parents: ["dragon"]
  2217. },
  2218. "furred-dragon": {
  2219. name: "Furred Dragon",
  2220. parents: ["dragon"]
  2221. },
  2222. "hippogriff": {
  2223. name: "Hippogriff",
  2224. parents: ["gryphon", "horse"]
  2225. },
  2226. "peregrine-falcon": {
  2227. name: "Peregrine Falcon",
  2228. parents: ["falcon"]
  2229. },
  2230. "deinonychus": {
  2231. name: "Deinonychus",
  2232. parents: ["theropod"]
  2233. },
  2234. "theropod": {
  2235. name: "Theropod",
  2236. parents: ["dinosaur"]
  2237. },
  2238. "chocobo": {
  2239. name: "Chocobo",
  2240. parents: ["avian"]
  2241. },
  2242. "stilio": {
  2243. name: "Stilio",
  2244. parents: ["snake"]
  2245. },
  2246. "kardox": {
  2247. name: "Kardox",
  2248. parents: ["wolf", "dragon", "horse"]
  2249. },
  2250. "food": {
  2251. name: "Food",
  2252. parents: ["object"]
  2253. },
  2254. "object": {
  2255. name: "Object",
  2256. parents: []
  2257. },
  2258. "honey-badger": {
  2259. name: "honey-badger",
  2260. parents: ["badger"]
  2261. },
  2262. "badger": {
  2263. name: "Badger",
  2264. parents: ["mustelid"]
  2265. },
  2266. "rattlesnake": {
  2267. name: "Rattlesnake",
  2268. parents: ["snake"]
  2269. },
  2270. "diamondback": {
  2271. name: "Diamondback",
  2272. parents: ["snake"]
  2273. },
  2274. "spidox": {
  2275. name: "Spidox",
  2276. parents: ["spider", "fox"]
  2277. },
  2278. "kodiak-bear": {
  2279. name: "Kodiak Bear",
  2280. parents: ["bear"]
  2281. },
  2282. "alurean": {
  2283. name: "Alurean",
  2284. parents: ["saurian", "aquatic", "alien"]
  2285. },
  2286. "aquatic": {
  2287. name: "Aquatic",
  2288. parents: []
  2289. },
  2290. "wyvern": {
  2291. name: "Wyvern",
  2292. parents: ["dragon"]
  2293. },
  2294. "catfish": {
  2295. name: "Catfish",
  2296. parents: ["fish"]
  2297. },
  2298. "vesempress": {
  2299. name: "Vesempress",
  2300. parents: ["vespiquen"]
  2301. },
  2302. "vespiquen": {
  2303. name: "Vespiquen",
  2304. parents: ["pokemon", "bee"]
  2305. },
  2306. "gaelterranian": {
  2307. name: "Gaelterranian",
  2308. parents: ["alien"]
  2309. },
  2310. "pistrogre": {
  2311. name: "Pistrogre",
  2312. parents: ["alien", "deity", "insect", "reptile"]
  2313. },
  2314. "komodo-dragon": {
  2315. name: "Komodo Dragon",
  2316. parents: ["lizard"]
  2317. },
  2318. "shiny": {
  2319. name: "Shiny",
  2320. parents: ["pokemon"]
  2321. },
  2322. "latex": {
  2323. name: "Latex",
  2324. parents: []
  2325. },
  2326. "praying-mantis": {
  2327. name: "Praying Mantis",
  2328. parents: ["insect"]
  2329. },
  2330. "espeon": {
  2331. name: "Espeon",
  2332. parents: ["eeveelution"]
  2333. },
  2334. "skullwolf": {
  2335. name: "Skullwolf",
  2336. parents: ["wolf", "skullmonster"]
  2337. },
  2338. "skulldragon": {
  2339. name: "Skulldragon",
  2340. parents: ["dragon", "skullmonster"]
  2341. },
  2342. "skullmonster": {
  2343. name: "Skullmonster",
  2344. parents: ["monster"]
  2345. },
  2346. "ferrin": {
  2347. name: "Ferrin",
  2348. parents: ["dragon"]
  2349. },
  2350. "rusty-spotted-cat": {
  2351. name: "Rusty-Spotted Cat",
  2352. parents: ["cat"]
  2353. },
  2354. "elf": {
  2355. name: "Elf",
  2356. parents: ["humanoid"]
  2357. },
  2358. "humanoid": {
  2359. name: "Humanoid",
  2360. parents: []
  2361. },
  2362. "allusus": {
  2363. name: "Allusus",
  2364. parents: ["humanoid"]
  2365. },
  2366. "saltwater-crocodile": {
  2367. name: "Saltwater Crocodile",
  2368. parents: ["crocodile"]
  2369. },
  2370. "eastern-grey-kangaroo": {
  2371. name: "Eastern Grey Kangaroo",
  2372. parents: ["kangaroo"]
  2373. },
  2374. "latenivenatrix": {
  2375. name: "Latenivenatrix",
  2376. parents: ["troodontidae"]
  2377. },
  2378. "troodontidae": {
  2379. name: "Troodontidae",
  2380. parents: ["theropod", "avian"]
  2381. },
  2382. "duck": {
  2383. name: "Duck",
  2384. parents: ["waterfowl"]
  2385. },
  2386. "waterfowl": {
  2387. name: "Waterfowl",
  2388. parents: ["avian"]
  2389. },
  2390. "earless-monitor-lizard": {
  2391. name: "Earless Monitor Lizard",
  2392. parents: ["monitor-lizard"]
  2393. },
  2394. "aerosynth": {
  2395. name: "Aerosynth",
  2396. parents: ["aeromorph", "synth"]
  2397. },
  2398. "phenx": {
  2399. name: "Phenx",
  2400. parents: ["uragi"]
  2401. },
  2402. "uragi": {
  2403. name: "Uragi",
  2404. parents: ["avian", "bear"]
  2405. },
  2406. "driger": {
  2407. name: "Driger",
  2408. parents: ["dragon", "tiger"]
  2409. },
  2410. "homestuck-troll": {
  2411. name: "Troll (Homestuck)",
  2412. parents: ["humanoid"]
  2413. },
  2414. "riolu": {
  2415. name: "Riolu",
  2416. parents: ["pokemon"]
  2417. },
  2418. "king-cheetah": {
  2419. name: "King Cheetah",
  2420. parents: ["cheetah"]
  2421. },
  2422. "secretary-bird": {
  2423. name: "Secretary Bird",
  2424. parents: ["bird-of-prey"]
  2425. },
  2426. "russian-blue": {
  2427. name: "Russian Blue",
  2428. parents: ["housecat"]
  2429. },
  2430. "wholphin": {
  2431. name: "Wholphin",
  2432. parents: ["whale", "dolphin"]
  2433. },
  2434. "sea-dragon": {
  2435. name: "Sea Dragon",
  2436. parents: ["dragon", "aquatic"]
  2437. },
  2438. "brown-bear": {
  2439. name: "Brown Bear",
  2440. parents: ["bear"]
  2441. },
  2442. "vampire-bat": {
  2443. name: "Vampire Bat",
  2444. parents: ["bat"]
  2445. },
  2446. "dilophosaurus": {
  2447. name: "Dilophosaurus",
  2448. parents: ["theropod"]
  2449. },
  2450. "nagainini": {
  2451. name: "Nagainini",
  2452. parents: ["naga"]
  2453. },
  2454. "kaizleon": {
  2455. name: "Kaizleon",
  2456. parents: ["humanoid"]
  2457. },
  2458. "dragoyle": {
  2459. name: "Dragoyle",
  2460. parents: ["dragon", "gargoyle"]
  2461. },
  2462. "gargoyle": {
  2463. name: "Gargoyle",
  2464. parents: ["construct", "monster"]
  2465. },
  2466. "sea-serpent": {
  2467. name: "Sea Serpent",
  2468. parents: ["aquatic", "monster"]
  2469. },
  2470. "dutch-angel-dragon": {
  2471. name: "Dutch Angel Dragon",
  2472. parents: ["dragon", "avian"]
  2473. },
  2474. }
  2475. //species
  2476. function getSpeciesInfo(speciesList) {
  2477. let result = new Set();
  2478. speciesList.flatMap(getSpeciesInfoHelper).forEach(entry => {
  2479. result.add(entry)
  2480. });
  2481. return Array.from(result);
  2482. };
  2483. function getSpeciesInfoHelper(species) {
  2484. if (!speciesData[species]) {
  2485. console.warn(species + " doesn't exist");
  2486. return [];
  2487. }
  2488. if (speciesData[species].parents) {
  2489. return [species].concat(speciesData[species].parents.flatMap(parent => getSpeciesInfoHelper(parent)));
  2490. } else {
  2491. return [species];
  2492. }
  2493. }
  2494. characterMakers.push(() => makeCharacter(
  2495. {
  2496. name: "Fen",
  2497. species: ["crux"],
  2498. description: {
  2499. title: "Bio",
  2500. text: "Very furry. Sheds on everything."
  2501. },
  2502. tags: [
  2503. "anthro",
  2504. "goo"
  2505. ]
  2506. },
  2507. {
  2508. front: {
  2509. height: math.unit(12, "feet"),
  2510. weight: math.unit(2400, "lb"),
  2511. preyCapacity: math.unit(1, "people"),
  2512. name: "Front",
  2513. image: {
  2514. source: "./media/characters/fen/front.svg",
  2515. extra: 1804/1562,
  2516. bottom: 205/2009
  2517. },
  2518. extraAttributes: {
  2519. pawSize: {
  2520. name: "Paw Size",
  2521. power: 2,
  2522. type: "area",
  2523. base: math.unit(0.35, "m^2")
  2524. }
  2525. }
  2526. },
  2527. diving: {
  2528. height: math.unit(4.9, "meters"),
  2529. weight: math.unit(2400, "lb"),
  2530. name: "Diving",
  2531. image: {
  2532. source: "./media/characters/fen/diving.svg"
  2533. }
  2534. },
  2535. sleeby: {
  2536. height: math.unit(3.45, "meters"),
  2537. weight: math.unit(2400, "lb"),
  2538. name: "Sleeby",
  2539. image: {
  2540. source: "./media/characters/fen/sleeby.svg"
  2541. }
  2542. },
  2543. goo: {
  2544. height: math.unit(12, "feet"),
  2545. weight: math.unit(3600, "lb"),
  2546. volume: math.unit(1000, "liters"),
  2547. preyCapacity: math.unit(6, "people"),
  2548. name: "Goo",
  2549. image: {
  2550. source: "./media/characters/fen/goo.svg",
  2551. extra: 1307/1071,
  2552. bottom: 134/1441
  2553. }
  2554. },
  2555. horror: {
  2556. height: math.unit(13.6, "feet"),
  2557. weight: math.unit(2400, "lb"),
  2558. preyCapacity: math.unit(1, "people"),
  2559. name: "Horror",
  2560. image: {
  2561. source: "./media/characters/fen/horror.svg",
  2562. extra: 893/797,
  2563. bottom: 0/893
  2564. }
  2565. },
  2566. gooNsfw: {
  2567. height: math.unit(12, "feet"),
  2568. weight: math.unit(3750, "lb"),
  2569. volume: math.unit(1000, "liters"),
  2570. preyCapacity: math.unit(6, "people"),
  2571. name: "Goo (NSFW)",
  2572. image: {
  2573. source: "./media/characters/fen/goo-nsfw.svg",
  2574. extra: 1875/1734,
  2575. bottom: 122/1997
  2576. }
  2577. },
  2578. maw: {
  2579. height: math.unit(5.03, "feet"),
  2580. name: "Maw",
  2581. image: {
  2582. source: "./media/characters/fen/maw.svg"
  2583. }
  2584. },
  2585. gooCeiling: {
  2586. height: math.unit(6.6, "feet"),
  2587. weight: math.unit(3000, "lb"),
  2588. volume: math.unit(1000, "liters"),
  2589. preyCapacity: math.unit(6, "people"),
  2590. name: "Maw (Goo)",
  2591. image: {
  2592. source: "./media/characters/fen/goo-maw.svg"
  2593. }
  2594. },
  2595. paw: {
  2596. height: math.unit(3.77, "feet"),
  2597. name: "Paw",
  2598. image: {
  2599. source: "./media/characters/fen/paw.svg"
  2600. },
  2601. extraAttributes: {
  2602. "toeSize": {
  2603. name: "Toe Size",
  2604. power: 2,
  2605. type: "area",
  2606. base: math.unit(0.02875, "m^2")
  2607. },
  2608. "pawSize": {
  2609. name: "Paw Size",
  2610. power: 2,
  2611. type: "area",
  2612. base: math.unit(0.378, "m^2")
  2613. },
  2614. }
  2615. },
  2616. tail: {
  2617. height: math.unit(12.1, "feet"),
  2618. name: "Tail",
  2619. image: {
  2620. source: "./media/characters/fen/tail.svg"
  2621. }
  2622. },
  2623. tailFull: {
  2624. height: math.unit(12.1, "feet"),
  2625. name: "Full Tail",
  2626. image: {
  2627. source: "./media/characters/fen/tail-full.svg"
  2628. }
  2629. },
  2630. back: {
  2631. height: math.unit(12, "feet"),
  2632. weight: math.unit(2400, "lb"),
  2633. name: "Back",
  2634. image: {
  2635. source: "./media/characters/fen/back.svg",
  2636. },
  2637. info: {
  2638. description: {
  2639. mode: "append",
  2640. text: "\n\nHe is not currently looking at you."
  2641. }
  2642. }
  2643. },
  2644. full: {
  2645. height: math.unit(1.85, "meter"),
  2646. weight: math.unit(3200, "lb"),
  2647. preyCapacity: math.unit(3, "people"),
  2648. name: "Full",
  2649. image: {
  2650. source: "./media/characters/fen/full.svg",
  2651. extra: 1133/859,
  2652. bottom: 145/1278
  2653. },
  2654. info: {
  2655. description: {
  2656. mode: "append",
  2657. text: "\n\nMunch."
  2658. }
  2659. }
  2660. },
  2661. gooLounging: {
  2662. height: math.unit(4.53, "feet"),
  2663. weight: math.unit(3000, "lb"),
  2664. preyCapacity: math.unit(6, "people"),
  2665. name: "Goo (Lounging)",
  2666. image: {
  2667. source: "./media/characters/fen/goo-lounging.svg",
  2668. bottom: 116 / 613
  2669. }
  2670. },
  2671. lounging: {
  2672. height: math.unit(10.52, "feet"),
  2673. weight: math.unit(2400, "lb"),
  2674. name: "Lounging",
  2675. image: {
  2676. source: "./media/characters/fen/lounging.svg"
  2677. }
  2678. },
  2679. },
  2680. [
  2681. {
  2682. name: "Small",
  2683. height: math.unit(2.2428, "meter")
  2684. },
  2685. {
  2686. name: "Normal",
  2687. height: math.unit(12, "feet"),
  2688. default: true,
  2689. },
  2690. {
  2691. name: "Big",
  2692. height: math.unit(20, "feet")
  2693. },
  2694. {
  2695. name: "Minimacro",
  2696. height: math.unit(40, "feet"),
  2697. info: {
  2698. description: {
  2699. mode: "append",
  2700. text: "\n\nTOO DAMN BIG"
  2701. }
  2702. }
  2703. },
  2704. {
  2705. name: "Macro",
  2706. height: math.unit(100, "feet"),
  2707. info: {
  2708. description: {
  2709. mode: "append",
  2710. text: "\n\nTOO DAMN BIG"
  2711. }
  2712. }
  2713. },
  2714. {
  2715. name: "Megamacro",
  2716. height: math.unit(2, "miles")
  2717. },
  2718. {
  2719. name: "Gigamacro",
  2720. height: math.unit(10, "earths")
  2721. },
  2722. ]
  2723. ))
  2724. characterMakers.push(() => makeCharacter(
  2725. { name: "Sofia Fluttertail", species: ["rough-collie"], tags: ["anthro"] },
  2726. {
  2727. front: {
  2728. height: math.unit(183, "cm"),
  2729. weight: math.unit(80, "kg"),
  2730. name: "Front",
  2731. image: {
  2732. source: "./media/characters/sofia-fluttertail/front.svg",
  2733. bottom: 0.01,
  2734. extra: 2154 / 2081
  2735. }
  2736. },
  2737. frontAlt: {
  2738. height: math.unit(183, "cm"),
  2739. weight: math.unit(80, "kg"),
  2740. name: "Front (alt)",
  2741. image: {
  2742. source: "./media/characters/sofia-fluttertail/front-alt.svg"
  2743. }
  2744. },
  2745. back: {
  2746. height: math.unit(183, "cm"),
  2747. weight: math.unit(80, "kg"),
  2748. name: "Back",
  2749. image: {
  2750. source: "./media/characters/sofia-fluttertail/back.svg"
  2751. }
  2752. },
  2753. kneeling: {
  2754. height: math.unit(125, "cm"),
  2755. weight: math.unit(80, "kg"),
  2756. name: "Kneeling",
  2757. image: {
  2758. source: "./media/characters/sofia-fluttertail/kneeling.svg",
  2759. extra: 1033 / 977,
  2760. bottom: 23.7 / 1057
  2761. }
  2762. },
  2763. maw: {
  2764. height: math.unit(183 / 5, "cm"),
  2765. name: "Maw",
  2766. image: {
  2767. source: "./media/characters/sofia-fluttertail/maw.svg"
  2768. }
  2769. },
  2770. mawcloseup: {
  2771. height: math.unit(183 / 5 * 0.41, "cm"),
  2772. name: "Maw (Closeup)",
  2773. image: {
  2774. source: "./media/characters/sofia-fluttertail/maw-closeup.svg"
  2775. }
  2776. },
  2777. paws: {
  2778. height: math.unit(1.17, "feet"),
  2779. name: "Paws",
  2780. image: {
  2781. source: "./media/characters/sofia-fluttertail/paws.svg",
  2782. extra: 851 / 851,
  2783. bottom: 17 / 868
  2784. }
  2785. },
  2786. },
  2787. [
  2788. {
  2789. name: "Normal",
  2790. height: math.unit(1.83, "meter")
  2791. },
  2792. {
  2793. name: "Size Thief",
  2794. height: math.unit(18, "feet")
  2795. },
  2796. {
  2797. name: "50 Foot Collie",
  2798. height: math.unit(50, "feet")
  2799. },
  2800. {
  2801. name: "Macro",
  2802. height: math.unit(96, "feet"),
  2803. default: true
  2804. },
  2805. {
  2806. name: "Megamerger",
  2807. height: math.unit(650, "feet")
  2808. },
  2809. ]
  2810. ))
  2811. characterMakers.push(() => makeCharacter(
  2812. { name: "March", species: ["dragon"], tags: ["anthro"] },
  2813. {
  2814. front: {
  2815. height: math.unit(7, "feet"),
  2816. weight: math.unit(100, "kg"),
  2817. name: "Front",
  2818. image: {
  2819. source: "./media/characters/march/front.svg",
  2820. extra: 1992/1851,
  2821. bottom: 39/2031
  2822. }
  2823. },
  2824. foot: {
  2825. height: math.unit(0.9, "feet"),
  2826. name: "Foot",
  2827. image: {
  2828. source: "./media/characters/march/foot.svg"
  2829. }
  2830. },
  2831. },
  2832. [
  2833. {
  2834. name: "Normal",
  2835. height: math.unit(7.9, "feet")
  2836. },
  2837. {
  2838. name: "Macro",
  2839. height: math.unit(220, "meters")
  2840. },
  2841. {
  2842. name: "Megamacro",
  2843. height: math.unit(2.98, "km"),
  2844. default: true
  2845. },
  2846. {
  2847. name: "Gigamacro",
  2848. height: math.unit(15963, "km")
  2849. },
  2850. {
  2851. name: "Teramacro",
  2852. height: math.unit(2980000000, "km")
  2853. },
  2854. {
  2855. name: "Examacro",
  2856. height: math.unit(250, "parsecs")
  2857. },
  2858. ]
  2859. ))
  2860. characterMakers.push(() => makeCharacter(
  2861. { name: "Noir", species: ["woodpecker"], tags: ["anthro"] },
  2862. {
  2863. front: {
  2864. height: math.unit(6, "feet"),
  2865. weight: math.unit(60, "kg"),
  2866. name: "Front",
  2867. image: {
  2868. source: "./media/characters/noir/front.svg",
  2869. extra: 1793/1668,
  2870. bottom: 74/1867
  2871. }
  2872. },
  2873. },
  2874. [
  2875. {
  2876. name: "Normal",
  2877. height: math.unit(6.6, "feet")
  2878. },
  2879. {
  2880. name: "Macro",
  2881. height: math.unit(500, "feet")
  2882. },
  2883. {
  2884. name: "Megamacro",
  2885. height: math.unit(2.5, "km"),
  2886. default: true
  2887. },
  2888. {
  2889. name: "Gigamacro",
  2890. height: math.unit(22500, "km")
  2891. },
  2892. {
  2893. name: "Teramacro",
  2894. height: math.unit(2500000000, "km")
  2895. },
  2896. {
  2897. name: "Examacro",
  2898. height: math.unit(200, "parsecs")
  2899. },
  2900. ]
  2901. ))
  2902. characterMakers.push(() => makeCharacter(
  2903. { name: "Okuri", species: ["sabresune"], tags: ["anthro"] },
  2904. {
  2905. front: {
  2906. height: math.unit(7, "feet"),
  2907. weight: math.unit(100, "kg"),
  2908. name: "Front",
  2909. image: {
  2910. source: "./media/characters/okuri/front.svg",
  2911. extra: 596/554,
  2912. bottom: 17/613
  2913. }
  2914. },
  2915. back: {
  2916. height: math.unit(7, "feet"),
  2917. weight: math.unit(100, "kg"),
  2918. name: "Back",
  2919. image: {
  2920. source: "./media/characters/okuri/back.svg",
  2921. extra: 797/717,
  2922. bottom: 16/813
  2923. }
  2924. },
  2925. wings: {
  2926. height: math.unit(7, "feet"),
  2927. weight: math.unit(100, "kg"),
  2928. name: "Wings",
  2929. image: {
  2930. source: "./media/characters/okuri/wings.svg",
  2931. extra: 773/692,
  2932. bottom: 16/789
  2933. }
  2934. },
  2935. head: {
  2936. height: math.unit(2.17, "feet"),
  2937. name: "Head",
  2938. image: {
  2939. source: "./media/characters/okuri/head.svg"
  2940. }
  2941. },
  2942. casual: {
  2943. height: math.unit(7, "feet"),
  2944. weight: math.unit(100, "kg"),
  2945. name: "Casual",
  2946. image: {
  2947. source: "./media/characters/okuri/casual.svg",
  2948. extra: 463/421,
  2949. bottom: 14/477
  2950. }
  2951. },
  2952. deity: {
  2953. height: math.unit(7, "feet"),
  2954. weight: math.unit(100, "kg"),
  2955. name: "Deity",
  2956. image: {
  2957. source: "./media/characters/okuri/deity.svg",
  2958. extra: 463/421,
  2959. bottom: 14/477
  2960. }
  2961. },
  2962. armor: {
  2963. height: math.unit(7, "feet"),
  2964. weight: math.unit(100, "kg"),
  2965. name: "Armor",
  2966. image: {
  2967. source: "./media/characters/okuri/armor.svg",
  2968. extra: 463/421,
  2969. bottom: 14/477
  2970. }
  2971. },
  2972. sciFi: {
  2973. height: math.unit(7, "feet"),
  2974. weight: math.unit(100, "kg"),
  2975. name: "Sci-Fi",
  2976. image: {
  2977. source: "./media/characters/okuri/sci-fi.svg",
  2978. extra: 463/421,
  2979. bottom: 14/477
  2980. }
  2981. },
  2982. },
  2983. [
  2984. {
  2985. name: "Smallest",
  2986. height: math.unit(5 + 2/12, "feet")
  2987. },
  2988. {
  2989. name: "Smaller",
  2990. height: math.unit(300, "feet")
  2991. },
  2992. {
  2993. name: "Small",
  2994. height: math.unit(1000, "feet")
  2995. },
  2996. {
  2997. name: "Macro",
  2998. height: math.unit(1, "mile")
  2999. },
  3000. {
  3001. name: "Mega Macro (Small)",
  3002. height: math.unit(20, "km")
  3003. },
  3004. {
  3005. name: "Mega Macro (Large)",
  3006. height: math.unit(600, "km")
  3007. },
  3008. {
  3009. name: "Giga Macro",
  3010. height: math.unit(10000, "km")
  3011. },
  3012. {
  3013. name: "Normal",
  3014. height: math.unit(577560, "km"),
  3015. default: true
  3016. },
  3017. {
  3018. name: "Large",
  3019. height: math.unit(4, "galaxies")
  3020. },
  3021. {
  3022. name: "Largest",
  3023. height: math.unit(15, "multiverses")
  3024. },
  3025. ]
  3026. ))
  3027. characterMakers.push(() => makeCharacter(
  3028. { name: "Manny", species: ["manectric"], tags: ["anthro"] },
  3029. {
  3030. front: {
  3031. height: math.unit(7, "feet"),
  3032. weight: math.unit(100, "kg"),
  3033. name: "Front",
  3034. image: {
  3035. source: "./media/characters/manny/front.svg",
  3036. extra: 1,
  3037. bottom: 0.06
  3038. }
  3039. },
  3040. back: {
  3041. height: math.unit(7, "feet"),
  3042. weight: math.unit(100, "kg"),
  3043. name: "Back",
  3044. image: {
  3045. source: "./media/characters/manny/back.svg",
  3046. extra: 1,
  3047. bottom: 0.014
  3048. }
  3049. },
  3050. },
  3051. [
  3052. {
  3053. name: "Normal",
  3054. height: math.unit(7, "feet"),
  3055. },
  3056. {
  3057. name: "Macro",
  3058. height: math.unit(78, "feet"),
  3059. default: true
  3060. },
  3061. {
  3062. name: "Macro+",
  3063. height: math.unit(300, "meters")
  3064. },
  3065. {
  3066. name: "Macro++",
  3067. height: math.unit(2400, "meters")
  3068. },
  3069. {
  3070. name: "Megamacro",
  3071. height: math.unit(5167, "meters")
  3072. },
  3073. {
  3074. name: "Gigamacro",
  3075. height: math.unit(41769, "miles")
  3076. },
  3077. ]
  3078. ))
  3079. characterMakers.push(() => makeCharacter(
  3080. { name: "Adake", species: ["tiger"], tags: ["anthro"] },
  3081. {
  3082. front: {
  3083. height: math.unit(7, "feet"),
  3084. weight: math.unit(100, "kg"),
  3085. name: "Front",
  3086. image: {
  3087. source: "./media/characters/adake/front-1.svg"
  3088. }
  3089. },
  3090. frontAlt: {
  3091. height: math.unit(7, "feet"),
  3092. weight: math.unit(100, "kg"),
  3093. name: "Front (Alt)",
  3094. image: {
  3095. source: "./media/characters/adake/front-2.svg",
  3096. extra: 1,
  3097. bottom: 0.01
  3098. }
  3099. },
  3100. back: {
  3101. height: math.unit(7, "feet"),
  3102. weight: math.unit(100, "kg"),
  3103. name: "Back",
  3104. image: {
  3105. source: "./media/characters/adake/back.svg",
  3106. }
  3107. },
  3108. kneel: {
  3109. height: math.unit(5.385, "feet"),
  3110. weight: math.unit(100, "kg"),
  3111. name: "Kneeling",
  3112. image: {
  3113. source: "./media/characters/adake/kneel.svg",
  3114. bottom: 0.052
  3115. }
  3116. },
  3117. },
  3118. [
  3119. {
  3120. name: "Normal",
  3121. height: math.unit(7, "feet"),
  3122. },
  3123. {
  3124. name: "Macro",
  3125. height: math.unit(78, "feet"),
  3126. default: true
  3127. },
  3128. {
  3129. name: "Macro+",
  3130. height: math.unit(300, "meters")
  3131. },
  3132. {
  3133. name: "Macro++",
  3134. height: math.unit(2400, "meters")
  3135. },
  3136. {
  3137. name: "Megamacro",
  3138. height: math.unit(5167, "meters")
  3139. },
  3140. {
  3141. name: "Gigamacro",
  3142. height: math.unit(41769, "miles")
  3143. },
  3144. ]
  3145. ))
  3146. characterMakers.push(() => makeCharacter(
  3147. { name: "Elijah", species: ["blue-jay"], tags: ["anthro"] },
  3148. {
  3149. front: {
  3150. height: math.unit(1.65, "meters"),
  3151. weight: math.unit(50, "kg"),
  3152. name: "Front",
  3153. image: {
  3154. source: "./media/characters/elijah/front.svg",
  3155. extra: 858 / 830,
  3156. bottom: 95.5 / 953.8559
  3157. }
  3158. },
  3159. back: {
  3160. height: math.unit(1.65, "meters"),
  3161. weight: math.unit(50, "kg"),
  3162. name: "Back",
  3163. image: {
  3164. source: "./media/characters/elijah/back.svg",
  3165. extra: 895 / 850,
  3166. bottom: 5.3 / 897.956
  3167. }
  3168. },
  3169. frontNsfw: {
  3170. height: math.unit(1.65, "meters"),
  3171. weight: math.unit(50, "kg"),
  3172. name: "Front (NSFW)",
  3173. image: {
  3174. source: "./media/characters/elijah/front-nsfw.svg",
  3175. extra: 858 / 830,
  3176. bottom: 95.5 / 953.8559
  3177. }
  3178. },
  3179. backNsfw: {
  3180. height: math.unit(1.65, "meters"),
  3181. weight: math.unit(50, "kg"),
  3182. name: "Back (NSFW)",
  3183. image: {
  3184. source: "./media/characters/elijah/back-nsfw.svg",
  3185. extra: 895 / 850,
  3186. bottom: 5.3 / 897.956
  3187. }
  3188. },
  3189. dick: {
  3190. height: math.unit(1, "feet"),
  3191. name: "Dick",
  3192. image: {
  3193. source: "./media/characters/elijah/dick.svg"
  3194. }
  3195. },
  3196. beakOpen: {
  3197. height: math.unit(1.25, "feet"),
  3198. name: "Beak (Open)",
  3199. image: {
  3200. source: "./media/characters/elijah/beak-open.svg"
  3201. }
  3202. },
  3203. beakShut: {
  3204. height: math.unit(1.25, "feet"),
  3205. name: "Beak (Shut)",
  3206. image: {
  3207. source: "./media/characters/elijah/beak-shut.svg"
  3208. }
  3209. },
  3210. footFlexing: {
  3211. height: math.unit(1.61, "feet"),
  3212. name: "Foot (Flexing)",
  3213. image: {
  3214. source: "./media/characters/elijah/foot-flexing.svg"
  3215. }
  3216. },
  3217. footStepping: {
  3218. height: math.unit(1.44, "feet"),
  3219. name: "Foot (Stepping)",
  3220. image: {
  3221. source: "./media/characters/elijah/foot-stepping.svg"
  3222. }
  3223. },
  3224. plantigradeLeg: {
  3225. height: math.unit(2.34, "feet"),
  3226. name: "Plantigrade Leg",
  3227. image: {
  3228. source: "./media/characters/elijah/plantigrade-leg.svg"
  3229. }
  3230. },
  3231. plantigradeFootLeft: {
  3232. height: math.unit(0.9, "feet"),
  3233. name: "Plantigrade Foot (Left)",
  3234. image: {
  3235. source: "./media/characters/elijah/plantigrade-foot-left.svg"
  3236. }
  3237. },
  3238. plantigradeFootRight: {
  3239. height: math.unit(0.9, "feet"),
  3240. name: "Plantigrade Foot (Right)",
  3241. image: {
  3242. source: "./media/characters/elijah/plantigrade-foot-right.svg"
  3243. }
  3244. },
  3245. },
  3246. [
  3247. {
  3248. name: "Normal",
  3249. height: math.unit(1.65, "meters")
  3250. },
  3251. {
  3252. name: "Macro",
  3253. height: math.unit(55, "meters"),
  3254. default: true
  3255. },
  3256. {
  3257. name: "Macro+",
  3258. height: math.unit(105, "meters")
  3259. },
  3260. ]
  3261. ))
  3262. characterMakers.push(() => makeCharacter(
  3263. { name: "Rai", species: ["wolf"], tags: ["anthro"] },
  3264. {
  3265. front: {
  3266. height: math.unit(7 + 2/12, "feet"),
  3267. weight: math.unit(320, "kg"),
  3268. preyCapacity: math.unit(0.276549935, "people"),
  3269. name: "Front",
  3270. image: {
  3271. source: "./media/characters/rai/front.svg",
  3272. extra: 1802/1696,
  3273. bottom: 68/1870
  3274. },
  3275. form: "anthro",
  3276. default: true
  3277. },
  3278. frontDressed: {
  3279. height: math.unit(7 + 2/12, "feet"),
  3280. weight: math.unit(320, "kg"),
  3281. preyCapacity: math.unit(0.276549935, "people"),
  3282. name: "Front (Dressed)",
  3283. image: {
  3284. source: "./media/characters/rai/front-dressed.svg",
  3285. extra: 1802/1696,
  3286. bottom: 68/1870
  3287. },
  3288. form: "anthro"
  3289. },
  3290. side: {
  3291. height: math.unit(7 + 2/12, "feet"),
  3292. weight: math.unit(320, "kg"),
  3293. preyCapacity: math.unit(0.276549935, "people"),
  3294. name: "Side",
  3295. image: {
  3296. source: "./media/characters/rai/side.svg",
  3297. extra: 1789/1710,
  3298. bottom: 115/1904
  3299. },
  3300. form: "anthro"
  3301. },
  3302. back: {
  3303. height: math.unit(7 + 2/12, "feet"),
  3304. weight: math.unit(320, "kg"),
  3305. preyCapacity: math.unit(0.276549935, "people"),
  3306. name: "Back",
  3307. image: {
  3308. source: "./media/characters/rai/back.svg",
  3309. extra: 1770/1707,
  3310. bottom: 28/1798
  3311. },
  3312. form: "anthro"
  3313. },
  3314. feral: {
  3315. height: math.unit(9.5, "feet"),
  3316. weight: math.unit(640, "kg"),
  3317. preyCapacity: math.unit(4, "people"),
  3318. name: "Feral",
  3319. image: {
  3320. source: "./media/characters/rai/feral.svg",
  3321. extra: 945/553,
  3322. bottom: 176/1121
  3323. },
  3324. form: "feral",
  3325. default: true
  3326. },
  3327. dragon: {
  3328. height: math.unit(23, "feet"),
  3329. weight: math.unit(50000, "lb"),
  3330. name: "Dragon",
  3331. image: {
  3332. source: "./media/characters/rai/dragon.svg",
  3333. extra: 2498 / 2030,
  3334. bottom: 85.2 / 2584
  3335. },
  3336. form: "dragon",
  3337. default: true
  3338. },
  3339. maw: {
  3340. height: math.unit(1.69, "feet"),
  3341. name: "Maw",
  3342. image: {
  3343. source: "./media/characters/rai/maw.svg"
  3344. },
  3345. form: "anthro"
  3346. },
  3347. },
  3348. [
  3349. {
  3350. name: "Normal",
  3351. height: math.unit(7 + 2/12, "feet"),
  3352. form: "anthro"
  3353. },
  3354. {
  3355. name: "Big",
  3356. height: math.unit(11, "feet"),
  3357. form: "anthro"
  3358. },
  3359. {
  3360. name: "Minimacro",
  3361. height: math.unit(77, "feet"),
  3362. form: "anthro"
  3363. },
  3364. {
  3365. name: "Macro",
  3366. height: math.unit(302, "feet"),
  3367. default: true,
  3368. form: "anthro"
  3369. },
  3370. {
  3371. name: "Normal",
  3372. height: math.unit(9.5, "feet"),
  3373. form: "feral",
  3374. default: true
  3375. },
  3376. {
  3377. name: "Normal",
  3378. height: math.unit(23, "feet"),
  3379. form: "dragon",
  3380. default: true
  3381. }
  3382. ],
  3383. {
  3384. "anthro": {
  3385. name: "Anthro",
  3386. default: true
  3387. },
  3388. "feral": {
  3389. name: "Feral",
  3390. },
  3391. "dragon": {
  3392. name: "Dragon",
  3393. },
  3394. }
  3395. ))
  3396. characterMakers.push(() => makeCharacter(
  3397. { name: "Jazzy", species: ["coyote", "wolf"], tags: ["anthro"] },
  3398. {
  3399. frontDressed: {
  3400. height: math.unit(216, "feet"),
  3401. weight: math.unit(7000000, "lb"),
  3402. preyCapacity: math.unit(1321, "people"),
  3403. name: "Front (Dressed)",
  3404. image: {
  3405. source: "./media/characters/jazzy/front-dressed.svg",
  3406. extra: 2738 / 2651,
  3407. bottom: 41.8 / 2786
  3408. }
  3409. },
  3410. backDressed: {
  3411. height: math.unit(216, "feet"),
  3412. weight: math.unit(7000000, "lb"),
  3413. preyCapacity: math.unit(1321, "people"),
  3414. name: "Back (Dressed)",
  3415. image: {
  3416. source: "./media/characters/jazzy/back-dressed.svg",
  3417. extra: 2775 / 2673,
  3418. bottom: 36.8 / 2817
  3419. }
  3420. },
  3421. front: {
  3422. height: math.unit(216, "feet"),
  3423. weight: math.unit(7000000, "lb"),
  3424. preyCapacity: math.unit(1321, "people"),
  3425. name: "Front",
  3426. image: {
  3427. source: "./media/characters/jazzy/front.svg",
  3428. extra: 2738 / 2651,
  3429. bottom: 41.8 / 2786
  3430. }
  3431. },
  3432. back: {
  3433. height: math.unit(216, "feet"),
  3434. weight: math.unit(7000000, "lb"),
  3435. preyCapacity: math.unit(1321, "people"),
  3436. name: "Back",
  3437. image: {
  3438. source: "./media/characters/jazzy/back.svg",
  3439. extra: 2775 / 2673,
  3440. bottom: 36.8 / 2817
  3441. }
  3442. },
  3443. maw: {
  3444. height: math.unit(20, "feet"),
  3445. name: "Maw",
  3446. image: {
  3447. source: "./media/characters/jazzy/maw.svg"
  3448. }
  3449. },
  3450. paws: {
  3451. height: math.unit(27.5, "feet"),
  3452. name: "Paws",
  3453. image: {
  3454. source: "./media/characters/jazzy/paws.svg"
  3455. }
  3456. },
  3457. eye: {
  3458. height: math.unit(4.4, "feet"),
  3459. name: "Eye",
  3460. image: {
  3461. source: "./media/characters/jazzy/eye.svg"
  3462. }
  3463. },
  3464. droneOffense: {
  3465. height: math.unit(9.5, "inches"),
  3466. name: "Drone (Offense)",
  3467. image: {
  3468. source: "./media/characters/jazzy/drone-offense.svg"
  3469. }
  3470. },
  3471. droneRecon: {
  3472. height: math.unit(9.5, "inches"),
  3473. name: "Drone (Recon)",
  3474. image: {
  3475. source: "./media/characters/jazzy/drone-recon.svg"
  3476. }
  3477. },
  3478. droneDefense: {
  3479. height: math.unit(9.5, "inches"),
  3480. name: "Drone (Defense)",
  3481. image: {
  3482. source: "./media/characters/jazzy/drone-defense.svg"
  3483. }
  3484. },
  3485. },
  3486. [
  3487. {
  3488. name: "Macro",
  3489. height: math.unit(216, "feet"),
  3490. default: true
  3491. },
  3492. ]
  3493. ))
  3494. characterMakers.push(() => makeCharacter(
  3495. { name: "Flamm", species: ["cat"], tags: ["anthro"] },
  3496. {
  3497. front: {
  3498. height: math.unit(9 + 6/12, "feet"),
  3499. weight: math.unit(700, "lb"),
  3500. name: "Front",
  3501. image: {
  3502. source: "./media/characters/flamm/front.svg",
  3503. extra: 1736/1596,
  3504. bottom: 93/1829
  3505. }
  3506. },
  3507. buff: {
  3508. height: math.unit(9 + 6/12, "feet"),
  3509. weight: math.unit(950, "lb"),
  3510. name: "Buff",
  3511. image: {
  3512. source: "./media/characters/flamm/buff.svg",
  3513. extra: 3018/2874,
  3514. bottom: 221/3239
  3515. }
  3516. },
  3517. lyingFront: {
  3518. height: math.unit(9 + 6/12, "feet"),
  3519. weight: math.unit(700, "lb"),
  3520. name: "Lying (Front)",
  3521. image: {
  3522. source: "./media/characters/flamm/lying-front.svg"
  3523. },
  3524. extraAttributes: {
  3525. "ballVolume": {
  3526. name: "Ball Volume",
  3527. power: 3,
  3528. type: "volume",
  3529. base: math.unit(5, "liters")
  3530. },
  3531. }
  3532. },
  3533. lyingBack: {
  3534. height: math.unit(9 + 6/12, "feet"),
  3535. weight: math.unit(700, "lb"),
  3536. name: "Lying (Back)",
  3537. image: {
  3538. source: "./media/characters/flamm/lying-back.svg"
  3539. },
  3540. extraAttributes: {
  3541. "ballVolume": {
  3542. name: "Ball Volume",
  3543. power: 3,
  3544. type: "volume",
  3545. base: math.unit(5, "liters")
  3546. },
  3547. }
  3548. },
  3549. },
  3550. [
  3551. {
  3552. name: "Normal",
  3553. height: math.unit(9.5, "feet")
  3554. },
  3555. {
  3556. name: "Macro",
  3557. height: math.unit(200, "feet"),
  3558. default: true
  3559. },
  3560. ]
  3561. ))
  3562. characterMakers.push(() => makeCharacter(
  3563. { name: "Zephiro", species: ["raccoon"], tags: ["anthro"] },
  3564. {
  3565. front: {
  3566. height: math.unit(5 + 3/12, "feet"),
  3567. weight: math.unit(60, "kg"),
  3568. name: "Front",
  3569. image: {
  3570. source: "./media/characters/zephiro/front.svg",
  3571. extra: 1873/1761,
  3572. bottom: 147/2020
  3573. }
  3574. },
  3575. side: {
  3576. height: math.unit(5 + 3/12, "feet"),
  3577. weight: math.unit(60, "kg"),
  3578. name: "Side",
  3579. image: {
  3580. source: "./media/characters/zephiro/side.svg",
  3581. extra: 1929/1827,
  3582. bottom: 65/1994
  3583. }
  3584. },
  3585. back: {
  3586. height: math.unit(5 + 3/12, "feet"),
  3587. weight: math.unit(60, "kg"),
  3588. name: "Back",
  3589. image: {
  3590. source: "./media/characters/zephiro/back.svg",
  3591. extra: 1926/1816,
  3592. bottom: 41/1967
  3593. }
  3594. },
  3595. hand: {
  3596. height: math.unit(0.68, "feet"),
  3597. name: "Hand",
  3598. image: {
  3599. source: "./media/characters/zephiro/hand.svg"
  3600. }
  3601. },
  3602. paw: {
  3603. height: math.unit(1, "feet"),
  3604. name: "Paw",
  3605. image: {
  3606. source: "./media/characters/zephiro/paw.svg"
  3607. }
  3608. },
  3609. beans: {
  3610. height: math.unit(0.93, "feet"),
  3611. name: "Beans",
  3612. image: {
  3613. source: "./media/characters/zephiro/beans.svg"
  3614. }
  3615. },
  3616. },
  3617. [
  3618. {
  3619. name: "Micro",
  3620. height: math.unit(3, "inches")
  3621. },
  3622. {
  3623. name: "Normal",
  3624. height: math.unit(5 + 3 / 12, "feet"),
  3625. default: true
  3626. },
  3627. {
  3628. name: "Macro",
  3629. height: math.unit(118, "feet")
  3630. },
  3631. ]
  3632. ))
  3633. characterMakers.push(() => makeCharacter(
  3634. { name: "Fory", species: ["weasel", "rabbit"], tags: ["anthro"] },
  3635. {
  3636. front: {
  3637. height: math.unit(5, "feet"),
  3638. weight: math.unit(90, "kg"),
  3639. preyCapacity: math.unit(14, "people"),
  3640. name: "Front",
  3641. image: {
  3642. source: "./media/characters/fory/front.svg",
  3643. extra: 2862 / 2674,
  3644. bottom: 180 / 3043.8
  3645. },
  3646. form: "weaselbun",
  3647. default: true,
  3648. extraAttributes: {
  3649. "pawSize": {
  3650. name: "Paw Size",
  3651. power: 2,
  3652. type: "area",
  3653. base: math.unit(0.1596, "m^2")
  3654. },
  3655. "pawLength": {
  3656. name: "Paw Length",
  3657. power: 1,
  3658. type: "length",
  3659. base: math.unit(0.7, "m")
  3660. }
  3661. }
  3662. },
  3663. back: {
  3664. height: math.unit(5, "feet"),
  3665. weight: math.unit(90, "kg"),
  3666. preyCapacity: math.unit(14, "people"),
  3667. name: "Back",
  3668. image: {
  3669. source: "./media/characters/fory/back.svg",
  3670. extra: 1790/1672,
  3671. bottom: 84/1874
  3672. },
  3673. form: "weaselbun",
  3674. extraAttributes: {
  3675. "pawSize": {
  3676. name: "Paw Size",
  3677. power: 2,
  3678. type: "area",
  3679. base: math.unit(0.1596, "m^2")
  3680. },
  3681. "pawLength": {
  3682. name: "Paw Length",
  3683. power: 1,
  3684. type: "length",
  3685. base: math.unit(0.7, "m")
  3686. }
  3687. }
  3688. },
  3689. paw: {
  3690. height: math.unit(2.14, "feet"),
  3691. name: "Paw",
  3692. image: {
  3693. source: "./media/characters/fory/paw.svg"
  3694. },
  3695. form: "weaselbun",
  3696. extraAttributes: {
  3697. "pawSize": {
  3698. name: "Paw Size",
  3699. power: 2,
  3700. type: "area",
  3701. base: math.unit(0.1596, "m^2")
  3702. },
  3703. "pawLength": {
  3704. name: "Paw Length",
  3705. power: 1,
  3706. type: "length",
  3707. base: math.unit(0.48, "m")
  3708. }
  3709. }
  3710. },
  3711. bunBack: {
  3712. height: math.unit(3, "feet"),
  3713. weight: math.unit(20, "kg"),
  3714. preyCapacity: math.unit(3, "people"),
  3715. name: "Back",
  3716. image: {
  3717. source: "./media/characters/fory/bun-back.svg",
  3718. extra: 1749/1564,
  3719. bottom: 246/1995
  3720. },
  3721. form: "bun",
  3722. default: true,
  3723. extraAttributes: {
  3724. "pawSize": {
  3725. name: "Paw Size",
  3726. power: 2,
  3727. type: "area",
  3728. base: math.unit(0.072, "m^2")
  3729. },
  3730. "pawLength": {
  3731. name: "Paw Length",
  3732. power: 1,
  3733. type: "length",
  3734. base: math.unit(0.45, "m")
  3735. }
  3736. }
  3737. },
  3738. },
  3739. [
  3740. {
  3741. name: "Normal",
  3742. height: math.unit(5, "feet"),
  3743. form: "weaselbun"
  3744. },
  3745. {
  3746. name: "Macro",
  3747. height: math.unit(50, "feet"),
  3748. default: true,
  3749. form: "weaselbun"
  3750. },
  3751. {
  3752. name: "Megamacro",
  3753. height: math.unit(10, "miles"),
  3754. form: "weaselbun"
  3755. },
  3756. {
  3757. name: "Gigamacro",
  3758. height: math.unit(5, "earths"),
  3759. form: "weaselbun"
  3760. },
  3761. {
  3762. name: "Normal",
  3763. height: math.unit(3, "feet"),
  3764. default: true,
  3765. form: "bun"
  3766. },
  3767. {
  3768. name: "Fun-Size",
  3769. height: math.unit(12, "feet"),
  3770. form: "bun"
  3771. },
  3772. {
  3773. name: "Macro",
  3774. height: math.unit(100, "feet"),
  3775. form: "bun"
  3776. },
  3777. {
  3778. name: "Planetary",
  3779. height: math.unit(3, "earths"),
  3780. form: "bun"
  3781. },
  3782. ],
  3783. {
  3784. "weaselbun": {
  3785. name: "Weaselbun",
  3786. default: true
  3787. },
  3788. "bun": {
  3789. name: "Bun",
  3790. },
  3791. }
  3792. ))
  3793. characterMakers.push(() => makeCharacter(
  3794. { name: "Kurrikage", species: ["dragon"], tags: ["anthro"] },
  3795. {
  3796. front: {
  3797. height: math.unit(7, "feet"),
  3798. weight: math.unit(90, "kg"),
  3799. name: "Front",
  3800. image: {
  3801. source: "./media/characters/kurrikage/front.svg",
  3802. extra: 1845/1733,
  3803. bottom: 119/1964
  3804. }
  3805. },
  3806. back: {
  3807. height: math.unit(7, "feet"),
  3808. weight: math.unit(90, "kg"),
  3809. name: "Back",
  3810. image: {
  3811. source: "./media/characters/kurrikage/back.svg",
  3812. extra: 1790/1677,
  3813. bottom: 61/1851
  3814. }
  3815. },
  3816. dressed: {
  3817. height: math.unit(7, "feet"),
  3818. weight: math.unit(90, "kg"),
  3819. name: "Dressed",
  3820. image: {
  3821. source: "./media/characters/kurrikage/dressed.svg",
  3822. extra: 1845/1733,
  3823. bottom: 119/1964
  3824. }
  3825. },
  3826. foot: {
  3827. height: math.unit(1.5, "feet"),
  3828. name: "Foot",
  3829. image: {
  3830. source: "./media/characters/kurrikage/foot.svg"
  3831. }
  3832. },
  3833. staff: {
  3834. height: math.unit(6.7, "feet"),
  3835. name: "Staff",
  3836. image: {
  3837. source: "./media/characters/kurrikage/staff.svg"
  3838. }
  3839. },
  3840. peek: {
  3841. height: math.unit(1.05, "feet"),
  3842. name: "Peeking",
  3843. image: {
  3844. source: "./media/characters/kurrikage/peek.svg",
  3845. bottom: 0.08
  3846. }
  3847. },
  3848. },
  3849. [
  3850. {
  3851. name: "Normal",
  3852. height: math.unit(12, "feet"),
  3853. default: true
  3854. },
  3855. {
  3856. name: "Big",
  3857. height: math.unit(20, "feet")
  3858. },
  3859. {
  3860. name: "Macro",
  3861. height: math.unit(500, "feet")
  3862. },
  3863. {
  3864. name: "Megamacro",
  3865. height: math.unit(20, "miles")
  3866. },
  3867. ]
  3868. ))
  3869. characterMakers.push(() => makeCharacter(
  3870. { name: "Shingo", species: ["red-panda"], tags: ["anthro"] },
  3871. {
  3872. front: {
  3873. height: math.unit(6, "feet"),
  3874. weight: math.unit(75, "kg"),
  3875. name: "Front",
  3876. image: {
  3877. source: "./media/characters/shingo/front.svg",
  3878. extra: 1900/1825,
  3879. bottom: 82/1982
  3880. }
  3881. },
  3882. side: {
  3883. height: math.unit(6, "feet"),
  3884. weight: math.unit(75, "kg"),
  3885. name: "Side",
  3886. image: {
  3887. source: "./media/characters/shingo/side.svg",
  3888. extra: 1930/1865,
  3889. bottom: 16/1946
  3890. }
  3891. },
  3892. back: {
  3893. height: math.unit(6, "feet"),
  3894. weight: math.unit(75, "kg"),
  3895. name: "Back",
  3896. image: {
  3897. source: "./media/characters/shingo/back.svg",
  3898. extra: 1922/1852,
  3899. bottom: 16/1938
  3900. }
  3901. },
  3902. frontDressed: {
  3903. height: math.unit(6, "feet"),
  3904. weight: math.unit(150, "lb"),
  3905. name: "Front (Dressed)",
  3906. image: {
  3907. source: "./media/characters/shingo/front-dressed.svg",
  3908. extra: 1900/1825,
  3909. bottom: 82/1982
  3910. }
  3911. },
  3912. paw: {
  3913. height: math.unit(1.29, "feet"),
  3914. name: "Paw",
  3915. image: {
  3916. source: "./media/characters/shingo/paw.svg"
  3917. }
  3918. },
  3919. hand: {
  3920. height: math.unit(1.07, "feet"),
  3921. name: "Hand",
  3922. image: {
  3923. source: "./media/characters/shingo/hand.svg"
  3924. }
  3925. },
  3926. frontAlt: {
  3927. height: math.unit(6, "feet"),
  3928. weight: math.unit(75, "kg"),
  3929. name: "Front (Alt)",
  3930. image: {
  3931. source: "./media/characters/shingo/front-alt.svg",
  3932. extra: 3511 / 3338,
  3933. bottom: 0.005
  3934. }
  3935. },
  3936. frontAlt2: {
  3937. height: math.unit(6, "feet"),
  3938. weight: math.unit(75, "kg"),
  3939. name: "Front (Alt 2)",
  3940. image: {
  3941. source: "./media/characters/shingo/front-alt-2.svg",
  3942. extra: 706/681,
  3943. bottom: 11/717
  3944. }
  3945. },
  3946. pawAlt: {
  3947. height: math.unit(1, "feet"),
  3948. name: "Paw (Alt)",
  3949. image: {
  3950. source: "./media/characters/shingo/paw-alt.svg"
  3951. }
  3952. },
  3953. },
  3954. [
  3955. {
  3956. name: "Micro",
  3957. height: math.unit(4, "inches")
  3958. },
  3959. {
  3960. name: "Normal",
  3961. height: math.unit(6, "feet"),
  3962. default: true
  3963. },
  3964. {
  3965. name: "Macro",
  3966. height: math.unit(108, "feet")
  3967. },
  3968. {
  3969. name: "Macro+",
  3970. height: math.unit(1500, "feet")
  3971. },
  3972. ]
  3973. ))
  3974. characterMakers.push(() => makeCharacter(
  3975. { name: "Aigey", species: ["wolf", "dolphin"], tags: ["anthro"] },
  3976. {
  3977. side: {
  3978. height: math.unit(6, "feet"),
  3979. weight: math.unit(75, "kg"),
  3980. name: "Side",
  3981. image: {
  3982. source: "./media/characters/aigey/side.svg"
  3983. }
  3984. },
  3985. },
  3986. [
  3987. {
  3988. name: "Macro",
  3989. height: math.unit(200, "feet"),
  3990. default: true
  3991. },
  3992. {
  3993. name: "Megamacro",
  3994. height: math.unit(100, "miles")
  3995. },
  3996. ]
  3997. )
  3998. )
  3999. characterMakers.push(() => makeCharacter(
  4000. { name: "Natasha", species: ["african-wild-dog"], tags: ["anthro"] },
  4001. {
  4002. front: {
  4003. height: math.unit(13, "feet"),
  4004. weight: math.unit(1036.80, "kg"),
  4005. name: "Front",
  4006. image: {
  4007. source: "./media/characters/natasha/front.svg",
  4008. extra: 1301/1210,
  4009. bottom: 39/1340
  4010. }
  4011. },
  4012. back: {
  4013. height: math.unit(13, "feet"),
  4014. weight: math.unit(1036.80, "kg"),
  4015. name: "Back",
  4016. image: {
  4017. source: "./media/characters/natasha/back.svg",
  4018. extra: 1342/1252,
  4019. bottom: 20/1362
  4020. }
  4021. },
  4022. head: {
  4023. height: math.unit(3.48, "feet"),
  4024. name: "Head",
  4025. image: {
  4026. source: "./media/characters/natasha/head.svg"
  4027. }
  4028. },
  4029. jaws: {
  4030. height: math.unit(3.52, "feet"),
  4031. name: "Jaws",
  4032. image: {
  4033. source: "./media/characters/natasha/jaws.svg"
  4034. }
  4035. },
  4036. paws: {
  4037. height: math.unit(2.7, "feet"),
  4038. name: "Paws",
  4039. image: {
  4040. source: "./media/characters/natasha/paws.svg"
  4041. }
  4042. },
  4043. collar: {
  4044. height: math.unit(0.89, "feet"),
  4045. name: "Collar",
  4046. image: {
  4047. source: "./media/characters/natasha/collar.svg"
  4048. }
  4049. },
  4050. gauge: {
  4051. height: math.unit(0.36, "feet"),
  4052. name: "Gauge",
  4053. image: {
  4054. source: "./media/characters/natasha/gauge.svg"
  4055. }
  4056. },
  4057. },
  4058. [
  4059. {
  4060. name: "Shortstack",
  4061. height: math.unit(3, "feet")
  4062. },
  4063. {
  4064. name: "Normal",
  4065. height: math.unit(13, "feet"),
  4066. default: true
  4067. },
  4068. {
  4069. name: "Macro",
  4070. height: math.unit(100, "feet")
  4071. },
  4072. {
  4073. name: "Macro+",
  4074. height: math.unit(260, "feet")
  4075. },
  4076. {
  4077. name: "Macro++",
  4078. height: math.unit(1, "mile")
  4079. },
  4080. ]
  4081. ))
  4082. characterMakers.push(() => makeCharacter(
  4083. { name: "Malik", species: ["hyena"], tags: ["anthro"] },
  4084. {
  4085. front: {
  4086. height: math.unit(6, "feet"),
  4087. weight: math.unit(75, "kg"),
  4088. name: "Front",
  4089. image: {
  4090. source: "./media/characters/malik/front.svg",
  4091. extra: 1750/1561,
  4092. bottom: 80/1830
  4093. },
  4094. extraAttributes: {
  4095. "toeSize": {
  4096. name: "Toe Size",
  4097. power: 2,
  4098. type: "area",
  4099. base: math.unit(0.0159, "m^2")
  4100. },
  4101. "pawSize": {
  4102. name: "Paw Size",
  4103. power: 2,
  4104. type: "area",
  4105. base: math.unit(0.09834, "m^2")
  4106. },
  4107. }
  4108. },
  4109. side: {
  4110. height: math.unit(6, "feet"),
  4111. weight: math.unit(75, "kg"),
  4112. name: "Side",
  4113. image: {
  4114. source: "./media/characters/malik/side.svg",
  4115. extra: 1802/1685,
  4116. bottom: 42/1844
  4117. },
  4118. extraAttributes: {
  4119. "toeSize": {
  4120. name: "Toe Size",
  4121. power: 2,
  4122. type: "area",
  4123. base: math.unit(0.0159, "m^2")
  4124. },
  4125. "pawSize": {
  4126. name: "Paw Size",
  4127. power: 2,
  4128. type: "area",
  4129. base: math.unit(0.09834, "m^2")
  4130. },
  4131. }
  4132. },
  4133. back: {
  4134. height: math.unit(6, "feet"),
  4135. weight: math.unit(75, "kg"),
  4136. name: "Back",
  4137. image: {
  4138. source: "./media/characters/malik/back.svg",
  4139. extra: 1803/1607,
  4140. bottom: 33/1836
  4141. },
  4142. extraAttributes: {
  4143. "toeSize": {
  4144. name: "Toe Size",
  4145. power: 2,
  4146. type: "area",
  4147. base: math.unit(0.0159, "m^2")
  4148. },
  4149. "pawSize": {
  4150. name: "Paw Size",
  4151. power: 2,
  4152. type: "area",
  4153. base: math.unit(0.09834, "m^2")
  4154. },
  4155. }
  4156. },
  4157. },
  4158. [
  4159. {
  4160. name: "Macro",
  4161. height: math.unit(156, "feet"),
  4162. default: true
  4163. },
  4164. {
  4165. name: "Macro+",
  4166. height: math.unit(1188, "feet")
  4167. },
  4168. ]
  4169. ))
  4170. characterMakers.push(() => makeCharacter(
  4171. { name: "Sefer", species: ["carbuncle"], tags: ["anthro"] },
  4172. {
  4173. front: {
  4174. height: math.unit(6, "feet"),
  4175. weight: math.unit(75, "kg"),
  4176. name: "Front",
  4177. image: {
  4178. source: "./media/characters/sefer/front.svg",
  4179. extra: 848 / 659,
  4180. bottom: 28.3 / 876.442
  4181. }
  4182. },
  4183. back: {
  4184. height: math.unit(6, "feet"),
  4185. weight: math.unit(75, "kg"),
  4186. name: "Back",
  4187. image: {
  4188. source: "./media/characters/sefer/back.svg",
  4189. extra: 864 / 695,
  4190. bottom: 10 / 871
  4191. }
  4192. },
  4193. frontDressed: {
  4194. height: math.unit(6, "feet"),
  4195. weight: math.unit(75, "kg"),
  4196. name: "Dressed",
  4197. image: {
  4198. source: "./media/characters/sefer/dressed.svg",
  4199. extra: 839 / 653,
  4200. bottom: 37.6 / 878
  4201. }
  4202. },
  4203. },
  4204. [
  4205. {
  4206. name: "Normal",
  4207. height: math.unit(6, "feet"),
  4208. default: true
  4209. },
  4210. {
  4211. name: "Big",
  4212. height: math.unit(8, "meters")
  4213. },
  4214. ]
  4215. ))
  4216. characterMakers.push(() => makeCharacter(
  4217. { name: "North", species: ["leaf-nosed-bat"], tags: ["anthro"] },
  4218. {
  4219. body: {
  4220. height: math.unit(2.2428, "meter"),
  4221. weight: math.unit(124.738, "kg"),
  4222. name: "Body",
  4223. image: {
  4224. extra: 1225 / 1050,
  4225. source: "./media/characters/north/front.svg"
  4226. }
  4227. }
  4228. },
  4229. [
  4230. {
  4231. name: "Micro",
  4232. height: math.unit(4, "inches")
  4233. },
  4234. {
  4235. name: "Macro",
  4236. height: math.unit(63, "meters")
  4237. },
  4238. {
  4239. name: "Megamacro",
  4240. height: math.unit(101, "miles"),
  4241. default: true
  4242. }
  4243. ]
  4244. ))
  4245. characterMakers.push(() => makeCharacter(
  4246. { name: "Talan", species: ["dragon", "fish"], tags: ["anthro"] },
  4247. {
  4248. angled: {
  4249. height: math.unit(4, "meter"),
  4250. weight: math.unit(150, "kg"),
  4251. name: "Angled",
  4252. image: {
  4253. source: "./media/characters/talan/angled-sfw.svg",
  4254. bottom: 29 / 3734
  4255. }
  4256. },
  4257. angledNsfw: {
  4258. height: math.unit(4, "meter"),
  4259. weight: math.unit(150, "kg"),
  4260. name: "Angled (NSFW)",
  4261. image: {
  4262. source: "./media/characters/talan/angled-nsfw.svg",
  4263. bottom: 29 / 3734
  4264. }
  4265. },
  4266. frontNsfw: {
  4267. height: math.unit(4, "meter"),
  4268. weight: math.unit(150, "kg"),
  4269. name: "Front (NSFW)",
  4270. image: {
  4271. source: "./media/characters/talan/front-nsfw.svg",
  4272. bottom: 29 / 3734
  4273. }
  4274. },
  4275. sideNsfw: {
  4276. height: math.unit(4, "meter"),
  4277. weight: math.unit(150, "kg"),
  4278. name: "Side (NSFW)",
  4279. image: {
  4280. source: "./media/characters/talan/side-nsfw.svg",
  4281. bottom: 29 / 3734
  4282. }
  4283. },
  4284. back: {
  4285. height: math.unit(4, "meter"),
  4286. weight: math.unit(150, "kg"),
  4287. name: "Back",
  4288. image: {
  4289. source: "./media/characters/talan/back.svg"
  4290. }
  4291. },
  4292. dickBottom: {
  4293. height: math.unit(0.621, "meter"),
  4294. name: "Dick (Bottom)",
  4295. image: {
  4296. source: "./media/characters/talan/dick-bottom.svg"
  4297. }
  4298. },
  4299. dickTop: {
  4300. height: math.unit(0.621, "meter"),
  4301. name: "Dick (Top)",
  4302. image: {
  4303. source: "./media/characters/talan/dick-top.svg"
  4304. }
  4305. },
  4306. dickSide: {
  4307. height: math.unit(0.305, "meter"),
  4308. name: "Dick (Side)",
  4309. image: {
  4310. source: "./media/characters/talan/dick-side.svg"
  4311. }
  4312. },
  4313. dickFront: {
  4314. height: math.unit(0.305, "meter"),
  4315. name: "Dick (Front)",
  4316. image: {
  4317. source: "./media/characters/talan/dick-front.svg"
  4318. }
  4319. },
  4320. },
  4321. [
  4322. {
  4323. name: "Normal",
  4324. height: math.unit(4, "meters")
  4325. },
  4326. {
  4327. name: "Macro",
  4328. height: math.unit(100, "meters")
  4329. },
  4330. {
  4331. name: "Megamacro",
  4332. height: math.unit(2, "miles"),
  4333. default: true
  4334. },
  4335. {
  4336. name: "Gigamacro",
  4337. height: math.unit(5000, "miles")
  4338. },
  4339. {
  4340. name: "Teramacro",
  4341. height: math.unit(100, "parsecs")
  4342. }
  4343. ]
  4344. ))
  4345. characterMakers.push(() => makeCharacter(
  4346. { name: "Gael'Rathus", species: ["ram", "demon"], tags: ["anthro"] },
  4347. {
  4348. front: {
  4349. height: math.unit(2, "meter"),
  4350. weight: math.unit(90, "kg"),
  4351. name: "Front",
  4352. image: {
  4353. source: "./media/characters/gael'rathus/front.svg"
  4354. }
  4355. },
  4356. frontAlt: {
  4357. height: math.unit(2, "meter"),
  4358. weight: math.unit(90, "kg"),
  4359. name: "Front (alt)",
  4360. image: {
  4361. source: "./media/characters/gael'rathus/front-alt.svg"
  4362. }
  4363. },
  4364. frontAlt2: {
  4365. height: math.unit(2, "meter"),
  4366. weight: math.unit(90, "kg"),
  4367. name: "Front (alt 2)",
  4368. image: {
  4369. source: "./media/characters/gael'rathus/front-alt-2.svg"
  4370. }
  4371. }
  4372. },
  4373. [
  4374. {
  4375. name: "Normal",
  4376. height: math.unit(9, "feet"),
  4377. default: true
  4378. },
  4379. {
  4380. name: "Large",
  4381. height: math.unit(25, "feet")
  4382. },
  4383. {
  4384. name: "Macro",
  4385. height: math.unit(0.25, "miles")
  4386. },
  4387. {
  4388. name: "Megamacro",
  4389. height: math.unit(10, "miles")
  4390. }
  4391. ]
  4392. ))
  4393. characterMakers.push(() => makeCharacter(
  4394. { name: "Sosha", species: ["cougar"], tags: ["feral"] },
  4395. {
  4396. side: {
  4397. height: math.unit(2, "meter"),
  4398. weight: math.unit(140, "kg"),
  4399. name: "Side",
  4400. image: {
  4401. source: "./media/characters/sosha/side.svg",
  4402. extra: 1170/1006,
  4403. bottom: 94/1264
  4404. }
  4405. },
  4406. maw: {
  4407. height: math.unit(2.87, "feet"),
  4408. name: "Maw",
  4409. image: {
  4410. source: "./media/characters/sosha/maw.svg",
  4411. extra: 966/865,
  4412. bottom: 0/966
  4413. }
  4414. },
  4415. cooch: {
  4416. height: math.unit(5.6, "feet"),
  4417. name: "Cooch",
  4418. image: {
  4419. source: "./media/characters/sosha/cooch.svg"
  4420. }
  4421. },
  4422. },
  4423. [
  4424. {
  4425. name: "Normal",
  4426. height: math.unit(12, "feet"),
  4427. default: true
  4428. }
  4429. ]
  4430. ))
  4431. characterMakers.push(() => makeCharacter(
  4432. { name: "RuNNoLa", species: ["wolf"], tags: ["feral"] },
  4433. {
  4434. side: {
  4435. height: math.unit(5 + 5 / 12, "feet"),
  4436. weight: math.unit(170, "kg"),
  4437. name: "Side",
  4438. image: {
  4439. source: "./media/characters/runnola/side.svg",
  4440. extra: 741 / 448,
  4441. bottom: 0.05
  4442. }
  4443. },
  4444. },
  4445. [
  4446. {
  4447. name: "Small",
  4448. height: math.unit(3, "feet")
  4449. },
  4450. {
  4451. name: "Normal",
  4452. height: math.unit(5 + 5 / 12, "feet"),
  4453. default: true
  4454. },
  4455. {
  4456. name: "Big",
  4457. height: math.unit(10, "feet")
  4458. },
  4459. ]
  4460. ))
  4461. characterMakers.push(() => makeCharacter(
  4462. { name: "Kurribird", species: ["avian"], tags: ["anthro"] },
  4463. {
  4464. front: {
  4465. height: math.unit(2, "meter"),
  4466. weight: math.unit(50, "kg"),
  4467. name: "Front",
  4468. image: {
  4469. source: "./media/characters/kurribird/front.svg",
  4470. bottom: 0.015
  4471. }
  4472. },
  4473. frontAlt: {
  4474. height: math.unit(1.5, "meter"),
  4475. weight: math.unit(50, "kg"),
  4476. name: "Front (Alt)",
  4477. image: {
  4478. source: "./media/characters/kurribird/front-alt.svg",
  4479. extra: 1.45
  4480. }
  4481. },
  4482. },
  4483. [
  4484. {
  4485. name: "Normal",
  4486. height: math.unit(7, "feet")
  4487. },
  4488. {
  4489. name: "Big",
  4490. height: math.unit(12, "feet"),
  4491. default: true
  4492. },
  4493. {
  4494. name: "Macro",
  4495. height: math.unit(1500, "feet")
  4496. },
  4497. {
  4498. name: "Megamacro",
  4499. height: math.unit(2, "miles")
  4500. }
  4501. ]
  4502. ))
  4503. characterMakers.push(() => makeCharacter(
  4504. { name: "Elbial", species: ["goat", "lion", "demon", "deity"], tags: ["anthro"] },
  4505. {
  4506. front: {
  4507. height: math.unit(2, "meter"),
  4508. weight: math.unit(80, "kg"),
  4509. name: "Front",
  4510. image: {
  4511. source: "./media/characters/elbial/front.svg",
  4512. extra: 1643 / 1556,
  4513. bottom: 60.2 / 1696
  4514. }
  4515. },
  4516. side: {
  4517. height: math.unit(2, "meter"),
  4518. weight: math.unit(80, "kg"),
  4519. name: "Side",
  4520. image: {
  4521. source: "./media/characters/elbial/side.svg",
  4522. extra: 1601/1528,
  4523. bottom: 97/1698
  4524. }
  4525. },
  4526. back: {
  4527. height: math.unit(2, "meter"),
  4528. weight: math.unit(80, "kg"),
  4529. name: "Back",
  4530. image: {
  4531. source: "./media/characters/elbial/back.svg",
  4532. extra: 1653/1569,
  4533. bottom: 20/1673
  4534. }
  4535. },
  4536. frontDressed: {
  4537. height: math.unit(2, "meter"),
  4538. weight: math.unit(80, "kg"),
  4539. name: "Front (Dressed)",
  4540. image: {
  4541. source: "./media/characters/elbial/front-dressed.svg",
  4542. extra: 1638/1569,
  4543. bottom: 70/1708
  4544. }
  4545. },
  4546. genitals: {
  4547. height: math.unit(2 / 3.367, "meter"),
  4548. name: "Genitals",
  4549. image: {
  4550. source: "./media/characters/elbial/genitals.svg"
  4551. }
  4552. },
  4553. },
  4554. [
  4555. {
  4556. name: "Large",
  4557. height: math.unit(100, "feet")
  4558. },
  4559. {
  4560. name: "Macro",
  4561. height: math.unit(500, "feet"),
  4562. default: true
  4563. },
  4564. {
  4565. name: "Megamacro",
  4566. height: math.unit(10, "miles")
  4567. },
  4568. {
  4569. name: "Gigamacro",
  4570. height: math.unit(25000, "miles")
  4571. },
  4572. {
  4573. name: "Full-Size",
  4574. height: math.unit(8000000, "gigaparsecs")
  4575. }
  4576. ]
  4577. ))
  4578. characterMakers.push(() => makeCharacter(
  4579. { name: "Noah", species: ["harpy-eagle"], tags: ["anthro"] },
  4580. {
  4581. front: {
  4582. height: math.unit(2, "meter"),
  4583. weight: math.unit(60, "kg"),
  4584. name: "Front",
  4585. image: {
  4586. source: "./media/characters/noah/front.svg",
  4587. extra: 1383/1313,
  4588. bottom: 104/1487
  4589. }
  4590. },
  4591. hand: {
  4592. height: math.unit(0.6, "feet"),
  4593. name: "Hand",
  4594. image: {
  4595. source: "./media/characters/noah/hand.svg"
  4596. }
  4597. },
  4598. talons: {
  4599. height: math.unit(1.385, "feet"),
  4600. name: "Talons",
  4601. image: {
  4602. source: "./media/characters/noah/talons.svg"
  4603. }
  4604. },
  4605. beak: {
  4606. height: math.unit(0.43, "feet"),
  4607. name: "Beak",
  4608. image: {
  4609. source: "./media/characters/noah/beak.svg"
  4610. }
  4611. },
  4612. collar: {
  4613. height: math.unit(0.88, "feet"),
  4614. name: "Collar",
  4615. image: {
  4616. source: "./media/characters/noah/collar.svg"
  4617. }
  4618. },
  4619. eyeNarrow: {
  4620. height: math.unit(0.18, "feet"),
  4621. name: "Eye (Narrow)",
  4622. image: {
  4623. source: "./media/characters/noah/eye-narrow.svg"
  4624. }
  4625. },
  4626. eyeNormal: {
  4627. height: math.unit(0.18, "feet"),
  4628. name: "Eye (Normal)",
  4629. image: {
  4630. source: "./media/characters/noah/eye-normal.svg"
  4631. }
  4632. },
  4633. eyeWide: {
  4634. height: math.unit(0.18, "feet"),
  4635. name: "Eye (Wide)",
  4636. image: {
  4637. source: "./media/characters/noah/eye-wide.svg"
  4638. }
  4639. },
  4640. ear: {
  4641. height: math.unit(0.64, "feet"),
  4642. name: "Ear",
  4643. image: {
  4644. source: "./media/characters/noah/ear.svg"
  4645. }
  4646. },
  4647. },
  4648. [
  4649. {
  4650. name: "Large",
  4651. height: math.unit(50, "feet")
  4652. },
  4653. {
  4654. name: "Macro",
  4655. height: math.unit(750, "feet"),
  4656. default: true
  4657. },
  4658. {
  4659. name: "Megamacro",
  4660. height: math.unit(50, "miles")
  4661. },
  4662. {
  4663. name: "Gigamacro",
  4664. height: math.unit(100000, "miles")
  4665. },
  4666. {
  4667. name: "Full-Size",
  4668. height: math.unit(3000000000, "miles")
  4669. }
  4670. ]
  4671. ))
  4672. characterMakers.push(() => makeCharacter(
  4673. { name: "Natalya", species: ["wolf"], tags: ["anthro"] },
  4674. {
  4675. front: {
  4676. height: math.unit(2, "meter"),
  4677. weight: math.unit(80, "kg"),
  4678. name: "Front",
  4679. image: {
  4680. source: "./media/characters/natalya/front.svg"
  4681. }
  4682. },
  4683. back: {
  4684. height: math.unit(2, "meter"),
  4685. weight: math.unit(80, "kg"),
  4686. name: "Back",
  4687. image: {
  4688. source: "./media/characters/natalya/back.svg"
  4689. }
  4690. }
  4691. },
  4692. [
  4693. {
  4694. name: "Normal",
  4695. height: math.unit(150, "feet"),
  4696. default: true
  4697. },
  4698. {
  4699. name: "Megamacro",
  4700. height: math.unit(5, "miles")
  4701. },
  4702. {
  4703. name: "Full-Size",
  4704. height: math.unit(600, "kiloparsecs")
  4705. }
  4706. ]
  4707. ))
  4708. characterMakers.push(() => makeCharacter(
  4709. { name: "Erestrebah", species: ["avian", "deer"], tags: ["anthro"] },
  4710. {
  4711. front: {
  4712. height: math.unit(2, "meter"),
  4713. weight: math.unit(50, "kg"),
  4714. name: "Front",
  4715. image: {
  4716. source: "./media/characters/erestrebah/front.svg",
  4717. extra: 1262/1162,
  4718. bottom: 96/1358
  4719. }
  4720. },
  4721. back: {
  4722. height: math.unit(2, "meter"),
  4723. weight: math.unit(50, "kg"),
  4724. name: "Back",
  4725. image: {
  4726. source: "./media/characters/erestrebah/back.svg",
  4727. extra: 1257/1139,
  4728. bottom: 13/1270
  4729. }
  4730. },
  4731. wing: {
  4732. height: math.unit(2, "meter"),
  4733. weight: math.unit(50, "kg"),
  4734. name: "Wing",
  4735. image: {
  4736. source: "./media/characters/erestrebah/wing.svg",
  4737. extra: 1262/1162,
  4738. bottom: 96/1358
  4739. }
  4740. },
  4741. mouth: {
  4742. height: math.unit(0.39, "feet"),
  4743. name: "Mouth",
  4744. image: {
  4745. source: "./media/characters/erestrebah/mouth.svg"
  4746. }
  4747. }
  4748. },
  4749. [
  4750. {
  4751. name: "Normal",
  4752. height: math.unit(10, "feet")
  4753. },
  4754. {
  4755. name: "Large",
  4756. height: math.unit(50, "feet"),
  4757. default: true
  4758. },
  4759. {
  4760. name: "Macro",
  4761. height: math.unit(300, "feet")
  4762. },
  4763. {
  4764. name: "Macro+",
  4765. height: math.unit(750, "feet")
  4766. },
  4767. {
  4768. name: "Megamacro",
  4769. height: math.unit(3, "miles")
  4770. }
  4771. ]
  4772. ))
  4773. characterMakers.push(() => makeCharacter(
  4774. { name: "Jennifer", species: ["rat", "demon"], tags: ["anthro"] },
  4775. {
  4776. front: {
  4777. height: math.unit(2, "meter"),
  4778. weight: math.unit(80, "kg"),
  4779. name: "Front",
  4780. image: {
  4781. source: "./media/characters/jennifer/front.svg",
  4782. bottom: 0.11,
  4783. extra: 1.16
  4784. }
  4785. },
  4786. frontAlt: {
  4787. height: math.unit(2, "meter"),
  4788. weight: math.unit(80, "kg"),
  4789. name: "Front (Alt)",
  4790. image: {
  4791. source: "./media/characters/jennifer/front-alt.svg"
  4792. }
  4793. }
  4794. },
  4795. [
  4796. {
  4797. name: "Canon Height",
  4798. height: math.unit(120, "feet"),
  4799. default: true
  4800. },
  4801. {
  4802. name: "Macro+",
  4803. height: math.unit(300, "feet")
  4804. },
  4805. {
  4806. name: "Megamacro",
  4807. height: math.unit(20000, "feet")
  4808. }
  4809. ]
  4810. ))
  4811. characterMakers.push(() => makeCharacter(
  4812. { name: "Kalista", species: ["phoenix"], tags: ["anthro"] },
  4813. {
  4814. front: {
  4815. height: math.unit(2, "meter"),
  4816. weight: math.unit(50, "kg"),
  4817. name: "Front",
  4818. image: {
  4819. source: "./media/characters/kalista/front.svg",
  4820. extra: 1314/1145,
  4821. bottom: 101/1415
  4822. }
  4823. },
  4824. back: {
  4825. height: math.unit(2, "meter"),
  4826. weight: math.unit(50, "kg"),
  4827. name: "Back",
  4828. image: {
  4829. source: "./media/characters/kalista/back.svg",
  4830. extra: 1366 / 1156,
  4831. bottom: 33.9 / 1362.78
  4832. }
  4833. }
  4834. },
  4835. [
  4836. {
  4837. name: "Uncomfortably Small",
  4838. height: math.unit(10, "feet")
  4839. },
  4840. {
  4841. name: "Small",
  4842. height: math.unit(30, "feet")
  4843. },
  4844. {
  4845. name: "Macro",
  4846. height: math.unit(100, "feet"),
  4847. default: true
  4848. },
  4849. {
  4850. name: "Macro+",
  4851. height: math.unit(2000, "feet")
  4852. },
  4853. {
  4854. name: "True Form",
  4855. height: math.unit(8924, "miles")
  4856. }
  4857. ]
  4858. ))
  4859. characterMakers.push(() => makeCharacter(
  4860. { name: "GiantGrowingVixen", species: ["fox"], tags: ["anthro"] },
  4861. {
  4862. front: {
  4863. height: math.unit(2, "meter"),
  4864. weight: math.unit(120, "kg"),
  4865. name: "Front",
  4866. image: {
  4867. source: "./media/characters/ggv/front.svg"
  4868. }
  4869. },
  4870. side: {
  4871. height: math.unit(2, "meter"),
  4872. weight: math.unit(120, "kg"),
  4873. name: "Side",
  4874. image: {
  4875. source: "./media/characters/ggv/side.svg"
  4876. }
  4877. }
  4878. },
  4879. [
  4880. {
  4881. name: "Extremely Puny",
  4882. height: math.unit(9 + 5 / 12, "feet")
  4883. },
  4884. {
  4885. name: "Horribly Small",
  4886. height: math.unit(47.7, "miles"),
  4887. default: true
  4888. },
  4889. {
  4890. name: "Reasonably Sized",
  4891. height: math.unit(25000, "parsecs")
  4892. },
  4893. {
  4894. name: "Slightly Uncompressed",
  4895. height: math.unit(7.77e31, "parsecs")
  4896. },
  4897. {
  4898. name: "Omniversal",
  4899. height: math.unit(1e300, "meters")
  4900. },
  4901. ]
  4902. ))
  4903. characterMakers.push(() => makeCharacter(
  4904. { name: "Napalm", species: ["aeromorph"], tags: ["anthro"] },
  4905. {
  4906. front: {
  4907. height: math.unit(2, "meter"),
  4908. weight: math.unit(75, "lb"),
  4909. name: "Front",
  4910. image: {
  4911. source: "./media/characters/napalm/front.svg"
  4912. }
  4913. },
  4914. back: {
  4915. height: math.unit(2, "meter"),
  4916. weight: math.unit(75, "lb"),
  4917. name: "Back",
  4918. image: {
  4919. source: "./media/characters/napalm/back.svg"
  4920. }
  4921. }
  4922. },
  4923. [
  4924. {
  4925. name: "Standard",
  4926. height: math.unit(55, "feet"),
  4927. default: true
  4928. }
  4929. ]
  4930. ))
  4931. characterMakers.push(() => makeCharacter(
  4932. { name: "Asana", species: ["android", "jackal"], tags: ["anthro"] },
  4933. {
  4934. front: {
  4935. height: math.unit(7 + 5 / 6, "feet"),
  4936. weight: math.unit(325, "lb"),
  4937. name: "Front",
  4938. image: {
  4939. source: "./media/characters/asana/front.svg",
  4940. extra: 1133 / 1060,
  4941. bottom: 15.2 / 1148.6
  4942. }
  4943. },
  4944. back: {
  4945. height: math.unit(7 + 5 / 6, "feet"),
  4946. weight: math.unit(325, "lb"),
  4947. name: "Back",
  4948. image: {
  4949. source: "./media/characters/asana/back.svg",
  4950. extra: 1114 / 1043,
  4951. bottom: 5 / 1120
  4952. }
  4953. },
  4954. dressedDark: {
  4955. height: math.unit(7 + 5 / 6, "feet"),
  4956. weight: math.unit(325, "lb"),
  4957. name: "Dressed (Dark)",
  4958. image: {
  4959. source: "./media/characters/asana/dressed-dark.svg",
  4960. extra: 1133 / 1060,
  4961. bottom: 15.2 / 1148.6
  4962. }
  4963. },
  4964. dressedLight: {
  4965. height: math.unit(7 + 5 / 6, "feet"),
  4966. weight: math.unit(325, "lb"),
  4967. name: "Dressed (Light)",
  4968. image: {
  4969. source: "./media/characters/asana/dressed-light.svg",
  4970. extra: 1133 / 1060,
  4971. bottom: 15.2 / 1148.6
  4972. }
  4973. },
  4974. },
  4975. [
  4976. {
  4977. name: "Standard",
  4978. height: math.unit(7 + 5 / 6, "feet"),
  4979. default: true
  4980. },
  4981. {
  4982. name: "Large",
  4983. height: math.unit(10, "meters")
  4984. },
  4985. {
  4986. name: "Macro",
  4987. height: math.unit(2500, "meters")
  4988. },
  4989. {
  4990. name: "Megamacro",
  4991. height: math.unit(5e6, "meters")
  4992. },
  4993. {
  4994. name: "Examacro",
  4995. height: math.unit(5e12, "lightyears")
  4996. },
  4997. {
  4998. name: "Max Size",
  4999. height: math.unit(1e31, "lightyears")
  5000. }
  5001. ]
  5002. ))
  5003. characterMakers.push(() => makeCharacter(
  5004. { name: "Ebony", species: ["hoshiko-beast"], tags: ["anthro"] },
  5005. {
  5006. front: {
  5007. height: math.unit(2, "meter"),
  5008. weight: math.unit(60, "kg"),
  5009. name: "Front",
  5010. image: {
  5011. source: "./media/characters/ebony/front.svg",
  5012. bottom: 0.03,
  5013. extra: 1045 / 810 + 0.03
  5014. }
  5015. },
  5016. side: {
  5017. height: math.unit(2, "meter"),
  5018. weight: math.unit(60, "kg"),
  5019. name: "Side",
  5020. image: {
  5021. source: "./media/characters/ebony/side.svg",
  5022. bottom: 0.03,
  5023. extra: 1045 / 810 + 0.03
  5024. }
  5025. },
  5026. back: {
  5027. height: math.unit(2, "meter"),
  5028. weight: math.unit(60, "kg"),
  5029. name: "Back",
  5030. image: {
  5031. source: "./media/characters/ebony/back.svg",
  5032. bottom: 0.01,
  5033. extra: 1045 / 810 + 0.01
  5034. }
  5035. },
  5036. },
  5037. [
  5038. // TODO check why I did this lol
  5039. {
  5040. name: "Standard",
  5041. height: math.unit(9 / 8 * (7 + 5 / 12), "feet"),
  5042. default: true
  5043. },
  5044. {
  5045. name: "Macro",
  5046. height: math.unit(200, "feet")
  5047. },
  5048. {
  5049. name: "Gigamacro",
  5050. height: math.unit(13000, "km")
  5051. }
  5052. ]
  5053. ))
  5054. characterMakers.push(() => makeCharacter(
  5055. { name: "Mountain", species: ["snow-jugani"], tags: ["anthro"] },
  5056. {
  5057. front: {
  5058. height: math.unit(6, "feet"),
  5059. weight: math.unit(175, "lb"),
  5060. name: "Front",
  5061. image: {
  5062. source: "./media/characters/mountain/front.svg",
  5063. extra: 972 / 955,
  5064. bottom: 64 / 1036.6
  5065. }
  5066. },
  5067. back: {
  5068. height: math.unit(6, "feet"),
  5069. weight: math.unit(175, "lb"),
  5070. name: "Back",
  5071. image: {
  5072. source: "./media/characters/mountain/back.svg",
  5073. extra: 970 / 950,
  5074. bottom: 28.25 / 999
  5075. }
  5076. },
  5077. },
  5078. [
  5079. {
  5080. name: "Large",
  5081. height: math.unit(20, "meters")
  5082. },
  5083. {
  5084. name: "Macro",
  5085. height: math.unit(300, "meters")
  5086. },
  5087. {
  5088. name: "Gigamacro",
  5089. height: math.unit(10000, "km"),
  5090. default: true
  5091. },
  5092. {
  5093. name: "Examacro",
  5094. height: math.unit(10e9, "lightyears")
  5095. }
  5096. ]
  5097. ))
  5098. characterMakers.push(() => makeCharacter(
  5099. { name: "Rick", species: ["lion"], tags: ["anthro"] },
  5100. {
  5101. front: {
  5102. height: math.unit(8, "feet"),
  5103. weight: math.unit(500, "lb"),
  5104. name: "Front",
  5105. image: {
  5106. source: "./media/characters/rick/front.svg"
  5107. }
  5108. }
  5109. },
  5110. [
  5111. {
  5112. name: "Normal",
  5113. height: math.unit(8, "feet"),
  5114. default: true
  5115. },
  5116. {
  5117. name: "Macro",
  5118. height: math.unit(5, "km")
  5119. }
  5120. ]
  5121. ))
  5122. characterMakers.push(() => makeCharacter(
  5123. { name: "Ona", species: ["raven"], tags: ["anthro"] },
  5124. {
  5125. front: {
  5126. height: math.unit(8, "feet"),
  5127. weight: math.unit(120, "lb"),
  5128. name: "Front",
  5129. image: {
  5130. source: "./media/characters/ona/front.svg"
  5131. }
  5132. },
  5133. frontAlt: {
  5134. height: math.unit(8, "feet"),
  5135. weight: math.unit(120, "lb"),
  5136. name: "Front (Alt)",
  5137. image: {
  5138. source: "./media/characters/ona/front-alt.svg"
  5139. }
  5140. },
  5141. back: {
  5142. height: math.unit(8, "feet"),
  5143. weight: math.unit(120, "lb"),
  5144. name: "Back",
  5145. image: {
  5146. source: "./media/characters/ona/back.svg"
  5147. }
  5148. },
  5149. foot: {
  5150. height: math.unit(1.1, "feet"),
  5151. name: "Foot",
  5152. image: {
  5153. source: "./media/characters/ona/foot.svg"
  5154. }
  5155. }
  5156. },
  5157. [
  5158. {
  5159. name: "Megamacro",
  5160. height: math.unit(70, "km"),
  5161. default: true
  5162. },
  5163. {
  5164. name: "Gigamacro",
  5165. height: math.unit(681818, "miles")
  5166. },
  5167. {
  5168. name: "Examacro",
  5169. height: math.unit(3800000, "lightyears")
  5170. },
  5171. ]
  5172. ))
  5173. characterMakers.push(() => makeCharacter(
  5174. { name: "Mech", species: ["dragon"], tags: ["anthro"] },
  5175. {
  5176. front: {
  5177. height: math.unit(12, "feet"),
  5178. weight: math.unit(3000, "lb"),
  5179. name: "Front",
  5180. image: {
  5181. source: "./media/characters/mech/front.svg",
  5182. extra: 2900 / 2770,
  5183. bottom: 110 / 3010
  5184. }
  5185. },
  5186. back: {
  5187. height: math.unit(12, "feet"),
  5188. weight: math.unit(3000, "lb"),
  5189. name: "Back",
  5190. image: {
  5191. source: "./media/characters/mech/back.svg",
  5192. extra: 3011 / 2890,
  5193. bottom: 94 / 3105
  5194. }
  5195. },
  5196. maw: {
  5197. height: math.unit(3.07, "feet"),
  5198. name: "Maw",
  5199. image: {
  5200. source: "./media/characters/mech/maw.svg"
  5201. }
  5202. },
  5203. head: {
  5204. height: math.unit(3.07, "feet"),
  5205. name: "Head",
  5206. image: {
  5207. source: "./media/characters/mech/head.svg"
  5208. }
  5209. },
  5210. dick: {
  5211. height: math.unit(1.43, "feet"),
  5212. name: "Dick",
  5213. image: {
  5214. source: "./media/characters/mech/dick.svg"
  5215. }
  5216. },
  5217. },
  5218. [
  5219. {
  5220. name: "Normal",
  5221. height: math.unit(12, "feet")
  5222. },
  5223. {
  5224. name: "Macro",
  5225. height: math.unit(300, "feet"),
  5226. default: true
  5227. },
  5228. {
  5229. name: "Macro+",
  5230. height: math.unit(1500, "feet")
  5231. },
  5232. ]
  5233. ))
  5234. characterMakers.push(() => makeCharacter(
  5235. { name: "Gregory", species: ["goat"], tags: ["anthro"] },
  5236. {
  5237. front: {
  5238. height: math.unit(1.3, "meter"),
  5239. weight: math.unit(30, "kg"),
  5240. name: "Front",
  5241. image: {
  5242. source: "./media/characters/gregory/front.svg",
  5243. }
  5244. }
  5245. },
  5246. [
  5247. {
  5248. name: "Normal",
  5249. height: math.unit(1.3, "meter"),
  5250. default: true
  5251. },
  5252. {
  5253. name: "Macro",
  5254. height: math.unit(20, "meter")
  5255. }
  5256. ]
  5257. ))
  5258. characterMakers.push(() => makeCharacter(
  5259. { name: "Elory", species: ["goat"], tags: ["anthro"] },
  5260. {
  5261. front: {
  5262. height: math.unit(2.8, "meter"),
  5263. weight: math.unit(200, "kg"),
  5264. name: "Front",
  5265. image: {
  5266. source: "./media/characters/elory/front.svg",
  5267. }
  5268. }
  5269. },
  5270. [
  5271. {
  5272. name: "Normal",
  5273. height: math.unit(2.8, "meter"),
  5274. default: true
  5275. },
  5276. {
  5277. name: "Macro",
  5278. height: math.unit(38, "meter")
  5279. }
  5280. ]
  5281. ))
  5282. characterMakers.push(() => makeCharacter(
  5283. { name: "Angelpatamon", species: ["patamon", "deity"], tags: ["anthro"] },
  5284. {
  5285. front: {
  5286. height: math.unit(470, "feet"),
  5287. weight: math.unit(924, "tons"),
  5288. name: "Front",
  5289. image: {
  5290. source: "./media/characters/angelpatamon/front.svg",
  5291. }
  5292. }
  5293. },
  5294. [
  5295. {
  5296. name: "Normal",
  5297. height: math.unit(470, "feet"),
  5298. default: true
  5299. },
  5300. {
  5301. name: "Deity Size I",
  5302. height: math.unit(28651.2, "km")
  5303. },
  5304. {
  5305. name: "Deity Size II",
  5306. height: math.unit(171907.2, "km")
  5307. }
  5308. ]
  5309. ))
  5310. characterMakers.push(() => makeCharacter(
  5311. { name: "Cryae", species: ["dragon"], tags: ["feral"] },
  5312. {
  5313. side: {
  5314. height: math.unit(7.2, "meter"),
  5315. weight: math.unit(8.2, "tons"),
  5316. name: "Side",
  5317. image: {
  5318. source: "./media/characters/cryae/side.svg",
  5319. extra: 3500 / 1500
  5320. }
  5321. }
  5322. },
  5323. [
  5324. {
  5325. name: "Normal",
  5326. height: math.unit(7.2, "meter"),
  5327. default: true
  5328. }
  5329. ]
  5330. ))
  5331. characterMakers.push(() => makeCharacter(
  5332. { name: "Xera", species: ["jugani"], tags: ["anthro"] },
  5333. {
  5334. front: {
  5335. height: math.unit(6, "feet"),
  5336. weight: math.unit(175, "lb"),
  5337. name: "Front",
  5338. image: {
  5339. source: "./media/characters/xera/front.svg",
  5340. extra: 2377 / 1972,
  5341. bottom: 75.5 / 2452
  5342. }
  5343. },
  5344. side: {
  5345. height: math.unit(6, "feet"),
  5346. weight: math.unit(175, "lb"),
  5347. name: "Side",
  5348. image: {
  5349. source: "./media/characters/xera/side.svg",
  5350. extra: 2345 / 2019,
  5351. bottom: 39.7 / 2384
  5352. }
  5353. },
  5354. back: {
  5355. height: math.unit(6, "feet"),
  5356. weight: math.unit(175, "lb"),
  5357. name: "Back",
  5358. image: {
  5359. source: "./media/characters/xera/back.svg",
  5360. extra: 2095 / 1984,
  5361. bottom: 67 / 2166
  5362. }
  5363. },
  5364. },
  5365. [
  5366. {
  5367. name: "Small",
  5368. height: math.unit(10, "feet")
  5369. },
  5370. {
  5371. name: "Macro",
  5372. height: math.unit(500, "meters"),
  5373. default: true
  5374. },
  5375. {
  5376. name: "Macro+",
  5377. height: math.unit(10, "km")
  5378. },
  5379. {
  5380. name: "Gigamacro",
  5381. height: math.unit(25000, "km")
  5382. },
  5383. {
  5384. name: "Teramacro",
  5385. height: math.unit(3e6, "km")
  5386. }
  5387. ]
  5388. ))
  5389. characterMakers.push(() => makeCharacter(
  5390. { name: "Nebula", species: ["dragon", "wolf"], tags: ["anthro"] },
  5391. {
  5392. front: {
  5393. height: math.unit(6, "feet"),
  5394. weight: math.unit(175, "lb"),
  5395. name: "Front",
  5396. image: {
  5397. source: "./media/characters/nebula/front.svg",
  5398. extra: 2566 / 2362,
  5399. bottom: 81 / 2644
  5400. }
  5401. }
  5402. },
  5403. [
  5404. {
  5405. name: "Small",
  5406. height: math.unit(4.5, "meters")
  5407. },
  5408. {
  5409. name: "Macro",
  5410. height: math.unit(1500, "meters"),
  5411. default: true
  5412. },
  5413. {
  5414. name: "Megamacro",
  5415. height: math.unit(150, "km")
  5416. },
  5417. {
  5418. name: "Gigamacro",
  5419. height: math.unit(27000, "km")
  5420. }
  5421. ]
  5422. ))
  5423. characterMakers.push(() => makeCharacter(
  5424. { name: "Abysgar", species: ["raptor"], tags: ["anthro"] },
  5425. {
  5426. front: {
  5427. height: math.unit(6, "feet"),
  5428. weight: math.unit(225, "lb"),
  5429. name: "Front",
  5430. image: {
  5431. source: "./media/characters/abysgar/front.svg",
  5432. extra: 1739/1614,
  5433. bottom: 71/1810
  5434. }
  5435. },
  5436. frontNsfw: {
  5437. height: math.unit(6, "feet"),
  5438. weight: math.unit(225, "lb"),
  5439. name: "Front (NSFW)",
  5440. image: {
  5441. source: "./media/characters/abysgar/front-nsfw.svg",
  5442. extra: 1739/1614,
  5443. bottom: 71/1810
  5444. }
  5445. },
  5446. back: {
  5447. height: math.unit(4.6, "feet"),
  5448. weight: math.unit(225, "lb"),
  5449. name: "Back",
  5450. image: {
  5451. source: "./media/characters/abysgar/back.svg",
  5452. extra: 1384/1327,
  5453. bottom: 0/1384
  5454. }
  5455. },
  5456. head: {
  5457. height: math.unit(1.25, "feet"),
  5458. name: "Head",
  5459. image: {
  5460. source: "./media/characters/abysgar/head.svg",
  5461. extra: 669/569,
  5462. bottom: 0/669
  5463. }
  5464. },
  5465. },
  5466. [
  5467. {
  5468. name: "Small",
  5469. height: math.unit(4.5, "meters")
  5470. },
  5471. {
  5472. name: "Macro",
  5473. height: math.unit(1250, "meters"),
  5474. default: true
  5475. },
  5476. {
  5477. name: "Megamacro",
  5478. height: math.unit(125, "km")
  5479. },
  5480. {
  5481. name: "Gigamacro",
  5482. height: math.unit(26000, "km")
  5483. }
  5484. ]
  5485. ))
  5486. characterMakers.push(() => makeCharacter(
  5487. { name: "Yakuz", species: ["wolf"], tags: ["anthro"] },
  5488. {
  5489. front: {
  5490. height: math.unit(6, "feet"),
  5491. weight: math.unit(180, "lb"),
  5492. name: "Front",
  5493. image: {
  5494. source: "./media/characters/yakuz/front.svg"
  5495. }
  5496. }
  5497. },
  5498. [
  5499. {
  5500. name: "Small",
  5501. height: math.unit(5, "meters")
  5502. },
  5503. {
  5504. name: "Macro",
  5505. height: math.unit(1500, "meters"),
  5506. default: true
  5507. },
  5508. {
  5509. name: "Megamacro",
  5510. height: math.unit(200, "km")
  5511. },
  5512. {
  5513. name: "Gigamacro",
  5514. height: math.unit(100000, "km")
  5515. }
  5516. ]
  5517. ))
  5518. characterMakers.push(() => makeCharacter(
  5519. { name: "Mirova", species: ["luxray", "shark"], tags: ["anthro"] },
  5520. {
  5521. front: {
  5522. height: math.unit(6, "feet"),
  5523. weight: math.unit(175, "lb"),
  5524. name: "Front",
  5525. image: {
  5526. source: "./media/characters/mirova/front.svg",
  5527. extra: 1947/1753,
  5528. bottom: 28/1975
  5529. }
  5530. },
  5531. back: {
  5532. height: math.unit(2.48, "feet"),
  5533. name: "Back",
  5534. image: {
  5535. source: "./media/characters/mirova/back.svg"
  5536. }
  5537. },
  5538. head: {
  5539. height: math.unit(1.94, "feet"),
  5540. name: "Head",
  5541. image: {
  5542. source: "./media/characters/mirova/head.svg"
  5543. }
  5544. },
  5545. headSide: {
  5546. height: math.unit(2, "feet"),
  5547. name: "Head (Side)",
  5548. image: {
  5549. source: "./media/characters/mirova/head-side.svg"
  5550. }
  5551. },
  5552. },
  5553. [
  5554. {
  5555. name: "Small",
  5556. height: math.unit(5, "meters")
  5557. },
  5558. {
  5559. name: "Macro",
  5560. height: math.unit(900, "meters"),
  5561. default: true
  5562. },
  5563. {
  5564. name: "Megamacro",
  5565. height: math.unit(135, "km")
  5566. },
  5567. {
  5568. name: "Gigamacro",
  5569. height: math.unit(20000, "km")
  5570. }
  5571. ]
  5572. ))
  5573. characterMakers.push(() => makeCharacter(
  5574. { name: "Asana (Mech)", species: ["zoid"], tags: ["feral"] },
  5575. {
  5576. side: {
  5577. height: math.unit(28.35, "feet"),
  5578. weight: math.unit(99.75, "tons"),
  5579. name: "Side",
  5580. image: {
  5581. source: "./media/characters/asana-mech/side.svg",
  5582. extra: 923 / 699,
  5583. bottom: 50 / 975
  5584. }
  5585. },
  5586. chaingun: {
  5587. height: math.unit(7, "feet"),
  5588. weight: math.unit(2400, "lb"),
  5589. name: "Chaingun",
  5590. image: {
  5591. source: "./media/characters/asana-mech/chaingun.svg"
  5592. }
  5593. },
  5594. laser: {
  5595. height: math.unit(7.12, "feet"),
  5596. weight: math.unit(2000, "lb"),
  5597. name: "Laser",
  5598. image: {
  5599. source: "./media/characters/asana-mech/laser.svg"
  5600. }
  5601. },
  5602. },
  5603. [
  5604. {
  5605. name: "Normal",
  5606. height: math.unit(28.35, "feet"),
  5607. default: true
  5608. },
  5609. {
  5610. name: "Macro",
  5611. height: math.unit(2500, "feet")
  5612. },
  5613. {
  5614. name: "Megamacro",
  5615. height: math.unit(25, "miles")
  5616. },
  5617. {
  5618. name: "Examacro",
  5619. height: math.unit(6e8, "lightyears")
  5620. },
  5621. ]
  5622. ))
  5623. characterMakers.push(() => makeCharacter(
  5624. { name: "Asche", species: ["fox", "dragon", "lion"], tags: ["anthro"] },
  5625. {
  5626. front: {
  5627. height: math.unit(5, "meters"),
  5628. weight: math.unit(1000, "kg"),
  5629. name: "Front",
  5630. image: {
  5631. source: "./media/characters/asche/front.svg",
  5632. extra: 1258 / 1190,
  5633. bottom: 47 / 1305
  5634. }
  5635. },
  5636. frontUnderwear: {
  5637. height: math.unit(5, "meters"),
  5638. weight: math.unit(1000, "kg"),
  5639. name: "Front (Underwear)",
  5640. image: {
  5641. source: "./media/characters/asche/front-underwear.svg",
  5642. extra: 1258 / 1190,
  5643. bottom: 47 / 1305
  5644. }
  5645. },
  5646. frontDressed: {
  5647. height: math.unit(5, "meters"),
  5648. weight: math.unit(1000, "kg"),
  5649. name: "Front (Dressed)",
  5650. image: {
  5651. source: "./media/characters/asche/front-dressed.svg",
  5652. extra: 1258 / 1190,
  5653. bottom: 47 / 1305
  5654. }
  5655. },
  5656. frontArmor: {
  5657. height: math.unit(5, "meters"),
  5658. weight: math.unit(1000, "kg"),
  5659. name: "Front (Armored)",
  5660. image: {
  5661. source: "./media/characters/asche/front-armored.svg",
  5662. extra: 1374 / 1308,
  5663. bottom: 23 / 1397
  5664. }
  5665. },
  5666. mp724: {
  5667. height: math.unit(0.96, "meters"),
  5668. weight: math.unit(38, "kg"),
  5669. name: "H&K MP724",
  5670. image: {
  5671. source: "./media/characters/asche/h&k-mp724.svg"
  5672. }
  5673. },
  5674. side: {
  5675. height: math.unit(5, "meters"),
  5676. weight: math.unit(1000, "kg"),
  5677. name: "Side",
  5678. image: {
  5679. source: "./media/characters/asche/side.svg",
  5680. extra: 1717 / 1609,
  5681. bottom: 0.005
  5682. }
  5683. },
  5684. back: {
  5685. height: math.unit(5, "meters"),
  5686. weight: math.unit(1000, "kg"),
  5687. name: "Back",
  5688. image: {
  5689. source: "./media/characters/asche/back.svg",
  5690. extra: 1570 / 1501
  5691. }
  5692. },
  5693. },
  5694. [
  5695. {
  5696. name: "DEFCON 5",
  5697. height: math.unit(5, "meters")
  5698. },
  5699. {
  5700. name: "DEFCON 4",
  5701. height: math.unit(500, "meters"),
  5702. default: true
  5703. },
  5704. {
  5705. name: "DEFCON 3",
  5706. height: math.unit(5, "km")
  5707. },
  5708. {
  5709. name: "DEFCON 2",
  5710. height: math.unit(500, "km")
  5711. },
  5712. {
  5713. name: "DEFCON 1",
  5714. height: math.unit(500000, "km")
  5715. },
  5716. {
  5717. name: "DEFCON 0",
  5718. height: math.unit(3, "gigaparsecs")
  5719. },
  5720. ]
  5721. ))
  5722. characterMakers.push(() => makeCharacter(
  5723. { name: "Gale", species: ["monster"], tags: ["anthro"] },
  5724. {
  5725. front: {
  5726. height: math.unit(7, "feet"),
  5727. weight: math.unit(92.7, "kg"),
  5728. name: "Front",
  5729. image: {
  5730. source: "./media/characters/gale/front.svg",
  5731. extra: 977/919,
  5732. bottom: 105/1082
  5733. }
  5734. },
  5735. side: {
  5736. height: math.unit(6.7, "feet"),
  5737. weight: math.unit(92.7, "kg"),
  5738. name: "Side",
  5739. image: {
  5740. source: "./media/characters/gale/side.svg",
  5741. extra: 978/922,
  5742. bottom: 140/1118
  5743. }
  5744. },
  5745. back: {
  5746. height: math.unit(7, "feet"),
  5747. weight: math.unit(92.7, "kg"),
  5748. name: "Back",
  5749. image: {
  5750. source: "./media/characters/gale/back.svg",
  5751. extra: 966/920,
  5752. bottom: 61/1027
  5753. }
  5754. },
  5755. maw: {
  5756. height: math.unit(2.23, "feet"),
  5757. name: "Maw",
  5758. image: {
  5759. source: "./media/characters/gale/maw.svg"
  5760. }
  5761. },
  5762. foot: {
  5763. height: math.unit(2.1, "feet"),
  5764. name: "Foot",
  5765. image: {
  5766. source: "./media/characters/gale/foot.svg"
  5767. }
  5768. },
  5769. },
  5770. [
  5771. {
  5772. name: "Normal",
  5773. height: math.unit(7, "feet")
  5774. },
  5775. {
  5776. name: "Macro",
  5777. height: math.unit(150, "feet"),
  5778. default: true
  5779. },
  5780. {
  5781. name: "Macro+",
  5782. height: math.unit(300, "feet")
  5783. },
  5784. ]
  5785. ))
  5786. characterMakers.push(() => makeCharacter(
  5787. { name: "Draylen", species: ["coyote"], tags: ["anthro"] },
  5788. {
  5789. front: {
  5790. height: math.unit(5 + 10/12, "feet"),
  5791. weight: math.unit(67, "kg"),
  5792. name: "Front",
  5793. image: {
  5794. source: "./media/characters/draylen/front.svg",
  5795. extra: 832/777,
  5796. bottom: 85/917
  5797. }
  5798. }
  5799. },
  5800. [
  5801. {
  5802. name: "Normal",
  5803. height: math.unit(5 + 10/12, "feet")
  5804. },
  5805. {
  5806. name: "Macro",
  5807. height: math.unit(150, "feet"),
  5808. default: true
  5809. }
  5810. ]
  5811. ))
  5812. characterMakers.push(() => makeCharacter(
  5813. { name: "Chez", species: ["foo-dog"], tags: ["anthro"] },
  5814. {
  5815. front: {
  5816. height: math.unit(7 + 9 / 12, "feet"),
  5817. weight: math.unit(379, "lbs"),
  5818. name: "Front",
  5819. image: {
  5820. source: "./media/characters/chez/front.svg"
  5821. }
  5822. },
  5823. side: {
  5824. height: math.unit(7 + 9 / 12, "feet"),
  5825. weight: math.unit(379, "lbs"),
  5826. name: "Side",
  5827. image: {
  5828. source: "./media/characters/chez/side.svg"
  5829. }
  5830. }
  5831. },
  5832. [
  5833. {
  5834. name: "Normal",
  5835. height: math.unit(7 + 9 / 12, "feet"),
  5836. default: true
  5837. },
  5838. {
  5839. name: "God King",
  5840. height: math.unit(9750000, "meters")
  5841. }
  5842. ]
  5843. ))
  5844. characterMakers.push(() => makeCharacter(
  5845. { name: "Kaylum", species: ["dragon", "shark"], tags: ["anthro"] },
  5846. {
  5847. front: {
  5848. height: math.unit(6, "feet"),
  5849. weight: math.unit(275, "lbs"),
  5850. name: "Front",
  5851. image: {
  5852. source: "./media/characters/kaylum/front.svg",
  5853. bottom: 0.01,
  5854. extra: 1166 / 1031
  5855. }
  5856. },
  5857. frontWingless: {
  5858. height: math.unit(6, "feet"),
  5859. weight: math.unit(275, "lbs"),
  5860. name: "Front (Wingless)",
  5861. image: {
  5862. source: "./media/characters/kaylum/front-wingless.svg",
  5863. bottom: 0.01,
  5864. extra: 1117 / 1031
  5865. }
  5866. }
  5867. },
  5868. [
  5869. {
  5870. name: "Normal",
  5871. height: math.unit(3.05, "meters")
  5872. },
  5873. {
  5874. name: "Master",
  5875. height: math.unit(5.5, "meters")
  5876. },
  5877. {
  5878. name: "Rampage",
  5879. height: math.unit(19, "meters")
  5880. },
  5881. {
  5882. name: "Macro Lite",
  5883. height: math.unit(37, "meters")
  5884. },
  5885. {
  5886. name: "Hyper Predator",
  5887. height: math.unit(61, "meters")
  5888. },
  5889. {
  5890. name: "Macro",
  5891. height: math.unit(138, "meters"),
  5892. default: true
  5893. }
  5894. ]
  5895. ))
  5896. characterMakers.push(() => makeCharacter(
  5897. { name: "Geta", species: ["fox"], tags: ["anthro"] },
  5898. {
  5899. front: {
  5900. height: math.unit(5 + 5 / 12, "feet"),
  5901. weight: math.unit(120, "lbs"),
  5902. name: "Front",
  5903. image: {
  5904. source: "./media/characters/geta/front.svg",
  5905. extra: 1003/933,
  5906. bottom: 21/1024
  5907. }
  5908. },
  5909. paw: {
  5910. height: math.unit(0.35, "feet"),
  5911. name: "Paw",
  5912. image: {
  5913. source: "./media/characters/geta/paw.svg"
  5914. }
  5915. },
  5916. },
  5917. [
  5918. {
  5919. name: "Micro",
  5920. height: math.unit(3, "inches"),
  5921. default: true
  5922. },
  5923. {
  5924. name: "Normal",
  5925. height: math.unit(5 + 5 / 12, "feet")
  5926. }
  5927. ]
  5928. ))
  5929. characterMakers.push(() => makeCharacter(
  5930. { name: "Tyrnn", species: ["dragon"], tags: ["anthro"] },
  5931. {
  5932. front: {
  5933. height: math.unit(6, "feet"),
  5934. weight: math.unit(300, "lbs"),
  5935. name: "Front",
  5936. image: {
  5937. source: "./media/characters/tyrnn/front.svg"
  5938. }
  5939. }
  5940. },
  5941. [
  5942. {
  5943. name: "Main Height",
  5944. height: math.unit(355, "feet"),
  5945. default: true
  5946. },
  5947. {
  5948. name: "Fave. Height",
  5949. height: math.unit(2400, "feet")
  5950. }
  5951. ]
  5952. ))
  5953. characterMakers.push(() => makeCharacter(
  5954. { name: "Apple", species: ["elephant"], tags: ["anthro"] },
  5955. {
  5956. front: {
  5957. height: math.unit(6, "feet"),
  5958. weight: math.unit(300, "lbs"),
  5959. name: "Front",
  5960. image: {
  5961. source: "./media/characters/appledectomy/front.svg"
  5962. }
  5963. }
  5964. },
  5965. [
  5966. {
  5967. name: "Macro",
  5968. height: math.unit(2500, "feet")
  5969. },
  5970. {
  5971. name: "Megamacro",
  5972. height: math.unit(50, "miles"),
  5973. default: true
  5974. },
  5975. {
  5976. name: "Gigamacro",
  5977. height: math.unit(5000, "miles")
  5978. },
  5979. {
  5980. name: "Teramacro",
  5981. height: math.unit(250000, "miles")
  5982. },
  5983. ]
  5984. ))
  5985. characterMakers.push(() => makeCharacter(
  5986. { name: "Vulpes", species: ["fox"], tags: ["anthro"] },
  5987. {
  5988. front: {
  5989. height: math.unit(6, "feet"),
  5990. weight: math.unit(200, "lbs"),
  5991. name: "Front",
  5992. image: {
  5993. source: "./media/characters/vulpes/front.svg",
  5994. extra: 573 / 543,
  5995. bottom: 0.033
  5996. }
  5997. },
  5998. side: {
  5999. height: math.unit(6, "feet"),
  6000. weight: math.unit(200, "lbs"),
  6001. name: "Side",
  6002. image: {
  6003. source: "./media/characters/vulpes/side.svg",
  6004. extra: 577 / 549,
  6005. bottom: 11 / 588
  6006. }
  6007. },
  6008. back: {
  6009. height: math.unit(6, "feet"),
  6010. weight: math.unit(200, "lbs"),
  6011. name: "Back",
  6012. image: {
  6013. source: "./media/characters/vulpes/back.svg",
  6014. extra: 573 / 549,
  6015. bottom: 20 / 593
  6016. }
  6017. },
  6018. feet: {
  6019. height: math.unit(1.276, "feet"),
  6020. name: "Feet",
  6021. image: {
  6022. source: "./media/characters/vulpes/feet.svg"
  6023. }
  6024. },
  6025. maw: {
  6026. height: math.unit(1.18, "feet"),
  6027. name: "Maw",
  6028. image: {
  6029. source: "./media/characters/vulpes/maw.svg"
  6030. }
  6031. },
  6032. },
  6033. [
  6034. {
  6035. name: "Micro",
  6036. height: math.unit(2, "inches")
  6037. },
  6038. {
  6039. name: "Normal",
  6040. height: math.unit(6.3, "feet")
  6041. },
  6042. {
  6043. name: "Macro",
  6044. height: math.unit(850, "feet")
  6045. },
  6046. {
  6047. name: "Megamacro",
  6048. height: math.unit(7500, "feet"),
  6049. default: true
  6050. },
  6051. {
  6052. name: "Gigamacro",
  6053. height: math.unit(570000, "miles")
  6054. }
  6055. ]
  6056. ))
  6057. characterMakers.push(() => makeCharacter(
  6058. { name: "Rain Fallen", species: ["wolf", "demon"], tags: ["anthro", "feral"] },
  6059. {
  6060. front: {
  6061. height: math.unit(6, "feet"),
  6062. weight: math.unit(210, "lbs"),
  6063. name: "Front",
  6064. image: {
  6065. source: "./media/characters/rain-fallen/front.svg"
  6066. }
  6067. },
  6068. side: {
  6069. height: math.unit(6, "feet"),
  6070. weight: math.unit(210, "lbs"),
  6071. name: "Side",
  6072. image: {
  6073. source: "./media/characters/rain-fallen/side.svg"
  6074. }
  6075. },
  6076. back: {
  6077. height: math.unit(6, "feet"),
  6078. weight: math.unit(210, "lbs"),
  6079. name: "Back",
  6080. image: {
  6081. source: "./media/characters/rain-fallen/back.svg"
  6082. }
  6083. },
  6084. feral: {
  6085. height: math.unit(9, "feet"),
  6086. weight: math.unit(700, "lbs"),
  6087. name: "Feral",
  6088. image: {
  6089. source: "./media/characters/rain-fallen/feral.svg"
  6090. }
  6091. },
  6092. },
  6093. [
  6094. {
  6095. name: "Meddling with Mortals",
  6096. height: math.unit(8 + 8/12, "feet")
  6097. },
  6098. {
  6099. name: "Normal",
  6100. height: math.unit(5, "meter")
  6101. },
  6102. {
  6103. name: "Macro",
  6104. height: math.unit(150, "meter"),
  6105. default: true
  6106. },
  6107. {
  6108. name: "Megamacro",
  6109. height: math.unit(278e6, "meter")
  6110. },
  6111. {
  6112. name: "Gigamacro",
  6113. height: math.unit(2e9, "meter")
  6114. },
  6115. {
  6116. name: "Teramacro",
  6117. height: math.unit(8e12, "meter")
  6118. },
  6119. {
  6120. name: "Devourer",
  6121. height: math.unit(14, "zettameters")
  6122. },
  6123. {
  6124. name: "Scarlet King",
  6125. height: math.unit(18, "yottameters")
  6126. },
  6127. {
  6128. name: "Void",
  6129. height: math.unit(1e88, "yottameters")
  6130. }
  6131. ]
  6132. ))
  6133. characterMakers.push(() => makeCharacter(
  6134. { name: "Zaakira", species: ["wolf"], tags: ["anthro"] },
  6135. {
  6136. standing: {
  6137. height: math.unit(6, "feet"),
  6138. weight: math.unit(180, "lbs"),
  6139. name: "Standing",
  6140. image: {
  6141. source: "./media/characters/zaakira/standing.svg",
  6142. extra: 1599/1504,
  6143. bottom: 39/1638
  6144. }
  6145. },
  6146. laying: {
  6147. height: math.unit(3.3, "feet"),
  6148. weight: math.unit(180, "lbs"),
  6149. name: "Laying",
  6150. image: {
  6151. source: "./media/characters/zaakira/laying.svg"
  6152. }
  6153. },
  6154. },
  6155. [
  6156. {
  6157. name: "Normal",
  6158. height: math.unit(12, "feet")
  6159. },
  6160. {
  6161. name: "Macro",
  6162. height: math.unit(279, "feet"),
  6163. default: true
  6164. }
  6165. ]
  6166. ))
  6167. characterMakers.push(() => makeCharacter(
  6168. { name: "Sigvald", species: ["dragon"], tags: ["anthro"] },
  6169. {
  6170. femSfw: {
  6171. height: math.unit(8, "feet"),
  6172. weight: math.unit(350, "lb"),
  6173. name: "Fem",
  6174. image: {
  6175. source: "./media/characters/sigvald/fem-sfw.svg",
  6176. extra: 182 / 164,
  6177. bottom: 8.7 / 190.5
  6178. }
  6179. },
  6180. femNsfw: {
  6181. height: math.unit(8, "feet"),
  6182. weight: math.unit(350, "lb"),
  6183. name: "Fem (NSFW)",
  6184. image: {
  6185. source: "./media/characters/sigvald/fem-nsfw.svg",
  6186. extra: 182 / 164,
  6187. bottom: 8.7 / 190.5
  6188. }
  6189. },
  6190. maleNsfw: {
  6191. height: math.unit(8, "feet"),
  6192. weight: math.unit(350, "lb"),
  6193. name: "Male (NSFW)",
  6194. image: {
  6195. source: "./media/characters/sigvald/male-nsfw.svg",
  6196. extra: 182 / 164,
  6197. bottom: 8.7 / 190.5
  6198. }
  6199. },
  6200. hermNsfw: {
  6201. height: math.unit(8, "feet"),
  6202. weight: math.unit(350, "lb"),
  6203. name: "Herm (NSFW)",
  6204. image: {
  6205. source: "./media/characters/sigvald/herm-nsfw.svg",
  6206. extra: 182 / 164,
  6207. bottom: 8.7 / 190.5
  6208. }
  6209. },
  6210. dick: {
  6211. height: math.unit(2.36, "feet"),
  6212. name: "Dick",
  6213. image: {
  6214. source: "./media/characters/sigvald/dick.svg"
  6215. }
  6216. },
  6217. eye: {
  6218. height: math.unit(0.31, "feet"),
  6219. name: "Eye",
  6220. image: {
  6221. source: "./media/characters/sigvald/eye.svg"
  6222. }
  6223. },
  6224. mouth: {
  6225. height: math.unit(0.92, "feet"),
  6226. name: "Mouth",
  6227. image: {
  6228. source: "./media/characters/sigvald/mouth.svg"
  6229. }
  6230. },
  6231. paws: {
  6232. height: math.unit(2.2, "feet"),
  6233. name: "Paws",
  6234. image: {
  6235. source: "./media/characters/sigvald/paws.svg"
  6236. }
  6237. }
  6238. },
  6239. [
  6240. {
  6241. name: "Normal",
  6242. height: math.unit(8, "feet")
  6243. },
  6244. {
  6245. name: "Large",
  6246. height: math.unit(12, "feet")
  6247. },
  6248. {
  6249. name: "Larger",
  6250. height: math.unit(20, "feet")
  6251. },
  6252. {
  6253. name: "Macro",
  6254. height: math.unit(150, "feet")
  6255. },
  6256. {
  6257. name: "Macro+",
  6258. height: math.unit(200, "feet"),
  6259. default: true
  6260. },
  6261. ]
  6262. ))
  6263. characterMakers.push(() => makeCharacter(
  6264. { name: "Scott", species: ["fox"], tags: ["anthro", "taur"] },
  6265. {
  6266. anthro_front: {
  6267. height: math.unit(5 + 11/12, "feet"),
  6268. weight: math.unit(250, "lb"),
  6269. name: "Front",
  6270. image: {
  6271. source: "./media/characters/scott/anthro-front.svg",
  6272. extra: 851/781,
  6273. bottom: 54/905
  6274. },
  6275. form: "anthro",
  6276. default: true
  6277. },
  6278. anthro_side: {
  6279. height: math.unit(5.1, "feet"),
  6280. weight: math.unit(250, "lb"),
  6281. name: "Side",
  6282. image: {
  6283. source: "./media/characters/scott/anthro-side.svg"
  6284. },
  6285. form: "anthro",
  6286. },
  6287. anthro_dick: {
  6288. height: math.unit(1.33, "feet"),
  6289. name: "Dick",
  6290. image: {
  6291. source: "./media/characters/scott/anthro-dick.svg"
  6292. },
  6293. form: "anthro",
  6294. },
  6295. side: {
  6296. height: math.unit(12, "feet"),
  6297. weight: math.unit(2000, "kg"),
  6298. name: "Side",
  6299. image: {
  6300. source: "./media/characters/scott/side.svg",
  6301. extra: 754 / 724,
  6302. bottom: 0.069
  6303. },
  6304. form: "taur",
  6305. default: true
  6306. },
  6307. upright: {
  6308. height: math.unit(12, "feet"),
  6309. weight: math.unit(2000, "kg"),
  6310. name: "Upright",
  6311. image: {
  6312. source: "./media/characters/scott/upright.svg",
  6313. extra: 3881 / 3722,
  6314. bottom: 0.05
  6315. },
  6316. form: "taur",
  6317. },
  6318. },
  6319. [
  6320. {
  6321. name: "Normal",
  6322. height: math.unit(5 + 11/12, "feet"),
  6323. default: true,
  6324. form: "anthro"
  6325. },
  6326. {
  6327. name: "Normal",
  6328. height: math.unit(12, "feet"),
  6329. default: true,
  6330. form: "taur"
  6331. },
  6332. ],
  6333. {
  6334. "anthro": {
  6335. name: "Anthro",
  6336. default: true
  6337. },
  6338. "taur": {
  6339. name: "Taur",
  6340. },
  6341. }
  6342. ))
  6343. characterMakers.push(() => makeCharacter(
  6344. { name: "Tobias", species: ["dragon"], tags: ["feral"] },
  6345. {
  6346. side: {
  6347. height: math.unit(8, "meters"),
  6348. weight: math.unit(84755, "lbs"),
  6349. name: "Side",
  6350. image: {
  6351. source: "./media/characters/tobias/side.svg",
  6352. extra: 1474 / 1096,
  6353. bottom: 38.9 / 1513.1235
  6354. }
  6355. },
  6356. maw: {
  6357. height: math.unit(2.3, "meters"),
  6358. name: "Maw",
  6359. image: {
  6360. source: "./media/characters/tobias/maw.svg"
  6361. }
  6362. },
  6363. burp: {
  6364. height: math.unit(2.85, "meters"),
  6365. name: "Burp",
  6366. image: {
  6367. source: "./media/characters/tobias/burp.svg"
  6368. }
  6369. },
  6370. },
  6371. [
  6372. {
  6373. name: "Normal",
  6374. height: math.unit(8, "meters"),
  6375. default: true
  6376. },
  6377. ]
  6378. ))
  6379. characterMakers.push(() => makeCharacter(
  6380. { name: "Kieran", species: ["wolf"], tags: ["taur"] },
  6381. {
  6382. front: {
  6383. height: math.unit(5.5, "feet"),
  6384. weight: math.unit(400, "lbs"),
  6385. name: "Front",
  6386. image: {
  6387. source: "./media/characters/kieran/front.svg",
  6388. extra: 2694 / 2364,
  6389. bottom: 217 / 2908
  6390. }
  6391. },
  6392. side: {
  6393. height: math.unit(5.5, "feet"),
  6394. weight: math.unit(400, "lbs"),
  6395. name: "Side",
  6396. image: {
  6397. source: "./media/characters/kieran/side.svg",
  6398. extra: 875 / 777,
  6399. bottom: 84.6 / 959
  6400. }
  6401. },
  6402. },
  6403. [
  6404. {
  6405. name: "Normal",
  6406. height: math.unit(5.5, "feet"),
  6407. default: true
  6408. },
  6409. ]
  6410. ))
  6411. characterMakers.push(() => makeCharacter(
  6412. { name: "Sanya", species: ["eagle"], tags: ["anthro"] },
  6413. {
  6414. side: {
  6415. height: math.unit(2, "meters"),
  6416. weight: math.unit(70, "kg"),
  6417. name: "Side",
  6418. image: {
  6419. source: "./media/characters/sanya/side.svg",
  6420. bottom: 0.02,
  6421. extra: 1.02
  6422. }
  6423. },
  6424. },
  6425. [
  6426. {
  6427. name: "Small",
  6428. height: math.unit(2, "meters")
  6429. },
  6430. {
  6431. name: "Normal",
  6432. height: math.unit(3, "meters")
  6433. },
  6434. {
  6435. name: "Macro",
  6436. height: math.unit(16, "meters"),
  6437. default: true
  6438. },
  6439. ]
  6440. ))
  6441. characterMakers.push(() => makeCharacter(
  6442. { name: "Miranda", species: ["dragon"], tags: ["anthro"] },
  6443. {
  6444. front: {
  6445. height: math.unit(2, "meters"),
  6446. weight: math.unit(120, "kg"),
  6447. name: "Front",
  6448. image: {
  6449. source: "./media/characters/miranda/front.svg",
  6450. extra: 195 / 185,
  6451. bottom: 10.9 / 206.5
  6452. }
  6453. },
  6454. back: {
  6455. height: math.unit(2, "meters"),
  6456. weight: math.unit(120, "kg"),
  6457. name: "Back",
  6458. image: {
  6459. source: "./media/characters/miranda/back.svg",
  6460. extra: 201 / 193,
  6461. bottom: 2.3 / 203.7
  6462. }
  6463. },
  6464. },
  6465. [
  6466. {
  6467. name: "Normal",
  6468. height: math.unit(10, "feet"),
  6469. default: true
  6470. }
  6471. ]
  6472. ))
  6473. characterMakers.push(() => makeCharacter(
  6474. { name: "James", species: ["deer"], tags: ["anthro"] },
  6475. {
  6476. side: {
  6477. height: math.unit(2, "meters"),
  6478. weight: math.unit(100, "kg"),
  6479. name: "Front",
  6480. image: {
  6481. source: "./media/characters/james/front.svg",
  6482. extra: 10 / 8.5
  6483. }
  6484. },
  6485. },
  6486. [
  6487. {
  6488. name: "Normal",
  6489. height: math.unit(8.5, "feet"),
  6490. default: true
  6491. }
  6492. ]
  6493. ))
  6494. characterMakers.push(() => makeCharacter(
  6495. { name: "Heather", species: ["cow"], tags: ["taur"] },
  6496. {
  6497. side: {
  6498. height: math.unit(9.5, "feet"),
  6499. weight: math.unit(2500, "lbs"),
  6500. name: "Side",
  6501. image: {
  6502. source: "./media/characters/heather/side.svg"
  6503. }
  6504. },
  6505. },
  6506. [
  6507. {
  6508. name: "Normal",
  6509. height: math.unit(9.5, "feet"),
  6510. default: true
  6511. }
  6512. ]
  6513. ))
  6514. characterMakers.push(() => makeCharacter(
  6515. { name: "Lukas", species: ["dog"], tags: ["feral"] },
  6516. {
  6517. side: {
  6518. height: math.unit(6.5, "feet"),
  6519. weight: math.unit(400, "lbs"),
  6520. name: "Side",
  6521. image: {
  6522. source: "./media/characters/lukas/side.svg",
  6523. extra: 7.25 / 6.5
  6524. }
  6525. },
  6526. },
  6527. [
  6528. {
  6529. name: "Normal",
  6530. height: math.unit(6.5, "feet"),
  6531. default: true
  6532. }
  6533. ]
  6534. ))
  6535. characterMakers.push(() => makeCharacter(
  6536. { name: "Louise", species: ["crocodile"], tags: ["feral"] },
  6537. {
  6538. side: {
  6539. height: math.unit(5, "feet"),
  6540. weight: math.unit(3000, "lbs"),
  6541. name: "Side",
  6542. image: {
  6543. source: "./media/characters/louise/side.svg"
  6544. }
  6545. },
  6546. },
  6547. [
  6548. {
  6549. name: "Normal",
  6550. height: math.unit(5, "feet"),
  6551. default: true
  6552. }
  6553. ]
  6554. ))
  6555. characterMakers.push(() => makeCharacter(
  6556. { name: "Ramona", species: ["borzoi"], tags: ["anthro"] },
  6557. {
  6558. side: {
  6559. height: math.unit(6, "feet"),
  6560. weight: math.unit(150, "lbs"),
  6561. name: "Side",
  6562. image: {
  6563. source: "./media/characters/ramona/side.svg",
  6564. extra: 871/854,
  6565. bottom: 41/912
  6566. }
  6567. },
  6568. },
  6569. [
  6570. {
  6571. name: "Normal",
  6572. height: math.unit(6 + 4/12, "feet")
  6573. },
  6574. {
  6575. name: "Minimacro",
  6576. height: math.unit(5.3, "meters"),
  6577. default: true
  6578. },
  6579. {
  6580. name: "Macro",
  6581. height: math.unit(20, "stories")
  6582. },
  6583. {
  6584. name: "Macro+",
  6585. height: math.unit(50, "stories")
  6586. },
  6587. ]
  6588. ))
  6589. characterMakers.push(() => makeCharacter(
  6590. { name: "Deerpuff", species: ["deer"], tags: ["anthro"] },
  6591. {
  6592. standing: {
  6593. height: math.unit(5.75, "feet"),
  6594. weight: math.unit(160, "lbs"),
  6595. name: "Standing",
  6596. image: {
  6597. source: "./media/characters/deerpuff/standing.svg",
  6598. extra: 682 / 624
  6599. }
  6600. },
  6601. sitting: {
  6602. height: math.unit(5.75 / 1.79, "feet"),
  6603. weight: math.unit(160, "lbs"),
  6604. name: "Sitting",
  6605. image: {
  6606. source: "./media/characters/deerpuff/sitting.svg",
  6607. bottom: 44 / 400,
  6608. extra: 1
  6609. }
  6610. },
  6611. taurLaying: {
  6612. height: math.unit(6, "feet"),
  6613. weight: math.unit(400, "lbs"),
  6614. name: "Taur (Laying)",
  6615. image: {
  6616. source: "./media/characters/deerpuff/taur-laying.svg"
  6617. }
  6618. },
  6619. },
  6620. [
  6621. {
  6622. name: "Puffball",
  6623. height: math.unit(6, "inches")
  6624. },
  6625. {
  6626. name: "Normalpuff",
  6627. height: math.unit(5.75, "feet")
  6628. },
  6629. {
  6630. name: "Macropuff",
  6631. height: math.unit(1500, "feet"),
  6632. default: true
  6633. },
  6634. {
  6635. name: "Megapuff",
  6636. height: math.unit(500, "miles")
  6637. },
  6638. {
  6639. name: "Gigapuff",
  6640. height: math.unit(250000, "miles")
  6641. },
  6642. {
  6643. name: "Omegapuff",
  6644. height: math.unit(1000, "lightyears")
  6645. },
  6646. ]
  6647. ))
  6648. characterMakers.push(() => makeCharacter(
  6649. { name: "Vivian", species: ["wolf"], tags: ["anthro"] },
  6650. {
  6651. stomping: {
  6652. height: math.unit(6, "feet"),
  6653. weight: math.unit(170, "lbs"),
  6654. name: "Stomping",
  6655. image: {
  6656. source: "./media/characters/vivian/stomping.svg"
  6657. }
  6658. },
  6659. sitting: {
  6660. height: math.unit(6 / 1.75, "feet"),
  6661. weight: math.unit(170, "lbs"),
  6662. name: "Sitting",
  6663. image: {
  6664. source: "./media/characters/vivian/sitting.svg",
  6665. bottom: 1 / 6.4,
  6666. extra: 1,
  6667. }
  6668. },
  6669. },
  6670. [
  6671. {
  6672. name: "Normal",
  6673. height: math.unit(7, "feet"),
  6674. default: true
  6675. },
  6676. {
  6677. name: "Macro",
  6678. height: math.unit(10, "stories")
  6679. },
  6680. {
  6681. name: "Macro+",
  6682. height: math.unit(30, "stories")
  6683. },
  6684. {
  6685. name: "Megamacro",
  6686. height: math.unit(10, "miles")
  6687. },
  6688. {
  6689. name: "Megamacro+",
  6690. height: math.unit(2750000, "meters")
  6691. },
  6692. ]
  6693. ))
  6694. characterMakers.push(() => makeCharacter(
  6695. { name: "Prince", species: ["deer"], tags: ["anthro"] },
  6696. {
  6697. front: {
  6698. height: math.unit(6, "feet"),
  6699. weight: math.unit(160, "lbs"),
  6700. name: "Front",
  6701. image: {
  6702. source: "./media/characters/prince/front.svg",
  6703. extra: 1938/1682,
  6704. bottom: 45/1983
  6705. }
  6706. },
  6707. back: {
  6708. height: math.unit(6, "feet"),
  6709. weight: math.unit(160, "lbs"),
  6710. name: "Back",
  6711. image: {
  6712. source: "./media/characters/prince/back.svg",
  6713. extra: 1955/1726,
  6714. bottom: 6/1961
  6715. }
  6716. },
  6717. },
  6718. [
  6719. {
  6720. name: "Normal",
  6721. height: math.unit(7.75, "feet"),
  6722. default: true
  6723. },
  6724. {
  6725. name: "Not cute",
  6726. height: math.unit(17, "feet")
  6727. },
  6728. {
  6729. name: "I said NOT",
  6730. height: math.unit(91, "feet")
  6731. },
  6732. {
  6733. name: "Please stop",
  6734. height: math.unit(560, "feet")
  6735. },
  6736. {
  6737. name: "What have you done",
  6738. height: math.unit(2200, "feet")
  6739. },
  6740. {
  6741. name: "Deer God",
  6742. height: math.unit(3.6, "miles")
  6743. },
  6744. ]
  6745. ))
  6746. characterMakers.push(() => makeCharacter(
  6747. { name: "Psymon", species: ["horned-bush-viper", "cobra"], tags: ["anthro", "feral"] },
  6748. {
  6749. standing: {
  6750. height: math.unit(6, "feet"),
  6751. weight: math.unit(300, "lbs"),
  6752. name: "Standing",
  6753. image: {
  6754. source: "./media/characters/psymon/standing.svg",
  6755. extra: 1888 / 1810,
  6756. bottom: 0.05
  6757. }
  6758. },
  6759. slithering: {
  6760. height: math.unit(6, "feet"),
  6761. weight: math.unit(300, "lbs"),
  6762. name: "Slithering",
  6763. image: {
  6764. source: "./media/characters/psymon/slithering.svg",
  6765. extra: 1330 / 1224
  6766. }
  6767. },
  6768. slitheringAlt: {
  6769. height: math.unit(6, "feet"),
  6770. weight: math.unit(300, "lbs"),
  6771. name: "Slithering (Alt)",
  6772. image: {
  6773. source: "./media/characters/psymon/slithering-alt.svg",
  6774. extra: 1330 / 1224
  6775. }
  6776. },
  6777. },
  6778. [
  6779. {
  6780. name: "Normal",
  6781. height: math.unit(11.25, "feet"),
  6782. default: true
  6783. },
  6784. {
  6785. name: "Large",
  6786. height: math.unit(27, "feet")
  6787. },
  6788. {
  6789. name: "Giant",
  6790. height: math.unit(87, "feet")
  6791. },
  6792. {
  6793. name: "Macro",
  6794. height: math.unit(365, "feet")
  6795. },
  6796. {
  6797. name: "Megamacro",
  6798. height: math.unit(3, "miles")
  6799. },
  6800. {
  6801. name: "World Serpent",
  6802. height: math.unit(8000, "miles")
  6803. },
  6804. ]
  6805. ))
  6806. characterMakers.push(() => makeCharacter(
  6807. { name: "Daimos", species: ["veilhound"], tags: ["anthro"] },
  6808. {
  6809. front: {
  6810. height: math.unit(6, "feet"),
  6811. weight: math.unit(180, "lbs"),
  6812. name: "Front",
  6813. image: {
  6814. source: "./media/characters/daimos/front.svg",
  6815. extra: 4160 / 3897,
  6816. bottom: 0.021
  6817. }
  6818. }
  6819. },
  6820. [
  6821. {
  6822. name: "Normal",
  6823. height: math.unit(8, "feet"),
  6824. default: true
  6825. },
  6826. {
  6827. name: "Big Dog",
  6828. height: math.unit(22, "feet")
  6829. },
  6830. {
  6831. name: "Macro",
  6832. height: math.unit(127, "feet")
  6833. },
  6834. {
  6835. name: "Megamacro",
  6836. height: math.unit(3600, "feet")
  6837. },
  6838. ]
  6839. ))
  6840. characterMakers.push(() => makeCharacter(
  6841. { name: "Blake", species: ["raptor"], tags: ["feral"] },
  6842. {
  6843. side: {
  6844. height: math.unit(6, "feet"),
  6845. weight: math.unit(180, "lbs"),
  6846. name: "Side",
  6847. image: {
  6848. source: "./media/characters/blake/side.svg",
  6849. extra: 1212 / 1120,
  6850. bottom: 0.05
  6851. }
  6852. },
  6853. crouched: {
  6854. height: math.unit(6 * 0.57, "feet"),
  6855. weight: math.unit(180, "lbs"),
  6856. name: "Crouched",
  6857. image: {
  6858. source: "./media/characters/blake/crouched.svg",
  6859. extra: 840 / 587,
  6860. bottom: 0.04
  6861. }
  6862. },
  6863. bent: {
  6864. height: math.unit(6 * 0.75, "feet"),
  6865. weight: math.unit(180, "lbs"),
  6866. name: "Bent",
  6867. image: {
  6868. source: "./media/characters/blake/bent.svg",
  6869. extra: 592 / 544,
  6870. bottom: 0.035
  6871. }
  6872. },
  6873. },
  6874. [
  6875. {
  6876. name: "Normal",
  6877. height: math.unit(8 + 1 / 6, "feet"),
  6878. default: true
  6879. },
  6880. {
  6881. name: "Big Backside",
  6882. height: math.unit(37, "feet")
  6883. },
  6884. {
  6885. name: "Subway Shredder",
  6886. height: math.unit(72, "feet")
  6887. },
  6888. {
  6889. name: "City Carver",
  6890. height: math.unit(1675, "feet")
  6891. },
  6892. {
  6893. name: "Tectonic Tweaker",
  6894. height: math.unit(2300, "miles")
  6895. },
  6896. ]
  6897. ))
  6898. characterMakers.push(() => makeCharacter(
  6899. { name: "Guisetto", species: ["beetle", "moth"], tags: ["anthro"] },
  6900. {
  6901. front: {
  6902. height: math.unit(6, "feet"),
  6903. weight: math.unit(180, "lbs"),
  6904. name: "Front",
  6905. image: {
  6906. source: "./media/characters/guisetto/front.svg",
  6907. extra: 856 / 817,
  6908. bottom: 0.06
  6909. }
  6910. },
  6911. airborne: {
  6912. height: math.unit(6, "feet"),
  6913. weight: math.unit(180, "lbs"),
  6914. name: "Airborne",
  6915. image: {
  6916. source: "./media/characters/guisetto/airborne.svg",
  6917. extra: 584 / 525
  6918. }
  6919. },
  6920. },
  6921. [
  6922. {
  6923. name: "Normal",
  6924. height: math.unit(10 + 11 / 12, "feet"),
  6925. default: true
  6926. },
  6927. {
  6928. name: "Large",
  6929. height: math.unit(35, "feet")
  6930. },
  6931. {
  6932. name: "Macro",
  6933. height: math.unit(475, "feet")
  6934. },
  6935. ]
  6936. ))
  6937. characterMakers.push(() => makeCharacter(
  6938. { name: "Luxor", species: ["moth"], tags: ["anthro"] },
  6939. {
  6940. front: {
  6941. height: math.unit(6, "feet"),
  6942. weight: math.unit(180, "lbs"),
  6943. name: "Front",
  6944. image: {
  6945. source: "./media/characters/luxor/front.svg",
  6946. extra: 2940 / 2152
  6947. }
  6948. },
  6949. back: {
  6950. height: math.unit(6, "feet"),
  6951. weight: math.unit(180, "lbs"),
  6952. name: "Back",
  6953. image: {
  6954. source: "./media/characters/luxor/back.svg",
  6955. extra: 1083 / 960
  6956. }
  6957. },
  6958. },
  6959. [
  6960. {
  6961. name: "Normal",
  6962. height: math.unit(5 + 5 / 6, "feet"),
  6963. default: true
  6964. },
  6965. {
  6966. name: "Lamp",
  6967. height: math.unit(50, "feet")
  6968. },
  6969. {
  6970. name: "Lämp",
  6971. height: math.unit(300, "feet")
  6972. },
  6973. {
  6974. name: "The sun is a lamp",
  6975. height: math.unit(250000, "miles")
  6976. },
  6977. ]
  6978. ))
  6979. characterMakers.push(() => makeCharacter(
  6980. { name: "Huoyan", species: ["eastern-dragon"], tags: ["feral"] },
  6981. {
  6982. front: {
  6983. height: math.unit(6, "feet"),
  6984. weight: math.unit(50, "lbs"),
  6985. name: "Front",
  6986. image: {
  6987. source: "./media/characters/huoyan/front.svg"
  6988. }
  6989. },
  6990. side: {
  6991. height: math.unit(6, "feet"),
  6992. weight: math.unit(180, "lbs"),
  6993. name: "Side",
  6994. image: {
  6995. source: "./media/characters/huoyan/side.svg"
  6996. }
  6997. },
  6998. },
  6999. [
  7000. {
  7001. name: "Chef",
  7002. height: math.unit(9, "feet")
  7003. },
  7004. {
  7005. name: "Normal",
  7006. height: math.unit(65, "feet"),
  7007. default: true
  7008. },
  7009. {
  7010. name: "Macro",
  7011. height: math.unit(780, "feet")
  7012. },
  7013. {
  7014. name: "Flaming Mountain",
  7015. height: math.unit(4.8, "miles")
  7016. },
  7017. {
  7018. name: "Celestial",
  7019. height: math.unit(765000, "miles")
  7020. },
  7021. ]
  7022. ))
  7023. characterMakers.push(() => makeCharacter(
  7024. { name: "Tails", species: ["coyote"], tags: ["anthro"] },
  7025. {
  7026. front: {
  7027. height: math.unit(5 + 3 / 4, "feet"),
  7028. weight: math.unit(120, "lbs"),
  7029. name: "Front",
  7030. image: {
  7031. source: "./media/characters/tails/front.svg"
  7032. }
  7033. }
  7034. },
  7035. [
  7036. {
  7037. name: "Normal",
  7038. height: math.unit(5 + 3 / 4, "feet"),
  7039. default: true
  7040. }
  7041. ]
  7042. ))
  7043. characterMakers.push(() => makeCharacter(
  7044. { name: "Rainy", species: ["jaguar"], tags: ["anthro"] },
  7045. {
  7046. front: {
  7047. height: math.unit(4, "feet"),
  7048. weight: math.unit(50, "lbs"),
  7049. name: "Front",
  7050. image: {
  7051. source: "./media/characters/rainy/front.svg"
  7052. }
  7053. }
  7054. },
  7055. [
  7056. {
  7057. name: "Macro",
  7058. height: math.unit(800, "feet"),
  7059. default: true
  7060. }
  7061. ]
  7062. ))
  7063. characterMakers.push(() => makeCharacter(
  7064. { name: "Rainier", species: ["snow-leopard"], tags: ["anthro"] },
  7065. {
  7066. front: {
  7067. height: math.unit(6, "feet"),
  7068. weight: math.unit(150, "lbs"),
  7069. name: "Front",
  7070. image: {
  7071. source: "./media/characters/rainier/front.svg"
  7072. }
  7073. }
  7074. },
  7075. [
  7076. {
  7077. name: "Micro",
  7078. height: math.unit(2, "mm"),
  7079. default: true
  7080. }
  7081. ]
  7082. ))
  7083. characterMakers.push(() => makeCharacter(
  7084. { name: "Andy Renard", species: ["fox"], tags: ["anthro"] },
  7085. {
  7086. front: {
  7087. height: math.unit(8 + 4/12, "feet"),
  7088. weight: math.unit(450, "kilograms"),
  7089. name: "Front",
  7090. image: {
  7091. source: "./media/characters/andy-renard/front.svg",
  7092. extra: 862/809,
  7093. bottom: 85/947
  7094. },
  7095. extraAttributes: {
  7096. "pawSize": {
  7097. name: "Paw Size",
  7098. power: 2,
  7099. type: "area",
  7100. base: math.unit(0.45*0.3, "meters^2")
  7101. },
  7102. "handSize": {
  7103. name: "Hand Size",
  7104. power: 2,
  7105. type: "area",
  7106. base: math.unit(0.4 * 0.3, "meters^2")
  7107. },
  7108. "cockSize": {
  7109. name: "Cock Length",
  7110. power: 1,
  7111. type: "length",
  7112. base: math.unit(0.75, "meters")
  7113. },
  7114. "ballDiameter": {
  7115. name: "Ball Diameter",
  7116. power: 1,
  7117. type: "length",
  7118. base: math.unit(0.3, "meters")
  7119. },
  7120. "ballVolume": {
  7121. name: "Ball Volume",
  7122. power: 3,
  7123. type: "volume",
  7124. base: math.unit(0.01413716694, "meters^3")
  7125. },
  7126. }
  7127. },
  7128. back: {
  7129. height: math.unit(8 + 4/12, "feet"),
  7130. weight: math.unit(450, "kilograms"),
  7131. name: "Back",
  7132. image: {
  7133. source: "./media/characters/andy-renard/back.svg",
  7134. extra: 1112/1033,
  7135. bottom: 64/1176
  7136. },
  7137. extraAttributes: {
  7138. "pawSize": {
  7139. name: "Paw Size",
  7140. power: 2,
  7141. type: "area",
  7142. base: math.unit(0.45*0.3, "meters^2")
  7143. },
  7144. "handSize": {
  7145. name: "Hand Size",
  7146. power: 2,
  7147. type: "area",
  7148. base: math.unit(0.4 * 0.3, "meters^2")
  7149. },
  7150. "cockSize": {
  7151. name: "Cock Length",
  7152. power: 1,
  7153. type: "length",
  7154. base: math.unit(0.75, "meters")
  7155. },
  7156. "ballDiameter": {
  7157. name: "Ball Diameter",
  7158. power: 1,
  7159. type: "length",
  7160. base: math.unit(0.3, "meters")
  7161. },
  7162. "ballVolume": {
  7163. name: "Ball Volume",
  7164. power: 3,
  7165. type: "volume",
  7166. base: math.unit(0.01413716694, "meters^3")
  7167. },
  7168. }
  7169. },
  7170. },
  7171. [
  7172. {
  7173. name: "Tall",
  7174. height: math.unit(6 + 8/12, "feet")
  7175. },
  7176. {
  7177. name: "Very Tall",
  7178. height: math.unit(8 + 4/12, "feet")
  7179. },
  7180. {
  7181. name: "Mini Macro",
  7182. height: math.unit(15, "feet"),
  7183. default: true
  7184. },
  7185. {
  7186. name: "Giant",
  7187. height: math.unit(50, "feet")
  7188. },
  7189. {
  7190. name: "Nice",
  7191. height: math.unit(69, "feet")
  7192. },
  7193. {
  7194. name: "Macro",
  7195. height: math.unit(100, "feet")
  7196. },
  7197. {
  7198. name: "Enormous",
  7199. height: math.unit(500, "feet")
  7200. },
  7201. {
  7202. name: "Gargantuan",
  7203. height: math.unit(1000, "feet")
  7204. },
  7205. {
  7206. name: "Mega",
  7207. height: math.unit(1, "mile")
  7208. },
  7209. {
  7210. name: "Giga",
  7211. height: math.unit(50, "miles")
  7212. },
  7213. {
  7214. name: "Tera",
  7215. height: math.unit(1000, "miles")
  7216. },
  7217. {
  7218. name: "Cosmic",
  7219. height: math.unit(1.5, "galaxies")
  7220. },
  7221. {
  7222. name: "God",
  7223. height: math.unit(1.5, "universes")
  7224. },
  7225. {
  7226. name: "Chief Execute God",
  7227. height: math.unit(1.5, "multiverses")
  7228. },
  7229. ]
  7230. ))
  7231. characterMakers.push(() => makeCharacter(
  7232. { name: "Cimmaron", species: ["horse"], tags: ["anthro"] },
  7233. {
  7234. front: {
  7235. height: math.unit(6, "feet"),
  7236. weight: math.unit(210, "lbs"),
  7237. name: "Front",
  7238. image: {
  7239. source: "./media/characters/cimmaron/front-sfw.svg",
  7240. extra: 701 / 676,
  7241. bottom: 0.046
  7242. }
  7243. },
  7244. back: {
  7245. height: math.unit(6, "feet"),
  7246. weight: math.unit(210, "lbs"),
  7247. name: "Back",
  7248. image: {
  7249. source: "./media/characters/cimmaron/back-sfw.svg",
  7250. extra: 701 / 676,
  7251. bottom: 0.046
  7252. }
  7253. },
  7254. frontNsfw: {
  7255. height: math.unit(6, "feet"),
  7256. weight: math.unit(210, "lbs"),
  7257. name: "Front (NSFW)",
  7258. image: {
  7259. source: "./media/characters/cimmaron/front-nsfw.svg",
  7260. extra: 701 / 676,
  7261. bottom: 0.046
  7262. }
  7263. },
  7264. backNsfw: {
  7265. height: math.unit(6, "feet"),
  7266. weight: math.unit(210, "lbs"),
  7267. name: "Back (NSFW)",
  7268. image: {
  7269. source: "./media/characters/cimmaron/back-nsfw.svg",
  7270. extra: 701 / 676,
  7271. bottom: 0.046
  7272. }
  7273. },
  7274. dick: {
  7275. height: math.unit(1.714, "feet"),
  7276. name: "Dick",
  7277. image: {
  7278. source: "./media/characters/cimmaron/dick.svg"
  7279. }
  7280. },
  7281. },
  7282. [
  7283. {
  7284. name: "Normal",
  7285. height: math.unit(6, "feet"),
  7286. default: true
  7287. },
  7288. {
  7289. name: "Macro Mayor",
  7290. height: math.unit(350, "meters")
  7291. },
  7292. ]
  7293. ))
  7294. characterMakers.push(() => makeCharacter(
  7295. { name: "Akari Kaen", species: ["sergal"], tags: ["anthro"] },
  7296. {
  7297. front: {
  7298. height: math.unit(6, "feet"),
  7299. weight: math.unit(200, "lbs"),
  7300. name: "Front",
  7301. image: {
  7302. source: "./media/characters/akari/front.svg",
  7303. extra: 962 / 901,
  7304. bottom: 0.04
  7305. }
  7306. }
  7307. },
  7308. [
  7309. {
  7310. name: "Micro",
  7311. height: math.unit(5, "inches"),
  7312. default: true
  7313. },
  7314. {
  7315. name: "Normal",
  7316. height: math.unit(7, "feet")
  7317. },
  7318. ]
  7319. ))
  7320. characterMakers.push(() => makeCharacter(
  7321. { name: "Cynosura", species: ["gryphon"], tags: ["anthro"] },
  7322. {
  7323. front: {
  7324. height: math.unit(6, "feet"),
  7325. weight: math.unit(140, "lbs"),
  7326. name: "Front",
  7327. image: {
  7328. source: "./media/characters/cynosura/front.svg",
  7329. extra: 437/410,
  7330. bottom: 9/446
  7331. }
  7332. },
  7333. back: {
  7334. height: math.unit(6, "feet"),
  7335. weight: math.unit(140, "lbs"),
  7336. name: "Back",
  7337. image: {
  7338. source: "./media/characters/cynosura/back.svg",
  7339. extra: 1304/1160,
  7340. bottom: 71/1375
  7341. }
  7342. },
  7343. },
  7344. [
  7345. {
  7346. name: "Micro",
  7347. height: math.unit(4, "inches")
  7348. },
  7349. {
  7350. name: "Normal",
  7351. height: math.unit(5.75, "feet"),
  7352. default: true
  7353. },
  7354. {
  7355. name: "Tall",
  7356. height: math.unit(10, "feet")
  7357. },
  7358. {
  7359. name: "Big",
  7360. height: math.unit(20, "feet")
  7361. },
  7362. {
  7363. name: "Macro",
  7364. height: math.unit(50, "feet")
  7365. },
  7366. ]
  7367. ))
  7368. characterMakers.push(() => makeCharacter(
  7369. { name: "Gin", species: ["dragon"], tags: ["anthro"] },
  7370. {
  7371. front: {
  7372. height: math.unit(13 + 2/12, "feet"),
  7373. weight: math.unit(800, "kg"),
  7374. name: "Front",
  7375. image: {
  7376. source: "./media/characters/gin/front.svg",
  7377. extra: 1312/1191,
  7378. bottom: 45/1357
  7379. }
  7380. },
  7381. mouth: {
  7382. height: math.unit(2.39 * 1.8, "feet"),
  7383. name: "Mouth",
  7384. image: {
  7385. source: "./media/characters/gin/mouth.svg"
  7386. }
  7387. },
  7388. hand: {
  7389. height: math.unit(1.57 * 2.19, "feet"),
  7390. name: "Hand",
  7391. image: {
  7392. source: "./media/characters/gin/hand.svg"
  7393. }
  7394. },
  7395. foot: {
  7396. height: math.unit(6 / 4.25 * 2.19, "feet"),
  7397. name: "Foot",
  7398. image: {
  7399. source: "./media/characters/gin/foot.svg"
  7400. }
  7401. },
  7402. sole: {
  7403. height: math.unit(6 / 4.40 * 2.19, "feet"),
  7404. name: "Sole",
  7405. image: {
  7406. source: "./media/characters/gin/sole.svg"
  7407. }
  7408. },
  7409. },
  7410. [
  7411. {
  7412. name: "Very Small",
  7413. height: math.unit(13 + 2 / 12, "feet")
  7414. },
  7415. {
  7416. name: "Micro",
  7417. height: math.unit(600, "miles")
  7418. },
  7419. {
  7420. name: "Regular",
  7421. height: math.unit(20, "earths"),
  7422. default: true
  7423. },
  7424. {
  7425. name: "Macro",
  7426. height: math.unit(2.2, "solarradii")
  7427. },
  7428. {
  7429. name: "Teramacro",
  7430. height: math.unit(1.2, "galaxies")
  7431. },
  7432. {
  7433. name: "Omegamacro",
  7434. height: math.unit(200, "universes")
  7435. },
  7436. ]
  7437. ))
  7438. characterMakers.push(() => makeCharacter(
  7439. { name: "Guy", species: ["bat"], tags: ["anthro"] },
  7440. {
  7441. front: {
  7442. height: math.unit(6 + 1 / 6, "feet"),
  7443. weight: math.unit(178, "lbs"),
  7444. name: "Front",
  7445. image: {
  7446. source: "./media/characters/guy/front.svg"
  7447. }
  7448. }
  7449. },
  7450. [
  7451. {
  7452. name: "Normal",
  7453. height: math.unit(6 + 1 / 6, "feet"),
  7454. default: true
  7455. },
  7456. {
  7457. name: "Large",
  7458. height: math.unit(25 + 7 / 12, "feet")
  7459. },
  7460. {
  7461. name: "Macro",
  7462. height: math.unit(60 + 9 / 12, "feet")
  7463. },
  7464. {
  7465. name: "Macro+",
  7466. height: math.unit(246, "feet")
  7467. },
  7468. {
  7469. name: "Macro++",
  7470. height: math.unit(878, "feet")
  7471. }
  7472. ]
  7473. ))
  7474. characterMakers.push(() => makeCharacter(
  7475. { name: "Tiberius", species: ["jackal", "robot"], tags: ["anthro"] },
  7476. {
  7477. front: {
  7478. height: math.unit(9, "feet"),
  7479. weight: math.unit(800, "lbs"),
  7480. name: "Front",
  7481. image: {
  7482. source: "./media/characters/tiberius/front.svg",
  7483. extra: 2295 / 2071
  7484. }
  7485. },
  7486. back: {
  7487. height: math.unit(9, "feet"),
  7488. weight: math.unit(800, "lbs"),
  7489. name: "Back",
  7490. image: {
  7491. source: "./media/characters/tiberius/back.svg",
  7492. extra: 2373 / 2160
  7493. }
  7494. },
  7495. },
  7496. [
  7497. {
  7498. name: "Normal",
  7499. height: math.unit(9, "feet"),
  7500. default: true
  7501. }
  7502. ]
  7503. ))
  7504. characterMakers.push(() => makeCharacter(
  7505. { name: "Surgo", species: ["medihound"], tags: ["feral"] },
  7506. {
  7507. front: {
  7508. height: math.unit(6, "feet"),
  7509. weight: math.unit(600, "lbs"),
  7510. name: "Front",
  7511. image: {
  7512. source: "./media/characters/surgo/front.svg",
  7513. extra: 3591 / 2227
  7514. }
  7515. },
  7516. back: {
  7517. height: math.unit(6, "feet"),
  7518. weight: math.unit(600, "lbs"),
  7519. name: "Back",
  7520. image: {
  7521. source: "./media/characters/surgo/back.svg",
  7522. extra: 3557 / 2228
  7523. }
  7524. },
  7525. laying: {
  7526. height: math.unit(6 * 0.85, "feet"),
  7527. weight: math.unit(600, "lbs"),
  7528. name: "Laying",
  7529. image: {
  7530. source: "./media/characters/surgo/laying.svg"
  7531. }
  7532. },
  7533. },
  7534. [
  7535. {
  7536. name: "Normal",
  7537. height: math.unit(6, "feet"),
  7538. default: true
  7539. }
  7540. ]
  7541. ))
  7542. characterMakers.push(() => makeCharacter(
  7543. { name: "Cibus", species: ["dragon"], tags: ["feral"] },
  7544. {
  7545. side: {
  7546. height: math.unit(6, "feet"),
  7547. weight: math.unit(150, "lbs"),
  7548. name: "Side",
  7549. image: {
  7550. source: "./media/characters/cibus/side.svg",
  7551. extra: 800 / 400
  7552. }
  7553. },
  7554. },
  7555. [
  7556. {
  7557. name: "Normal",
  7558. height: math.unit(6, "feet"),
  7559. default: true
  7560. }
  7561. ]
  7562. ))
  7563. characterMakers.push(() => makeCharacter(
  7564. { name: "Nibbles", species: ["shark", "android"], tags: ["anthro"] },
  7565. {
  7566. front: {
  7567. height: math.unit(6, "feet"),
  7568. weight: math.unit(240, "lbs"),
  7569. name: "Front",
  7570. image: {
  7571. source: "./media/characters/nibbles/front.svg"
  7572. }
  7573. },
  7574. side: {
  7575. height: math.unit(6, "feet"),
  7576. weight: math.unit(240, "lbs"),
  7577. name: "Side",
  7578. image: {
  7579. source: "./media/characters/nibbles/side.svg"
  7580. }
  7581. },
  7582. },
  7583. [
  7584. {
  7585. name: "Normal",
  7586. height: math.unit(9, "feet"),
  7587. default: true
  7588. }
  7589. ]
  7590. ))
  7591. characterMakers.push(() => makeCharacter(
  7592. { name: "Rikky", species: ["coyote"], tags: ["anthro"] },
  7593. {
  7594. side: {
  7595. height: math.unit(5 + 1 / 6, "feet"),
  7596. weight: math.unit(130, "lbs"),
  7597. name: "Side",
  7598. image: {
  7599. source: "./media/characters/rikky/side.svg",
  7600. extra: 851 / 801
  7601. }
  7602. },
  7603. },
  7604. [
  7605. {
  7606. name: "Normal",
  7607. height: math.unit(5 + 1 / 6, "feet")
  7608. },
  7609. {
  7610. name: "Macro",
  7611. height: math.unit(152, "feet"),
  7612. default: true
  7613. },
  7614. {
  7615. name: "Megamacro",
  7616. height: math.unit(7, "miles")
  7617. }
  7618. ]
  7619. ))
  7620. characterMakers.push(() => makeCharacter(
  7621. { name: "Malfressa", species: ["dragon"], tags: ["anthro", "feral"] },
  7622. {
  7623. side: {
  7624. height: math.unit(370, "cm"),
  7625. weight: math.unit(350, "lbs"),
  7626. name: "Side",
  7627. image: {
  7628. source: "./media/characters/malfressa/side.svg"
  7629. }
  7630. },
  7631. walking: {
  7632. height: math.unit(370, "cm"),
  7633. weight: math.unit(350, "lbs"),
  7634. name: "Walking",
  7635. image: {
  7636. source: "./media/characters/malfressa/walking.svg"
  7637. }
  7638. },
  7639. feral: {
  7640. height: math.unit(2500, "cm"),
  7641. weight: math.unit(100000, "lbs"),
  7642. name: "Feral",
  7643. image: {
  7644. source: "./media/characters/malfressa/feral.svg",
  7645. extra: 2108 / 837,
  7646. bottom: 0.02
  7647. }
  7648. },
  7649. },
  7650. [
  7651. {
  7652. name: "Normal",
  7653. height: math.unit(370, "cm")
  7654. },
  7655. {
  7656. name: "Macro",
  7657. height: math.unit(300, "meters"),
  7658. default: true
  7659. }
  7660. ]
  7661. ))
  7662. characterMakers.push(() => makeCharacter(
  7663. { name: "Jaro", species: ["dragon"], tags: ["anthro"] },
  7664. {
  7665. front: {
  7666. height: math.unit(6, "feet"),
  7667. weight: math.unit(60, "kg"),
  7668. name: "Front",
  7669. image: {
  7670. source: "./media/characters/jaro/front.svg",
  7671. extra: 845/817,
  7672. bottom: 45/890
  7673. }
  7674. },
  7675. back: {
  7676. height: math.unit(6, "feet"),
  7677. weight: math.unit(60, "kg"),
  7678. name: "Back",
  7679. image: {
  7680. source: "./media/characters/jaro/back.svg",
  7681. extra: 847/817,
  7682. bottom: 34/881
  7683. }
  7684. },
  7685. },
  7686. [
  7687. {
  7688. name: "Micro",
  7689. height: math.unit(7, "inches")
  7690. },
  7691. {
  7692. name: "Normal",
  7693. height: math.unit(5.5, "feet"),
  7694. default: true
  7695. },
  7696. {
  7697. name: "Minimacro",
  7698. height: math.unit(20, "feet")
  7699. },
  7700. {
  7701. name: "Macro",
  7702. height: math.unit(200, "meters")
  7703. }
  7704. ]
  7705. ))
  7706. characterMakers.push(() => makeCharacter(
  7707. { name: "Rogue", species: ["wolf"], tags: ["anthro"] },
  7708. {
  7709. front: {
  7710. height: math.unit(6, "feet"),
  7711. weight: math.unit(195, "lb"),
  7712. name: "Front",
  7713. image: {
  7714. source: "./media/characters/rogue/front.svg"
  7715. }
  7716. },
  7717. },
  7718. [
  7719. {
  7720. name: "Macro",
  7721. height: math.unit(90, "feet"),
  7722. default: true
  7723. },
  7724. ]
  7725. ))
  7726. characterMakers.push(() => makeCharacter(
  7727. { name: "Piper", species: ["deer"], tags: ["anthro"] },
  7728. {
  7729. standing: {
  7730. height: math.unit(5 + 8 / 12, "feet"),
  7731. weight: math.unit(140, "lb"),
  7732. name: "Standing",
  7733. image: {
  7734. source: "./media/characters/piper/standing.svg",
  7735. extra: 1440/1284,
  7736. bottom: 66/1506
  7737. }
  7738. },
  7739. running: {
  7740. height: math.unit(5 + 8 / 12, "feet"),
  7741. weight: math.unit(140, "lb"),
  7742. name: "Running",
  7743. image: {
  7744. source: "./media/characters/piper/running.svg",
  7745. extra: 3948/3655,
  7746. bottom: 0/3948
  7747. }
  7748. },
  7749. sole: {
  7750. height: math.unit(0.81, "feet"),
  7751. weight: math.unit(2, "kg"),
  7752. name: "Sole",
  7753. image: {
  7754. source: "./media/characters/piper/sole.svg"
  7755. }
  7756. },
  7757. nipple: {
  7758. height: math.unit(0.25, "feet"),
  7759. weight: math.unit(1.5, "lb"),
  7760. name: "Nipple",
  7761. image: {
  7762. source: "./media/characters/piper/nipple.svg"
  7763. }
  7764. },
  7765. head: {
  7766. height: math.unit(1.1, "feet"),
  7767. name: "Head",
  7768. image: {
  7769. source: "./media/characters/piper/head.svg"
  7770. }
  7771. },
  7772. },
  7773. [
  7774. {
  7775. name: "Micro",
  7776. height: math.unit(2, "inches")
  7777. },
  7778. {
  7779. name: "Normal",
  7780. height: math.unit(5 + 8 / 12, "feet")
  7781. },
  7782. {
  7783. name: "Macro",
  7784. height: math.unit(250, "feet"),
  7785. default: true
  7786. },
  7787. {
  7788. name: "Megamacro",
  7789. height: math.unit(7, "miles")
  7790. },
  7791. ]
  7792. ))
  7793. characterMakers.push(() => makeCharacter(
  7794. { name: "Gemini", species: ["mouse"], tags: ["anthro"] },
  7795. {
  7796. front: {
  7797. height: math.unit(6, "feet"),
  7798. weight: math.unit(220, "lb"),
  7799. name: "Front",
  7800. image: {
  7801. source: "./media/characters/gemini/front.svg"
  7802. }
  7803. },
  7804. back: {
  7805. height: math.unit(6, "feet"),
  7806. weight: math.unit(220, "lb"),
  7807. name: "Back",
  7808. image: {
  7809. source: "./media/characters/gemini/back.svg"
  7810. }
  7811. },
  7812. kneeling: {
  7813. height: math.unit(6 / 1.5, "feet"),
  7814. weight: math.unit(220, "lb"),
  7815. name: "Kneeling",
  7816. image: {
  7817. source: "./media/characters/gemini/kneeling.svg",
  7818. bottom: 0.02
  7819. }
  7820. },
  7821. },
  7822. [
  7823. {
  7824. name: "Macro",
  7825. height: math.unit(300, "meters"),
  7826. default: true
  7827. },
  7828. {
  7829. name: "Megamacro",
  7830. height: math.unit(6900, "meters")
  7831. },
  7832. ]
  7833. ))
  7834. characterMakers.push(() => makeCharacter(
  7835. { name: "Alicia", species: ["dragon", "cat", "canine"], tags: ["anthro"] },
  7836. {
  7837. anthro: {
  7838. height: math.unit(2.35, "meters"),
  7839. weight: math.unit(73, "kg"),
  7840. name: "Anthro",
  7841. image: {
  7842. source: "./media/characters/alicia/anthro.svg",
  7843. extra: 2571 / 2385,
  7844. bottom: 75 / 2648
  7845. }
  7846. },
  7847. paw: {
  7848. height: math.unit(1.32, "feet"),
  7849. name: "Paw",
  7850. image: {
  7851. source: "./media/characters/alicia/paw.svg"
  7852. }
  7853. },
  7854. feral: {
  7855. height: math.unit(1.69, "meters"),
  7856. weight: math.unit(73, "kg"),
  7857. name: "Feral",
  7858. image: {
  7859. source: "./media/characters/alicia/feral.svg",
  7860. extra: 2123 / 1715,
  7861. bottom: 222 / 2349
  7862. }
  7863. },
  7864. },
  7865. [
  7866. {
  7867. name: "Normal",
  7868. height: math.unit(2.35, "meters")
  7869. },
  7870. {
  7871. name: "Macro",
  7872. height: math.unit(60, "meters"),
  7873. default: true
  7874. },
  7875. {
  7876. name: "Megamacro",
  7877. height: math.unit(10000, "kilometers")
  7878. },
  7879. ]
  7880. ))
  7881. characterMakers.push(() => makeCharacter(
  7882. { name: "Archy", species: ["snow-leopard"], tags: ["anthro"] },
  7883. {
  7884. front: {
  7885. height: math.unit(7, "feet"),
  7886. weight: math.unit(250, "lbs"),
  7887. name: "Front",
  7888. image: {
  7889. source: "./media/characters/archy/front.svg"
  7890. }
  7891. }
  7892. },
  7893. [
  7894. {
  7895. name: "Micro",
  7896. height: math.unit(1, "inch")
  7897. },
  7898. {
  7899. name: "Shorty",
  7900. height: math.unit(5, "feet")
  7901. },
  7902. {
  7903. name: "Normal",
  7904. height: math.unit(7, "feet")
  7905. },
  7906. {
  7907. name: "Macro",
  7908. height: math.unit(600, "meters"),
  7909. default: true
  7910. },
  7911. {
  7912. name: "Megamacro",
  7913. height: math.unit(1, "mile")
  7914. },
  7915. ]
  7916. ))
  7917. characterMakers.push(() => makeCharacter(
  7918. { name: "Berri", species: ["rabbit"], tags: ["anthro"] },
  7919. {
  7920. front: {
  7921. height: math.unit(1.65, "meters"),
  7922. weight: math.unit(74, "kg"),
  7923. name: "Front",
  7924. image: {
  7925. source: "./media/characters/berri/front.svg",
  7926. extra: 857 / 837,
  7927. bottom: 18 / 877
  7928. }
  7929. },
  7930. bum: {
  7931. height: math.unit(1.46, "feet"),
  7932. name: "Bum",
  7933. image: {
  7934. source: "./media/characters/berri/bum.svg"
  7935. }
  7936. },
  7937. mouth: {
  7938. height: math.unit(0.44, "feet"),
  7939. name: "Mouth",
  7940. image: {
  7941. source: "./media/characters/berri/mouth.svg"
  7942. }
  7943. },
  7944. paw: {
  7945. height: math.unit(0.826, "feet"),
  7946. name: "Paw",
  7947. image: {
  7948. source: "./media/characters/berri/paw.svg"
  7949. }
  7950. },
  7951. },
  7952. [
  7953. {
  7954. name: "Normal",
  7955. height: math.unit(1.65, "meters")
  7956. },
  7957. {
  7958. name: "Macro",
  7959. height: math.unit(60, "m"),
  7960. default: true
  7961. },
  7962. {
  7963. name: "Megamacro",
  7964. height: math.unit(9.213, "km")
  7965. },
  7966. {
  7967. name: "Planet Eater",
  7968. height: math.unit(489, "megameters")
  7969. },
  7970. {
  7971. name: "Teramacro",
  7972. height: math.unit(2471635000000, "meters")
  7973. },
  7974. {
  7975. name: "Examacro",
  7976. height: math.unit(8.0624e+26, "meters")
  7977. }
  7978. ]
  7979. ))
  7980. characterMakers.push(() => makeCharacter(
  7981. { name: "Lexi", species: ["fennec-fox"], tags: ["anthro"] },
  7982. {
  7983. front: {
  7984. height: math.unit(1.72, "meters"),
  7985. weight: math.unit(68, "kg"),
  7986. name: "Front",
  7987. image: {
  7988. source: "./media/characters/lexi/front.svg"
  7989. }
  7990. }
  7991. },
  7992. [
  7993. {
  7994. name: "Very Smol",
  7995. height: math.unit(10, "mm")
  7996. },
  7997. {
  7998. name: "Micro",
  7999. height: math.unit(6.8, "cm"),
  8000. default: true
  8001. },
  8002. {
  8003. name: "Normal",
  8004. height: math.unit(1.72, "m")
  8005. }
  8006. ]
  8007. ))
  8008. characterMakers.push(() => makeCharacter(
  8009. { name: "Martin", species: ["azodian"], tags: ["anthro"] },
  8010. {
  8011. front: {
  8012. height: math.unit(1.69, "meters"),
  8013. weight: math.unit(68, "kg"),
  8014. name: "Front",
  8015. image: {
  8016. source: "./media/characters/martin/front.svg",
  8017. extra: 596 / 581
  8018. }
  8019. }
  8020. },
  8021. [
  8022. {
  8023. name: "Micro",
  8024. height: math.unit(6.85, "cm"),
  8025. default: true
  8026. },
  8027. {
  8028. name: "Normal",
  8029. height: math.unit(1.69, "m")
  8030. }
  8031. ]
  8032. ))
  8033. characterMakers.push(() => makeCharacter(
  8034. { name: "Juno", species: ["shiba-inu", "deity"], tags: ["anthro"] },
  8035. {
  8036. front: {
  8037. height: math.unit(1.69, "meters"),
  8038. weight: math.unit(68, "kg"),
  8039. name: "Front",
  8040. image: {
  8041. source: "./media/characters/juno/front.svg"
  8042. }
  8043. }
  8044. },
  8045. [
  8046. {
  8047. name: "Micro",
  8048. height: math.unit(7, "cm")
  8049. },
  8050. {
  8051. name: "Normal",
  8052. height: math.unit(1.89, "m")
  8053. },
  8054. {
  8055. name: "Macro",
  8056. height: math.unit(353, "meters"),
  8057. default: true
  8058. }
  8059. ]
  8060. ))
  8061. characterMakers.push(() => makeCharacter(
  8062. { name: "Samantha", species: ["canine", "deity"], tags: ["anthro"] },
  8063. {
  8064. front: {
  8065. height: math.unit(1.93, "meters"),
  8066. weight: math.unit(83, "kg"),
  8067. name: "Front",
  8068. image: {
  8069. source: "./media/characters/samantha/front.svg"
  8070. }
  8071. },
  8072. frontClothed: {
  8073. height: math.unit(1.93, "meters"),
  8074. weight: math.unit(83, "kg"),
  8075. name: "Front (Clothed)",
  8076. image: {
  8077. source: "./media/characters/samantha/front-clothed.svg"
  8078. }
  8079. },
  8080. back: {
  8081. height: math.unit(1.93, "meters"),
  8082. weight: math.unit(83, "kg"),
  8083. name: "Back",
  8084. image: {
  8085. source: "./media/characters/samantha/back.svg"
  8086. }
  8087. },
  8088. },
  8089. [
  8090. {
  8091. name: "Normal",
  8092. height: math.unit(1.93, "m")
  8093. },
  8094. {
  8095. name: "Macro",
  8096. height: math.unit(74, "meters"),
  8097. default: true
  8098. },
  8099. {
  8100. name: "Macro+",
  8101. height: math.unit(223, "meters"),
  8102. },
  8103. {
  8104. name: "Megamacro",
  8105. height: math.unit(8381, "meters"),
  8106. },
  8107. {
  8108. name: "Megamacro+",
  8109. height: math.unit(12000, "kilometers")
  8110. },
  8111. ]
  8112. ))
  8113. characterMakers.push(() => makeCharacter(
  8114. { name: "Dr. Clay", species: ["canine"], tags: ["anthro"] },
  8115. {
  8116. front: {
  8117. height: math.unit(1.92, "meters"),
  8118. weight: math.unit(80, "kg"),
  8119. name: "Front",
  8120. image: {
  8121. source: "./media/characters/dr-clay/front.svg"
  8122. }
  8123. },
  8124. frontClothed: {
  8125. height: math.unit(1.92, "meters"),
  8126. weight: math.unit(80, "kg"),
  8127. name: "Front (Clothed)",
  8128. image: {
  8129. source: "./media/characters/dr-clay/front-clothed.svg"
  8130. }
  8131. }
  8132. },
  8133. [
  8134. {
  8135. name: "Normal",
  8136. height: math.unit(1.92, "m")
  8137. },
  8138. {
  8139. name: "Macro",
  8140. height: math.unit(214, "meters"),
  8141. default: true
  8142. },
  8143. {
  8144. name: "Macro+",
  8145. height: math.unit(12.237, "meters"),
  8146. },
  8147. {
  8148. name: "Megamacro",
  8149. height: math.unit(557, "megameters"),
  8150. },
  8151. {
  8152. name: "Unimaginable",
  8153. height: math.unit(120e9, "lightyears")
  8154. },
  8155. ]
  8156. ))
  8157. characterMakers.push(() => makeCharacter(
  8158. { name: "Wyvrn Ripsnarl", species: ["dragon", "wolf"], tags: ["anthro"] },
  8159. {
  8160. front: {
  8161. height: math.unit(2, "meters"),
  8162. weight: math.unit(80, "kg"),
  8163. name: "Front",
  8164. image: {
  8165. source: "./media/characters/wyvrn-ripsnarl/front.svg"
  8166. }
  8167. }
  8168. },
  8169. [
  8170. {
  8171. name: "Teramacro",
  8172. height: math.unit(500000, "lightyears"),
  8173. default: true
  8174. },
  8175. ]
  8176. ))
  8177. characterMakers.push(() => makeCharacter(
  8178. { name: "Vemus", species: ["crux", "skunk", "tanuki"], tags: ["anthro", "goo"] },
  8179. {
  8180. crux: {
  8181. height: math.unit(2, "meters"),
  8182. weight: math.unit(150, "kg"),
  8183. name: "Crux",
  8184. image: {
  8185. source: "./media/characters/vemus/crux.svg",
  8186. extra: 1074/936,
  8187. bottom: 23/1097
  8188. }
  8189. },
  8190. skunkTanuki: {
  8191. height: math.unit(2, "meters"),
  8192. weight: math.unit(150, "kg"),
  8193. name: "Skunk-Tanuki",
  8194. image: {
  8195. source: "./media/characters/vemus/skunk-tanuki.svg",
  8196. extra: 926/893,
  8197. bottom: 20/946
  8198. }
  8199. },
  8200. },
  8201. [
  8202. {
  8203. name: "Normal",
  8204. height: math.unit(4, "meters"),
  8205. default: true
  8206. },
  8207. {
  8208. name: "Big",
  8209. height: math.unit(8, "meters")
  8210. },
  8211. {
  8212. name: "Macro",
  8213. height: math.unit(100, "meters")
  8214. },
  8215. {
  8216. name: "Macro+",
  8217. height: math.unit(1500, "meters")
  8218. },
  8219. {
  8220. name: "Stellar",
  8221. height: math.unit(14e8, "meters")
  8222. },
  8223. ]
  8224. ))
  8225. characterMakers.push(() => makeCharacter(
  8226. { name: "Beherit", species: ["monster"], tags: ["anthro"] },
  8227. {
  8228. front: {
  8229. height: math.unit(2, "meters"),
  8230. weight: math.unit(70, "kg"),
  8231. name: "Front",
  8232. image: {
  8233. source: "./media/characters/beherit/front.svg",
  8234. extra: 1234/1109,
  8235. bottom: 55/1289
  8236. }
  8237. }
  8238. },
  8239. [
  8240. {
  8241. name: "Normal",
  8242. height: math.unit(6, "feet")
  8243. },
  8244. {
  8245. name: "Lorg",
  8246. height: math.unit(25, "feet"),
  8247. default: true
  8248. },
  8249. {
  8250. name: "Lorger",
  8251. height: math.unit(75, "feet")
  8252. },
  8253. {
  8254. name: "Macro",
  8255. height: math.unit(200, "meters")
  8256. },
  8257. ]
  8258. ))
  8259. characterMakers.push(() => makeCharacter(
  8260. { name: "Everett", species: ["dragon"], tags: ["anthro"] },
  8261. {
  8262. front: {
  8263. height: math.unit(2, "meters"),
  8264. weight: math.unit(150, "kg"),
  8265. name: "Front",
  8266. image: {
  8267. source: "./media/characters/everett/front.svg",
  8268. extra: 1017/866,
  8269. bottom: 86/1103
  8270. }
  8271. },
  8272. paw: {
  8273. height: math.unit(2 / 3.6, "meters"),
  8274. name: "Paw",
  8275. image: {
  8276. source: "./media/characters/everett/paw.svg"
  8277. }
  8278. },
  8279. },
  8280. [
  8281. {
  8282. name: "Normal",
  8283. height: math.unit(15, "feet"),
  8284. default: true
  8285. },
  8286. {
  8287. name: "Lorg",
  8288. height: math.unit(70, "feet"),
  8289. default: true
  8290. },
  8291. {
  8292. name: "Lorger",
  8293. height: math.unit(250, "feet")
  8294. },
  8295. {
  8296. name: "Macro",
  8297. height: math.unit(500, "meters")
  8298. },
  8299. ]
  8300. ))
  8301. characterMakers.push(() => makeCharacter(
  8302. { name: "Rose", species: ["lion", "mouse", "plush"], tags: ["anthro"] },
  8303. {
  8304. front: {
  8305. height: math.unit(2, "meters"),
  8306. weight: math.unit(86, "kg"),
  8307. name: "Front",
  8308. image: {
  8309. source: "./media/characters/rose/front.svg",
  8310. extra: 1785/1636,
  8311. bottom: 30/1815
  8312. },
  8313. form: "liom",
  8314. default: true
  8315. },
  8316. frontSporty: {
  8317. height: math.unit(2, "meters"),
  8318. weight: math.unit(86, "kg"),
  8319. name: "Front (Sporty)",
  8320. image: {
  8321. source: "./media/characters/rose/front-sporty.svg",
  8322. extra: 350/335,
  8323. bottom: 10/360
  8324. },
  8325. form: "liom"
  8326. },
  8327. frontAlt: {
  8328. height: math.unit(1.6, "meters"),
  8329. weight: math.unit(86, "kg"),
  8330. name: "Front (Alt)",
  8331. image: {
  8332. source: "./media/characters/rose/front-alt.svg",
  8333. extra: 299/283,
  8334. bottom: 3/302
  8335. },
  8336. form: "liom"
  8337. },
  8338. plush: {
  8339. height: math.unit(2, "meters"),
  8340. weight: math.unit(86/3, "kg"),
  8341. name: "Plush",
  8342. image: {
  8343. source: "./media/characters/rose/plush.svg",
  8344. extra: 361/337,
  8345. bottom: 11/372
  8346. },
  8347. form: "plush",
  8348. default: true
  8349. },
  8350. faeStanding: {
  8351. height: math.unit(10, "cm"),
  8352. weight: math.unit(10, "grams"),
  8353. name: "Standing",
  8354. image: {
  8355. source: "./media/characters/rose/fae-standing.svg",
  8356. extra: 1189/1060,
  8357. bottom: 27/1216
  8358. },
  8359. form: "fae",
  8360. default: true
  8361. },
  8362. faeSitting: {
  8363. height: math.unit(5, "cm"),
  8364. weight: math.unit(10, "grams"),
  8365. name: "Sitting",
  8366. image: {
  8367. source: "./media/characters/rose/fae-sitting.svg",
  8368. extra: 737/577,
  8369. bottom: 356/1093
  8370. },
  8371. form: "fae"
  8372. },
  8373. faePaw: {
  8374. height: math.unit(1.35, "cm"),
  8375. name: "Paw",
  8376. image: {
  8377. source: "./media/characters/rose/fae-paw.svg"
  8378. },
  8379. form: "fae"
  8380. },
  8381. fronttrueFae: {
  8382. height: math.unit(10, "cm"),
  8383. weight: math.unit(10, "grams"),
  8384. name: "Front",
  8385. image: {
  8386. source: "./media/characters/rose/true-fae-front.svg",
  8387. extra: 839/789,
  8388. bottom: 12/851
  8389. },
  8390. form: "true-fae",
  8391. default: true
  8392. },
  8393. },
  8394. [
  8395. {
  8396. name: "True Micro",
  8397. height: math.unit(9, "cm"),
  8398. form: "liom"
  8399. },
  8400. {
  8401. name: "Micro",
  8402. height: math.unit(16, "cm"),
  8403. form: "liom"
  8404. },
  8405. {
  8406. name: "Normal",
  8407. height: math.unit(1.85, "meters"),
  8408. default: true,
  8409. form: "liom"
  8410. },
  8411. {
  8412. name: "Mini-Macro",
  8413. height: math.unit(5, "meters"),
  8414. form: "liom"
  8415. },
  8416. {
  8417. name: "Macro",
  8418. height: math.unit(15, "meters"),
  8419. form: "liom"
  8420. },
  8421. {
  8422. name: "True Macro",
  8423. height: math.unit(40, "meters"),
  8424. form: "liom"
  8425. },
  8426. {
  8427. name: "City Scale",
  8428. height: math.unit(1, "km"),
  8429. form: "liom"
  8430. },
  8431. {
  8432. name: "Plushie",
  8433. height: math.unit(9, "cm"),
  8434. form: "plush",
  8435. default: true
  8436. },
  8437. {
  8438. name: "Fae",
  8439. height: math.unit(10, "cm"),
  8440. form: "fae",
  8441. default: true
  8442. },
  8443. {
  8444. name: "Fae",
  8445. height: math.unit(10, "cm"),
  8446. form: "true-fae",
  8447. default: true
  8448. },
  8449. ],
  8450. {
  8451. "liom": {
  8452. name: "Liom"
  8453. },
  8454. "plush": {
  8455. name: "Plush"
  8456. },
  8457. "fae": {
  8458. name: "Fae Fox",
  8459. default: true
  8460. },
  8461. "true-fae": {
  8462. name: "True Fae",
  8463. },
  8464. }
  8465. ))
  8466. characterMakers.push(() => makeCharacter(
  8467. { name: "Regal", species: ["changeling"], tags: ["anthro"] },
  8468. {
  8469. front: {
  8470. height: math.unit(2, "meters"),
  8471. weight: math.unit(350, "lbs"),
  8472. name: "Front",
  8473. image: {
  8474. source: "./media/characters/regal/front.svg"
  8475. }
  8476. },
  8477. back: {
  8478. height: math.unit(2, "meters"),
  8479. weight: math.unit(350, "lbs"),
  8480. name: "Back",
  8481. image: {
  8482. source: "./media/characters/regal/back.svg"
  8483. }
  8484. },
  8485. },
  8486. [
  8487. {
  8488. name: "Macro",
  8489. height: math.unit(350, "feet"),
  8490. default: true
  8491. }
  8492. ]
  8493. ))
  8494. characterMakers.push(() => makeCharacter(
  8495. { name: "Opal", species: ["rabbit", "deity"], tags: ["anthro"] },
  8496. {
  8497. standing: {
  8498. height: math.unit(4 + 11/12, "feet"),
  8499. weight: math.unit(100, "lb"),
  8500. name: "Standing",
  8501. image: {
  8502. source: "./media/characters/opal/standing.svg",
  8503. extra: 1588/1513,
  8504. bottom: 23/1611
  8505. }
  8506. },
  8507. sitting: {
  8508. height: math.unit(2.3, "feet"),
  8509. weight: math.unit(100, "lb"),
  8510. name: "Sitting",
  8511. image: {
  8512. source: "./media/characters/opal/sitting.svg",
  8513. extra: 1031/892,
  8514. bottom: 142/1173
  8515. }
  8516. },
  8517. hand: {
  8518. height: math.unit(0.59, "feet"),
  8519. name: "Hand",
  8520. image: {
  8521. source: "./media/characters/opal/hand.svg"
  8522. }
  8523. },
  8524. foot: {
  8525. height: math.unit(0.61, "feet"),
  8526. name: "Foot",
  8527. image: {
  8528. source: "./media/characters/opal/foot.svg"
  8529. }
  8530. },
  8531. },
  8532. [
  8533. {
  8534. name: "Small",
  8535. height: math.unit(4 + 11 / 12, "feet")
  8536. },
  8537. {
  8538. name: "Normal",
  8539. height: math.unit(20, "feet"),
  8540. default: true
  8541. },
  8542. {
  8543. name: "Macro",
  8544. height: math.unit(120, "feet")
  8545. },
  8546. {
  8547. name: "Megamacro",
  8548. height: math.unit(80, "miles")
  8549. },
  8550. {
  8551. name: "True Size",
  8552. height: math.unit(100000, "lightyears")
  8553. },
  8554. ]
  8555. ))
  8556. characterMakers.push(() => makeCharacter(
  8557. { name: "Vector Wuff", species: ["wolf"], tags: ["anthro"] },
  8558. {
  8559. front: {
  8560. height: math.unit(6, "feet"),
  8561. weight: math.unit(200, "lbs"),
  8562. name: "Front",
  8563. image: {
  8564. source: "./media/characters/vector-wuff/front.svg"
  8565. }
  8566. }
  8567. },
  8568. [
  8569. {
  8570. name: "Normal",
  8571. height: math.unit(2.8, "meters")
  8572. },
  8573. {
  8574. name: "Macro",
  8575. height: math.unit(450, "meters"),
  8576. default: true
  8577. },
  8578. {
  8579. name: "Megamacro",
  8580. height: math.unit(15, "kilometers")
  8581. }
  8582. ]
  8583. ))
  8584. characterMakers.push(() => makeCharacter(
  8585. { name: "Dannik", species: ["gryphon"], tags: ["anthro"] },
  8586. {
  8587. front: {
  8588. height: math.unit(6, "feet"),
  8589. weight: math.unit(256, "lbs"),
  8590. name: "Front",
  8591. image: {
  8592. source: "./media/characters/dannik/front.svg"
  8593. }
  8594. }
  8595. },
  8596. [
  8597. {
  8598. name: "Macro",
  8599. height: math.unit(69.57, "meters"),
  8600. default: true
  8601. },
  8602. ]
  8603. ))
  8604. characterMakers.push(() => makeCharacter(
  8605. { name: "Azura Saharah", species: ["cheetah"], tags: ["anthro"] },
  8606. {
  8607. front: {
  8608. height: math.unit(6, "feet"),
  8609. weight: math.unit(120, "lbs"),
  8610. name: "Front",
  8611. image: {
  8612. source: "./media/characters/azura-saharah/front.svg"
  8613. }
  8614. },
  8615. back: {
  8616. height: math.unit(6, "feet"),
  8617. weight: math.unit(120, "lbs"),
  8618. name: "Back",
  8619. image: {
  8620. source: "./media/characters/azura-saharah/back.svg"
  8621. }
  8622. },
  8623. },
  8624. [
  8625. {
  8626. name: "Macro",
  8627. height: math.unit(100, "feet"),
  8628. default: true
  8629. },
  8630. ]
  8631. ))
  8632. characterMakers.push(() => makeCharacter(
  8633. { name: "Kennedy", species: ["dog"], tags: ["anthro"] },
  8634. {
  8635. side: {
  8636. height: math.unit(5 + 4 / 12, "feet"),
  8637. weight: math.unit(163, "lbs"),
  8638. name: "Side",
  8639. image: {
  8640. source: "./media/characters/kennedy/side.svg"
  8641. }
  8642. }
  8643. },
  8644. [
  8645. {
  8646. name: "Standard Doggo",
  8647. height: math.unit(5 + 4 / 12, "feet")
  8648. },
  8649. {
  8650. name: "Big Doggo",
  8651. height: math.unit(25 + 3 / 12, "feet"),
  8652. default: true
  8653. },
  8654. ]
  8655. ))
  8656. characterMakers.push(() => makeCharacter(
  8657. { name: "Odios De Lunar", species: ["golden-jackal"], tags: ["anthro"] },
  8658. {
  8659. front: {
  8660. height: math.unit(5 + 5/12, "feet"),
  8661. weight: math.unit(100, "lbs"),
  8662. name: "Front",
  8663. image: {
  8664. source: "./media/characters/odios-de-lunar/front.svg",
  8665. extra: 1468/1323,
  8666. bottom: 22/1490
  8667. }
  8668. }
  8669. },
  8670. [
  8671. {
  8672. name: "Micro",
  8673. height: math.unit(3, "inches")
  8674. },
  8675. {
  8676. name: "Normal",
  8677. height: math.unit(5.5, "feet"),
  8678. default: true
  8679. },
  8680. {
  8681. name: "Macro",
  8682. height: math.unit(100, "feet")
  8683. },
  8684. ]
  8685. ))
  8686. characterMakers.push(() => makeCharacter(
  8687. { name: "Mandake", species: ["manectric", "tiger"], tags: ["anthro"] },
  8688. {
  8689. back: {
  8690. height: math.unit(6, "feet"),
  8691. weight: math.unit(220, "lbs"),
  8692. name: "Back",
  8693. image: {
  8694. source: "./media/characters/mandake/back.svg"
  8695. }
  8696. }
  8697. },
  8698. [
  8699. {
  8700. name: "Normal",
  8701. height: math.unit(7, "feet"),
  8702. default: true
  8703. },
  8704. {
  8705. name: "Macro",
  8706. height: math.unit(78, "feet")
  8707. },
  8708. {
  8709. name: "Macro+",
  8710. height: math.unit(300, "meters")
  8711. },
  8712. {
  8713. name: "Macro++",
  8714. height: math.unit(2400, "feet")
  8715. },
  8716. {
  8717. name: "Megamacro",
  8718. height: math.unit(5167, "meters")
  8719. },
  8720. {
  8721. name: "Gigamacro",
  8722. height: math.unit(41769, "miles")
  8723. },
  8724. ]
  8725. ))
  8726. characterMakers.push(() => makeCharacter(
  8727. { name: "Yozey", species: ["rat"], tags: ["anthro"] },
  8728. {
  8729. front: {
  8730. height: math.unit(6, "feet"),
  8731. weight: math.unit(120, "lbs"),
  8732. name: "Front",
  8733. image: {
  8734. source: "./media/characters/yozey/front.svg"
  8735. }
  8736. },
  8737. frontAlt: {
  8738. height: math.unit(6, "feet"),
  8739. weight: math.unit(120, "lbs"),
  8740. name: "Front (Alt)",
  8741. image: {
  8742. source: "./media/characters/yozey/front-alt.svg"
  8743. }
  8744. },
  8745. side: {
  8746. height: math.unit(6, "feet"),
  8747. weight: math.unit(120, "lbs"),
  8748. name: "Side",
  8749. image: {
  8750. source: "./media/characters/yozey/side.svg"
  8751. }
  8752. },
  8753. },
  8754. [
  8755. {
  8756. name: "Micro",
  8757. height: math.unit(3, "inches"),
  8758. default: true
  8759. },
  8760. {
  8761. name: "Normal",
  8762. height: math.unit(6, "feet")
  8763. }
  8764. ]
  8765. ))
  8766. characterMakers.push(() => makeCharacter(
  8767. { name: "Valeska Voss", species: ["fox"], tags: ["anthro"] },
  8768. {
  8769. front: {
  8770. height: math.unit(6, "feet"),
  8771. weight: math.unit(103, "lbs"),
  8772. name: "Front",
  8773. image: {
  8774. source: "./media/characters/valeska-voss/front.svg"
  8775. }
  8776. }
  8777. },
  8778. [
  8779. {
  8780. name: "Mini-Sized Sub",
  8781. height: math.unit(3.1, "inches")
  8782. },
  8783. {
  8784. name: "Mid-Sized Sub",
  8785. height: math.unit(6.2, "inches")
  8786. },
  8787. {
  8788. name: "Full-Sized Sub",
  8789. height: math.unit(9.3, "inches")
  8790. },
  8791. {
  8792. name: "Normal",
  8793. height: math.unit(5 + 2 / 12, "foot"),
  8794. default: true
  8795. },
  8796. ]
  8797. ))
  8798. characterMakers.push(() => makeCharacter(
  8799. { name: "Gene Zeta", species: ["raptor"], tags: ["anthro"] },
  8800. {
  8801. front: {
  8802. height: math.unit(6, "feet"),
  8803. weight: math.unit(160, "lbs"),
  8804. name: "Front",
  8805. image: {
  8806. source: "./media/characters/gene-zeta/front.svg",
  8807. extra: 3006 / 2826,
  8808. bottom: 182 / 3188
  8809. }
  8810. }
  8811. },
  8812. [
  8813. {
  8814. name: "Micro",
  8815. height: math.unit(6, "inches")
  8816. },
  8817. {
  8818. name: "Normal",
  8819. height: math.unit(5 + 11 / 12, "foot"),
  8820. default: true
  8821. },
  8822. {
  8823. name: "Macro",
  8824. height: math.unit(140, "feet")
  8825. },
  8826. {
  8827. name: "Supercharged",
  8828. height: math.unit(2500, "feet")
  8829. },
  8830. ]
  8831. ))
  8832. characterMakers.push(() => makeCharacter(
  8833. { name: "Razinox", species: ["dragon"], tags: ["anthro"] },
  8834. {
  8835. front: {
  8836. height: math.unit(6, "feet"),
  8837. weight: math.unit(350, "lbs"),
  8838. name: "Front",
  8839. image: {
  8840. source: "./media/characters/razinox/front.svg",
  8841. extra: 1686 / 1548,
  8842. bottom: 28.2 / 1868
  8843. }
  8844. },
  8845. back: {
  8846. height: math.unit(6, "feet"),
  8847. weight: math.unit(350, "lbs"),
  8848. name: "Back",
  8849. image: {
  8850. source: "./media/characters/razinox/back.svg",
  8851. extra: 1660 / 1590,
  8852. bottom: 15 / 1665
  8853. }
  8854. },
  8855. },
  8856. [
  8857. {
  8858. name: "Normal",
  8859. height: math.unit(10 + 8 / 12, "foot")
  8860. },
  8861. {
  8862. name: "Minimacro",
  8863. height: math.unit(15, "foot")
  8864. },
  8865. {
  8866. name: "Macro",
  8867. height: math.unit(60, "foot"),
  8868. default: true
  8869. },
  8870. {
  8871. name: "Megamacro",
  8872. height: math.unit(5, "miles")
  8873. },
  8874. {
  8875. name: "Gigamacro",
  8876. height: math.unit(6000, "miles")
  8877. },
  8878. ]
  8879. ))
  8880. characterMakers.push(() => makeCharacter(
  8881. { name: "Cobalt", species: ["cat", "weasel"], tags: ["anthro"] },
  8882. {
  8883. front: {
  8884. height: math.unit(6, "feet"),
  8885. weight: math.unit(150, "lbs"),
  8886. name: "Front",
  8887. image: {
  8888. source: "./media/characters/cobalt/front.svg"
  8889. }
  8890. }
  8891. },
  8892. [
  8893. {
  8894. name: "Normal",
  8895. height: math.unit(8 + 1 / 12, "foot")
  8896. },
  8897. {
  8898. name: "Macro",
  8899. height: math.unit(111, "foot"),
  8900. default: true
  8901. },
  8902. {
  8903. name: "Supracosmic",
  8904. height: math.unit(1e42, "feet")
  8905. },
  8906. ]
  8907. ))
  8908. characterMakers.push(() => makeCharacter(
  8909. { name: "Amanda", species: ["mouse"], tags: ["anthro"] },
  8910. {
  8911. front: {
  8912. height: math.unit(5, "inches"),
  8913. name: "Front",
  8914. image: {
  8915. source: "./media/characters/amanda/front.svg",
  8916. extra: 926/791,
  8917. bottom: 38/964
  8918. }
  8919. },
  8920. back: {
  8921. height: math.unit(5, "inches"),
  8922. name: "Back",
  8923. image: {
  8924. source: "./media/characters/amanda/back.svg",
  8925. extra: 909/805,
  8926. bottom: 43/952
  8927. }
  8928. },
  8929. },
  8930. [
  8931. {
  8932. name: "Micro",
  8933. height: math.unit(5, "inches"),
  8934. default: true
  8935. },
  8936. ]
  8937. ))
  8938. characterMakers.push(() => makeCharacter(
  8939. { name: "Teal", species: ["octocoon"], tags: ["anthro"] },
  8940. {
  8941. front: {
  8942. height: math.unit(2.75, "meters"),
  8943. weight: math.unit(1200, "lb"),
  8944. name: "Front",
  8945. image: {
  8946. source: "./media/characters/teal/front.svg",
  8947. extra: 2463 / 2320,
  8948. bottom: 166 / 2629
  8949. }
  8950. },
  8951. back: {
  8952. height: math.unit(2.75, "meters"),
  8953. weight: math.unit(1200, "lb"),
  8954. name: "Back",
  8955. image: {
  8956. source: "./media/characters/teal/back.svg",
  8957. extra: 2580 / 2489,
  8958. bottom: 151 / 2731
  8959. }
  8960. },
  8961. sitting: {
  8962. height: math.unit(1.9, "meters"),
  8963. weight: math.unit(1200, "lb"),
  8964. name: "Sitting",
  8965. image: {
  8966. source: "./media/characters/teal/sitting.svg",
  8967. extra: 623 / 590,
  8968. bottom: 121 / 744
  8969. }
  8970. },
  8971. standing: {
  8972. height: math.unit(2.75, "meters"),
  8973. weight: math.unit(1200, "lb"),
  8974. name: "Standing",
  8975. image: {
  8976. source: "./media/characters/teal/standing.svg",
  8977. extra: 923 / 893,
  8978. bottom: 60 / 983
  8979. }
  8980. },
  8981. stretching: {
  8982. height: math.unit(3.65, "meters"),
  8983. weight: math.unit(1200, "lb"),
  8984. name: "Stretching",
  8985. image: {
  8986. source: "./media/characters/teal/stretching.svg",
  8987. extra: 1276 / 1244,
  8988. bottom: 0 / 1276
  8989. }
  8990. },
  8991. legged: {
  8992. height: math.unit(1.3, "meters"),
  8993. weight: math.unit(100, "lb"),
  8994. name: "Legged",
  8995. image: {
  8996. source: "./media/characters/teal/legged.svg",
  8997. extra: 462 / 437,
  8998. bottom: 24 / 486
  8999. }
  9000. },
  9001. naga: {
  9002. height: math.unit(5.4, "meters"),
  9003. weight: math.unit(4000, "lb"),
  9004. name: "Naga",
  9005. image: {
  9006. source: "./media/characters/teal/naga.svg",
  9007. extra: 1902 / 1858,
  9008. bottom: 0 / 1902
  9009. }
  9010. },
  9011. hand: {
  9012. height: math.unit(0.52, "meters"),
  9013. name: "Hand",
  9014. image: {
  9015. source: "./media/characters/teal/hand.svg"
  9016. }
  9017. },
  9018. maw: {
  9019. height: math.unit(0.43, "meters"),
  9020. name: "Maw",
  9021. image: {
  9022. source: "./media/characters/teal/maw.svg"
  9023. }
  9024. },
  9025. slit: {
  9026. height: math.unit(0.25, "meters"),
  9027. name: "Slit",
  9028. image: {
  9029. source: "./media/characters/teal/slit.svg"
  9030. }
  9031. },
  9032. },
  9033. [
  9034. {
  9035. name: "Normal",
  9036. height: math.unit(2.75, "meters"),
  9037. default: true
  9038. },
  9039. {
  9040. name: "Macro",
  9041. height: math.unit(300, "feet")
  9042. },
  9043. {
  9044. name: "Macro+",
  9045. height: math.unit(2000, "feet")
  9046. },
  9047. ]
  9048. ))
  9049. characterMakers.push(() => makeCharacter(
  9050. { name: "Ravin Amulet", species: ["cat", "werewolf"], tags: ["anthro"] },
  9051. {
  9052. frontCat: {
  9053. height: math.unit(6, "feet"),
  9054. weight: math.unit(180, "lbs"),
  9055. name: "Front (Cat)",
  9056. image: {
  9057. source: "./media/characters/ravin-amulet/front-cat.svg"
  9058. }
  9059. },
  9060. frontCatAlt: {
  9061. height: math.unit(6, "feet"),
  9062. weight: math.unit(180, "lbs"),
  9063. name: "Front (Alt, Cat)",
  9064. image: {
  9065. source: "./media/characters/ravin-amulet/front-cat-alt.svg"
  9066. }
  9067. },
  9068. frontWerewolf: {
  9069. height: math.unit(6 * 1.2, "feet"),
  9070. weight: math.unit(225, "lbs"),
  9071. name: "Front (Werewolf)",
  9072. image: {
  9073. source: "./media/characters/ravin-amulet/front-werewolf.svg"
  9074. }
  9075. },
  9076. backWerewolf: {
  9077. height: math.unit(6 * 1.2, "feet"),
  9078. weight: math.unit(225, "lbs"),
  9079. name: "Back (Werewolf)",
  9080. image: {
  9081. source: "./media/characters/ravin-amulet/back-werewolf.svg"
  9082. }
  9083. },
  9084. },
  9085. [
  9086. {
  9087. name: "Nano",
  9088. height: math.unit(1, "micrometer")
  9089. },
  9090. {
  9091. name: "Micro",
  9092. height: math.unit(1, "inch")
  9093. },
  9094. {
  9095. name: "Normal",
  9096. height: math.unit(6, "feet"),
  9097. default: true
  9098. },
  9099. {
  9100. name: "Macro",
  9101. height: math.unit(60, "feet")
  9102. }
  9103. ]
  9104. ))
  9105. characterMakers.push(() => makeCharacter(
  9106. { name: "Fluoresce", species: ["snow-leopard"], tags: ["anthro"] },
  9107. {
  9108. front: {
  9109. height: math.unit(6, "feet"),
  9110. weight: math.unit(165, "lbs"),
  9111. name: "Front",
  9112. image: {
  9113. source: "./media/characters/fluoresce/front.svg"
  9114. }
  9115. }
  9116. },
  9117. [
  9118. {
  9119. name: "Micro",
  9120. height: math.unit(6, "cm")
  9121. },
  9122. {
  9123. name: "Normal",
  9124. height: math.unit(5 + 7 / 12, "feet"),
  9125. default: true
  9126. },
  9127. {
  9128. name: "Macro",
  9129. height: math.unit(56, "feet")
  9130. },
  9131. {
  9132. name: "Megamacro",
  9133. height: math.unit(1.9, "miles")
  9134. },
  9135. ]
  9136. ))
  9137. characterMakers.push(() => makeCharacter(
  9138. { name: "Aurora", species: ["dragon"], tags: ["anthro"] },
  9139. {
  9140. front: {
  9141. height: math.unit(9 + 6 / 12, "feet"),
  9142. weight: math.unit(523, "lbs"),
  9143. name: "Side",
  9144. image: {
  9145. source: "./media/characters/aurora/side.svg",
  9146. extra: 474/393,
  9147. bottom: 5/479
  9148. }
  9149. }
  9150. },
  9151. [
  9152. {
  9153. name: "Normal",
  9154. height: math.unit(9 + 6 / 12, "feet")
  9155. },
  9156. {
  9157. name: "Macro",
  9158. height: math.unit(96, "feet"),
  9159. default: true
  9160. },
  9161. {
  9162. name: "Macro+",
  9163. height: math.unit(243, "feet")
  9164. },
  9165. ]
  9166. ))
  9167. characterMakers.push(() => makeCharacter(
  9168. { name: "Ranek", species: ["meerkat"], tags: ["anthro"] },
  9169. {
  9170. front: {
  9171. height: math.unit(194, "cm"),
  9172. weight: math.unit(90, "kg"),
  9173. name: "Front",
  9174. image: {
  9175. source: "./media/characters/ranek/front.svg",
  9176. extra: 1862/1791,
  9177. bottom: 80/1942
  9178. }
  9179. },
  9180. back: {
  9181. height: math.unit(194, "cm"),
  9182. weight: math.unit(90, "kg"),
  9183. name: "Back",
  9184. image: {
  9185. source: "./media/characters/ranek/back.svg",
  9186. extra: 1853/1787,
  9187. bottom: 74/1927
  9188. }
  9189. },
  9190. feral: {
  9191. height: math.unit(30, "cm"),
  9192. weight: math.unit(1.6, "lbs"),
  9193. name: "Feral",
  9194. image: {
  9195. source: "./media/characters/ranek/feral.svg",
  9196. extra: 990/631,
  9197. bottom: 29/1019
  9198. }
  9199. },
  9200. },
  9201. [
  9202. {
  9203. name: "Normal",
  9204. height: math.unit(194, "cm"),
  9205. default: true
  9206. },
  9207. {
  9208. name: "Macro",
  9209. height: math.unit(100, "meters")
  9210. },
  9211. ]
  9212. ))
  9213. characterMakers.push(() => makeCharacter(
  9214. { name: "Andrew Cooper", species: ["human"], tags: ["anthro"] },
  9215. {
  9216. front: {
  9217. height: math.unit(5 + 6 / 12, "feet"),
  9218. weight: math.unit(153, "lbs"),
  9219. name: "Front",
  9220. image: {
  9221. source: "./media/characters/andrew-cooper/front.svg"
  9222. }
  9223. },
  9224. },
  9225. [
  9226. {
  9227. name: "Nano",
  9228. height: math.unit(1, "mm")
  9229. },
  9230. {
  9231. name: "Micro",
  9232. height: math.unit(2, "inches")
  9233. },
  9234. {
  9235. name: "Normal",
  9236. height: math.unit(5 + 6 / 12, "feet"),
  9237. default: true
  9238. }
  9239. ]
  9240. ))
  9241. characterMakers.push(() => makeCharacter(
  9242. { name: "Akane Sato", species: ["wolf", "dragon"], tags: ["anthro"] },
  9243. {
  9244. front: {
  9245. height: math.unit(6, "feet"),
  9246. weight: math.unit(180, "lbs"),
  9247. name: "Front",
  9248. image: {
  9249. source: "./media/characters/akane-sato/front.svg",
  9250. extra: 1219 / 1140
  9251. }
  9252. },
  9253. back: {
  9254. height: math.unit(6, "feet"),
  9255. weight: math.unit(180, "lbs"),
  9256. name: "Back",
  9257. image: {
  9258. source: "./media/characters/akane-sato/back.svg",
  9259. extra: 1219 / 1170
  9260. }
  9261. },
  9262. },
  9263. [
  9264. {
  9265. name: "Normal",
  9266. height: math.unit(2.5, "meters")
  9267. },
  9268. {
  9269. name: "Macro",
  9270. height: math.unit(250, "meters"),
  9271. default: true
  9272. },
  9273. {
  9274. name: "Megamacro",
  9275. height: math.unit(25, "km")
  9276. },
  9277. ]
  9278. ))
  9279. characterMakers.push(() => makeCharacter(
  9280. { name: "Rook", species: ["corvid"], tags: ["anthro"] },
  9281. {
  9282. front: {
  9283. height: math.unit(6, "feet"),
  9284. weight: math.unit(65, "kg"),
  9285. name: "Front",
  9286. image: {
  9287. source: "./media/characters/rook/front.svg",
  9288. extra: 960 / 950
  9289. }
  9290. }
  9291. },
  9292. [
  9293. {
  9294. name: "Normal",
  9295. height: math.unit(8.8, "feet")
  9296. },
  9297. {
  9298. name: "Macro",
  9299. height: math.unit(88, "feet"),
  9300. default: true
  9301. },
  9302. {
  9303. name: "Megamacro",
  9304. height: math.unit(8, "miles")
  9305. },
  9306. ]
  9307. ))
  9308. characterMakers.push(() => makeCharacter(
  9309. { name: "Prodigy", species: ["geth"], tags: ["anthro"] },
  9310. {
  9311. front: {
  9312. height: math.unit(12 + 2 / 12, "feet"),
  9313. weight: math.unit(808, "lbs"),
  9314. name: "Front",
  9315. image: {
  9316. source: "./media/characters/prodigy/front.svg"
  9317. }
  9318. }
  9319. },
  9320. [
  9321. {
  9322. name: "Normal",
  9323. height: math.unit(12 + 2 / 12, "feet"),
  9324. default: true
  9325. },
  9326. {
  9327. name: "Macro",
  9328. height: math.unit(143, "feet")
  9329. },
  9330. {
  9331. name: "Macro+",
  9332. height: math.unit(400, "feet")
  9333. },
  9334. ]
  9335. ))
  9336. characterMakers.push(() => makeCharacter(
  9337. { name: "Daniel", species: ["husky"], tags: ["anthro"] },
  9338. {
  9339. front: {
  9340. height: math.unit(6, "feet"),
  9341. weight: math.unit(225, "lbs"),
  9342. name: "Front",
  9343. image: {
  9344. source: "./media/characters/daniel/front.svg"
  9345. }
  9346. },
  9347. leaning: {
  9348. height: math.unit(6, "feet"),
  9349. weight: math.unit(225, "lbs"),
  9350. name: "Leaning",
  9351. image: {
  9352. source: "./media/characters/daniel/leaning.svg"
  9353. }
  9354. },
  9355. },
  9356. [
  9357. {
  9358. name: "Macro",
  9359. height: math.unit(1000, "feet"),
  9360. default: true
  9361. },
  9362. ]
  9363. ))
  9364. characterMakers.push(() => makeCharacter(
  9365. { name: "Chiros", species: ["long-eared-bat"], tags: ["anthro"] },
  9366. {
  9367. front: {
  9368. height: math.unit(6, "feet"),
  9369. weight: math.unit(88, "lbs"),
  9370. name: "Front",
  9371. image: {
  9372. source: "./media/characters/chiros/front.svg",
  9373. extra: 306 / 226
  9374. }
  9375. },
  9376. side: {
  9377. height: math.unit(6, "feet"),
  9378. weight: math.unit(88, "lbs"),
  9379. name: "Side",
  9380. image: {
  9381. source: "./media/characters/chiros/side.svg",
  9382. extra: 306 / 226
  9383. }
  9384. },
  9385. },
  9386. [
  9387. {
  9388. name: "Normal",
  9389. height: math.unit(6, "cm"),
  9390. default: true
  9391. },
  9392. ]
  9393. ))
  9394. characterMakers.push(() => makeCharacter(
  9395. { name: "Selka", species: ["snake"], tags: ["naga"] },
  9396. {
  9397. front: {
  9398. height: math.unit(6, "feet"),
  9399. weight: math.unit(100, "lbs"),
  9400. name: "Front",
  9401. image: {
  9402. source: "./media/characters/selka/front.svg",
  9403. extra: 947 / 887
  9404. }
  9405. }
  9406. },
  9407. [
  9408. {
  9409. name: "Normal",
  9410. height: math.unit(5, "cm"),
  9411. default: true
  9412. },
  9413. ]
  9414. ))
  9415. characterMakers.push(() => makeCharacter(
  9416. { name: "Verin", species: ["dragon"], tags: ["anthro"] },
  9417. {
  9418. front: {
  9419. height: math.unit(8 + 3 / 12, "feet"),
  9420. weight: math.unit(424, "lbs"),
  9421. name: "Front",
  9422. image: {
  9423. source: "./media/characters/verin/front.svg",
  9424. extra: 1845 / 1550
  9425. }
  9426. },
  9427. frontArmored: {
  9428. height: math.unit(8 + 3 / 12, "feet"),
  9429. weight: math.unit(424, "lbs"),
  9430. name: "Front (Armored)",
  9431. image: {
  9432. source: "./media/characters/verin/front-armor.svg",
  9433. extra: 1845 / 1550,
  9434. bottom: 0.01
  9435. }
  9436. },
  9437. back: {
  9438. height: math.unit(8 + 3 / 12, "feet"),
  9439. weight: math.unit(424, "lbs"),
  9440. name: "Back",
  9441. image: {
  9442. source: "./media/characters/verin/back.svg",
  9443. bottom: 0.1,
  9444. extra: 1
  9445. }
  9446. },
  9447. foot: {
  9448. height: math.unit((8 + 3 / 12) / 4.7, "feet"),
  9449. name: "Foot",
  9450. image: {
  9451. source: "./media/characters/verin/foot.svg"
  9452. }
  9453. },
  9454. },
  9455. [
  9456. {
  9457. name: "Normal",
  9458. height: math.unit(8 + 3 / 12, "feet")
  9459. },
  9460. {
  9461. name: "Minimacro",
  9462. height: math.unit(21, "feet"),
  9463. default: true
  9464. },
  9465. {
  9466. name: "Macro",
  9467. height: math.unit(626, "feet")
  9468. },
  9469. ]
  9470. ))
  9471. characterMakers.push(() => makeCharacter(
  9472. { name: "Sovrim Terraquian", species: ["salamander", "chameleon"], tags: ["anthro"] },
  9473. {
  9474. front: {
  9475. height: math.unit(2.718, "meters"),
  9476. weight: math.unit(150, "lbs"),
  9477. name: "Front",
  9478. image: {
  9479. source: "./media/characters/sovrim-terraquian/front.svg",
  9480. extra: 1752/1689,
  9481. bottom: 36/1788
  9482. }
  9483. },
  9484. back: {
  9485. height: math.unit(2.718, "meters"),
  9486. weight: math.unit(150, "lbs"),
  9487. name: "Back",
  9488. image: {
  9489. source: "./media/characters/sovrim-terraquian/back.svg",
  9490. extra: 1698/1657,
  9491. bottom: 58/1756
  9492. }
  9493. },
  9494. tongue: {
  9495. height: math.unit(2.865, "feet"),
  9496. name: "Tongue",
  9497. image: {
  9498. source: "./media/characters/sovrim-terraquian/tongue.svg"
  9499. }
  9500. },
  9501. hand: {
  9502. height: math.unit(1.61, "feet"),
  9503. name: "Hand",
  9504. image: {
  9505. source: "./media/characters/sovrim-terraquian/hand.svg"
  9506. }
  9507. },
  9508. foot: {
  9509. height: math.unit(1.05, "feet"),
  9510. name: "Foot",
  9511. image: {
  9512. source: "./media/characters/sovrim-terraquian/foot.svg"
  9513. }
  9514. },
  9515. footAlt: {
  9516. height: math.unit(0.88, "feet"),
  9517. name: "Foot (Alt)",
  9518. image: {
  9519. source: "./media/characters/sovrim-terraquian/foot-alt.svg"
  9520. }
  9521. },
  9522. },
  9523. [
  9524. {
  9525. name: "Micro",
  9526. height: math.unit(2, "inches")
  9527. },
  9528. {
  9529. name: "Small",
  9530. height: math.unit(1, "meter")
  9531. },
  9532. {
  9533. name: "Normal",
  9534. height: math.unit(Math.E, "meters"),
  9535. default: true
  9536. },
  9537. {
  9538. name: "Macro",
  9539. height: math.unit(20, "meters")
  9540. },
  9541. {
  9542. name: "Macro+",
  9543. height: math.unit(400, "meters")
  9544. },
  9545. ]
  9546. ))
  9547. characterMakers.push(() => makeCharacter(
  9548. { name: "Reece Silvermane", species: ["horse"], tags: ["anthro"] },
  9549. {
  9550. front: {
  9551. height: math.unit(7, "feet"),
  9552. weight: math.unit(489, "lbs"),
  9553. name: "Front",
  9554. image: {
  9555. source: "./media/characters/reece-silvermane/front.svg",
  9556. bottom: 0.02,
  9557. extra: 1
  9558. }
  9559. },
  9560. },
  9561. [
  9562. {
  9563. name: "Macro",
  9564. height: math.unit(1.5, "miles"),
  9565. default: true
  9566. },
  9567. ]
  9568. ))
  9569. characterMakers.push(() => makeCharacter(
  9570. { name: "Kane", species: ["demon", "wolf"], tags: ["anthro"] },
  9571. {
  9572. front: {
  9573. height: math.unit(6, "feet"),
  9574. weight: math.unit(78, "kg"),
  9575. name: "Front",
  9576. image: {
  9577. source: "./media/characters/kane/front.svg",
  9578. extra: 978 / 899
  9579. }
  9580. },
  9581. back: {
  9582. height: math.unit(6, "feet"),
  9583. weight: math.unit(78, "kg"),
  9584. name: "Back",
  9585. image: {
  9586. source: "./media/characters/kane/back.svg",
  9587. extra: 1966/1800,
  9588. bottom: 0/1966
  9589. }
  9590. },
  9591. head: {
  9592. height: math.unit(1.4, "feet"),
  9593. name: "Head",
  9594. image: {
  9595. source: "./media/characters/kane/head.svg"
  9596. }
  9597. },
  9598. },
  9599. [
  9600. {
  9601. name: "Normal",
  9602. height: math.unit(2.1, "m"),
  9603. },
  9604. {
  9605. name: "Macro",
  9606. height: math.unit(1, "km"),
  9607. default: true
  9608. },
  9609. ]
  9610. ))
  9611. characterMakers.push(() => makeCharacter(
  9612. { name: "Tegon", species: ["dragon"], tags: ["anthro"] },
  9613. {
  9614. frontSfw: {
  9615. name: "Front (SFW)",
  9616. height: math.unit(6 + 3/12, "feet"),
  9617. weight: math.unit(200, "kg"),
  9618. image: {
  9619. source: "./media/characters/tegon/front-sfw.svg",
  9620. extra: 1105/1087,
  9621. bottom: 86/1191
  9622. }
  9623. },
  9624. backSfw: {
  9625. name: "Back (SFW)",
  9626. height: math.unit(6 + 3/12, "feet"),
  9627. weight: math.unit(200, "kg"),
  9628. image: {
  9629. source: "./media/characters/tegon/back-sfw.svg",
  9630. extra: 1107/1087,
  9631. bottom: 21/1128
  9632. }
  9633. },
  9634. frontNsfw: {
  9635. name: "Front (NSFW)",
  9636. height: math.unit(6 + 3/12, "feet"),
  9637. weight: math.unit(200, "kg"),
  9638. image: {
  9639. source: "./media/characters/tegon/front-nsfw.svg",
  9640. extra: 1105/1087,
  9641. bottom: 86/1191
  9642. }
  9643. },
  9644. maw: {
  9645. height: math.unit(1.23, "feet"),
  9646. name: "Maw",
  9647. image: {
  9648. source: "./media/characters/tegon/maw.svg"
  9649. }
  9650. },
  9651. dick: {
  9652. height: math.unit(1.18, "feet"),
  9653. name: "Dick",
  9654. image: {
  9655. source: "./media/characters/tegon/dick.svg"
  9656. }
  9657. },
  9658. },
  9659. [
  9660. {
  9661. name: "Micro",
  9662. height: math.unit(1, "inch")
  9663. },
  9664. {
  9665. name: "Normal",
  9666. height: math.unit(6 + 3 / 12, "feet"),
  9667. default: true
  9668. },
  9669. {
  9670. name: "Macro",
  9671. height: math.unit(300, "feet")
  9672. },
  9673. {
  9674. name: "Megamacro",
  9675. height: math.unit(69, "miles")
  9676. },
  9677. ]
  9678. ))
  9679. characterMakers.push(() => makeCharacter(
  9680. { name: "Arcturax", species: ["bat", "gryphon"], tags: ["anthro"] },
  9681. {
  9682. side: {
  9683. height: math.unit(6, "feet"),
  9684. weight: math.unit(2304, "lbs"),
  9685. name: "Side",
  9686. image: {
  9687. source: "./media/characters/arcturax/side.svg",
  9688. extra: 790 / 376,
  9689. bottom: 0.01
  9690. }
  9691. },
  9692. },
  9693. [
  9694. {
  9695. name: "Micro",
  9696. height: math.unit(2, "inch")
  9697. },
  9698. {
  9699. name: "Normal",
  9700. height: math.unit(6, "feet")
  9701. },
  9702. {
  9703. name: "Macro",
  9704. height: math.unit(39, "feet"),
  9705. default: true
  9706. },
  9707. {
  9708. name: "Megamacro",
  9709. height: math.unit(7, "miles")
  9710. },
  9711. ]
  9712. ))
  9713. characterMakers.push(() => makeCharacter(
  9714. { name: "Sentri", species: ["eagle"], tags: ["anthro"] },
  9715. {
  9716. front: {
  9717. height: math.unit(6, "feet"),
  9718. weight: math.unit(50, "lbs"),
  9719. name: "Front",
  9720. image: {
  9721. source: "./media/characters/sentri/front.svg",
  9722. extra: 1750 / 1570,
  9723. bottom: 0.025
  9724. }
  9725. },
  9726. frontAlt: {
  9727. height: math.unit(6, "feet"),
  9728. weight: math.unit(50, "lbs"),
  9729. name: "Front (Alt)",
  9730. image: {
  9731. source: "./media/characters/sentri/front-alt.svg",
  9732. extra: 1750 / 1570,
  9733. bottom: 0.025
  9734. }
  9735. },
  9736. },
  9737. [
  9738. {
  9739. name: "Normal",
  9740. height: math.unit(15, "feet"),
  9741. default: true
  9742. },
  9743. {
  9744. name: "Macro",
  9745. height: math.unit(2500, "feet")
  9746. }
  9747. ]
  9748. ))
  9749. characterMakers.push(() => makeCharacter(
  9750. { name: "Corvin", species: ["gecko"], tags: ["anthro"] },
  9751. {
  9752. front: {
  9753. height: math.unit(5 + 8 / 12, "feet"),
  9754. weight: math.unit(130, "lbs"),
  9755. name: "Front",
  9756. image: {
  9757. source: "./media/characters/corvin/front.svg",
  9758. extra: 1803 / 1629
  9759. }
  9760. },
  9761. frontShirt: {
  9762. height: math.unit(5 + 8 / 12, "feet"),
  9763. weight: math.unit(130, "lbs"),
  9764. name: "Front (Shirt)",
  9765. image: {
  9766. source: "./media/characters/corvin/front-shirt.svg",
  9767. extra: 1803 / 1629
  9768. }
  9769. },
  9770. frontPoncho: {
  9771. height: math.unit(5 + 8 / 12, "feet"),
  9772. weight: math.unit(130, "lbs"),
  9773. name: "Front (Poncho)",
  9774. image: {
  9775. source: "./media/characters/corvin/front-poncho.svg",
  9776. extra: 1803 / 1629
  9777. }
  9778. },
  9779. side: {
  9780. height: math.unit(5 + 8 / 12, "feet"),
  9781. weight: math.unit(130, "lbs"),
  9782. name: "Side",
  9783. image: {
  9784. source: "./media/characters/corvin/side.svg",
  9785. extra: 1012 / 945
  9786. }
  9787. },
  9788. back: {
  9789. height: math.unit(5 + 8 / 12, "feet"),
  9790. weight: math.unit(130, "lbs"),
  9791. name: "Back",
  9792. image: {
  9793. source: "./media/characters/corvin/back.svg",
  9794. extra: 1803 / 1629
  9795. }
  9796. },
  9797. },
  9798. [
  9799. {
  9800. name: "Micro",
  9801. height: math.unit(3, "inches")
  9802. },
  9803. {
  9804. name: "Normal",
  9805. height: math.unit(5 + 8 / 12, "feet")
  9806. },
  9807. {
  9808. name: "Macro",
  9809. height: math.unit(300, "feet"),
  9810. default: true
  9811. },
  9812. {
  9813. name: "Megamacro",
  9814. height: math.unit(500, "miles")
  9815. }
  9816. ]
  9817. ))
  9818. characterMakers.push(() => makeCharacter(
  9819. { name: "Q", species: ["wolf"], tags: ["anthro"] },
  9820. {
  9821. front: {
  9822. height: math.unit(6, "feet"),
  9823. weight: math.unit(135, "lbs"),
  9824. name: "Front",
  9825. image: {
  9826. source: "./media/characters/q/front.svg",
  9827. extra: 854 / 752,
  9828. bottom: 0.005
  9829. }
  9830. },
  9831. back: {
  9832. height: math.unit(6, "feet"),
  9833. weight: math.unit(130, "lbs"),
  9834. name: "Back",
  9835. image: {
  9836. source: "./media/characters/q/back.svg",
  9837. extra: 854 / 752
  9838. }
  9839. },
  9840. },
  9841. [
  9842. {
  9843. name: "Macro",
  9844. height: math.unit(90, "feet"),
  9845. default: true
  9846. },
  9847. {
  9848. name: "Extra Macro",
  9849. height: math.unit(300, "feet"),
  9850. },
  9851. {
  9852. name: "BIG WALF",
  9853. height: math.unit(750, "feet"),
  9854. },
  9855. ]
  9856. ))
  9857. characterMakers.push(() => makeCharacter(
  9858. { name: "Citrine", species: ["kobold"], tags: ["anthro"] },
  9859. {
  9860. front: {
  9861. height: math.unit(3, "feet"),
  9862. weight: math.unit(28, "lbs"),
  9863. name: "Front",
  9864. image: {
  9865. source: "./media/characters/citrine/front.svg"
  9866. }
  9867. }
  9868. },
  9869. [
  9870. {
  9871. name: "Normal",
  9872. height: math.unit(3, "feet"),
  9873. default: true
  9874. }
  9875. ]
  9876. ))
  9877. characterMakers.push(() => makeCharacter(
  9878. { name: "Aura Starwind", species: ["fox"], tags: ["anthro", "taur"] },
  9879. {
  9880. front: {
  9881. height: math.unit(14, "feet"),
  9882. weight: math.unit(1450, "kg"),
  9883. preyCapacity: math.unit(15, "people"),
  9884. name: "Front",
  9885. image: {
  9886. source: "./media/characters/aura-starwind/front.svg",
  9887. extra: 1440/1327,
  9888. bottom: 11/1451
  9889. }
  9890. },
  9891. side: {
  9892. height: math.unit(14, "feet"),
  9893. weight: math.unit(1450, "kg"),
  9894. preyCapacity: math.unit(15, "people"),
  9895. name: "Side",
  9896. image: {
  9897. source: "./media/characters/aura-starwind/side.svg",
  9898. extra: 1654 / 1497
  9899. }
  9900. },
  9901. taur: {
  9902. height: math.unit(18, "feet"),
  9903. weight: math.unit(5500, "kg"),
  9904. preyCapacity: math.unit(50, "people"),
  9905. name: "Taur",
  9906. image: {
  9907. source: "./media/characters/aura-starwind/taur.svg",
  9908. extra: 1760 / 1650
  9909. }
  9910. },
  9911. feral: {
  9912. height: math.unit(46, "feet"),
  9913. weight: math.unit(25000, "kg"),
  9914. preyCapacity: math.unit(120, "people"),
  9915. name: "Feral",
  9916. image: {
  9917. source: "./media/characters/aura-starwind/feral.svg"
  9918. }
  9919. },
  9920. },
  9921. [
  9922. {
  9923. name: "Normal",
  9924. height: math.unit(14, "feet"),
  9925. default: true
  9926. },
  9927. {
  9928. name: "Macro",
  9929. height: math.unit(50, "meters")
  9930. },
  9931. {
  9932. name: "Megamacro",
  9933. height: math.unit(5000, "meters")
  9934. },
  9935. {
  9936. name: "Gigamacro",
  9937. height: math.unit(100000, "kilometers")
  9938. },
  9939. ]
  9940. ))
  9941. characterMakers.push(() => makeCharacter(
  9942. { name: "Rivet", species: ["kobold"], tags: ["anthro"] },
  9943. {
  9944. front: {
  9945. height: math.unit(2 + 7 / 12, "feet"),
  9946. weight: math.unit(32, "lbs"),
  9947. name: "Front",
  9948. image: {
  9949. source: "./media/characters/rivet/front.svg",
  9950. extra: 1716 / 1658,
  9951. bottom: 0.03
  9952. }
  9953. },
  9954. foot: {
  9955. height: math.unit(0.551, "feet"),
  9956. name: "Rivet's Foot",
  9957. image: {
  9958. source: "./media/characters/rivet/foot.svg"
  9959. },
  9960. rename: true
  9961. }
  9962. },
  9963. [
  9964. {
  9965. name: "Micro",
  9966. height: math.unit(1.5, "inches"),
  9967. },
  9968. {
  9969. name: "Normal",
  9970. height: math.unit(2 + 7 / 12, "feet"),
  9971. default: true
  9972. },
  9973. {
  9974. name: "Macro",
  9975. height: math.unit(85, "feet")
  9976. },
  9977. {
  9978. name: "Megamacro",
  9979. height: math.unit(2.2, "km")
  9980. }
  9981. ]
  9982. ))
  9983. characterMakers.push(() => makeCharacter(
  9984. { name: "Coffee", species: ["dog"], tags: ["anthro"] },
  9985. {
  9986. front: {
  9987. height: math.unit(5 + 9 / 12, "feet"),
  9988. weight: math.unit(150, "lbs"),
  9989. name: "Front",
  9990. image: {
  9991. source: "./media/characters/coffee/front.svg",
  9992. extra: 946/880,
  9993. bottom: 66/1012
  9994. }
  9995. },
  9996. foot: {
  9997. height: math.unit(1.29, "feet"),
  9998. name: "Foot",
  9999. image: {
  10000. source: "./media/characters/coffee/foot.svg"
  10001. }
  10002. },
  10003. },
  10004. [
  10005. {
  10006. name: "Micro",
  10007. height: math.unit(2, "inches"),
  10008. },
  10009. {
  10010. name: "Normal",
  10011. height: math.unit(5 + 9 / 12, "feet"),
  10012. default: true
  10013. },
  10014. {
  10015. name: "Macro",
  10016. height: math.unit(800, "feet")
  10017. },
  10018. {
  10019. name: "Megamacro",
  10020. height: math.unit(25, "miles")
  10021. }
  10022. ]
  10023. ))
  10024. characterMakers.push(() => makeCharacter(
  10025. { name: "Chari-Gal", species: ["charizard"], tags: ["anthro"] },
  10026. {
  10027. front: {
  10028. height: math.unit(6, "feet"),
  10029. weight: math.unit(200, "lbs"),
  10030. name: "Front",
  10031. image: {
  10032. source: "./media/characters/chari-gal/front.svg",
  10033. extra: 735/649,
  10034. bottom: 55/790
  10035. },
  10036. form: "normal",
  10037. default: true
  10038. },
  10039. back: {
  10040. height: math.unit(6, "feet"),
  10041. weight: math.unit(200, "lb"),
  10042. name: "Back",
  10043. image: {
  10044. source: "./media/characters/chari-gal/back.svg",
  10045. extra: 762/666,
  10046. bottom: 31/793
  10047. },
  10048. form: "normal"
  10049. },
  10050. mouth: {
  10051. height: math.unit(1.35, "feet"),
  10052. name: "Mouth",
  10053. image: {
  10054. source: "./media/characters/chari-gal/mouth.svg"
  10055. },
  10056. form: "normal"
  10057. },
  10058. gigantamax: {
  10059. height: math.unit(6 * 16, "feet"),
  10060. weight: math.unit(200 * 16 * 16 * 16, "lbs"),
  10061. name: "Gigantamax",
  10062. image: {
  10063. source: "./media/characters/chari-gal/gigantamax-front.svg",
  10064. extra: 1507/1149,
  10065. bottom: 254/1761
  10066. },
  10067. form: "gigantamax",
  10068. default: true
  10069. },
  10070. },
  10071. [
  10072. {
  10073. name: "Normal",
  10074. height: math.unit(5 + 7 / 12, "feet"),
  10075. form: "normal",
  10076. },
  10077. {
  10078. name: "Macro",
  10079. height: math.unit(200, "feet"),
  10080. default: true,
  10081. form: "normal"
  10082. },
  10083. {
  10084. name: "Normal",
  10085. height: math.unit(16 * (5 + 7 / 12), "feet"),
  10086. form: "gigantamax",
  10087. },
  10088. {
  10089. name: "Macro",
  10090. height: math.unit(16 * 200, "feet"),
  10091. default: true,
  10092. form: "gigantamax"
  10093. },
  10094. ],
  10095. {
  10096. "normal": {
  10097. name: "Normal",
  10098. default: true
  10099. },
  10100. "gigantamax": {
  10101. name: "Gigantamax",
  10102. },
  10103. }
  10104. ))
  10105. characterMakers.push(() => makeCharacter(
  10106. { name: "Nova", species: ["wolf"], tags: ["anthro"] },
  10107. {
  10108. front: {
  10109. height: math.unit(6, "feet"),
  10110. weight: math.unit(150, "lbs"),
  10111. name: "Front",
  10112. image: {
  10113. source: "./media/characters/nova/front.svg",
  10114. extra: 5000 / 4722,
  10115. bottom: 0.02
  10116. }
  10117. }
  10118. },
  10119. [
  10120. {
  10121. name: "Micro-",
  10122. height: math.unit(0.8, "inches")
  10123. },
  10124. {
  10125. name: "Micro",
  10126. height: math.unit(2, "inches"),
  10127. default: true
  10128. },
  10129. ]
  10130. ))
  10131. characterMakers.push(() => makeCharacter(
  10132. { name: "Argent", species: ["kobold"], tags: ["anthro"] },
  10133. {
  10134. koboldFront: {
  10135. height: math.unit(3 + 1 / 12, "feet"),
  10136. weight: math.unit(21.7, "lbs"),
  10137. name: "Front",
  10138. image: {
  10139. source: "./media/characters/argent/kobold-front.svg",
  10140. extra: 1471 / 1331,
  10141. bottom: 100.8 / 1575.5
  10142. },
  10143. form: "kobold",
  10144. default: true
  10145. },
  10146. dragonFront: {
  10147. height: math.unit(75, "inches"),
  10148. name: "Front",
  10149. image: {
  10150. source: "./media/characters/argent/dragon-front.svg",
  10151. extra: 1389/1248,
  10152. bottom: 54/1443
  10153. },
  10154. form: "dragon",
  10155. },
  10156. dragonBack: {
  10157. height: math.unit(75, "inches"),
  10158. name: "Back",
  10159. image: {
  10160. source: "./media/characters/argent/dragon-back.svg",
  10161. extra: 1399/1271,
  10162. bottom: 23/1422
  10163. },
  10164. form: "dragon",
  10165. },
  10166. dragonDressed: {
  10167. height: math.unit(75, "inches"),
  10168. name: "Dressed",
  10169. image: {
  10170. source: "./media/characters/argent/dragon-dressed.svg",
  10171. extra: 1350/1215,
  10172. bottom: 26/1376
  10173. },
  10174. form: "dragon"
  10175. },
  10176. dragonHead: {
  10177. height: math.unit(23.5, "inches"),
  10178. name: "Head",
  10179. image: {
  10180. source: "./media/characters/argent/dragon-head.svg"
  10181. },
  10182. form: "dragon",
  10183. },
  10184. },
  10185. [
  10186. {
  10187. name: "Micro",
  10188. height: math.unit(2, "inches"),
  10189. form: "kobold",
  10190. },
  10191. {
  10192. name: "Normal",
  10193. height: math.unit(3 + 1 / 12, "feet"),
  10194. form: "kobold",
  10195. default: true
  10196. },
  10197. {
  10198. name: "Macro",
  10199. height: math.unit(120, "feet"),
  10200. form: "kobold",
  10201. },
  10202. {
  10203. name: "Speck",
  10204. height: math.unit(1, "mm"),
  10205. form: "dragon",
  10206. },
  10207. {
  10208. name: "Tiny",
  10209. height: math.unit(1, "cm"),
  10210. form: "dragon",
  10211. },
  10212. {
  10213. name: "Micro",
  10214. height: math.unit(5, "cm"),
  10215. form: "dragon",
  10216. },
  10217. {
  10218. name: "Normal",
  10219. height: math.unit(75, "inches"),
  10220. form: "dragon",
  10221. default: true
  10222. },
  10223. {
  10224. name: "Extra Tall",
  10225. height: math.unit(9, "feet"),
  10226. form: "dragon",
  10227. },
  10228. {
  10229. name: "Inconvenient",
  10230. height: math.unit(5, "meters"),
  10231. form: "dragon",
  10232. },
  10233. {
  10234. name: "Macro",
  10235. height: math.unit(70, "meters"),
  10236. form: "dragon",
  10237. },
  10238. {
  10239. name: "Macro+",
  10240. height: math.unit(250, "meters"),
  10241. form: "dragon",
  10242. },
  10243. {
  10244. name: "Megamacro",
  10245. height: math.unit(20, "km"),
  10246. form: "dragon",
  10247. },
  10248. {
  10249. name: "Mountainous",
  10250. height: math.unit(100, "km"),
  10251. form: "dragon",
  10252. },
  10253. {
  10254. name: "Continental",
  10255. height: math.unit(2, "megameters"),
  10256. form: "dragon",
  10257. },
  10258. {
  10259. name: "Too Big",
  10260. height: math.unit(900, "megameters"),
  10261. form: "dragon",
  10262. },
  10263. ],
  10264. {
  10265. "kobold": {
  10266. name: "Kobold",
  10267. default: true
  10268. },
  10269. "dragon": {
  10270. name: "Dragon",
  10271. },
  10272. }
  10273. ))
  10274. characterMakers.push(() => makeCharacter(
  10275. { name: "Mira al-Cul", species: ["snake"], tags: ["naga"] },
  10276. {
  10277. lamp: {
  10278. height: math.unit(7 * 1559 / 989, "feet"),
  10279. name: "Magic Lamp",
  10280. image: {
  10281. source: "./media/characters/mira-al-cul/lamp.svg",
  10282. extra: 1617 / 1559
  10283. }
  10284. },
  10285. front: {
  10286. height: math.unit(7, "feet"),
  10287. name: "Front",
  10288. image: {
  10289. source: "./media/characters/mira-al-cul/front.svg",
  10290. extra: 1044 / 990
  10291. }
  10292. },
  10293. },
  10294. [
  10295. {
  10296. name: "Heavily Restricted",
  10297. height: math.unit(7 * 1559 / 989, "feet")
  10298. },
  10299. {
  10300. name: "Freshly Freed",
  10301. height: math.unit(50 * 1559 / 989, "feet")
  10302. },
  10303. {
  10304. name: "World Encompassing",
  10305. height: math.unit(10000 * 1559 / 989, "miles")
  10306. },
  10307. {
  10308. name: "Galactic",
  10309. height: math.unit(1.433 * 1559 / 989, "zettameters")
  10310. },
  10311. {
  10312. name: "Palmed Universe",
  10313. height: math.unit(6000 * 1559 / 989, "yottameters"),
  10314. default: true
  10315. },
  10316. {
  10317. name: "Multiversal Matriarch",
  10318. height: math.unit(8.87e10, "yottameters")
  10319. },
  10320. {
  10321. name: "Void Mother",
  10322. height: math.unit(3.14e110, "yottaparsecs")
  10323. },
  10324. {
  10325. name: "Toying with Transcendence",
  10326. height: math.unit(1e307, "meters")
  10327. },
  10328. ]
  10329. ))
  10330. characterMakers.push(() => makeCharacter(
  10331. { name: "Kuro-shi Uchū", species: ["lugia"], tags: ["feral"] },
  10332. {
  10333. front: {
  10334. height: math.unit(17 + 1 / 12, "feet"),
  10335. weight: math.unit(476.2 * 5, "lbs"),
  10336. name: "Front",
  10337. image: {
  10338. source: "./media/characters/kuro-shi-uchū/front.svg",
  10339. extra: 2329 / 1835,
  10340. bottom: 0.02
  10341. }
  10342. },
  10343. },
  10344. [
  10345. {
  10346. name: "Micro",
  10347. height: math.unit(2, "inches")
  10348. },
  10349. {
  10350. name: "Normal",
  10351. height: math.unit(12, "meters")
  10352. },
  10353. {
  10354. name: "Planetary",
  10355. height: math.unit(0.00929, "AU"),
  10356. default: true
  10357. },
  10358. {
  10359. name: "Universal",
  10360. height: math.unit(20, "gigaparsecs")
  10361. },
  10362. ]
  10363. ))
  10364. characterMakers.push(() => makeCharacter(
  10365. { name: "Katherine", species: ["fox"], tags: ["anthro"] },
  10366. {
  10367. front: {
  10368. height: math.unit(5 + 2 / 12, "feet"),
  10369. weight: math.unit(120, "lbs"),
  10370. name: "Front",
  10371. image: {
  10372. source: "./media/characters/katherine/front.svg",
  10373. extra: 2075 / 1969
  10374. }
  10375. },
  10376. dress: {
  10377. height: math.unit(5 + 2 / 12, "feet"),
  10378. weight: math.unit(120, "lbs"),
  10379. name: "Dress",
  10380. image: {
  10381. source: "./media/characters/katherine/dress.svg",
  10382. extra: 2258 / 2064
  10383. }
  10384. },
  10385. },
  10386. [
  10387. {
  10388. name: "Micro",
  10389. height: math.unit(1, "inches"),
  10390. default: true
  10391. },
  10392. {
  10393. name: "Normal",
  10394. height: math.unit(5 + 2 / 12, "feet")
  10395. },
  10396. {
  10397. name: "Macro",
  10398. height: math.unit(100, "meters")
  10399. },
  10400. {
  10401. name: "Megamacro",
  10402. height: math.unit(80, "miles")
  10403. },
  10404. ]
  10405. ))
  10406. characterMakers.push(() => makeCharacter(
  10407. { name: "Yevis", species: ["cerberus"], tags: ["anthro"] },
  10408. {
  10409. front: {
  10410. height: math.unit(7 + 8 / 12, "feet"),
  10411. weight: math.unit(250, "lbs"),
  10412. name: "Front",
  10413. image: {
  10414. source: "./media/characters/yevis/front.svg",
  10415. extra: 1938 / 1755
  10416. }
  10417. }
  10418. },
  10419. [
  10420. {
  10421. name: "Mortal",
  10422. height: math.unit(7 + 8 / 12, "feet")
  10423. },
  10424. {
  10425. name: "Battle",
  10426. height: math.unit(25 + 11 / 12, "feet")
  10427. },
  10428. {
  10429. name: "Wrath",
  10430. height: math.unit(1654 + 11 / 12, "feet")
  10431. },
  10432. {
  10433. name: "Planet Destroyer",
  10434. height: math.unit(12000, "miles")
  10435. },
  10436. {
  10437. name: "Galaxy Conqueror",
  10438. height: math.unit(1.45, "zettameters"),
  10439. default: true
  10440. },
  10441. {
  10442. name: "Universal War",
  10443. height: math.unit(184, "gigaparsecs")
  10444. },
  10445. {
  10446. name: "Eternity War",
  10447. height: math.unit(1.98e55, "yottaparsecs")
  10448. },
  10449. ]
  10450. ))
  10451. characterMakers.push(() => makeCharacter(
  10452. { name: "Xavier", species: ["fox"], tags: ["anthro"] },
  10453. {
  10454. front: {
  10455. height: math.unit(5 + 8 / 12, "feet"),
  10456. weight: math.unit(63, "kg"),
  10457. name: "Front",
  10458. image: {
  10459. source: "./media/characters/xavier/front.svg",
  10460. extra: 944 / 883
  10461. }
  10462. },
  10463. frontStretch: {
  10464. height: math.unit(5 + 8 / 12, "feet"),
  10465. weight: math.unit(63, "kg"),
  10466. name: "Stretching",
  10467. image: {
  10468. source: "./media/characters/xavier/front-stretch.svg",
  10469. extra: 962 / 820
  10470. }
  10471. },
  10472. },
  10473. [
  10474. {
  10475. name: "Normal",
  10476. height: math.unit(5 + 8 / 12, "feet")
  10477. },
  10478. {
  10479. name: "Macro",
  10480. height: math.unit(100, "meters"),
  10481. default: true
  10482. },
  10483. {
  10484. name: "McLargeHuge",
  10485. height: math.unit(10, "miles")
  10486. },
  10487. ]
  10488. ))
  10489. characterMakers.push(() => makeCharacter(
  10490. { name: "Joshii", species: ["cat", "rabbit", "demon"], tags: ["anthro"] },
  10491. {
  10492. front: {
  10493. height: math.unit(5 + 5 / 12, "feet"),
  10494. weight: math.unit(150, "lb"),
  10495. name: "Front",
  10496. image: {
  10497. source: "./media/characters/joshii/front.svg",
  10498. extra: 765 / 653,
  10499. bottom: 51 / 816
  10500. }
  10501. },
  10502. foot: {
  10503. height: math.unit((5 + 5 / 12) * 0.1676, "feet"),
  10504. name: "Foot",
  10505. image: {
  10506. source: "./media/characters/joshii/foot.svg"
  10507. }
  10508. },
  10509. },
  10510. [
  10511. {
  10512. name: "Micro",
  10513. height: math.unit(2, "inches")
  10514. },
  10515. {
  10516. name: "Normal",
  10517. height: math.unit(5 + 5 / 12, "feet")
  10518. },
  10519. {
  10520. name: "Macro",
  10521. height: math.unit(785, "feet"),
  10522. default: true
  10523. },
  10524. {
  10525. name: "Megamacro",
  10526. height: math.unit(24.5, "miles")
  10527. },
  10528. ]
  10529. ))
  10530. characterMakers.push(() => makeCharacter(
  10531. { name: "Goddess Elizabeth", species: ["wolf", "deity"], tags: ["anthro"] },
  10532. {
  10533. front: {
  10534. height: math.unit(6, "feet"),
  10535. weight: math.unit(150, "lb"),
  10536. name: "Front",
  10537. image: {
  10538. source: "./media/characters/goddess-elizabeth/front.svg",
  10539. extra: 1800 / 1525,
  10540. bottom: 0.005
  10541. }
  10542. },
  10543. foot: {
  10544. height: math.unit(6 * 0.25436 * 1800 / 1525 / 2, "feet"),
  10545. name: "Foot",
  10546. image: {
  10547. source: "./media/characters/goddess-elizabeth/foot.svg"
  10548. }
  10549. },
  10550. mouth: {
  10551. height: math.unit(6, "feet"),
  10552. name: "Mouth",
  10553. image: {
  10554. source: "./media/characters/goddess-elizabeth/mouth.svg"
  10555. }
  10556. },
  10557. },
  10558. [
  10559. {
  10560. name: "Micro",
  10561. height: math.unit(12, "feet")
  10562. },
  10563. {
  10564. name: "Normal",
  10565. height: math.unit(80, "miles"),
  10566. default: true
  10567. },
  10568. {
  10569. name: "Macro",
  10570. height: math.unit(15000, "parsecs")
  10571. },
  10572. ]
  10573. ))
  10574. characterMakers.push(() => makeCharacter(
  10575. { name: "Kara", species: ["wolf"], tags: ["anthro"] },
  10576. {
  10577. front: {
  10578. height: math.unit(5 + 9 / 12, "feet"),
  10579. weight: math.unit(144, "lb"),
  10580. name: "Front",
  10581. image: {
  10582. source: "./media/characters/kara/front.svg"
  10583. }
  10584. },
  10585. feet: {
  10586. height: math.unit(6 / 6.765, "feet"),
  10587. name: "Kara's Feet",
  10588. rename: true,
  10589. image: {
  10590. source: "./media/characters/kara/feet.svg"
  10591. }
  10592. },
  10593. },
  10594. [
  10595. {
  10596. name: "Normal",
  10597. height: math.unit(5 + 9 / 12, "feet")
  10598. },
  10599. {
  10600. name: "Macro",
  10601. height: math.unit(174, "feet"),
  10602. default: true
  10603. },
  10604. ]
  10605. ))
  10606. characterMakers.push(() => makeCharacter(
  10607. { name: "Tyrone", species: ["tyrantrum"], tags: ["anthro"] },
  10608. {
  10609. front: {
  10610. height: math.unit(18, "feet"),
  10611. weight: math.unit(4050, "lb"),
  10612. name: "Front",
  10613. image: {
  10614. source: "./media/characters/tyrone/front.svg",
  10615. extra: 2405 / 2270,
  10616. bottom: 182 / 2587
  10617. }
  10618. },
  10619. },
  10620. [
  10621. {
  10622. name: "Normal",
  10623. height: math.unit(18, "feet"),
  10624. default: true
  10625. },
  10626. {
  10627. name: "Macro",
  10628. height: math.unit(300, "feet")
  10629. },
  10630. {
  10631. name: "Megamacro",
  10632. height: math.unit(15, "km")
  10633. },
  10634. {
  10635. name: "Gigamacro",
  10636. height: math.unit(500, "km")
  10637. },
  10638. {
  10639. name: "Teramacro",
  10640. height: math.unit(0.5, "gigameters")
  10641. },
  10642. {
  10643. name: "Omnimacro",
  10644. height: math.unit(1e252, "yottauniverse")
  10645. },
  10646. ]
  10647. ))
  10648. characterMakers.push(() => makeCharacter(
  10649. { name: "Danny", species: ["gryphon"], tags: ["anthro"] },
  10650. {
  10651. front: {
  10652. height: math.unit(7 + 8 / 12, "feet"),
  10653. weight: math.unit(120, "lb"),
  10654. name: "Front",
  10655. image: {
  10656. source: "./media/characters/danny/front.svg",
  10657. extra: 1490 / 1350
  10658. }
  10659. },
  10660. back: {
  10661. height: math.unit(7 + 8 / 12, "feet"),
  10662. weight: math.unit(120, "lb"),
  10663. name: "Back",
  10664. image: {
  10665. source: "./media/characters/danny/back.svg",
  10666. extra: 1490 / 1350
  10667. }
  10668. },
  10669. },
  10670. [
  10671. {
  10672. name: "Normal",
  10673. height: math.unit(7 + 8 / 12, "feet"),
  10674. default: true
  10675. },
  10676. ]
  10677. ))
  10678. characterMakers.push(() => makeCharacter(
  10679. { name: "Mallow", species: ["mouse"], tags: ["anthro"] },
  10680. {
  10681. front: {
  10682. height: math.unit(3.5, "inches"),
  10683. weight: math.unit(19, "grams"),
  10684. name: "Front",
  10685. image: {
  10686. source: "./media/characters/mallow/front.svg",
  10687. extra: 471 / 431
  10688. }
  10689. },
  10690. back: {
  10691. height: math.unit(3.5, "inches"),
  10692. weight: math.unit(19, "grams"),
  10693. name: "Back",
  10694. image: {
  10695. source: "./media/characters/mallow/back.svg",
  10696. extra: 471 / 431
  10697. }
  10698. },
  10699. },
  10700. [
  10701. {
  10702. name: "Normal",
  10703. height: math.unit(3.5, "inches"),
  10704. default: true
  10705. },
  10706. ]
  10707. ))
  10708. characterMakers.push(() => makeCharacter(
  10709. { name: "Starry Aqua", species: ["fennec-fox"], tags: ["anthro"] },
  10710. {
  10711. front: {
  10712. height: math.unit(9, "feet"),
  10713. weight: math.unit(230, "kg"),
  10714. name: "Front",
  10715. image: {
  10716. source: "./media/characters/starry-aqua/front.svg"
  10717. }
  10718. },
  10719. back: {
  10720. height: math.unit(9, "feet"),
  10721. weight: math.unit(230, "kg"),
  10722. name: "Back",
  10723. image: {
  10724. source: "./media/characters/starry-aqua/back.svg"
  10725. }
  10726. },
  10727. hand: {
  10728. height: math.unit(9 * 0.1168, "feet"),
  10729. name: "Hand",
  10730. image: {
  10731. source: "./media/characters/starry-aqua/hand.svg"
  10732. }
  10733. },
  10734. foot: {
  10735. height: math.unit(9 * 0.18, "feet"),
  10736. name: "Foot",
  10737. image: {
  10738. source: "./media/characters/starry-aqua/foot.svg"
  10739. }
  10740. }
  10741. },
  10742. [
  10743. {
  10744. name: "Micro",
  10745. height: math.unit(3, "inches")
  10746. },
  10747. {
  10748. name: "Normal",
  10749. height: math.unit(9, "feet")
  10750. },
  10751. {
  10752. name: "Macro",
  10753. height: math.unit(300, "feet"),
  10754. default: true
  10755. },
  10756. {
  10757. name: "Megamacro",
  10758. height: math.unit(3200, "feet")
  10759. }
  10760. ]
  10761. ))
  10762. characterMakers.push(() => makeCharacter(
  10763. { name: "Luka Towers", species: ["kangaroo"], tags: ["anthro"] },
  10764. {
  10765. front: {
  10766. height: math.unit(15, "feet"),
  10767. weight: math.unit(5026, "lb"),
  10768. name: "Front",
  10769. image: {
  10770. source: "./media/characters/luka-towers/front.svg",
  10771. extra: 1269/1133,
  10772. bottom: 51/1320
  10773. }
  10774. },
  10775. },
  10776. [
  10777. {
  10778. name: "Normal",
  10779. height: math.unit(15, "feet"),
  10780. default: true
  10781. },
  10782. {
  10783. name: "Minimacro",
  10784. height: math.unit(25, "feet")
  10785. },
  10786. {
  10787. name: "Macro",
  10788. height: math.unit(320, "feet")
  10789. },
  10790. {
  10791. name: "Megamacro",
  10792. height: math.unit(35000, "feet")
  10793. },
  10794. {
  10795. name: "Gigamacro",
  10796. height: math.unit(4000, "miles")
  10797. },
  10798. {
  10799. name: "Teramacro",
  10800. height: math.unit(15000, "miles")
  10801. },
  10802. ]
  10803. ))
  10804. characterMakers.push(() => makeCharacter(
  10805. { name: "Natalie Nightring", species: ["lemur"], tags: ["anthro"] },
  10806. {
  10807. front: {
  10808. height: math.unit(6, "feet"),
  10809. weight: math.unit(150, "lb"),
  10810. name: "Front",
  10811. image: {
  10812. source: "./media/characters/natalie-nightring/front.svg",
  10813. extra: 1,
  10814. bottom: 0.06
  10815. }
  10816. },
  10817. },
  10818. [
  10819. {
  10820. name: "Uh Oh",
  10821. height: math.unit(0.1, "mm")
  10822. },
  10823. {
  10824. name: "Small",
  10825. height: math.unit(3, "inches")
  10826. },
  10827. {
  10828. name: "Human Scale",
  10829. height: math.unit(6, "feet")
  10830. },
  10831. {
  10832. name: "Librarian",
  10833. height: math.unit(50, "feet"),
  10834. default: true
  10835. },
  10836. {
  10837. name: "Immense",
  10838. height: math.unit(200, "miles")
  10839. },
  10840. ]
  10841. ))
  10842. characterMakers.push(() => makeCharacter(
  10843. { name: "Danni Rosie", species: ["fox"], tags: ["anthro"] },
  10844. {
  10845. front: {
  10846. height: math.unit(6, "feet"),
  10847. weight: math.unit(180, "lbs"),
  10848. name: "Front",
  10849. image: {
  10850. source: "./media/characters/danni-rosie/front.svg",
  10851. extra: 1260 / 1128,
  10852. bottom: 0.022
  10853. }
  10854. },
  10855. },
  10856. [
  10857. {
  10858. name: "Micro",
  10859. height: math.unit(2, "inches"),
  10860. default: true
  10861. },
  10862. ]
  10863. ))
  10864. characterMakers.push(() => makeCharacter(
  10865. { name: "Samantha Kruse", species: ["human"], tags: ["anthro"] },
  10866. {
  10867. front: {
  10868. height: math.unit(5 + 9 / 12, "feet"),
  10869. weight: math.unit(220, "lb"),
  10870. name: "Front",
  10871. image: {
  10872. source: "./media/characters/samantha-kruse/front.svg",
  10873. extra: (985 / 935),
  10874. bottom: 0.03
  10875. }
  10876. },
  10877. frontUndressed: {
  10878. height: math.unit(5 + 9 / 12, "feet"),
  10879. weight: math.unit(220, "lb"),
  10880. name: "Front (Undressed)",
  10881. image: {
  10882. source: "./media/characters/samantha-kruse/front-undressed.svg",
  10883. extra: (973 / 923),
  10884. bottom: 0.025
  10885. }
  10886. },
  10887. fat: {
  10888. height: math.unit(5 + 9 / 12, "feet"),
  10889. weight: math.unit(900, "lb"),
  10890. name: "Front (Fat)",
  10891. image: {
  10892. source: "./media/characters/samantha-kruse/fat.svg",
  10893. extra: 2688 / 2561
  10894. }
  10895. },
  10896. },
  10897. [
  10898. {
  10899. name: "Normal",
  10900. height: math.unit(5 + 9 / 12, "feet"),
  10901. default: true
  10902. }
  10903. ]
  10904. ))
  10905. characterMakers.push(() => makeCharacter(
  10906. { name: "Amelia Rosie", species: ["human"], tags: ["anthro"] },
  10907. {
  10908. back: {
  10909. height: math.unit(5 + 4 / 12, "feet"),
  10910. weight: math.unit(4963, "lb"),
  10911. name: "Back",
  10912. image: {
  10913. source: "./media/characters/amelia-rosie/back.svg",
  10914. extra: 1113 / 963,
  10915. bottom: 0.01
  10916. }
  10917. },
  10918. },
  10919. [
  10920. {
  10921. name: "Level 0",
  10922. height: math.unit(5 + 4 / 12, "feet")
  10923. },
  10924. {
  10925. name: "Level 1",
  10926. height: math.unit(164597, "feet"),
  10927. default: true
  10928. },
  10929. {
  10930. name: "Level 2",
  10931. height: math.unit(956243, "miles")
  10932. },
  10933. {
  10934. name: "Level 3",
  10935. height: math.unit(29421709423, "miles")
  10936. },
  10937. {
  10938. name: "Level 4",
  10939. height: math.unit(154, "lightyears")
  10940. },
  10941. {
  10942. name: "Level 5",
  10943. height: math.unit(4738272, "lightyears")
  10944. },
  10945. {
  10946. name: "Level 6",
  10947. height: math.unit(145787152896, "lightyears")
  10948. },
  10949. ]
  10950. ))
  10951. characterMakers.push(() => makeCharacter(
  10952. { name: "Rook Kitara", species: ["raskatox"], tags: ["anthro"] },
  10953. {
  10954. front: {
  10955. height: math.unit(5 + 11 / 12, "feet"),
  10956. weight: math.unit(65, "kg"),
  10957. name: "Front",
  10958. image: {
  10959. source: "./media/characters/rook-kitara/front.svg",
  10960. extra: 1347 / 1274,
  10961. bottom: 0.005
  10962. }
  10963. },
  10964. },
  10965. [
  10966. {
  10967. name: "Totally Unfair",
  10968. height: math.unit(1.8, "mm")
  10969. },
  10970. {
  10971. name: "Lap Rookie",
  10972. height: math.unit(1.4, "feet")
  10973. },
  10974. {
  10975. name: "Normal",
  10976. height: math.unit(5 + 11 / 12, "feet"),
  10977. default: true
  10978. },
  10979. {
  10980. name: "How Did This Happen",
  10981. height: math.unit(80, "miles")
  10982. }
  10983. ]
  10984. ))
  10985. characterMakers.push(() => makeCharacter(
  10986. { name: "Pisces", species: ["kelpie"], tags: ["anthro"] },
  10987. {
  10988. front: {
  10989. height: math.unit(7, "feet"),
  10990. weight: math.unit(300, "lb"),
  10991. name: "Front",
  10992. image: {
  10993. source: "./media/characters/pisces/front.svg",
  10994. extra: 2255 / 2115,
  10995. bottom: 0.03
  10996. }
  10997. },
  10998. back: {
  10999. height: math.unit(7, "feet"),
  11000. weight: math.unit(300, "lb"),
  11001. name: "Back",
  11002. image: {
  11003. source: "./media/characters/pisces/back.svg",
  11004. extra: 2146 / 2055,
  11005. bottom: 0.04
  11006. }
  11007. },
  11008. },
  11009. [
  11010. {
  11011. name: "Normal",
  11012. height: math.unit(7, "feet"),
  11013. default: true
  11014. },
  11015. {
  11016. name: "Swimming Pool",
  11017. height: math.unit(12.2, "meters")
  11018. },
  11019. {
  11020. name: "Olympic Swimming Pool",
  11021. height: math.unit(56.3, "meters")
  11022. },
  11023. {
  11024. name: "Lake Superior",
  11025. height: math.unit(93900, "meters")
  11026. },
  11027. {
  11028. name: "Mediterranean Sea",
  11029. height: math.unit(644457, "meters")
  11030. },
  11031. {
  11032. name: "World's Oceans",
  11033. height: math.unit(4567491, "meters")
  11034. },
  11035. ]
  11036. ))
  11037. characterMakers.push(() => makeCharacter(
  11038. { name: "Zelas", species: ["rabbit", "demon"], tags: ["anthro"] },
  11039. {
  11040. front: {
  11041. height: math.unit(2.3, "meters"),
  11042. weight: math.unit(120, "kg"),
  11043. name: "Front",
  11044. image: {
  11045. source: "./media/characters/zelas/front.svg"
  11046. }
  11047. },
  11048. side: {
  11049. height: math.unit(2.3, "meters"),
  11050. weight: math.unit(120, "kg"),
  11051. name: "Side",
  11052. image: {
  11053. source: "./media/characters/zelas/side.svg"
  11054. }
  11055. },
  11056. back: {
  11057. height: math.unit(2.3, "meters"),
  11058. weight: math.unit(120, "kg"),
  11059. name: "Back",
  11060. image: {
  11061. source: "./media/characters/zelas/back.svg"
  11062. }
  11063. },
  11064. foot: {
  11065. height: math.unit(1.116, "feet"),
  11066. name: "Foot",
  11067. image: {
  11068. source: "./media/characters/zelas/foot.svg"
  11069. }
  11070. },
  11071. },
  11072. [
  11073. {
  11074. name: "Normal",
  11075. height: math.unit(2.3, "meters")
  11076. },
  11077. {
  11078. name: "Macro",
  11079. height: math.unit(30, "meters"),
  11080. default: true
  11081. },
  11082. ]
  11083. ))
  11084. characterMakers.push(() => makeCharacter(
  11085. { name: "Talbot", species: ["husky", "labrador"], tags: ["anthro"] },
  11086. {
  11087. front: {
  11088. height: math.unit(1, "inch"),
  11089. weight: math.unit(0.21, "grams"),
  11090. name: "Front",
  11091. image: {
  11092. source: "./media/characters/talbot/front.svg",
  11093. extra: 594 / 544
  11094. }
  11095. },
  11096. },
  11097. [
  11098. {
  11099. name: "Micro",
  11100. height: math.unit(1, "inch"),
  11101. default: true
  11102. },
  11103. ]
  11104. ))
  11105. characterMakers.push(() => makeCharacter(
  11106. { name: "Fliss", species: ["sylveon"], tags: ["feral"] },
  11107. {
  11108. front: {
  11109. height: math.unit(3 + 3 / 12, "feet"),
  11110. weight: math.unit(51.8, "lb"),
  11111. name: "Front",
  11112. image: {
  11113. source: "./media/characters/fliss/front.svg",
  11114. extra: 840 / 640
  11115. }
  11116. },
  11117. },
  11118. [
  11119. {
  11120. name: "Teeny Tiny",
  11121. height: math.unit(1, "mm")
  11122. },
  11123. {
  11124. name: "Small",
  11125. height: math.unit(1, "inch"),
  11126. default: true
  11127. },
  11128. {
  11129. name: "Standard Sylveon",
  11130. height: math.unit(3 + 3 / 12, "feet")
  11131. },
  11132. {
  11133. name: "Large Nuisance",
  11134. height: math.unit(33, "feet")
  11135. },
  11136. {
  11137. name: "City Filler",
  11138. height: math.unit(3000, "feet")
  11139. },
  11140. {
  11141. name: "New Horizon",
  11142. height: math.unit(6000, "miles")
  11143. },
  11144. ]
  11145. ))
  11146. characterMakers.push(() => makeCharacter(
  11147. { name: "Fleta", species: ["lion"], tags: ["anthro"] },
  11148. {
  11149. front: {
  11150. height: math.unit(5, "cm"),
  11151. weight: math.unit(1.94, "g"),
  11152. name: "Front",
  11153. image: {
  11154. source: "./media/characters/fleta/front.svg",
  11155. extra: 835 / 803
  11156. }
  11157. },
  11158. back: {
  11159. height: math.unit(5, "cm"),
  11160. weight: math.unit(1.94, "g"),
  11161. name: "Back",
  11162. image: {
  11163. source: "./media/characters/fleta/back.svg",
  11164. extra: 835 / 803
  11165. }
  11166. },
  11167. },
  11168. [
  11169. {
  11170. name: "Micro",
  11171. height: math.unit(5, "cm"),
  11172. default: true
  11173. },
  11174. ]
  11175. ))
  11176. characterMakers.push(() => makeCharacter(
  11177. { name: "Dominic", species: ["dragon"], tags: ["anthro"] },
  11178. {
  11179. front: {
  11180. height: math.unit(6, "feet"),
  11181. weight: math.unit(225, "lb"),
  11182. name: "Front",
  11183. image: {
  11184. source: "./media/characters/dominic/front.svg",
  11185. extra: 1770 / 1620,
  11186. bottom: 0.025
  11187. }
  11188. },
  11189. back: {
  11190. height: math.unit(6, "feet"),
  11191. weight: math.unit(225, "lb"),
  11192. name: "Back",
  11193. image: {
  11194. source: "./media/characters/dominic/back.svg",
  11195. extra: 1745 / 1620,
  11196. bottom: 0.065
  11197. }
  11198. },
  11199. },
  11200. [
  11201. {
  11202. name: "Nano",
  11203. height: math.unit(0.1, "mm")
  11204. },
  11205. {
  11206. name: "Micro-",
  11207. height: math.unit(1, "mm")
  11208. },
  11209. {
  11210. name: "Micro",
  11211. height: math.unit(4, "inches")
  11212. },
  11213. {
  11214. name: "Normal",
  11215. height: math.unit(6 + 4 / 12, "feet"),
  11216. default: true
  11217. },
  11218. {
  11219. name: "Macro",
  11220. height: math.unit(115, "feet")
  11221. },
  11222. {
  11223. name: "Macro+",
  11224. height: math.unit(955, "feet")
  11225. },
  11226. {
  11227. name: "Megamacro",
  11228. height: math.unit(8990, "feet")
  11229. },
  11230. {
  11231. name: "Gigmacro",
  11232. height: math.unit(9310, "miles")
  11233. },
  11234. {
  11235. name: "Teramacro",
  11236. height: math.unit(1567005010, "miles")
  11237. },
  11238. {
  11239. name: "Examacro",
  11240. height: math.unit(1425, "parsecs")
  11241. },
  11242. ]
  11243. ))
  11244. characterMakers.push(() => makeCharacter(
  11245. { name: "Major Colonel", species: ["polar-bear"], tags: ["anthro"] },
  11246. {
  11247. front: {
  11248. height: math.unit(400, "feet"),
  11249. weight: math.unit(44444444, "lb"),
  11250. name: "Front",
  11251. image: {
  11252. source: "./media/characters/major-colonel/front.svg"
  11253. }
  11254. },
  11255. back: {
  11256. height: math.unit(400, "feet"),
  11257. weight: math.unit(44444444, "lb"),
  11258. name: "Back",
  11259. image: {
  11260. source: "./media/characters/major-colonel/back.svg"
  11261. }
  11262. },
  11263. },
  11264. [
  11265. {
  11266. name: "Macro",
  11267. height: math.unit(400, "feet"),
  11268. default: true
  11269. },
  11270. ]
  11271. ))
  11272. characterMakers.push(() => makeCharacter(
  11273. { name: "Axel Lycan", species: ["cat", "wolf"], tags: ["anthro"] },
  11274. {
  11275. catFront: {
  11276. height: math.unit(6, "feet"),
  11277. weight: math.unit(120, "lb"),
  11278. name: "Front (Cat Side)",
  11279. image: {
  11280. source: "./media/characters/axel-lycan/cat-front.svg",
  11281. extra: 430 / 402,
  11282. bottom: 43 / 472.35
  11283. }
  11284. },
  11285. catBack: {
  11286. height: math.unit(6, "feet"),
  11287. weight: math.unit(120, "lb"),
  11288. name: "Back (Cat Side)",
  11289. image: {
  11290. source: "./media/characters/axel-lycan/cat-back.svg",
  11291. extra: 447 / 419,
  11292. bottom: 23.3 / 469
  11293. }
  11294. },
  11295. wolfFront: {
  11296. height: math.unit(6, "feet"),
  11297. weight: math.unit(120, "lb"),
  11298. name: "Front (Wolf Side)",
  11299. image: {
  11300. source: "./media/characters/axel-lycan/wolf-front.svg",
  11301. extra: 485 / 456,
  11302. bottom: 19 / 504
  11303. }
  11304. },
  11305. wolfBack: {
  11306. height: math.unit(6, "feet"),
  11307. weight: math.unit(120, "lb"),
  11308. name: "Back (Wolf Side)",
  11309. image: {
  11310. source: "./media/characters/axel-lycan/wolf-back.svg",
  11311. extra: 475 / 438,
  11312. bottom: 39.2 / 514
  11313. }
  11314. },
  11315. },
  11316. [
  11317. {
  11318. name: "Macro",
  11319. height: math.unit(1, "km"),
  11320. default: true
  11321. },
  11322. ]
  11323. ))
  11324. characterMakers.push(() => makeCharacter(
  11325. { name: "Vanrel (Hyena)", species: ["hyena"], tags: ["anthro"] },
  11326. {
  11327. front: {
  11328. height: math.unit(5 + 9 / 12, "feet"),
  11329. weight: math.unit(175, "lb"),
  11330. name: "Front",
  11331. image: {
  11332. source: "./media/characters/vanrel-hyena/front.svg",
  11333. extra: 1086 / 1010,
  11334. bottom: 0.04
  11335. }
  11336. },
  11337. },
  11338. [
  11339. {
  11340. name: "Normal",
  11341. height: math.unit(5 + 9 / 12, "feet"),
  11342. default: true
  11343. },
  11344. ]
  11345. ))
  11346. characterMakers.push(() => makeCharacter(
  11347. { name: "Abbott Absol", species: ["absol"], tags: ["anthro"] },
  11348. {
  11349. front: {
  11350. height: math.unit(6, "feet"),
  11351. weight: math.unit(103, "lb"),
  11352. name: "Front",
  11353. image: {
  11354. source: "./media/characters/abbott-absol/front.svg",
  11355. extra: 765/694,
  11356. bottom: 47/812
  11357. }
  11358. },
  11359. },
  11360. [
  11361. {
  11362. name: "Megamicro",
  11363. height: math.unit(0.1, "mm")
  11364. },
  11365. {
  11366. name: "Micro",
  11367. height: math.unit(1, "inch")
  11368. },
  11369. {
  11370. name: "Normal",
  11371. height: math.unit(6, "feet"),
  11372. default: true
  11373. },
  11374. ]
  11375. ))
  11376. characterMakers.push(() => makeCharacter(
  11377. { name: "Hector", species: ["werewolf"], tags: ["anthro"] },
  11378. {
  11379. front: {
  11380. height: math.unit(6, "feet"),
  11381. weight: math.unit(264, "lb"),
  11382. name: "Front",
  11383. image: {
  11384. source: "./media/characters/hector/front.svg",
  11385. extra: 2280 / 2130,
  11386. bottom: 0.07
  11387. }
  11388. },
  11389. },
  11390. [
  11391. {
  11392. name: "Normal",
  11393. height: math.unit(12.25, "foot"),
  11394. default: true
  11395. },
  11396. {
  11397. name: "Macro",
  11398. height: math.unit(160, "feet")
  11399. },
  11400. ]
  11401. ))
  11402. characterMakers.push(() => makeCharacter(
  11403. { name: "Sal", species: ["deer"], tags: ["anthro"] },
  11404. {
  11405. front: {
  11406. height: math.unit(6, "feet"),
  11407. weight: math.unit(150, "lb"),
  11408. name: "Front",
  11409. image: {
  11410. source: "./media/characters/sal/front.svg",
  11411. extra: 1846 / 1699,
  11412. bottom: 0.04
  11413. }
  11414. },
  11415. },
  11416. [
  11417. {
  11418. name: "Megamacro",
  11419. height: math.unit(10, "miles"),
  11420. default: true
  11421. },
  11422. ]
  11423. ))
  11424. characterMakers.push(() => makeCharacter(
  11425. { name: "Ranger", species: ["dragon"], tags: ["feral"] },
  11426. {
  11427. front: {
  11428. height: math.unit(3, "meters"),
  11429. weight: math.unit(450, "kg"),
  11430. name: "front",
  11431. image: {
  11432. source: "./media/characters/ranger/front.svg",
  11433. extra: 2401 / 2243,
  11434. bottom: 0.05
  11435. }
  11436. },
  11437. },
  11438. [
  11439. {
  11440. name: "Normal",
  11441. height: math.unit(3, "meters"),
  11442. default: true
  11443. },
  11444. ]
  11445. ))
  11446. characterMakers.push(() => makeCharacter(
  11447. { name: "Theresa", species: ["sergal"], tags: ["anthro"] },
  11448. {
  11449. front: {
  11450. height: math.unit(14, "feet"),
  11451. weight: math.unit(800, "kg"),
  11452. name: "Front",
  11453. image: {
  11454. source: "./media/characters/theresa/front.svg",
  11455. extra: 3575 / 3346,
  11456. bottom: 0.03
  11457. }
  11458. },
  11459. },
  11460. [
  11461. {
  11462. name: "Normal",
  11463. height: math.unit(14, "feet"),
  11464. default: true
  11465. },
  11466. ]
  11467. ))
  11468. characterMakers.push(() => makeCharacter(
  11469. { name: "Ine", species: ["wolver"], tags: ["feral"] },
  11470. {
  11471. front: {
  11472. height: math.unit(6, "feet"),
  11473. weight: math.unit(3, "kg"),
  11474. name: "Front",
  11475. image: {
  11476. source: "./media/characters/ine/front.svg",
  11477. extra: 678 / 539,
  11478. bottom: 0.023
  11479. }
  11480. },
  11481. },
  11482. [
  11483. {
  11484. name: "Normal",
  11485. height: math.unit(2.265, "feet"),
  11486. default: true
  11487. },
  11488. ]
  11489. ))
  11490. characterMakers.push(() => makeCharacter(
  11491. { name: "Vial", species: ["crux"], tags: ["anthro"] },
  11492. {
  11493. front: {
  11494. height: math.unit(5, "feet"),
  11495. weight: math.unit(30, "kg"),
  11496. name: "Front",
  11497. image: {
  11498. source: "./media/characters/vial/front.svg",
  11499. extra: 1365 / 1277,
  11500. bottom: 0.04
  11501. }
  11502. },
  11503. },
  11504. [
  11505. {
  11506. name: "Normal",
  11507. height: math.unit(5, "feet"),
  11508. default: true
  11509. },
  11510. ]
  11511. ))
  11512. characterMakers.push(() => makeCharacter(
  11513. { name: "Rovoska", species: ["gryphon"], tags: ["feral"] },
  11514. {
  11515. side: {
  11516. height: math.unit(3.4, "meters"),
  11517. weight: math.unit(1000, "lb"),
  11518. name: "Side",
  11519. image: {
  11520. source: "./media/characters/rovoska/side.svg",
  11521. extra: 4403 / 1515
  11522. }
  11523. },
  11524. },
  11525. [
  11526. {
  11527. name: "Normal",
  11528. height: math.unit(3.4, "meters"),
  11529. default: true
  11530. },
  11531. ]
  11532. ))
  11533. characterMakers.push(() => makeCharacter(
  11534. { name: "Gunner Rotthbauer", species: ["rottweiler"], tags: ["anthro"] },
  11535. {
  11536. front: {
  11537. height: math.unit(8, "feet"),
  11538. weight: math.unit(315, "lb"),
  11539. name: "Front",
  11540. image: {
  11541. source: "./media/characters/gunner-rotthbauer/front.svg"
  11542. }
  11543. },
  11544. back: {
  11545. height: math.unit(8, "feet"),
  11546. weight: math.unit(315, "lb"),
  11547. name: "Back",
  11548. image: {
  11549. source: "./media/characters/gunner-rotthbauer/back.svg"
  11550. }
  11551. },
  11552. },
  11553. [
  11554. {
  11555. name: "Micro",
  11556. height: math.unit(3.5, "inches")
  11557. },
  11558. {
  11559. name: "Normal",
  11560. height: math.unit(8, "feet"),
  11561. default: true
  11562. },
  11563. {
  11564. name: "Macro",
  11565. height: math.unit(250, "feet")
  11566. },
  11567. {
  11568. name: "Megamacro",
  11569. height: math.unit(1, "AU")
  11570. },
  11571. ]
  11572. ))
  11573. characterMakers.push(() => makeCharacter(
  11574. { name: "Allatia", species: ["tiger"], tags: ["anthro"] },
  11575. {
  11576. front: {
  11577. height: math.unit(5 + 5 / 12, "feet"),
  11578. weight: math.unit(140, "lb"),
  11579. name: "Front",
  11580. image: {
  11581. source: "./media/characters/allatia/front.svg",
  11582. extra: 1227 / 1180,
  11583. bottom: 0.027
  11584. }
  11585. },
  11586. },
  11587. [
  11588. {
  11589. name: "Normal",
  11590. height: math.unit(5 + 5 / 12, "feet")
  11591. },
  11592. {
  11593. name: "Macro",
  11594. height: math.unit(250, "feet"),
  11595. default: true
  11596. },
  11597. {
  11598. name: "Megamacro",
  11599. height: math.unit(8, "miles")
  11600. }
  11601. ]
  11602. ))
  11603. characterMakers.push(() => makeCharacter(
  11604. { name: "Tene", species: ["dragon", "fox"], tags: ["anthro"] },
  11605. {
  11606. front: {
  11607. height: math.unit(6, "feet"),
  11608. weight: math.unit(120, "lb"),
  11609. name: "Front",
  11610. image: {
  11611. source: "./media/characters/tene/front.svg",
  11612. extra: 814/750,
  11613. bottom: 36/850
  11614. }
  11615. },
  11616. stomping: {
  11617. height: math.unit(2.025, "meters"),
  11618. weight: math.unit(120, "lb"),
  11619. name: "Stomping",
  11620. image: {
  11621. source: "./media/characters/tene/stomping.svg",
  11622. extra: 885/821,
  11623. bottom: 15/900
  11624. }
  11625. },
  11626. sitting: {
  11627. height: math.unit(1, "meter"),
  11628. weight: math.unit(120, "lb"),
  11629. name: "Sitting",
  11630. image: {
  11631. source: "./media/characters/tene/sitting.svg",
  11632. extra: 396/366,
  11633. bottom: 79/475
  11634. }
  11635. },
  11636. smiling: {
  11637. height: math.unit(1.2, "feet"),
  11638. name: "Smiling",
  11639. image: {
  11640. source: "./media/characters/tene/smiling.svg",
  11641. extra: 1364/1071,
  11642. bottom: 0/1364
  11643. }
  11644. },
  11645. smug: {
  11646. height: math.unit(1.3, "feet"),
  11647. name: "Smug",
  11648. image: {
  11649. source: "./media/characters/tene/smug.svg",
  11650. extra: 1323/1082,
  11651. bottom: 0/1323
  11652. }
  11653. },
  11654. feral: {
  11655. height: math.unit(3.9, "feet"),
  11656. weight: math.unit(250, "lb"),
  11657. name: "Feral",
  11658. image: {
  11659. source: "./media/characters/tene/feral.svg",
  11660. extra: 717 / 458,
  11661. bottom: 0.179
  11662. }
  11663. },
  11664. },
  11665. [
  11666. {
  11667. name: "Normal",
  11668. height: math.unit(6, "feet")
  11669. },
  11670. {
  11671. name: "Macro",
  11672. height: math.unit(300, "feet"),
  11673. default: true
  11674. },
  11675. {
  11676. name: "Megamacro",
  11677. height: math.unit(5, "miles")
  11678. },
  11679. ]
  11680. ))
  11681. characterMakers.push(() => makeCharacter(
  11682. { name: "Evander", species: ["gryphon"], tags: ["feral"] },
  11683. {
  11684. side: {
  11685. height: math.unit(6, "feet"),
  11686. name: "Side",
  11687. image: {
  11688. source: "./media/characters/evander/side.svg",
  11689. extra: 877 / 477
  11690. }
  11691. },
  11692. },
  11693. [
  11694. {
  11695. name: "Normal",
  11696. height: math.unit(0.83, "meters"),
  11697. default: true
  11698. },
  11699. ]
  11700. ))
  11701. characterMakers.push(() => makeCharacter(
  11702. { name: "Ka'Tamra \"Spaz\" Ci'Karan", species: ["dragon"], tags: ["anthro"] },
  11703. {
  11704. front: {
  11705. height: math.unit(12, "feet"),
  11706. weight: math.unit(1000, "lb"),
  11707. name: "Front",
  11708. image: {
  11709. source: "./media/characters/ka'tamra-spaz-ci'karan/front.svg",
  11710. extra: 1762 / 1611
  11711. }
  11712. },
  11713. back: {
  11714. height: math.unit(12, "feet"),
  11715. weight: math.unit(1000, "lb"),
  11716. name: "Back",
  11717. image: {
  11718. source: "./media/characters/ka'tamra-spaz-ci'karan/back.svg",
  11719. extra: 1762 / 1611
  11720. }
  11721. },
  11722. },
  11723. [
  11724. {
  11725. name: "Normal",
  11726. height: math.unit(12, "feet"),
  11727. default: true
  11728. },
  11729. {
  11730. name: "Kaiju",
  11731. height: math.unit(150, "feet")
  11732. },
  11733. ]
  11734. ))
  11735. characterMakers.push(() => makeCharacter(
  11736. { name: "Zero Alurus", species: ["zebra"], tags: ["anthro"] },
  11737. {
  11738. front: {
  11739. height: math.unit(5 + 11/12, "feet"),
  11740. weight: math.unit(180, "lb"),
  11741. name: "Front",
  11742. image: {
  11743. source: "./media/characters/zero-alurus/front.svg",
  11744. extra: 1032/957,
  11745. bottom: 10/1042
  11746. }
  11747. },
  11748. back: {
  11749. height: math.unit(5 + 11/12, "feet"),
  11750. weight: math.unit(180, "lb"),
  11751. name: "Back",
  11752. image: {
  11753. source: "./media/characters/zero-alurus/back.svg",
  11754. extra: 1027/950,
  11755. bottom: 12/1039
  11756. }
  11757. },
  11758. },
  11759. [
  11760. {
  11761. name: "Normal",
  11762. height: math.unit(5 + 11 / 12, "feet")
  11763. },
  11764. {
  11765. name: "Mini-Macro",
  11766. height: math.unit(25, "feet")
  11767. },
  11768. {
  11769. name: "Macro",
  11770. height: math.unit(90, "feet"),
  11771. default: true
  11772. },
  11773. {
  11774. name: "Macro+",
  11775. height: math.unit(500, "feet")
  11776. },
  11777. {
  11778. name: "Megamacro",
  11779. height: math.unit(1200, "feet")
  11780. },
  11781. ]
  11782. ))
  11783. characterMakers.push(() => makeCharacter(
  11784. { name: "Mega Shi", species: ["yoshi"], tags: ["anthro"] },
  11785. {
  11786. front: {
  11787. height: math.unit(6, "feet"),
  11788. weight: math.unit(200, "lb"),
  11789. name: "Front",
  11790. image: {
  11791. source: "./media/characters/mega-shi/front.svg",
  11792. extra: 1279 / 1250,
  11793. bottom: 0.02
  11794. }
  11795. },
  11796. back: {
  11797. height: math.unit(6, "feet"),
  11798. weight: math.unit(200, "lb"),
  11799. name: "Back",
  11800. image: {
  11801. source: "./media/characters/mega-shi/back.svg",
  11802. extra: 1279 / 1250,
  11803. bottom: 0.02
  11804. }
  11805. },
  11806. },
  11807. [
  11808. {
  11809. name: "Micro",
  11810. height: math.unit(16 + 6 / 12, "feet")
  11811. },
  11812. {
  11813. name: "Third Dimension",
  11814. height: math.unit(40, "meters")
  11815. },
  11816. {
  11817. name: "Normal",
  11818. height: math.unit(660, "feet"),
  11819. default: true
  11820. },
  11821. {
  11822. name: "Megamacro",
  11823. height: math.unit(10, "miles")
  11824. },
  11825. {
  11826. name: "Planetary Launch",
  11827. height: math.unit(500, "miles")
  11828. },
  11829. {
  11830. name: "Interstellar",
  11831. height: math.unit(1e9, "miles")
  11832. },
  11833. {
  11834. name: "Leaving the Universe",
  11835. height: math.unit(1, "gigaparsec")
  11836. },
  11837. {
  11838. name: "Travelling Universes",
  11839. height: math.unit(30e15, "parsecs")
  11840. },
  11841. ]
  11842. ))
  11843. characterMakers.push(() => makeCharacter(
  11844. { name: "Odyssey", species: ["lynx"], tags: ["anthro"] },
  11845. {
  11846. front: {
  11847. height: math.unit(5 + 4/12, "feet"),
  11848. weight: math.unit(120, "lb"),
  11849. name: "Front",
  11850. image: {
  11851. source: "./media/characters/odyssey/front.svg",
  11852. extra: 1747/1571,
  11853. bottom: 47/1794
  11854. }
  11855. },
  11856. side: {
  11857. height: math.unit(5.1, "feet"),
  11858. weight: math.unit(120, "lb"),
  11859. name: "Side",
  11860. image: {
  11861. source: "./media/characters/odyssey/side.svg",
  11862. extra: 1847/1619,
  11863. bottom: 47/1894
  11864. }
  11865. },
  11866. lounging: {
  11867. height: math.unit(1.464, "feet"),
  11868. weight: math.unit(120, "lb"),
  11869. name: "Lounging",
  11870. image: {
  11871. source: "./media/characters/odyssey/lounging.svg",
  11872. extra: 1235/837,
  11873. bottom: 551/1786
  11874. }
  11875. },
  11876. },
  11877. [
  11878. {
  11879. name: "Normal",
  11880. height: math.unit(5 + 4 / 12, "feet")
  11881. },
  11882. {
  11883. name: "Macro",
  11884. height: math.unit(1, "km")
  11885. },
  11886. {
  11887. name: "Megamacro",
  11888. height: math.unit(3000, "km")
  11889. },
  11890. {
  11891. name: "Gigamacro",
  11892. height: math.unit(1, "AU"),
  11893. default: true
  11894. },
  11895. {
  11896. name: "Omniversal",
  11897. height: math.unit(100e14, "lightyears")
  11898. },
  11899. ]
  11900. ))
  11901. characterMakers.push(() => makeCharacter(
  11902. { name: "Mekuto", species: ["red-panda", "kitsune"], tags: ["anthro"] },
  11903. {
  11904. front: {
  11905. height: math.unit(5 + 10/12, "feet"),
  11906. name: "Front",
  11907. image: {
  11908. source: "./media/characters/mekuto/front.svg",
  11909. extra: 875/835,
  11910. bottom: 46/921
  11911. }
  11912. },
  11913. },
  11914. [
  11915. {
  11916. name: "Minimicro",
  11917. height: math.unit(0.2, "inches")
  11918. },
  11919. {
  11920. name: "Micro",
  11921. height: math.unit(1.5, "inches")
  11922. },
  11923. {
  11924. name: "Normal",
  11925. height: math.unit(5 + 10 / 12, "feet"),
  11926. default: true
  11927. },
  11928. {
  11929. name: "Minimacro",
  11930. height: math.unit(17 + 9 / 12, "feet")
  11931. },
  11932. {
  11933. name: "Macro",
  11934. height: math.unit(177.5, "feet")
  11935. },
  11936. {
  11937. name: "Megamacro",
  11938. height: math.unit(152, "miles")
  11939. },
  11940. ]
  11941. ))
  11942. characterMakers.push(() => makeCharacter(
  11943. { name: "Dafydd Tomos", species: ["mikromare"], tags: ["anthro"] },
  11944. {
  11945. front: {
  11946. height: math.unit(6.5, "inches"),
  11947. weight: math.unit(13, "oz"),
  11948. name: "Front",
  11949. image: {
  11950. source: "./media/characters/dafydd-tomos/front.svg",
  11951. extra: 2990 / 2603,
  11952. bottom: 0.03
  11953. }
  11954. },
  11955. },
  11956. [
  11957. {
  11958. name: "Micro",
  11959. height: math.unit(6.5, "inches"),
  11960. default: true
  11961. },
  11962. ]
  11963. ))
  11964. characterMakers.push(() => makeCharacter(
  11965. { name: "Splinter", species: ["thylacine"], tags: ["anthro"] },
  11966. {
  11967. front: {
  11968. height: math.unit(6, "feet"),
  11969. weight: math.unit(150, "lb"),
  11970. name: "Front",
  11971. image: {
  11972. source: "./media/characters/splinter/front.svg",
  11973. extra: 2990 / 2882,
  11974. bottom: 0.04
  11975. }
  11976. },
  11977. back: {
  11978. height: math.unit(6, "feet"),
  11979. weight: math.unit(150, "lb"),
  11980. name: "Back",
  11981. image: {
  11982. source: "./media/characters/splinter/back.svg",
  11983. extra: 2990 / 2882,
  11984. bottom: 0.04
  11985. }
  11986. },
  11987. },
  11988. [
  11989. {
  11990. name: "Normal",
  11991. height: math.unit(6, "feet")
  11992. },
  11993. {
  11994. name: "Macro",
  11995. height: math.unit(230, "meters"),
  11996. default: true
  11997. },
  11998. ]
  11999. ))
  12000. characterMakers.push(() => makeCharacter(
  12001. { name: "SnowGabumon", species: ["gabumon"], tags: ["anthro"] },
  12002. {
  12003. front: {
  12004. height: math.unit(4 + 10 / 12, "feet"),
  12005. weight: math.unit(480, "lb"),
  12006. name: "Front",
  12007. image: {
  12008. source: "./media/characters/snow-gabumon/front.svg",
  12009. extra: 1140 / 963,
  12010. bottom: 0.058
  12011. }
  12012. },
  12013. back: {
  12014. height: math.unit(4 + 10 / 12, "feet"),
  12015. weight: math.unit(480, "lb"),
  12016. name: "Back",
  12017. image: {
  12018. source: "./media/characters/snow-gabumon/back.svg",
  12019. extra: 1115 / 962,
  12020. bottom: 0.041
  12021. }
  12022. },
  12023. frontUndresed: {
  12024. height: math.unit(4 + 10 / 12, "feet"),
  12025. weight: math.unit(480, "lb"),
  12026. name: "Front (Undressed)",
  12027. image: {
  12028. source: "./media/characters/snow-gabumon/front-undressed.svg",
  12029. extra: 1061 / 960,
  12030. bottom: 0.045
  12031. }
  12032. },
  12033. },
  12034. [
  12035. {
  12036. name: "Micro",
  12037. height: math.unit(1, "inch")
  12038. },
  12039. {
  12040. name: "Normal",
  12041. height: math.unit(4 + 10 / 12, "feet"),
  12042. default: true
  12043. },
  12044. {
  12045. name: "Macro",
  12046. height: math.unit(200, "feet")
  12047. },
  12048. {
  12049. name: "Megamacro",
  12050. height: math.unit(120, "miles")
  12051. },
  12052. {
  12053. name: "Gigamacro",
  12054. height: math.unit(9800, "miles")
  12055. },
  12056. ]
  12057. ))
  12058. characterMakers.push(() => makeCharacter(
  12059. { name: "Moody", species: ["dog"], tags: ["anthro"] },
  12060. {
  12061. front: {
  12062. height: math.unit(1.7, "meters"),
  12063. weight: math.unit(140, "lb"),
  12064. name: "Front",
  12065. image: {
  12066. source: "./media/characters/moody/front.svg",
  12067. extra: 3226 / 3007,
  12068. bottom: 0.087
  12069. }
  12070. },
  12071. },
  12072. [
  12073. {
  12074. name: "Micro",
  12075. height: math.unit(1, "mm")
  12076. },
  12077. {
  12078. name: "Normal",
  12079. height: math.unit(1.7, "meters"),
  12080. default: true
  12081. },
  12082. {
  12083. name: "Macro",
  12084. height: math.unit(80, "meters")
  12085. },
  12086. {
  12087. name: "Macro+",
  12088. height: math.unit(500, "meters")
  12089. },
  12090. ]
  12091. ))
  12092. characterMakers.push(() => makeCharacter(
  12093. { name: "Zyas", species: ["lion", "tiger"], tags: ["anthro"] },
  12094. {
  12095. front: {
  12096. height: math.unit(6, "feet"),
  12097. weight: math.unit(150, "lb"),
  12098. name: "Front",
  12099. image: {
  12100. source: "./media/characters/zyas/front.svg",
  12101. extra: 1180 / 1120,
  12102. bottom: 0.045
  12103. }
  12104. },
  12105. },
  12106. [
  12107. {
  12108. name: "Normal",
  12109. height: math.unit(10, "feet"),
  12110. default: true
  12111. },
  12112. {
  12113. name: "Macro",
  12114. height: math.unit(500, "feet")
  12115. },
  12116. {
  12117. name: "Megamacro",
  12118. height: math.unit(5, "miles")
  12119. },
  12120. {
  12121. name: "Teramacro",
  12122. height: math.unit(150000, "miles")
  12123. },
  12124. ]
  12125. ))
  12126. characterMakers.push(() => makeCharacter(
  12127. { name: "Cuon", species: ["border-collie"], tags: ["anthro"] },
  12128. {
  12129. front: {
  12130. height: math.unit(6, "feet"),
  12131. weight: math.unit(150, "lb"),
  12132. name: "Front",
  12133. image: {
  12134. source: "./media/characters/cuon/front.svg",
  12135. extra: 1390 / 1320,
  12136. bottom: 0.008
  12137. }
  12138. },
  12139. },
  12140. [
  12141. {
  12142. name: "Micro",
  12143. height: math.unit(3, "inches")
  12144. },
  12145. {
  12146. name: "Normal",
  12147. height: math.unit(18 + 9 / 12, "feet"),
  12148. default: true
  12149. },
  12150. {
  12151. name: "Macro",
  12152. height: math.unit(360, "feet")
  12153. },
  12154. {
  12155. name: "Megamacro",
  12156. height: math.unit(360, "miles")
  12157. },
  12158. ]
  12159. ))
  12160. characterMakers.push(() => makeCharacter(
  12161. { name: "Nyanuxk", species: ["dragon"], tags: ["anthro"] },
  12162. {
  12163. front: {
  12164. height: math.unit(2.4, "meters"),
  12165. weight: math.unit(70, "kg"),
  12166. name: "Front",
  12167. image: {
  12168. source: "./media/characters/nyanuxk/front.svg",
  12169. extra: 1172 / 1084,
  12170. bottom: 0.065
  12171. }
  12172. },
  12173. side: {
  12174. height: math.unit(2.4, "meters"),
  12175. weight: math.unit(70, "kg"),
  12176. name: "Side",
  12177. image: {
  12178. source: "./media/characters/nyanuxk/side.svg",
  12179. extra: 1190 / 1132,
  12180. bottom: 0.007
  12181. }
  12182. },
  12183. back: {
  12184. height: math.unit(2.4, "meters"),
  12185. weight: math.unit(70, "kg"),
  12186. name: "Back",
  12187. image: {
  12188. source: "./media/characters/nyanuxk/back.svg",
  12189. extra: 1200 / 1141,
  12190. bottom: 0.015
  12191. }
  12192. },
  12193. foot: {
  12194. height: math.unit(0.52, "meters"),
  12195. name: "Foot",
  12196. image: {
  12197. source: "./media/characters/nyanuxk/foot.svg"
  12198. }
  12199. },
  12200. },
  12201. [
  12202. {
  12203. name: "Micro",
  12204. height: math.unit(2, "cm")
  12205. },
  12206. {
  12207. name: "Normal",
  12208. height: math.unit(2.4, "meters"),
  12209. default: true
  12210. },
  12211. {
  12212. name: "Smaller Macro",
  12213. height: math.unit(120, "meters")
  12214. },
  12215. {
  12216. name: "Bigger Macro",
  12217. height: math.unit(1.2, "km")
  12218. },
  12219. {
  12220. name: "Megamacro",
  12221. height: math.unit(15, "kilometers")
  12222. },
  12223. {
  12224. name: "Gigamacro",
  12225. height: math.unit(2000, "km")
  12226. },
  12227. {
  12228. name: "Teramacro",
  12229. height: math.unit(500000, "km")
  12230. },
  12231. ]
  12232. ))
  12233. characterMakers.push(() => makeCharacter(
  12234. { name: "Ailbhe", species: ["gryphon"], tags: ["feral"] },
  12235. {
  12236. side: {
  12237. height: math.unit(6, "feet"),
  12238. name: "Side",
  12239. image: {
  12240. source: "./media/characters/ailbhe/side.svg",
  12241. extra: 757 / 464,
  12242. bottom: 0.041
  12243. }
  12244. },
  12245. },
  12246. [
  12247. {
  12248. name: "Normal",
  12249. height: math.unit(1.07, "meters"),
  12250. default: true
  12251. },
  12252. ]
  12253. ))
  12254. characterMakers.push(() => makeCharacter(
  12255. { name: "Zevulfius", species: ["werewolf"], tags: ["anthro"] },
  12256. {
  12257. front: {
  12258. height: math.unit(6, "feet"),
  12259. weight: math.unit(120, "kg"),
  12260. name: "Front",
  12261. image: {
  12262. source: "./media/characters/zevulfius/front.svg",
  12263. extra: 965 / 903
  12264. }
  12265. },
  12266. side: {
  12267. height: math.unit(6, "feet"),
  12268. weight: math.unit(120, "kg"),
  12269. name: "Side",
  12270. image: {
  12271. source: "./media/characters/zevulfius/side.svg",
  12272. extra: 939 / 900
  12273. }
  12274. },
  12275. back: {
  12276. height: math.unit(6, "feet"),
  12277. weight: math.unit(120, "kg"),
  12278. name: "Back",
  12279. image: {
  12280. source: "./media/characters/zevulfius/back.svg",
  12281. extra: 918 / 854,
  12282. bottom: 0.005
  12283. }
  12284. },
  12285. foot: {
  12286. height: math.unit(6 / 3.72, "feet"),
  12287. name: "Foot",
  12288. image: {
  12289. source: "./media/characters/zevulfius/foot.svg"
  12290. }
  12291. },
  12292. },
  12293. [
  12294. {
  12295. name: "Macro",
  12296. height: math.unit(750, "meters")
  12297. },
  12298. {
  12299. name: "Megamacro",
  12300. height: math.unit(20, "km"),
  12301. default: true
  12302. },
  12303. {
  12304. name: "Gigamacro",
  12305. height: math.unit(2000, "km")
  12306. },
  12307. {
  12308. name: "Teramacro",
  12309. height: math.unit(250000, "km")
  12310. },
  12311. ]
  12312. ))
  12313. characterMakers.push(() => makeCharacter(
  12314. { name: "Rikes", species: ["german-shepherd"], tags: ["anthro"] },
  12315. {
  12316. front: {
  12317. height: math.unit(100, "feet"),
  12318. weight: math.unit(350, "kg"),
  12319. name: "Front",
  12320. image: {
  12321. source: "./media/characters/rikes/front.svg",
  12322. extra: 1565 / 1483,
  12323. bottom: 0.017
  12324. }
  12325. },
  12326. },
  12327. [
  12328. {
  12329. name: "Macro",
  12330. height: math.unit(100, "feet"),
  12331. default: true
  12332. },
  12333. ]
  12334. ))
  12335. characterMakers.push(() => makeCharacter(
  12336. { name: "Adam Silver-Mane", species: ["horse"], tags: ["anthro"] },
  12337. {
  12338. front: {
  12339. height: math.unit(8, "feet"),
  12340. weight: math.unit(356, "lb"),
  12341. name: "Front",
  12342. image: {
  12343. source: "./media/characters/adam-silver-mane/front.svg",
  12344. extra: 1036/937,
  12345. bottom: 63/1099
  12346. }
  12347. },
  12348. side: {
  12349. height: math.unit(8, "feet"),
  12350. weight: math.unit(356, "lb"),
  12351. name: "Side",
  12352. image: {
  12353. source: "./media/characters/adam-silver-mane/side.svg",
  12354. extra: 997/901,
  12355. bottom: 59/1056
  12356. }
  12357. },
  12358. frontNsfw: {
  12359. height: math.unit(8, "feet"),
  12360. weight: math.unit(356, "lb"),
  12361. name: "Front (NSFW)",
  12362. image: {
  12363. source: "./media/characters/adam-silver-mane/front-nsfw.svg",
  12364. extra: 1036/937,
  12365. bottom: 63/1099
  12366. }
  12367. },
  12368. sideNsfw: {
  12369. height: math.unit(8, "feet"),
  12370. weight: math.unit(356, "lb"),
  12371. name: "Side (NSFW)",
  12372. image: {
  12373. source: "./media/characters/adam-silver-mane/side-nsfw.svg",
  12374. extra: 997/901,
  12375. bottom: 59/1056
  12376. }
  12377. },
  12378. dick: {
  12379. height: math.unit(2.1, "feet"),
  12380. name: "Dick",
  12381. image: {
  12382. source: "./media/characters/adam-silver-mane/dick.svg"
  12383. }
  12384. },
  12385. taur: {
  12386. height: math.unit(16, "feet"),
  12387. weight: math.unit(1500, "kg"),
  12388. name: "Taur",
  12389. image: {
  12390. source: "./media/characters/adam-silver-mane/taur.svg",
  12391. extra: 1713 / 1571,
  12392. bottom: 0.01
  12393. }
  12394. },
  12395. },
  12396. [
  12397. {
  12398. name: "Normal",
  12399. height: math.unit(8, "feet")
  12400. },
  12401. {
  12402. name: "Minimacro",
  12403. height: math.unit(80, "feet")
  12404. },
  12405. {
  12406. name: "MDA",
  12407. height: math.unit(80, "meters")
  12408. },
  12409. {
  12410. name: "Macro",
  12411. height: math.unit(800, "feet"),
  12412. default: true
  12413. },
  12414. {
  12415. name: "Megamacro",
  12416. height: math.unit(8000, "feet")
  12417. },
  12418. {
  12419. name: "Gigamacro",
  12420. height: math.unit(800, "miles")
  12421. },
  12422. {
  12423. name: "Teramacro",
  12424. height: math.unit(80000, "miles")
  12425. },
  12426. {
  12427. name: "Celestial",
  12428. height: math.unit(8e6, "miles")
  12429. },
  12430. {
  12431. name: "Star Dragon",
  12432. height: math.unit(800000, "parsecs")
  12433. },
  12434. {
  12435. name: "Godly",
  12436. height: math.unit(800, "teraparsecs")
  12437. },
  12438. ]
  12439. ))
  12440. characterMakers.push(() => makeCharacter(
  12441. { name: "Ky'owin", species: ["dragon", "cat"], tags: ["anthro"] },
  12442. {
  12443. front: {
  12444. height: math.unit(6, "feet"),
  12445. weight: math.unit(150, "lb"),
  12446. name: "Front",
  12447. image: {
  12448. source: "./media/characters/ky'owin/front.svg",
  12449. extra: 3862/3053,
  12450. bottom: 74/3936
  12451. }
  12452. },
  12453. },
  12454. [
  12455. {
  12456. name: "Normal",
  12457. height: math.unit(6 + 8 / 12, "feet")
  12458. },
  12459. {
  12460. name: "Large",
  12461. height: math.unit(68, "feet")
  12462. },
  12463. {
  12464. name: "Macro",
  12465. height: math.unit(132, "feet")
  12466. },
  12467. {
  12468. name: "Macro+",
  12469. height: math.unit(340, "feet")
  12470. },
  12471. {
  12472. name: "Macro++",
  12473. height: math.unit(680, "feet"),
  12474. default: true
  12475. },
  12476. {
  12477. name: "Megamacro",
  12478. height: math.unit(1, "mile")
  12479. },
  12480. {
  12481. name: "Megamacro+",
  12482. height: math.unit(10, "miles")
  12483. },
  12484. ]
  12485. ))
  12486. characterMakers.push(() => makeCharacter(
  12487. { name: "Mal", species: ["imp"], tags: ["anthro"] },
  12488. {
  12489. front: {
  12490. height: math.unit(4, "feet"),
  12491. weight: math.unit(50, "lb"),
  12492. name: "Front",
  12493. image: {
  12494. source: "./media/characters/mal/front.svg",
  12495. extra: 785 / 724,
  12496. bottom: 0.07
  12497. }
  12498. },
  12499. },
  12500. [
  12501. {
  12502. name: "Micro",
  12503. height: math.unit(4, "inches")
  12504. },
  12505. {
  12506. name: "Normal",
  12507. height: math.unit(4, "feet"),
  12508. default: true
  12509. },
  12510. {
  12511. name: "Macro",
  12512. height: math.unit(200, "feet")
  12513. },
  12514. ]
  12515. ))
  12516. characterMakers.push(() => makeCharacter(
  12517. { name: "Jordan Deware", species: ["otter"], tags: ["anthro"] },
  12518. {
  12519. front: {
  12520. height: math.unit(6, "feet"),
  12521. weight: math.unit(150, "lb"),
  12522. name: "Front",
  12523. image: {
  12524. source: "./media/characters/jordan-deware/front.svg",
  12525. extra: 1191 / 1012
  12526. }
  12527. },
  12528. },
  12529. [
  12530. {
  12531. name: "Nano",
  12532. height: math.unit(0.01, "mm")
  12533. },
  12534. {
  12535. name: "Minimicro",
  12536. height: math.unit(1, "mm")
  12537. },
  12538. {
  12539. name: "Micro",
  12540. height: math.unit(0.5, "inches")
  12541. },
  12542. {
  12543. name: "Normal",
  12544. height: math.unit(4, "feet"),
  12545. default: true
  12546. },
  12547. {
  12548. name: "Minimacro",
  12549. height: math.unit(40, "meters")
  12550. },
  12551. {
  12552. name: "Small Macro",
  12553. height: math.unit(400, "meters")
  12554. },
  12555. {
  12556. name: "Macro",
  12557. height: math.unit(4, "miles")
  12558. },
  12559. {
  12560. name: "Megamacro",
  12561. height: math.unit(40, "miles")
  12562. },
  12563. {
  12564. name: "Megamacro+",
  12565. height: math.unit(400, "miles")
  12566. },
  12567. {
  12568. name: "Gigamacro",
  12569. height: math.unit(400000, "miles")
  12570. },
  12571. ]
  12572. ))
  12573. characterMakers.push(() => makeCharacter(
  12574. { name: "Kimiko", species: ["eastern-dragon"], tags: ["anthro"] },
  12575. {
  12576. front: {
  12577. height: math.unit(15, "feet"),
  12578. weight: math.unit(3000, "kg"),
  12579. preyCapacity: math.unit(450, "people"),
  12580. name: "Front",
  12581. image: {
  12582. source: "./media/characters/kimiko/front.svg",
  12583. extra: 875/832,
  12584. bottom: 36/911
  12585. },
  12586. extraAttributes: {
  12587. "pawSize": {
  12588. name: "Paw Size",
  12589. power: 1,
  12590. type: "length",
  12591. base: math.unit(0.9, "meters")
  12592. },
  12593. }
  12594. },
  12595. side: {
  12596. height: math.unit(15, "feet"),
  12597. weight: math.unit(3000, "kg"),
  12598. preyCapacity: math.unit(400, "people"),
  12599. name: "Side",
  12600. image: {
  12601. source: "./media/characters/kimiko/side.svg",
  12602. extra: 448/270,
  12603. bottom: 7/455
  12604. },
  12605. extraAttributes: {
  12606. "pawSize": {
  12607. name: "Paw Size",
  12608. power: 1,
  12609. type: "length",
  12610. base: math.unit(0.9, "meters")
  12611. },
  12612. }
  12613. },
  12614. maw: {
  12615. height: math.unit(0.81, "feet"),
  12616. name: "Maw",
  12617. image: {
  12618. source: "./media/characters/kimiko/maw.svg"
  12619. }
  12620. },
  12621. },
  12622. [
  12623. {
  12624. name: "Normal",
  12625. height: math.unit(15, "feet"),
  12626. default: true
  12627. },
  12628. {
  12629. name: "Macro",
  12630. height: math.unit(220, "feet")
  12631. },
  12632. {
  12633. name: "Macro+",
  12634. height: math.unit(1450, "feet")
  12635. },
  12636. {
  12637. name: "Megamacro",
  12638. height: math.unit(11500, "feet")
  12639. },
  12640. {
  12641. name: "Gigamacro",
  12642. height: math.unit(9500, "miles")
  12643. },
  12644. {
  12645. name: "Teramacro",
  12646. height: math.unit(2208005005, "miles")
  12647. },
  12648. {
  12649. name: "Examacro",
  12650. height: math.unit(2750, "parsecs")
  12651. },
  12652. {
  12653. name: "Zettamacro",
  12654. height: math.unit(101500, "parsecs")
  12655. },
  12656. ]
  12657. ))
  12658. characterMakers.push(() => makeCharacter(
  12659. { name: "Andrew Sleepy", species: ["human"], tags: ["anthro"] },
  12660. {
  12661. front: {
  12662. height: math.unit(6, "feet"),
  12663. weight: math.unit(70, "kg"),
  12664. name: "Front",
  12665. image: {
  12666. source: "./media/characters/andrew-sleepy/front.svg"
  12667. }
  12668. },
  12669. side: {
  12670. height: math.unit(6, "feet"),
  12671. weight: math.unit(70, "kg"),
  12672. name: "Side",
  12673. image: {
  12674. source: "./media/characters/andrew-sleepy/side.svg"
  12675. }
  12676. },
  12677. },
  12678. [
  12679. {
  12680. name: "Micro",
  12681. height: math.unit(1, "mm"),
  12682. default: true
  12683. },
  12684. ]
  12685. ))
  12686. characterMakers.push(() => makeCharacter(
  12687. { name: "Judio", species: ["rabbit"], tags: ["anthro"] },
  12688. {
  12689. front: {
  12690. height: math.unit(6, "feet"),
  12691. weight: math.unit(150, "lb"),
  12692. name: "Front",
  12693. image: {
  12694. source: "./media/characters/judio/front.svg",
  12695. extra: 1258 / 1110
  12696. }
  12697. },
  12698. },
  12699. [
  12700. {
  12701. name: "Normal",
  12702. height: math.unit(5 + 6 / 12, "feet")
  12703. },
  12704. {
  12705. name: "Macro",
  12706. height: math.unit(1000, "feet"),
  12707. default: true
  12708. },
  12709. {
  12710. name: "Megamacro",
  12711. height: math.unit(10, "miles")
  12712. },
  12713. ]
  12714. ))
  12715. characterMakers.push(() => makeCharacter(
  12716. { name: "Nomaxice", species: ["lynx", "raccoon"], tags: ["anthro"] },
  12717. {
  12718. frontDressed: {
  12719. height: math.unit(6, "feet"),
  12720. weight: math.unit(68, "kg"),
  12721. name: "Front (Dressed)",
  12722. image: {
  12723. source: "./media/characters/nomaxice/front-dressed.svg",
  12724. extra: 1137/824,
  12725. bottom: 74/1211
  12726. }
  12727. },
  12728. frontShorts: {
  12729. height: math.unit(6, "feet"),
  12730. weight: math.unit(68, "kg"),
  12731. name: "Front (Shorts)",
  12732. image: {
  12733. source: "./media/characters/nomaxice/front-shorts.svg",
  12734. extra: 1137/824,
  12735. bottom: 74/1211
  12736. }
  12737. },
  12738. back: {
  12739. height: math.unit(6, "feet"),
  12740. weight: math.unit(68, "kg"),
  12741. name: "Back",
  12742. image: {
  12743. source: "./media/characters/nomaxice/back.svg",
  12744. extra: 822/786,
  12745. bottom: 39/861
  12746. }
  12747. },
  12748. hand: {
  12749. height: math.unit(0.565, "feet"),
  12750. name: "Hand",
  12751. image: {
  12752. source: "./media/characters/nomaxice/hand.svg"
  12753. }
  12754. },
  12755. foot: {
  12756. height: math.unit(1, "feet"),
  12757. name: "Foot",
  12758. image: {
  12759. source: "./media/characters/nomaxice/foot.svg"
  12760. }
  12761. },
  12762. },
  12763. [
  12764. {
  12765. name: "Micro",
  12766. height: math.unit(8, "cm")
  12767. },
  12768. {
  12769. name: "Norm",
  12770. height: math.unit(1.82, "m")
  12771. },
  12772. {
  12773. name: "Norm+",
  12774. height: math.unit(8.8, "feet"),
  12775. default: true
  12776. },
  12777. {
  12778. name: "Big",
  12779. height: math.unit(8, "meters")
  12780. },
  12781. {
  12782. name: "Macro",
  12783. height: math.unit(18, "meters")
  12784. },
  12785. {
  12786. name: "Macro+",
  12787. height: math.unit(88, "meters")
  12788. },
  12789. ]
  12790. ))
  12791. characterMakers.push(() => makeCharacter(
  12792. { name: "Dydros", species: ["dragon"], tags: ["anthro"] },
  12793. {
  12794. front: {
  12795. height: math.unit(12, "feet"),
  12796. weight: math.unit(1.5, "tons"),
  12797. name: "Front",
  12798. image: {
  12799. source: "./media/characters/dydros/front.svg",
  12800. extra: 863 / 800,
  12801. bottom: 0.015
  12802. }
  12803. },
  12804. back: {
  12805. height: math.unit(12, "feet"),
  12806. weight: math.unit(1.5, "tons"),
  12807. name: "Back",
  12808. image: {
  12809. source: "./media/characters/dydros/back.svg",
  12810. extra: 900 / 843,
  12811. bottom: 0.005
  12812. }
  12813. },
  12814. },
  12815. [
  12816. {
  12817. name: "Normal",
  12818. height: math.unit(12, "feet"),
  12819. default: true
  12820. },
  12821. ]
  12822. ))
  12823. characterMakers.push(() => makeCharacter(
  12824. { name: "Riggi", species: ["tiger", "wolf"], tags: ["anthro"] },
  12825. {
  12826. front: {
  12827. height: math.unit(6, "feet"),
  12828. weight: math.unit(100, "kg"),
  12829. name: "Front",
  12830. image: {
  12831. source: "./media/characters/riggi/front.svg",
  12832. extra: 5787 / 5303
  12833. }
  12834. },
  12835. hyper: {
  12836. height: math.unit(6 * 5 / 3, "feet"),
  12837. weight: math.unit(400 * 5 / 3 * 5 / 3 * 5 / 3, "kg"),
  12838. name: "Hyper",
  12839. image: {
  12840. source: "./media/characters/riggi/hyper.svg",
  12841. extra: 3595 / 3485
  12842. }
  12843. },
  12844. },
  12845. [
  12846. {
  12847. name: "Small Macro",
  12848. height: math.unit(50, "feet")
  12849. },
  12850. {
  12851. name: "Default",
  12852. height: math.unit(200, "feet"),
  12853. default: true
  12854. },
  12855. {
  12856. name: "Loom",
  12857. height: math.unit(10000, "feet")
  12858. },
  12859. {
  12860. name: "Cruising Altitude",
  12861. height: math.unit(30000, "feet")
  12862. },
  12863. {
  12864. name: "Megamacro",
  12865. height: math.unit(100, "miles")
  12866. },
  12867. {
  12868. name: "Continent Sized",
  12869. height: math.unit(2800, "miles")
  12870. },
  12871. {
  12872. name: "Earth Sized",
  12873. height: math.unit(8000, "miles")
  12874. },
  12875. ]
  12876. ))
  12877. characterMakers.push(() => makeCharacter(
  12878. { name: "Alexi", species: ["werewolf"], tags: ["anthro"] },
  12879. {
  12880. front: {
  12881. height: math.unit(6, "feet"),
  12882. weight: math.unit(250, "lb"),
  12883. name: "Front",
  12884. image: {
  12885. source: "./media/characters/alexi/front.svg",
  12886. extra: 3483 / 3291,
  12887. bottom: 0.04
  12888. }
  12889. },
  12890. back: {
  12891. height: math.unit(6, "feet"),
  12892. weight: math.unit(250, "lb"),
  12893. name: "Back",
  12894. image: {
  12895. source: "./media/characters/alexi/back.svg",
  12896. extra: 3533 / 3356,
  12897. bottom: 0.021
  12898. }
  12899. },
  12900. frontTransforming: {
  12901. height: math.unit(8.58, "feet"),
  12902. weight: math.unit(1300, "lb"),
  12903. name: "Transforming",
  12904. image: {
  12905. source: "./media/characters/alexi/front-transforming.svg",
  12906. extra: 437 / 409,
  12907. bottom: 19 / 458.66
  12908. }
  12909. },
  12910. frontTransformed: {
  12911. height: math.unit(12.5, "feet"),
  12912. weight: math.unit(4000, "lb"),
  12913. name: "Transformed",
  12914. image: {
  12915. source: "./media/characters/alexi/front-transformed.svg",
  12916. extra: 639 / 614,
  12917. bottom: 30.55 / 671
  12918. }
  12919. },
  12920. },
  12921. [
  12922. {
  12923. name: "Normal",
  12924. height: math.unit(14, "feet"),
  12925. default: true
  12926. },
  12927. {
  12928. name: "Minimacro",
  12929. height: math.unit(30, "meters")
  12930. },
  12931. {
  12932. name: "Macro",
  12933. height: math.unit(500, "meters")
  12934. },
  12935. {
  12936. name: "Megamacro",
  12937. height: math.unit(9000, "km")
  12938. },
  12939. {
  12940. name: "Teramacro",
  12941. height: math.unit(384000, "km")
  12942. },
  12943. ]
  12944. ))
  12945. characterMakers.push(() => makeCharacter(
  12946. { name: "Kayroo", species: ["kangaroo"], tags: ["anthro"] },
  12947. {
  12948. front: {
  12949. height: math.unit(6, "feet"),
  12950. weight: math.unit(150, "lb"),
  12951. name: "Front",
  12952. image: {
  12953. source: "./media/characters/kayroo/front.svg",
  12954. extra: 1153 / 1038,
  12955. bottom: 0.06
  12956. }
  12957. },
  12958. foot: {
  12959. height: math.unit(6, "feet"),
  12960. weight: math.unit(150, "lb"),
  12961. name: "Foot",
  12962. image: {
  12963. source: "./media/characters/kayroo/foot.svg"
  12964. }
  12965. },
  12966. },
  12967. [
  12968. {
  12969. name: "Normal",
  12970. height: math.unit(8, "feet"),
  12971. default: true
  12972. },
  12973. {
  12974. name: "Minimacro",
  12975. height: math.unit(250, "feet")
  12976. },
  12977. {
  12978. name: "Macro",
  12979. height: math.unit(2800, "feet")
  12980. },
  12981. {
  12982. name: "Megamacro",
  12983. height: math.unit(5200, "feet")
  12984. },
  12985. {
  12986. name: "Gigamacro",
  12987. height: math.unit(27000, "feet")
  12988. },
  12989. {
  12990. name: "Omega",
  12991. height: math.unit(45000, "feet")
  12992. },
  12993. ]
  12994. ))
  12995. characterMakers.push(() => makeCharacter(
  12996. { name: "Rhys", species: ["renamon"], tags: ["anthro"] },
  12997. {
  12998. front: {
  12999. height: math.unit(18, "feet"),
  13000. weight: math.unit(5800, "lb"),
  13001. name: "Front",
  13002. image: {
  13003. source: "./media/characters/rhys/front.svg",
  13004. extra: 3386 / 3090,
  13005. bottom: 0.07
  13006. }
  13007. },
  13008. },
  13009. [
  13010. {
  13011. name: "Normal",
  13012. height: math.unit(18, "feet"),
  13013. default: true
  13014. },
  13015. {
  13016. name: "Working Size",
  13017. height: math.unit(200, "feet")
  13018. },
  13019. {
  13020. name: "Demolition Size",
  13021. height: math.unit(2000, "feet")
  13022. },
  13023. {
  13024. name: "Maximum Licensed Size",
  13025. height: math.unit(5, "miles")
  13026. },
  13027. {
  13028. name: "Maximum Observed Size",
  13029. height: math.unit(10, "yottameters")
  13030. },
  13031. ]
  13032. ))
  13033. characterMakers.push(() => makeCharacter(
  13034. { name: "Toto", species: ["dragon"], tags: ["anthro"] },
  13035. {
  13036. front: {
  13037. height: math.unit(6, "feet"),
  13038. weight: math.unit(250, "lb"),
  13039. name: "Front",
  13040. image: {
  13041. source: "./media/characters/toto/front.svg",
  13042. extra: 527 / 479,
  13043. bottom: 0.05
  13044. }
  13045. },
  13046. },
  13047. [
  13048. {
  13049. name: "Micro",
  13050. height: math.unit(3, "feet")
  13051. },
  13052. {
  13053. name: "Normal",
  13054. height: math.unit(10, "feet")
  13055. },
  13056. {
  13057. name: "Macro",
  13058. height: math.unit(150, "feet"),
  13059. default: true
  13060. },
  13061. {
  13062. name: "Megamacro",
  13063. height: math.unit(1200, "feet")
  13064. },
  13065. ]
  13066. ))
  13067. characterMakers.push(() => makeCharacter(
  13068. { name: "King", species: ["lion"], tags: ["anthro"] },
  13069. {
  13070. back: {
  13071. height: math.unit(6, "feet"),
  13072. weight: math.unit(150, "lb"),
  13073. name: "Back",
  13074. image: {
  13075. source: "./media/characters/king/back.svg"
  13076. }
  13077. },
  13078. },
  13079. [
  13080. {
  13081. name: "Micro",
  13082. height: math.unit(2, "inches")
  13083. },
  13084. {
  13085. name: "Normal",
  13086. height: math.unit(8, "feet")
  13087. },
  13088. {
  13089. name: "Macro",
  13090. height: math.unit(200, "feet"),
  13091. default: true
  13092. },
  13093. {
  13094. name: "Megamacro",
  13095. height: math.unit(50, "miles")
  13096. },
  13097. ]
  13098. ))
  13099. characterMakers.push(() => makeCharacter(
  13100. { name: "Cordite", species: ["candy-orca-dragon"], tags: ["anthro"] },
  13101. {
  13102. front: {
  13103. height: math.unit(11, "feet"),
  13104. weight: math.unit(1400, "lb"),
  13105. name: "Front",
  13106. image: {
  13107. source: "./media/characters/cordite/front.svg",
  13108. extra: 1919/1827,
  13109. bottom: 40/1959
  13110. }
  13111. },
  13112. side: {
  13113. height: math.unit(11, "feet"),
  13114. weight: math.unit(1400, "lb"),
  13115. name: "Side",
  13116. image: {
  13117. source: "./media/characters/cordite/side.svg",
  13118. extra: 1908/1793,
  13119. bottom: 38/1946
  13120. }
  13121. },
  13122. back: {
  13123. height: math.unit(11, "feet"),
  13124. weight: math.unit(1400, "lb"),
  13125. name: "Back",
  13126. image: {
  13127. source: "./media/characters/cordite/back.svg",
  13128. extra: 1938/1837,
  13129. bottom: 10/1948
  13130. }
  13131. },
  13132. feral: {
  13133. height: math.unit(2, "feet"),
  13134. weight: math.unit(90, "lb"),
  13135. name: "Feral",
  13136. image: {
  13137. source: "./media/characters/cordite/feral.svg",
  13138. extra: 1260 / 755,
  13139. bottom: 0.05
  13140. }
  13141. },
  13142. },
  13143. [
  13144. {
  13145. name: "Normal",
  13146. height: math.unit(11, "feet"),
  13147. default: true
  13148. },
  13149. ]
  13150. ))
  13151. characterMakers.push(() => makeCharacter(
  13152. { name: "Pianostrong", species: ["husky"], tags: ["anthro"] },
  13153. {
  13154. front: {
  13155. height: math.unit(6, "feet"),
  13156. weight: math.unit(150, "lb"),
  13157. name: "Front",
  13158. image: {
  13159. source: "./media/characters/pianostrong/front.svg",
  13160. extra: 6577 / 6254,
  13161. bottom: 0.02
  13162. }
  13163. },
  13164. side: {
  13165. height: math.unit(6, "feet"),
  13166. weight: math.unit(150, "lb"),
  13167. name: "Side",
  13168. image: {
  13169. source: "./media/characters/pianostrong/side.svg",
  13170. extra: 6106 / 5730
  13171. }
  13172. },
  13173. back: {
  13174. height: math.unit(6, "feet"),
  13175. weight: math.unit(150, "lb"),
  13176. name: "Back",
  13177. image: {
  13178. source: "./media/characters/pianostrong/back.svg",
  13179. extra: 6085 / 5733,
  13180. bottom: 0.01
  13181. }
  13182. },
  13183. },
  13184. [
  13185. {
  13186. name: "Macro",
  13187. height: math.unit(100, "feet")
  13188. },
  13189. {
  13190. name: "Macro+",
  13191. height: math.unit(300, "feet"),
  13192. default: true
  13193. },
  13194. {
  13195. name: "Macro++",
  13196. height: math.unit(1000, "feet")
  13197. },
  13198. ]
  13199. ))
  13200. characterMakers.push(() => makeCharacter(
  13201. { name: "Kona", species: ["deer"], tags: ["anthro"] },
  13202. {
  13203. front: {
  13204. height: math.unit(6, "feet"),
  13205. weight: math.unit(150, "lb"),
  13206. name: "Front",
  13207. image: {
  13208. source: "./media/characters/kona/front.svg",
  13209. extra: 2960 / 2629,
  13210. bottom: 0.005
  13211. }
  13212. },
  13213. },
  13214. [
  13215. {
  13216. name: "Normal",
  13217. height: math.unit(11 + 8 / 12, "feet")
  13218. },
  13219. {
  13220. name: "Macro",
  13221. height: math.unit(850, "feet"),
  13222. default: true
  13223. },
  13224. {
  13225. name: "Macro+",
  13226. height: math.unit(1.5, "km"),
  13227. default: true
  13228. },
  13229. {
  13230. name: "Megamacro",
  13231. height: math.unit(80, "miles")
  13232. },
  13233. {
  13234. name: "Gigamacro",
  13235. height: math.unit(3500, "miles")
  13236. },
  13237. ]
  13238. ))
  13239. characterMakers.push(() => makeCharacter(
  13240. { name: "Levi", species: ["dragon"], tags: ["anthro"] },
  13241. {
  13242. side: {
  13243. height: math.unit(1.9, "meters"),
  13244. weight: math.unit(326, "kg"),
  13245. name: "Side",
  13246. image: {
  13247. source: "./media/characters/levi/side.svg",
  13248. extra: 1704 / 1334,
  13249. bottom: 0.02
  13250. }
  13251. },
  13252. },
  13253. [
  13254. {
  13255. name: "Normal",
  13256. height: math.unit(1.9, "meters"),
  13257. default: true
  13258. },
  13259. {
  13260. name: "Macro",
  13261. height: math.unit(20, "meters")
  13262. },
  13263. {
  13264. name: "Macro+",
  13265. height: math.unit(200, "meters")
  13266. },
  13267. {
  13268. name: "Megamacro",
  13269. height: math.unit(2, "km")
  13270. },
  13271. {
  13272. name: "Megamacro+",
  13273. height: math.unit(20, "km")
  13274. },
  13275. {
  13276. name: "Gigamacro",
  13277. height: math.unit(2500, "km")
  13278. },
  13279. {
  13280. name: "Gigamacro+",
  13281. height: math.unit(120000, "km")
  13282. },
  13283. {
  13284. name: "Teramacro",
  13285. height: math.unit(7.77e6, "km")
  13286. },
  13287. ]
  13288. ))
  13289. characterMakers.push(() => makeCharacter(
  13290. { name: "BMC", species: ["sabertooth-tiger", "cougar"], tags: ["anthro"] },
  13291. {
  13292. front: {
  13293. height: math.unit(6 + 4/12, "feet"),
  13294. weight: math.unit(190, "lb"),
  13295. name: "Front",
  13296. image: {
  13297. source: "./media/characters/bmc/front.svg",
  13298. extra: 1626/1472,
  13299. bottom: 79/1705
  13300. }
  13301. },
  13302. back: {
  13303. height: math.unit(6 + 4/12, "feet"),
  13304. weight: math.unit(190, "lb"),
  13305. name: "Back",
  13306. image: {
  13307. source: "./media/characters/bmc/back.svg",
  13308. extra: 1640/1479,
  13309. bottom: 45/1685
  13310. }
  13311. },
  13312. frontArmor: {
  13313. height: math.unit(6 + 4/12, "feet"),
  13314. weight: math.unit(190, "lb"),
  13315. name: "Front (Armor)",
  13316. image: {
  13317. source: "./media/characters/bmc/front-armor.svg",
  13318. extra: 1538/1468,
  13319. bottom: 79/1617
  13320. }
  13321. },
  13322. },
  13323. [
  13324. {
  13325. name: "Human-sized",
  13326. height: math.unit(6 + 4 / 12, "feet")
  13327. },
  13328. {
  13329. name: "Interactive Size",
  13330. height: math.unit(25, "feet")
  13331. },
  13332. {
  13333. name: "Small",
  13334. height: math.unit(250, "feet")
  13335. },
  13336. {
  13337. name: "Normal",
  13338. height: math.unit(1250, "feet"),
  13339. default: true
  13340. },
  13341. {
  13342. name: "Good Day",
  13343. height: math.unit(88, "miles")
  13344. },
  13345. {
  13346. name: "Largest Measured Size",
  13347. height: math.unit(105.960, "galaxies")
  13348. },
  13349. ]
  13350. ))
  13351. characterMakers.push(() => makeCharacter(
  13352. { name: "Sven the Kaiju", species: ["monster", "fairy"], tags: ["anthro"] },
  13353. {
  13354. front: {
  13355. height: math.unit(20, "feet"),
  13356. weight: math.unit(2016, "kg"),
  13357. name: "Front",
  13358. image: {
  13359. source: "./media/characters/sven-the-kaiju/front.svg",
  13360. extra: 1277/1250,
  13361. bottom: 35/1312
  13362. }
  13363. },
  13364. mouth: {
  13365. height: math.unit(1.85, "feet"),
  13366. name: "Mouth",
  13367. image: {
  13368. source: "./media/characters/sven-the-kaiju/mouth.svg"
  13369. }
  13370. },
  13371. },
  13372. [
  13373. {
  13374. name: "Fairy",
  13375. height: math.unit(6, "inches")
  13376. },
  13377. {
  13378. name: "Normal",
  13379. height: math.unit(20, "feet"),
  13380. default: true
  13381. },
  13382. {
  13383. name: "Rampage",
  13384. height: math.unit(200, "feet")
  13385. },
  13386. {
  13387. name: "Archfey Forest Guardian",
  13388. height: math.unit(1, "mile")
  13389. },
  13390. ]
  13391. ))
  13392. characterMakers.push(() => makeCharacter(
  13393. { name: "Marik", species: ["dragon"], tags: ["anthro"] },
  13394. {
  13395. front: {
  13396. height: math.unit(4, "meters"),
  13397. weight: math.unit(2, "tons"),
  13398. name: "Front",
  13399. image: {
  13400. source: "./media/characters/marik/front.svg",
  13401. extra: 1057 / 1003,
  13402. bottom: 0.08
  13403. }
  13404. },
  13405. },
  13406. [
  13407. {
  13408. name: "Normal",
  13409. height: math.unit(4, "meters"),
  13410. default: true
  13411. },
  13412. {
  13413. name: "Macro",
  13414. height: math.unit(20, "meters")
  13415. },
  13416. {
  13417. name: "Megamacro",
  13418. height: math.unit(50, "km")
  13419. },
  13420. {
  13421. name: "Gigamacro",
  13422. height: math.unit(100, "km")
  13423. },
  13424. {
  13425. name: "Alpha Macro",
  13426. height: math.unit(7.88e7, "yottameters")
  13427. },
  13428. ]
  13429. ))
  13430. characterMakers.push(() => makeCharacter(
  13431. { name: "Mel", species: ["human", "moth"], tags: ["anthro"] },
  13432. {
  13433. front: {
  13434. height: math.unit(6, "feet"),
  13435. weight: math.unit(110, "lb"),
  13436. name: "Front",
  13437. image: {
  13438. source: "./media/characters/mel/front.svg",
  13439. extra: 736 / 617,
  13440. bottom: 0.017
  13441. }
  13442. },
  13443. },
  13444. [
  13445. {
  13446. name: "Pico",
  13447. height: math.unit(3, "pm")
  13448. },
  13449. {
  13450. name: "Nano",
  13451. height: math.unit(3, "nm")
  13452. },
  13453. {
  13454. name: "Micro",
  13455. height: math.unit(0.3, "mm"),
  13456. default: true
  13457. },
  13458. {
  13459. name: "Micro+",
  13460. height: math.unit(3, "mm")
  13461. },
  13462. {
  13463. name: "Normal",
  13464. height: math.unit(5 + 10.5 / 12, "feet")
  13465. },
  13466. ]
  13467. ))
  13468. characterMakers.push(() => makeCharacter(
  13469. { name: "Lykonous", species: ["monster"], tags: ["anthro"] },
  13470. {
  13471. kaiju: {
  13472. height: math.unit(1.75, "meters"),
  13473. weight: math.unit(55, "kg"),
  13474. name: "Kaiju",
  13475. image: {
  13476. source: "./media/characters/lykonous/kaiju.svg",
  13477. extra: 1055 / 946,
  13478. bottom: 0.135
  13479. }
  13480. },
  13481. },
  13482. [
  13483. {
  13484. name: "Normal",
  13485. height: math.unit(2.5, "meters"),
  13486. default: true
  13487. },
  13488. {
  13489. name: "Kaiju Dragon",
  13490. height: math.unit(60, "meters")
  13491. },
  13492. {
  13493. name: "Mega Kaiju",
  13494. height: math.unit(120, "km")
  13495. },
  13496. {
  13497. name: "Giga Kaiju",
  13498. height: math.unit(200, "megameters")
  13499. },
  13500. {
  13501. name: "Terra Kaiju",
  13502. height: math.unit(400, "gigameters")
  13503. },
  13504. {
  13505. name: "Kaiju Dragon God",
  13506. height: math.unit(13000, "exaparsecs")
  13507. },
  13508. ]
  13509. ))
  13510. characterMakers.push(() => makeCharacter(
  13511. { name: "Blü", species: ["dragon"], tags: ["anthro"] },
  13512. {
  13513. front: {
  13514. height: math.unit(6, "feet"),
  13515. weight: math.unit(150, "lb"),
  13516. name: "Front",
  13517. image: {
  13518. source: "./media/characters/blü/front.svg",
  13519. extra: 1883 / 1564,
  13520. bottom: 0.031
  13521. }
  13522. },
  13523. },
  13524. [
  13525. {
  13526. name: "Normal",
  13527. height: math.unit(13, "feet"),
  13528. default: true
  13529. },
  13530. {
  13531. name: "Big Boi",
  13532. height: math.unit(150, "meters")
  13533. },
  13534. {
  13535. name: "Mini Stomper",
  13536. height: math.unit(300, "meters")
  13537. },
  13538. {
  13539. name: "Macro",
  13540. height: math.unit(1000, "meters")
  13541. },
  13542. {
  13543. name: "Megamacro",
  13544. height: math.unit(11000, "meters")
  13545. },
  13546. {
  13547. name: "Gigamacro",
  13548. height: math.unit(11000, "km")
  13549. },
  13550. {
  13551. name: "Teramacro",
  13552. height: math.unit(420000, "km")
  13553. },
  13554. {
  13555. name: "Examacro",
  13556. height: math.unit(120, "parsecs")
  13557. },
  13558. {
  13559. name: "God Tho",
  13560. height: math.unit(98000000000, "parsecs")
  13561. },
  13562. ]
  13563. ))
  13564. characterMakers.push(() => makeCharacter(
  13565. { name: "Scales", species: ["dragon"], tags: ["taur"] },
  13566. {
  13567. taurFront: {
  13568. height: math.unit(6, "feet"),
  13569. weight: math.unit(200, "lb"),
  13570. name: "Taur (Front)",
  13571. image: {
  13572. source: "./media/characters/scales/taur-front.svg",
  13573. extra: 1,
  13574. bottom: 0.05
  13575. }
  13576. },
  13577. taurBack: {
  13578. height: math.unit(6, "feet"),
  13579. weight: math.unit(200, "lb"),
  13580. name: "Taur (Back)",
  13581. image: {
  13582. source: "./media/characters/scales/taur-back.svg",
  13583. extra: 1,
  13584. bottom: 0.08
  13585. }
  13586. },
  13587. anthro: {
  13588. height: math.unit(6 * 7 / 12, "feet"),
  13589. weight: math.unit(100, "lb"),
  13590. name: "Anthro",
  13591. image: {
  13592. source: "./media/characters/scales/anthro.svg",
  13593. extra: 1,
  13594. bottom: 0.06
  13595. }
  13596. },
  13597. },
  13598. [
  13599. {
  13600. name: "Normal",
  13601. height: math.unit(12, "feet"),
  13602. default: true
  13603. },
  13604. ]
  13605. ))
  13606. characterMakers.push(() => makeCharacter(
  13607. { name: "Koragos", species: ["lizard"], tags: ["anthro"] },
  13608. {
  13609. front: {
  13610. height: math.unit(6, "feet"),
  13611. weight: math.unit(150, "lb"),
  13612. name: "Front",
  13613. image: {
  13614. source: "./media/characters/koragos/front.svg",
  13615. extra: 841 / 794,
  13616. bottom: 0.035
  13617. }
  13618. },
  13619. back: {
  13620. height: math.unit(6, "feet"),
  13621. weight: math.unit(150, "lb"),
  13622. name: "Back",
  13623. image: {
  13624. source: "./media/characters/koragos/back.svg",
  13625. extra: 841 / 810,
  13626. bottom: 0.022
  13627. }
  13628. },
  13629. },
  13630. [
  13631. {
  13632. name: "Normal",
  13633. height: math.unit(6 + 11 / 12, "feet"),
  13634. default: true
  13635. },
  13636. {
  13637. name: "Macro",
  13638. height: math.unit(490, "feet")
  13639. },
  13640. {
  13641. name: "Megamacro",
  13642. height: math.unit(10, "miles")
  13643. },
  13644. {
  13645. name: "Gigamacro",
  13646. height: math.unit(50, "miles")
  13647. },
  13648. ]
  13649. ))
  13650. characterMakers.push(() => makeCharacter(
  13651. { name: "Xylrem", species: ["dragon"], tags: ["anthro"] },
  13652. {
  13653. front: {
  13654. height: math.unit(6, "feet"),
  13655. weight: math.unit(250, "lb"),
  13656. name: "Front",
  13657. image: {
  13658. source: "./media/characters/xylrem/front.svg",
  13659. extra: 3323 / 3050,
  13660. bottom: 0.065
  13661. }
  13662. },
  13663. },
  13664. [
  13665. {
  13666. name: "Micro",
  13667. height: math.unit(4, "feet")
  13668. },
  13669. {
  13670. name: "Normal",
  13671. height: math.unit(16, "feet"),
  13672. default: true
  13673. },
  13674. {
  13675. name: "Macro",
  13676. height: math.unit(2720, "feet")
  13677. },
  13678. {
  13679. name: "Megamacro",
  13680. height: math.unit(25000, "miles")
  13681. },
  13682. ]
  13683. ))
  13684. characterMakers.push(() => makeCharacter(
  13685. { name: "Ikideru", species: ["german-shepherd"], tags: ["anthro"] },
  13686. {
  13687. front: {
  13688. height: math.unit(8, "feet"),
  13689. weight: math.unit(250, "kg"),
  13690. name: "Front",
  13691. image: {
  13692. source: "./media/characters/ikideru/front.svg",
  13693. extra: 930 / 870,
  13694. bottom: 0.087
  13695. }
  13696. },
  13697. back: {
  13698. height: math.unit(8, "feet"),
  13699. weight: math.unit(250, "kg"),
  13700. name: "Back",
  13701. image: {
  13702. source: "./media/characters/ikideru/back.svg",
  13703. extra: 919 / 852,
  13704. bottom: 0.055
  13705. }
  13706. },
  13707. },
  13708. [
  13709. {
  13710. name: "Rare",
  13711. height: math.unit(8, "feet"),
  13712. default: true
  13713. },
  13714. {
  13715. name: "Playful Loom",
  13716. height: math.unit(80, "feet")
  13717. },
  13718. {
  13719. name: "City Leaner",
  13720. height: math.unit(230, "feet")
  13721. },
  13722. {
  13723. name: "Megamacro",
  13724. height: math.unit(2500, "feet")
  13725. },
  13726. {
  13727. name: "Gigamacro",
  13728. height: math.unit(26400, "feet")
  13729. },
  13730. {
  13731. name: "Tectonic Shifter",
  13732. height: math.unit(1.7, "megameters")
  13733. },
  13734. {
  13735. name: "Planet Carer",
  13736. height: math.unit(21, "megameters")
  13737. },
  13738. {
  13739. name: "God",
  13740. height: math.unit(11157.22, "parsecs")
  13741. },
  13742. ]
  13743. ))
  13744. characterMakers.push(() => makeCharacter(
  13745. { name: "Neo", species: ["dragon"], tags: ["anthro"] },
  13746. {
  13747. front: {
  13748. height: math.unit(6, "feet"),
  13749. weight: math.unit(120, "lb"),
  13750. name: "Front",
  13751. image: {
  13752. source: "./media/characters/neo/front.svg"
  13753. }
  13754. },
  13755. },
  13756. [
  13757. {
  13758. name: "Micro",
  13759. height: math.unit(2, "inches"),
  13760. default: true
  13761. },
  13762. {
  13763. name: "Human Size",
  13764. height: math.unit(5 + 8 / 12, "feet")
  13765. },
  13766. ]
  13767. ))
  13768. characterMakers.push(() => makeCharacter(
  13769. { name: "Chauncey (Chantz)", species: ["dragon"], tags: ["anthro"] },
  13770. {
  13771. front: {
  13772. height: math.unit(13 + 10 / 12, "feet"),
  13773. weight: math.unit(5320, "lb"),
  13774. name: "Front",
  13775. image: {
  13776. source: "./media/characters/chauncey-chantz/front.svg",
  13777. extra: 1587 / 1435,
  13778. bottom: 0.02
  13779. }
  13780. },
  13781. },
  13782. [
  13783. {
  13784. name: "Normal",
  13785. height: math.unit(13 + 10 / 12, "feet"),
  13786. default: true
  13787. },
  13788. {
  13789. name: "Macro",
  13790. height: math.unit(45, "feet")
  13791. },
  13792. {
  13793. name: "Megamacro",
  13794. height: math.unit(250, "miles")
  13795. },
  13796. {
  13797. name: "Planetary",
  13798. height: math.unit(10000, "miles")
  13799. },
  13800. {
  13801. name: "Galactic",
  13802. height: math.unit(40000, "parsecs")
  13803. },
  13804. {
  13805. name: "Universal",
  13806. height: math.unit(1, "yottameter")
  13807. },
  13808. ]
  13809. ))
  13810. characterMakers.push(() => makeCharacter(
  13811. { name: "Epifox", species: ["snake", "fox"], tags: ["naga"] },
  13812. {
  13813. front: {
  13814. height: math.unit(6, "feet"),
  13815. weight: math.unit(150, "lb"),
  13816. name: "Front",
  13817. image: {
  13818. source: "./media/characters/epifox/front.svg",
  13819. extra: 1,
  13820. bottom: 0.075
  13821. }
  13822. },
  13823. },
  13824. [
  13825. {
  13826. name: "Micro",
  13827. height: math.unit(6, "inches")
  13828. },
  13829. {
  13830. name: "Normal",
  13831. height: math.unit(12, "feet"),
  13832. default: true
  13833. },
  13834. {
  13835. name: "Macro",
  13836. height: math.unit(3810, "feet")
  13837. },
  13838. {
  13839. name: "Megamacro",
  13840. height: math.unit(500, "miles")
  13841. },
  13842. ]
  13843. ))
  13844. characterMakers.push(() => makeCharacter(
  13845. { name: "Colin T.", species: ["dragon"], tags: ["anthro"] },
  13846. {
  13847. front: {
  13848. height: math.unit(1.8796, "m"),
  13849. weight: math.unit(230, "lb"),
  13850. name: "Front",
  13851. image: {
  13852. source: "./media/characters/colin-t/front.svg",
  13853. extra: 1272 / 1193,
  13854. bottom: 0.07
  13855. }
  13856. },
  13857. },
  13858. [
  13859. {
  13860. name: "Micro",
  13861. height: math.unit(0.571, "meters")
  13862. },
  13863. {
  13864. name: "Normal",
  13865. height: math.unit(1.8796, "meters"),
  13866. default: true
  13867. },
  13868. {
  13869. name: "Tall",
  13870. height: math.unit(4, "meters")
  13871. },
  13872. {
  13873. name: "Macro",
  13874. height: math.unit(67.241, "meters")
  13875. },
  13876. {
  13877. name: "Megamacro",
  13878. height: math.unit(371.856, "meters")
  13879. },
  13880. {
  13881. name: "Planetary",
  13882. height: math.unit(12631.5689, "km")
  13883. },
  13884. ]
  13885. ))
  13886. characterMakers.push(() => makeCharacter(
  13887. { name: "Matvei", species: ["shark"], tags: ["anthro"] },
  13888. {
  13889. front: {
  13890. height: math.unit(1.85, "meters"),
  13891. weight: math.unit(80, "kg"),
  13892. name: "Front",
  13893. image: {
  13894. source: "./media/characters/matvei/front.svg",
  13895. extra: 456/447,
  13896. bottom: 8/464
  13897. }
  13898. },
  13899. back: {
  13900. height: math.unit(1.85, "meters"),
  13901. weight: math.unit(80, "kg"),
  13902. name: "Back",
  13903. image: {
  13904. source: "./media/characters/matvei/back.svg",
  13905. extra: 434/427,
  13906. bottom: 11/445
  13907. }
  13908. },
  13909. },
  13910. [
  13911. {
  13912. name: "Normal",
  13913. height: math.unit(1.85, "meters"),
  13914. default: true
  13915. },
  13916. ]
  13917. ))
  13918. characterMakers.push(() => makeCharacter(
  13919. { name: "Quincy", species: ["phoenix"], tags: ["anthro"] },
  13920. {
  13921. front: {
  13922. height: math.unit(5 + 9 / 12, "feet"),
  13923. weight: math.unit(70, "lb"),
  13924. name: "Front",
  13925. image: {
  13926. source: "./media/characters/quincy/front.svg",
  13927. extra: 3041 / 2751
  13928. }
  13929. },
  13930. back: {
  13931. height: math.unit(5 + 9 / 12, "feet"),
  13932. weight: math.unit(70, "lb"),
  13933. name: "Back",
  13934. image: {
  13935. source: "./media/characters/quincy/back.svg",
  13936. extra: 3041 / 2751
  13937. }
  13938. },
  13939. flying: {
  13940. height: math.unit(5 + 4 / 12, "feet"),
  13941. weight: math.unit(70, "lb"),
  13942. name: "Flying",
  13943. image: {
  13944. source: "./media/characters/quincy/flying.svg",
  13945. extra: 1044 / 930
  13946. }
  13947. },
  13948. },
  13949. [
  13950. {
  13951. name: "Micro",
  13952. height: math.unit(3, "cm")
  13953. },
  13954. {
  13955. name: "Normal",
  13956. height: math.unit(5 + 9 / 12, "feet")
  13957. },
  13958. {
  13959. name: "Macro",
  13960. height: math.unit(200, "meters"),
  13961. default: true
  13962. },
  13963. {
  13964. name: "Megamacro",
  13965. height: math.unit(1000, "meters")
  13966. },
  13967. ]
  13968. ))
  13969. characterMakers.push(() => makeCharacter(
  13970. { name: "Vanrel", species: ["fennec-fox"], tags: ["anthro"] },
  13971. {
  13972. front: {
  13973. height: math.unit(3 + 11/12, "feet"),
  13974. weight: math.unit(50, "lb"),
  13975. name: "Front",
  13976. image: {
  13977. source: "./media/characters/vanrel/front.svg",
  13978. extra: 1104/949,
  13979. bottom: 52/1156
  13980. }
  13981. },
  13982. back: {
  13983. height: math.unit(3 + 11/12, "feet"),
  13984. weight: math.unit(50, "lb"),
  13985. name: "Back",
  13986. image: {
  13987. source: "./media/characters/vanrel/back.svg",
  13988. extra: 1119/976,
  13989. bottom: 37/1156
  13990. }
  13991. },
  13992. tome: {
  13993. height: math.unit(1.35, "feet"),
  13994. weight: math.unit(10, "lb"),
  13995. name: "Vanrel's Tome",
  13996. rename: true,
  13997. image: {
  13998. source: "./media/characters/vanrel/tome.svg"
  13999. }
  14000. },
  14001. beans: {
  14002. height: math.unit(0.89, "feet"),
  14003. name: "Beans",
  14004. image: {
  14005. source: "./media/characters/vanrel/beans.svg"
  14006. }
  14007. },
  14008. },
  14009. [
  14010. {
  14011. name: "Normal",
  14012. height: math.unit(3 + 11/12, "feet"),
  14013. default: true
  14014. },
  14015. ]
  14016. ))
  14017. characterMakers.push(() => makeCharacter(
  14018. { name: "Kuiper Vanrel", species: ["elemental", "meerkat"], tags: ["anthro"] },
  14019. {
  14020. front: {
  14021. height: math.unit(7 + 5 / 12, "feet"),
  14022. name: "Front",
  14023. image: {
  14024. source: "./media/characters/kuiper-vanrel/front.svg",
  14025. extra: 1219/1169,
  14026. bottom: 69/1288
  14027. }
  14028. },
  14029. back: {
  14030. height: math.unit(7 + 5 / 12, "feet"),
  14031. name: "Back",
  14032. image: {
  14033. source: "./media/characters/kuiper-vanrel/back.svg",
  14034. extra: 1236/1193,
  14035. bottom: 27/1263
  14036. }
  14037. },
  14038. foot: {
  14039. height: math.unit(0.55, "meters"),
  14040. name: "Foot",
  14041. image: {
  14042. source: "./media/characters/kuiper-vanrel/foot.svg",
  14043. }
  14044. },
  14045. battle: {
  14046. height: math.unit(6.824, "feet"),
  14047. name: "Battle",
  14048. image: {
  14049. source: "./media/characters/kuiper-vanrel/battle.svg",
  14050. extra: 1466 / 1327,
  14051. bottom: 29 / 1492.5
  14052. }
  14053. },
  14054. meerkui: {
  14055. height: math.unit(18, "inches"),
  14056. name: "Meerkui",
  14057. image: {
  14058. source: "./media/characters/kuiper-vanrel/meerkui.svg",
  14059. extra: 1354/1289,
  14060. bottom: 69/1423
  14061. }
  14062. },
  14063. },
  14064. [
  14065. {
  14066. name: "Normal",
  14067. height: math.unit(7 + 5 / 12, "feet"),
  14068. default: true
  14069. },
  14070. ]
  14071. ))
  14072. characterMakers.push(() => makeCharacter(
  14073. { name: "Keset Vanrel", species: ["elemental", "hyena"], tags: ["anthro"] },
  14074. {
  14075. front: {
  14076. height: math.unit(8 + 5 / 12, "feet"),
  14077. name: "Front",
  14078. image: {
  14079. source: "./media/characters/keset-vanrel/front.svg",
  14080. extra: 1231/1148,
  14081. bottom: 82/1313
  14082. }
  14083. },
  14084. back: {
  14085. height: math.unit(8 + 5 / 12, "feet"),
  14086. name: "Back",
  14087. image: {
  14088. source: "./media/characters/keset-vanrel/back.svg",
  14089. extra: 1240/1174,
  14090. bottom: 33/1273
  14091. }
  14092. },
  14093. hand: {
  14094. height: math.unit(0.6, "meters"),
  14095. name: "Hand",
  14096. image: {
  14097. source: "./media/characters/keset-vanrel/hand.svg"
  14098. }
  14099. },
  14100. foot: {
  14101. height: math.unit(0.94978, "meters"),
  14102. name: "Foot",
  14103. image: {
  14104. source: "./media/characters/keset-vanrel/foot.svg"
  14105. }
  14106. },
  14107. battle: {
  14108. height: math.unit(7.408, "feet"),
  14109. name: "Battle",
  14110. image: {
  14111. source: "./media/characters/keset-vanrel/battle.svg",
  14112. extra: 1890 / 1386,
  14113. bottom: 73.28 / 1970
  14114. }
  14115. },
  14116. },
  14117. [
  14118. {
  14119. name: "Normal",
  14120. height: math.unit(8 + 5 / 12, "feet"),
  14121. default: true
  14122. },
  14123. ]
  14124. ))
  14125. characterMakers.push(() => makeCharacter(
  14126. { name: "Neos", species: ["mew"], tags: ["anthro"] },
  14127. {
  14128. front: {
  14129. height: math.unit(6, "feet"),
  14130. weight: math.unit(150, "lb"),
  14131. name: "Front",
  14132. image: {
  14133. source: "./media/characters/neos/front.svg",
  14134. extra: 1696 / 992,
  14135. bottom: 0.14
  14136. }
  14137. },
  14138. },
  14139. [
  14140. {
  14141. name: "Normal",
  14142. height: math.unit(54, "cm"),
  14143. default: true
  14144. },
  14145. {
  14146. name: "Macro",
  14147. height: math.unit(100, "m")
  14148. },
  14149. {
  14150. name: "Megamacro",
  14151. height: math.unit(10, "km")
  14152. },
  14153. {
  14154. name: "Megamacro+",
  14155. height: math.unit(100, "km")
  14156. },
  14157. {
  14158. name: "Gigamacro",
  14159. height: math.unit(100, "Mm")
  14160. },
  14161. {
  14162. name: "Teramacro",
  14163. height: math.unit(100, "Gm")
  14164. },
  14165. {
  14166. name: "Examacro",
  14167. height: math.unit(100, "Em")
  14168. },
  14169. {
  14170. name: "Godly",
  14171. height: math.unit(10000, "Ym")
  14172. },
  14173. {
  14174. name: "Beyond Godly",
  14175. height: math.unit(25, "multiverses")
  14176. },
  14177. ]
  14178. ))
  14179. characterMakers.push(() => makeCharacter(
  14180. { name: "Sammy Mouse", species: ["mouse"], tags: ["anthro"] },
  14181. {
  14182. fluide_tame: {
  14183. height: math.unit(5, "feet"),
  14184. name: "Tame",
  14185. image: {
  14186. source: "./media/characters/sammy-mouse/fluide-tame.svg",
  14187. extra: 1655/1574,
  14188. bottom: 231/1886
  14189. },
  14190. form: "fluide",
  14191. default: true
  14192. },
  14193. fluide_nude: {
  14194. height: math.unit(5, "feet"),
  14195. name: "Nude",
  14196. image: {
  14197. source: "./media/characters/sammy-mouse/fluide-nude.svg",
  14198. extra: 1655/1574,
  14199. bottom: 231/1886
  14200. },
  14201. form: "fluide",
  14202. },
  14203. male_tame: {
  14204. height: math.unit(5, "feet"),
  14205. name: "Tame",
  14206. image: {
  14207. source: "./media/characters/sammy-mouse/male-tame.svg",
  14208. extra: 1655/1574,
  14209. bottom: 231/1886
  14210. },
  14211. form: "male",
  14212. default: true
  14213. },
  14214. male_nude: {
  14215. height: math.unit(5, "feet"),
  14216. name: "Nude",
  14217. image: {
  14218. source: "./media/characters/sammy-mouse/male-nude.svg",
  14219. extra: 1655/1574,
  14220. bottom: 231/1886
  14221. },
  14222. form: "male",
  14223. },
  14224. female_nude: {
  14225. height: math.unit(5, "feet"),
  14226. name: "Nude",
  14227. image: {
  14228. source: "./media/characters/sammy-mouse/female-nude.svg",
  14229. extra: 1655/1574,
  14230. bottom: 231/1886
  14231. },
  14232. form: "female",
  14233. default: true
  14234. },
  14235. mouth: {
  14236. height: math.unit(0.32, "feet"),
  14237. name: "Mouth",
  14238. image: {
  14239. source: "./media/characters/sammy-mouse/mouth.svg"
  14240. },
  14241. allForms: true
  14242. },
  14243. paw: {
  14244. height: math.unit(0.42, "feet"),
  14245. name: "Paw",
  14246. image: {
  14247. source: "./media/characters/sammy-mouse/paw.svg"
  14248. },
  14249. allForms: true
  14250. },
  14251. },
  14252. [
  14253. {
  14254. name: "Micro",
  14255. height: math.unit(5, "inches"),
  14256. allForms: true
  14257. },
  14258. {
  14259. name: "Normal",
  14260. height: math.unit(5, "feet"),
  14261. default: true,
  14262. allForms: true
  14263. },
  14264. {
  14265. name: "Macro",
  14266. height: math.unit(60, "feet"),
  14267. allForms: true
  14268. },
  14269. ],
  14270. {
  14271. "fluide": {
  14272. name: "Fluide",
  14273. default: true
  14274. },
  14275. "male": {
  14276. name: "Male",
  14277. },
  14278. "female": {
  14279. name: "Female",
  14280. },
  14281. }
  14282. ))
  14283. characterMakers.push(() => makeCharacter(
  14284. { name: "Kole", species: ["kobold"], tags: ["anthro"] },
  14285. {
  14286. front: {
  14287. height: math.unit(4, "feet"),
  14288. weight: math.unit(50, "lb"),
  14289. name: "Front",
  14290. image: {
  14291. source: "./media/characters/kole/front.svg",
  14292. extra: 1423 / 1303,
  14293. bottom: 0.025
  14294. }
  14295. },
  14296. back: {
  14297. height: math.unit(4, "feet"),
  14298. weight: math.unit(50, "lb"),
  14299. name: "Back",
  14300. image: {
  14301. source: "./media/characters/kole/back.svg",
  14302. extra: 1426 / 1280,
  14303. bottom: 0.02
  14304. }
  14305. },
  14306. },
  14307. [
  14308. {
  14309. name: "Normal",
  14310. height: math.unit(4, "feet"),
  14311. default: true
  14312. },
  14313. ]
  14314. ))
  14315. characterMakers.push(() => makeCharacter(
  14316. { name: "Rufran", species: ["moth", "avian", "kobold"], tags: ["anthro"] },
  14317. {
  14318. front: {
  14319. height: math.unit(2.5, "feet"),
  14320. weight: math.unit(32, "lb"),
  14321. name: "Front",
  14322. image: {
  14323. source: "./media/characters/rufran/front.svg",
  14324. extra: 1313/885,
  14325. bottom: 94/1407
  14326. }
  14327. },
  14328. side: {
  14329. height: math.unit(2.5, "feet"),
  14330. weight: math.unit(32, "lb"),
  14331. name: "Side",
  14332. image: {
  14333. source: "./media/characters/rufran/side.svg",
  14334. extra: 1109/852,
  14335. bottom: 118/1227
  14336. }
  14337. },
  14338. back: {
  14339. height: math.unit(2.5, "feet"),
  14340. weight: math.unit(32, "lb"),
  14341. name: "Back",
  14342. image: {
  14343. source: "./media/characters/rufran/back.svg",
  14344. extra: 1280/878,
  14345. bottom: 131/1411
  14346. }
  14347. },
  14348. mouth: {
  14349. height: math.unit(1.13, "feet"),
  14350. name: "Mouth",
  14351. image: {
  14352. source: "./media/characters/rufran/mouth.svg"
  14353. }
  14354. },
  14355. foot: {
  14356. height: math.unit(1.33, "feet"),
  14357. name: "Foot",
  14358. image: {
  14359. source: "./media/characters/rufran/foot.svg"
  14360. }
  14361. },
  14362. koboldFront: {
  14363. height: math.unit(2 + 6 / 12, "feet"),
  14364. weight: math.unit(20, "lb"),
  14365. name: "Front (Kobold)",
  14366. image: {
  14367. source: "./media/characters/rufran/kobold-front.svg",
  14368. extra: 2041 / 1839,
  14369. bottom: 0.055
  14370. }
  14371. },
  14372. koboldBack: {
  14373. height: math.unit(2 + 6 / 12, "feet"),
  14374. weight: math.unit(20, "lb"),
  14375. name: "Back (Kobold)",
  14376. image: {
  14377. source: "./media/characters/rufran/kobold-back.svg",
  14378. extra: 2054 / 1839,
  14379. bottom: 0.01
  14380. }
  14381. },
  14382. koboldHand: {
  14383. height: math.unit(0.2166, "meters"),
  14384. name: "Hand (Kobold)",
  14385. image: {
  14386. source: "./media/characters/rufran/kobold-hand.svg"
  14387. }
  14388. },
  14389. koboldFoot: {
  14390. height: math.unit(0.185, "meters"),
  14391. name: "Foot (Kobold)",
  14392. image: {
  14393. source: "./media/characters/rufran/kobold-foot.svg"
  14394. }
  14395. },
  14396. },
  14397. [
  14398. {
  14399. name: "Micro",
  14400. height: math.unit(1, "inch")
  14401. },
  14402. {
  14403. name: "Normal",
  14404. height: math.unit(2 + 6 / 12, "feet"),
  14405. default: true
  14406. },
  14407. {
  14408. name: "Big",
  14409. height: math.unit(60, "feet")
  14410. },
  14411. {
  14412. name: "Macro",
  14413. height: math.unit(325, "feet")
  14414. },
  14415. ]
  14416. ))
  14417. characterMakers.push(() => makeCharacter(
  14418. { name: "Chip", species: ["espurr"], tags: ["anthro"] },
  14419. {
  14420. front: {
  14421. height: math.unit(0.3, "meters"),
  14422. weight: math.unit(3.5, "kg"),
  14423. name: "Front",
  14424. image: {
  14425. source: "./media/characters/chip/front.svg",
  14426. extra: 748 / 674
  14427. }
  14428. },
  14429. },
  14430. [
  14431. {
  14432. name: "Micro",
  14433. height: math.unit(1, "inch"),
  14434. default: true
  14435. },
  14436. ]
  14437. ))
  14438. characterMakers.push(() => makeCharacter(
  14439. { name: "Torvid", species: ["gryphon"], tags: ["feral"] },
  14440. {
  14441. side: {
  14442. height: math.unit(2.3, "meters"),
  14443. weight: math.unit(3500, "lb"),
  14444. name: "Side",
  14445. image: {
  14446. source: "./media/characters/torvid/side.svg",
  14447. extra: 1972 / 722,
  14448. bottom: 0.035
  14449. }
  14450. },
  14451. },
  14452. [
  14453. {
  14454. name: "Normal",
  14455. height: math.unit(2.3, "meters"),
  14456. default: true
  14457. },
  14458. ]
  14459. ))
  14460. characterMakers.push(() => makeCharacter(
  14461. { name: "Susan", species: ["goodra"], tags: ["anthro"] },
  14462. {
  14463. front: {
  14464. height: math.unit(2, "meters"),
  14465. weight: math.unit(150.5, "kg"),
  14466. name: "Front",
  14467. image: {
  14468. source: "./media/characters/susan/front.svg",
  14469. extra: 693 / 635,
  14470. bottom: 0.05
  14471. }
  14472. },
  14473. },
  14474. [
  14475. {
  14476. name: "Megamacro",
  14477. height: math.unit(505, "miles"),
  14478. default: true
  14479. },
  14480. ]
  14481. ))
  14482. characterMakers.push(() => makeCharacter(
  14483. { name: "Raindrops", species: ["fox"], tags: ["anthro"] },
  14484. {
  14485. front: {
  14486. height: math.unit(6, "feet"),
  14487. weight: math.unit(150, "lb"),
  14488. name: "Front",
  14489. image: {
  14490. source: "./media/characters/raindrops/front.svg",
  14491. extra: 2655 / 2461,
  14492. bottom: 49 / 2705
  14493. }
  14494. },
  14495. back: {
  14496. height: math.unit(6, "feet"),
  14497. weight: math.unit(150, "lb"),
  14498. name: "Back",
  14499. image: {
  14500. source: "./media/characters/raindrops/back.svg",
  14501. extra: 2574 / 2400,
  14502. bottom: 65 / 2634
  14503. }
  14504. },
  14505. },
  14506. [
  14507. {
  14508. name: "Micro",
  14509. height: math.unit(6, "inches")
  14510. },
  14511. {
  14512. name: "Normal",
  14513. height: math.unit(6 + 2 / 12, "feet")
  14514. },
  14515. {
  14516. name: "Macro",
  14517. height: math.unit(131, "feet"),
  14518. default: true
  14519. },
  14520. {
  14521. name: "Megamacro",
  14522. height: math.unit(15, "miles")
  14523. },
  14524. {
  14525. name: "Gigamacro",
  14526. height: math.unit(4000, "miles")
  14527. },
  14528. {
  14529. name: "Teramacro",
  14530. height: math.unit(315000, "miles")
  14531. },
  14532. ]
  14533. ))
  14534. characterMakers.push(() => makeCharacter(
  14535. { name: "Tezwa", species: ["lion"], tags: ["anthro"] },
  14536. {
  14537. normal_front: {
  14538. height: math.unit(9 + 2/12, "feet"),
  14539. weight: math.unit(325, "kg"),
  14540. name: "Front",
  14541. image: {
  14542. source: "./media/characters/tezwa/normal-front.svg",
  14543. extra: 770/714,
  14544. bottom: 32/802
  14545. },
  14546. form: "normal",
  14547. },
  14548. normal_paw: {
  14549. height: math.unit(2.2, "feet"),
  14550. name: "Paw",
  14551. image: {
  14552. source: "./media/characters/tezwa/paw.svg"
  14553. },
  14554. form: "normal",
  14555. },
  14556. muscled_front: {
  14557. height: math.unit(916 + 8/12, "feet"),
  14558. weight: math.unit(500000, "tons"),
  14559. name: "Front",
  14560. image: {
  14561. source: "./media/characters/tezwa/muscled-front.svg",
  14562. extra: 1840/1697,
  14563. bottom: 29/1869
  14564. },
  14565. form: "muscled",
  14566. },
  14567. muscled_paw: {
  14568. height: math.unit(200, "feet"),
  14569. name: "Paw",
  14570. image: {
  14571. source: "./media/characters/tezwa/paw.svg"
  14572. },
  14573. form: "muscled",
  14574. },
  14575. },
  14576. [
  14577. {
  14578. name: "Normal",
  14579. height: math.unit(9 + 2 / 12, "feet"),
  14580. default: true,
  14581. form: "normal"
  14582. },
  14583. {
  14584. name: "Normal",
  14585. height: math.unit(916 + 8/12, "feet"),
  14586. default: true,
  14587. form: "muscled"
  14588. },
  14589. ],
  14590. {
  14591. "normal": {
  14592. name: "Normal",
  14593. default: true
  14594. },
  14595. "muscled": {
  14596. name: "Muscled",
  14597. },
  14598. }
  14599. ))
  14600. characterMakers.push(() => makeCharacter(
  14601. { name: "Typhus", species: ["typhlosion", "demon"], tags: ["anthro"] },
  14602. {
  14603. front: {
  14604. height: math.unit(58, "feet"),
  14605. weight: math.unit(89000, "lb"),
  14606. name: "Front",
  14607. image: {
  14608. source: "./media/characters/typhus/front.svg",
  14609. extra: 816 / 800,
  14610. bottom: 0.065
  14611. }
  14612. },
  14613. },
  14614. [
  14615. {
  14616. name: "Macro",
  14617. height: math.unit(58, "feet"),
  14618. default: true
  14619. },
  14620. ]
  14621. ))
  14622. characterMakers.push(() => makeCharacter(
  14623. { name: "Lyra Von Wulf", species: ["snake"], tags: ["anthro"] },
  14624. {
  14625. front: {
  14626. height: math.unit(12, "feet"),
  14627. weight: math.unit(6, "tonnes"),
  14628. name: "Front",
  14629. image: {
  14630. source: "./media/characters/lyra-von-wulf/front.svg",
  14631. extra: 1,
  14632. bottom: 0.10
  14633. }
  14634. },
  14635. frontMecha: {
  14636. height: math.unit(12, "feet"),
  14637. weight: math.unit(12, "tonnes"),
  14638. name: "Front (Mecha)",
  14639. image: {
  14640. source: "./media/characters/lyra-von-wulf/front-mecha.svg",
  14641. extra: 1,
  14642. bottom: 0.042
  14643. }
  14644. },
  14645. maw: {
  14646. height: math.unit(2.2, "feet"),
  14647. name: "Maw",
  14648. image: {
  14649. source: "./media/characters/lyra-von-wulf/maw.svg"
  14650. }
  14651. },
  14652. },
  14653. [
  14654. {
  14655. name: "Normal",
  14656. height: math.unit(12, "feet"),
  14657. default: true
  14658. },
  14659. {
  14660. name: "Classic",
  14661. height: math.unit(50, "feet")
  14662. },
  14663. {
  14664. name: "Macro",
  14665. height: math.unit(500, "feet")
  14666. },
  14667. {
  14668. name: "Megamacro",
  14669. height: math.unit(1, "mile")
  14670. },
  14671. {
  14672. name: "Gigamacro",
  14673. height: math.unit(400, "miles")
  14674. },
  14675. {
  14676. name: "Teramacro",
  14677. height: math.unit(22000, "miles")
  14678. },
  14679. {
  14680. name: "Solarmacro",
  14681. height: math.unit(8600000, "miles")
  14682. },
  14683. {
  14684. name: "Galactic",
  14685. height: math.unit(1057000, "lightyears")
  14686. },
  14687. ]
  14688. ))
  14689. characterMakers.push(() => makeCharacter(
  14690. { name: "Dixon", species: ["canine"], tags: ["anthro"] },
  14691. {
  14692. front: {
  14693. height: math.unit(6 + 10 / 12, "feet"),
  14694. weight: math.unit(150, "lb"),
  14695. name: "Front",
  14696. image: {
  14697. source: "./media/characters/dixon/front.svg",
  14698. extra: 3361 / 3209,
  14699. bottom: 0.01
  14700. }
  14701. },
  14702. },
  14703. [
  14704. {
  14705. name: "Normal",
  14706. height: math.unit(6 + 10 / 12, "feet"),
  14707. default: true
  14708. },
  14709. {
  14710. name: "Big",
  14711. height: math.unit(12, "meters")
  14712. },
  14713. {
  14714. name: "Macro",
  14715. height: math.unit(500, "meters")
  14716. },
  14717. {
  14718. name: "Megamacro",
  14719. height: math.unit(2, "km")
  14720. },
  14721. ]
  14722. ))
  14723. characterMakers.push(() => makeCharacter(
  14724. { name: "Kauko", species: ["wolf", "king-cheetah"], tags: ["anthro"] },
  14725. {
  14726. kingCheetah_front: {
  14727. height: math.unit(1.85, "meters"),
  14728. weight: math.unit(68, "kg"),
  14729. name: "Front",
  14730. image: {
  14731. source: "./media/characters/kauko/king-cheetah-front.svg",
  14732. extra: 1007/972,
  14733. bottom: 35/1042
  14734. },
  14735. form: "king-cheetah",
  14736. default: true
  14737. },
  14738. kingCheetah_back: {
  14739. height: math.unit(1.85, "meters"),
  14740. weight: math.unit(68, "kg"),
  14741. name: "Back",
  14742. image: {
  14743. source: "./media/characters/kauko/king-cheetah-back.svg",
  14744. extra: 1015/980,
  14745. bottom: 11/1026
  14746. },
  14747. form: "king-cheetah",
  14748. },
  14749. kingCheetah_hand: {
  14750. height: math.unit(0.23, "meters"),
  14751. name: "Hand",
  14752. image: {
  14753. source: "./media/characters/kauko/king-cheetah-hand.svg"
  14754. },
  14755. form: "king-cheetah",
  14756. },
  14757. kingCheetah_paw: {
  14758. height: math.unit(0.38, "meters"),
  14759. name: "Paw",
  14760. image: {
  14761. source: "./media/characters/kauko/king-cheetah-paw.svg"
  14762. },
  14763. form: "king-cheetah",
  14764. },
  14765. kingCheetah_nape: {
  14766. height: math.unit(0.23, "meters"),
  14767. name: "Nape",
  14768. image: {
  14769. source: "./media/characters/kauko/king-cheetah-nape.svg"
  14770. },
  14771. form: "king-cheetah",
  14772. },
  14773. wolf_front: {
  14774. height: math.unit(1.88, "meters"),
  14775. weight: math.unit(74, "kg"),
  14776. name: "Front",
  14777. image: {
  14778. source: "./media/characters/kauko/wolf-front.svg",
  14779. extra: 952/908,
  14780. bottom: 64/1016
  14781. },
  14782. form: "wolf",
  14783. default: true
  14784. },
  14785. wolf_dressed: {
  14786. height: math.unit(1.88, "meters"),
  14787. weight: math.unit(74, "kg"),
  14788. name: "Dressed",
  14789. image: {
  14790. source: "./media/characters/kauko/wolf-dressed.svg",
  14791. extra: 963/916,
  14792. bottom: 101/1064
  14793. },
  14794. form: "wolf",
  14795. },
  14796. wolf_hand: {
  14797. height: math.unit(0.3, "meters"),
  14798. name: "Hand",
  14799. image: {
  14800. source: "./media/characters/kauko/wolf-hand.svg"
  14801. },
  14802. form: "wolf",
  14803. },
  14804. wolf_paw: {
  14805. height: math.unit(0.407, "meters"),
  14806. name: "Paw",
  14807. image: {
  14808. source: "./media/characters/kauko/wolf-paw.svg"
  14809. },
  14810. form: "wolf",
  14811. },
  14812. wolf_nape: {
  14813. height: math.unit(0.25, "meters"),
  14814. name: "Nape",
  14815. image: {
  14816. source: "./media/characters/kauko/wolf-nape.svg"
  14817. },
  14818. form: "wolf",
  14819. },
  14820. },
  14821. [
  14822. {
  14823. name: "Normal",
  14824. height: math.unit(1.85, "m"),
  14825. default: true,
  14826. form: "king-cheetah"
  14827. },
  14828. {
  14829. name: "Normal",
  14830. height: math.unit(1.88, "m"),
  14831. default: true,
  14832. form: "wolf"
  14833. },
  14834. ],
  14835. {
  14836. "king-cheetah": {
  14837. name: "King Cheetah",
  14838. default: true
  14839. },
  14840. "wolf": {
  14841. name: "Wolf",
  14842. },
  14843. }
  14844. ))
  14845. characterMakers.push(() => makeCharacter(
  14846. { name: "Varg", species: ["dragon"], tags: ["anthro"] },
  14847. {
  14848. frontSfw: {
  14849. height: math.unit(5, "meters"),
  14850. weight: math.unit(4250, "lb"),
  14851. name: "Front",
  14852. image: {
  14853. source: "./media/characters/varg/front-sfw.svg",
  14854. extra: 1103/1010,
  14855. bottom: 50/1153
  14856. },
  14857. form: "anthro",
  14858. default: true
  14859. },
  14860. backSfw: {
  14861. height: math.unit(5, "meters"),
  14862. weight: math.unit(4250, "lb"),
  14863. name: "Back",
  14864. image: {
  14865. source: "./media/characters/varg/back-sfw.svg",
  14866. extra: 1038/1022,
  14867. bottom: 36/1074
  14868. },
  14869. form: "anthro"
  14870. },
  14871. frontNsfw: {
  14872. height: math.unit(5, "meters"),
  14873. weight: math.unit(4250, "lb"),
  14874. name: "Front (NSFW)",
  14875. image: {
  14876. source: "./media/characters/varg/front-nsfw.svg",
  14877. extra: 1103/1010,
  14878. bottom: 50/1153
  14879. },
  14880. form: "anthro"
  14881. },
  14882. sheath: {
  14883. height: math.unit(3.8, "feet"),
  14884. weight: math.unit(90, "kilograms"),
  14885. name: "Sheath",
  14886. image: {
  14887. source: "./media/characters/varg/sheath.svg"
  14888. },
  14889. form: "anthro"
  14890. },
  14891. dick: {
  14892. height: math.unit(4.6, "feet"),
  14893. weight: math.unit(451, "kilograms"),
  14894. name: "Dick",
  14895. image: {
  14896. source: "./media/characters/varg/dick.svg"
  14897. },
  14898. form: "anthro"
  14899. },
  14900. feralSfw: {
  14901. height: math.unit(5, "meters"),
  14902. weight: math.unit(100000, "lb"),
  14903. name: "Side",
  14904. image: {
  14905. source: "./media/characters/varg/feral-sfw.svg",
  14906. extra: 1065/511,
  14907. bottom: 211/1276
  14908. },
  14909. form: "feral",
  14910. default: true
  14911. },
  14912. feralNsfw: {
  14913. height: math.unit(5, "meters"),
  14914. weight: math.unit(100000, "lb"),
  14915. name: "Side (NSFW)",
  14916. image: {
  14917. source: "./media/characters/varg/feral-nsfw.svg",
  14918. extra: 1065/511,
  14919. bottom: 211/1276
  14920. },
  14921. form: "feral",
  14922. },
  14923. feralSheath: {
  14924. height: math.unit(9.8, "feet"),
  14925. weight: math.unit(2000, "kilograms"),
  14926. name: "Sheath",
  14927. image: {
  14928. source: "./media/characters/varg/sheath.svg"
  14929. },
  14930. form: "feral"
  14931. },
  14932. feralDick: {
  14933. height: math.unit(13.11, "feet"),
  14934. weight: math.unit(10440, "kilograms"),
  14935. name: "Dick",
  14936. image: {
  14937. source: "./media/characters/varg/dick.svg"
  14938. },
  14939. form: "feral"
  14940. },
  14941. },
  14942. [
  14943. {
  14944. name: "Normal",
  14945. height: math.unit(5, "meters"),
  14946. form: "anthro"
  14947. },
  14948. {
  14949. name: "Macro",
  14950. height: math.unit(200, "meters"),
  14951. form: "anthro"
  14952. },
  14953. {
  14954. name: "Megamacro",
  14955. height: math.unit(20, "kilometers"),
  14956. form: "anthro"
  14957. },
  14958. {
  14959. name: "True Size",
  14960. height: math.unit(211, "km"),
  14961. form: "anthro",
  14962. default: true
  14963. },
  14964. {
  14965. name: "Gigamacro",
  14966. height: math.unit(1000, "km"),
  14967. form: "anthro"
  14968. },
  14969. {
  14970. name: "Gigamacro+",
  14971. height: math.unit(8000, "km"),
  14972. form: "anthro"
  14973. },
  14974. {
  14975. name: "Teramacro",
  14976. height: math.unit(1000000, "km"),
  14977. form: "anthro"
  14978. },
  14979. {
  14980. name: "Normal",
  14981. height: math.unit(5, "meters"),
  14982. form: "feral"
  14983. },
  14984. {
  14985. name: "Macro",
  14986. height: math.unit(200, "meters"),
  14987. form: "feral"
  14988. },
  14989. {
  14990. name: "Megamacro",
  14991. height: math.unit(20, "kilometers"),
  14992. form: "feral"
  14993. },
  14994. {
  14995. name: "True Size",
  14996. height: math.unit(211, "km"),
  14997. form: "feral",
  14998. default: true
  14999. },
  15000. {
  15001. name: "Gigamacro",
  15002. height: math.unit(1000, "km"),
  15003. form: "feral"
  15004. },
  15005. {
  15006. name: "Gigamacro+",
  15007. height: math.unit(8000, "km"),
  15008. form: "feral"
  15009. },
  15010. {
  15011. name: "Teramacro",
  15012. height: math.unit(1000000, "km"),
  15013. form: "feral"
  15014. },
  15015. ],
  15016. {
  15017. "anthro": {
  15018. name: "Anthro",
  15019. default: true
  15020. },
  15021. "feral": {
  15022. name: "Feral",
  15023. },
  15024. }
  15025. ))
  15026. characterMakers.push(() => makeCharacter(
  15027. { name: "Dayza", species: ["sergal"], tags: ["anthro"] },
  15028. {
  15029. front: {
  15030. height: math.unit(7 + 7 / 12, "feet"),
  15031. weight: math.unit(267, "lb"),
  15032. name: "Front",
  15033. image: {
  15034. source: "./media/characters/dayza/front.svg",
  15035. extra: 1262 / 1200,
  15036. bottom: 0.035
  15037. }
  15038. },
  15039. side: {
  15040. height: math.unit(7 + 7 / 12, "feet"),
  15041. weight: math.unit(267, "lb"),
  15042. name: "Side",
  15043. image: {
  15044. source: "./media/characters/dayza/side.svg",
  15045. extra: 1295 / 1245,
  15046. bottom: 0.05
  15047. }
  15048. },
  15049. back: {
  15050. height: math.unit(7 + 7 / 12, "feet"),
  15051. weight: math.unit(267, "lb"),
  15052. name: "Back",
  15053. image: {
  15054. source: "./media/characters/dayza/back.svg",
  15055. extra: 1241 / 1170
  15056. }
  15057. },
  15058. },
  15059. [
  15060. {
  15061. name: "Normal",
  15062. height: math.unit(7 + 7 / 12, "feet"),
  15063. default: true
  15064. },
  15065. {
  15066. name: "Macro",
  15067. height: math.unit(155, "feet")
  15068. },
  15069. ]
  15070. ))
  15071. characterMakers.push(() => makeCharacter(
  15072. { name: "Xanthos", species: ["xenomorph"], tags: ["anthro"] },
  15073. {
  15074. front: {
  15075. height: math.unit(6 + 5 / 12, "feet"),
  15076. weight: math.unit(160, "lb"),
  15077. name: "Front",
  15078. image: {
  15079. source: "./media/characters/xanthos/front.svg",
  15080. extra: 1,
  15081. bottom: 0.04
  15082. }
  15083. },
  15084. back: {
  15085. height: math.unit(6 + 5 / 12, "feet"),
  15086. weight: math.unit(160, "lb"),
  15087. name: "Back",
  15088. image: {
  15089. source: "./media/characters/xanthos/back.svg",
  15090. extra: 1,
  15091. bottom: 0.03
  15092. }
  15093. },
  15094. hand: {
  15095. height: math.unit(0.928, "feet"),
  15096. name: "Hand",
  15097. image: {
  15098. source: "./media/characters/xanthos/hand.svg"
  15099. }
  15100. },
  15101. foot: {
  15102. height: math.unit(1.286, "feet"),
  15103. name: "Foot",
  15104. image: {
  15105. source: "./media/characters/xanthos/foot.svg"
  15106. }
  15107. },
  15108. },
  15109. [
  15110. {
  15111. name: "Normal",
  15112. height: math.unit(6 + 5 / 12, "feet"),
  15113. default: true
  15114. },
  15115. {
  15116. name: "Normal+",
  15117. height: math.unit(6, "meters")
  15118. },
  15119. {
  15120. name: "Macro",
  15121. height: math.unit(40, "feet")
  15122. },
  15123. {
  15124. name: "Macro+",
  15125. height: math.unit(200, "meters")
  15126. },
  15127. {
  15128. name: "Megamacro",
  15129. height: math.unit(20, "km")
  15130. },
  15131. {
  15132. name: "Megamacro+",
  15133. height: math.unit(100, "km")
  15134. },
  15135. {
  15136. name: "Gigamacro",
  15137. height: math.unit(200, "megameters")
  15138. },
  15139. {
  15140. name: "Gigamacro+",
  15141. height: math.unit(1.5, "gigameters")
  15142. },
  15143. ]
  15144. ))
  15145. characterMakers.push(() => makeCharacter(
  15146. { name: "Grynn", species: ["charr"], tags: ["anthro"] },
  15147. {
  15148. front: {
  15149. height: math.unit(6 + 3 / 12, "feet"),
  15150. weight: math.unit(215, "lb"),
  15151. name: "Front",
  15152. image: {
  15153. source: "./media/characters/grynn/front.svg",
  15154. extra: 4627 / 4209,
  15155. bottom: 0.047
  15156. }
  15157. },
  15158. },
  15159. [
  15160. {
  15161. name: "Micro",
  15162. height: math.unit(6, "inches")
  15163. },
  15164. {
  15165. name: "Normal",
  15166. height: math.unit(6 + 3 / 12, "feet"),
  15167. default: true
  15168. },
  15169. {
  15170. name: "Big",
  15171. height: math.unit(104, "feet")
  15172. },
  15173. {
  15174. name: "Macro",
  15175. height: math.unit(944, "feet")
  15176. },
  15177. {
  15178. name: "Macro+",
  15179. height: math.unit(9480, "feet")
  15180. },
  15181. {
  15182. name: "Megamacro",
  15183. height: math.unit(78752, "feet")
  15184. },
  15185. {
  15186. name: "Megamacro+",
  15187. height: math.unit(630128, "feet")
  15188. },
  15189. {
  15190. name: "Megamacro++",
  15191. height: math.unit(3150695, "feet")
  15192. },
  15193. ]
  15194. ))
  15195. characterMakers.push(() => makeCharacter(
  15196. { name: "Mocha Aura", species: ["siberian-husky"], tags: ["anthro"] },
  15197. {
  15198. front: {
  15199. height: math.unit(7 + 5 / 12, "feet"),
  15200. weight: math.unit(450, "lb"),
  15201. name: "Front",
  15202. image: {
  15203. source: "./media/characters/mocha-aura/front.svg",
  15204. extra: 1907 / 1817,
  15205. bottom: 0.04
  15206. }
  15207. },
  15208. back: {
  15209. height: math.unit(7 + 5 / 12, "feet"),
  15210. weight: math.unit(450, "lb"),
  15211. name: "Back",
  15212. image: {
  15213. source: "./media/characters/mocha-aura/back.svg",
  15214. extra: 1900 / 1825,
  15215. bottom: 0.045
  15216. }
  15217. },
  15218. },
  15219. [
  15220. {
  15221. name: "Nano",
  15222. height: math.unit(1, "nm")
  15223. },
  15224. {
  15225. name: "Megamicro",
  15226. height: math.unit(1, "mm")
  15227. },
  15228. {
  15229. name: "Micro",
  15230. height: math.unit(3, "inches")
  15231. },
  15232. {
  15233. name: "Normal",
  15234. height: math.unit(7 + 5 / 12, "feet"),
  15235. default: true
  15236. },
  15237. {
  15238. name: "Macro",
  15239. height: math.unit(30, "feet")
  15240. },
  15241. {
  15242. name: "Megamacro",
  15243. height: math.unit(3500, "feet")
  15244. },
  15245. {
  15246. name: "Teramacro",
  15247. height: math.unit(500000, "miles")
  15248. },
  15249. {
  15250. name: "Petamacro",
  15251. height: math.unit(50000000000000000, "parsecs")
  15252. },
  15253. ]
  15254. ))
  15255. characterMakers.push(() => makeCharacter(
  15256. { name: "Ilisha Devya", species: ["alligator", "cobra", "deity"], tags: ["anthro"] },
  15257. {
  15258. front: {
  15259. height: math.unit(6, "feet"),
  15260. weight: math.unit(150, "lb"),
  15261. name: "Front",
  15262. image: {
  15263. source: "./media/characters/ilisha-devya/front.svg",
  15264. extra: 1053/1049,
  15265. bottom: 270/1323
  15266. }
  15267. },
  15268. back: {
  15269. height: math.unit(6, "feet"),
  15270. weight: math.unit(150, "lb"),
  15271. name: "Back",
  15272. image: {
  15273. source: "./media/characters/ilisha-devya/back.svg",
  15274. extra: 1131/1128,
  15275. bottom: 39/1170
  15276. }
  15277. },
  15278. },
  15279. [
  15280. {
  15281. name: "Macro",
  15282. height: math.unit(500, "feet"),
  15283. default: true
  15284. },
  15285. {
  15286. name: "Megamacro",
  15287. height: math.unit(10, "miles")
  15288. },
  15289. {
  15290. name: "Gigamacro",
  15291. height: math.unit(100000, "miles")
  15292. },
  15293. {
  15294. name: "Examacro",
  15295. height: math.unit(1e9, "lightyears")
  15296. },
  15297. {
  15298. name: "Omniversal",
  15299. height: math.unit(1e33, "lightyears")
  15300. },
  15301. {
  15302. name: "Beyond Infinite",
  15303. height: math.unit(1e100, "lightyears")
  15304. },
  15305. ]
  15306. ))
  15307. characterMakers.push(() => makeCharacter(
  15308. { name: "Mira", species: ["dragon"], tags: ["anthro"] },
  15309. {
  15310. Side: {
  15311. height: math.unit(6, "feet"),
  15312. weight: math.unit(150, "lb"),
  15313. name: "Side",
  15314. image: {
  15315. source: "./media/characters/mira/side.svg",
  15316. extra: 900 / 799,
  15317. bottom: 0.02
  15318. }
  15319. },
  15320. },
  15321. [
  15322. {
  15323. name: "Human Size",
  15324. height: math.unit(6, "feet")
  15325. },
  15326. {
  15327. name: "Macro",
  15328. height: math.unit(100, "feet"),
  15329. default: true
  15330. },
  15331. {
  15332. name: "Megamacro",
  15333. height: math.unit(10, "miles")
  15334. },
  15335. {
  15336. name: "Gigamacro",
  15337. height: math.unit(25000, "miles")
  15338. },
  15339. {
  15340. name: "Teramacro",
  15341. height: math.unit(300, "AU")
  15342. },
  15343. {
  15344. name: "Full Size",
  15345. height: math.unit(4.5e10, "lightyears")
  15346. },
  15347. ]
  15348. ))
  15349. characterMakers.push(() => makeCharacter(
  15350. { name: "Holly", species: ["hyena"], tags: ["anthro"] },
  15351. {
  15352. front: {
  15353. height: math.unit(6, "feet"),
  15354. weight: math.unit(150, "lb"),
  15355. name: "Front",
  15356. image: {
  15357. source: "./media/characters/holly/front.svg",
  15358. extra: 639 / 606
  15359. }
  15360. },
  15361. back: {
  15362. height: math.unit(6, "feet"),
  15363. weight: math.unit(150, "lb"),
  15364. name: "Back",
  15365. image: {
  15366. source: "./media/characters/holly/back.svg",
  15367. extra: 623 / 598
  15368. }
  15369. },
  15370. frontWorking: {
  15371. height: math.unit(6, "feet"),
  15372. weight: math.unit(150, "lb"),
  15373. name: "Front (Working)",
  15374. image: {
  15375. source: "./media/characters/holly/front-working.svg",
  15376. extra: 607 / 577,
  15377. bottom: 0.048
  15378. }
  15379. },
  15380. },
  15381. [
  15382. {
  15383. name: "Normal",
  15384. height: math.unit(12 + 3 / 12, "feet"),
  15385. default: true
  15386. },
  15387. ]
  15388. ))
  15389. characterMakers.push(() => makeCharacter(
  15390. { name: "Porter", species: ["bernese-mountain-dog"], tags: ["anthro"] },
  15391. {
  15392. front: {
  15393. height: math.unit(6, "feet"),
  15394. weight: math.unit(150, "lb"),
  15395. name: "Front",
  15396. image: {
  15397. source: "./media/characters/porter/front.svg",
  15398. extra: 1,
  15399. bottom: 0.01
  15400. }
  15401. },
  15402. frontRobes: {
  15403. height: math.unit(6, "feet"),
  15404. weight: math.unit(150, "lb"),
  15405. name: "Front (Robes)",
  15406. image: {
  15407. source: "./media/characters/porter/front-robes.svg",
  15408. extra: 1.01,
  15409. bottom: 0.01
  15410. }
  15411. },
  15412. },
  15413. [
  15414. {
  15415. name: "Normal",
  15416. height: math.unit(11 + 9 / 12, "feet"),
  15417. default: true
  15418. },
  15419. ]
  15420. ))
  15421. characterMakers.push(() => makeCharacter(
  15422. { name: "Lucy", species: ["reshiram"], tags: ["anthro"] },
  15423. {
  15424. legendary: {
  15425. height: math.unit(6, "feet"),
  15426. weight: math.unit(150, "lb"),
  15427. name: "Legendary",
  15428. image: {
  15429. source: "./media/characters/lucy/legendary.svg",
  15430. extra: 1355 / 1100,
  15431. bottom: 0.045
  15432. }
  15433. },
  15434. },
  15435. [
  15436. {
  15437. name: "Legendary",
  15438. height: math.unit(86882 * 2, "miles"),
  15439. default: true
  15440. },
  15441. ]
  15442. ))
  15443. characterMakers.push(() => makeCharacter(
  15444. { name: "Drusilla", species: ["grizzly-bear", "fox"], tags: ["anthro"] },
  15445. {
  15446. front: {
  15447. height: math.unit(6, "feet"),
  15448. weight: math.unit(150, "lb"),
  15449. name: "Front",
  15450. image: {
  15451. source: "./media/characters/drusilla/front.svg",
  15452. extra: 678 / 635,
  15453. bottom: 0.03
  15454. }
  15455. },
  15456. back: {
  15457. height: math.unit(6, "feet"),
  15458. weight: math.unit(150, "lb"),
  15459. name: "Back",
  15460. image: {
  15461. source: "./media/characters/drusilla/back.svg",
  15462. extra: 678 / 635,
  15463. bottom: 0.005
  15464. }
  15465. },
  15466. },
  15467. [
  15468. {
  15469. name: "Macro",
  15470. height: math.unit(100, "feet")
  15471. },
  15472. {
  15473. name: "Canon Height",
  15474. height: math.unit(2000, "feet"),
  15475. default: true
  15476. },
  15477. ]
  15478. ))
  15479. characterMakers.push(() => makeCharacter(
  15480. { name: "Renard Thatch", species: ["fox"], tags: ["anthro"] },
  15481. {
  15482. front: {
  15483. height: math.unit(6, "feet"),
  15484. weight: math.unit(180, "lb"),
  15485. name: "Front",
  15486. image: {
  15487. source: "./media/characters/renard-thatch/front.svg",
  15488. extra: 2411 / 2275,
  15489. bottom: 0.01
  15490. }
  15491. },
  15492. frontPosing: {
  15493. height: math.unit(6, "feet"),
  15494. weight: math.unit(180, "lb"),
  15495. name: "Front (Posing)",
  15496. image: {
  15497. source: "./media/characters/renard-thatch/front-posing.svg",
  15498. extra: 2381 / 2261,
  15499. bottom: 0.01
  15500. }
  15501. },
  15502. back: {
  15503. height: math.unit(6, "feet"),
  15504. weight: math.unit(180, "lb"),
  15505. name: "Back",
  15506. image: {
  15507. source: "./media/characters/renard-thatch/back.svg",
  15508. extra: 2428 / 2288
  15509. }
  15510. },
  15511. },
  15512. [
  15513. {
  15514. name: "Micro",
  15515. height: math.unit(3, "inches")
  15516. },
  15517. {
  15518. name: "Default",
  15519. height: math.unit(6, "feet"),
  15520. default: true
  15521. },
  15522. {
  15523. name: "Macro",
  15524. height: math.unit(75, "feet")
  15525. },
  15526. ]
  15527. ))
  15528. characterMakers.push(() => makeCharacter(
  15529. { name: "Sekvra", species: ["water-monitor"], tags: ["anthro"] },
  15530. {
  15531. front: {
  15532. height: math.unit(1450, "feet"),
  15533. weight: math.unit(1.21e6, "tons"),
  15534. name: "Front",
  15535. image: {
  15536. source: "./media/characters/sekvra/front.svg",
  15537. extra: 1193/1190,
  15538. bottom: 78/1271
  15539. }
  15540. },
  15541. side: {
  15542. height: math.unit(1450, "feet"),
  15543. weight: math.unit(1.21e6, "tons"),
  15544. name: "Side",
  15545. image: {
  15546. source: "./media/characters/sekvra/side.svg",
  15547. extra: 1193/1190,
  15548. bottom: 52/1245
  15549. }
  15550. },
  15551. back: {
  15552. height: math.unit(1450, "feet"),
  15553. weight: math.unit(1.21e6, "tons"),
  15554. name: "Back",
  15555. image: {
  15556. source: "./media/characters/sekvra/back.svg",
  15557. extra: 1219/1216,
  15558. bottom: 21/1240
  15559. }
  15560. },
  15561. frontClothed: {
  15562. height: math.unit(1450, "feet"),
  15563. weight: math.unit(1.21e6, "tons"),
  15564. name: "Front (Clothed)",
  15565. image: {
  15566. source: "./media/characters/sekvra/front-clothed.svg",
  15567. extra: 1192/1189,
  15568. bottom: 79/1271
  15569. }
  15570. },
  15571. },
  15572. [
  15573. {
  15574. name: "Macro",
  15575. height: math.unit(1450, "feet"),
  15576. default: true
  15577. },
  15578. {
  15579. name: "Megamacro",
  15580. height: math.unit(15000, "feet")
  15581. },
  15582. ]
  15583. ))
  15584. characterMakers.push(() => makeCharacter(
  15585. { name: "Carmine", species: ["otter"], tags: ["anthro"] },
  15586. {
  15587. front: {
  15588. height: math.unit(6, "feet"),
  15589. weight: math.unit(150, "lb"),
  15590. name: "Front",
  15591. image: {
  15592. source: "./media/characters/carmine/front.svg",
  15593. extra: 1557/1538,
  15594. bottom: 68/1625
  15595. }
  15596. },
  15597. frontArmor: {
  15598. height: math.unit(6, "feet"),
  15599. weight: math.unit(150, "lb"),
  15600. name: "Front (Armor)",
  15601. image: {
  15602. source: "./media/characters/carmine/front-armor.svg",
  15603. extra: 1549/1530,
  15604. bottom: 82/1631
  15605. }
  15606. },
  15607. mouth: {
  15608. height: math.unit(0.55, "feet"),
  15609. name: "Mouth",
  15610. image: {
  15611. source: "./media/characters/carmine/mouth.svg"
  15612. }
  15613. },
  15614. hand: {
  15615. height: math.unit(1.05, "feet"),
  15616. name: "Hand",
  15617. image: {
  15618. source: "./media/characters/carmine/hand.svg"
  15619. }
  15620. },
  15621. foot: {
  15622. height: math.unit(0.6, "feet"),
  15623. name: "Foot",
  15624. image: {
  15625. source: "./media/characters/carmine/foot.svg"
  15626. }
  15627. },
  15628. },
  15629. [
  15630. {
  15631. name: "Large",
  15632. height: math.unit(1, "mile")
  15633. },
  15634. {
  15635. name: "Huge",
  15636. height: math.unit(40, "miles"),
  15637. default: true
  15638. },
  15639. {
  15640. name: "Colossal",
  15641. height: math.unit(2500, "miles")
  15642. },
  15643. ]
  15644. ))
  15645. characterMakers.push(() => makeCharacter(
  15646. { name: "Elyssia", species: ["banchofossa"], tags: ["anthro"] },
  15647. {
  15648. front: {
  15649. height: math.unit(6, "feet"),
  15650. weight: math.unit(150, "lb"),
  15651. name: "Front",
  15652. image: {
  15653. source: "./media/characters/elyssia/front.svg",
  15654. extra: 2201 / 2035,
  15655. bottom: 0.05
  15656. }
  15657. },
  15658. frontClothed: {
  15659. height: math.unit(6, "feet"),
  15660. weight: math.unit(150, "lb"),
  15661. name: "Front (Clothed)",
  15662. image: {
  15663. source: "./media/characters/elyssia/front-clothed.svg",
  15664. extra: 2201 / 2035,
  15665. bottom: 0.05
  15666. }
  15667. },
  15668. back: {
  15669. height: math.unit(6, "feet"),
  15670. weight: math.unit(150, "lb"),
  15671. name: "Back",
  15672. image: {
  15673. source: "./media/characters/elyssia/back.svg",
  15674. extra: 2201 / 2035,
  15675. bottom: 0.013
  15676. }
  15677. },
  15678. },
  15679. [
  15680. {
  15681. name: "Smaller",
  15682. height: math.unit(150, "feet")
  15683. },
  15684. {
  15685. name: "Standard",
  15686. height: math.unit(1400, "feet"),
  15687. default: true
  15688. },
  15689. {
  15690. name: "Distracted",
  15691. height: math.unit(15000, "feet")
  15692. },
  15693. ]
  15694. ))
  15695. characterMakers.push(() => makeCharacter(
  15696. { name: "Geno Maxwell", species: ["kirin"], tags: ["anthro"] },
  15697. {
  15698. front: {
  15699. height: math.unit(7 + 4/12, "feet"),
  15700. weight: math.unit(690, "lb"),
  15701. name: "Front",
  15702. image: {
  15703. source: "./media/characters/geno-maxwell/front.svg",
  15704. extra: 984/856,
  15705. bottom: 87/1071
  15706. }
  15707. },
  15708. back: {
  15709. height: math.unit(7 + 4/12, "feet"),
  15710. weight: math.unit(690, "lb"),
  15711. name: "Back",
  15712. image: {
  15713. source: "./media/characters/geno-maxwell/back.svg",
  15714. extra: 981/854,
  15715. bottom: 57/1038
  15716. }
  15717. },
  15718. frontCostume: {
  15719. height: math.unit(7 + 4/12, "feet"),
  15720. weight: math.unit(690, "lb"),
  15721. name: "Front (Costume)",
  15722. image: {
  15723. source: "./media/characters/geno-maxwell/front-costume.svg",
  15724. extra: 984/856,
  15725. bottom: 87/1071
  15726. }
  15727. },
  15728. backcostume: {
  15729. height: math.unit(7 + 4/12, "feet"),
  15730. weight: math.unit(690, "lb"),
  15731. name: "Back (Costume)",
  15732. image: {
  15733. source: "./media/characters/geno-maxwell/back-costume.svg",
  15734. extra: 981/854,
  15735. bottom: 57/1038
  15736. }
  15737. },
  15738. },
  15739. [
  15740. {
  15741. name: "Micro",
  15742. height: math.unit(3, "inches")
  15743. },
  15744. {
  15745. name: "Normal",
  15746. height: math.unit(7 + 4 / 12, "feet"),
  15747. default: true
  15748. },
  15749. {
  15750. name: "Macro",
  15751. height: math.unit(220, "feet")
  15752. },
  15753. {
  15754. name: "Megamacro",
  15755. height: math.unit(11, "miles")
  15756. },
  15757. ]
  15758. ))
  15759. characterMakers.push(() => makeCharacter(
  15760. { name: "Regena Maxwell", species: ["kirin"], tags: ["anthro"] },
  15761. {
  15762. front: {
  15763. height: math.unit(7 + 4/12, "feet"),
  15764. weight: math.unit(750, "lb"),
  15765. name: "Front",
  15766. image: {
  15767. source: "./media/characters/regena-maxwell/front.svg",
  15768. extra: 984/856,
  15769. bottom: 87/1071
  15770. }
  15771. },
  15772. back: {
  15773. height: math.unit(7 + 4/12, "feet"),
  15774. weight: math.unit(750, "lb"),
  15775. name: "Back",
  15776. image: {
  15777. source: "./media/characters/regena-maxwell/back.svg",
  15778. extra: 981/854,
  15779. bottom: 57/1038
  15780. }
  15781. },
  15782. frontCostume: {
  15783. height: math.unit(7 + 4/12, "feet"),
  15784. weight: math.unit(750, "lb"),
  15785. name: "Front (Costume)",
  15786. image: {
  15787. source: "./media/characters/regena-maxwell/front-costume.svg",
  15788. extra: 984/856,
  15789. bottom: 87/1071
  15790. }
  15791. },
  15792. backcostume: {
  15793. height: math.unit(7 + 4/12, "feet"),
  15794. weight: math.unit(750, "lb"),
  15795. name: "Back (Costume)",
  15796. image: {
  15797. source: "./media/characters/regena-maxwell/back-costume.svg",
  15798. extra: 981/854,
  15799. bottom: 57/1038
  15800. }
  15801. },
  15802. },
  15803. [
  15804. {
  15805. name: "Normal",
  15806. height: math.unit(7 + 4 / 12, "feet"),
  15807. default: true
  15808. },
  15809. {
  15810. name: "Macro",
  15811. height: math.unit(220, "feet")
  15812. },
  15813. {
  15814. name: "Megamacro",
  15815. height: math.unit(11, "miles")
  15816. },
  15817. ]
  15818. ))
  15819. characterMakers.push(() => makeCharacter(
  15820. { name: "XGlidingDragonX", species: ["arcanine", "dragon", "phoenix"], tags: ["anthro"] },
  15821. {
  15822. front: {
  15823. height: math.unit(6, "feet"),
  15824. weight: math.unit(150, "lb"),
  15825. name: "Front",
  15826. image: {
  15827. source: "./media/characters/x-gliding-dragon-x/front.svg",
  15828. extra: 860 / 690,
  15829. bottom: 0.03
  15830. }
  15831. },
  15832. },
  15833. [
  15834. {
  15835. name: "Normal",
  15836. height: math.unit(1.7, "meters"),
  15837. default: true
  15838. },
  15839. ]
  15840. ))
  15841. characterMakers.push(() => makeCharacter(
  15842. { name: "Quilly", species: ["quilava"], tags: ["anthro"] },
  15843. {
  15844. front: {
  15845. height: math.unit(6, "feet"),
  15846. weight: math.unit(150, "lb"),
  15847. name: "Front",
  15848. image: {
  15849. source: "./media/characters/quilly/front.svg",
  15850. extra: 890 / 776
  15851. }
  15852. },
  15853. },
  15854. [
  15855. {
  15856. name: "Gigamacro",
  15857. height: math.unit(404090, "miles"),
  15858. default: true
  15859. },
  15860. ]
  15861. ))
  15862. characterMakers.push(() => makeCharacter(
  15863. { name: "Tempest", species: ["lugia"], tags: ["anthro"] },
  15864. {
  15865. front: {
  15866. height: math.unit(7 + 8 / 12, "feet"),
  15867. weight: math.unit(350, "lb"),
  15868. name: "Front",
  15869. image: {
  15870. source: "./media/characters/tempest/front.svg",
  15871. extra: 1175 / 1086,
  15872. bottom: 0.02
  15873. }
  15874. },
  15875. },
  15876. [
  15877. {
  15878. name: "Normal",
  15879. height: math.unit(7 + 8 / 12, "feet"),
  15880. default: true
  15881. },
  15882. ]
  15883. ))
  15884. characterMakers.push(() => makeCharacter(
  15885. { name: "Rodger", species: ["mouse"], tags: ["anthro"] },
  15886. {
  15887. side: {
  15888. height: math.unit(4 + 5 / 12, "feet"),
  15889. weight: math.unit(80, "lb"),
  15890. name: "Side",
  15891. image: {
  15892. source: "./media/characters/rodger/side.svg",
  15893. extra: 1235 / 1118
  15894. }
  15895. },
  15896. },
  15897. [
  15898. {
  15899. name: "Micro",
  15900. height: math.unit(1, "inch")
  15901. },
  15902. {
  15903. name: "Normal",
  15904. height: math.unit(4 + 5 / 12, "feet"),
  15905. default: true
  15906. },
  15907. {
  15908. name: "Macro",
  15909. height: math.unit(120, "feet")
  15910. },
  15911. ]
  15912. ))
  15913. characterMakers.push(() => makeCharacter(
  15914. { name: "Danyel", species: ["dragon"], tags: ["anthro"] },
  15915. {
  15916. front: {
  15917. height: math.unit(6, "feet"),
  15918. weight: math.unit(150, "lb"),
  15919. name: "Front",
  15920. image: {
  15921. source: "./media/characters/danyel/front.svg",
  15922. extra: 1185 / 1123,
  15923. bottom: 0.05
  15924. }
  15925. },
  15926. },
  15927. [
  15928. {
  15929. name: "Shrunken",
  15930. height: math.unit(0.5, "mm")
  15931. },
  15932. {
  15933. name: "Micro",
  15934. height: math.unit(1, "mm"),
  15935. default: true
  15936. },
  15937. {
  15938. name: "Upsized",
  15939. height: math.unit(5 + 5 / 12, "feet")
  15940. },
  15941. ]
  15942. ))
  15943. characterMakers.push(() => makeCharacter(
  15944. { name: "Vivian Bijoux", species: ["seviper"], tags: ["anthro"] },
  15945. {
  15946. front: {
  15947. height: math.unit(5 + 6 / 12, "feet"),
  15948. weight: math.unit(200, "lb"),
  15949. name: "Front",
  15950. image: {
  15951. source: "./media/characters/vivian-bijoux/front.svg",
  15952. extra: 1217/1209,
  15953. bottom: 76/1293
  15954. }
  15955. },
  15956. back: {
  15957. height: math.unit(5 + 6 / 12, "feet"),
  15958. weight: math.unit(200, "lb"),
  15959. name: "Back",
  15960. image: {
  15961. source: "./media/characters/vivian-bijoux/back.svg",
  15962. extra: 1214/1208,
  15963. bottom: 51/1265
  15964. }
  15965. },
  15966. dressed: {
  15967. height: math.unit(5 + 6 / 12, "feet"),
  15968. weight: math.unit(200, "lb"),
  15969. name: "Dressed",
  15970. image: {
  15971. source: "./media/characters/vivian-bijoux/dressed.svg",
  15972. extra: 1217/1209,
  15973. bottom: 76/1293
  15974. }
  15975. },
  15976. },
  15977. [
  15978. {
  15979. name: "Normal",
  15980. height: math.unit(5 + 6 / 12, "feet"),
  15981. default: true
  15982. },
  15983. {
  15984. name: "Bad Dream",
  15985. height: math.unit(500, "feet")
  15986. },
  15987. {
  15988. name: "Nightmare",
  15989. height: math.unit(500, "miles")
  15990. },
  15991. ]
  15992. ))
  15993. characterMakers.push(() => makeCharacter(
  15994. { name: "Zeta", species: ["bear", "otter"], tags: ["anthro"] },
  15995. {
  15996. front: {
  15997. height: math.unit(6 + 1 / 12, "feet"),
  15998. weight: math.unit(260, "lb"),
  15999. name: "Front",
  16000. image: {
  16001. source: "./media/characters/zeta/front.svg",
  16002. extra: 1968 / 1889,
  16003. bottom: 0.06
  16004. }
  16005. },
  16006. back: {
  16007. height: math.unit(6 + 1 / 12, "feet"),
  16008. weight: math.unit(260, "lb"),
  16009. name: "Back",
  16010. image: {
  16011. source: "./media/characters/zeta/back.svg",
  16012. extra: 1944 / 1858,
  16013. bottom: 0.03
  16014. }
  16015. },
  16016. hand: {
  16017. height: math.unit(1.112, "feet"),
  16018. name: "Hand",
  16019. image: {
  16020. source: "./media/characters/zeta/hand.svg"
  16021. }
  16022. },
  16023. foot: {
  16024. height: math.unit(1.48, "feet"),
  16025. name: "Foot",
  16026. image: {
  16027. source: "./media/characters/zeta/foot.svg"
  16028. }
  16029. },
  16030. },
  16031. [
  16032. {
  16033. name: "Micro",
  16034. height: math.unit(6, "inches")
  16035. },
  16036. {
  16037. name: "Normal",
  16038. height: math.unit(6 + 1 / 12, "feet"),
  16039. default: true
  16040. },
  16041. {
  16042. name: "Macro",
  16043. height: math.unit(20, "feet")
  16044. },
  16045. ]
  16046. ))
  16047. characterMakers.push(() => makeCharacter(
  16048. { name: "Jamie Larsen", species: ["rabbit"], tags: ["anthro"] },
  16049. {
  16050. front: {
  16051. height: math.unit(6, "feet"),
  16052. weight: math.unit(150, "lb"),
  16053. name: "Front",
  16054. image: {
  16055. source: "./media/characters/jamie-larsen/front.svg",
  16056. extra: 962 / 933,
  16057. bottom: 0.02
  16058. }
  16059. },
  16060. back: {
  16061. height: math.unit(6, "feet"),
  16062. weight: math.unit(150, "lb"),
  16063. name: "Back",
  16064. image: {
  16065. source: "./media/characters/jamie-larsen/back.svg",
  16066. extra: 997 / 946
  16067. }
  16068. },
  16069. },
  16070. [
  16071. {
  16072. name: "Macro",
  16073. height: math.unit(28 + 7 / 12, "feet"),
  16074. default: true
  16075. },
  16076. {
  16077. name: "Macro+",
  16078. height: math.unit(180, "feet")
  16079. },
  16080. {
  16081. name: "Megamacro",
  16082. height: math.unit(10, "miles")
  16083. },
  16084. {
  16085. name: "Gigamacro",
  16086. height: math.unit(200000, "miles")
  16087. },
  16088. ]
  16089. ))
  16090. characterMakers.push(() => makeCharacter(
  16091. { name: "Vance", species: ["flying-fox"], tags: ["anthro"] },
  16092. {
  16093. front: {
  16094. height: math.unit(6, "feet"),
  16095. weight: math.unit(120, "lb"),
  16096. name: "Front",
  16097. image: {
  16098. source: "./media/characters/vance/front.svg",
  16099. extra: 1980 / 1890,
  16100. bottom: 0.09
  16101. }
  16102. },
  16103. back: {
  16104. height: math.unit(6, "feet"),
  16105. weight: math.unit(120, "lb"),
  16106. name: "Back",
  16107. image: {
  16108. source: "./media/characters/vance/back.svg",
  16109. extra: 2081 / 1994,
  16110. bottom: 0.014
  16111. }
  16112. },
  16113. hand: {
  16114. height: math.unit(0.88, "feet"),
  16115. name: "Hand",
  16116. image: {
  16117. source: "./media/characters/vance/hand.svg"
  16118. }
  16119. },
  16120. foot: {
  16121. height: math.unit(0.64, "feet"),
  16122. name: "Foot",
  16123. image: {
  16124. source: "./media/characters/vance/foot.svg"
  16125. }
  16126. },
  16127. },
  16128. [
  16129. {
  16130. name: "Small",
  16131. height: math.unit(90, "feet"),
  16132. default: true
  16133. },
  16134. {
  16135. name: "Macro",
  16136. height: math.unit(100, "meters")
  16137. },
  16138. {
  16139. name: "Megamacro",
  16140. height: math.unit(15, "miles")
  16141. },
  16142. ]
  16143. ))
  16144. characterMakers.push(() => makeCharacter(
  16145. { name: "Xochitl", species: ["jaguar"], tags: ["anthro"] },
  16146. {
  16147. front: {
  16148. height: math.unit(6, "feet"),
  16149. weight: math.unit(180, "lb"),
  16150. name: "Front",
  16151. image: {
  16152. source: "./media/characters/xochitl/front.svg",
  16153. extra: 2297 / 2261,
  16154. bottom: 0.065
  16155. }
  16156. },
  16157. back: {
  16158. height: math.unit(6, "feet"),
  16159. weight: math.unit(180, "lb"),
  16160. name: "Back",
  16161. image: {
  16162. source: "./media/characters/xochitl/back.svg",
  16163. extra: 2386 / 2354,
  16164. bottom: 0.01
  16165. }
  16166. },
  16167. foot: {
  16168. height: math.unit(6 / 5 * 1.15, "feet"),
  16169. weight: math.unit(150, "lb"),
  16170. name: "Foot",
  16171. image: {
  16172. source: "./media/characters/xochitl/foot.svg"
  16173. }
  16174. },
  16175. },
  16176. [
  16177. {
  16178. name: "Macro",
  16179. height: math.unit(80, "feet")
  16180. },
  16181. {
  16182. name: "Macro+",
  16183. height: math.unit(400, "feet"),
  16184. default: true
  16185. },
  16186. {
  16187. name: "Gigamacro",
  16188. height: math.unit(80000, "miles")
  16189. },
  16190. {
  16191. name: "Gigamacro+",
  16192. height: math.unit(400000, "miles")
  16193. },
  16194. {
  16195. name: "Teramacro",
  16196. height: math.unit(300, "AU")
  16197. },
  16198. ]
  16199. ))
  16200. characterMakers.push(() => makeCharacter(
  16201. { name: "Vincent", species: ["egyptian-vulture"], tags: ["anthro"] },
  16202. {
  16203. front: {
  16204. height: math.unit(6, "feet"),
  16205. weight: math.unit(150, "lb"),
  16206. name: "Front",
  16207. image: {
  16208. source: "./media/characters/vincent/front.svg",
  16209. extra: 1130 / 1080,
  16210. bottom: 0.055
  16211. }
  16212. },
  16213. beak: {
  16214. height: math.unit(6 * 0.1, "feet"),
  16215. name: "Beak",
  16216. image: {
  16217. source: "./media/characters/vincent/beak.svg"
  16218. }
  16219. },
  16220. hand: {
  16221. height: math.unit(6 * 0.85, "feet"),
  16222. weight: math.unit(150, "lb"),
  16223. name: "Hand",
  16224. image: {
  16225. source: "./media/characters/vincent/hand.svg"
  16226. }
  16227. },
  16228. foot: {
  16229. height: math.unit(6 * 0.19, "feet"),
  16230. weight: math.unit(150, "lb"),
  16231. name: "Foot",
  16232. image: {
  16233. source: "./media/characters/vincent/foot.svg"
  16234. }
  16235. },
  16236. },
  16237. [
  16238. {
  16239. name: "Base",
  16240. height: math.unit(6 + 5 / 12, "feet"),
  16241. default: true
  16242. },
  16243. {
  16244. name: "Macro",
  16245. height: math.unit(300, "feet")
  16246. },
  16247. {
  16248. name: "Megamacro",
  16249. height: math.unit(2, "miles")
  16250. },
  16251. {
  16252. name: "Gigamacro",
  16253. height: math.unit(1000, "miles")
  16254. },
  16255. ]
  16256. ))
  16257. characterMakers.push(() => makeCharacter(
  16258. { name: "Coatl", species: ["dragon"], tags: ["anthro"] },
  16259. {
  16260. front: {
  16261. height: math.unit(2, "meters"),
  16262. weight: math.unit(500, "kg"),
  16263. name: "Front",
  16264. image: {
  16265. source: "./media/characters/coatl/front.svg",
  16266. extra: 3948 / 3500,
  16267. bottom: 0.082
  16268. }
  16269. },
  16270. },
  16271. [
  16272. {
  16273. name: "Normal",
  16274. height: math.unit(4, "meters")
  16275. },
  16276. {
  16277. name: "Macro",
  16278. height: math.unit(100, "meters"),
  16279. default: true
  16280. },
  16281. {
  16282. name: "Macro+",
  16283. height: math.unit(300, "meters")
  16284. },
  16285. {
  16286. name: "Megamacro",
  16287. height: math.unit(3, "gigameters")
  16288. },
  16289. {
  16290. name: "Megamacro+",
  16291. height: math.unit(300, "terameters")
  16292. },
  16293. {
  16294. name: "Megamacro++",
  16295. height: math.unit(3, "lightyears")
  16296. },
  16297. ]
  16298. ))
  16299. characterMakers.push(() => makeCharacter(
  16300. { name: "Shiroryu", species: ["dragon", "deity"], tags: ["anthro"] },
  16301. {
  16302. front: {
  16303. height: math.unit(6, "feet"),
  16304. weight: math.unit(50, "kg"),
  16305. name: "front",
  16306. image: {
  16307. source: "./media/characters/shiroryu/front.svg",
  16308. extra: 1990 / 1935
  16309. }
  16310. },
  16311. },
  16312. [
  16313. {
  16314. name: "Mortal Mingling",
  16315. height: math.unit(3, "meters")
  16316. },
  16317. {
  16318. name: "Kaiju-ish",
  16319. height: math.unit(250, "meters")
  16320. },
  16321. {
  16322. name: "Somewhat Godly",
  16323. height: math.unit(400, "km"),
  16324. default: true
  16325. },
  16326. {
  16327. name: "Planetary",
  16328. height: math.unit(300, "megameters")
  16329. },
  16330. {
  16331. name: "Galaxy-dwarfing",
  16332. height: math.unit(450, "kiloparsecs")
  16333. },
  16334. {
  16335. name: "Universe Eater",
  16336. height: math.unit(150, "gigaparsecs")
  16337. },
  16338. {
  16339. name: "Almost Immeasurable",
  16340. height: math.unit(1.3e266, "yottaparsecs")
  16341. },
  16342. ]
  16343. ))
  16344. characterMakers.push(() => makeCharacter(
  16345. { name: "Umeko", species: ["eastern-dragon"], tags: ["anthro"] },
  16346. {
  16347. front: {
  16348. height: math.unit(6, "feet"),
  16349. weight: math.unit(150, "lb"),
  16350. name: "Front",
  16351. image: {
  16352. source: "./media/characters/umeko/front.svg",
  16353. extra: 1,
  16354. bottom: 0.019
  16355. }
  16356. },
  16357. frontArmored: {
  16358. height: math.unit(6, "feet"),
  16359. weight: math.unit(150, "lb"),
  16360. name: "Front (Armored)",
  16361. image: {
  16362. source: "./media/characters/umeko/front-armored.svg",
  16363. extra: 1,
  16364. bottom: 0.021
  16365. }
  16366. },
  16367. },
  16368. [
  16369. {
  16370. name: "Macro",
  16371. height: math.unit(220, "feet"),
  16372. default: true
  16373. },
  16374. {
  16375. name: "Guardian Dragon",
  16376. height: math.unit(50, "miles")
  16377. },
  16378. {
  16379. name: "Cosmic",
  16380. height: math.unit(800000, "miles")
  16381. },
  16382. ]
  16383. ))
  16384. characterMakers.push(() => makeCharacter(
  16385. { name: "Cassidy", species: ["leopard-seal"], tags: ["anthro"] },
  16386. {
  16387. front: {
  16388. height: math.unit(6, "feet"),
  16389. weight: math.unit(150, "lb"),
  16390. name: "Front",
  16391. image: {
  16392. source: "./media/characters/cassidy/front.svg",
  16393. extra: 810/808,
  16394. bottom: 41/851
  16395. }
  16396. },
  16397. },
  16398. [
  16399. {
  16400. name: "Canon Height",
  16401. height: math.unit(120, "feet"),
  16402. default: true
  16403. },
  16404. {
  16405. name: "Macro+",
  16406. height: math.unit(400, "feet")
  16407. },
  16408. {
  16409. name: "Macro++",
  16410. height: math.unit(4000, "feet")
  16411. },
  16412. {
  16413. name: "Megamacro",
  16414. height: math.unit(3, "miles")
  16415. },
  16416. ]
  16417. ))
  16418. characterMakers.push(() => makeCharacter(
  16419. { name: "Isaac", species: ["moose"], tags: ["anthro"] },
  16420. {
  16421. front: {
  16422. height: math.unit(6, "feet"),
  16423. weight: math.unit(150, "lb"),
  16424. name: "Front",
  16425. image: {
  16426. source: "./media/characters/isaac/front.svg",
  16427. extra: 896 / 815,
  16428. bottom: 0.11
  16429. }
  16430. },
  16431. },
  16432. [
  16433. {
  16434. name: "Human Size",
  16435. height: math.unit(8, "feet"),
  16436. default: true
  16437. },
  16438. {
  16439. name: "Macro",
  16440. height: math.unit(400, "feet")
  16441. },
  16442. {
  16443. name: "Megamacro",
  16444. height: math.unit(50, "miles")
  16445. },
  16446. {
  16447. name: "Canon Height",
  16448. height: math.unit(200, "AU")
  16449. },
  16450. ]
  16451. ))
  16452. characterMakers.push(() => makeCharacter(
  16453. { name: "Sleekit", species: ["rat"], tags: ["anthro"] },
  16454. {
  16455. front: {
  16456. height: math.unit(6, "feet"),
  16457. weight: math.unit(72, "kg"),
  16458. name: "Front",
  16459. image: {
  16460. source: "./media/characters/sleekit/front.svg",
  16461. extra: 4693 / 4487,
  16462. bottom: 0.012
  16463. }
  16464. },
  16465. },
  16466. [
  16467. {
  16468. name: "Minimum Height",
  16469. height: math.unit(10, "meters")
  16470. },
  16471. {
  16472. name: "Smaller",
  16473. height: math.unit(25, "meters")
  16474. },
  16475. {
  16476. name: "Larger",
  16477. height: math.unit(38, "meters"),
  16478. default: true
  16479. },
  16480. {
  16481. name: "Maximum height",
  16482. height: math.unit(100, "meters")
  16483. },
  16484. ]
  16485. ))
  16486. characterMakers.push(() => makeCharacter(
  16487. { name: "Nillia", species: ["caracal"], tags: ["anthro"] },
  16488. {
  16489. front: {
  16490. height: math.unit(6, "feet"),
  16491. weight: math.unit(150, "lb"),
  16492. name: "Front",
  16493. image: {
  16494. source: "./media/characters/nillia/front.svg",
  16495. extra: 719/665,
  16496. bottom: 6/725
  16497. }
  16498. },
  16499. back: {
  16500. height: math.unit(6, "feet"),
  16501. weight: math.unit(150, "lb"),
  16502. name: "Back",
  16503. image: {
  16504. source: "./media/characters/nillia/back.svg",
  16505. extra: 705/651,
  16506. bottom: 5/710
  16507. }
  16508. },
  16509. },
  16510. [
  16511. {
  16512. name: "Canon Height",
  16513. height: math.unit(489, "feet"),
  16514. default: true
  16515. }
  16516. ]
  16517. ))
  16518. characterMakers.push(() => makeCharacter(
  16519. { name: "Mesmyriza", species: ["shark", "dragon", "robot", "deity"], tags: ["anthro"] },
  16520. {
  16521. front: {
  16522. height: math.unit(6, "feet"),
  16523. weight: math.unit(150, "lb"),
  16524. name: "Front",
  16525. image: {
  16526. source: "./media/characters/mesmyriza/front.svg",
  16527. extra: 1541/1291,
  16528. bottom: 87/1628
  16529. }
  16530. },
  16531. foot: {
  16532. height: math.unit(6 / (250 / 35), "feet"),
  16533. name: "Foot",
  16534. image: {
  16535. source: "./media/characters/mesmyriza/foot.svg"
  16536. }
  16537. },
  16538. },
  16539. [
  16540. {
  16541. name: "Macro",
  16542. height: math.unit(457, "meters"),
  16543. default: true
  16544. },
  16545. {
  16546. name: "Megamacro",
  16547. height: math.unit(8, "megameters")
  16548. },
  16549. ]
  16550. ))
  16551. characterMakers.push(() => makeCharacter(
  16552. { name: "Saudade", species: ["goat"], tags: ["anthro"] },
  16553. {
  16554. front: {
  16555. height: math.unit(6, "feet"),
  16556. weight: math.unit(250, "lb"),
  16557. name: "Front",
  16558. image: {
  16559. source: "./media/characters/saudade/front.svg",
  16560. extra: 1172 / 1139,
  16561. bottom: 0.035
  16562. }
  16563. },
  16564. },
  16565. [
  16566. {
  16567. name: "Micro",
  16568. height: math.unit(3, "inches")
  16569. },
  16570. {
  16571. name: "Normal",
  16572. height: math.unit(6, "feet"),
  16573. default: true
  16574. },
  16575. {
  16576. name: "Macro",
  16577. height: math.unit(50, "feet")
  16578. },
  16579. {
  16580. name: "Megamacro",
  16581. height: math.unit(2800, "feet")
  16582. },
  16583. ]
  16584. ))
  16585. characterMakers.push(() => makeCharacter(
  16586. { name: "Keireer", species: ["keynain"], tags: ["anthro"] },
  16587. {
  16588. front: {
  16589. height: math.unit(5 + 4 / 12, "feet"),
  16590. weight: math.unit(100, "lb"),
  16591. name: "Front",
  16592. image: {
  16593. source: "./media/characters/keireer/front.svg",
  16594. extra: 716 / 666,
  16595. bottom: 0.05
  16596. }
  16597. },
  16598. },
  16599. [
  16600. {
  16601. name: "Normal",
  16602. height: math.unit(5 + 4 / 12, "feet"),
  16603. default: true
  16604. },
  16605. ]
  16606. ))
  16607. characterMakers.push(() => makeCharacter(
  16608. { name: "Mirja", species: ["dragon"], tags: ["anthro"] },
  16609. {
  16610. front: {
  16611. height: math.unit(5.5, "feet"),
  16612. weight: math.unit(90, "kg"),
  16613. name: "Front",
  16614. image: {
  16615. source: "./media/characters/mirja/front.svg",
  16616. extra: 1452/1262,
  16617. bottom: 67/1519
  16618. }
  16619. },
  16620. frontDressed: {
  16621. height: math.unit(5.5, "feet"),
  16622. weight: math.unit(90, "lb"),
  16623. name: "Front (Dressed)",
  16624. image: {
  16625. source: "./media/characters/mirja/dressed.svg",
  16626. extra: 1452/1262,
  16627. bottom: 67/1519
  16628. }
  16629. },
  16630. back: {
  16631. height: math.unit(6, "feet"),
  16632. weight: math.unit(90, "lb"),
  16633. name: "Back",
  16634. image: {
  16635. source: "./media/characters/mirja/back.svg",
  16636. extra: 1892/1795,
  16637. bottom: 48/1940
  16638. }
  16639. },
  16640. maw: {
  16641. height: math.unit(1.312, "feet"),
  16642. name: "Maw",
  16643. image: {
  16644. source: "./media/characters/mirja/maw.svg"
  16645. }
  16646. },
  16647. paw: {
  16648. height: math.unit(1.15, "feet"),
  16649. name: "Paw",
  16650. image: {
  16651. source: "./media/characters/mirja/paw.svg"
  16652. }
  16653. },
  16654. },
  16655. [
  16656. {
  16657. name: "\"Incognito\"",
  16658. height: math.unit(3, "meters")
  16659. },
  16660. {
  16661. name: "Strolling Size",
  16662. height: math.unit(15, "km")
  16663. },
  16664. {
  16665. name: "Larger Strolling Size",
  16666. height: math.unit(400, "km")
  16667. },
  16668. {
  16669. name: "Preferred Size",
  16670. height: math.unit(5000, "km"),
  16671. default: true
  16672. },
  16673. {
  16674. name: "True Size",
  16675. height: math.unit(30657809462086840000000000000000, "parsecs"),
  16676. },
  16677. ]
  16678. ))
  16679. characterMakers.push(() => makeCharacter(
  16680. { name: "Nightraver", species: ["dragon"], tags: ["anthro"] },
  16681. {
  16682. front: {
  16683. height: math.unit(15, "feet"),
  16684. weight: math.unit(880, "kg"),
  16685. name: "Front",
  16686. image: {
  16687. source: "./media/characters/nightraver/front.svg",
  16688. extra: 2444 / 2160,
  16689. bottom: 0.027
  16690. }
  16691. },
  16692. back: {
  16693. height: math.unit(15, "feet"),
  16694. weight: math.unit(880, "kg"),
  16695. name: "Back",
  16696. image: {
  16697. source: "./media/characters/nightraver/back.svg",
  16698. extra: 2309 / 2180,
  16699. bottom: 0.005
  16700. }
  16701. },
  16702. sole: {
  16703. height: math.unit(2.878, "feet"),
  16704. name: "Sole",
  16705. image: {
  16706. source: "./media/characters/nightraver/sole.svg"
  16707. }
  16708. },
  16709. foot: {
  16710. height: math.unit(2.285, "feet"),
  16711. name: "Foot",
  16712. image: {
  16713. source: "./media/characters/nightraver/foot.svg"
  16714. }
  16715. },
  16716. maw: {
  16717. height: math.unit(2.67, "feet"),
  16718. name: "Maw",
  16719. image: {
  16720. source: "./media/characters/nightraver/maw.svg"
  16721. }
  16722. },
  16723. },
  16724. [
  16725. {
  16726. name: "Micro",
  16727. height: math.unit(1, "cm")
  16728. },
  16729. {
  16730. name: "Normal",
  16731. height: math.unit(15, "feet"),
  16732. default: true
  16733. },
  16734. {
  16735. name: "Macro",
  16736. height: math.unit(300, "feet")
  16737. },
  16738. {
  16739. name: "Megamacro",
  16740. height: math.unit(300, "miles")
  16741. },
  16742. {
  16743. name: "Gigamacro",
  16744. height: math.unit(10000, "miles")
  16745. },
  16746. ]
  16747. ))
  16748. characterMakers.push(() => makeCharacter(
  16749. { name: "Arc", species: ["raptor"], tags: ["anthro"] },
  16750. {
  16751. side: {
  16752. height: math.unit(2, "inches"),
  16753. weight: math.unit(5, "grams"),
  16754. name: "Side",
  16755. image: {
  16756. source: "./media/characters/arc/side.svg"
  16757. }
  16758. },
  16759. },
  16760. [
  16761. {
  16762. name: "Micro",
  16763. height: math.unit(2, "inches"),
  16764. default: true
  16765. },
  16766. ]
  16767. ))
  16768. characterMakers.push(() => makeCharacter(
  16769. { name: "Nebula Shahar", species: ["lucario"], tags: ["anthro"] },
  16770. {
  16771. front: {
  16772. height: math.unit(1.1938, "meters"),
  16773. weight: math.unit(54, "kg"),
  16774. name: "Front",
  16775. image: {
  16776. source: "./media/characters/nebula-shahar/front.svg",
  16777. extra: 1642 / 1436,
  16778. bottom: 0.06
  16779. }
  16780. },
  16781. },
  16782. [
  16783. {
  16784. name: "Megamicro",
  16785. height: math.unit(0.3, "mm")
  16786. },
  16787. {
  16788. name: "Micro",
  16789. height: math.unit(3, "cm")
  16790. },
  16791. {
  16792. name: "Normal",
  16793. height: math.unit(138, "cm"),
  16794. default: true
  16795. },
  16796. {
  16797. name: "Macro",
  16798. height: math.unit(30, "m")
  16799. },
  16800. ]
  16801. ))
  16802. characterMakers.push(() => makeCharacter(
  16803. { name: "Shayla", species: ["otter"], tags: ["anthro"] },
  16804. {
  16805. front: {
  16806. height: math.unit(5.24, "feet"),
  16807. weight: math.unit(150, "lb"),
  16808. name: "Front",
  16809. image: {
  16810. source: "./media/characters/shayla/front.svg",
  16811. extra: 1512 / 1414,
  16812. bottom: 0.01
  16813. }
  16814. },
  16815. back: {
  16816. height: math.unit(5.24, "feet"),
  16817. weight: math.unit(150, "lb"),
  16818. name: "Back",
  16819. image: {
  16820. source: "./media/characters/shayla/back.svg",
  16821. extra: 1512 / 1414
  16822. }
  16823. },
  16824. hand: {
  16825. height: math.unit(0.7781496062992126, "feet"),
  16826. name: "Hand",
  16827. image: {
  16828. source: "./media/characters/shayla/hand.svg"
  16829. }
  16830. },
  16831. foot: {
  16832. height: math.unit(1.4206036745406823, "feet"),
  16833. name: "Foot",
  16834. image: {
  16835. source: "./media/characters/shayla/foot.svg"
  16836. }
  16837. },
  16838. },
  16839. [
  16840. {
  16841. name: "Micro",
  16842. height: math.unit(0.32, "feet")
  16843. },
  16844. {
  16845. name: "Normal",
  16846. height: math.unit(5.24, "feet"),
  16847. default: true
  16848. },
  16849. {
  16850. name: "Macro",
  16851. height: math.unit(492.12, "feet")
  16852. },
  16853. {
  16854. name: "Megamacro",
  16855. height: math.unit(186.41, "miles")
  16856. },
  16857. ]
  16858. ))
  16859. characterMakers.push(() => makeCharacter(
  16860. { name: "Pia Jr.", species: ["ziralkia"], tags: ["anthro"] },
  16861. {
  16862. front: {
  16863. height: math.unit(2.2, "m"),
  16864. weight: math.unit(120, "kg"),
  16865. name: "Front",
  16866. image: {
  16867. source: "./media/characters/pia-jr/front.svg",
  16868. extra: 1000 / 970,
  16869. bottom: 0.035
  16870. }
  16871. },
  16872. hand: {
  16873. height: math.unit(0.759 * 7.21 / 6, "feet"),
  16874. name: "Hand",
  16875. image: {
  16876. source: "./media/characters/pia-jr/hand.svg"
  16877. }
  16878. },
  16879. paw: {
  16880. height: math.unit(1.185 * 7.21 / 6, "feet"),
  16881. name: "Paw",
  16882. image: {
  16883. source: "./media/characters/pia-jr/paw.svg"
  16884. }
  16885. },
  16886. },
  16887. [
  16888. {
  16889. name: "Micro",
  16890. height: math.unit(1.2, "cm")
  16891. },
  16892. {
  16893. name: "Normal",
  16894. height: math.unit(2.2, "m"),
  16895. default: true
  16896. },
  16897. {
  16898. name: "Macro",
  16899. height: math.unit(180, "m")
  16900. },
  16901. {
  16902. name: "Megamacro",
  16903. height: math.unit(420, "km")
  16904. },
  16905. ]
  16906. ))
  16907. characterMakers.push(() => makeCharacter(
  16908. { name: "Pia Sr.", species: ["ziralkia"], tags: ["anthro"] },
  16909. {
  16910. front: {
  16911. height: math.unit(2, "m"),
  16912. weight: math.unit(115, "kg"),
  16913. name: "Front",
  16914. image: {
  16915. source: "./media/characters/pia-sr/front.svg",
  16916. extra: 760 / 730,
  16917. bottom: 0.015
  16918. }
  16919. },
  16920. back: {
  16921. height: math.unit(2, "m"),
  16922. weight: math.unit(115, "kg"),
  16923. name: "Back",
  16924. image: {
  16925. source: "./media/characters/pia-sr/back.svg",
  16926. extra: 760 / 730,
  16927. bottom: 0.01
  16928. }
  16929. },
  16930. hand: {
  16931. height: math.unit(0.89 * 6.56 / 6, "feet"),
  16932. name: "Hand",
  16933. image: {
  16934. source: "./media/characters/pia-sr/hand.svg"
  16935. }
  16936. },
  16937. foot: {
  16938. height: math.unit(1.83, "feet"),
  16939. name: "Foot",
  16940. image: {
  16941. source: "./media/characters/pia-sr/foot.svg"
  16942. }
  16943. },
  16944. },
  16945. [
  16946. {
  16947. name: "Micro",
  16948. height: math.unit(88, "mm")
  16949. },
  16950. {
  16951. name: "Normal",
  16952. height: math.unit(2, "m"),
  16953. default: true
  16954. },
  16955. {
  16956. name: "Macro",
  16957. height: math.unit(200, "m")
  16958. },
  16959. {
  16960. name: "Megamacro",
  16961. height: math.unit(420, "km")
  16962. },
  16963. ]
  16964. ))
  16965. characterMakers.push(() => makeCharacter(
  16966. { name: "KIBIBYTE", species: ["bat", "demon"], tags: ["anthro"] },
  16967. {
  16968. front: {
  16969. height: math.unit(8 + 2 / 12, "feet"),
  16970. weight: math.unit(300, "lb"),
  16971. name: "Front",
  16972. image: {
  16973. source: "./media/characters/kibibyte/front.svg",
  16974. extra: 2221 / 2098,
  16975. bottom: 0.04
  16976. }
  16977. },
  16978. },
  16979. [
  16980. {
  16981. name: "Normal",
  16982. height: math.unit(8 + 2 / 12, "feet"),
  16983. default: true
  16984. },
  16985. {
  16986. name: "Socialable Macro",
  16987. height: math.unit(50, "feet")
  16988. },
  16989. {
  16990. name: "Macro",
  16991. height: math.unit(300, "feet")
  16992. },
  16993. {
  16994. name: "Megamacro",
  16995. height: math.unit(500, "miles")
  16996. },
  16997. ]
  16998. ))
  16999. characterMakers.push(() => makeCharacter(
  17000. { name: "Felix", species: ["siamese-cat"], tags: ["anthro"] },
  17001. {
  17002. front: {
  17003. height: math.unit(6, "feet"),
  17004. weight: math.unit(150, "lb"),
  17005. name: "Front",
  17006. image: {
  17007. source: "./media/characters/felix/front.svg",
  17008. extra: 762 / 722,
  17009. bottom: 0.02
  17010. }
  17011. },
  17012. frontClothed: {
  17013. height: math.unit(6, "feet"),
  17014. weight: math.unit(150, "lb"),
  17015. name: "Front (Clothed)",
  17016. image: {
  17017. source: "./media/characters/felix/front-clothed.svg",
  17018. extra: 762 / 722,
  17019. bottom: 0.02
  17020. }
  17021. },
  17022. },
  17023. [
  17024. {
  17025. name: "Normal",
  17026. height: math.unit(6 + 8 / 12, "feet"),
  17027. default: true
  17028. },
  17029. {
  17030. name: "Macro",
  17031. height: math.unit(2600, "feet")
  17032. },
  17033. {
  17034. name: "Megamacro",
  17035. height: math.unit(450, "miles")
  17036. },
  17037. ]
  17038. ))
  17039. characterMakers.push(() => makeCharacter(
  17040. { name: "Tobo", species: ["mouse"], tags: ["anthro"] },
  17041. {
  17042. front: {
  17043. height: math.unit(6 + 1 / 12, "feet"),
  17044. weight: math.unit(250, "lb"),
  17045. name: "Front",
  17046. image: {
  17047. source: "./media/characters/tobo/front.svg",
  17048. extra: 608 / 586,
  17049. bottom: 0.023
  17050. }
  17051. },
  17052. back: {
  17053. height: math.unit(6 + 1 / 12, "feet"),
  17054. weight: math.unit(250, "lb"),
  17055. name: "Back",
  17056. image: {
  17057. source: "./media/characters/tobo/back.svg",
  17058. extra: 608 / 586
  17059. }
  17060. },
  17061. },
  17062. [
  17063. {
  17064. name: "Nano",
  17065. height: math.unit(2, "nm")
  17066. },
  17067. {
  17068. name: "Megamicro",
  17069. height: math.unit(0.1, "mm")
  17070. },
  17071. {
  17072. name: "Micro",
  17073. height: math.unit(1, "inch"),
  17074. default: true
  17075. },
  17076. {
  17077. name: "Human-sized",
  17078. height: math.unit(6 + 1 / 12, "feet")
  17079. },
  17080. {
  17081. name: "Macro",
  17082. height: math.unit(250, "feet")
  17083. },
  17084. {
  17085. name: "Megamacro",
  17086. height: math.unit(75, "miles")
  17087. },
  17088. {
  17089. name: "Texas-sized",
  17090. height: math.unit(750, "miles")
  17091. },
  17092. {
  17093. name: "Teramacro",
  17094. height: math.unit(50000, "miles")
  17095. },
  17096. ]
  17097. ))
  17098. characterMakers.push(() => makeCharacter(
  17099. { name: "Danny Kapowsky", species: ["husky"], tags: ["anthro"] },
  17100. {
  17101. front: {
  17102. height: math.unit(6, "feet"),
  17103. weight: math.unit(269, "lb"),
  17104. name: "Front",
  17105. image: {
  17106. source: "./media/characters/danny-kapowsky/front.svg",
  17107. extra: 766 / 736,
  17108. bottom: 0.044
  17109. }
  17110. },
  17111. back: {
  17112. height: math.unit(6, "feet"),
  17113. weight: math.unit(269, "lb"),
  17114. name: "Back",
  17115. image: {
  17116. source: "./media/characters/danny-kapowsky/back.svg",
  17117. extra: 797 / 760,
  17118. bottom: 0.025
  17119. }
  17120. },
  17121. },
  17122. [
  17123. {
  17124. name: "Macro",
  17125. height: math.unit(150, "feet"),
  17126. default: true
  17127. },
  17128. {
  17129. name: "Macro+",
  17130. height: math.unit(200, "feet")
  17131. },
  17132. {
  17133. name: "Macro++",
  17134. height: math.unit(300, "feet")
  17135. },
  17136. {
  17137. name: "Macro+++",
  17138. height: math.unit(400, "feet")
  17139. },
  17140. ]
  17141. ))
  17142. characterMakers.push(() => makeCharacter(
  17143. { name: "Finn", species: ["fennec-fox"], tags: ["anthro"] },
  17144. {
  17145. side: {
  17146. height: math.unit(6, "feet"),
  17147. weight: math.unit(170, "lb"),
  17148. name: "Side",
  17149. image: {
  17150. source: "./media/characters/finn/side.svg",
  17151. extra: 1953 / 1807,
  17152. bottom: 0.057
  17153. }
  17154. },
  17155. },
  17156. [
  17157. {
  17158. name: "Megamacro",
  17159. height: math.unit(14445, "feet"),
  17160. default: true
  17161. },
  17162. ]
  17163. ))
  17164. characterMakers.push(() => makeCharacter(
  17165. { name: "Roy", species: ["chameleon"], tags: ["anthro"] },
  17166. {
  17167. front: {
  17168. height: math.unit(5 + 6 / 12, "feet"),
  17169. weight: math.unit(125, "lb"),
  17170. name: "Front",
  17171. image: {
  17172. source: "./media/characters/roy/front.svg",
  17173. extra: 1,
  17174. bottom: 0.11
  17175. }
  17176. },
  17177. },
  17178. [
  17179. {
  17180. name: "Micro",
  17181. height: math.unit(3, "inches"),
  17182. default: true
  17183. },
  17184. {
  17185. name: "Normal",
  17186. height: math.unit(5 + 6 / 12, "feet")
  17187. },
  17188. {
  17189. name: "Lesser Macro",
  17190. height: math.unit(60, "feet")
  17191. },
  17192. {
  17193. name: "Greater Macro",
  17194. height: math.unit(120, "feet")
  17195. },
  17196. ]
  17197. ))
  17198. characterMakers.push(() => makeCharacter(
  17199. { name: "Aevsivs", species: ["spider"], tags: ["anthro"] },
  17200. {
  17201. front: {
  17202. height: math.unit(6, "feet"),
  17203. weight: math.unit(100, "lb"),
  17204. name: "Front",
  17205. image: {
  17206. source: "./media/characters/aevsivs/front.svg",
  17207. extra: 1,
  17208. bottom: 0.03
  17209. }
  17210. },
  17211. back: {
  17212. height: math.unit(6, "feet"),
  17213. weight: math.unit(100, "lb"),
  17214. name: "Back",
  17215. image: {
  17216. source: "./media/characters/aevsivs/back.svg"
  17217. }
  17218. },
  17219. },
  17220. [
  17221. {
  17222. name: "Micro",
  17223. height: math.unit(2, "inches"),
  17224. default: true
  17225. },
  17226. {
  17227. name: "Normal",
  17228. height: math.unit(5, "feet")
  17229. },
  17230. ]
  17231. ))
  17232. characterMakers.push(() => makeCharacter(
  17233. { name: "Hildegard", species: ["lucario"], tags: ["anthro"] },
  17234. {
  17235. front: {
  17236. height: math.unit(5 + 7 / 12, "feet"),
  17237. weight: math.unit(159, "lb"),
  17238. name: "Front",
  17239. image: {
  17240. source: "./media/characters/hildegard/front.svg",
  17241. extra: 289 / 269,
  17242. bottom: 7.63 / 297.8
  17243. }
  17244. },
  17245. back: {
  17246. height: math.unit(5 + 7 / 12, "feet"),
  17247. weight: math.unit(159, "lb"),
  17248. name: "Back",
  17249. image: {
  17250. source: "./media/characters/hildegard/back.svg",
  17251. extra: 280 / 260,
  17252. bottom: 2.3 / 282
  17253. }
  17254. },
  17255. },
  17256. [
  17257. {
  17258. name: "Normal",
  17259. height: math.unit(5 + 7 / 12, "feet"),
  17260. default: true
  17261. },
  17262. ]
  17263. ))
  17264. characterMakers.push(() => makeCharacter(
  17265. { name: "Bernard & Wilder", species: ["lycanroc"], tags: ["anthro", "feral"] },
  17266. {
  17267. bernard: {
  17268. height: math.unit(2 + 7 / 12, "feet"),
  17269. weight: math.unit(66, "lb"),
  17270. name: "Bernard",
  17271. rename: true,
  17272. image: {
  17273. source: "./media/characters/bernard-wilder/bernard.svg",
  17274. extra: 192 / 128,
  17275. bottom: 0.05
  17276. }
  17277. },
  17278. wilder: {
  17279. height: math.unit(5 + 8 / 12, "feet"),
  17280. weight: math.unit(143, "lb"),
  17281. name: "Wilder",
  17282. rename: true,
  17283. image: {
  17284. source: "./media/characters/bernard-wilder/wilder.svg",
  17285. extra: 361 / 312,
  17286. bottom: 0.02
  17287. }
  17288. },
  17289. },
  17290. [
  17291. {
  17292. name: "Normal",
  17293. height: math.unit(2 + 7 / 12, "feet"),
  17294. default: true
  17295. },
  17296. ]
  17297. ))
  17298. characterMakers.push(() => makeCharacter(
  17299. { name: "Hearth", species: ["houndoom"], tags: ["anthro"] },
  17300. {
  17301. anthro: {
  17302. height: math.unit(6 + 1 / 12, "feet"),
  17303. weight: math.unit(155, "lb"),
  17304. name: "Anthro",
  17305. image: {
  17306. source: "./media/characters/hearth/anthro.svg",
  17307. extra: 1178/1136,
  17308. bottom: 28/1206
  17309. }
  17310. },
  17311. feral: {
  17312. height: math.unit(3.78, "feet"),
  17313. weight: math.unit(35, "kg"),
  17314. name: "Feral",
  17315. image: {
  17316. source: "./media/characters/hearth/feral.svg",
  17317. extra: 153 / 135,
  17318. bottom: 0.03
  17319. }
  17320. },
  17321. },
  17322. [
  17323. {
  17324. name: "Normal",
  17325. height: math.unit(6 + 1 / 12, "feet"),
  17326. default: true
  17327. },
  17328. ]
  17329. ))
  17330. characterMakers.push(() => makeCharacter(
  17331. { name: "Ingrid", species: ["delphox"], tags: ["anthro"] },
  17332. {
  17333. front: {
  17334. height: math.unit(6, "feet"),
  17335. weight: math.unit(182, "lb"),
  17336. name: "Front",
  17337. image: {
  17338. source: "./media/characters/ingrid/front.svg",
  17339. extra: 294 / 268,
  17340. bottom: 0.027
  17341. }
  17342. },
  17343. },
  17344. [
  17345. {
  17346. name: "Normal",
  17347. height: math.unit(6, "feet"),
  17348. default: true
  17349. },
  17350. ]
  17351. ))
  17352. characterMakers.push(() => makeCharacter(
  17353. { name: "Malgam", species: ["eevee"], tags: ["anthro"] },
  17354. {
  17355. eevee: {
  17356. height: math.unit(2 + 10 / 12, "feet"),
  17357. weight: math.unit(86, "lb"),
  17358. name: "Malgam",
  17359. image: {
  17360. source: "./media/characters/malgam/eevee.svg",
  17361. extra: 952/784,
  17362. bottom: 38/990
  17363. }
  17364. },
  17365. sylveon: {
  17366. height: math.unit(4, "feet"),
  17367. weight: math.unit(101, "lb"),
  17368. name: "Future Malgam",
  17369. rename: true,
  17370. image: {
  17371. source: "./media/characters/malgam/sylveon.svg",
  17372. extra: 371 / 325,
  17373. bottom: 0.015
  17374. }
  17375. },
  17376. gigantamax: {
  17377. height: math.unit(50, "feet"),
  17378. name: "Gigantamax Malgam",
  17379. rename: true,
  17380. image: {
  17381. source: "./media/characters/malgam/gigantamax.svg"
  17382. }
  17383. },
  17384. },
  17385. [
  17386. {
  17387. name: "Normal",
  17388. height: math.unit(2 + 10 / 12, "feet"),
  17389. default: true
  17390. },
  17391. ]
  17392. ))
  17393. characterMakers.push(() => makeCharacter(
  17394. { name: "Fleur", species: ["lopunny"], tags: ["anthro"] },
  17395. {
  17396. front: {
  17397. height: math.unit(5 + 11 / 12, "feet"),
  17398. weight: math.unit(188, "lb"),
  17399. name: "Front",
  17400. image: {
  17401. source: "./media/characters/fleur/front.svg",
  17402. extra: 309 / 283,
  17403. bottom: 0.007
  17404. }
  17405. },
  17406. },
  17407. [
  17408. {
  17409. name: "Normal",
  17410. height: math.unit(5 + 11 / 12, "feet"),
  17411. default: true
  17412. },
  17413. ]
  17414. ))
  17415. characterMakers.push(() => makeCharacter(
  17416. { name: "Jude", species: ["absol"], tags: ["anthro"] },
  17417. {
  17418. front: {
  17419. height: math.unit(5 + 4 / 12, "feet"),
  17420. weight: math.unit(122, "lb"),
  17421. name: "Front",
  17422. image: {
  17423. source: "./media/characters/jude/front.svg",
  17424. extra: 288 / 273,
  17425. bottom: 0.03
  17426. }
  17427. },
  17428. },
  17429. [
  17430. {
  17431. name: "Normal",
  17432. height: math.unit(5 + 4 / 12, "feet"),
  17433. default: true
  17434. },
  17435. ]
  17436. ))
  17437. characterMakers.push(() => makeCharacter(
  17438. { name: "Seara", species: ["salazzle"], tags: ["anthro"] },
  17439. {
  17440. front: {
  17441. height: math.unit(5 + 11 / 12, "feet"),
  17442. weight: math.unit(190, "lb"),
  17443. name: "Front",
  17444. image: {
  17445. source: "./media/characters/seara/front.svg",
  17446. extra: 1,
  17447. bottom: 0.05
  17448. }
  17449. },
  17450. },
  17451. [
  17452. {
  17453. name: "Normal",
  17454. height: math.unit(5 + 11 / 12, "feet"),
  17455. default: true
  17456. },
  17457. ]
  17458. ))
  17459. characterMakers.push(() => makeCharacter(
  17460. { name: "Caspian (Lugia)", species: ["lugia"], tags: ["anthro"] },
  17461. {
  17462. front: {
  17463. height: math.unit(16 + 5 / 12, "feet"),
  17464. weight: math.unit(524, "lb"),
  17465. name: "Front",
  17466. image: {
  17467. source: "./media/characters/caspian-lugia/front.svg",
  17468. extra: 1,
  17469. bottom: 0.04
  17470. }
  17471. },
  17472. },
  17473. [
  17474. {
  17475. name: "Normal",
  17476. height: math.unit(16 + 5 / 12, "feet"),
  17477. default: true
  17478. },
  17479. ]
  17480. ))
  17481. characterMakers.push(() => makeCharacter(
  17482. { name: "Mika", species: ["rabbit"], tags: ["anthro"] },
  17483. {
  17484. front: {
  17485. height: math.unit(5 + 7 / 12, "feet"),
  17486. weight: math.unit(170, "lb"),
  17487. name: "Front",
  17488. image: {
  17489. source: "./media/characters/mika/front.svg",
  17490. extra: 1,
  17491. bottom: 0.016
  17492. }
  17493. },
  17494. },
  17495. [
  17496. {
  17497. name: "Normal",
  17498. height: math.unit(5 + 7 / 12, "feet"),
  17499. default: true
  17500. },
  17501. ]
  17502. ))
  17503. characterMakers.push(() => makeCharacter(
  17504. { name: "Sol", species: ["grovyle"], tags: ["anthro"] },
  17505. {
  17506. front: {
  17507. height: math.unit(6 + 2 / 12, "feet"),
  17508. weight: math.unit(268, "lb"),
  17509. name: "Front",
  17510. image: {
  17511. source: "./media/characters/sol/front.svg",
  17512. extra: 247 / 231,
  17513. bottom: 0.05
  17514. }
  17515. },
  17516. },
  17517. [
  17518. {
  17519. name: "Normal",
  17520. height: math.unit(6 + 2 / 12, "feet"),
  17521. default: true
  17522. },
  17523. ]
  17524. ))
  17525. characterMakers.push(() => makeCharacter(
  17526. { name: "Umiko", species: ["buizel", "floatzel"], tags: ["anthro"] },
  17527. {
  17528. buizel: {
  17529. height: math.unit(2 + 5 / 12, "feet"),
  17530. weight: math.unit(87, "lb"),
  17531. name: "Front",
  17532. image: {
  17533. source: "./media/characters/umiko/buizel.svg",
  17534. extra: 172 / 157,
  17535. bottom: 0.01
  17536. },
  17537. form: "buizel",
  17538. default: true
  17539. },
  17540. floatzel: {
  17541. height: math.unit(5 + 9 / 12, "feet"),
  17542. weight: math.unit(250, "lb"),
  17543. name: "Front",
  17544. image: {
  17545. source: "./media/characters/umiko/floatzel.svg",
  17546. extra: 1076/1006,
  17547. bottom: 15/1091
  17548. },
  17549. form: "floatzel",
  17550. default: true
  17551. },
  17552. },
  17553. [
  17554. {
  17555. name: "Normal",
  17556. height: math.unit(2 + 5 / 12, "feet"),
  17557. form: "buizel",
  17558. default: true
  17559. },
  17560. {
  17561. name: "Normal",
  17562. height: math.unit(5 + 9 / 12, "feet"),
  17563. form: "floatzel",
  17564. default: true
  17565. },
  17566. ],
  17567. {
  17568. "buizel": {
  17569. name: "Buizel"
  17570. },
  17571. "floatzel": {
  17572. name: "Floatzel",
  17573. default: true
  17574. }
  17575. }
  17576. ))
  17577. characterMakers.push(() => makeCharacter(
  17578. { name: "Iliac", species: ["inteleon"], tags: ["anthro"] },
  17579. {
  17580. front: {
  17581. height: math.unit(6 + 2 / 12, "feet"),
  17582. weight: math.unit(146, "lb"),
  17583. name: "Front",
  17584. image: {
  17585. source: "./media/characters/iliac/front.svg",
  17586. extra: 389 / 365,
  17587. bottom: 0.035
  17588. }
  17589. },
  17590. },
  17591. [
  17592. {
  17593. name: "Normal",
  17594. height: math.unit(6 + 2 / 12, "feet"),
  17595. default: true
  17596. },
  17597. ]
  17598. ))
  17599. characterMakers.push(() => makeCharacter(
  17600. { name: "Topaz", species: ["blaziken"], tags: ["anthro"] },
  17601. {
  17602. front: {
  17603. height: math.unit(6, "feet"),
  17604. weight: math.unit(170, "lb"),
  17605. name: "Front",
  17606. image: {
  17607. source: "./media/characters/topaz/front.svg",
  17608. extra: 317 / 303,
  17609. bottom: 0.055
  17610. }
  17611. },
  17612. },
  17613. [
  17614. {
  17615. name: "Normal",
  17616. height: math.unit(6, "feet"),
  17617. default: true
  17618. },
  17619. ]
  17620. ))
  17621. characterMakers.push(() => makeCharacter(
  17622. { name: "Gabriel", species: ["lucario"], tags: ["anthro"] },
  17623. {
  17624. front: {
  17625. height: math.unit(5 + 11 / 12, "feet"),
  17626. weight: math.unit(144, "lb"),
  17627. name: "Front",
  17628. image: {
  17629. source: "./media/characters/gabriel/front.svg",
  17630. extra: 285 / 262,
  17631. bottom: 0.004
  17632. }
  17633. },
  17634. },
  17635. [
  17636. {
  17637. name: "Normal",
  17638. height: math.unit(5 + 11 / 12, "feet"),
  17639. default: true
  17640. },
  17641. ]
  17642. ))
  17643. characterMakers.push(() => makeCharacter(
  17644. { name: "Tempest (Suicune)", species: ["suicune"], tags: ["anthro"] },
  17645. {
  17646. side: {
  17647. height: math.unit(6 + 5 / 12, "feet"),
  17648. weight: math.unit(300, "lb"),
  17649. name: "Side",
  17650. image: {
  17651. source: "./media/characters/tempest-suicune/side.svg",
  17652. extra: 195 / 154,
  17653. bottom: 0.04
  17654. }
  17655. },
  17656. },
  17657. [
  17658. {
  17659. name: "Normal",
  17660. height: math.unit(6 + 5 / 12, "feet"),
  17661. default: true
  17662. },
  17663. ]
  17664. ))
  17665. characterMakers.push(() => makeCharacter(
  17666. { name: "Vulcan", species: ["charizard"], tags: ["anthro"] },
  17667. {
  17668. front: {
  17669. height: math.unit(7 + 2 / 12, "feet"),
  17670. weight: math.unit(322, "lb"),
  17671. name: "Front",
  17672. image: {
  17673. source: "./media/characters/vulcan/front.svg",
  17674. extra: 154 / 147,
  17675. bottom: 0.04
  17676. }
  17677. },
  17678. },
  17679. [
  17680. {
  17681. name: "Normal",
  17682. height: math.unit(7 + 2 / 12, "feet"),
  17683. default: true
  17684. },
  17685. ]
  17686. ))
  17687. characterMakers.push(() => makeCharacter(
  17688. { name: "Gault", species: ["feraligatr"], tags: ["anthro"] },
  17689. {
  17690. front: {
  17691. height: math.unit(5 + 10 / 12, "feet"),
  17692. weight: math.unit(264, "lb"),
  17693. name: "Front",
  17694. image: {
  17695. source: "./media/characters/gault/front.svg",
  17696. extra: 161 / 140,
  17697. bottom: 0.028
  17698. }
  17699. },
  17700. },
  17701. [
  17702. {
  17703. name: "Normal",
  17704. height: math.unit(5 + 10 / 12, "feet"),
  17705. default: true
  17706. },
  17707. ]
  17708. ))
  17709. characterMakers.push(() => makeCharacter(
  17710. { name: "Shard", species: ["weavile"], tags: ["anthro"] },
  17711. {
  17712. front: {
  17713. height: math.unit(6, "feet"),
  17714. weight: math.unit(150, "lb"),
  17715. name: "Front",
  17716. image: {
  17717. source: "./media/characters/shard/front.svg",
  17718. extra: 273 / 238,
  17719. bottom: 0.02
  17720. }
  17721. },
  17722. },
  17723. [
  17724. {
  17725. name: "Normal",
  17726. height: math.unit(3 + 6 / 12, "feet"),
  17727. default: true
  17728. },
  17729. ]
  17730. ))
  17731. characterMakers.push(() => makeCharacter(
  17732. { name: "Ashe", species: ["cat"], tags: ["anthro"] },
  17733. {
  17734. front: {
  17735. height: math.unit(5 + 11 / 12, "feet"),
  17736. weight: math.unit(146, "lb"),
  17737. name: "Front",
  17738. image: {
  17739. source: "./media/characters/ashe/front.svg",
  17740. extra: 400 / 373,
  17741. bottom: 0.01
  17742. }
  17743. },
  17744. },
  17745. [
  17746. {
  17747. name: "Normal",
  17748. height: math.unit(5 + 11 / 12, "feet"),
  17749. default: true
  17750. },
  17751. ]
  17752. ))
  17753. characterMakers.push(() => makeCharacter(
  17754. { name: "Beatrix", species: ["coyote"], tags: ["anthro"] },
  17755. {
  17756. front: {
  17757. height: math.unit(5 + 5 / 12, "feet"),
  17758. weight: math.unit(135, "lb"),
  17759. name: "Front",
  17760. image: {
  17761. source: "./media/characters/beatrix/front.svg",
  17762. extra: 392 / 379,
  17763. bottom: 0.01
  17764. }
  17765. },
  17766. },
  17767. [
  17768. {
  17769. name: "Normal",
  17770. height: math.unit(6, "feet"),
  17771. default: true
  17772. },
  17773. ]
  17774. ))
  17775. characterMakers.push(() => makeCharacter(
  17776. { name: "Ignatius", species: ["delphox"], tags: ["anthro"] },
  17777. {
  17778. front: {
  17779. height: math.unit(6 + 2/12, "feet"),
  17780. weight: math.unit(135, "lb"),
  17781. name: "Front",
  17782. image: {
  17783. source: "./media/characters/ignatius/front.svg",
  17784. extra: 1380/1259,
  17785. bottom: 27/1407
  17786. }
  17787. },
  17788. },
  17789. [
  17790. {
  17791. name: "Normal",
  17792. height: math.unit(6 + 2/12, "feet"),
  17793. default: true
  17794. },
  17795. ]
  17796. ))
  17797. characterMakers.push(() => makeCharacter(
  17798. { name: "Mei Li", species: ["mienshao"], tags: ["anthro"] },
  17799. {
  17800. front: {
  17801. height: math.unit(6 + 2 / 12, "feet"),
  17802. weight: math.unit(138, "lb"),
  17803. name: "Front",
  17804. image: {
  17805. source: "./media/characters/mei-li/front.svg",
  17806. extra: 237 / 229,
  17807. bottom: 0.03
  17808. }
  17809. },
  17810. },
  17811. [
  17812. {
  17813. name: "Normal",
  17814. height: math.unit(6 + 2 / 12, "feet"),
  17815. default: true
  17816. },
  17817. ]
  17818. ))
  17819. characterMakers.push(() => makeCharacter(
  17820. { name: "Puru", species: ["azumarill"], tags: ["anthro"] },
  17821. {
  17822. front: {
  17823. height: math.unit(2 + 4 / 12, "feet"),
  17824. weight: math.unit(62, "lb"),
  17825. name: "Front",
  17826. image: {
  17827. source: "./media/characters/puru/front.svg",
  17828. extra: 206 / 149,
  17829. bottom: 0.06
  17830. }
  17831. },
  17832. },
  17833. [
  17834. {
  17835. name: "Normal",
  17836. height: math.unit(2 + 4 / 12, "feet"),
  17837. default: true
  17838. },
  17839. ]
  17840. ))
  17841. characterMakers.push(() => makeCharacter(
  17842. { name: "Kee", species: ["aardwolf"], tags: ["anthro", "taur"] },
  17843. {
  17844. anthro: {
  17845. height: math.unit(5 + 8/12, "feet"),
  17846. weight: math.unit(200, "lb"),
  17847. energyNeed: math.unit(2000, "kcal"),
  17848. name: "Anthro",
  17849. image: {
  17850. source: "./media/characters/kee/anthro.svg",
  17851. extra: 3251/3184,
  17852. bottom: 250/3501
  17853. }
  17854. },
  17855. taur: {
  17856. height: math.unit(11, "feet"),
  17857. weight: math.unit(500, "lb"),
  17858. energyNeed: math.unit(5000, "kcal"),
  17859. name: "Taur",
  17860. image: {
  17861. source: "./media/characters/kee/taur.svg",
  17862. extra: 1362/1320,
  17863. bottom: 83/1445
  17864. }
  17865. },
  17866. },
  17867. [
  17868. {
  17869. name: "Normal",
  17870. height: math.unit(5 + 8/12, "feet"),
  17871. default: true
  17872. },
  17873. {
  17874. name: "Macro",
  17875. height: math.unit(35, "feet")
  17876. },
  17877. ]
  17878. ))
  17879. characterMakers.push(() => makeCharacter(
  17880. { name: "Cobalt (Dracha)", species: ["dracha"], tags: ["anthro"] },
  17881. {
  17882. anthro: {
  17883. height: math.unit(7, "feet"),
  17884. weight: math.unit(190, "lb"),
  17885. name: "Anthro",
  17886. image: {
  17887. source: "./media/characters/cobalt-dracha/anthro.svg",
  17888. extra: 231 / 225,
  17889. bottom: 0.04
  17890. }
  17891. },
  17892. feral: {
  17893. height: math.unit(9 + 7 / 12, "feet"),
  17894. weight: math.unit(294, "lb"),
  17895. name: "Feral",
  17896. image: {
  17897. source: "./media/characters/cobalt-dracha/feral.svg",
  17898. extra: 692 / 633,
  17899. bottom: 0.05
  17900. }
  17901. },
  17902. },
  17903. [
  17904. {
  17905. name: "Normal",
  17906. height: math.unit(7, "feet"),
  17907. default: true
  17908. },
  17909. ]
  17910. ))
  17911. characterMakers.push(() => makeCharacter(
  17912. { name: "Java", species: ["snake", "deity"], tags: ["naga"] },
  17913. {
  17914. fallen: {
  17915. height: math.unit(11 + 8 / 12, "feet"),
  17916. weight: math.unit(485, "lb"),
  17917. name: "Java (Fallen)",
  17918. rename: true,
  17919. image: {
  17920. source: "./media/characters/java/fallen.svg",
  17921. extra: 226 / 208,
  17922. bottom: 0.005
  17923. }
  17924. },
  17925. godkin: {
  17926. height: math.unit(10 + 6 / 12, "feet"),
  17927. weight: math.unit(328, "lb"),
  17928. name: "Java (Godkin)",
  17929. rename: true,
  17930. image: {
  17931. source: "./media/characters/java/godkin.svg",
  17932. extra: 1104/1068,
  17933. bottom: 36/1140
  17934. }
  17935. },
  17936. },
  17937. [
  17938. {
  17939. name: "Normal",
  17940. height: math.unit(11 + 8 / 12, "feet"),
  17941. default: true
  17942. },
  17943. ]
  17944. ))
  17945. characterMakers.push(() => makeCharacter(
  17946. { name: "Purna", species: ["panther"], tags: ["anthro"] },
  17947. {
  17948. front: {
  17949. height: math.unit(5 + 9 / 12, "feet"),
  17950. weight: math.unit(170, "lb"),
  17951. name: "Front",
  17952. image: {
  17953. source: "./media/characters/purna/front.svg",
  17954. extra: 239 / 229,
  17955. bottom: 0.01
  17956. }
  17957. },
  17958. },
  17959. [
  17960. {
  17961. name: "Normal",
  17962. height: math.unit(5 + 9 / 12, "feet"),
  17963. default: true
  17964. },
  17965. ]
  17966. ))
  17967. characterMakers.push(() => makeCharacter(
  17968. { name: "Kuva", species: ["cheetah"], tags: ["anthro"] },
  17969. {
  17970. front: {
  17971. height: math.unit(5 + 9 / 12, "feet"),
  17972. weight: math.unit(142, "lb"),
  17973. name: "Front",
  17974. image: {
  17975. source: "./media/characters/kuva/front.svg",
  17976. extra: 281 / 271,
  17977. bottom: 0.006
  17978. }
  17979. },
  17980. },
  17981. [
  17982. {
  17983. name: "Normal",
  17984. height: math.unit(5 + 9 / 12, "feet"),
  17985. default: true
  17986. },
  17987. ]
  17988. ))
  17989. characterMakers.push(() => makeCharacter(
  17990. { name: "Embra", species: ["dracha"], tags: ["anthro"] },
  17991. {
  17992. anthro: {
  17993. height: math.unit(9 + 2 / 12, "feet"),
  17994. weight: math.unit(270, "lb"),
  17995. name: "Anthro",
  17996. image: {
  17997. source: "./media/characters/embra/anthro.svg",
  17998. extra: 200 / 187,
  17999. bottom: 0.02
  18000. }
  18001. },
  18002. feral: {
  18003. height: math.unit(18 + 8 / 12, "feet"),
  18004. weight: math.unit(576, "lb"),
  18005. name: "Feral",
  18006. image: {
  18007. source: "./media/characters/embra/feral.svg",
  18008. extra: 152 / 137,
  18009. bottom: 0.037
  18010. }
  18011. },
  18012. },
  18013. [
  18014. {
  18015. name: "Normal",
  18016. height: math.unit(9 + 2 / 12, "feet"),
  18017. default: true
  18018. },
  18019. ]
  18020. ))
  18021. characterMakers.push(() => makeCharacter(
  18022. { name: "Grottos", species: ["dracha"], tags: ["anthro"] },
  18023. {
  18024. anthro: {
  18025. height: math.unit(10 + 9 / 12, "feet"),
  18026. weight: math.unit(224, "lb"),
  18027. name: "Anthro",
  18028. image: {
  18029. source: "./media/characters/grottos/anthro.svg",
  18030. extra: 350 / 332,
  18031. bottom: 0.045
  18032. }
  18033. },
  18034. feral: {
  18035. height: math.unit(20 + 7 / 12, "feet"),
  18036. weight: math.unit(629, "lb"),
  18037. name: "Feral",
  18038. image: {
  18039. source: "./media/characters/grottos/feral.svg",
  18040. extra: 207 / 190,
  18041. bottom: 0.05
  18042. }
  18043. },
  18044. },
  18045. [
  18046. {
  18047. name: "Normal",
  18048. height: math.unit(10 + 9 / 12, "feet"),
  18049. default: true
  18050. },
  18051. ]
  18052. ))
  18053. characterMakers.push(() => makeCharacter(
  18054. { name: "Frifna", species: ["dracha"], tags: ["anthro"] },
  18055. {
  18056. anthro: {
  18057. height: math.unit(9 + 6 / 12, "feet"),
  18058. weight: math.unit(298, "lb"),
  18059. name: "Anthro",
  18060. image: {
  18061. source: "./media/characters/frifna/anthro.svg",
  18062. extra: 282 / 269,
  18063. bottom: 0.015
  18064. }
  18065. },
  18066. feral: {
  18067. height: math.unit(16 + 2 / 12, "feet"),
  18068. weight: math.unit(624, "lb"),
  18069. name: "Feral",
  18070. image: {
  18071. source: "./media/characters/frifna/feral.svg"
  18072. }
  18073. },
  18074. },
  18075. [
  18076. {
  18077. name: "Normal",
  18078. height: math.unit(9 + 6 / 12, "feet"),
  18079. default: true
  18080. },
  18081. ]
  18082. ))
  18083. characterMakers.push(() => makeCharacter(
  18084. { name: "Elise", species: ["mongoose"], tags: ["anthro"] },
  18085. {
  18086. front: {
  18087. height: math.unit(6 + 2 / 12, "feet"),
  18088. weight: math.unit(168, "lb"),
  18089. name: "Front",
  18090. image: {
  18091. source: "./media/characters/elise/front.svg",
  18092. extra: 276 / 271
  18093. }
  18094. },
  18095. },
  18096. [
  18097. {
  18098. name: "Normal",
  18099. height: math.unit(6 + 2 / 12, "feet"),
  18100. default: true
  18101. },
  18102. ]
  18103. ))
  18104. characterMakers.push(() => makeCharacter(
  18105. { name: "Glade", species: ["wolf"], tags: ["anthro"] },
  18106. {
  18107. front: {
  18108. height: math.unit(5 + 10 / 12, "feet"),
  18109. weight: math.unit(210, "lb"),
  18110. name: "Front",
  18111. image: {
  18112. source: "./media/characters/glade/front.svg",
  18113. extra: 258 / 247,
  18114. bottom: 0.008
  18115. }
  18116. },
  18117. },
  18118. [
  18119. {
  18120. name: "Normal",
  18121. height: math.unit(5 + 10 / 12, "feet"),
  18122. default: true
  18123. },
  18124. ]
  18125. ))
  18126. characterMakers.push(() => makeCharacter(
  18127. { name: "Rina", species: ["fox"], tags: ["anthro"] },
  18128. {
  18129. front: {
  18130. height: math.unit(5 + 10 / 12, "feet"),
  18131. weight: math.unit(129, "lb"),
  18132. name: "Front",
  18133. image: {
  18134. source: "./media/characters/rina/front.svg",
  18135. extra: 266 / 255,
  18136. bottom: 0.005
  18137. }
  18138. },
  18139. },
  18140. [
  18141. {
  18142. name: "Normal",
  18143. height: math.unit(5 + 10 / 12, "feet"),
  18144. default: true
  18145. },
  18146. ]
  18147. ))
  18148. characterMakers.push(() => makeCharacter(
  18149. { name: "Veronica", species: ["fox", "synth"], tags: ["anthro"] },
  18150. {
  18151. front: {
  18152. height: math.unit(6 + 1 / 12, "feet"),
  18153. weight: math.unit(192, "lb"),
  18154. name: "Front",
  18155. image: {
  18156. source: "./media/characters/veronica/front.svg",
  18157. extra: 319 / 309,
  18158. bottom: 0.005
  18159. }
  18160. },
  18161. },
  18162. [
  18163. {
  18164. name: "Normal",
  18165. height: math.unit(6 + 1 / 12, "feet"),
  18166. default: true
  18167. },
  18168. ]
  18169. ))
  18170. characterMakers.push(() => makeCharacter(
  18171. { name: "Braxton", species: ["great-dane"], tags: ["anthro"] },
  18172. {
  18173. front: {
  18174. height: math.unit(9 + 3 / 12, "feet"),
  18175. weight: math.unit(1100, "lb"),
  18176. name: "Front",
  18177. image: {
  18178. source: "./media/characters/braxton/front.svg",
  18179. extra: 1057 / 984,
  18180. bottom: 0.05
  18181. }
  18182. },
  18183. },
  18184. [
  18185. {
  18186. name: "Normal",
  18187. height: math.unit(9 + 3 / 12, "feet")
  18188. },
  18189. {
  18190. name: "Giant",
  18191. height: math.unit(300, "feet"),
  18192. default: true
  18193. },
  18194. {
  18195. name: "Macro",
  18196. height: math.unit(700, "feet")
  18197. },
  18198. {
  18199. name: "Megamacro",
  18200. height: math.unit(6000, "feet")
  18201. },
  18202. ]
  18203. ))
  18204. characterMakers.push(() => makeCharacter(
  18205. { name: "Blue Feyonics", species: ["phoenix"], tags: ["anthro"] },
  18206. {
  18207. front: {
  18208. height: math.unit(6 + 7 / 12, "feet"),
  18209. weight: math.unit(150, "lb"),
  18210. name: "Front",
  18211. image: {
  18212. source: "./media/characters/blue-feyonics/front.svg",
  18213. extra: 1403 / 1306,
  18214. bottom: 0.047
  18215. }
  18216. },
  18217. },
  18218. [
  18219. {
  18220. name: "Normal",
  18221. height: math.unit(6 + 7 / 12, "feet"),
  18222. default: true
  18223. },
  18224. ]
  18225. ))
  18226. characterMakers.push(() => makeCharacter(
  18227. { name: "Maxwell", species: ["shiba-inu", "wolf"], tags: ["anthro"] },
  18228. {
  18229. front: {
  18230. height: math.unit(1.8, "meters"),
  18231. weight: math.unit(60, "kg"),
  18232. name: "Front",
  18233. image: {
  18234. source: "./media/characters/maxwell/front.svg",
  18235. extra: 2060 / 1873
  18236. }
  18237. },
  18238. },
  18239. [
  18240. {
  18241. name: "Micro",
  18242. height: math.unit(1, "mm")
  18243. },
  18244. {
  18245. name: "Normal",
  18246. height: math.unit(1.8, "meter"),
  18247. default: true
  18248. },
  18249. {
  18250. name: "Macro",
  18251. height: math.unit(30, "meters")
  18252. },
  18253. {
  18254. name: "Megamacro",
  18255. height: math.unit(10, "km")
  18256. },
  18257. ]
  18258. ))
  18259. characterMakers.push(() => makeCharacter(
  18260. { name: "Jack", species: ["wolf", "dragon"], tags: ["anthro"] },
  18261. {
  18262. front: {
  18263. height: math.unit(6, "feet"),
  18264. weight: math.unit(150, "lb"),
  18265. name: "Front",
  18266. image: {
  18267. source: "./media/characters/jack/front.svg",
  18268. extra: 1754 / 1640,
  18269. bottom: 0.01
  18270. }
  18271. },
  18272. },
  18273. [
  18274. {
  18275. name: "Normal",
  18276. height: math.unit(80000, "feet"),
  18277. default: true
  18278. },
  18279. {
  18280. name: "Max size",
  18281. height: math.unit(10, "lightyears")
  18282. },
  18283. ]
  18284. ))
  18285. characterMakers.push(() => makeCharacter(
  18286. { name: "Cafat", species: ["husky"], tags: ["taur"] },
  18287. {
  18288. urban: {
  18289. height: math.unit(5, "feet"),
  18290. weight: math.unit(240, "lb"),
  18291. name: "Urban",
  18292. image: {
  18293. source: "./media/characters/cafat/urban.svg",
  18294. extra: 1223/1126,
  18295. bottom: 205/1428
  18296. }
  18297. },
  18298. summer: {
  18299. height: math.unit(5, "feet"),
  18300. weight: math.unit(240, "lb"),
  18301. name: "Summer",
  18302. image: {
  18303. source: "./media/characters/cafat/summer.svg",
  18304. extra: 1223/1126,
  18305. bottom: 205/1428
  18306. }
  18307. },
  18308. winter: {
  18309. height: math.unit(5, "feet"),
  18310. weight: math.unit(240, "lb"),
  18311. name: "Winter",
  18312. image: {
  18313. source: "./media/characters/cafat/winter.svg",
  18314. extra: 1223/1126,
  18315. bottom: 205/1428
  18316. }
  18317. },
  18318. lingerie: {
  18319. height: math.unit(5, "feet"),
  18320. weight: math.unit(240, "lb"),
  18321. name: "Lingerie",
  18322. image: {
  18323. source: "./media/characters/cafat/lingerie.svg",
  18324. extra: 1223/1126,
  18325. bottom: 205/1428
  18326. }
  18327. },
  18328. upright: {
  18329. height: math.unit(6.3, "feet"),
  18330. weight: math.unit(240, "lb"),
  18331. name: "Upright",
  18332. image: {
  18333. source: "./media/characters/cafat/upright.svg",
  18334. bottom: 0.01
  18335. }
  18336. },
  18337. uprightFull: {
  18338. height: math.unit(6.3, "feet"),
  18339. weight: math.unit(240, "lb"),
  18340. name: "Upright (Full)",
  18341. image: {
  18342. source: "./media/characters/cafat/upright-full.svg",
  18343. bottom: 0.01
  18344. }
  18345. },
  18346. },
  18347. [
  18348. {
  18349. name: "Small",
  18350. height: math.unit(4, "feet"),
  18351. default: true
  18352. },
  18353. {
  18354. name: "Large",
  18355. height: math.unit(13, "feet")
  18356. },
  18357. ]
  18358. ))
  18359. characterMakers.push(() => makeCharacter(
  18360. { name: "Verin Raharra", species: ["sergal"], tags: ["anthro"] },
  18361. {
  18362. front: {
  18363. height: math.unit(6, "feet"),
  18364. weight: math.unit(150, "lb"),
  18365. name: "Front",
  18366. image: {
  18367. source: "./media/characters/verin-raharra/front.svg",
  18368. extra: 5019 / 4835,
  18369. bottom: 0.023
  18370. }
  18371. },
  18372. },
  18373. [
  18374. {
  18375. name: "Normal",
  18376. height: math.unit(7 + 5 / 12, "feet"),
  18377. default: true
  18378. },
  18379. {
  18380. name: "Upsized",
  18381. height: math.unit(20, "feet")
  18382. },
  18383. ]
  18384. ))
  18385. characterMakers.push(() => makeCharacter(
  18386. { name: "Nakata", species: ["hyena"], tags: ["anthro"] },
  18387. {
  18388. front: {
  18389. height: math.unit(7, "feet"),
  18390. weight: math.unit(230, "lb"),
  18391. name: "Front",
  18392. image: {
  18393. source: "./media/characters/nakata/front.svg",
  18394. extra: 1.005,
  18395. bottom: 0.01
  18396. }
  18397. },
  18398. },
  18399. [
  18400. {
  18401. name: "Normal",
  18402. height: math.unit(7, "feet"),
  18403. default: true
  18404. },
  18405. {
  18406. name: "Big",
  18407. height: math.unit(14, "feet")
  18408. },
  18409. {
  18410. name: "Macro",
  18411. height: math.unit(400, "feet")
  18412. },
  18413. ]
  18414. ))
  18415. characterMakers.push(() => makeCharacter(
  18416. { name: "Lily", species: ["ruppells-fox"], tags: ["anthro"] },
  18417. {
  18418. front: {
  18419. height: math.unit(4.91, "feet"),
  18420. weight: math.unit(100, "lb"),
  18421. name: "Front",
  18422. image: {
  18423. source: "./media/characters/lily/front.svg",
  18424. extra: 1585 / 1415,
  18425. bottom: 0.02
  18426. }
  18427. },
  18428. },
  18429. [
  18430. {
  18431. name: "Normal",
  18432. height: math.unit(4.91, "feet"),
  18433. default: true
  18434. },
  18435. ]
  18436. ))
  18437. characterMakers.push(() => makeCharacter(
  18438. { name: "Sheila", species: ["leopard-seal"], tags: ["anthro"] },
  18439. {
  18440. laying: {
  18441. height: math.unit(4 + 4 / 12, "feet"),
  18442. weight: math.unit(600, "lb"),
  18443. name: "Laying",
  18444. image: {
  18445. source: "./media/characters/sheila/laying.svg",
  18446. extra: 1333 / 1265,
  18447. bottom: 0.16
  18448. }
  18449. },
  18450. },
  18451. [
  18452. {
  18453. name: "Normal",
  18454. height: math.unit(4 + 4 / 12, "feet"),
  18455. default: true
  18456. },
  18457. ]
  18458. ))
  18459. characterMakers.push(() => makeCharacter(
  18460. { name: "Sax", species: ["argonian"], tags: ["anthro"] },
  18461. {
  18462. front: {
  18463. height: math.unit(6, "feet"),
  18464. weight: math.unit(190, "lb"),
  18465. name: "Front",
  18466. image: {
  18467. source: "./media/characters/sax/front.svg",
  18468. extra: 1187 / 973,
  18469. bottom: 0.042
  18470. }
  18471. },
  18472. },
  18473. [
  18474. {
  18475. name: "Micro",
  18476. height: math.unit(4, "inches"),
  18477. default: true
  18478. },
  18479. ]
  18480. ))
  18481. characterMakers.push(() => makeCharacter(
  18482. { name: "Pandora", species: ["fox"], tags: ["anthro"] },
  18483. {
  18484. front: {
  18485. height: math.unit(6, "feet"),
  18486. weight: math.unit(150, "lb"),
  18487. name: "Front",
  18488. image: {
  18489. source: "./media/characters/pandora/front.svg",
  18490. extra: 2720 / 2556,
  18491. bottom: 0.015
  18492. }
  18493. },
  18494. back: {
  18495. height: math.unit(6, "feet"),
  18496. weight: math.unit(150, "lb"),
  18497. name: "Back",
  18498. image: {
  18499. source: "./media/characters/pandora/back.svg",
  18500. extra: 2720 / 2556,
  18501. bottom: 0.01
  18502. }
  18503. },
  18504. beans: {
  18505. height: math.unit(6 / 8, "feet"),
  18506. name: "Beans",
  18507. image: {
  18508. source: "./media/characters/pandora/beans.svg"
  18509. }
  18510. },
  18511. collar: {
  18512. height: math.unit(0.31, "feet"),
  18513. name: "Collar",
  18514. image: {
  18515. source: "./media/characters/pandora/collar.svg"
  18516. }
  18517. },
  18518. skirt: {
  18519. height: math.unit(6, "feet"),
  18520. weight: math.unit(150, "lb"),
  18521. name: "Skirt",
  18522. image: {
  18523. source: "./media/characters/pandora/skirt.svg",
  18524. extra: 1622 / 1525,
  18525. bottom: 0.015
  18526. }
  18527. },
  18528. hoodie: {
  18529. height: math.unit(6, "feet"),
  18530. weight: math.unit(150, "lb"),
  18531. name: "Hoodie",
  18532. image: {
  18533. source: "./media/characters/pandora/hoodie.svg",
  18534. extra: 1622 / 1525,
  18535. bottom: 0.015
  18536. }
  18537. },
  18538. casual: {
  18539. height: math.unit(6, "feet"),
  18540. weight: math.unit(150, "lb"),
  18541. name: "Casual",
  18542. image: {
  18543. source: "./media/characters/pandora/casual.svg",
  18544. extra: 1622 / 1525,
  18545. bottom: 0.015
  18546. }
  18547. },
  18548. },
  18549. [
  18550. {
  18551. name: "Normal",
  18552. height: math.unit(6, "feet")
  18553. },
  18554. {
  18555. name: "Big Steppy",
  18556. height: math.unit(1, "km"),
  18557. default: true
  18558. },
  18559. {
  18560. name: "Galactic Steppy",
  18561. height: math.unit(2, "gigameters")
  18562. },
  18563. ]
  18564. ))
  18565. characterMakers.push(() => makeCharacter(
  18566. { name: "Venio Darcony", species: ["hyena"], tags: ["anthro"] },
  18567. {
  18568. side: {
  18569. height: math.unit(10, "feet"),
  18570. weight: math.unit(800, "kg"),
  18571. name: "Side",
  18572. image: {
  18573. source: "./media/characters/venio-darcony/side.svg",
  18574. extra: 1373 / 1003,
  18575. bottom: 0.037
  18576. }
  18577. },
  18578. front: {
  18579. height: math.unit(19, "feet"),
  18580. weight: math.unit(800, "kg"),
  18581. name: "Front",
  18582. image: {
  18583. source: "./media/characters/venio-darcony/front.svg"
  18584. }
  18585. },
  18586. back: {
  18587. height: math.unit(19, "feet"),
  18588. weight: math.unit(800, "kg"),
  18589. name: "Back",
  18590. image: {
  18591. source: "./media/characters/venio-darcony/back.svg"
  18592. }
  18593. },
  18594. sideNsfw: {
  18595. height: math.unit(10, "feet"),
  18596. weight: math.unit(800, "kg"),
  18597. name: "Side (NSFW)",
  18598. image: {
  18599. source: "./media/characters/venio-darcony/side-nsfw.svg",
  18600. extra: 1373 / 1003,
  18601. bottom: 0.037
  18602. }
  18603. },
  18604. frontNsfw: {
  18605. height: math.unit(19, "feet"),
  18606. weight: math.unit(800, "kg"),
  18607. name: "Front (NSFW)",
  18608. image: {
  18609. source: "./media/characters/venio-darcony/front-nsfw.svg"
  18610. }
  18611. },
  18612. backNsfw: {
  18613. height: math.unit(19, "feet"),
  18614. weight: math.unit(800, "kg"),
  18615. name: "Back (NSFW)",
  18616. image: {
  18617. source: "./media/characters/venio-darcony/back-nsfw.svg"
  18618. }
  18619. },
  18620. sideArmored: {
  18621. height: math.unit(10, "feet"),
  18622. weight: math.unit(800, "kg"),
  18623. name: "Side (Armored)",
  18624. image: {
  18625. source: "./media/characters/venio-darcony/side-armored.svg",
  18626. extra: 1373 / 1003,
  18627. bottom: 0.037
  18628. }
  18629. },
  18630. frontArmored: {
  18631. height: math.unit(19, "feet"),
  18632. weight: math.unit(900, "kg"),
  18633. name: "Front (Armored)",
  18634. image: {
  18635. source: "./media/characters/venio-darcony/front-armored.svg"
  18636. }
  18637. },
  18638. backArmored: {
  18639. height: math.unit(19, "feet"),
  18640. weight: math.unit(900, "kg"),
  18641. name: "Back (Armored)",
  18642. image: {
  18643. source: "./media/characters/venio-darcony/back-armored.svg"
  18644. }
  18645. },
  18646. sword: {
  18647. height: math.unit(10, "feet"),
  18648. weight: math.unit(50, "lb"),
  18649. name: "Sword",
  18650. image: {
  18651. source: "./media/characters/venio-darcony/sword.svg"
  18652. }
  18653. },
  18654. },
  18655. [
  18656. {
  18657. name: "Normal",
  18658. height: math.unit(10, "feet")
  18659. },
  18660. {
  18661. name: "Macro",
  18662. height: math.unit(130, "feet"),
  18663. default: true
  18664. },
  18665. {
  18666. name: "Macro+",
  18667. height: math.unit(240, "feet")
  18668. },
  18669. ]
  18670. ))
  18671. characterMakers.push(() => makeCharacter(
  18672. { name: "Veski", species: ["shark"], tags: ["anthro"] },
  18673. {
  18674. front: {
  18675. height: math.unit(6, "feet"),
  18676. weight: math.unit(150, "lb"),
  18677. name: "Front",
  18678. image: {
  18679. source: "./media/characters/veski/front.svg",
  18680. extra: 1299 / 1225,
  18681. bottom: 0.04
  18682. }
  18683. },
  18684. back: {
  18685. height: math.unit(6, "feet"),
  18686. weight: math.unit(150, "lb"),
  18687. name: "Back",
  18688. image: {
  18689. source: "./media/characters/veski/back.svg",
  18690. extra: 1299 / 1225,
  18691. bottom: 0.008
  18692. }
  18693. },
  18694. maw: {
  18695. height: math.unit(1.5 * 1.21, "feet"),
  18696. name: "Maw",
  18697. image: {
  18698. source: "./media/characters/veski/maw.svg"
  18699. }
  18700. },
  18701. },
  18702. [
  18703. {
  18704. name: "Macro",
  18705. height: math.unit(2, "km"),
  18706. default: true
  18707. },
  18708. ]
  18709. ))
  18710. characterMakers.push(() => makeCharacter(
  18711. { name: "Isabelle", species: ["wolf"], tags: ["anthro"] },
  18712. {
  18713. front: {
  18714. height: math.unit(5 + 7 / 12, "feet"),
  18715. name: "Front",
  18716. image: {
  18717. source: "./media/characters/isabelle/front.svg",
  18718. extra: 2130 / 1976,
  18719. bottom: 0.05
  18720. }
  18721. },
  18722. },
  18723. [
  18724. {
  18725. name: "Supermicro",
  18726. height: math.unit(10, "micrometers")
  18727. },
  18728. {
  18729. name: "Micro",
  18730. height: math.unit(1, "inch")
  18731. },
  18732. {
  18733. name: "Tiny",
  18734. height: math.unit(5, "inches")
  18735. },
  18736. {
  18737. name: "Standard",
  18738. height: math.unit(5 + 7 / 12, "inches")
  18739. },
  18740. {
  18741. name: "Macro",
  18742. height: math.unit(80, "meters"),
  18743. default: true
  18744. },
  18745. {
  18746. name: "Megamacro",
  18747. height: math.unit(250, "meters")
  18748. },
  18749. {
  18750. name: "Gigamacro",
  18751. height: math.unit(5, "km")
  18752. },
  18753. {
  18754. name: "Cosmic",
  18755. height: math.unit(2.5e6, "miles")
  18756. },
  18757. ]
  18758. ))
  18759. characterMakers.push(() => makeCharacter(
  18760. { name: "Hanzo", species: ["greninja"], tags: ["anthro"] },
  18761. {
  18762. front: {
  18763. height: math.unit(6, "feet"),
  18764. weight: math.unit(150, "lb"),
  18765. name: "Front",
  18766. image: {
  18767. source: "./media/characters/hanzo/front.svg",
  18768. extra: 374 / 344,
  18769. bottom: 0.02
  18770. }
  18771. },
  18772. },
  18773. [
  18774. {
  18775. name: "Normal",
  18776. height: math.unit(8, "feet"),
  18777. default: true
  18778. },
  18779. ]
  18780. ))
  18781. characterMakers.push(() => makeCharacter(
  18782. { name: "Anna", species: ["greninja"], tags: ["anthro"] },
  18783. {
  18784. front: {
  18785. height: math.unit(7, "feet"),
  18786. weight: math.unit(130, "lb"),
  18787. name: "Front",
  18788. image: {
  18789. source: "./media/characters/anna/front.svg",
  18790. extra: 169 / 145,
  18791. bottom: 0.06
  18792. }
  18793. },
  18794. full: {
  18795. height: math.unit(4.96, "feet"),
  18796. weight: math.unit(220, "lb"),
  18797. name: "Full",
  18798. image: {
  18799. source: "./media/characters/anna/full.svg",
  18800. extra: 138 / 114,
  18801. bottom: 0.15
  18802. }
  18803. },
  18804. tongue: {
  18805. height: math.unit(2.53, "feet"),
  18806. name: "Tongue",
  18807. image: {
  18808. source: "./media/characters/anna/tongue.svg"
  18809. }
  18810. },
  18811. },
  18812. [
  18813. {
  18814. name: "Normal",
  18815. height: math.unit(7, "feet"),
  18816. default: true
  18817. },
  18818. ]
  18819. ))
  18820. characterMakers.push(() => makeCharacter(
  18821. { name: "Ian Corvid", species: ["crow"], tags: ["anthro"] },
  18822. {
  18823. front: {
  18824. height: math.unit(7 + 1/12, "feet"),
  18825. weight: math.unit(150, "lb"),
  18826. name: "Front",
  18827. image: {
  18828. source: "./media/characters/ian-corvid/front.svg",
  18829. extra: 621/591,
  18830. bottom: 14/635
  18831. }
  18832. },
  18833. back: {
  18834. height: math.unit(7 + 1/12, "feet"),
  18835. weight: math.unit(150, "lb"),
  18836. name: "Back",
  18837. image: {
  18838. source: "./media/characters/ian-corvid/back.svg",
  18839. extra: 621/600,
  18840. bottom: 10/631
  18841. }
  18842. },
  18843. stomping: {
  18844. height: math.unit(7 + 1/12, "feet"),
  18845. weight: math.unit(150, "lb"),
  18846. name: "Stomping",
  18847. image: {
  18848. source: "./media/characters/ian-corvid/stomping.svg",
  18849. extra: 309/291,
  18850. bottom: 7/316
  18851. }
  18852. },
  18853. tongue: {
  18854. height: math.unit(3.9, "feet"),
  18855. name: "Tongue",
  18856. image: {
  18857. source: "./media/characters/ian-corvid/tongue.svg"
  18858. }
  18859. },
  18860. beak: {
  18861. height: math.unit(0.9, "feet"),
  18862. name: "Beak",
  18863. image: {
  18864. source: "./media/characters/ian-corvid/beak.svg"
  18865. }
  18866. },
  18867. sitting: {
  18868. height: math.unit(7 / 1.8, "feet"),
  18869. weight: math.unit(150, "lb"),
  18870. name: "Sitting",
  18871. image: {
  18872. source: "./media/characters/ian-corvid/sitting.svg",
  18873. extra: 1400 / 1269,
  18874. bottom: 0.15
  18875. }
  18876. },
  18877. },
  18878. [
  18879. {
  18880. name: "Tiny Microw",
  18881. height: math.unit(1, "inch")
  18882. },
  18883. {
  18884. name: "Microw",
  18885. height: math.unit(6, "inches")
  18886. },
  18887. {
  18888. name: "Crow",
  18889. height: math.unit(7 + 1 / 12, "feet"),
  18890. default: true
  18891. },
  18892. {
  18893. name: "Macrow",
  18894. height: math.unit(176, "feet")
  18895. },
  18896. ]
  18897. ))
  18898. characterMakers.push(() => makeCharacter(
  18899. { name: "Natalie Kellon", species: ["red-fox"], tags: ["anthro"] },
  18900. {
  18901. front: {
  18902. height: math.unit(5 + 7/12, "feet"),
  18903. weight: math.unit(170, "lb"),
  18904. name: "Front",
  18905. image: {
  18906. source: "./media/characters/natalie-kellon/front.svg",
  18907. extra: 1723/1656,
  18908. bottom: 87/1810
  18909. },
  18910. extraAttributes: {
  18911. "tailLength": {
  18912. name: "Tail Length",
  18913. power: 1,
  18914. type: "length",
  18915. base: math.unit(2 + 6/12, "feet")
  18916. },
  18917. }
  18918. },
  18919. back: {
  18920. height: math.unit(5 + 7/12, "feet"),
  18921. weight: math.unit(170, "lb"),
  18922. name: "Back",
  18923. image: {
  18924. source: "./media/characters/natalie-kellon/back.svg",
  18925. extra: 1738/1663,
  18926. bottom: 30/1768
  18927. },
  18928. extraAttributes: {
  18929. "tailLength": {
  18930. name: "Tail Length",
  18931. power: 1,
  18932. type: "length",
  18933. base: math.unit(2 + 6/12, "feet")
  18934. },
  18935. }
  18936. },
  18937. head: {
  18938. height: math.unit(1.67769, "feet"),
  18939. name: "Head",
  18940. image: {
  18941. source: "./media/characters/natalie-kellon/head.svg"
  18942. }
  18943. },
  18944. },
  18945. [
  18946. {
  18947. name: "Tiny",
  18948. height: math.unit(1/16, "inches")
  18949. },
  18950. {
  18951. name: "Micro",
  18952. height: math.unit(1, "inch")
  18953. },
  18954. {
  18955. name: "Small",
  18956. height: math.unit(5, "inches")
  18957. },
  18958. {
  18959. name: "Normal",
  18960. height: math.unit(5 + 7/12, "feet"),
  18961. default: true
  18962. },
  18963. {
  18964. name: "Amazon",
  18965. height: math.unit(13 + 6/12, "feet")
  18966. },
  18967. {
  18968. name: "Giantess",
  18969. height: math.unit(50, "feet")
  18970. },
  18971. {
  18972. name: "Massive",
  18973. height: math.unit(200, "feet")
  18974. },
  18975. {
  18976. name: "Titaness",
  18977. height: math.unit(2, "miles")
  18978. },
  18979. ]
  18980. ))
  18981. characterMakers.push(() => makeCharacter(
  18982. { name: "Alluria", species: ["megalodon"], tags: ["anthro"] },
  18983. {
  18984. front: {
  18985. height: math.unit(6, "feet"),
  18986. weight: math.unit(150, "lb"),
  18987. name: "Front",
  18988. image: {
  18989. source: "./media/characters/alluria/front.svg",
  18990. extra: 806 / 738,
  18991. bottom: 0.01
  18992. }
  18993. },
  18994. side: {
  18995. height: math.unit(6, "feet"),
  18996. weight: math.unit(150, "lb"),
  18997. name: "Side",
  18998. image: {
  18999. source: "./media/characters/alluria/side.svg",
  19000. extra: 800 / 750,
  19001. }
  19002. },
  19003. back: {
  19004. height: math.unit(6, "feet"),
  19005. weight: math.unit(150, "lb"),
  19006. name: "Back",
  19007. image: {
  19008. source: "./media/characters/alluria/back.svg",
  19009. extra: 806 / 738,
  19010. }
  19011. },
  19012. frontMaid: {
  19013. height: math.unit(6, "feet"),
  19014. weight: math.unit(150, "lb"),
  19015. name: "Front (Maid)",
  19016. image: {
  19017. source: "./media/characters/alluria/front-maid.svg",
  19018. extra: 806 / 738,
  19019. bottom: 0.01
  19020. }
  19021. },
  19022. sideMaid: {
  19023. height: math.unit(6, "feet"),
  19024. weight: math.unit(150, "lb"),
  19025. name: "Side (Maid)",
  19026. image: {
  19027. source: "./media/characters/alluria/side-maid.svg",
  19028. extra: 800 / 750,
  19029. bottom: 0.005
  19030. }
  19031. },
  19032. backMaid: {
  19033. height: math.unit(6, "feet"),
  19034. weight: math.unit(150, "lb"),
  19035. name: "Back (Maid)",
  19036. image: {
  19037. source: "./media/characters/alluria/back-maid.svg",
  19038. extra: 806 / 738,
  19039. }
  19040. },
  19041. },
  19042. [
  19043. {
  19044. name: "Micro",
  19045. height: math.unit(6, "inches"),
  19046. default: true
  19047. },
  19048. ]
  19049. ))
  19050. characterMakers.push(() => makeCharacter(
  19051. { name: "Kyle", species: ["deer"], tags: ["anthro"] },
  19052. {
  19053. front: {
  19054. height: math.unit(6, "feet"),
  19055. weight: math.unit(150, "lb"),
  19056. name: "Front",
  19057. image: {
  19058. source: "./media/characters/kyle/front.svg",
  19059. extra: 1069 / 962,
  19060. bottom: 77.228 / 1727.45
  19061. }
  19062. },
  19063. },
  19064. [
  19065. {
  19066. name: "Macro",
  19067. height: math.unit(150, "feet"),
  19068. default: true
  19069. },
  19070. ]
  19071. ))
  19072. characterMakers.push(() => makeCharacter(
  19073. { name: "Duncan", species: ["kangaroo"], tags: ["anthro"] },
  19074. {
  19075. front: {
  19076. height: math.unit(6, "feet"),
  19077. weight: math.unit(300, "lb"),
  19078. name: "Front",
  19079. image: {
  19080. source: "./media/characters/duncan/front.svg",
  19081. extra: 1650 / 1482,
  19082. bottom: 0.05
  19083. }
  19084. },
  19085. },
  19086. [
  19087. {
  19088. name: "Macro",
  19089. height: math.unit(100, "feet"),
  19090. default: true
  19091. },
  19092. ]
  19093. ))
  19094. characterMakers.push(() => makeCharacter(
  19095. { name: "Memory", species: ["sugar-glider"], tags: ["anthro"] },
  19096. {
  19097. front: {
  19098. height: math.unit(5 + 4 / 12, "feet"),
  19099. weight: math.unit(220, "lb"),
  19100. name: "Front",
  19101. image: {
  19102. source: "./media/characters/memory/front.svg",
  19103. extra: 3641 / 3545,
  19104. bottom: 0.03
  19105. }
  19106. },
  19107. back: {
  19108. height: math.unit(5 + 4 / 12, "feet"),
  19109. weight: math.unit(220, "lb"),
  19110. name: "Back",
  19111. image: {
  19112. source: "./media/characters/memory/back.svg",
  19113. extra: 3641 / 3545,
  19114. bottom: 0.025
  19115. }
  19116. },
  19117. frontSkirt: {
  19118. height: math.unit(5 + 4 / 12, "feet"),
  19119. weight: math.unit(220, "lb"),
  19120. name: "Front (Skirt)",
  19121. image: {
  19122. source: "./media/characters/memory/front-skirt.svg",
  19123. extra: 3641 / 3545,
  19124. bottom: 0.03
  19125. }
  19126. },
  19127. frontDress: {
  19128. height: math.unit(5 + 4 / 12, "feet"),
  19129. weight: math.unit(220, "lb"),
  19130. name: "Front (Dress)",
  19131. image: {
  19132. source: "./media/characters/memory/front-dress.svg",
  19133. extra: 3641 / 3545,
  19134. bottom: 0.03
  19135. }
  19136. },
  19137. },
  19138. [
  19139. {
  19140. name: "Micro",
  19141. height: math.unit(6, "inches"),
  19142. default: true
  19143. },
  19144. {
  19145. name: "Normal",
  19146. height: math.unit(5 + 4 / 12, "feet")
  19147. },
  19148. ]
  19149. ))
  19150. characterMakers.push(() => makeCharacter(
  19151. { name: "Luno", species: ["rabbit"], tags: ["anthro"] },
  19152. {
  19153. front: {
  19154. height: math.unit(4 + 11 / 12, "feet"),
  19155. weight: math.unit(100, "lb"),
  19156. name: "Front",
  19157. image: {
  19158. source: "./media/characters/luno/front.svg",
  19159. extra: 1535 / 1487,
  19160. bottom: 0.03
  19161. }
  19162. },
  19163. },
  19164. [
  19165. {
  19166. name: "Micro",
  19167. height: math.unit(3, "inches")
  19168. },
  19169. {
  19170. name: "Normal",
  19171. height: math.unit(4 + 11 / 12, "feet"),
  19172. default: true
  19173. },
  19174. {
  19175. name: "Macro",
  19176. height: math.unit(300, "feet")
  19177. },
  19178. {
  19179. name: "Megamacro",
  19180. height: math.unit(700, "miles")
  19181. },
  19182. ]
  19183. ))
  19184. characterMakers.push(() => makeCharacter(
  19185. { name: "Jamesy", species: ["deer"], tags: ["anthro"] },
  19186. {
  19187. front: {
  19188. height: math.unit(6 + 2 / 12, "feet"),
  19189. weight: math.unit(170, "lb"),
  19190. name: "Front",
  19191. image: {
  19192. source: "./media/characters/jamesy/front.svg",
  19193. extra: 440 / 382,
  19194. bottom: 0.005
  19195. }
  19196. },
  19197. },
  19198. [
  19199. {
  19200. name: "Micro",
  19201. height: math.unit(3, "inches")
  19202. },
  19203. {
  19204. name: "Normal",
  19205. height: math.unit(6 + 2 / 12, "feet"),
  19206. default: true
  19207. },
  19208. {
  19209. name: "Macro",
  19210. height: math.unit(300, "feet")
  19211. },
  19212. {
  19213. name: "Megamacro",
  19214. height: math.unit(700, "miles")
  19215. },
  19216. ]
  19217. ))
  19218. characterMakers.push(() => makeCharacter(
  19219. { name: "Mark", species: ["fox"], tags: ["anthro"] },
  19220. {
  19221. front: {
  19222. height: math.unit(6, "feet"),
  19223. weight: math.unit(160, "lb"),
  19224. name: "Front",
  19225. image: {
  19226. source: "./media/characters/mark/front.svg",
  19227. extra: 3300 / 3100,
  19228. bottom: 136.42 / 3440.47
  19229. }
  19230. },
  19231. },
  19232. [
  19233. {
  19234. name: "Macro",
  19235. height: math.unit(120, "meters")
  19236. },
  19237. {
  19238. name: "Bigger Macro",
  19239. height: math.unit(350, "meters")
  19240. },
  19241. {
  19242. name: "Megamacro",
  19243. height: math.unit(8, "km"),
  19244. default: true
  19245. },
  19246. {
  19247. name: "Continental",
  19248. height: math.unit(4550, "km")
  19249. },
  19250. {
  19251. name: "Planetary",
  19252. height: math.unit(65000, "km")
  19253. },
  19254. ]
  19255. ))
  19256. characterMakers.push(() => makeCharacter(
  19257. { name: "Mac", species: ["t-rex"], tags: ["anthro"] },
  19258. {
  19259. front: {
  19260. height: math.unit(6, "feet"),
  19261. weight: math.unit(400, "lb"),
  19262. name: "Front",
  19263. image: {
  19264. source: "./media/characters/mac/front.svg",
  19265. extra: 1048 / 987.7,
  19266. bottom: 60 / 1107.6,
  19267. }
  19268. },
  19269. },
  19270. [
  19271. {
  19272. name: "Macro",
  19273. height: math.unit(500, "feet"),
  19274. default: true
  19275. },
  19276. ]
  19277. ))
  19278. characterMakers.push(() => makeCharacter(
  19279. { name: "Bari", species: ["ampharos"], tags: ["anthro"] },
  19280. {
  19281. front: {
  19282. height: math.unit(5 + 2 / 12, "feet"),
  19283. weight: math.unit(190, "lb"),
  19284. name: "Front",
  19285. image: {
  19286. source: "./media/characters/bari/front.svg",
  19287. extra: 3156 / 2880,
  19288. bottom: 0.03
  19289. }
  19290. },
  19291. back: {
  19292. height: math.unit(5 + 2 / 12, "feet"),
  19293. weight: math.unit(190, "lb"),
  19294. name: "Back",
  19295. image: {
  19296. source: "./media/characters/bari/back.svg",
  19297. extra: 3260 / 2834,
  19298. bottom: 0.025
  19299. }
  19300. },
  19301. frontPlush: {
  19302. height: math.unit(5 + 2 / 12, "feet"),
  19303. weight: math.unit(190, "lb"),
  19304. name: "Front (Plush)",
  19305. image: {
  19306. source: "./media/characters/bari/front-plush.svg",
  19307. extra: 1112 / 1061,
  19308. bottom: 0.002
  19309. }
  19310. },
  19311. },
  19312. [
  19313. {
  19314. name: "Micro",
  19315. height: math.unit(3, "inches")
  19316. },
  19317. {
  19318. name: "Normal",
  19319. height: math.unit(5 + 2 / 12, "feet"),
  19320. default: true
  19321. },
  19322. {
  19323. name: "Macro",
  19324. height: math.unit(20, "feet")
  19325. },
  19326. ]
  19327. ))
  19328. characterMakers.push(() => makeCharacter(
  19329. { name: "Hunter Misha Raven", species: ["saint-bernard"], tags: ["anthro"] },
  19330. {
  19331. front: {
  19332. height: math.unit(6 + 1 / 12, "feet"),
  19333. weight: math.unit(275, "lb"),
  19334. name: "Front",
  19335. image: {
  19336. source: "./media/characters/hunter-misha-raven/front.svg"
  19337. }
  19338. },
  19339. },
  19340. [
  19341. {
  19342. name: "Mortal",
  19343. height: math.unit(6 + 1 / 12, "feet")
  19344. },
  19345. {
  19346. name: "Divine",
  19347. height: math.unit(1.12134e34, "parsecs"),
  19348. default: true
  19349. },
  19350. ]
  19351. ))
  19352. characterMakers.push(() => makeCharacter(
  19353. { name: "Max Calore", species: ["typhlosion"], tags: ["anthro"] },
  19354. {
  19355. front: {
  19356. height: math.unit(6 + 3 / 12, "feet"),
  19357. weight: math.unit(220, "lb"),
  19358. name: "Front",
  19359. image: {
  19360. source: "./media/characters/max-calore/front.svg",
  19361. extra: 1700 / 1648,
  19362. bottom: 0.01
  19363. }
  19364. },
  19365. back: {
  19366. height: math.unit(6 + 3 / 12, "feet"),
  19367. weight: math.unit(220, "lb"),
  19368. name: "Back",
  19369. image: {
  19370. source: "./media/characters/max-calore/back.svg",
  19371. extra: 1700 / 1648,
  19372. bottom: 0.01
  19373. }
  19374. },
  19375. },
  19376. [
  19377. {
  19378. name: "Normal",
  19379. height: math.unit(6 + 3 / 12, "feet"),
  19380. default: true
  19381. },
  19382. ]
  19383. ))
  19384. characterMakers.push(() => makeCharacter(
  19385. { name: "Aspen", species: ["mexican-wolf"], tags: ["feral"] },
  19386. {
  19387. side: {
  19388. height: math.unit(2 + 8 / 12, "feet"),
  19389. weight: math.unit(99, "lb"),
  19390. name: "Side",
  19391. image: {
  19392. source: "./media/characters/aspen/side.svg",
  19393. extra: 152 / 138,
  19394. bottom: 0.032
  19395. }
  19396. },
  19397. },
  19398. [
  19399. {
  19400. name: "Normal",
  19401. height: math.unit(2 + 8 / 12, "feet"),
  19402. default: true
  19403. },
  19404. ]
  19405. ))
  19406. characterMakers.push(() => makeCharacter(
  19407. { name: "Sheila (Feral Wolf)", species: ["wolf"], tags: ["feral"] },
  19408. {
  19409. side: {
  19410. height: math.unit(3 + 2 / 12, "feet"),
  19411. weight: math.unit(224, "lb"),
  19412. name: "Side",
  19413. image: {
  19414. source: "./media/characters/sheila-feral-wolf/side.svg",
  19415. extra: 179 / 166,
  19416. bottom: 0.03
  19417. }
  19418. },
  19419. },
  19420. [
  19421. {
  19422. name: "Normal",
  19423. height: math.unit(3 + 2 / 12, "feet"),
  19424. default: true
  19425. },
  19426. ]
  19427. ))
  19428. characterMakers.push(() => makeCharacter(
  19429. { name: "Michelle", species: ["fox"], tags: ["feral"] },
  19430. {
  19431. side: {
  19432. height: math.unit(1 + 9 / 12, "feet"),
  19433. weight: math.unit(38, "lb"),
  19434. name: "Side",
  19435. image: {
  19436. source: "./media/characters/michelle/side.svg",
  19437. extra: 147 / 136.7,
  19438. bottom: 0.03
  19439. }
  19440. },
  19441. },
  19442. [
  19443. {
  19444. name: "Normal",
  19445. height: math.unit(1 + 9 / 12, "feet"),
  19446. default: true
  19447. },
  19448. ]
  19449. ))
  19450. characterMakers.push(() => makeCharacter(
  19451. { name: "Nino", species: ["stoat"], tags: ["anthro"] },
  19452. {
  19453. front: {
  19454. height: math.unit(1.54, "feet"),
  19455. weight: math.unit(50, "lb"),
  19456. name: "Front",
  19457. image: {
  19458. source: "./media/characters/nino/front.svg"
  19459. }
  19460. },
  19461. },
  19462. [
  19463. {
  19464. name: "Normal",
  19465. height: math.unit(1.54, "feet"),
  19466. default: true
  19467. },
  19468. ]
  19469. ))
  19470. characterMakers.push(() => makeCharacter(
  19471. { name: "Viola", species: ["stoat"], tags: ["anthro"] },
  19472. {
  19473. front: {
  19474. height: math.unit(1.49, "feet"),
  19475. weight: math.unit(45, "lb"),
  19476. name: "Front",
  19477. image: {
  19478. source: "./media/characters/viola/front.svg"
  19479. }
  19480. },
  19481. },
  19482. [
  19483. {
  19484. name: "Normal",
  19485. height: math.unit(1.49, "feet"),
  19486. default: true
  19487. },
  19488. ]
  19489. ))
  19490. characterMakers.push(() => makeCharacter(
  19491. { name: "Atlas", species: ["grizzly-bear"], tags: ["anthro"] },
  19492. {
  19493. front: {
  19494. height: math.unit(6 + 5 / 12, "feet"),
  19495. weight: math.unit(580, "lb"),
  19496. name: "Front",
  19497. image: {
  19498. source: "./media/characters/atlas/front.svg",
  19499. extra: 298.5 / 290,
  19500. bottom: 0.015
  19501. }
  19502. },
  19503. },
  19504. [
  19505. {
  19506. name: "Normal",
  19507. height: math.unit(6 + 5 / 12, "feet"),
  19508. default: true
  19509. },
  19510. ]
  19511. ))
  19512. characterMakers.push(() => makeCharacter(
  19513. { name: "Davy", species: ["cat"], tags: ["feral"] },
  19514. {
  19515. side: {
  19516. height: math.unit(15.6, "inches"),
  19517. weight: math.unit(10, "lb"),
  19518. name: "Side",
  19519. image: {
  19520. source: "./media/characters/davy/side.svg",
  19521. extra: 200 / 170,
  19522. bottom: 0.01
  19523. }
  19524. },
  19525. },
  19526. [
  19527. {
  19528. name: "Normal",
  19529. height: math.unit(15.6, "inches"),
  19530. default: true
  19531. },
  19532. ]
  19533. ))
  19534. characterMakers.push(() => makeCharacter(
  19535. { name: "Fiona", species: ["deer"], tags: ["feral"] },
  19536. {
  19537. side: {
  19538. height: math.unit(4 + 8 / 12, "feet"),
  19539. weight: math.unit(166, "lb"),
  19540. name: "Side",
  19541. image: {
  19542. source: "./media/characters/fiona/side.svg",
  19543. extra: 232 / 220,
  19544. bottom: 0.03
  19545. }
  19546. },
  19547. },
  19548. [
  19549. {
  19550. name: "Normal",
  19551. height: math.unit(4 + 8 / 12, "feet"),
  19552. default: true
  19553. },
  19554. ]
  19555. ))
  19556. characterMakers.push(() => makeCharacter(
  19557. { name: "Lyla", species: ["european-honey-buzzard"], tags: ["feral"] },
  19558. {
  19559. front: {
  19560. height: math.unit(26, "inches"),
  19561. weight: math.unit(35, "lb"),
  19562. name: "Front",
  19563. image: {
  19564. source: "./media/characters/lyla/front.svg",
  19565. bottom: 0.1
  19566. }
  19567. },
  19568. },
  19569. [
  19570. {
  19571. name: "Normal",
  19572. height: math.unit(3, "feet"),
  19573. default: true
  19574. },
  19575. ]
  19576. ))
  19577. characterMakers.push(() => makeCharacter(
  19578. { name: "Perseus", species: ["monitor-lizard", "deity"], tags: ["feral"] },
  19579. {
  19580. side: {
  19581. height: math.unit(1.8, "feet"),
  19582. weight: math.unit(44, "lb"),
  19583. name: "Side",
  19584. image: {
  19585. source: "./media/characters/perseus/side.svg",
  19586. bottom: 0.21
  19587. }
  19588. },
  19589. },
  19590. [
  19591. {
  19592. name: "Normal",
  19593. height: math.unit(1.8, "feet"),
  19594. default: true
  19595. },
  19596. ]
  19597. ))
  19598. characterMakers.push(() => makeCharacter(
  19599. { name: "Remus", species: ["great-blue-heron"], tags: ["feral"] },
  19600. {
  19601. side: {
  19602. height: math.unit(4 + 2 / 12, "feet"),
  19603. weight: math.unit(20, "lb"),
  19604. name: "Side",
  19605. image: {
  19606. source: "./media/characters/remus/side.svg"
  19607. }
  19608. },
  19609. },
  19610. [
  19611. {
  19612. name: "Normal",
  19613. height: math.unit(4 + 2 / 12, "feet"),
  19614. default: true
  19615. },
  19616. ]
  19617. ))
  19618. characterMakers.push(() => makeCharacter(
  19619. { name: "Raf", species: ["maned-wolf"], tags: ["anthro"] },
  19620. {
  19621. front: {
  19622. height: math.unit(4 + 11 / 12, "feet"),
  19623. weight: math.unit(114, "lb"),
  19624. name: "Front",
  19625. image: {
  19626. source: "./media/characters/raf/front.svg",
  19627. extra: 1504/1339,
  19628. bottom: 26/1530
  19629. }
  19630. },
  19631. side: {
  19632. height: math.unit(4 + 11 / 12, "feet"),
  19633. weight: math.unit(114, "lb"),
  19634. name: "Side",
  19635. image: {
  19636. source: "./media/characters/raf/side.svg",
  19637. extra: 1466/1316,
  19638. bottom: 29/1495
  19639. }
  19640. },
  19641. paw: {
  19642. height: math.unit(1.45, "feet"),
  19643. name: "Paw",
  19644. image: {
  19645. source: "./media/characters/raf/paw.svg"
  19646. },
  19647. extraAttributes: {
  19648. "toeSize": {
  19649. name: "Toe Size",
  19650. power: 2,
  19651. type: "area",
  19652. base: math.unit(0.004, "m^2")
  19653. },
  19654. "padSize": {
  19655. name: "Pad Size",
  19656. power: 2,
  19657. type: "area",
  19658. base: math.unit(0.04, "m^2")
  19659. },
  19660. "footSize": {
  19661. name: "Foot Size",
  19662. power: 2,
  19663. type: "area",
  19664. base: math.unit(0.08, "m^2")
  19665. },
  19666. }
  19667. },
  19668. },
  19669. [
  19670. {
  19671. name: "Micro",
  19672. height: math.unit(2, "inches")
  19673. },
  19674. {
  19675. name: "Normal",
  19676. height: math.unit(4 + 11 / 12, "feet"),
  19677. default: true
  19678. },
  19679. {
  19680. name: "Macro",
  19681. height: math.unit(70, "feet")
  19682. },
  19683. ]
  19684. ))
  19685. characterMakers.push(() => makeCharacter(
  19686. { name: "Liam Einarr", species: ["gray-wolf"], tags: ["anthro"] },
  19687. {
  19688. front: {
  19689. height: math.unit(1.5, "meters"),
  19690. weight: math.unit(68, "kg"),
  19691. name: "Front",
  19692. image: {
  19693. source: "./media/characters/liam-einarr/front.svg",
  19694. extra: 2822 / 2666
  19695. }
  19696. },
  19697. back: {
  19698. height: math.unit(1.5, "meters"),
  19699. weight: math.unit(68, "kg"),
  19700. name: "Back",
  19701. image: {
  19702. source: "./media/characters/liam-einarr/back.svg",
  19703. extra: 2822 / 2666,
  19704. bottom: 0.015
  19705. }
  19706. },
  19707. },
  19708. [
  19709. {
  19710. name: "Normal",
  19711. height: math.unit(1.5, "meters"),
  19712. default: true
  19713. },
  19714. {
  19715. name: "Macro",
  19716. height: math.unit(150, "meters")
  19717. },
  19718. {
  19719. name: "Megamacro",
  19720. height: math.unit(35, "km")
  19721. },
  19722. ]
  19723. ))
  19724. characterMakers.push(() => makeCharacter(
  19725. { name: "Linda", species: ["bull-terrier"], tags: ["anthro"] },
  19726. {
  19727. front: {
  19728. height: math.unit(6, "feet"),
  19729. weight: math.unit(75, "kg"),
  19730. name: "Front",
  19731. image: {
  19732. source: "./media/characters/linda/front.svg",
  19733. extra: 930 / 874,
  19734. bottom: 0.004
  19735. }
  19736. },
  19737. },
  19738. [
  19739. {
  19740. name: "Normal",
  19741. height: math.unit(6, "feet"),
  19742. default: true
  19743. },
  19744. ]
  19745. ))
  19746. characterMakers.push(() => makeCharacter(
  19747. { name: "Caylex", species: ["sergal"], tags: ["anthro"] },
  19748. {
  19749. front: {
  19750. height: math.unit(6 + 8 / 12, "feet"),
  19751. weight: math.unit(220, "lb"),
  19752. name: "Front",
  19753. image: {
  19754. source: "./media/characters/caylex/front.svg",
  19755. extra: 821 / 772,
  19756. bottom: 0.07
  19757. }
  19758. },
  19759. back: {
  19760. height: math.unit(6 + 8 / 12, "feet"),
  19761. weight: math.unit(220, "lb"),
  19762. name: "Back",
  19763. image: {
  19764. source: "./media/characters/caylex/back.svg",
  19765. extra: 821 / 772,
  19766. bottom: 0.022
  19767. }
  19768. },
  19769. hand: {
  19770. height: math.unit(1.25, "feet"),
  19771. name: "Hand",
  19772. image: {
  19773. source: "./media/characters/caylex/hand.svg"
  19774. }
  19775. },
  19776. foot: {
  19777. height: math.unit(1.6, "feet"),
  19778. name: "Foot",
  19779. image: {
  19780. source: "./media/characters/caylex/foot.svg"
  19781. }
  19782. },
  19783. armored: {
  19784. height: math.unit(6 + 8 / 12, "feet"),
  19785. weight: math.unit(250, "lb"),
  19786. name: "Armored",
  19787. image: {
  19788. source: "./media/characters/caylex/armored.svg",
  19789. extra: 1420 / 1310,
  19790. bottom: 0.045
  19791. }
  19792. },
  19793. },
  19794. [
  19795. {
  19796. name: "Normal",
  19797. height: math.unit(6 + 8 / 12, "feet"),
  19798. default: true
  19799. },
  19800. {
  19801. name: "Normal+",
  19802. height: math.unit(12, "feet")
  19803. },
  19804. ]
  19805. ))
  19806. characterMakers.push(() => makeCharacter(
  19807. { name: "Alana", species: ["wolf"], tags: ["anthro"] },
  19808. {
  19809. front: {
  19810. height: math.unit(7 + 6 / 12, "feet"),
  19811. weight: math.unit(288, "lb"),
  19812. name: "Front",
  19813. image: {
  19814. source: "./media/characters/alana/front.svg",
  19815. extra: 679 / 653,
  19816. bottom: 22.5 / 701
  19817. }
  19818. },
  19819. },
  19820. [
  19821. {
  19822. name: "Normal",
  19823. height: math.unit(7 + 6 / 12, "feet")
  19824. },
  19825. {
  19826. name: "Large",
  19827. height: math.unit(50, "feet")
  19828. },
  19829. {
  19830. name: "Macro",
  19831. height: math.unit(100, "feet"),
  19832. default: true
  19833. },
  19834. {
  19835. name: "Macro+",
  19836. height: math.unit(200, "feet")
  19837. },
  19838. ]
  19839. ))
  19840. characterMakers.push(() => makeCharacter(
  19841. { name: "Hasani", species: ["hyena"], tags: ["anthro"] },
  19842. {
  19843. front: {
  19844. height: math.unit(6 + 1 / 12, "feet"),
  19845. weight: math.unit(210, "lb"),
  19846. name: "Front",
  19847. image: {
  19848. source: "./media/characters/hasani/front.svg",
  19849. extra: 244 / 232,
  19850. bottom: 0.01
  19851. }
  19852. },
  19853. back: {
  19854. height: math.unit(6 + 1 / 12, "feet"),
  19855. weight: math.unit(210, "lb"),
  19856. name: "Back",
  19857. image: {
  19858. source: "./media/characters/hasani/back.svg",
  19859. extra: 244 / 232,
  19860. bottom: 0.01
  19861. }
  19862. },
  19863. },
  19864. [
  19865. {
  19866. name: "Normal",
  19867. height: math.unit(6 + 1 / 12, "feet")
  19868. },
  19869. {
  19870. name: "Macro",
  19871. height: math.unit(175, "feet"),
  19872. default: true
  19873. },
  19874. ]
  19875. ))
  19876. characterMakers.push(() => makeCharacter(
  19877. { name: "Nita", species: ["african-golden-cat"], tags: ["anthro"] },
  19878. {
  19879. front: {
  19880. height: math.unit(1.82, "meters"),
  19881. weight: math.unit(140, "lb"),
  19882. name: "Front",
  19883. image: {
  19884. source: "./media/characters/nita/front.svg",
  19885. extra: 2473 / 2363,
  19886. bottom: 0.01
  19887. }
  19888. },
  19889. },
  19890. [
  19891. {
  19892. name: "Normal",
  19893. height: math.unit(1.82, "m")
  19894. },
  19895. {
  19896. name: "Macro",
  19897. height: math.unit(300, "m")
  19898. },
  19899. {
  19900. name: "Mistake Canon",
  19901. height: math.unit(0.5, "miles"),
  19902. default: true
  19903. },
  19904. {
  19905. name: "Big Mistake",
  19906. height: math.unit(13, "miles")
  19907. },
  19908. {
  19909. name: "Playing God",
  19910. height: math.unit(2450, "miles")
  19911. },
  19912. ]
  19913. ))
  19914. characterMakers.push(() => makeCharacter(
  19915. { name: "Shiriko", species: ["kobold"], tags: ["anthro"] },
  19916. {
  19917. front: {
  19918. height: math.unit(4, "feet"),
  19919. weight: math.unit(120, "lb"),
  19920. name: "Front",
  19921. image: {
  19922. source: "./media/characters/shiriko/front.svg",
  19923. extra: 970/934,
  19924. bottom: 5/975
  19925. }
  19926. },
  19927. },
  19928. [
  19929. {
  19930. name: "Normal",
  19931. height: math.unit(4, "feet"),
  19932. default: true
  19933. },
  19934. ]
  19935. ))
  19936. characterMakers.push(() => makeCharacter(
  19937. { name: "Deja", species: ["kangaroo"], tags: ["anthro"] },
  19938. {
  19939. front: {
  19940. height: math.unit(6, "feet"),
  19941. name: "front",
  19942. image: {
  19943. source: "./media/characters/deja/front.svg",
  19944. extra: 926 / 840,
  19945. bottom: 0.07
  19946. }
  19947. },
  19948. },
  19949. [
  19950. {
  19951. name: "Planck Length",
  19952. height: math.unit(1.6e-35, "meters")
  19953. },
  19954. {
  19955. name: "Normal",
  19956. height: math.unit(30.48, "meters"),
  19957. default: true
  19958. },
  19959. {
  19960. name: "Universal",
  19961. height: math.unit(8.8e26, "meters")
  19962. },
  19963. ]
  19964. ))
  19965. characterMakers.push(() => makeCharacter(
  19966. { name: "Anima", species: ["black-panther"], tags: ["anthro"] },
  19967. {
  19968. side: {
  19969. height: math.unit(8, "feet"),
  19970. weight: math.unit(6300, "lb"),
  19971. name: "Side",
  19972. image: {
  19973. source: "./media/characters/anima/side.svg",
  19974. bottom: 0.035
  19975. }
  19976. },
  19977. },
  19978. [
  19979. {
  19980. name: "Normal",
  19981. height: math.unit(8, "feet"),
  19982. default: true
  19983. },
  19984. ]
  19985. ))
  19986. characterMakers.push(() => makeCharacter(
  19987. { name: "Bianca", species: ["cat", "rabbit"], tags: ["anthro"] },
  19988. {
  19989. front: {
  19990. height: math.unit(8, "feet"),
  19991. weight: math.unit(350, "lb"),
  19992. name: "Front",
  19993. image: {
  19994. source: "./media/characters/bianca/front.svg",
  19995. extra: 234 / 225,
  19996. bottom: 0.03
  19997. }
  19998. },
  19999. },
  20000. [
  20001. {
  20002. name: "Normal",
  20003. height: math.unit(8, "feet"),
  20004. default: true
  20005. },
  20006. ]
  20007. ))
  20008. characterMakers.push(() => makeCharacter(
  20009. { name: "Adinia", species: ["kelpie", "nykur"], tags: ["anthro"] },
  20010. {
  20011. front: {
  20012. height: math.unit(11 + 5/12, "feet"),
  20013. weight: math.unit(1200, "lb"),
  20014. name: "Front",
  20015. image: {
  20016. source: "./media/characters/adinia/front.svg",
  20017. extra: 1767/1641,
  20018. bottom: 44/1811
  20019. },
  20020. extraAttributes: {
  20021. "energyIntake": {
  20022. name: "Energy Intake",
  20023. power: 3,
  20024. type: "energy",
  20025. base: math.unit(2000 * 5 * 1200 / 150, "kcal")
  20026. },
  20027. }
  20028. },
  20029. back: {
  20030. height: math.unit(11 + 5/12, "feet"),
  20031. weight: math.unit(1200, "lb"),
  20032. name: "Back",
  20033. image: {
  20034. source: "./media/characters/adinia/back.svg",
  20035. extra: 1834/1684,
  20036. bottom: 14/1848
  20037. },
  20038. extraAttributes: {
  20039. "energyIntake": {
  20040. name: "Energy Intake",
  20041. power: 3,
  20042. type: "energy",
  20043. base: math.unit(2000 * 5 * 1200 / 150, "kcal")
  20044. },
  20045. }
  20046. },
  20047. maw: {
  20048. height: math.unit(3.79, "feet"),
  20049. name: "Maw",
  20050. image: {
  20051. source: "./media/characters/adinia/maw.svg"
  20052. }
  20053. },
  20054. rump: {
  20055. height: math.unit(4.6, "feet"),
  20056. name: "Rump",
  20057. image: {
  20058. source: "./media/characters/adinia/rump.svg"
  20059. }
  20060. },
  20061. },
  20062. [
  20063. {
  20064. name: "Normal",
  20065. height: math.unit(11 + 5 / 12, "feet"),
  20066. default: true
  20067. },
  20068. ]
  20069. ))
  20070. characterMakers.push(() => makeCharacter(
  20071. { name: "Lykasa", species: ["monster"], tags: ["anthro"] },
  20072. {
  20073. front: {
  20074. height: math.unit(3, "meters"),
  20075. weight: math.unit(200, "kg"),
  20076. name: "Front",
  20077. image: {
  20078. source: "./media/characters/lykasa/front.svg",
  20079. extra: 1076 / 976,
  20080. bottom: 0.06
  20081. }
  20082. },
  20083. },
  20084. [
  20085. {
  20086. name: "Normal",
  20087. height: math.unit(3, "meters")
  20088. },
  20089. {
  20090. name: "Kaiju",
  20091. height: math.unit(120, "meters"),
  20092. default: true
  20093. },
  20094. {
  20095. name: "Mega Kaiju",
  20096. height: math.unit(240, "km")
  20097. },
  20098. {
  20099. name: "Giga Kaiju",
  20100. height: math.unit(400, "megameters")
  20101. },
  20102. {
  20103. name: "Tera Kaiju",
  20104. height: math.unit(800, "gigameters")
  20105. },
  20106. {
  20107. name: "Kaiju Dragon Goddess",
  20108. height: math.unit(26, "zettaparsecs")
  20109. },
  20110. ]
  20111. ))
  20112. characterMakers.push(() => makeCharacter(
  20113. { name: "Malfaren", species: ["dragon"], tags: ["feral"] },
  20114. {
  20115. side: {
  20116. height: math.unit(283 / 124 * 6, "feet"),
  20117. weight: math.unit(35000, "lb"),
  20118. name: "Side",
  20119. image: {
  20120. source: "./media/characters/malfaren/side.svg",
  20121. extra: 1310/529,
  20122. bottom: 24/1334
  20123. }
  20124. },
  20125. front: {
  20126. height: math.unit(22.36, "feet"),
  20127. weight: math.unit(35000, "lb"),
  20128. name: "Front",
  20129. image: {
  20130. source: "./media/characters/malfaren/front.svg",
  20131. extra: 1237/1115,
  20132. bottom: 32/1269
  20133. }
  20134. },
  20135. maw: {
  20136. height: math.unit(6.9, "feet"),
  20137. name: "Maw",
  20138. image: {
  20139. source: "./media/characters/malfaren/maw.svg"
  20140. }
  20141. },
  20142. dick: {
  20143. height: math.unit(6.19, "feet"),
  20144. name: "Dick",
  20145. image: {
  20146. source: "./media/characters/malfaren/dick.svg"
  20147. }
  20148. },
  20149. eye: {
  20150. height: math.unit(0.69, "feet"),
  20151. name: "Eye",
  20152. image: {
  20153. source: "./media/characters/malfaren/eye.svg"
  20154. }
  20155. },
  20156. },
  20157. [
  20158. {
  20159. name: "Big",
  20160. height: math.unit(283 / 162 * 6, "feet"),
  20161. },
  20162. {
  20163. name: "Bigger",
  20164. height: math.unit(283 / 124 * 6, "feet")
  20165. },
  20166. {
  20167. name: "Massive",
  20168. height: math.unit(283 / 92 * 6, "feet"),
  20169. default: true
  20170. },
  20171. {
  20172. name: "👀💦",
  20173. height: math.unit(283 / 73 * 6, "feet"),
  20174. },
  20175. ]
  20176. ))
  20177. characterMakers.push(() => makeCharacter(
  20178. { name: "Kernel", species: ["wolf"], tags: ["anthro"] },
  20179. {
  20180. front: {
  20181. height: math.unit(1.7, "m"),
  20182. weight: math.unit(70, "kg"),
  20183. name: "Front",
  20184. image: {
  20185. source: "./media/characters/kernel/front.svg",
  20186. extra: 1960/1821,
  20187. bottom: 17/1977
  20188. }
  20189. },
  20190. },
  20191. [
  20192. {
  20193. name: "Nano",
  20194. height: math.unit(17, "micrometers")
  20195. },
  20196. {
  20197. name: "Micro",
  20198. height: math.unit(1.7, "mm")
  20199. },
  20200. {
  20201. name: "Small",
  20202. height: math.unit(1.7, "cm")
  20203. },
  20204. {
  20205. name: "Normal",
  20206. height: math.unit(1.7, "m"),
  20207. default: true
  20208. },
  20209. ]
  20210. ))
  20211. characterMakers.push(() => makeCharacter(
  20212. { name: "Jayne Folest", species: ["fox"], tags: ["anthro"] },
  20213. {
  20214. front: {
  20215. height: math.unit(1.75, "meters"),
  20216. weight: math.unit(65, "kg"),
  20217. name: "Front",
  20218. image: {
  20219. source: "./media/characters/jayne-folest/front.svg",
  20220. extra: 2115 / 2007,
  20221. bottom: 0.02
  20222. }
  20223. },
  20224. back: {
  20225. height: math.unit(1.75, "meters"),
  20226. weight: math.unit(65, "kg"),
  20227. name: "Back",
  20228. image: {
  20229. source: "./media/characters/jayne-folest/back.svg",
  20230. extra: 2115 / 2007,
  20231. bottom: 0.005
  20232. }
  20233. },
  20234. frontClothed: {
  20235. height: math.unit(1.75, "meters"),
  20236. weight: math.unit(65, "kg"),
  20237. name: "Front (Clothed)",
  20238. image: {
  20239. source: "./media/characters/jayne-folest/front-clothed.svg",
  20240. extra: 2115 / 2007,
  20241. bottom: 0.035
  20242. }
  20243. },
  20244. hand: {
  20245. height: math.unit(1 / 1.260, "feet"),
  20246. name: "Hand",
  20247. image: {
  20248. source: "./media/characters/jayne-folest/hand.svg"
  20249. }
  20250. },
  20251. foot: {
  20252. height: math.unit(1 / 0.918, "feet"),
  20253. name: "Foot",
  20254. image: {
  20255. source: "./media/characters/jayne-folest/foot.svg"
  20256. }
  20257. },
  20258. },
  20259. [
  20260. {
  20261. name: "Micro",
  20262. height: math.unit(4, "cm")
  20263. },
  20264. {
  20265. name: "Normal",
  20266. height: math.unit(1.75, "meters")
  20267. },
  20268. {
  20269. name: "Macro",
  20270. height: math.unit(47.5, "meters"),
  20271. default: true
  20272. },
  20273. ]
  20274. ))
  20275. characterMakers.push(() => makeCharacter(
  20276. { name: "Algier", species: ["mouse"], tags: ["anthro"] },
  20277. {
  20278. front: {
  20279. height: math.unit(180, "cm"),
  20280. weight: math.unit(70, "kg"),
  20281. name: "Front",
  20282. image: {
  20283. source: "./media/characters/algier/front.svg",
  20284. extra: 596 / 572,
  20285. bottom: 0.04
  20286. }
  20287. },
  20288. back: {
  20289. height: math.unit(180, "cm"),
  20290. weight: math.unit(70, "kg"),
  20291. name: "Back",
  20292. image: {
  20293. source: "./media/characters/algier/back.svg",
  20294. extra: 596 / 572,
  20295. bottom: 0.025
  20296. }
  20297. },
  20298. frontdressed: {
  20299. height: math.unit(180, "cm"),
  20300. weight: math.unit(150, "kg"),
  20301. name: "Front (Dressed)",
  20302. image: {
  20303. source: "./media/characters/algier/front-dressed.svg",
  20304. extra: 596 / 572,
  20305. bottom: 0.038
  20306. }
  20307. },
  20308. },
  20309. [
  20310. {
  20311. name: "Micro",
  20312. height: math.unit(5, "cm")
  20313. },
  20314. {
  20315. name: "Normal",
  20316. height: math.unit(180, "cm"),
  20317. default: true
  20318. },
  20319. {
  20320. name: "Macro",
  20321. height: math.unit(64, "m")
  20322. },
  20323. ]
  20324. ))
  20325. characterMakers.push(() => makeCharacter(
  20326. { name: "Pretzel", species: ["synx"], tags: ["anthro"] },
  20327. {
  20328. upright: {
  20329. height: math.unit(7, "feet"),
  20330. weight: math.unit(300, "lb"),
  20331. name: "Upright",
  20332. image: {
  20333. source: "./media/characters/pretzel/upright.svg",
  20334. extra: 534 / 522,
  20335. bottom: 0.065
  20336. }
  20337. },
  20338. sprawling: {
  20339. height: math.unit(3.75, "feet"),
  20340. weight: math.unit(300, "lb"),
  20341. name: "Sprawling",
  20342. image: {
  20343. source: "./media/characters/pretzel/sprawling.svg",
  20344. extra: 314 / 281,
  20345. bottom: 0.1
  20346. }
  20347. },
  20348. tongue: {
  20349. height: math.unit(2, "feet"),
  20350. name: "Tongue",
  20351. image: {
  20352. source: "./media/characters/pretzel/tongue.svg"
  20353. }
  20354. },
  20355. },
  20356. [
  20357. {
  20358. name: "Normal",
  20359. height: math.unit(7, "feet"),
  20360. default: true
  20361. },
  20362. {
  20363. name: "Oversized",
  20364. height: math.unit(15, "feet")
  20365. },
  20366. {
  20367. name: "Huge",
  20368. height: math.unit(30, "feet")
  20369. },
  20370. {
  20371. name: "Macro",
  20372. height: math.unit(250, "feet")
  20373. },
  20374. ]
  20375. ))
  20376. characterMakers.push(() => makeCharacter(
  20377. { name: "Roxi", species: ["fox"], tags: ["anthro", "feral"] },
  20378. {
  20379. sideFront: {
  20380. height: math.unit(5 + 2 / 12, "feet"),
  20381. weight: math.unit(120, "lb"),
  20382. name: "Front Side",
  20383. image: {
  20384. source: "./media/characters/roxi/side-front.svg",
  20385. extra: 2924 / 2717,
  20386. bottom: 0.08
  20387. }
  20388. },
  20389. sideBack: {
  20390. height: math.unit(5 + 2 / 12, "feet"),
  20391. weight: math.unit(120, "lb"),
  20392. name: "Back Side",
  20393. image: {
  20394. source: "./media/characters/roxi/side-back.svg",
  20395. extra: 2904 / 2693,
  20396. bottom: 0.06
  20397. }
  20398. },
  20399. front: {
  20400. height: math.unit(5 + 2 / 12, "feet"),
  20401. weight: math.unit(120, "lb"),
  20402. name: "Front",
  20403. image: {
  20404. source: "./media/characters/roxi/front.svg",
  20405. extra: 2028 / 1907,
  20406. bottom: 0.01
  20407. }
  20408. },
  20409. frontAlt: {
  20410. height: math.unit(5 + 2 / 12, "feet"),
  20411. weight: math.unit(120, "lb"),
  20412. name: "Front (Alt)",
  20413. image: {
  20414. source: "./media/characters/roxi/front-alt.svg",
  20415. extra: 1828 / 1798,
  20416. bottom: 0.01
  20417. }
  20418. },
  20419. sitting: {
  20420. height: math.unit(2.8, "feet"),
  20421. weight: math.unit(120, "lb"),
  20422. name: "Sitting",
  20423. image: {
  20424. source: "./media/characters/roxi/sitting.svg",
  20425. extra: 2660 / 2462,
  20426. bottom: 0.1
  20427. }
  20428. },
  20429. },
  20430. [
  20431. {
  20432. name: "Normal",
  20433. height: math.unit(5 + 2 / 12, "feet"),
  20434. default: true
  20435. },
  20436. ]
  20437. ))
  20438. characterMakers.push(() => makeCharacter(
  20439. { name: "Shadow", species: ["dragon"], tags: ["feral"] },
  20440. {
  20441. side: {
  20442. height: math.unit(55, "feet"),
  20443. weight: math.unit(153, "tons"),
  20444. name: "Side",
  20445. image: {
  20446. source: "./media/characters/shadow/side.svg",
  20447. extra: 701 / 628,
  20448. bottom: 0.02
  20449. }
  20450. },
  20451. flying: {
  20452. height: math.unit(145, "feet"),
  20453. weight: math.unit(153, "tons"),
  20454. name: "Flying",
  20455. image: {
  20456. source: "./media/characters/shadow/flying.svg"
  20457. }
  20458. },
  20459. },
  20460. [
  20461. {
  20462. name: "Normal",
  20463. height: math.unit(55, "feet"),
  20464. default: true
  20465. },
  20466. ]
  20467. ))
  20468. characterMakers.push(() => makeCharacter(
  20469. { name: "Marcie", species: ["kangaroo"], tags: ["anthro"] },
  20470. {
  20471. front: {
  20472. height: math.unit(6, "feet"),
  20473. weight: math.unit(200, "lb"),
  20474. name: "Front",
  20475. image: {
  20476. source: "./media/characters/marcie/front.svg",
  20477. extra: 960 / 876,
  20478. bottom: 58 / 1017.87
  20479. }
  20480. },
  20481. },
  20482. [
  20483. {
  20484. name: "Macro",
  20485. height: math.unit(1, "mile"),
  20486. default: true
  20487. },
  20488. ]
  20489. ))
  20490. characterMakers.push(() => makeCharacter(
  20491. { name: "Kachina", species: ["wolf"], tags: ["anthro"] },
  20492. {
  20493. front: {
  20494. height: math.unit(7, "feet"),
  20495. weight: math.unit(200, "lb"),
  20496. name: "Front",
  20497. image: {
  20498. source: "./media/characters/kachina/front.svg",
  20499. extra: 3206/2764,
  20500. bottom: 140/3346
  20501. }
  20502. },
  20503. },
  20504. [
  20505. {
  20506. name: "Normal",
  20507. height: math.unit(7, "feet"),
  20508. default: true
  20509. },
  20510. ]
  20511. ))
  20512. characterMakers.push(() => makeCharacter(
  20513. { name: "Kash", species: ["canine"], tags: ["feral"] },
  20514. {
  20515. looking: {
  20516. height: math.unit(2, "meters"),
  20517. weight: math.unit(300, "kg"),
  20518. name: "Looking",
  20519. image: {
  20520. source: "./media/characters/kash/looking.svg",
  20521. extra: 474 / 344,
  20522. bottom: 0.03
  20523. }
  20524. },
  20525. side: {
  20526. height: math.unit(2, "meters"),
  20527. weight: math.unit(300, "kg"),
  20528. name: "Side",
  20529. image: {
  20530. source: "./media/characters/kash/side.svg",
  20531. extra: 302 / 251,
  20532. bottom: 0.03
  20533. }
  20534. },
  20535. front: {
  20536. height: math.unit(2, "meters"),
  20537. weight: math.unit(300, "kg"),
  20538. name: "Front",
  20539. image: {
  20540. source: "./media/characters/kash/front.svg",
  20541. extra: 495 / 360,
  20542. bottom: 0.015
  20543. }
  20544. },
  20545. },
  20546. [
  20547. {
  20548. name: "Normal",
  20549. height: math.unit(2, "meters"),
  20550. default: true
  20551. },
  20552. {
  20553. name: "Big",
  20554. height: math.unit(3, "meters")
  20555. },
  20556. {
  20557. name: "Large",
  20558. height: math.unit(5, "meters")
  20559. },
  20560. ]
  20561. ))
  20562. characterMakers.push(() => makeCharacter(
  20563. { name: "Lalim", species: ["dragon"], tags: ["feral"] },
  20564. {
  20565. feeding: {
  20566. height: math.unit(6.7, "feet"),
  20567. weight: math.unit(350, "lb"),
  20568. name: "Feeding",
  20569. image: {
  20570. source: "./media/characters/lalim/feeding.svg",
  20571. }
  20572. },
  20573. },
  20574. [
  20575. {
  20576. name: "Normal",
  20577. height: math.unit(6.7, "feet"),
  20578. default: true
  20579. },
  20580. ]
  20581. ))
  20582. characterMakers.push(() => makeCharacter(
  20583. { name: "De'Vout", species: ["dragon"], tags: ["anthro"] },
  20584. {
  20585. front: {
  20586. height: math.unit(9.5, "feet"),
  20587. weight: math.unit(600, "lb"),
  20588. name: "Front",
  20589. image: {
  20590. source: "./media/characters/de'vout/front.svg",
  20591. extra: 1443 / 1328,
  20592. bottom: 0.025
  20593. }
  20594. },
  20595. back: {
  20596. height: math.unit(9.5, "feet"),
  20597. weight: math.unit(600, "lb"),
  20598. name: "Back",
  20599. image: {
  20600. source: "./media/characters/de'vout/back.svg",
  20601. extra: 1443 / 1328
  20602. }
  20603. },
  20604. frontDressed: {
  20605. height: math.unit(9.5, "feet"),
  20606. weight: math.unit(600, "lb"),
  20607. name: "Front (Dressed",
  20608. image: {
  20609. source: "./media/characters/de'vout/front-dressed.svg",
  20610. extra: 1443 / 1328,
  20611. bottom: 0.025
  20612. }
  20613. },
  20614. backDressed: {
  20615. height: math.unit(9.5, "feet"),
  20616. weight: math.unit(600, "lb"),
  20617. name: "Back (Dressed",
  20618. image: {
  20619. source: "./media/characters/de'vout/back-dressed.svg",
  20620. extra: 1443 / 1328
  20621. }
  20622. },
  20623. },
  20624. [
  20625. {
  20626. name: "Normal",
  20627. height: math.unit(9.5, "feet"),
  20628. default: true
  20629. },
  20630. ]
  20631. ))
  20632. characterMakers.push(() => makeCharacter(
  20633. { name: "Talana", species: ["dragon"], tags: ["anthro"] },
  20634. {
  20635. front: {
  20636. height: math.unit(8, "feet"),
  20637. weight: math.unit(225, "lb"),
  20638. name: "Front",
  20639. image: {
  20640. source: "./media/characters/talana/front.svg",
  20641. extra: 1410 / 1300,
  20642. bottom: 0.015
  20643. }
  20644. },
  20645. frontDressed: {
  20646. height: math.unit(8, "feet"),
  20647. weight: math.unit(225, "lb"),
  20648. name: "Front (Dressed",
  20649. image: {
  20650. source: "./media/characters/talana/front-dressed.svg",
  20651. extra: 1410 / 1300,
  20652. bottom: 0.015
  20653. }
  20654. },
  20655. },
  20656. [
  20657. {
  20658. name: "Normal",
  20659. height: math.unit(8, "feet"),
  20660. default: true
  20661. },
  20662. ]
  20663. ))
  20664. characterMakers.push(() => makeCharacter(
  20665. { name: "Xeauvok", species: ["monster"], tags: ["anthro"] },
  20666. {
  20667. side: {
  20668. height: math.unit(7.2, "feet"),
  20669. weight: math.unit(150, "lb"),
  20670. name: "Side",
  20671. image: {
  20672. source: "./media/characters/xeauvok/side.svg",
  20673. extra: 1975 / 1523,
  20674. bottom: 0.07
  20675. }
  20676. },
  20677. },
  20678. [
  20679. {
  20680. name: "Normal",
  20681. height: math.unit(7.2, "feet"),
  20682. default: true
  20683. },
  20684. ]
  20685. ))
  20686. characterMakers.push(() => makeCharacter(
  20687. { name: "Zara", species: ["human", "horse"], tags: ["taur"] },
  20688. {
  20689. side: {
  20690. height: math.unit(4, "meters"),
  20691. weight: math.unit(2200, "kg"),
  20692. name: "Side",
  20693. image: {
  20694. source: "./media/characters/zara/side.svg",
  20695. extra: 765/744,
  20696. bottom: 156/921
  20697. }
  20698. },
  20699. },
  20700. [
  20701. {
  20702. name: "Normal",
  20703. height: math.unit(4, "meters"),
  20704. default: true
  20705. },
  20706. ]
  20707. ))
  20708. characterMakers.push(() => makeCharacter(
  20709. { name: "Richard (Dragon)", species: ["dragon"], tags: ["feral"] },
  20710. {
  20711. side: {
  20712. height: math.unit(6, "feet"),
  20713. weight: math.unit(150, "lb"),
  20714. name: "Side",
  20715. image: {
  20716. source: "./media/characters/richard-dragon/side.svg",
  20717. extra: 845 / 340,
  20718. bottom: 0.017
  20719. }
  20720. },
  20721. maw: {
  20722. height: math.unit(2.97, "feet"),
  20723. name: "Maw",
  20724. image: {
  20725. source: "./media/characters/richard-dragon/maw.svg"
  20726. }
  20727. },
  20728. },
  20729. [
  20730. ]
  20731. ))
  20732. characterMakers.push(() => makeCharacter(
  20733. { name: "Richard (Smeargle)", species: ["smeargle"], tags: ["anthro"] },
  20734. {
  20735. front: {
  20736. height: math.unit(4, "feet"),
  20737. weight: math.unit(100, "lb"),
  20738. name: "Front",
  20739. image: {
  20740. source: "./media/characters/richard-smeargle/front.svg",
  20741. extra: 2952 / 2820,
  20742. bottom: 0.028
  20743. }
  20744. },
  20745. },
  20746. [
  20747. {
  20748. name: "Normal",
  20749. height: math.unit(4, "feet"),
  20750. default: true
  20751. },
  20752. {
  20753. name: "Dynamax",
  20754. height: math.unit(20, "meters")
  20755. },
  20756. ]
  20757. ))
  20758. characterMakers.push(() => makeCharacter(
  20759. { name: "Klay", species: ["flying-fox"], tags: ["anthro"] },
  20760. {
  20761. front: {
  20762. height: math.unit(6, "feet"),
  20763. weight: math.unit(110, "lb"),
  20764. name: "Front",
  20765. image: {
  20766. source: "./media/characters/klay/front.svg",
  20767. extra: 962 / 883,
  20768. bottom: 0.04
  20769. }
  20770. },
  20771. back: {
  20772. height: math.unit(6, "feet"),
  20773. weight: math.unit(110, "lb"),
  20774. name: "Back",
  20775. image: {
  20776. source: "./media/characters/klay/back.svg",
  20777. extra: 962 / 883
  20778. }
  20779. },
  20780. beans: {
  20781. height: math.unit(1.15, "feet"),
  20782. name: "Beans",
  20783. image: {
  20784. source: "./media/characters/klay/beans.svg"
  20785. }
  20786. },
  20787. },
  20788. [
  20789. {
  20790. name: "Micro",
  20791. height: math.unit(6, "inches")
  20792. },
  20793. {
  20794. name: "Mini",
  20795. height: math.unit(3, "feet")
  20796. },
  20797. {
  20798. name: "Normal",
  20799. height: math.unit(6, "feet"),
  20800. default: true
  20801. },
  20802. {
  20803. name: "Big",
  20804. height: math.unit(25, "feet")
  20805. },
  20806. {
  20807. name: "Macro",
  20808. height: math.unit(100, "feet")
  20809. },
  20810. {
  20811. name: "Megamacro",
  20812. height: math.unit(400, "feet")
  20813. },
  20814. ]
  20815. ))
  20816. characterMakers.push(() => makeCharacter(
  20817. { name: "Marcus", species: ["skunk"], tags: ["anthro"] },
  20818. {
  20819. front: {
  20820. height: math.unit(6, "feet"),
  20821. weight: math.unit(160, "lb"),
  20822. name: "Front",
  20823. image: {
  20824. source: "./media/characters/marcus/front.svg",
  20825. extra: 734 / 676,
  20826. bottom: 0.03
  20827. }
  20828. },
  20829. },
  20830. [
  20831. {
  20832. name: "Little",
  20833. height: math.unit(6, "feet")
  20834. },
  20835. {
  20836. name: "Normal",
  20837. height: math.unit(110, "feet"),
  20838. default: true
  20839. },
  20840. {
  20841. name: "Macro",
  20842. height: math.unit(250, "feet")
  20843. },
  20844. {
  20845. name: "Megamacro",
  20846. height: math.unit(1000, "feet")
  20847. },
  20848. ]
  20849. ))
  20850. characterMakers.push(() => makeCharacter(
  20851. { name: "Claude DelRoute", species: ["goat"], tags: ["anthro"] },
  20852. {
  20853. front: {
  20854. height: math.unit(7, "feet"),
  20855. weight: math.unit(275, "lb"),
  20856. name: "Front",
  20857. image: {
  20858. source: "./media/characters/claude-delroute/front.svg",
  20859. extra: 902/827,
  20860. bottom: 26/928
  20861. }
  20862. },
  20863. side: {
  20864. height: math.unit(7, "feet"),
  20865. weight: math.unit(275, "lb"),
  20866. name: "Side",
  20867. image: {
  20868. source: "./media/characters/claude-delroute/side.svg",
  20869. extra: 908/853,
  20870. bottom: 16/924
  20871. }
  20872. },
  20873. back: {
  20874. height: math.unit(7, "feet"),
  20875. weight: math.unit(275, "lb"),
  20876. name: "Back",
  20877. image: {
  20878. source: "./media/characters/claude-delroute/back.svg",
  20879. extra: 911/829,
  20880. bottom: 18/929
  20881. }
  20882. },
  20883. maw: {
  20884. height: math.unit(0.6407, "meters"),
  20885. name: "Maw",
  20886. image: {
  20887. source: "./media/characters/claude-delroute/maw.svg"
  20888. }
  20889. },
  20890. },
  20891. [
  20892. {
  20893. name: "Normal",
  20894. height: math.unit(7, "feet"),
  20895. default: true
  20896. },
  20897. {
  20898. name: "Lorge",
  20899. height: math.unit(20, "feet")
  20900. },
  20901. ]
  20902. ))
  20903. characterMakers.push(() => makeCharacter(
  20904. { name: "Dragonien", species: ["dragon"], tags: ["anthro"] },
  20905. {
  20906. front: {
  20907. height: math.unit(8 + 4 / 12, "feet"),
  20908. weight: math.unit(600, "lb"),
  20909. name: "Front",
  20910. image: {
  20911. source: "./media/characters/dragonien/front.svg",
  20912. extra: 100 / 94,
  20913. bottom: 3.3 / 103.3445
  20914. }
  20915. },
  20916. back: {
  20917. height: math.unit(8 + 4 / 12, "feet"),
  20918. weight: math.unit(600, "lb"),
  20919. name: "Back",
  20920. image: {
  20921. source: "./media/characters/dragonien/back.svg",
  20922. extra: 776 / 746,
  20923. bottom: 6.4 / 782.0616
  20924. }
  20925. },
  20926. foot: {
  20927. height: math.unit(1.54, "feet"),
  20928. name: "Foot",
  20929. image: {
  20930. source: "./media/characters/dragonien/foot.svg",
  20931. }
  20932. },
  20933. },
  20934. [
  20935. {
  20936. name: "Normal",
  20937. height: math.unit(8 + 4 / 12, "feet"),
  20938. default: true
  20939. },
  20940. {
  20941. name: "Macro",
  20942. height: math.unit(200, "feet")
  20943. },
  20944. {
  20945. name: "Megamacro",
  20946. height: math.unit(1, "mile")
  20947. },
  20948. {
  20949. name: "Gigamacro",
  20950. height: math.unit(1000, "miles")
  20951. },
  20952. ]
  20953. ))
  20954. characterMakers.push(() => makeCharacter(
  20955. { name: "Desta", species: ["dratini"], tags: ["anthro"] },
  20956. {
  20957. front: {
  20958. height: math.unit(5 + 2 / 12, "feet"),
  20959. weight: math.unit(110, "lb"),
  20960. name: "Front",
  20961. image: {
  20962. source: "./media/characters/desta/front.svg",
  20963. extra: 767 / 726,
  20964. bottom: 11.7 / 779
  20965. }
  20966. },
  20967. back: {
  20968. height: math.unit(5 + 2 / 12, "feet"),
  20969. weight: math.unit(110, "lb"),
  20970. name: "Back",
  20971. image: {
  20972. source: "./media/characters/desta/back.svg",
  20973. extra: 777 / 728,
  20974. bottom: 6 / 784
  20975. }
  20976. },
  20977. frontAlt: {
  20978. height: math.unit(5 + 2 / 12, "feet"),
  20979. weight: math.unit(110, "lb"),
  20980. name: "Front",
  20981. image: {
  20982. source: "./media/characters/desta/front-alt.svg",
  20983. extra: 1482 / 1417
  20984. }
  20985. },
  20986. side: {
  20987. height: math.unit(5 + 2 / 12, "feet"),
  20988. weight: math.unit(110, "lb"),
  20989. name: "Side",
  20990. image: {
  20991. source: "./media/characters/desta/side.svg",
  20992. extra: 2579 / 2491,
  20993. bottom: 0.053
  20994. }
  20995. },
  20996. },
  20997. [
  20998. {
  20999. name: "Micro",
  21000. height: math.unit(6, "inches")
  21001. },
  21002. {
  21003. name: "Normal",
  21004. height: math.unit(5 + 2 / 12, "feet"),
  21005. default: true
  21006. },
  21007. {
  21008. name: "Macro",
  21009. height: math.unit(62, "feet")
  21010. },
  21011. {
  21012. name: "Megamacro",
  21013. height: math.unit(1800, "feet")
  21014. },
  21015. ]
  21016. ))
  21017. characterMakers.push(() => makeCharacter(
  21018. { name: "Storm Alystar", species: ["demon"], tags: ["anthro"] },
  21019. {
  21020. front: {
  21021. height: math.unit(10, "feet"),
  21022. weight: math.unit(700, "lb"),
  21023. name: "Front",
  21024. image: {
  21025. source: "./media/characters/storm-alystar/front.svg",
  21026. extra: 2112 / 1898,
  21027. bottom: 0.034
  21028. }
  21029. },
  21030. },
  21031. [
  21032. {
  21033. name: "Micro",
  21034. height: math.unit(3.5, "inches")
  21035. },
  21036. {
  21037. name: "Normal",
  21038. height: math.unit(10, "feet"),
  21039. default: true
  21040. },
  21041. {
  21042. name: "Macro",
  21043. height: math.unit(400, "feet")
  21044. },
  21045. {
  21046. name: "Deific",
  21047. height: math.unit(60, "miles")
  21048. },
  21049. ]
  21050. ))
  21051. characterMakers.push(() => makeCharacter(
  21052. { name: "Ilia", species: ["fox"], tags: ["anthro"] },
  21053. {
  21054. front: {
  21055. height: math.unit(2.35, "meters"),
  21056. weight: math.unit(119, "kg"),
  21057. name: "Front",
  21058. image: {
  21059. source: "./media/characters/ilia/front.svg",
  21060. extra: 1285 / 1255,
  21061. bottom: 0.06
  21062. }
  21063. },
  21064. },
  21065. [
  21066. {
  21067. name: "Normal",
  21068. height: math.unit(2.35, "meters")
  21069. },
  21070. {
  21071. name: "Macro",
  21072. height: math.unit(140, "meters"),
  21073. default: true
  21074. },
  21075. {
  21076. name: "Megamacro",
  21077. height: math.unit(100, "miles")
  21078. },
  21079. ]
  21080. ))
  21081. characterMakers.push(() => makeCharacter(
  21082. { name: "KingDead", species: ["wolf"], tags: ["anthro"] },
  21083. {
  21084. front: {
  21085. height: math.unit(6 + 5 / 12, "feet"),
  21086. weight: math.unit(190, "lb"),
  21087. name: "Front",
  21088. image: {
  21089. source: "./media/characters/kingdead/front.svg",
  21090. extra: 1228 / 1177
  21091. }
  21092. },
  21093. },
  21094. [
  21095. {
  21096. name: "Micro",
  21097. height: math.unit(7, "inches")
  21098. },
  21099. {
  21100. name: "Normal",
  21101. height: math.unit(6 + 5 / 12, "feet")
  21102. },
  21103. {
  21104. name: "Macro",
  21105. height: math.unit(150, "feet"),
  21106. default: true
  21107. },
  21108. {
  21109. name: "Megamacro",
  21110. height: math.unit(200, "miles")
  21111. },
  21112. ]
  21113. ))
  21114. characterMakers.push(() => makeCharacter(
  21115. { name: "Kyrehx", species: ["tigrex"], tags: ["anthro"] },
  21116. {
  21117. front: {
  21118. height: math.unit(8, "feet"),
  21119. weight: math.unit(600, "lb"),
  21120. name: "Front",
  21121. image: {
  21122. source: "./media/characters/kyrehx/front.svg",
  21123. extra: 1195 / 1095,
  21124. bottom: 0.034
  21125. }
  21126. },
  21127. },
  21128. [
  21129. {
  21130. name: "Micro",
  21131. height: math.unit(2, "inches")
  21132. },
  21133. {
  21134. name: "Normal",
  21135. height: math.unit(8, "feet"),
  21136. default: true
  21137. },
  21138. {
  21139. name: "Macro",
  21140. height: math.unit(255, "feet")
  21141. },
  21142. ]
  21143. ))
  21144. characterMakers.push(() => makeCharacter(
  21145. { name: "Xang", species: ["zangoose"], tags: ["anthro"] },
  21146. {
  21147. front: {
  21148. height: math.unit(0.935 * (6 + 8 / 12), "feet"),
  21149. weight: math.unit(184, "lb"),
  21150. name: "Front",
  21151. image: {
  21152. source: "./media/characters/xang/front.svg",
  21153. extra: 845 / 755
  21154. }
  21155. },
  21156. },
  21157. [
  21158. {
  21159. name: "Normal",
  21160. height: math.unit(0.935 * (6 + 8 / 12), "feet"),
  21161. default: true
  21162. },
  21163. {
  21164. name: "Macro",
  21165. height: math.unit(0.935 * 146, "feet")
  21166. },
  21167. {
  21168. name: "Megamacro",
  21169. height: math.unit(0.935 * 3, "miles")
  21170. },
  21171. ]
  21172. ))
  21173. characterMakers.push(() => makeCharacter(
  21174. { name: "Doc Weardno", species: ["fennec-fox"], tags: ["anthro"] },
  21175. {
  21176. frontDressed: {
  21177. height: math.unit(5 + 7 / 12, "feet"),
  21178. weight: math.unit(140, "lb"),
  21179. name: "Front (Dressed)",
  21180. image: {
  21181. source: "./media/characters/doc-weardno/front-dressed.svg",
  21182. extra: 263 / 234
  21183. }
  21184. },
  21185. backDressed: {
  21186. height: math.unit(5 + 7 / 12, "feet"),
  21187. weight: math.unit(140, "lb"),
  21188. name: "Back (Dressed)",
  21189. image: {
  21190. source: "./media/characters/doc-weardno/back-dressed.svg",
  21191. extra: 266 / 238
  21192. }
  21193. },
  21194. front: {
  21195. height: math.unit(5 + 7 / 12, "feet"),
  21196. weight: math.unit(140, "lb"),
  21197. name: "Front",
  21198. image: {
  21199. source: "./media/characters/doc-weardno/front.svg",
  21200. extra: 254 / 233
  21201. }
  21202. },
  21203. },
  21204. [
  21205. {
  21206. name: "Micro",
  21207. height: math.unit(3, "inches")
  21208. },
  21209. {
  21210. name: "Normal",
  21211. height: math.unit(5 + 7 / 12, "feet"),
  21212. default: true
  21213. },
  21214. {
  21215. name: "Macro",
  21216. height: math.unit(25, "feet")
  21217. },
  21218. {
  21219. name: "Megamacro",
  21220. height: math.unit(2, "miles")
  21221. },
  21222. ]
  21223. ))
  21224. characterMakers.push(() => makeCharacter(
  21225. { name: "Seth Whilst", species: ["snake"], tags: ["anthro"] },
  21226. {
  21227. front: {
  21228. height: math.unit(6 + 2 / 12, "feet"),
  21229. weight: math.unit(153, "lb"),
  21230. name: "Front",
  21231. image: {
  21232. source: "./media/characters/seth-whilst/front.svg",
  21233. bottom: 0.07
  21234. }
  21235. },
  21236. },
  21237. [
  21238. {
  21239. name: "Micro",
  21240. height: math.unit(5, "inches")
  21241. },
  21242. {
  21243. name: "Normal",
  21244. height: math.unit(6 + 2 / 12, "feet"),
  21245. default: true
  21246. },
  21247. ]
  21248. ))
  21249. characterMakers.push(() => makeCharacter(
  21250. { name: "Pocket Jabari", species: ["mouse"], tags: ["anthro"] },
  21251. {
  21252. front: {
  21253. height: math.unit(3, "inches"),
  21254. weight: math.unit(8, "grams"),
  21255. name: "Front",
  21256. image: {
  21257. source: "./media/characters/pocket-jabari/front.svg",
  21258. extra: 1024 / 974,
  21259. bottom: 0.039
  21260. }
  21261. },
  21262. },
  21263. [
  21264. {
  21265. name: "Minimicro",
  21266. height: math.unit(8, "mm")
  21267. },
  21268. {
  21269. name: "Micro",
  21270. height: math.unit(3, "inches"),
  21271. default: true
  21272. },
  21273. {
  21274. name: "Normal",
  21275. height: math.unit(3, "feet")
  21276. },
  21277. ]
  21278. ))
  21279. characterMakers.push(() => makeCharacter(
  21280. { name: "Sapphy", species: ["dragon"], tags: ["anthro"] },
  21281. {
  21282. frontDressed: {
  21283. height: math.unit(15, "feet"),
  21284. weight: math.unit(3280, "lb"),
  21285. name: "Front (Dressed)",
  21286. image: {
  21287. source: "./media/characters/sapphy/front-dressed.svg",
  21288. extra: 1951/1654,
  21289. bottom: 194/2145
  21290. },
  21291. form: "anthro",
  21292. default: true
  21293. },
  21294. backDressed: {
  21295. height: math.unit(15, "feet"),
  21296. weight: math.unit(3280, "lb"),
  21297. name: "Back (Dressed)",
  21298. image: {
  21299. source: "./media/characters/sapphy/back-dressed.svg",
  21300. extra: 2058/1918,
  21301. bottom: 125/2183
  21302. },
  21303. form: "anthro"
  21304. },
  21305. frontNude: {
  21306. height: math.unit(15, "feet"),
  21307. weight: math.unit(3280, "lb"),
  21308. name: "Front (Nude)",
  21309. image: {
  21310. source: "./media/characters/sapphy/front-nude.svg",
  21311. extra: 1951/1654,
  21312. bottom: 194/2145
  21313. },
  21314. form: "anthro"
  21315. },
  21316. backNude: {
  21317. height: math.unit(15, "feet"),
  21318. weight: math.unit(3280, "lb"),
  21319. name: "Back (Nude)",
  21320. image: {
  21321. source: "./media/characters/sapphy/back-nude.svg",
  21322. extra: 2058/1918,
  21323. bottom: 125/2183
  21324. },
  21325. form: "anthro"
  21326. },
  21327. full: {
  21328. height: math.unit(15, "feet"),
  21329. weight: math.unit(3280, "lb"),
  21330. name: "Full",
  21331. image: {
  21332. source: "./media/characters/sapphy/full.svg",
  21333. extra: 1396/1317,
  21334. bottom: 44/1440
  21335. },
  21336. form: "anthro"
  21337. },
  21338. dick: {
  21339. height: math.unit(3.8, "feet"),
  21340. name: "Dick",
  21341. image: {
  21342. source: "./media/characters/sapphy/dick.svg"
  21343. },
  21344. form: "anthro"
  21345. },
  21346. feral: {
  21347. height: math.unit(35, "feet"),
  21348. weight: math.unit(160, "tons"),
  21349. name: "Feral",
  21350. image: {
  21351. source: "./media/characters/sapphy/feral.svg",
  21352. extra: 1050/573,
  21353. bottom: 60/1110
  21354. },
  21355. form: "feral",
  21356. default: true
  21357. },
  21358. },
  21359. [
  21360. {
  21361. name: "Normal",
  21362. height: math.unit(15, "feet"),
  21363. form: "anthro"
  21364. },
  21365. {
  21366. name: "Casual Macro",
  21367. height: math.unit(120, "feet"),
  21368. form: "anthro"
  21369. },
  21370. {
  21371. name: "Macro",
  21372. height: math.unit(2150, "feet"),
  21373. default: true,
  21374. form: "anthro"
  21375. },
  21376. {
  21377. name: "Megamacro",
  21378. height: math.unit(8, "miles"),
  21379. form: "anthro"
  21380. },
  21381. {
  21382. name: "Galaxy Mom",
  21383. height: math.unit(6, "megalightyears"),
  21384. form: "anthro"
  21385. },
  21386. {
  21387. name: "Normal",
  21388. height: math.unit(35, "feet"),
  21389. form: "feral",
  21390. default: true
  21391. },
  21392. {
  21393. name: "Macro",
  21394. height: math.unit(300, "feet"),
  21395. form: "feral"
  21396. },
  21397. {
  21398. name: "Galaxy Mom",
  21399. height: math.unit(10, "megalightyears"),
  21400. form: "feral"
  21401. },
  21402. ],
  21403. {
  21404. "anthro": {
  21405. name: "Anthro",
  21406. default: true
  21407. },
  21408. "feral": {
  21409. name: "Feral"
  21410. }
  21411. }
  21412. ))
  21413. characterMakers.push(() => makeCharacter(
  21414. { name: "Kiro", species: ["folf", "hyena"], tags: ["anthro"] },
  21415. {
  21416. hyenaFront: {
  21417. height: math.unit(6, "feet"),
  21418. weight: math.unit(190, "lb"),
  21419. name: "Front",
  21420. image: {
  21421. source: "./media/characters/kiro/hyena-front.svg",
  21422. extra: 927/839,
  21423. bottom: 91/1018
  21424. },
  21425. form: "hyena",
  21426. default: true
  21427. },
  21428. front: {
  21429. height: math.unit(6, "feet"),
  21430. weight: math.unit(170, "lb"),
  21431. name: "Front",
  21432. image: {
  21433. source: "./media/characters/kiro/front.svg",
  21434. extra: 1064 / 1012,
  21435. bottom: 0.052
  21436. },
  21437. form: "folf",
  21438. default: true
  21439. },
  21440. },
  21441. [
  21442. {
  21443. name: "Micro",
  21444. height: math.unit(6, "inches"),
  21445. form: "folf"
  21446. },
  21447. {
  21448. name: "Normal",
  21449. height: math.unit(6, "feet"),
  21450. form: "folf",
  21451. default: true
  21452. },
  21453. {
  21454. name: "Macro",
  21455. height: math.unit(72, "feet"),
  21456. form: "folf"
  21457. },
  21458. {
  21459. name: "Micro",
  21460. height: math.unit(6, "inches"),
  21461. form: "hyena"
  21462. },
  21463. {
  21464. name: "Normal",
  21465. height: math.unit(6, "feet"),
  21466. form: "hyena",
  21467. default: true
  21468. },
  21469. {
  21470. name: "Macro",
  21471. height: math.unit(72, "feet"),
  21472. form: "hyena"
  21473. },
  21474. ],
  21475. {
  21476. "hyena": {
  21477. name: "Hyena",
  21478. default: true
  21479. },
  21480. "folf": {
  21481. name: "Folf",
  21482. },
  21483. }
  21484. ))
  21485. characterMakers.push(() => makeCharacter(
  21486. { name: "Irishfox", species: ["fox"], tags: ["anthro"] },
  21487. {
  21488. front: {
  21489. height: math.unit(5 + 9 / 12, "feet"),
  21490. weight: math.unit(175, "lb"),
  21491. name: "Front",
  21492. image: {
  21493. source: "./media/characters/irishfox/front.svg",
  21494. extra: 1912 / 1680,
  21495. bottom: 0.02
  21496. }
  21497. },
  21498. },
  21499. [
  21500. {
  21501. name: "Nano",
  21502. height: math.unit(1, "mm")
  21503. },
  21504. {
  21505. name: "Micro",
  21506. height: math.unit(2, "inches")
  21507. },
  21508. {
  21509. name: "Normal",
  21510. height: math.unit(5 + 9 / 12, "feet"),
  21511. default: true
  21512. },
  21513. {
  21514. name: "Macro",
  21515. height: math.unit(45, "feet")
  21516. },
  21517. ]
  21518. ))
  21519. characterMakers.push(() => makeCharacter(
  21520. { name: "Aronai Sieyes", species: ["cross-fox", "synth"], tags: ["anthro"] },
  21521. {
  21522. front: {
  21523. height: math.unit(6 + 1 / 12, "feet"),
  21524. weight: math.unit(75, "lb"),
  21525. name: "Front",
  21526. image: {
  21527. source: "./media/characters/aronai-sieyes/front.svg",
  21528. extra: 1532/1450,
  21529. bottom: 42/1574
  21530. }
  21531. },
  21532. side: {
  21533. height: math.unit(6 + 1 / 12, "feet"),
  21534. weight: math.unit(75, "lb"),
  21535. name: "Side",
  21536. image: {
  21537. source: "./media/characters/aronai-sieyes/side.svg",
  21538. extra: 1422/1365,
  21539. bottom: 148/1570
  21540. }
  21541. },
  21542. back: {
  21543. height: math.unit(6 + 1 / 12, "feet"),
  21544. weight: math.unit(75, "lb"),
  21545. name: "Back",
  21546. image: {
  21547. source: "./media/characters/aronai-sieyes/back.svg",
  21548. extra: 1526/1464,
  21549. bottom: 51/1577
  21550. }
  21551. },
  21552. dressed: {
  21553. height: math.unit(6 + 1 / 12, "feet"),
  21554. weight: math.unit(75, "lb"),
  21555. name: "Dressed",
  21556. image: {
  21557. source: "./media/characters/aronai-sieyes/dressed.svg",
  21558. extra: 1559/1483,
  21559. bottom: 39/1598
  21560. }
  21561. },
  21562. slit: {
  21563. height: math.unit(1.3, "feet"),
  21564. name: "Slit",
  21565. image: {
  21566. source: "./media/characters/aronai-sieyes/slit.svg"
  21567. }
  21568. },
  21569. slitSpread: {
  21570. height: math.unit(0.9, "feet"),
  21571. name: "Slit (Spread)",
  21572. image: {
  21573. source: "./media/characters/aronai-sieyes/slit-spread.svg"
  21574. }
  21575. },
  21576. rump: {
  21577. height: math.unit(1.3, "feet"),
  21578. name: "Rump",
  21579. image: {
  21580. source: "./media/characters/aronai-sieyes/rump.svg"
  21581. }
  21582. },
  21583. maw: {
  21584. height: math.unit(1.25, "feet"),
  21585. name: "Maw",
  21586. image: {
  21587. source: "./media/characters/aronai-sieyes/maw.svg"
  21588. }
  21589. },
  21590. feral: {
  21591. height: math.unit(18, "feet"),
  21592. weight: math.unit(75 * 3 * 3 * 3, "lb"),
  21593. name: "Feral",
  21594. image: {
  21595. source: "./media/characters/aronai-sieyes/feral.svg",
  21596. extra: 1530 / 1240,
  21597. bottom: 0.035
  21598. }
  21599. },
  21600. },
  21601. [
  21602. {
  21603. name: "Micro",
  21604. height: math.unit(2, "inches")
  21605. },
  21606. {
  21607. name: "Normal",
  21608. height: math.unit(6 + 1 / 12, "feet"),
  21609. default: true
  21610. }
  21611. ]
  21612. ))
  21613. characterMakers.push(() => makeCharacter(
  21614. { name: "Xuna", species: ["wickerbeast"], tags: ["anthro"] },
  21615. {
  21616. front: {
  21617. height: math.unit(12, "feet"),
  21618. weight: math.unit(410, "kg"),
  21619. name: "Front",
  21620. image: {
  21621. source: "./media/characters/xuna/front.svg",
  21622. extra: 2184 / 1980
  21623. }
  21624. },
  21625. side: {
  21626. height: math.unit(12, "feet"),
  21627. weight: math.unit(410, "kg"),
  21628. name: "Side",
  21629. image: {
  21630. source: "./media/characters/xuna/side.svg",
  21631. extra: 2184 / 1980
  21632. }
  21633. },
  21634. back: {
  21635. height: math.unit(12, "feet"),
  21636. weight: math.unit(410, "kg"),
  21637. name: "Back",
  21638. image: {
  21639. source: "./media/characters/xuna/back.svg",
  21640. extra: 2184 / 1980
  21641. }
  21642. },
  21643. },
  21644. [
  21645. {
  21646. name: "Nano glow",
  21647. height: math.unit(10, "nm")
  21648. },
  21649. {
  21650. name: "Micro floof",
  21651. height: math.unit(0.3, "m")
  21652. },
  21653. {
  21654. name: "Huggable softy boi",
  21655. height: math.unit(3.6576, "m"),
  21656. default: true
  21657. },
  21658. {
  21659. name: "Admirable floof",
  21660. height: math.unit(80, "meters")
  21661. },
  21662. {
  21663. name: "Gentle macro",
  21664. height: math.unit(300, "meters")
  21665. },
  21666. {
  21667. name: "Very careful floof",
  21668. height: math.unit(3200, "meters")
  21669. },
  21670. {
  21671. name: "The mega floof",
  21672. height: math.unit(36000, "meters")
  21673. },
  21674. {
  21675. name: "Giga-fur-Wicker",
  21676. height: math.unit(4800000, "meters")
  21677. },
  21678. {
  21679. name: "Licky world",
  21680. height: math.unit(20000000, "meters")
  21681. },
  21682. {
  21683. name: "Floofy cyan sun",
  21684. height: math.unit(1500000000, "meters")
  21685. },
  21686. {
  21687. name: "Milky Wicker",
  21688. height: math.unit(1000000000000000000000, "meters")
  21689. },
  21690. {
  21691. name: "The observing Wicker",
  21692. height: math.unit(999999999999999999999999999, "meters")
  21693. },
  21694. ]
  21695. ))
  21696. characterMakers.push(() => makeCharacter(
  21697. { name: "Arokha Sieyes", species: ["kitsune"], tags: ["anthro"] },
  21698. {
  21699. front: {
  21700. height: math.unit(5 + 9 / 12, "feet"),
  21701. weight: math.unit(150, "lb"),
  21702. name: "Front",
  21703. image: {
  21704. source: "./media/characters/arokha-sieyes/front.svg",
  21705. extra: 1425 / 1284,
  21706. bottom: 0.05
  21707. }
  21708. },
  21709. },
  21710. [
  21711. {
  21712. name: "Normal",
  21713. height: math.unit(5 + 9 / 12, "feet")
  21714. },
  21715. {
  21716. name: "Macro",
  21717. height: math.unit(30, "meters"),
  21718. default: true
  21719. },
  21720. ]
  21721. ))
  21722. characterMakers.push(() => makeCharacter(
  21723. { name: "Arokh Sieyes", species: ["kitsune"], tags: ["anthro"] },
  21724. {
  21725. front: {
  21726. height: math.unit(6, "feet"),
  21727. weight: math.unit(180, "lb"),
  21728. name: "Front",
  21729. image: {
  21730. source: "./media/characters/arokh-sieyes/front.svg",
  21731. extra: 1830 / 1769,
  21732. bottom: 0.01
  21733. }
  21734. },
  21735. },
  21736. [
  21737. {
  21738. name: "Normal",
  21739. height: math.unit(6, "feet")
  21740. },
  21741. {
  21742. name: "Macro",
  21743. height: math.unit(30, "meters"),
  21744. default: true
  21745. },
  21746. ]
  21747. ))
  21748. characterMakers.push(() => makeCharacter(
  21749. { name: "Goldeneye", species: ["gryphon"], tags: ["feral"] },
  21750. {
  21751. side: {
  21752. height: math.unit(13 + 1 / 12, "feet"),
  21753. weight: math.unit(8.5, "tonnes"),
  21754. preyCapacity: math.unit(36, "people"),
  21755. name: "Side",
  21756. image: {
  21757. source: "./media/characters/goldeneye/side.svg",
  21758. extra: 1139/741,
  21759. bottom: 98/1237
  21760. }
  21761. },
  21762. front: {
  21763. height: math.unit(5.1, "feet"),
  21764. weight: math.unit(8.5, "tonnes"),
  21765. preyCapacity: math.unit(36, "people"),
  21766. name: "Front",
  21767. image: {
  21768. source: "./media/characters/goldeneye/front.svg",
  21769. extra: 635/365,
  21770. bottom: 598/1233
  21771. }
  21772. },
  21773. maw: {
  21774. height: math.unit(6.6, "feet"),
  21775. name: "Maw",
  21776. image: {
  21777. source: "./media/characters/goldeneye/maw.svg"
  21778. }
  21779. },
  21780. headFront: {
  21781. height: math.unit(8, "feet"),
  21782. name: "Head (Front)",
  21783. image: {
  21784. source: "./media/characters/goldeneye/head-front.svg"
  21785. }
  21786. },
  21787. headSide: {
  21788. height: math.unit(6, "feet"),
  21789. name: "Head (Side)",
  21790. image: {
  21791. source: "./media/characters/goldeneye/head-side.svg"
  21792. }
  21793. },
  21794. headBack: {
  21795. height: math.unit(8, "feet"),
  21796. name: "Head (Back)",
  21797. image: {
  21798. source: "./media/characters/goldeneye/head-back.svg"
  21799. }
  21800. },
  21801. paw: {
  21802. height: math.unit(3.4, "feet"),
  21803. name: "Paw",
  21804. image: {
  21805. source: "./media/characters/goldeneye/paw.svg"
  21806. }
  21807. },
  21808. toering: {
  21809. height: math.unit(0.45, "feet"),
  21810. name: "Toering",
  21811. image: {
  21812. source: "./media/characters/goldeneye/toering.svg"
  21813. }
  21814. },
  21815. eyes: {
  21816. height: math.unit(0.5, "feet"),
  21817. name: "Eyes",
  21818. image: {
  21819. source: "./media/characters/goldeneye/eyes.svg"
  21820. }
  21821. },
  21822. },
  21823. [
  21824. {
  21825. name: "Normal",
  21826. height: math.unit(13 + 1 / 12, "feet"),
  21827. default: true
  21828. },
  21829. ]
  21830. ))
  21831. characterMakers.push(() => makeCharacter(
  21832. { name: "Leonardo Lycheborne", species: ["wolf", "dog", "barghest", "werebeast"], tags: ["anthro", "feral", "taur"] },
  21833. {
  21834. front: {
  21835. height: math.unit(6 + 1 / 12, "feet"),
  21836. weight: math.unit(210, "lb"),
  21837. name: "Front",
  21838. image: {
  21839. source: "./media/characters/leonardo-lycheborne/front.svg",
  21840. extra: 776/723,
  21841. bottom: 34/810
  21842. }
  21843. },
  21844. side: {
  21845. height: math.unit(6 + 1 / 12, "feet"),
  21846. weight: math.unit(210, "lb"),
  21847. name: "Side",
  21848. image: {
  21849. source: "./media/characters/leonardo-lycheborne/side.svg",
  21850. extra: 780/728,
  21851. bottom: 12/792
  21852. }
  21853. },
  21854. back: {
  21855. height: math.unit(6 + 1 / 12, "feet"),
  21856. weight: math.unit(210, "lb"),
  21857. name: "Back",
  21858. image: {
  21859. source: "./media/characters/leonardo-lycheborne/back.svg",
  21860. extra: 775/721,
  21861. bottom: 17/792
  21862. }
  21863. },
  21864. hand: {
  21865. height: math.unit(1.08, "feet"),
  21866. name: "Hand",
  21867. image: {
  21868. source: "./media/characters/leonardo-lycheborne/hand.svg"
  21869. }
  21870. },
  21871. foot: {
  21872. height: math.unit(1.32, "feet"),
  21873. name: "Foot",
  21874. image: {
  21875. source: "./media/characters/leonardo-lycheborne/foot.svg"
  21876. }
  21877. },
  21878. maw: {
  21879. height: math.unit(1, "feet"),
  21880. name: "Maw",
  21881. image: {
  21882. source: "./media/characters/leonardo-lycheborne/maw.svg"
  21883. }
  21884. },
  21885. were: {
  21886. height: math.unit(20, "feet"),
  21887. weight: math.unit(7800, "lb"),
  21888. name: "Were",
  21889. image: {
  21890. source: "./media/characters/leonardo-lycheborne/were.svg",
  21891. extra: 1224/1165,
  21892. bottom: 72/1296
  21893. }
  21894. },
  21895. feral: {
  21896. height: math.unit(7.5, "feet"),
  21897. weight: math.unit(600, "lb"),
  21898. name: "Feral",
  21899. image: {
  21900. source: "./media/characters/leonardo-lycheborne/feral.svg",
  21901. extra: 797/702,
  21902. bottom: 139/936
  21903. }
  21904. },
  21905. taur: {
  21906. height: math.unit(11, "feet"),
  21907. weight: math.unit(3300, "lb"),
  21908. name: "Taur",
  21909. image: {
  21910. source: "./media/characters/leonardo-lycheborne/taur.svg",
  21911. extra: 1271/1197,
  21912. bottom: 47/1318
  21913. }
  21914. },
  21915. barghest: {
  21916. height: math.unit(11, "feet"),
  21917. weight: math.unit(1300, "lb"),
  21918. name: "Barghest",
  21919. image: {
  21920. source: "./media/characters/leonardo-lycheborne/barghest.svg",
  21921. extra: 1291/1204,
  21922. bottom: 37/1328
  21923. }
  21924. },
  21925. dick: {
  21926. height: math.unit((6 + 1 / 12) / 4.09, "feet"),
  21927. name: "Dick",
  21928. image: {
  21929. source: "./media/characters/leonardo-lycheborne/dick.svg"
  21930. }
  21931. },
  21932. dickWere: {
  21933. height: math.unit((20) / 3.8, "feet"),
  21934. name: "Dick (Were)",
  21935. image: {
  21936. source: "./media/characters/leonardo-lycheborne/dick-were.svg"
  21937. }
  21938. },
  21939. },
  21940. [
  21941. {
  21942. name: "Normal",
  21943. height: math.unit(6 + 1 / 12, "feet"),
  21944. default: true
  21945. },
  21946. ]
  21947. ))
  21948. characterMakers.push(() => makeCharacter(
  21949. { name: "Jet", species: ["hyena"], tags: ["anthro"] },
  21950. {
  21951. front: {
  21952. height: math.unit(10, "feet"),
  21953. weight: math.unit(350, "lb"),
  21954. name: "Front",
  21955. image: {
  21956. source: "./media/characters/jet/front.svg",
  21957. extra: 2050 / 1980,
  21958. bottom: 0.013
  21959. }
  21960. },
  21961. back: {
  21962. height: math.unit(10, "feet"),
  21963. weight: math.unit(350, "lb"),
  21964. name: "Back",
  21965. image: {
  21966. source: "./media/characters/jet/back.svg",
  21967. extra: 2050 / 1980,
  21968. bottom: 0.013
  21969. }
  21970. },
  21971. },
  21972. [
  21973. {
  21974. name: "Micro",
  21975. height: math.unit(6, "inches")
  21976. },
  21977. {
  21978. name: "Normal",
  21979. height: math.unit(10, "feet"),
  21980. default: true
  21981. },
  21982. {
  21983. name: "Macro",
  21984. height: math.unit(100, "feet")
  21985. },
  21986. ]
  21987. ))
  21988. characterMakers.push(() => makeCharacter(
  21989. { name: "Tanarath", species: ["dragonoid"], tags: ["anthro"] },
  21990. {
  21991. front: {
  21992. height: math.unit(15, "feet"),
  21993. weight: math.unit(2800, "lb"),
  21994. name: "Front",
  21995. image: {
  21996. source: "./media/characters/tanarath/front.svg",
  21997. extra: 2392 / 2220,
  21998. bottom: 0.03
  21999. }
  22000. },
  22001. back: {
  22002. height: math.unit(15, "feet"),
  22003. weight: math.unit(2800, "lb"),
  22004. name: "Back",
  22005. image: {
  22006. source: "./media/characters/tanarath/back.svg",
  22007. extra: 2392 / 2220,
  22008. bottom: 0.03
  22009. }
  22010. },
  22011. },
  22012. [
  22013. {
  22014. name: "Normal",
  22015. height: math.unit(15, "feet"),
  22016. default: true
  22017. },
  22018. ]
  22019. ))
  22020. characterMakers.push(() => makeCharacter(
  22021. { name: "Patty CattyBatty", species: ["cat", "bat"], tags: ["anthro"] },
  22022. {
  22023. front: {
  22024. height: math.unit(7 + 1 / 12, "feet"),
  22025. weight: math.unit(175, "lb"),
  22026. name: "Front",
  22027. image: {
  22028. source: "./media/characters/patty-cattybatty/front.svg",
  22029. extra: 908 / 874,
  22030. bottom: 0.025
  22031. }
  22032. },
  22033. },
  22034. [
  22035. {
  22036. name: "Micro",
  22037. height: math.unit(1, "inch")
  22038. },
  22039. {
  22040. name: "Normal",
  22041. height: math.unit(7 + 1 / 12, "feet")
  22042. },
  22043. {
  22044. name: "Mini Macro",
  22045. height: math.unit(155, "feet")
  22046. },
  22047. {
  22048. name: "Macro",
  22049. height: math.unit(1077, "feet")
  22050. },
  22051. {
  22052. name: "Mega Macro",
  22053. height: math.unit(47650, "feet"),
  22054. default: true
  22055. },
  22056. {
  22057. name: "Giga Macro",
  22058. height: math.unit(440, "miles")
  22059. },
  22060. {
  22061. name: "Tera Macro",
  22062. height: math.unit(8700, "miles")
  22063. },
  22064. {
  22065. name: "Planetary Macro",
  22066. height: math.unit(32700, "miles")
  22067. },
  22068. {
  22069. name: "Solar Macro",
  22070. height: math.unit(550000, "miles")
  22071. },
  22072. {
  22073. name: "Celestial Macro",
  22074. height: math.unit(2.5, "AU")
  22075. },
  22076. ]
  22077. ))
  22078. characterMakers.push(() => makeCharacter(
  22079. { name: "Cappu", species: ["sheep"], tags: ["anthro"] },
  22080. {
  22081. front: {
  22082. height: math.unit(4 + 5 / 12, "feet"),
  22083. weight: math.unit(90, "lb"),
  22084. name: "Front",
  22085. image: {
  22086. source: "./media/characters/cappu/front.svg",
  22087. extra: 1247 / 1152,
  22088. bottom: 0.012
  22089. }
  22090. },
  22091. },
  22092. [
  22093. {
  22094. name: "Normal",
  22095. height: math.unit(4 + 5 / 12, "feet"),
  22096. default: true
  22097. },
  22098. ]
  22099. ))
  22100. characterMakers.push(() => makeCharacter(
  22101. { name: "Sebi", species: ["cat", "demon", "wolf"], tags: ["anthro"] },
  22102. {
  22103. frontDressed: {
  22104. height: math.unit(70, "cm"),
  22105. weight: math.unit(6, "kg"),
  22106. name: "Front (Dressed)",
  22107. image: {
  22108. source: "./media/characters/sebi/front-dressed.svg",
  22109. extra: 713.5 / 686.5,
  22110. bottom: 0.003
  22111. }
  22112. },
  22113. front: {
  22114. height: math.unit(70, "cm"),
  22115. weight: math.unit(5, "kg"),
  22116. name: "Front",
  22117. image: {
  22118. source: "./media/characters/sebi/front.svg",
  22119. extra: 713.5 / 686.5,
  22120. bottom: 0.003
  22121. }
  22122. }
  22123. },
  22124. [
  22125. {
  22126. name: "Normal",
  22127. height: math.unit(70, "cm"),
  22128. default: true
  22129. },
  22130. {
  22131. name: "Macro",
  22132. height: math.unit(8, "meters")
  22133. },
  22134. ]
  22135. ))
  22136. characterMakers.push(() => makeCharacter(
  22137. { name: "Typhek", species: ["t-rex"], tags: ["anthro"] },
  22138. {
  22139. front: {
  22140. height: math.unit(6, "feet"),
  22141. weight: math.unit(150, "lb"),
  22142. name: "Front",
  22143. image: {
  22144. source: "./media/characters/typhek/front.svg",
  22145. extra: 1948 / 1929,
  22146. bottom: 0.025
  22147. }
  22148. },
  22149. side: {
  22150. height: math.unit(6, "feet"),
  22151. weight: math.unit(150, "lb"),
  22152. name: "Side",
  22153. image: {
  22154. source: "./media/characters/typhek/side.svg",
  22155. extra: 2034 / 2010,
  22156. bottom: 0.003
  22157. }
  22158. },
  22159. back: {
  22160. height: math.unit(6, "feet"),
  22161. weight: math.unit(150, "lb"),
  22162. name: "Back",
  22163. image: {
  22164. source: "./media/characters/typhek/back.svg",
  22165. extra: 2005 / 1978,
  22166. bottom: 0.004
  22167. }
  22168. },
  22169. palm: {
  22170. height: math.unit(1.2, "feet"),
  22171. name: "Palm",
  22172. image: {
  22173. source: "./media/characters/typhek/palm.svg"
  22174. }
  22175. },
  22176. fist: {
  22177. height: math.unit(1.1, "feet"),
  22178. name: "Fist",
  22179. image: {
  22180. source: "./media/characters/typhek/fist.svg"
  22181. }
  22182. },
  22183. foot: {
  22184. height: math.unit(1.57, "feet"),
  22185. name: "Foot",
  22186. image: {
  22187. source: "./media/characters/typhek/foot.svg"
  22188. }
  22189. },
  22190. sole: {
  22191. height: math.unit(2.05, "feet"),
  22192. name: "Sole",
  22193. image: {
  22194. source: "./media/characters/typhek/sole.svg"
  22195. }
  22196. },
  22197. },
  22198. [
  22199. {
  22200. name: "Macro",
  22201. height: math.unit(40, "stories"),
  22202. default: true
  22203. },
  22204. {
  22205. name: "Megamacro",
  22206. height: math.unit(1, "mile")
  22207. },
  22208. {
  22209. name: "Gigamacro",
  22210. height: math.unit(4000, "solarradii")
  22211. },
  22212. {
  22213. name: "Universal",
  22214. height: math.unit(1.1, "universes")
  22215. }
  22216. ]
  22217. ))
  22218. characterMakers.push(() => makeCharacter(
  22219. { name: "Kassy", species: ["sheep"], tags: ["anthro"] },
  22220. {
  22221. side: {
  22222. height: math.unit(5 + 7 / 12, "feet"),
  22223. weight: math.unit(150, "lb"),
  22224. name: "Side",
  22225. image: {
  22226. source: "./media/characters/kassy/side.svg",
  22227. extra: 1280 / 1225,
  22228. bottom: 0.002
  22229. }
  22230. },
  22231. front: {
  22232. height: math.unit(5 + 7 / 12, "feet"),
  22233. weight: math.unit(150, "lb"),
  22234. name: "Front",
  22235. image: {
  22236. source: "./media/characters/kassy/front.svg",
  22237. extra: 1280 / 1225,
  22238. bottom: 0.025
  22239. }
  22240. },
  22241. back: {
  22242. height: math.unit(5 + 7 / 12, "feet"),
  22243. weight: math.unit(150, "lb"),
  22244. name: "Back",
  22245. image: {
  22246. source: "./media/characters/kassy/back.svg",
  22247. extra: 1280 / 1225,
  22248. bottom: 0.002
  22249. }
  22250. },
  22251. foot: {
  22252. height: math.unit(1.266, "feet"),
  22253. name: "Foot",
  22254. image: {
  22255. source: "./media/characters/kassy/foot.svg"
  22256. }
  22257. },
  22258. },
  22259. [
  22260. {
  22261. name: "Normal",
  22262. height: math.unit(5 + 7 / 12, "feet")
  22263. },
  22264. {
  22265. name: "Macro",
  22266. height: math.unit(137, "feet"),
  22267. default: true
  22268. },
  22269. {
  22270. name: "Megamacro",
  22271. height: math.unit(1, "mile")
  22272. },
  22273. ]
  22274. ))
  22275. characterMakers.push(() => makeCharacter(
  22276. { name: "Neil", species: ["deer"], tags: ["anthro"] },
  22277. {
  22278. front: {
  22279. height: math.unit(6 + 1 / 12, "feet"),
  22280. weight: math.unit(200, "lb"),
  22281. name: "Front",
  22282. image: {
  22283. source: "./media/characters/neil/front.svg",
  22284. extra: 1326 / 1250,
  22285. bottom: 0.023
  22286. }
  22287. },
  22288. },
  22289. [
  22290. {
  22291. name: "Normal",
  22292. height: math.unit(6 + 1 / 12, "feet"),
  22293. default: true
  22294. },
  22295. {
  22296. name: "Macro",
  22297. height: math.unit(200, "feet")
  22298. },
  22299. ]
  22300. ))
  22301. characterMakers.push(() => makeCharacter(
  22302. { name: "Atticus", species: ["pig"], tags: ["anthro"] },
  22303. {
  22304. front: {
  22305. height: math.unit(5 + 9 / 12, "feet"),
  22306. weight: math.unit(190, "lb"),
  22307. name: "Front",
  22308. image: {
  22309. source: "./media/characters/atticus/front.svg",
  22310. extra: 2934 / 2785,
  22311. bottom: 0.025
  22312. }
  22313. },
  22314. },
  22315. [
  22316. {
  22317. name: "Normal",
  22318. height: math.unit(5 + 9 / 12, "feet"),
  22319. default: true
  22320. },
  22321. {
  22322. name: "Macro",
  22323. height: math.unit(180, "feet")
  22324. },
  22325. ]
  22326. ))
  22327. characterMakers.push(() => makeCharacter(
  22328. { name: "Milo", species: ["scolipede"], tags: ["feral"] },
  22329. {
  22330. side: {
  22331. height: math.unit(9, "feet"),
  22332. weight: math.unit(650, "lb"),
  22333. name: "Side",
  22334. image: {
  22335. source: "./media/characters/milo/side.svg",
  22336. extra: 2644 / 2310,
  22337. bottom: 0.032
  22338. }
  22339. },
  22340. },
  22341. [
  22342. {
  22343. name: "Normal",
  22344. height: math.unit(9, "feet"),
  22345. default: true
  22346. },
  22347. {
  22348. name: "Macro",
  22349. height: math.unit(300, "feet")
  22350. },
  22351. ]
  22352. ))
  22353. characterMakers.push(() => makeCharacter(
  22354. { name: "Ijzer", species: ["dragon"], tags: ["anthro"] },
  22355. {
  22356. side: {
  22357. height: math.unit(8, "meters"),
  22358. weight: math.unit(90000, "kg"),
  22359. name: "Side",
  22360. image: {
  22361. source: "./media/characters/ijzer/side.svg",
  22362. extra: 2756 / 1600,
  22363. bottom: 0.01
  22364. }
  22365. },
  22366. },
  22367. [
  22368. {
  22369. name: "Small",
  22370. height: math.unit(3, "meters")
  22371. },
  22372. {
  22373. name: "Normal",
  22374. height: math.unit(8, "meters"),
  22375. default: true
  22376. },
  22377. {
  22378. name: "Normal+",
  22379. height: math.unit(10, "meters")
  22380. },
  22381. {
  22382. name: "Bigger",
  22383. height: math.unit(24, "meters")
  22384. },
  22385. {
  22386. name: "Huge",
  22387. height: math.unit(80, "meters")
  22388. },
  22389. ]
  22390. ))
  22391. characterMakers.push(() => makeCharacter(
  22392. { name: "Luca Cervicum", species: ["deer"], tags: ["anthro"] },
  22393. {
  22394. front: {
  22395. height: math.unit(6 + 2 / 12, "feet"),
  22396. weight: math.unit(153, "lb"),
  22397. name: "Front",
  22398. image: {
  22399. source: "./media/characters/luca-cervicum/front.svg",
  22400. extra: 370 / 327,
  22401. bottom: 0.015
  22402. }
  22403. },
  22404. back: {
  22405. height: math.unit(6 + 2 / 12, "feet"),
  22406. weight: math.unit(153, "lb"),
  22407. name: "Back",
  22408. image: {
  22409. source: "./media/characters/luca-cervicum/back.svg",
  22410. extra: 367 / 333,
  22411. bottom: 0.005
  22412. }
  22413. },
  22414. frontGear: {
  22415. height: math.unit(6 + 2 / 12, "feet"),
  22416. weight: math.unit(173, "lb"),
  22417. name: "Front (Gear)",
  22418. image: {
  22419. source: "./media/characters/luca-cervicum/front-gear.svg",
  22420. extra: 377 / 333,
  22421. bottom: 0.006
  22422. }
  22423. },
  22424. },
  22425. [
  22426. {
  22427. name: "Normal",
  22428. height: math.unit(6 + 2 / 12, "feet"),
  22429. default: true
  22430. },
  22431. ]
  22432. ))
  22433. characterMakers.push(() => makeCharacter(
  22434. { name: "Oliver", species: ["goodra"], tags: ["anthro"] },
  22435. {
  22436. front: {
  22437. height: math.unit(6 + 1 / 12, "feet"),
  22438. weight: math.unit(304, "lb"),
  22439. name: "Front",
  22440. image: {
  22441. source: "./media/characters/oliver/front.svg",
  22442. extra: 157 / 143,
  22443. bottom: 0.08
  22444. }
  22445. },
  22446. },
  22447. [
  22448. {
  22449. name: "Normal",
  22450. height: math.unit(6 + 1 / 12, "feet"),
  22451. default: true
  22452. },
  22453. ]
  22454. ))
  22455. characterMakers.push(() => makeCharacter(
  22456. { name: "Shane", species: ["gray-fox"], tags: ["anthro"] },
  22457. {
  22458. front: {
  22459. height: math.unit(5 + 7 / 12, "feet"),
  22460. weight: math.unit(140, "lb"),
  22461. name: "Front",
  22462. image: {
  22463. source: "./media/characters/shane/front.svg",
  22464. extra: 304 / 289,
  22465. bottom: 0.005
  22466. }
  22467. },
  22468. },
  22469. [
  22470. {
  22471. name: "Normal",
  22472. height: math.unit(5 + 7 / 12, "feet"),
  22473. default: true
  22474. },
  22475. ]
  22476. ))
  22477. characterMakers.push(() => makeCharacter(
  22478. { name: "Shin", species: ["rat"], tags: ["anthro"] },
  22479. {
  22480. front: {
  22481. height: math.unit(5 + 9 / 12, "feet"),
  22482. weight: math.unit(178, "lb"),
  22483. name: "Front",
  22484. image: {
  22485. source: "./media/characters/shin/front.svg",
  22486. extra: 159 / 151,
  22487. bottom: 0.015
  22488. }
  22489. },
  22490. },
  22491. [
  22492. {
  22493. name: "Normal",
  22494. height: math.unit(5 + 9 / 12, "feet"),
  22495. default: true
  22496. },
  22497. ]
  22498. ))
  22499. characterMakers.push(() => makeCharacter(
  22500. { name: "Xerxes", species: ["zoroark"], tags: ["anthro"] },
  22501. {
  22502. front: {
  22503. height: math.unit(5 + 10 / 12, "feet"),
  22504. weight: math.unit(168, "lb"),
  22505. name: "Front",
  22506. image: {
  22507. source: "./media/characters/xerxes/front.svg",
  22508. extra: 282 / 260,
  22509. bottom: 0.045
  22510. }
  22511. },
  22512. },
  22513. [
  22514. {
  22515. name: "Normal",
  22516. height: math.unit(5 + 10 / 12, "feet"),
  22517. default: true
  22518. },
  22519. ]
  22520. ))
  22521. characterMakers.push(() => makeCharacter(
  22522. { name: "Chaska", species: ["maned-wolf"], tags: ["anthro"] },
  22523. {
  22524. front: {
  22525. height: math.unit(6 + 7 / 12, "feet"),
  22526. weight: math.unit(208, "lb"),
  22527. name: "Front",
  22528. image: {
  22529. source: "./media/characters/chaska/front.svg",
  22530. extra: 332 / 319,
  22531. bottom: 0.015
  22532. }
  22533. },
  22534. },
  22535. [
  22536. {
  22537. name: "Normal",
  22538. height: math.unit(6 + 7 / 12, "feet"),
  22539. default: true
  22540. },
  22541. ]
  22542. ))
  22543. characterMakers.push(() => makeCharacter(
  22544. { name: "Enuk", species: ["black-backed-jackal"], tags: ["anthro"] },
  22545. {
  22546. front: {
  22547. height: math.unit(5 + 8 / 12, "feet"),
  22548. weight: math.unit(208, "lb"),
  22549. name: "Front",
  22550. image: {
  22551. source: "./media/characters/enuk/front.svg",
  22552. extra: 437 / 406,
  22553. bottom: 0.02
  22554. }
  22555. },
  22556. },
  22557. [
  22558. {
  22559. name: "Normal",
  22560. height: math.unit(5 + 8 / 12, "feet"),
  22561. default: true
  22562. },
  22563. ]
  22564. ))
  22565. characterMakers.push(() => makeCharacter(
  22566. { name: "Bruun", species: ["black-backed-jackal"], tags: ["anthro"] },
  22567. {
  22568. front: {
  22569. height: math.unit(5 + 10 / 12, "feet"),
  22570. weight: math.unit(252, "lb"),
  22571. name: "Front",
  22572. image: {
  22573. source: "./media/characters/bruun/front.svg",
  22574. extra: 197 / 187,
  22575. bottom: 0.012
  22576. }
  22577. },
  22578. },
  22579. [
  22580. {
  22581. name: "Normal",
  22582. height: math.unit(5 + 10 / 12, "feet"),
  22583. default: true
  22584. },
  22585. ]
  22586. ))
  22587. characterMakers.push(() => makeCharacter(
  22588. { name: "Alexeev", species: ["samurott"], tags: ["anthro"] },
  22589. {
  22590. front: {
  22591. height: math.unit(6 + 10 / 12, "feet"),
  22592. weight: math.unit(255, "lb"),
  22593. name: "Front",
  22594. image: {
  22595. source: "./media/characters/alexeev/front.svg",
  22596. extra: 213 / 200,
  22597. bottom: 0.05
  22598. }
  22599. },
  22600. },
  22601. [
  22602. {
  22603. name: "Normal",
  22604. height: math.unit(6 + 10 / 12, "feet"),
  22605. default: true
  22606. },
  22607. ]
  22608. ))
  22609. characterMakers.push(() => makeCharacter(
  22610. { name: "Evelyn", species: ["thylacine"], tags: ["anthro"] },
  22611. {
  22612. front: {
  22613. height: math.unit(2 + 8 / 12, "feet"),
  22614. weight: math.unit(22, "lb"),
  22615. name: "Front",
  22616. image: {
  22617. source: "./media/characters/evelyn/front.svg",
  22618. extra: 208 / 180
  22619. }
  22620. },
  22621. },
  22622. [
  22623. {
  22624. name: "Normal",
  22625. height: math.unit(2 + 8 / 12, "feet"),
  22626. default: true
  22627. },
  22628. ]
  22629. ))
  22630. characterMakers.push(() => makeCharacter(
  22631. { name: "Inca", species: ["gecko"], tags: ["anthro"] },
  22632. {
  22633. front: {
  22634. height: math.unit(5 + 9 / 12, "feet"),
  22635. weight: math.unit(139, "lb"),
  22636. name: "Front",
  22637. image: {
  22638. source: "./media/characters/inca/front.svg",
  22639. extra: 294 / 291,
  22640. bottom: 0.03
  22641. }
  22642. },
  22643. },
  22644. [
  22645. {
  22646. name: "Normal",
  22647. height: math.unit(5 + 9 / 12, "feet"),
  22648. default: true
  22649. },
  22650. ]
  22651. ))
  22652. characterMakers.push(() => makeCharacter(
  22653. { name: "Mera", species: ["flying-fox", "spectral-bat"], tags: ["anthro"] },
  22654. {
  22655. front: {
  22656. height: math.unit(6 + 3 / 12, "feet"),
  22657. weight: math.unit(185, "lb"),
  22658. name: "Front",
  22659. image: {
  22660. source: "./media/characters/mera/front.svg",
  22661. extra: 291 / 277,
  22662. bottom: 0.03
  22663. }
  22664. },
  22665. },
  22666. [
  22667. {
  22668. name: "Normal",
  22669. height: math.unit(6 + 3 / 12, "feet"),
  22670. default: true
  22671. },
  22672. ]
  22673. ))
  22674. characterMakers.push(() => makeCharacter(
  22675. { name: "Ceres", species: ["zoroark"], tags: ["anthro"] },
  22676. {
  22677. front: {
  22678. height: math.unit(6 + 7 / 12, "feet"),
  22679. weight: math.unit(160, "lb"),
  22680. name: "Front",
  22681. image: {
  22682. source: "./media/characters/ceres/front.svg",
  22683. extra: 1023 / 950,
  22684. bottom: 0.027
  22685. }
  22686. },
  22687. back: {
  22688. height: math.unit(6 + 7 / 12, "feet"),
  22689. weight: math.unit(160, "lb"),
  22690. name: "Back",
  22691. image: {
  22692. source: "./media/characters/ceres/back.svg",
  22693. extra: 1023 / 950
  22694. }
  22695. },
  22696. },
  22697. [
  22698. {
  22699. name: "Normal",
  22700. height: math.unit(6 + 7 / 12, "feet"),
  22701. default: true
  22702. },
  22703. ]
  22704. ))
  22705. characterMakers.push(() => makeCharacter(
  22706. { name: "Kris", species: ["ninetales"], tags: ["anthro"] },
  22707. {
  22708. front: {
  22709. height: math.unit(5 + 10 / 12, "feet"),
  22710. weight: math.unit(150, "lb"),
  22711. name: "Front",
  22712. image: {
  22713. source: "./media/characters/kris/front.svg",
  22714. extra: 885 / 803,
  22715. bottom: 0.03
  22716. }
  22717. },
  22718. },
  22719. [
  22720. {
  22721. name: "Normal",
  22722. height: math.unit(5 + 10 / 12, "feet"),
  22723. default: true
  22724. },
  22725. ]
  22726. ))
  22727. characterMakers.push(() => makeCharacter(
  22728. { name: "Taluthus", species: ["kitsune"], tags: ["anthro"] },
  22729. {
  22730. dragon_front: {
  22731. height: math.unit(5, "feet"),
  22732. name: "Front",
  22733. image: {
  22734. source: "./media/characters/taluthus/dragon-front.svg",
  22735. extra: 1203/1098,
  22736. bottom: 46/1249
  22737. },
  22738. form: "dragon",
  22739. default: true
  22740. },
  22741. dragon_maw: {
  22742. height: math.unit(2.35, "feet"),
  22743. name: "Maw",
  22744. image: {
  22745. source: "./media/characters/taluthus/dragon-maw.svg"
  22746. },
  22747. form: "dragon",
  22748. },
  22749. kitsune_front: {
  22750. height: math.unit(7, "feet"),
  22751. name: "Front",
  22752. image: {
  22753. source: "./media/characters/taluthus/kitsune-front.svg",
  22754. extra: 900/841,
  22755. bottom: 65/965
  22756. },
  22757. form: "kitsune",
  22758. default: true
  22759. },
  22760. },
  22761. [
  22762. {
  22763. name: "Normal",
  22764. height: math.unit(5, "feet"),
  22765. form: "dragon",
  22766. default: true,
  22767. },
  22768. {
  22769. name: "Normal",
  22770. height: math.unit(7, "feet"),
  22771. form: "kitsune",
  22772. default: true
  22773. },
  22774. {
  22775. name: "Macro",
  22776. height: math.unit(300, "feet"),
  22777. allForms: true
  22778. },
  22779. ],
  22780. {
  22781. "dragon": {
  22782. name: "Dragon",
  22783. default: true
  22784. },
  22785. "kitsune": {
  22786. name: "Kitsune",
  22787. },
  22788. }
  22789. ))
  22790. characterMakers.push(() => makeCharacter(
  22791. { name: "Dawn", species: ["luxray"], tags: ["anthro"] },
  22792. {
  22793. front: {
  22794. height: math.unit(5 + 9 / 12, "feet"),
  22795. weight: math.unit(145, "lb"),
  22796. name: "Front",
  22797. image: {
  22798. source: "./media/characters/dawn/front.svg",
  22799. extra: 2094 / 2016,
  22800. bottom: 0.025
  22801. }
  22802. },
  22803. back: {
  22804. height: math.unit(5 + 9 / 12, "feet"),
  22805. weight: math.unit(160, "lb"),
  22806. name: "Back",
  22807. image: {
  22808. source: "./media/characters/dawn/back.svg",
  22809. extra: 2112 / 2080,
  22810. bottom: 0.005
  22811. }
  22812. },
  22813. },
  22814. [
  22815. {
  22816. name: "Normal",
  22817. height: math.unit(6 + 7 / 12, "feet"),
  22818. default: true
  22819. },
  22820. ]
  22821. ))
  22822. characterMakers.push(() => makeCharacter(
  22823. { name: "Arador", species: ["water-dragon"], tags: ["anthro"] },
  22824. {
  22825. anthro: {
  22826. height: math.unit(8 + 3 / 12, "feet"),
  22827. weight: math.unit(450, "lb"),
  22828. name: "Anthro",
  22829. image: {
  22830. source: "./media/characters/arador/anthro.svg",
  22831. extra: 1835 / 1718,
  22832. bottom: 0.025
  22833. }
  22834. },
  22835. feral: {
  22836. height: math.unit(4, "feet"),
  22837. weight: math.unit(200, "lb"),
  22838. name: "Feral",
  22839. image: {
  22840. source: "./media/characters/arador/feral.svg",
  22841. extra: 1683 / 1514,
  22842. bottom: 0.07
  22843. }
  22844. },
  22845. },
  22846. [
  22847. {
  22848. name: "Normal",
  22849. height: math.unit(8 + 3 / 12, "feet")
  22850. },
  22851. {
  22852. name: "Macro",
  22853. height: math.unit(82.5, "feet"),
  22854. default: true
  22855. },
  22856. ]
  22857. ))
  22858. characterMakers.push(() => makeCharacter(
  22859. { name: "Dharsi", species: ["dragon"], tags: ["anthro"] },
  22860. {
  22861. front: {
  22862. height: math.unit(5 + 10 / 12, "feet"),
  22863. weight: math.unit(125, "lb"),
  22864. name: "Front",
  22865. image: {
  22866. source: "./media/characters/dharsi/front.svg",
  22867. extra: 716 / 630,
  22868. bottom: 0.035
  22869. }
  22870. },
  22871. },
  22872. [
  22873. {
  22874. name: "Nano",
  22875. height: math.unit(100, "nm")
  22876. },
  22877. {
  22878. name: "Micro",
  22879. height: math.unit(2, "inches")
  22880. },
  22881. {
  22882. name: "Normal",
  22883. height: math.unit(5 + 10 / 12, "feet"),
  22884. default: true
  22885. },
  22886. {
  22887. name: "Macro",
  22888. height: math.unit(1000, "feet")
  22889. },
  22890. {
  22891. name: "Megamacro",
  22892. height: math.unit(10, "miles")
  22893. },
  22894. {
  22895. name: "Gigamacro",
  22896. height: math.unit(3000, "miles")
  22897. },
  22898. {
  22899. name: "Teramacro",
  22900. height: math.unit(500000, "miles")
  22901. },
  22902. {
  22903. name: "Teramacro+",
  22904. height: math.unit(30, "galaxies")
  22905. },
  22906. ]
  22907. ))
  22908. characterMakers.push(() => makeCharacter(
  22909. { name: "Deathy", species: ["wolf"], tags: ["anthro"] },
  22910. {
  22911. front: {
  22912. height: math.unit(6, "feet"),
  22913. weight: math.unit(150, "lb"),
  22914. name: "Front",
  22915. image: {
  22916. source: "./media/characters/deathy/front.svg",
  22917. extra: 1552 / 1463,
  22918. bottom: 0.025
  22919. }
  22920. },
  22921. side: {
  22922. height: math.unit(6, "feet"),
  22923. weight: math.unit(150, "lb"),
  22924. name: "Side",
  22925. image: {
  22926. source: "./media/characters/deathy/side.svg",
  22927. extra: 1604 / 1455,
  22928. bottom: 0.025
  22929. }
  22930. },
  22931. back: {
  22932. height: math.unit(6, "feet"),
  22933. weight: math.unit(150, "lb"),
  22934. name: "Back",
  22935. image: {
  22936. source: "./media/characters/deathy/back.svg",
  22937. extra: 1580 / 1463,
  22938. bottom: 0.005
  22939. }
  22940. },
  22941. },
  22942. [
  22943. {
  22944. name: "Micro",
  22945. height: math.unit(5, "millimeters")
  22946. },
  22947. {
  22948. name: "Normal",
  22949. height: math.unit(6 + 5 / 12, "feet"),
  22950. default: true
  22951. },
  22952. ]
  22953. ))
  22954. characterMakers.push(() => makeCharacter(
  22955. { name: "Juniper", species: ["snake"], tags: ["naga", "goo"] },
  22956. {
  22957. front: {
  22958. height: math.unit(16, "feet"),
  22959. weight: math.unit(4000, "lb"),
  22960. name: "Front",
  22961. image: {
  22962. source: "./media/characters/juniper/front.svg",
  22963. bottom: 0.04
  22964. }
  22965. },
  22966. },
  22967. [
  22968. {
  22969. name: "Normal",
  22970. height: math.unit(16, "feet"),
  22971. default: true
  22972. },
  22973. ]
  22974. ))
  22975. characterMakers.push(() => makeCharacter(
  22976. { name: "Hipster", species: ["fox"], tags: ["anthro"] },
  22977. {
  22978. front: {
  22979. height: math.unit(6, "feet"),
  22980. weight: math.unit(150, "lb"),
  22981. name: "Front",
  22982. image: {
  22983. source: "./media/characters/hipster/front.svg",
  22984. extra: 1312 / 1209,
  22985. bottom: 0.025
  22986. }
  22987. },
  22988. back: {
  22989. height: math.unit(6, "feet"),
  22990. weight: math.unit(150, "lb"),
  22991. name: "Back",
  22992. image: {
  22993. source: "./media/characters/hipster/back.svg",
  22994. extra: 1281 / 1196,
  22995. bottom: 0.01
  22996. }
  22997. },
  22998. },
  22999. [
  23000. {
  23001. name: "Micro",
  23002. height: math.unit(1, "mm")
  23003. },
  23004. {
  23005. name: "Normal",
  23006. height: math.unit(4, "inches"),
  23007. default: true
  23008. },
  23009. {
  23010. name: "Macro",
  23011. height: math.unit(500, "feet")
  23012. },
  23013. {
  23014. name: "Megamacro",
  23015. height: math.unit(1000, "miles")
  23016. },
  23017. ]
  23018. ))
  23019. characterMakers.push(() => makeCharacter(
  23020. { name: "Tendirmuldr", species: ["cow"], tags: ["anthro"] },
  23021. {
  23022. front: {
  23023. height: math.unit(6, "feet"),
  23024. weight: math.unit(150, "lb"),
  23025. name: "Front",
  23026. image: {
  23027. source: "./media/characters/tendirmuldr/front.svg",
  23028. extra: 1878 / 1772,
  23029. bottom: 0.015
  23030. }
  23031. },
  23032. },
  23033. [
  23034. {
  23035. name: "Megamacro",
  23036. height: math.unit(1500, "miles"),
  23037. default: true
  23038. },
  23039. ]
  23040. ))
  23041. characterMakers.push(() => makeCharacter(
  23042. { name: "Mort", species: ["demon"], tags: ["feral"] },
  23043. {
  23044. front: {
  23045. height: math.unit(14, "feet"),
  23046. weight: math.unit(12000, "lb"),
  23047. name: "Front",
  23048. image: {
  23049. source: "./media/characters/mort/front.svg",
  23050. extra: 365 / 318,
  23051. bottom: 0.01
  23052. }
  23053. },
  23054. side: {
  23055. height: math.unit(14, "feet"),
  23056. weight: math.unit(12000, "lb"),
  23057. name: "Side",
  23058. image: {
  23059. source: "./media/characters/mort/side.svg",
  23060. extra: 365 / 318,
  23061. bottom: 0.052
  23062. },
  23063. default: true
  23064. },
  23065. back: {
  23066. height: math.unit(14, "feet"),
  23067. weight: math.unit(12000, "lb"),
  23068. name: "Back",
  23069. image: {
  23070. source: "./media/characters/mort/back.svg",
  23071. extra: 371 / 332,
  23072. bottom: 0.18
  23073. }
  23074. },
  23075. },
  23076. [
  23077. {
  23078. name: "Normal",
  23079. height: math.unit(14, "feet"),
  23080. default: true
  23081. },
  23082. ]
  23083. ))
  23084. characterMakers.push(() => makeCharacter(
  23085. { name: "Lycoa", species: ["sergal"], tags: ["anthro", "goo"] },
  23086. {
  23087. front: {
  23088. height: math.unit(8, "feet"),
  23089. weight: math.unit(1, "ton"),
  23090. name: "Front",
  23091. image: {
  23092. source: "./media/characters/lycoa/front.svg",
  23093. extra: 1836/1728,
  23094. bottom: 81/1917
  23095. }
  23096. },
  23097. back: {
  23098. height: math.unit(8, "feet"),
  23099. weight: math.unit(1, "ton"),
  23100. name: "Back",
  23101. image: {
  23102. source: "./media/characters/lycoa/back.svg",
  23103. extra: 1785/1720,
  23104. bottom: 91/1876
  23105. }
  23106. },
  23107. head: {
  23108. height: math.unit(1.6243, "feet"),
  23109. name: "Head",
  23110. image: {
  23111. source: "./media/characters/lycoa/head.svg",
  23112. extra: 1011/782,
  23113. bottom: 0/1011
  23114. }
  23115. },
  23116. tailmaw: {
  23117. height: math.unit(1.9, "feet"),
  23118. name: "Tailmaw",
  23119. image: {
  23120. source: "./media/characters/lycoa/tailmaw.svg"
  23121. }
  23122. },
  23123. tentacles: {
  23124. height: math.unit(2.1, "feet"),
  23125. name: "Tentacles",
  23126. image: {
  23127. source: "./media/characters/lycoa/tentacles.svg"
  23128. }
  23129. },
  23130. dick: {
  23131. height: math.unit(1.73, "feet"),
  23132. name: "Dick",
  23133. image: {
  23134. source: "./media/characters/lycoa/dick.svg"
  23135. }
  23136. },
  23137. },
  23138. [
  23139. {
  23140. name: "Normal",
  23141. height: math.unit(8, "feet"),
  23142. default: true
  23143. },
  23144. {
  23145. name: "Macro",
  23146. height: math.unit(30, "feet")
  23147. },
  23148. ]
  23149. ))
  23150. characterMakers.push(() => makeCharacter(
  23151. { name: "Naldara", species: ["jackalope"], tags: ["anthro", "naga"] },
  23152. {
  23153. front: {
  23154. height: math.unit(4 + 2 / 12, "feet"),
  23155. weight: math.unit(70, "lb"),
  23156. name: "Front",
  23157. image: {
  23158. source: "./media/characters/naldara/front.svg",
  23159. extra: 1664/1387,
  23160. bottom: 81/1745
  23161. },
  23162. form: "anthro",
  23163. default: true
  23164. },
  23165. naga: {
  23166. height: math.unit(20, "feet"),
  23167. weight: math.unit(15000, "kg"),
  23168. name: "Front",
  23169. image: {
  23170. source: "./media/characters/naldara/naga.svg",
  23171. extra: 1590/1396,
  23172. bottom: 285/1875
  23173. },
  23174. form: "naga",
  23175. default: true
  23176. },
  23177. },
  23178. [
  23179. {
  23180. name: "Normal",
  23181. height: math.unit(4 + 2 / 12, "feet"),
  23182. form: "anthro",
  23183. default: true
  23184. },
  23185. {
  23186. name: "Normal",
  23187. height: math.unit(20, "feet"),
  23188. form: "naga",
  23189. default: true
  23190. },
  23191. ],
  23192. {
  23193. "anthro": {
  23194. name: "Anthro",
  23195. default: true
  23196. },
  23197. "naga": {
  23198. name: "Naga"
  23199. }
  23200. }
  23201. ))
  23202. characterMakers.push(() => makeCharacter(
  23203. { name: "Briar", species: ["hyena"], tags: ["anthro"] },
  23204. {
  23205. front: {
  23206. height: math.unit(13 + 7 / 12, "feet"),
  23207. weight: math.unit(1500, "lb"),
  23208. name: "Front",
  23209. image: {
  23210. source: "./media/characters/briar/front.svg",
  23211. extra: 1223/1157,
  23212. bottom: 123/1346
  23213. }
  23214. },
  23215. },
  23216. [
  23217. {
  23218. name: "Normal",
  23219. height: math.unit(13 + 7 / 12, "feet"),
  23220. default: true
  23221. },
  23222. ]
  23223. ))
  23224. characterMakers.push(() => makeCharacter(
  23225. { name: "Vanguard", species: ["otter", "alligator"], tags: ["anthro"] },
  23226. {
  23227. side: {
  23228. height: math.unit(16, "feet"),
  23229. weight: math.unit(500, "lb"),
  23230. name: "Side",
  23231. image: {
  23232. source: "./media/characters/vanguard/side.svg",
  23233. extra: 1022/914,
  23234. bottom: 30/1052
  23235. }
  23236. },
  23237. sideAlt: {
  23238. height: math.unit(10, "feet"),
  23239. weight: math.unit(500, "lb"),
  23240. name: "Side (Alt)",
  23241. image: {
  23242. source: "./media/characters/vanguard/side-alt.svg",
  23243. extra: 502 / 425,
  23244. bottom: 0.087
  23245. }
  23246. },
  23247. },
  23248. [
  23249. {
  23250. name: "Normal",
  23251. height: math.unit(17.71, "feet"),
  23252. default: true
  23253. },
  23254. ]
  23255. ))
  23256. characterMakers.push(() => makeCharacter(
  23257. { name: "Artemis", species: ["renamon", "construct"], tags: ["anthro"] },
  23258. {
  23259. front: {
  23260. height: math.unit(7.5, "feet"),
  23261. weight: math.unit(2, "lb"),
  23262. name: "Front",
  23263. image: {
  23264. source: "./media/characters/artemis/work-safe-front.svg",
  23265. extra: 1192 / 1075,
  23266. bottom: 0.07
  23267. },
  23268. form: "work-safe",
  23269. default: true
  23270. },
  23271. frontNsfw: {
  23272. height: math.unit(7.5, "feet"),
  23273. weight: math.unit(2, "lb"),
  23274. name: "Front",
  23275. image: {
  23276. source: "./media/characters/artemis/calibrating-front.svg",
  23277. extra: 1192 / 1075,
  23278. bottom: 0.07
  23279. },
  23280. form: "calibrating",
  23281. default: true
  23282. },
  23283. frontNsfwer: {
  23284. height: math.unit(7.5, "feet"),
  23285. weight: math.unit(2, "lb"),
  23286. name: "Front",
  23287. image: {
  23288. source: "./media/characters/artemis/oversize-load-front.svg",
  23289. extra: 1192 / 1075,
  23290. bottom: 0.07
  23291. },
  23292. form: "oversize-load",
  23293. default: true
  23294. },
  23295. side: {
  23296. height: math.unit(7.5, "feet"),
  23297. weight: math.unit(2, "lb"),
  23298. name: "Side",
  23299. image: {
  23300. source: "./media/characters/artemis/work-safe-side.svg",
  23301. extra: 1192 / 1075,
  23302. bottom: 0.07
  23303. },
  23304. form: "work-safe"
  23305. },
  23306. sideNsfw: {
  23307. height: math.unit(7.5, "feet"),
  23308. weight: math.unit(2, "lb"),
  23309. name: "Side",
  23310. image: {
  23311. source: "./media/characters/artemis/calibrating-side.svg",
  23312. extra: 1192 / 1075,
  23313. bottom: 0.07
  23314. },
  23315. form: "calibrating"
  23316. },
  23317. sideNsfwer: {
  23318. height: math.unit(7.5, "feet"),
  23319. weight: math.unit(2, "lb"),
  23320. name: "Side",
  23321. image: {
  23322. source: "./media/characters/artemis/oversize-load-side.svg",
  23323. extra: 1192 / 1075,
  23324. bottom: 0.07
  23325. },
  23326. form: "oversize-load"
  23327. },
  23328. maw: {
  23329. height: math.unit(1.1, "feet"),
  23330. name: "Maw",
  23331. image: {
  23332. source: "./media/characters/artemis/maw.svg"
  23333. },
  23334. form: "work-safe"
  23335. },
  23336. stomach: {
  23337. height: math.unit(0.95, "feet"),
  23338. name: "Stomach",
  23339. image: {
  23340. source: "./media/characters/artemis/stomach.svg"
  23341. },
  23342. form: "work-safe"
  23343. },
  23344. dickCanine: {
  23345. height: math.unit(1, "feet"),
  23346. name: "Dick (Canine)",
  23347. image: {
  23348. source: "./media/characters/artemis/dick-canine.svg"
  23349. },
  23350. form: "calibrating"
  23351. },
  23352. dickEquine: {
  23353. height: math.unit(0.85, "feet"),
  23354. name: "Dick (Equine)",
  23355. image: {
  23356. source: "./media/characters/artemis/dick-equine.svg"
  23357. },
  23358. form: "calibrating"
  23359. },
  23360. dickExotic: {
  23361. height: math.unit(0.85, "feet"),
  23362. name: "Dick (Exotic)",
  23363. image: {
  23364. source: "./media/characters/artemis/dick-exotic.svg"
  23365. },
  23366. form: "calibrating"
  23367. },
  23368. dickCanineBigger: {
  23369. height: math.unit(1 * 1.33, "feet"),
  23370. name: "Dick (Canine)",
  23371. image: {
  23372. source: "./media/characters/artemis/dick-canine.svg"
  23373. },
  23374. form: "oversize-load"
  23375. },
  23376. dickEquineBigger: {
  23377. height: math.unit(0.85 * 1.33, "feet"),
  23378. name: "Dick (Equine)",
  23379. image: {
  23380. source: "./media/characters/artemis/dick-equine.svg"
  23381. },
  23382. form: "oversize-load"
  23383. },
  23384. dickExoticBigger: {
  23385. height: math.unit(0.85 * 1.33, "feet"),
  23386. name: "Dick (Exotic)",
  23387. image: {
  23388. source: "./media/characters/artemis/dick-exotic.svg"
  23389. },
  23390. form: "oversize-load"
  23391. },
  23392. },
  23393. [
  23394. {
  23395. name: "Normal",
  23396. height: math.unit(7.5, "feet"),
  23397. form: "work-safe",
  23398. default: true
  23399. },
  23400. {
  23401. name: "Normal",
  23402. height: math.unit(7.5, "feet"),
  23403. form: "calibrating",
  23404. default: true
  23405. },
  23406. {
  23407. name: "Normal",
  23408. height: math.unit(7.5, "feet"),
  23409. form: "oversize-load",
  23410. default: true
  23411. },
  23412. {
  23413. name: "Enlarged",
  23414. height: math.unit(12, "feet"),
  23415. form: "work-safe",
  23416. },
  23417. {
  23418. name: "Enlarged",
  23419. height: math.unit(12, "feet"),
  23420. form: "calibrating",
  23421. },
  23422. {
  23423. name: "Enlarged",
  23424. height: math.unit(12, "feet"),
  23425. form: "oversize-load",
  23426. },
  23427. ],
  23428. {
  23429. "work-safe": {
  23430. name: "Work-Safe",
  23431. default: true
  23432. },
  23433. "calibrating": {
  23434. name: "Calibrating"
  23435. },
  23436. "oversize-load": {
  23437. name: "Oversize Load"
  23438. }
  23439. }
  23440. ))
  23441. characterMakers.push(() => makeCharacter(
  23442. { name: "Kira", species: ["fluudrani"], tags: ["anthro"] },
  23443. {
  23444. front: {
  23445. height: math.unit(5 + 3 / 12, "feet"),
  23446. weight: math.unit(160, "lb"),
  23447. name: "Front",
  23448. image: {
  23449. source: "./media/characters/kira/front.svg",
  23450. extra: 906 / 786,
  23451. bottom: 0.01
  23452. }
  23453. },
  23454. back: {
  23455. height: math.unit(5 + 3 / 12, "feet"),
  23456. weight: math.unit(160, "lb"),
  23457. name: "Back",
  23458. image: {
  23459. source: "./media/characters/kira/back.svg",
  23460. extra: 882 / 757,
  23461. bottom: 0.005
  23462. }
  23463. },
  23464. frontDressed: {
  23465. height: math.unit(5 + 3 / 12, "feet"),
  23466. weight: math.unit(160, "lb"),
  23467. name: "Front (Dressed)",
  23468. image: {
  23469. source: "./media/characters/kira/front-dressed.svg",
  23470. extra: 906 / 786,
  23471. bottom: 0.01
  23472. }
  23473. },
  23474. beans: {
  23475. height: math.unit(0.92, "feet"),
  23476. name: "Beans",
  23477. image: {
  23478. source: "./media/characters/kira/beans.svg"
  23479. }
  23480. },
  23481. },
  23482. [
  23483. {
  23484. name: "Normal",
  23485. height: math.unit(5 + 3 / 12, "feet"),
  23486. default: true
  23487. },
  23488. ]
  23489. ))
  23490. characterMakers.push(() => makeCharacter(
  23491. { name: "Scramble", species: ["surkanu"], tags: ["anthro"] },
  23492. {
  23493. front: {
  23494. height: math.unit(5 + 4 / 12, "feet"),
  23495. weight: math.unit(145, "lb"),
  23496. name: "Front",
  23497. image: {
  23498. source: "./media/characters/scramble/front.svg",
  23499. extra: 763 / 727,
  23500. bottom: 0.05
  23501. }
  23502. },
  23503. back: {
  23504. height: math.unit(5 + 4 / 12, "feet"),
  23505. weight: math.unit(145, "lb"),
  23506. name: "Back",
  23507. image: {
  23508. source: "./media/characters/scramble/back.svg",
  23509. extra: 826 / 737,
  23510. bottom: 0.002
  23511. }
  23512. },
  23513. },
  23514. [
  23515. {
  23516. name: "Normal",
  23517. height: math.unit(5 + 4 / 12, "feet"),
  23518. default: true
  23519. },
  23520. ]
  23521. ))
  23522. characterMakers.push(() => makeCharacter(
  23523. { name: "Biscuit", species: ["surkanu"], tags: ["anthro"] },
  23524. {
  23525. side: {
  23526. height: math.unit(6 + 2 / 12, "feet"),
  23527. weight: math.unit(190, "lb"),
  23528. name: "Side",
  23529. image: {
  23530. source: "./media/characters/biscuit/side.svg",
  23531. extra: 858 / 791,
  23532. bottom: 0.044
  23533. }
  23534. },
  23535. },
  23536. [
  23537. {
  23538. name: "Normal",
  23539. height: math.unit(6 + 2 / 12, "feet"),
  23540. default: true
  23541. },
  23542. ]
  23543. ))
  23544. characterMakers.push(() => makeCharacter(
  23545. { name: "Poffin", species: ["kiiasi"], tags: ["anthro"] },
  23546. {
  23547. front: {
  23548. height: math.unit(5 + 2 / 12, "feet"),
  23549. weight: math.unit(120, "lb"),
  23550. name: "Front",
  23551. image: {
  23552. source: "./media/characters/poffin/front.svg",
  23553. extra: 786 / 680,
  23554. bottom: 0.005
  23555. }
  23556. },
  23557. },
  23558. [
  23559. {
  23560. name: "Normal",
  23561. height: math.unit(5 + 2 / 12, "feet"),
  23562. default: true
  23563. },
  23564. ]
  23565. ))
  23566. characterMakers.push(() => makeCharacter(
  23567. { name: "Dhari", species: ["werewolf", "fennec-fox"], tags: ["anthro"] },
  23568. {
  23569. front: {
  23570. height: math.unit(6 + 3 / 12, "feet"),
  23571. weight: math.unit(519, "lb"),
  23572. name: "Front",
  23573. image: {
  23574. source: "./media/characters/dhari/front.svg",
  23575. extra: 1048 / 946,
  23576. bottom: 0.015
  23577. }
  23578. },
  23579. back: {
  23580. height: math.unit(6 + 3 / 12, "feet"),
  23581. weight: math.unit(519, "lb"),
  23582. name: "Back",
  23583. image: {
  23584. source: "./media/characters/dhari/back.svg",
  23585. extra: 1048 / 931,
  23586. bottom: 0.005
  23587. }
  23588. },
  23589. frontDressed: {
  23590. height: math.unit(6 + 3 / 12, "feet"),
  23591. weight: math.unit(519, "lb"),
  23592. name: "Front (Dressed)",
  23593. image: {
  23594. source: "./media/characters/dhari/front-dressed.svg",
  23595. extra: 1713 / 1546,
  23596. bottom: 0.02
  23597. }
  23598. },
  23599. backDressed: {
  23600. height: math.unit(6 + 3 / 12, "feet"),
  23601. weight: math.unit(519, "lb"),
  23602. name: "Back (Dressed)",
  23603. image: {
  23604. source: "./media/characters/dhari/back-dressed.svg",
  23605. extra: 1699 / 1537,
  23606. bottom: 0.01
  23607. }
  23608. },
  23609. maw: {
  23610. height: math.unit(0.95, "feet"),
  23611. name: "Maw",
  23612. image: {
  23613. source: "./media/characters/dhari/maw.svg"
  23614. }
  23615. },
  23616. wereFront: {
  23617. height: math.unit(12 + 8 / 12, "feet"),
  23618. weight: math.unit(4000, "lb"),
  23619. name: "Front (Were)",
  23620. image: {
  23621. source: "./media/characters/dhari/were-front.svg",
  23622. extra: 1065 / 969,
  23623. bottom: 0.015
  23624. }
  23625. },
  23626. wereBack: {
  23627. height: math.unit(12 + 8 / 12, "feet"),
  23628. weight: math.unit(4000, "lb"),
  23629. name: "Back (Were)",
  23630. image: {
  23631. source: "./media/characters/dhari/were-back.svg",
  23632. extra: 1065 / 969,
  23633. bottom: 0.012
  23634. }
  23635. },
  23636. wereMaw: {
  23637. height: math.unit(0.625, "meters"),
  23638. name: "Maw (Were)",
  23639. image: {
  23640. source: "./media/characters/dhari/were-maw.svg"
  23641. }
  23642. },
  23643. },
  23644. [
  23645. {
  23646. name: "Normal",
  23647. height: math.unit(6 + 3 / 12, "feet"),
  23648. default: true
  23649. },
  23650. ]
  23651. ))
  23652. characterMakers.push(() => makeCharacter(
  23653. { name: "Rena Dyne", species: ["sabertooth-tiger"], tags: ["anthro"] },
  23654. {
  23655. anthro: {
  23656. height: math.unit(5 + 7 / 12, "feet"),
  23657. weight: math.unit(175, "lb"),
  23658. name: "Anthro",
  23659. image: {
  23660. source: "./media/characters/rena-dyne/anthro.svg",
  23661. extra: 1849 / 1785,
  23662. bottom: 0.005
  23663. }
  23664. },
  23665. taur: {
  23666. height: math.unit(15 + 6 / 12, "feet"),
  23667. weight: math.unit(8000, "lb"),
  23668. name: "Taur",
  23669. image: {
  23670. source: "./media/characters/rena-dyne/taur.svg",
  23671. extra: 2315 / 2234,
  23672. bottom: 0.033
  23673. }
  23674. },
  23675. },
  23676. [
  23677. {
  23678. name: "Normal",
  23679. height: math.unit(5 + 7 / 12, "feet"),
  23680. default: true
  23681. },
  23682. ]
  23683. ))
  23684. characterMakers.push(() => makeCharacter(
  23685. { name: "Weremeep", species: ["monster"], tags: ["anthro"] },
  23686. {
  23687. front: {
  23688. height: math.unit(8, "feet"),
  23689. weight: math.unit(600, "lb"),
  23690. name: "Front",
  23691. image: {
  23692. source: "./media/characters/weremeep/front.svg",
  23693. extra: 970/849,
  23694. bottom: 7/977
  23695. }
  23696. },
  23697. },
  23698. [
  23699. {
  23700. name: "Normal",
  23701. height: math.unit(8, "feet"),
  23702. default: true
  23703. },
  23704. {
  23705. name: "Lorg",
  23706. height: math.unit(12, "feet")
  23707. },
  23708. {
  23709. name: "Oh Lawd She Comin'",
  23710. height: math.unit(20, "feet")
  23711. },
  23712. ]
  23713. ))
  23714. characterMakers.push(() => makeCharacter(
  23715. { name: "Reza", species: ["cat", "dragon"], tags: ["anthro", "feral"] },
  23716. {
  23717. front: {
  23718. height: math.unit(4, "feet"),
  23719. weight: math.unit(90, "lb"),
  23720. name: "Front",
  23721. image: {
  23722. source: "./media/characters/reza/front.svg",
  23723. extra: 1183 / 1111,
  23724. bottom: 0.017
  23725. }
  23726. },
  23727. back: {
  23728. height: math.unit(4, "feet"),
  23729. weight: math.unit(90, "lb"),
  23730. name: "Back",
  23731. image: {
  23732. source: "./media/characters/reza/back.svg",
  23733. extra: 1183 / 1111,
  23734. bottom: 0.01
  23735. }
  23736. },
  23737. drake: {
  23738. height: math.unit(30, "feet"),
  23739. weight: math.unit(246960, "lb"),
  23740. name: "Drake",
  23741. image: {
  23742. source: "./media/characters/reza/drake.svg",
  23743. extra: 2350 / 2024,
  23744. bottom: 60.7 / 2403
  23745. }
  23746. },
  23747. },
  23748. [
  23749. {
  23750. name: "Normal",
  23751. height: math.unit(4, "feet"),
  23752. default: true
  23753. },
  23754. ]
  23755. ))
  23756. characterMakers.push(() => makeCharacter(
  23757. { name: "Athea", species: ["leopard"], tags: ["taur"] },
  23758. {
  23759. side: {
  23760. height: math.unit(15, "feet"),
  23761. weight: math.unit(14, "tons"),
  23762. name: "Side",
  23763. image: {
  23764. source: "./media/characters/athea/side.svg",
  23765. extra: 960 / 540,
  23766. bottom: 0.003
  23767. }
  23768. },
  23769. sitting: {
  23770. height: math.unit(6 * 2.85, "feet"),
  23771. weight: math.unit(14, "tons"),
  23772. name: "Sitting",
  23773. image: {
  23774. source: "./media/characters/athea/sitting.svg",
  23775. extra: 621 / 581,
  23776. bottom: 0.075
  23777. }
  23778. },
  23779. maw: {
  23780. height: math.unit(7.59498031496063, "feet"),
  23781. name: "Maw",
  23782. image: {
  23783. source: "./media/characters/athea/maw.svg"
  23784. }
  23785. },
  23786. },
  23787. [
  23788. {
  23789. name: "Lap Cat",
  23790. height: math.unit(2.5, "feet")
  23791. },
  23792. {
  23793. name: "Minimacro",
  23794. height: math.unit(15, "feet"),
  23795. default: true
  23796. },
  23797. {
  23798. name: "Macro",
  23799. height: math.unit(120, "feet")
  23800. },
  23801. {
  23802. name: "Macro+",
  23803. height: math.unit(640, "feet")
  23804. },
  23805. {
  23806. name: "Colossus",
  23807. height: math.unit(2.2, "miles")
  23808. },
  23809. ]
  23810. ))
  23811. characterMakers.push(() => makeCharacter(
  23812. { name: "Seroko", species: ["je-stoff-drachen"], tags: ["anthro"] },
  23813. {
  23814. front: {
  23815. height: math.unit(8 + 8 / 12, "feet"),
  23816. weight: math.unit(130, "kg"),
  23817. name: "Front",
  23818. image: {
  23819. source: "./media/characters/seroko/front.svg",
  23820. extra: 1385 / 1280,
  23821. bottom: 0.025
  23822. }
  23823. },
  23824. back: {
  23825. height: math.unit(8 + 8 / 12, "feet"),
  23826. weight: math.unit(130, "kg"),
  23827. name: "Back",
  23828. image: {
  23829. source: "./media/characters/seroko/back.svg",
  23830. extra: 1369 / 1238,
  23831. bottom: 0.018
  23832. }
  23833. },
  23834. frontDressed: {
  23835. height: math.unit(8 + 8 / 12, "feet"),
  23836. weight: math.unit(130, "kg"),
  23837. name: "Front (Dressed)",
  23838. image: {
  23839. source: "./media/characters/seroko/front-dressed.svg",
  23840. extra: 1366 / 1275,
  23841. bottom: 0.03
  23842. }
  23843. },
  23844. },
  23845. [
  23846. {
  23847. name: "Normal",
  23848. height: math.unit(8 + 8 / 12, "feet"),
  23849. default: true
  23850. },
  23851. ]
  23852. ))
  23853. characterMakers.push(() => makeCharacter(
  23854. { name: "Quatzi", species: ["river-snaptail"], tags: ["anthro"] },
  23855. {
  23856. front: {
  23857. height: math.unit(5.5, "feet"),
  23858. weight: math.unit(160, "lb"),
  23859. name: "Front",
  23860. image: {
  23861. source: "./media/characters/quatzi/front.svg",
  23862. extra: 2346 / 2242,
  23863. bottom: 0.015
  23864. }
  23865. },
  23866. },
  23867. [
  23868. {
  23869. name: "Normal",
  23870. height: math.unit(5.5, "feet"),
  23871. default: true
  23872. },
  23873. {
  23874. name: "Big",
  23875. height: math.unit(7.7, "feet")
  23876. },
  23877. ]
  23878. ))
  23879. characterMakers.push(() => makeCharacter(
  23880. { name: "Sen", species: ["red-panda"], tags: ["anthro"] },
  23881. {
  23882. front: {
  23883. height: math.unit(5 + 11 / 12, "feet"),
  23884. weight: math.unit(180, "lb"),
  23885. name: "Front",
  23886. image: {
  23887. source: "./media/characters/sen/front.svg",
  23888. extra: 1321 / 1254,
  23889. bottom: 0.015
  23890. }
  23891. },
  23892. side: {
  23893. height: math.unit(5 + 11 / 12, "feet"),
  23894. weight: math.unit(180, "lb"),
  23895. name: "Side",
  23896. image: {
  23897. source: "./media/characters/sen/side.svg",
  23898. extra: 1321 / 1254,
  23899. bottom: 0.007
  23900. }
  23901. },
  23902. back: {
  23903. height: math.unit(5 + 11 / 12, "feet"),
  23904. weight: math.unit(180, "lb"),
  23905. name: "Back",
  23906. image: {
  23907. source: "./media/characters/sen/back.svg",
  23908. extra: 1321 / 1254
  23909. }
  23910. },
  23911. },
  23912. [
  23913. {
  23914. name: "Normal",
  23915. height: math.unit(5 + 11 / 12, "feet"),
  23916. default: true
  23917. },
  23918. ]
  23919. ))
  23920. characterMakers.push(() => makeCharacter(
  23921. { name: "Fruity", species: ["sylveon"], tags: ["anthro"] },
  23922. {
  23923. front: {
  23924. height: math.unit(166.6, "cm"),
  23925. weight: math.unit(66.6, "kg"),
  23926. name: "Front",
  23927. image: {
  23928. source: "./media/characters/fruity/front.svg",
  23929. extra: 1510 / 1386,
  23930. bottom: 0.04
  23931. }
  23932. },
  23933. back: {
  23934. height: math.unit(166.6, "cm"),
  23935. weight: math.unit(66.6, "lb"),
  23936. name: "Back",
  23937. image: {
  23938. source: "./media/characters/fruity/back.svg",
  23939. extra: 1563 / 1435,
  23940. bottom: 0.005
  23941. }
  23942. },
  23943. },
  23944. [
  23945. {
  23946. name: "Normal",
  23947. height: math.unit(166.6, "cm"),
  23948. default: true
  23949. },
  23950. {
  23951. name: "Demonic",
  23952. height: math.unit(166.6, "feet")
  23953. },
  23954. ]
  23955. ))
  23956. characterMakers.push(() => makeCharacter(
  23957. { name: "Zost", species: ["monster"], tags: ["anthro"] },
  23958. {
  23959. side: {
  23960. height: math.unit(10, "feet"),
  23961. weight: math.unit(500, "lb"),
  23962. name: "Side",
  23963. image: {
  23964. source: "./media/characters/zost/side.svg",
  23965. extra: 2870/2533,
  23966. bottom: 252/3122
  23967. }
  23968. },
  23969. mawFront: {
  23970. height: math.unit(1.08, "meters"),
  23971. name: "Maw (Front)",
  23972. image: {
  23973. source: "./media/characters/zost/maw-front.svg"
  23974. }
  23975. },
  23976. mawSide: {
  23977. height: math.unit(2.66, "feet"),
  23978. name: "Maw (Side)",
  23979. image: {
  23980. source: "./media/characters/zost/maw-side.svg"
  23981. }
  23982. },
  23983. wingspan: {
  23984. height: math.unit(7.4, "feet"),
  23985. name: "Wingspan",
  23986. image: {
  23987. source: "./media/characters/zost/wingspan.svg"
  23988. }
  23989. },
  23990. },
  23991. [
  23992. {
  23993. name: "Normal",
  23994. height: math.unit(10, "feet"),
  23995. default: true
  23996. },
  23997. ]
  23998. ))
  23999. characterMakers.push(() => makeCharacter(
  24000. { name: "Luci", species: ["hellhound"], tags: ["anthro"] },
  24001. {
  24002. front: {
  24003. height: math.unit(5 + 4 / 12, "feet"),
  24004. weight: math.unit(120, "lb"),
  24005. name: "Front",
  24006. image: {
  24007. source: "./media/characters/luci/front.svg",
  24008. extra: 1985 / 1884,
  24009. bottom: 0.04
  24010. }
  24011. },
  24012. back: {
  24013. height: math.unit(5 + 4 / 12, "feet"),
  24014. weight: math.unit(120, "lb"),
  24015. name: "Back",
  24016. image: {
  24017. source: "./media/characters/luci/back.svg",
  24018. extra: 1892 / 1791,
  24019. bottom: 0.002
  24020. }
  24021. },
  24022. },
  24023. [
  24024. {
  24025. name: "Normal",
  24026. height: math.unit(5 + 4 / 12, "feet"),
  24027. default: true
  24028. },
  24029. ]
  24030. ))
  24031. characterMakers.push(() => makeCharacter(
  24032. { name: "2th", species: ["monster"], tags: ["anthro"] },
  24033. {
  24034. front: {
  24035. height: math.unit(1500, "feet"),
  24036. weight: math.unit(3.8e6, "tons"),
  24037. name: "Front",
  24038. image: {
  24039. source: "./media/characters/2th/front.svg",
  24040. extra: 3489 / 3350,
  24041. bottom: 0.1
  24042. }
  24043. },
  24044. foot: {
  24045. height: math.unit(461, "feet"),
  24046. name: "Foot",
  24047. image: {
  24048. source: "./media/characters/2th/foot.svg"
  24049. }
  24050. },
  24051. },
  24052. [
  24053. {
  24054. name: "\"Micro\"",
  24055. height: math.unit(15 + 7 / 12, "feet")
  24056. },
  24057. {
  24058. name: "Normal",
  24059. height: math.unit(1500, "feet"),
  24060. default: true
  24061. },
  24062. {
  24063. name: "Macro",
  24064. height: math.unit(5000, "feet")
  24065. },
  24066. {
  24067. name: "Megamacro",
  24068. height: math.unit(15, "miles")
  24069. },
  24070. {
  24071. name: "Gigamacro",
  24072. height: math.unit(4000, "miles")
  24073. },
  24074. {
  24075. name: "Galactic",
  24076. height: math.unit(50, "AU")
  24077. },
  24078. ]
  24079. ))
  24080. characterMakers.push(() => makeCharacter(
  24081. { name: "Amethyst", species: ["snow-leopard"], tags: ["anthro"] },
  24082. {
  24083. front: {
  24084. height: math.unit(5 + 6 / 12, "feet"),
  24085. weight: math.unit(220, "lb"),
  24086. name: "Front",
  24087. image: {
  24088. source: "./media/characters/amethyst/front.svg",
  24089. extra: 2078 / 2040,
  24090. bottom: 0.045
  24091. }
  24092. },
  24093. back: {
  24094. height: math.unit(5 + 6 / 12, "feet"),
  24095. weight: math.unit(220, "lb"),
  24096. name: "Back",
  24097. image: {
  24098. source: "./media/characters/amethyst/back.svg",
  24099. extra: 2021 / 1989,
  24100. bottom: 0.02
  24101. }
  24102. },
  24103. },
  24104. [
  24105. {
  24106. name: "Normal",
  24107. height: math.unit(5 + 6 / 12, "feet"),
  24108. default: true
  24109. },
  24110. ]
  24111. ))
  24112. characterMakers.push(() => makeCharacter(
  24113. { name: "Yumi Akiyama", species: ["border-collie"], tags: ["anthro"] },
  24114. {
  24115. front: {
  24116. height: math.unit(4 + 11 / 12, "feet"),
  24117. weight: math.unit(120, "lb"),
  24118. name: "Front",
  24119. image: {
  24120. source: "./media/characters/yumi-akiyama/front.svg",
  24121. extra: 2638/2432,
  24122. bottom: 70/2708
  24123. }
  24124. },
  24125. back: {
  24126. height: math.unit(4 + 11 / 12, "feet"),
  24127. weight: math.unit(120, "lb"),
  24128. name: "Back",
  24129. image: {
  24130. source: "./media/characters/yumi-akiyama/back.svg",
  24131. extra: 2502/2397,
  24132. bottom: 80/2582
  24133. }
  24134. },
  24135. casual: {
  24136. height: math.unit(4 + 11 / 12, "feet"),
  24137. weight: math.unit(120, "lb"),
  24138. name: "Casual",
  24139. image: {
  24140. source: "./media/characters/yumi-akiyama/casual.svg",
  24141. extra: 958/887,
  24142. bottom: 41/999
  24143. }
  24144. },
  24145. jammies: {
  24146. height: math.unit(4 + 11 / 12, "feet"),
  24147. weight: math.unit(120, "lb"),
  24148. name: "Jammies",
  24149. image: {
  24150. source: "./media/characters/yumi-akiyama/jammies.svg",
  24151. extra: 958/894,
  24152. bottom: 37/995
  24153. }
  24154. },
  24155. warmWeather: {
  24156. height: math.unit(4 + 11 / 12, "feet"),
  24157. weight: math.unit(120, "lb"),
  24158. name: "Warm Weather",
  24159. image: {
  24160. source: "./media/characters/yumi-akiyama/warm-weather.svg",
  24161. extra: 929/865,
  24162. bottom: 76/1005
  24163. }
  24164. },
  24165. mouth: {
  24166. height: math.unit(0.35, "feet"),
  24167. name: "Mouth",
  24168. image: {
  24169. source: "./media/characters/yumi-akiyama/mouth.svg"
  24170. }
  24171. },
  24172. paws: {
  24173. height: math.unit(1.05, "feet"),
  24174. name: "Paws",
  24175. image: {
  24176. source: "./media/characters/yumi-akiyama/paws.svg"
  24177. }
  24178. },
  24179. cockRing: {
  24180. height: math.unit(0.225, "feet"),
  24181. name: "Cock Ring",
  24182. image: {
  24183. source: "./media/characters/yumi-akiyama/cock-ring.svg"
  24184. }
  24185. },
  24186. },
  24187. [
  24188. {
  24189. name: "Galactic",
  24190. height: math.unit(50, "galaxies"),
  24191. default: true
  24192. },
  24193. {
  24194. name: "Universal",
  24195. height: math.unit(100, "universes")
  24196. },
  24197. ]
  24198. ))
  24199. characterMakers.push(() => makeCharacter(
  24200. { name: "Rifter Yrmori", species: ["vendeilen"], tags: ["anthro"] },
  24201. {
  24202. front: {
  24203. height: math.unit(8, "feet"),
  24204. weight: math.unit(500, "lb"),
  24205. name: "Front",
  24206. image: {
  24207. source: "./media/characters/rifter-yrmori/front.svg",
  24208. extra: 1180 / 1125,
  24209. bottom: 0.02
  24210. }
  24211. },
  24212. back: {
  24213. height: math.unit(8, "feet"),
  24214. weight: math.unit(500, "lb"),
  24215. name: "Back",
  24216. image: {
  24217. source: "./media/characters/rifter-yrmori/back.svg",
  24218. extra: 1190 / 1145,
  24219. bottom: 0.001
  24220. }
  24221. },
  24222. wings: {
  24223. height: math.unit(7.75, "feet"),
  24224. weight: math.unit(500, "lb"),
  24225. name: "Wings",
  24226. image: {
  24227. source: "./media/characters/rifter-yrmori/wings.svg",
  24228. extra: 1357 / 1285
  24229. }
  24230. },
  24231. maw: {
  24232. height: math.unit(0.8, "feet"),
  24233. name: "Maw",
  24234. image: {
  24235. source: "./media/characters/rifter-yrmori/maw.svg"
  24236. }
  24237. },
  24238. mawfront: {
  24239. height: math.unit(1.45, "feet"),
  24240. name: "Maw (Front)",
  24241. image: {
  24242. source: "./media/characters/rifter-yrmori/maw-front.svg"
  24243. }
  24244. },
  24245. },
  24246. [
  24247. {
  24248. name: "Normal",
  24249. height: math.unit(8, "feet"),
  24250. default: true
  24251. },
  24252. {
  24253. name: "Macro",
  24254. height: math.unit(42, "meters")
  24255. },
  24256. ]
  24257. ))
  24258. characterMakers.push(() => makeCharacter(
  24259. { name: "Tahajin", species: ["werebeast", "monster", "star-warrior", "fluudrani", "fish", "snake", "construct", "demi"], tags: ["anthro", "naga"] },
  24260. {
  24261. were: {
  24262. height: math.unit(25 + 6 / 12, "feet"),
  24263. weight: math.unit(10000, "lb"),
  24264. name: "Were",
  24265. image: {
  24266. source: "./media/characters/tahajin/were.svg",
  24267. extra: 801 / 770,
  24268. bottom: 0.042
  24269. }
  24270. },
  24271. aquatic: {
  24272. height: math.unit(6 + 4 / 12, "feet"),
  24273. weight: math.unit(160, "lb"),
  24274. name: "Aquatic",
  24275. image: {
  24276. source: "./media/characters/tahajin/aquatic.svg",
  24277. extra: 572 / 542,
  24278. bottom: 0.04
  24279. }
  24280. },
  24281. chow: {
  24282. height: math.unit(8 + 11 / 12, "feet"),
  24283. weight: math.unit(450, "lb"),
  24284. name: "Chow",
  24285. image: {
  24286. source: "./media/characters/tahajin/chow.svg",
  24287. extra: 660 / 640,
  24288. bottom: 0.015
  24289. }
  24290. },
  24291. demiNaga: {
  24292. height: math.unit(6 + 8 / 12, "feet"),
  24293. weight: math.unit(300, "lb"),
  24294. name: "Demi Naga",
  24295. image: {
  24296. source: "./media/characters/tahajin/demi-naga.svg",
  24297. extra: 643 / 615,
  24298. bottom: 0.1
  24299. }
  24300. },
  24301. data: {
  24302. height: math.unit(5, "inches"),
  24303. weight: math.unit(0.1, "lb"),
  24304. name: "Data",
  24305. image: {
  24306. source: "./media/characters/tahajin/data.svg"
  24307. }
  24308. },
  24309. fluu: {
  24310. height: math.unit(5 + 7 / 12, "feet"),
  24311. weight: math.unit(140, "lb"),
  24312. name: "Fluu",
  24313. image: {
  24314. source: "./media/characters/tahajin/fluu.svg",
  24315. extra: 628 / 592,
  24316. bottom: 0.02
  24317. }
  24318. },
  24319. starWarrior: {
  24320. height: math.unit(4 + 5 / 12, "feet"),
  24321. weight: math.unit(50, "lb"),
  24322. name: "Star Warrior",
  24323. image: {
  24324. source: "./media/characters/tahajin/star-warrior.svg"
  24325. }
  24326. },
  24327. },
  24328. [
  24329. {
  24330. name: "Normal",
  24331. height: math.unit(25 + 6 / 12, "feet"),
  24332. default: true
  24333. },
  24334. ]
  24335. ))
  24336. characterMakers.push(() => makeCharacter(
  24337. { name: "Gabira", species: ["weasel", "monster"], tags: ["anthro"] },
  24338. {
  24339. front: {
  24340. height: math.unit(8, "feet"),
  24341. weight: math.unit(350, "lb"),
  24342. name: "Front",
  24343. image: {
  24344. source: "./media/characters/gabira/front.svg",
  24345. extra: 1261/1154,
  24346. bottom: 51/1312
  24347. }
  24348. },
  24349. back: {
  24350. height: math.unit(8, "feet"),
  24351. weight: math.unit(350, "lb"),
  24352. name: "Back",
  24353. image: {
  24354. source: "./media/characters/gabira/back.svg",
  24355. extra: 1265/1163,
  24356. bottom: 46/1311
  24357. }
  24358. },
  24359. head: {
  24360. height: math.unit(2.85, "feet"),
  24361. name: "Head",
  24362. image: {
  24363. source: "./media/characters/gabira/head.svg"
  24364. }
  24365. },
  24366. },
  24367. [
  24368. {
  24369. name: "Normal",
  24370. height: math.unit(8, "feet"),
  24371. default: true
  24372. },
  24373. ]
  24374. ))
  24375. characterMakers.push(() => makeCharacter(
  24376. { name: "Sasha Katraine", species: ["clouded-leopard"], tags: ["anthro"] },
  24377. {
  24378. front: {
  24379. height: math.unit(5 + 3 / 12, "feet"),
  24380. weight: math.unit(137, "lb"),
  24381. name: "Front",
  24382. image: {
  24383. source: "./media/characters/sasha-katraine/front.svg",
  24384. extra: 1745/1694,
  24385. bottom: 37/1782
  24386. }
  24387. },
  24388. back: {
  24389. height: math.unit(5 + 3 / 12, "feet"),
  24390. weight: math.unit(137, "lb"),
  24391. name: "Back",
  24392. image: {
  24393. source: "./media/characters/sasha-katraine/back.svg",
  24394. extra: 1776/1699,
  24395. bottom: 26/1802
  24396. }
  24397. },
  24398. },
  24399. [
  24400. {
  24401. name: "Micro",
  24402. height: math.unit(5, "inches")
  24403. },
  24404. {
  24405. name: "Normal",
  24406. height: math.unit(5 + 3 / 12, "feet"),
  24407. default: true
  24408. },
  24409. ]
  24410. ))
  24411. characterMakers.push(() => makeCharacter(
  24412. { name: "Der", species: ["gryphon"], tags: ["anthro"] },
  24413. {
  24414. side: {
  24415. height: math.unit(4, "inches"),
  24416. weight: math.unit(200, "grams"),
  24417. name: "Side",
  24418. image: {
  24419. source: "./media/characters/der/side.svg",
  24420. extra: 719 / 400,
  24421. bottom: 30.6 / 749.9187
  24422. }
  24423. },
  24424. },
  24425. [
  24426. {
  24427. name: "Micro",
  24428. height: math.unit(4, "inches"),
  24429. default: true
  24430. },
  24431. ]
  24432. ))
  24433. characterMakers.push(() => makeCharacter(
  24434. { name: "Fixerdragon", species: ["dragon"], tags: ["feral"] },
  24435. {
  24436. side: {
  24437. height: math.unit(30, "meters"),
  24438. weight: math.unit(700, "tonnes"),
  24439. name: "Side",
  24440. image: {
  24441. source: "./media/characters/fixerdragon/side.svg",
  24442. extra: (1293.0514 - 116.03) / 1106.86,
  24443. bottom: 116.03 / 1293.0514
  24444. }
  24445. },
  24446. },
  24447. [
  24448. {
  24449. name: "Planck",
  24450. height: math.unit(1.6e-35, "meters")
  24451. },
  24452. {
  24453. name: "Micro",
  24454. height: math.unit(0.4, "meters")
  24455. },
  24456. {
  24457. name: "Normal",
  24458. height: math.unit(30, "meters"),
  24459. default: true
  24460. },
  24461. {
  24462. name: "Megamacro",
  24463. height: math.unit(1.2, "megameters")
  24464. },
  24465. {
  24466. name: "Teramacro",
  24467. height: math.unit(130, "terameters")
  24468. },
  24469. {
  24470. name: "Yottamacro",
  24471. height: math.unit(6200, "yottameters")
  24472. },
  24473. ]
  24474. ));
  24475. characterMakers.push(() => makeCharacter(
  24476. { name: "Kite", species: ["sergal"], tags: ["anthro"] },
  24477. {
  24478. front: {
  24479. height: math.unit(8, "feet"),
  24480. weight: math.unit(250, "lb"),
  24481. name: "Front",
  24482. image: {
  24483. source: "./media/characters/kite/front.svg",
  24484. extra: 456/414,
  24485. bottom: 24/480
  24486. }
  24487. },
  24488. },
  24489. [
  24490. {
  24491. name: "Normal",
  24492. height: math.unit(8, "feet"),
  24493. default: true
  24494. },
  24495. {
  24496. name: "Macro",
  24497. height: math.unit(360, "feet")
  24498. },
  24499. {
  24500. name: "Megamacro",
  24501. height: math.unit(1500, "feet")
  24502. },
  24503. ]
  24504. ))
  24505. characterMakers.push(() => makeCharacter(
  24506. { name: "Poojawa Vynar", species: ["sabresune"], tags: ["anthro"] },
  24507. {
  24508. anthro_front: {
  24509. height: math.unit(5 + 11/12, "feet"),
  24510. weight: math.unit(170, "lb"),
  24511. name: "Front",
  24512. image: {
  24513. source: "./media/characters/poojawa-vynar/anthro-front.svg",
  24514. extra: 1735/1585,
  24515. bottom: 96/1831
  24516. },
  24517. form: "anthro",
  24518. default: true
  24519. },
  24520. anthro_back: {
  24521. height: math.unit(5 + 11/12, "feet"),
  24522. weight: math.unit(170, "lb"),
  24523. name: "Back",
  24524. image: {
  24525. source: "./media/characters/poojawa-vynar/anthro-back.svg",
  24526. extra: 1749/1607,
  24527. bottom: 28/1777
  24528. },
  24529. form: "anthro"
  24530. },
  24531. anthro_male: {
  24532. height: math.unit(5 + 11/12, "feet"),
  24533. weight: math.unit(170, "lb"),
  24534. name: "Male",
  24535. image: {
  24536. source: "./media/characters/poojawa-vynar/anthro-front-male.svg",
  24537. extra: 1855/1713,
  24538. bottom: 63/1918
  24539. },
  24540. form: "anthro"
  24541. },
  24542. taur_front: {
  24543. height: math.unit(5 + 7/12, "feet"),
  24544. weight: math.unit(170, "lb"),
  24545. name: "Front",
  24546. image: {
  24547. source: "./media/characters/poojawa-vynar/taur-front.svg",
  24548. extra: 1151/1059,
  24549. bottom: 356/1507
  24550. },
  24551. form: "taur",
  24552. default: true
  24553. },
  24554. anthro_frontDressed: {
  24555. height: math.unit(5 + 11/12, "feet"),
  24556. weight: math.unit(170, "lb"),
  24557. name: "Front (Dressed)",
  24558. image: {
  24559. source: "./media/characters/poojawa-vynar/anthro-front-dressed.svg",
  24560. extra: 1735/1585,
  24561. bottom: 96/1831
  24562. },
  24563. form: "anthro"
  24564. },
  24565. anthro_backDressed: {
  24566. height: math.unit(5 + 11/12, "feet"),
  24567. weight: math.unit(170, "lb"),
  24568. name: "Back (Dressed)",
  24569. image: {
  24570. source: "./media/characters/poojawa-vynar/anthro-back-dressed.svg",
  24571. extra: 1749/1607,
  24572. bottom: 28/1777
  24573. },
  24574. form: "anthro"
  24575. },
  24576. anthro_maleDressed: {
  24577. height: math.unit(5 + 11/12, "feet"),
  24578. weight: math.unit(170, "lb"),
  24579. name: "Male (Dressed)",
  24580. image: {
  24581. source: "./media/characters/poojawa-vynar/anthro-front-male-dressed.svg",
  24582. extra: 1855/1713,
  24583. bottom: 63/1918
  24584. },
  24585. form: "anthro"
  24586. },
  24587. taur_frontDressed: {
  24588. height: math.unit(5 + 7/12, "feet"),
  24589. weight: math.unit(170, "lb"),
  24590. name: "Front (Dressed)",
  24591. image: {
  24592. source: "./media/characters/poojawa-vynar/taur-front-dressed.svg",
  24593. extra: 1151/1059,
  24594. bottom: 356/1507
  24595. },
  24596. form: "taur"
  24597. },
  24598. maw: {
  24599. height: math.unit(1.46, "feet"),
  24600. name: "Maw",
  24601. image: {
  24602. source: "./media/characters/poojawa-vynar/maw.svg"
  24603. },
  24604. allForms: true
  24605. },
  24606. head: {
  24607. height: math.unit(2.34, "feet"),
  24608. name: "Head",
  24609. image: {
  24610. source: "./media/characters/poojawa-vynar/head.svg"
  24611. },
  24612. allForms: true
  24613. },
  24614. leftPaw: {
  24615. height: math.unit(1.72, "feet"),
  24616. name: "Left Paw",
  24617. image: {
  24618. source: "./media/characters/poojawa-vynar/paw-left.svg"
  24619. },
  24620. allForms: true
  24621. },
  24622. rightPaw: {
  24623. height: math.unit(1.61, "feet"),
  24624. name: "Right Paw",
  24625. image: {
  24626. source: "./media/characters/poojawa-vynar/paw-right.svg"
  24627. },
  24628. allForms: true
  24629. },
  24630. toering: {
  24631. height: math.unit(2.9, "inches"),
  24632. name: "Toering",
  24633. image: {
  24634. source: "./media/characters/poojawa-vynar/toering.svg"
  24635. },
  24636. allForms: true
  24637. },
  24638. shaft: {
  24639. height: math.unit(0.625, "feet"),
  24640. name: "Shaft",
  24641. image: {
  24642. source: "./media/characters/poojawa-vynar/shaft.svg"
  24643. },
  24644. allForms: true
  24645. },
  24646. spade: {
  24647. height: math.unit(0.42, "feet"),
  24648. name: "Spade",
  24649. image: {
  24650. source: "./media/characters/poojawa-vynar/spade.svg"
  24651. },
  24652. allForms: true
  24653. },
  24654. },
  24655. [
  24656. {
  24657. name: "Shortstack",
  24658. height: math.unit(4, "feet"),
  24659. form: "anthro"
  24660. },
  24661. {
  24662. name: "Normal",
  24663. height: math.unit(5 + 11 / 12, "feet"),
  24664. form: "anthro",
  24665. default: true
  24666. },
  24667. {
  24668. name: "Tauric",
  24669. height: math.unit(4, "meters"),
  24670. form: "taur",
  24671. default: true
  24672. },
  24673. ],
  24674. {
  24675. "anthro": {
  24676. name: "Anthro",
  24677. default: true
  24678. },
  24679. "taur": {
  24680. name: "Taur",
  24681. },
  24682. }
  24683. ))
  24684. characterMakers.push(() => makeCharacter(
  24685. { name: "Violette", species: ["doberman"], tags: ["anthro"] },
  24686. {
  24687. front: {
  24688. height: math.unit(293, "meters"),
  24689. weight: math.unit(70400, "tons"),
  24690. name: "Front",
  24691. image: {
  24692. source: "./media/characters/violette/front.svg",
  24693. extra: 1227 / 1180,
  24694. bottom: 0.005
  24695. }
  24696. },
  24697. back: {
  24698. height: math.unit(293, "meters"),
  24699. weight: math.unit(70400, "tons"),
  24700. name: "Back",
  24701. image: {
  24702. source: "./media/characters/violette/back.svg",
  24703. extra: 1227 / 1180,
  24704. bottom: 0.005
  24705. }
  24706. },
  24707. },
  24708. [
  24709. {
  24710. name: "Macro",
  24711. height: math.unit(293, "meters"),
  24712. default: true
  24713. },
  24714. ]
  24715. ))
  24716. characterMakers.push(() => makeCharacter(
  24717. { name: "Alessandra", species: ["fox"], tags: ["anthro"] },
  24718. {
  24719. front: {
  24720. height: math.unit(1050, "feet"),
  24721. weight: math.unit(200000, "tons"),
  24722. name: "Front",
  24723. image: {
  24724. source: "./media/characters/alessandra/front.svg",
  24725. extra: 960 / 912,
  24726. bottom: 0.06
  24727. }
  24728. },
  24729. },
  24730. [
  24731. {
  24732. name: "Macro",
  24733. height: math.unit(1050, "feet")
  24734. },
  24735. {
  24736. name: "Macro+",
  24737. height: math.unit(900, "meters"),
  24738. default: true
  24739. },
  24740. ]
  24741. ))
  24742. characterMakers.push(() => makeCharacter(
  24743. { name: "Person", species: ["cat", "dragon"], tags: ["anthro"] },
  24744. {
  24745. front: {
  24746. height: math.unit(5, "feet"),
  24747. weight: math.unit(187, "lb"),
  24748. name: "Front",
  24749. image: {
  24750. source: "./media/characters/person/front.svg",
  24751. extra: 3087 / 2945,
  24752. bottom: 91 / 3181
  24753. }
  24754. },
  24755. },
  24756. [
  24757. {
  24758. name: "Micro",
  24759. height: math.unit(3, "inches")
  24760. },
  24761. {
  24762. name: "Normal",
  24763. height: math.unit(5, "feet"),
  24764. default: true
  24765. },
  24766. {
  24767. name: "Macro",
  24768. height: math.unit(90, "feet")
  24769. },
  24770. {
  24771. name: "Max Size",
  24772. height: math.unit(280, "feet")
  24773. },
  24774. ]
  24775. ))
  24776. characterMakers.push(() => makeCharacter(
  24777. { name: "Ty", species: ["fox"], tags: ["anthro"] },
  24778. {
  24779. front: {
  24780. height: math.unit(12, "feet"),
  24781. weight: math.unit(3200, "lb"),
  24782. name: "Front",
  24783. image: {
  24784. source: "./media/characters/ty/front.svg",
  24785. extra: 753/703,
  24786. bottom: 61/814
  24787. }
  24788. },
  24789. back: {
  24790. height: math.unit(12, "feet"),
  24791. weight: math.unit(3200, "lb"),
  24792. name: "Back",
  24793. image: {
  24794. source: "./media/characters/ty/back.svg",
  24795. extra: 757/707,
  24796. bottom: 16/773
  24797. }
  24798. },
  24799. head: {
  24800. height: math.unit(3.7, "feet"),
  24801. name: "Head",
  24802. image: {
  24803. source: "./media/characters/ty/head.svg"
  24804. }
  24805. },
  24806. hand: {
  24807. height: math.unit(2.38, "feet"),
  24808. name: "Hand",
  24809. image: {
  24810. source: "./media/characters/ty/hand.svg"
  24811. }
  24812. },
  24813. tail: {
  24814. height: math.unit(8.01096641535, "feet"),
  24815. name: "Tail",
  24816. image: {
  24817. source: "./media/characters/ty/tail.svg"
  24818. }
  24819. },
  24820. },
  24821. [
  24822. {
  24823. name: "Normal",
  24824. height: math.unit(12, "feet"),
  24825. default: true
  24826. },
  24827. ]
  24828. ))
  24829. characterMakers.push(() => makeCharacter(
  24830. { name: "Rocky", species: ["kobold"], tags: ["anthro"] },
  24831. {
  24832. front: {
  24833. height: math.unit(5 + 4 / 12, "feet"),
  24834. weight: math.unit(115, "lb"),
  24835. name: "Front",
  24836. image: {
  24837. source: "./media/characters/rocky/front.svg",
  24838. extra: 1012 / 975,
  24839. bottom: 54 / 1066
  24840. }
  24841. },
  24842. },
  24843. [
  24844. {
  24845. name: "Normal",
  24846. height: math.unit(5 + 4 / 12, "feet"),
  24847. default: true
  24848. },
  24849. ]
  24850. ))
  24851. characterMakers.push(() => makeCharacter(
  24852. { name: "Ruin", species: ["sergal"], tags: ["anthro", "feral"] },
  24853. {
  24854. upright: {
  24855. height: math.unit(6, "meters"),
  24856. weight: math.unit(4000, "kg"),
  24857. name: "Upright",
  24858. image: {
  24859. source: "./media/characters/ruin/upright.svg",
  24860. extra: 668 / 661,
  24861. bottom: 42 / 799.8396
  24862. }
  24863. },
  24864. },
  24865. [
  24866. {
  24867. name: "Normal",
  24868. height: math.unit(6, "meters"),
  24869. default: true
  24870. },
  24871. ]
  24872. ))
  24873. characterMakers.push(() => makeCharacter(
  24874. { name: "Robin", species: ["coyote"], tags: ["anthro"] },
  24875. {
  24876. front: {
  24877. height: math.unit(5, "feet"),
  24878. weight: math.unit(106, "lb"),
  24879. name: "Front",
  24880. image: {
  24881. source: "./media/characters/robin/front.svg",
  24882. extra: 862 / 799,
  24883. bottom: 42.4 / 914.8856
  24884. }
  24885. },
  24886. },
  24887. [
  24888. {
  24889. name: "Normal",
  24890. height: math.unit(5, "feet"),
  24891. default: true
  24892. },
  24893. ]
  24894. ))
  24895. characterMakers.push(() => makeCharacter(
  24896. { name: "Saian", species: ["ventura"], tags: ["feral"] },
  24897. {
  24898. side: {
  24899. height: math.unit(3, "feet"),
  24900. weight: math.unit(225, "lb"),
  24901. name: "Side",
  24902. image: {
  24903. source: "./media/characters/saian/side.svg",
  24904. extra: 566 / 356,
  24905. bottom: 79.7 / 643
  24906. }
  24907. },
  24908. maw: {
  24909. height: math.unit(2.85, "feet"),
  24910. name: "Maw",
  24911. image: {
  24912. source: "./media/characters/saian/maw.svg"
  24913. }
  24914. },
  24915. },
  24916. [
  24917. {
  24918. name: "Normal",
  24919. height: math.unit(3, "feet"),
  24920. default: true
  24921. },
  24922. ]
  24923. ))
  24924. characterMakers.push(() => makeCharacter(
  24925. { name: "Equus Silvermane", species: ["horse"], tags: ["anthro"] },
  24926. {
  24927. side: {
  24928. height: math.unit(8, "feet"),
  24929. weight: math.unit(300, "lb"),
  24930. name: "Side",
  24931. image: {
  24932. source: "./media/characters/equus-silvermane/side.svg",
  24933. extra: 2176 / 2050,
  24934. bottom: 65.7 / 2245
  24935. }
  24936. },
  24937. front: {
  24938. height: math.unit(8, "feet"),
  24939. weight: math.unit(300, "lb"),
  24940. name: "Front",
  24941. image: {
  24942. source: "./media/characters/equus-silvermane/front.svg",
  24943. extra: 4633 / 4400,
  24944. bottom: 71.3 / 4706.915
  24945. }
  24946. },
  24947. sideStepping: {
  24948. height: math.unit(8, "feet"),
  24949. weight: math.unit(300, "lb"),
  24950. name: "Side (Stepping)",
  24951. image: {
  24952. source: "./media/characters/equus-silvermane/side-stepping.svg",
  24953. extra: 1968 / 1860,
  24954. bottom: 16.4 / 1989
  24955. }
  24956. },
  24957. },
  24958. [
  24959. {
  24960. name: "Normal",
  24961. height: math.unit(8, "feet")
  24962. },
  24963. {
  24964. name: "Minimacro",
  24965. height: math.unit(75, "feet"),
  24966. default: true
  24967. },
  24968. {
  24969. name: "Macro",
  24970. height: math.unit(150, "feet")
  24971. },
  24972. {
  24973. name: "Macro+",
  24974. height: math.unit(1000, "feet")
  24975. },
  24976. {
  24977. name: "Megamacro",
  24978. height: math.unit(1, "mile")
  24979. },
  24980. ]
  24981. ))
  24982. characterMakers.push(() => makeCharacter(
  24983. { name: "Windar", species: ["dragon"], tags: ["feral"] },
  24984. {
  24985. side: {
  24986. height: math.unit(20, "feet"),
  24987. weight: math.unit(30000, "kg"),
  24988. name: "Side",
  24989. image: {
  24990. source: "./media/characters/windar/side.svg",
  24991. extra: 1491 / 1248,
  24992. bottom: 82.56 / 1568
  24993. }
  24994. },
  24995. },
  24996. [
  24997. {
  24998. name: "Normal",
  24999. height: math.unit(20, "feet"),
  25000. default: true
  25001. },
  25002. ]
  25003. ))
  25004. characterMakers.push(() => makeCharacter(
  25005. { name: "Melody", species: ["dragon"], tags: ["feral"] },
  25006. {
  25007. side: {
  25008. height: math.unit(15.66, "feet"),
  25009. weight: math.unit(150, "lb"),
  25010. name: "Side",
  25011. image: {
  25012. source: "./media/characters/melody/side.svg",
  25013. extra: 1097 / 944,
  25014. bottom: 11.8 / 1109
  25015. }
  25016. },
  25017. sideOutfit: {
  25018. height: math.unit(15.66, "feet"),
  25019. weight: math.unit(150, "lb"),
  25020. name: "Side (Outfit)",
  25021. image: {
  25022. source: "./media/characters/melody/side-outfit.svg",
  25023. extra: 1097 / 944,
  25024. bottom: 11.8 / 1109
  25025. }
  25026. },
  25027. },
  25028. [
  25029. {
  25030. name: "Normal",
  25031. height: math.unit(15.66, "feet"),
  25032. default: true
  25033. },
  25034. ]
  25035. ))
  25036. characterMakers.push(() => makeCharacter(
  25037. { name: "Windera", species: ["dragon"], tags: ["anthro"] },
  25038. {
  25039. armoredFront: {
  25040. height: math.unit(8, "feet"),
  25041. weight: math.unit(325, "lb"),
  25042. name: "Front",
  25043. image: {
  25044. source: "./media/characters/windera/armored-front.svg",
  25045. extra: 1830/1598,
  25046. bottom: 151/1981
  25047. },
  25048. form: "armored",
  25049. default: true
  25050. },
  25051. macroFront: {
  25052. height: math.unit(70, "feet"),
  25053. weight: math.unit(315453, "lb"),
  25054. name: "Front",
  25055. image: {
  25056. source: "./media/characters/windera/macro-front.svg",
  25057. extra: 963/883,
  25058. bottom: 23/986
  25059. },
  25060. form: "macro",
  25061. default: true
  25062. },
  25063. },
  25064. [
  25065. {
  25066. name: "Normal",
  25067. height: math.unit(8, "feet"),
  25068. default: true,
  25069. form: "armored"
  25070. },
  25071. {
  25072. name: "Normal",
  25073. height: math.unit(70, "feet"),
  25074. default: true,
  25075. form: "macro"
  25076. },
  25077. ],
  25078. {
  25079. "armored": {
  25080. name: "Armored",
  25081. default: true
  25082. },
  25083. "macro": {
  25084. name: "Macro",
  25085. },
  25086. }
  25087. ))
  25088. characterMakers.push(() => makeCharacter(
  25089. { name: "Sonear", species: ["lugia"], tags: ["feral"] },
  25090. {
  25091. front: {
  25092. height: math.unit(28.75, "feet"),
  25093. weight: math.unit(2000, "kg"),
  25094. name: "Front",
  25095. image: {
  25096. source: "./media/characters/sonear/front.svg",
  25097. extra: 1041.1 / 964.9,
  25098. bottom: 53.7 / 1096.6
  25099. }
  25100. },
  25101. },
  25102. [
  25103. {
  25104. name: "Normal",
  25105. height: math.unit(28.75, "feet"),
  25106. default: true
  25107. },
  25108. ]
  25109. ))
  25110. characterMakers.push(() => makeCharacter(
  25111. { name: "Kanara", species: ["dinosaur"], tags: ["feral"] },
  25112. {
  25113. side: {
  25114. height: math.unit(25.5, "feet"),
  25115. weight: math.unit(23000, "kg"),
  25116. name: "Side",
  25117. image: {
  25118. source: "./media/characters/kanara/side.svg"
  25119. }
  25120. },
  25121. },
  25122. [
  25123. {
  25124. name: "Normal",
  25125. height: math.unit(25.5, "feet"),
  25126. default: true
  25127. },
  25128. ]
  25129. ))
  25130. characterMakers.push(() => makeCharacter(
  25131. { name: "Ereus", species: ["gryphon"], tags: ["feral"] },
  25132. {
  25133. side: {
  25134. height: math.unit(10, "feet"),
  25135. weight: math.unit(1000, "kg"),
  25136. name: "Side",
  25137. image: {
  25138. source: "./media/characters/ereus/side.svg",
  25139. extra: 1157 / 959,
  25140. bottom: 153 / 1312.5
  25141. }
  25142. },
  25143. },
  25144. [
  25145. {
  25146. name: "Normal",
  25147. height: math.unit(10, "feet"),
  25148. default: true
  25149. },
  25150. ]
  25151. ))
  25152. characterMakers.push(() => makeCharacter(
  25153. { name: "E-ter", species: ["wolf", "robot"], tags: ["feral"] },
  25154. {
  25155. side: {
  25156. height: math.unit(4.5, "feet"),
  25157. weight: math.unit(500, "lb"),
  25158. name: "Side",
  25159. image: {
  25160. source: "./media/characters/e-ter/side.svg",
  25161. extra: 1550 / 1248,
  25162. bottom: 146 / 1694
  25163. }
  25164. },
  25165. },
  25166. [
  25167. {
  25168. name: "Normal",
  25169. height: math.unit(4.5, "feet"),
  25170. default: true
  25171. },
  25172. ]
  25173. ))
  25174. characterMakers.push(() => makeCharacter(
  25175. { name: "Yamie", species: ["orca"], tags: ["feral"] },
  25176. {
  25177. side: {
  25178. height: math.unit(9.7, "feet"),
  25179. weight: math.unit(4000, "kg"),
  25180. name: "Side",
  25181. image: {
  25182. source: "./media/characters/yamie/side.svg"
  25183. }
  25184. },
  25185. },
  25186. [
  25187. {
  25188. name: "Normal",
  25189. height: math.unit(9.7, "feet"),
  25190. default: true
  25191. },
  25192. ]
  25193. ))
  25194. characterMakers.push(() => makeCharacter(
  25195. { name: "Anders", species: ["unicorn", "deity"], tags: ["anthro"] },
  25196. {
  25197. front: {
  25198. height: math.unit(50, "feet"),
  25199. weight: math.unit(50000, "kg"),
  25200. name: "Front",
  25201. image: {
  25202. source: "./media/characters/anders/front.svg",
  25203. extra: 570 / 539,
  25204. bottom: 14.7 / 586.7
  25205. }
  25206. },
  25207. },
  25208. [
  25209. {
  25210. name: "Large",
  25211. height: math.unit(50, "feet")
  25212. },
  25213. {
  25214. name: "Macro",
  25215. height: math.unit(2000, "feet"),
  25216. default: true
  25217. },
  25218. {
  25219. name: "Megamacro",
  25220. height: math.unit(12, "miles")
  25221. },
  25222. ]
  25223. ))
  25224. characterMakers.push(() => makeCharacter(
  25225. { name: "Reban", species: ["dragon"], tags: ["anthro"] },
  25226. {
  25227. front: {
  25228. height: math.unit(7 + 2 / 12, "feet"),
  25229. weight: math.unit(300, "lb"),
  25230. name: "Front",
  25231. image: {
  25232. source: "./media/characters/reban/front.svg",
  25233. extra: 1287/1212,
  25234. bottom: 148/1435
  25235. }
  25236. },
  25237. head: {
  25238. height: math.unit(1.95, "feet"),
  25239. name: "Head",
  25240. image: {
  25241. source: "./media/characters/reban/head.svg"
  25242. }
  25243. },
  25244. maw: {
  25245. height: math.unit(0.95, "feet"),
  25246. name: "Maw",
  25247. image: {
  25248. source: "./media/characters/reban/maw.svg"
  25249. }
  25250. },
  25251. foot: {
  25252. height: math.unit(1.65, "feet"),
  25253. name: "Foot",
  25254. image: {
  25255. source: "./media/characters/reban/foot.svg"
  25256. }
  25257. },
  25258. dick: {
  25259. height: math.unit(7 / 5, "feet"),
  25260. name: "Dick",
  25261. image: {
  25262. source: "./media/characters/reban/dick.svg"
  25263. }
  25264. },
  25265. },
  25266. [
  25267. {
  25268. name: "Natural Height",
  25269. height: math.unit(7 + 2 / 12, "feet")
  25270. },
  25271. {
  25272. name: "Macro",
  25273. height: math.unit(500, "feet"),
  25274. default: true
  25275. },
  25276. {
  25277. name: "Canon Height",
  25278. height: math.unit(50, "AU")
  25279. },
  25280. ]
  25281. ))
  25282. characterMakers.push(() => makeCharacter(
  25283. { name: "Terrance Keayes", species: ["vole"], tags: ["anthro"] },
  25284. {
  25285. front: {
  25286. height: math.unit(6, "feet"),
  25287. weight: math.unit(150, "lb"),
  25288. name: "Front",
  25289. image: {
  25290. source: "./media/characters/terrance-keayes/front.svg",
  25291. extra: 1.005,
  25292. bottom: 151 / 1615
  25293. }
  25294. },
  25295. side: {
  25296. height: math.unit(6, "feet"),
  25297. weight: math.unit(150, "lb"),
  25298. name: "Side",
  25299. image: {
  25300. source: "./media/characters/terrance-keayes/side.svg",
  25301. extra: 1.005,
  25302. bottom: 129.4 / 1544
  25303. }
  25304. },
  25305. back: {
  25306. height: math.unit(6, "feet"),
  25307. weight: math.unit(150, "lb"),
  25308. name: "Back",
  25309. image: {
  25310. source: "./media/characters/terrance-keayes/back.svg",
  25311. extra: 1.005,
  25312. bottom: 58.4 / 1557.3
  25313. }
  25314. },
  25315. dick: {
  25316. height: math.unit(6 * 0.208, "feet"),
  25317. name: "Dick",
  25318. image: {
  25319. source: "./media/characters/terrance-keayes/dick.svg"
  25320. }
  25321. },
  25322. },
  25323. [
  25324. {
  25325. name: "Canon Height",
  25326. height: math.unit(35, "miles"),
  25327. default: true
  25328. },
  25329. ]
  25330. ))
  25331. characterMakers.push(() => makeCharacter(
  25332. { name: "Ofelia", species: ["gigantosaurus"], tags: ["anthro"] },
  25333. {
  25334. front: {
  25335. height: math.unit(6, "feet"),
  25336. weight: math.unit(150, "lb"),
  25337. name: "Front",
  25338. image: {
  25339. source: "./media/characters/ofelia/front.svg",
  25340. extra: 1130/1117,
  25341. bottom: 91/1221
  25342. }
  25343. },
  25344. back: {
  25345. height: math.unit(6, "feet"),
  25346. weight: math.unit(150, "lb"),
  25347. name: "Back",
  25348. image: {
  25349. source: "./media/characters/ofelia/back.svg",
  25350. extra: 1172/1159,
  25351. bottom: 28/1200
  25352. }
  25353. },
  25354. maw: {
  25355. height: math.unit(1, "feet"),
  25356. name: "Maw",
  25357. image: {
  25358. source: "./media/characters/ofelia/maw.svg"
  25359. }
  25360. },
  25361. foot: {
  25362. height: math.unit(1.949, "feet"),
  25363. name: "Foot",
  25364. image: {
  25365. source: "./media/characters/ofelia/foot.svg"
  25366. }
  25367. },
  25368. },
  25369. [
  25370. {
  25371. name: "Canon Height",
  25372. height: math.unit(2000, "miles"),
  25373. default: true
  25374. },
  25375. ]
  25376. ))
  25377. characterMakers.push(() => makeCharacter(
  25378. { name: "Samuel", species: ["snow-leopard"], tags: ["anthro"] },
  25379. {
  25380. front: {
  25381. height: math.unit(6, "feet"),
  25382. weight: math.unit(150, "lb"),
  25383. name: "Front",
  25384. image: {
  25385. source: "./media/characters/samuel/front.svg",
  25386. extra: 265 / 258,
  25387. bottom: 2 / 266.1566
  25388. }
  25389. },
  25390. },
  25391. [
  25392. {
  25393. name: "Macro",
  25394. height: math.unit(100, "feet"),
  25395. default: true
  25396. },
  25397. {
  25398. name: "Full Size",
  25399. height: math.unit(1000, "miles")
  25400. },
  25401. ]
  25402. ))
  25403. characterMakers.push(() => makeCharacter(
  25404. { name: "Beishir Kiel", species: ["orca", "monster"], tags: ["anthro"] },
  25405. {
  25406. front: {
  25407. height: math.unit(6, "feet"),
  25408. weight: math.unit(300, "lb"),
  25409. name: "Front",
  25410. image: {
  25411. source: "./media/characters/beishir-kiel/front.svg",
  25412. extra: 569 / 547,
  25413. bottom: 41.9 / 609
  25414. }
  25415. },
  25416. maw: {
  25417. height: math.unit(6 * 0.202, "feet"),
  25418. name: "Maw",
  25419. image: {
  25420. source: "./media/characters/beishir-kiel/maw.svg"
  25421. }
  25422. },
  25423. },
  25424. [
  25425. {
  25426. name: "Macro",
  25427. height: math.unit(300, "feet"),
  25428. default: true
  25429. },
  25430. ]
  25431. ))
  25432. characterMakers.push(() => makeCharacter(
  25433. { name: "Logan Grey", species: ["fox"], tags: ["anthro"] },
  25434. {
  25435. front: {
  25436. height: math.unit(5 + 7/12, "feet"),
  25437. weight: math.unit(120, "lb"),
  25438. name: "Front",
  25439. image: {
  25440. source: "./media/characters/logan-grey/front.svg",
  25441. extra: 1836/1738,
  25442. bottom: 108/1944
  25443. }
  25444. },
  25445. back: {
  25446. height: math.unit(5 + 7/12, "feet"),
  25447. weight: math.unit(120, "lb"),
  25448. name: "Back",
  25449. image: {
  25450. source: "./media/characters/logan-grey/back.svg",
  25451. extra: 1880/1794,
  25452. bottom: 24/1904
  25453. }
  25454. },
  25455. frontSfw: {
  25456. height: math.unit(5 + 7/12, "feet"),
  25457. weight: math.unit(120, "lb"),
  25458. name: "Front (SFW)",
  25459. image: {
  25460. source: "./media/characters/logan-grey/front-sfw.svg",
  25461. extra: 1836/1738,
  25462. bottom: 108/1944
  25463. }
  25464. },
  25465. backSfw: {
  25466. height: math.unit(5 + 7/12, "feet"),
  25467. weight: math.unit(120, "lb"),
  25468. name: "Back (SFW)",
  25469. image: {
  25470. source: "./media/characters/logan-grey/back-sfw.svg",
  25471. extra: 1880/1794,
  25472. bottom: 24/1904
  25473. }
  25474. },
  25475. hands: {
  25476. height: math.unit(0.84, "feet"),
  25477. name: "Hands",
  25478. image: {
  25479. source: "./media/characters/logan-grey/hands.svg"
  25480. }
  25481. },
  25482. paws: {
  25483. height: math.unit(0.72, "feet"),
  25484. name: "Paws",
  25485. image: {
  25486. source: "./media/characters/logan-grey/paws.svg"
  25487. }
  25488. },
  25489. cock: {
  25490. height: math.unit(1.45, "feet"),
  25491. name: "Cock",
  25492. image: {
  25493. source: "./media/characters/logan-grey/cock.svg"
  25494. }
  25495. },
  25496. cockAlt: {
  25497. height: math.unit(1.437, "feet"),
  25498. name: "Cock (alt)",
  25499. image: {
  25500. source: "./media/characters/logan-grey/cock-alt.svg"
  25501. }
  25502. },
  25503. },
  25504. [
  25505. {
  25506. name: "Normal",
  25507. height: math.unit(5 + 8 / 12, "feet")
  25508. },
  25509. {
  25510. name: "The 500 Foot Femboy",
  25511. height: math.unit(500, "feet"),
  25512. default: true
  25513. },
  25514. {
  25515. name: "Megmacro",
  25516. height: math.unit(20, "miles")
  25517. },
  25518. ]
  25519. ))
  25520. characterMakers.push(() => makeCharacter(
  25521. { name: "Draganta", species: ["dragon"], tags: ["anthro"] },
  25522. {
  25523. front: {
  25524. height: math.unit(8 + 2 / 12, "feet"),
  25525. weight: math.unit(275, "lb"),
  25526. name: "Front",
  25527. image: {
  25528. source: "./media/characters/draganta/front.svg",
  25529. extra: 1177 / 1135,
  25530. bottom: 33.46 / 1212.1
  25531. }
  25532. },
  25533. },
  25534. [
  25535. {
  25536. name: "Normal",
  25537. height: math.unit(8 + 6 / 12, "feet"),
  25538. default: true
  25539. },
  25540. {
  25541. name: "Macro",
  25542. height: math.unit(150, "feet")
  25543. },
  25544. {
  25545. name: "Megamacro",
  25546. height: math.unit(1000, "miles")
  25547. },
  25548. ]
  25549. ))
  25550. characterMakers.push(() => makeCharacter(
  25551. { name: "Voski", species: ["corvid"], tags: ["anthro"] },
  25552. {
  25553. front: {
  25554. height: math.unit(1.72, "m"),
  25555. weight: math.unit(80, "lb"),
  25556. name: "Front",
  25557. image: {
  25558. source: "./media/characters/voski/front.svg",
  25559. extra: 2076.22 / 2022.4,
  25560. bottom: 102.7 / 2177.3866
  25561. }
  25562. },
  25563. frontFlaccid: {
  25564. height: math.unit(1.72, "m"),
  25565. weight: math.unit(80, "lb"),
  25566. name: "Front (Flaccid)",
  25567. image: {
  25568. source: "./media/characters/voski/front-flaccid.svg",
  25569. extra: 2076.22 / 2022.4,
  25570. bottom: 102.7 / 2177.3866
  25571. }
  25572. },
  25573. frontErect: {
  25574. height: math.unit(1.72, "m"),
  25575. weight: math.unit(80, "lb"),
  25576. name: "Front (Erect)",
  25577. image: {
  25578. source: "./media/characters/voski/front-erect.svg",
  25579. extra: 2076.22 / 2022.4,
  25580. bottom: 102.7 / 2177.3866
  25581. }
  25582. },
  25583. back: {
  25584. height: math.unit(1.72, "m"),
  25585. weight: math.unit(80, "lb"),
  25586. name: "Back",
  25587. image: {
  25588. source: "./media/characters/voski/back.svg",
  25589. extra: 2104 / 2051,
  25590. bottom: 10.45 / 2113.63
  25591. }
  25592. },
  25593. },
  25594. [
  25595. {
  25596. name: "Normal",
  25597. height: math.unit(1.72, "m")
  25598. },
  25599. {
  25600. name: "Macro",
  25601. height: math.unit(55, "m"),
  25602. default: true
  25603. },
  25604. {
  25605. name: "Macro+",
  25606. height: math.unit(300, "m")
  25607. },
  25608. {
  25609. name: "Macro++",
  25610. height: math.unit(700, "m")
  25611. },
  25612. {
  25613. name: "Macro+++",
  25614. height: math.unit(4500, "m")
  25615. },
  25616. {
  25617. name: "Macro++++",
  25618. height: math.unit(45, "km")
  25619. },
  25620. {
  25621. name: "Macro+++++",
  25622. height: math.unit(1220, "km")
  25623. },
  25624. ]
  25625. ))
  25626. characterMakers.push(() => makeCharacter(
  25627. { name: "Icowom Lee", species: ["wolf"], tags: ["anthro"] },
  25628. {
  25629. front: {
  25630. height: math.unit(2.3, "m"),
  25631. weight: math.unit(304, "kg"),
  25632. name: "Front",
  25633. image: {
  25634. source: "./media/characters/icowom-lee/front.svg",
  25635. extra: 985 / 955,
  25636. bottom: 25.4 / 1012
  25637. }
  25638. },
  25639. fronttentacles: {
  25640. height: math.unit(2.3, "m"),
  25641. weight: math.unit(304, "kg"),
  25642. name: "Front (Tentacles)",
  25643. image: {
  25644. source: "./media/characters/icowom-lee/front-tentacles.svg",
  25645. extra: 985 / 955,
  25646. bottom: 25.4 / 1012
  25647. }
  25648. },
  25649. back: {
  25650. height: math.unit(2.3, "m"),
  25651. weight: math.unit(304, "kg"),
  25652. name: "Back",
  25653. image: {
  25654. source: "./media/characters/icowom-lee/back.svg",
  25655. extra: 975 / 954,
  25656. bottom: 9.5 / 985
  25657. }
  25658. },
  25659. backtentacles: {
  25660. height: math.unit(2.3, "m"),
  25661. weight: math.unit(304, "kg"),
  25662. name: "Back (Tentacles)",
  25663. image: {
  25664. source: "./media/characters/icowom-lee/back-tentacles.svg",
  25665. extra: 975 / 954,
  25666. bottom: 9.5 / 985
  25667. }
  25668. },
  25669. frontDressed: {
  25670. height: math.unit(2.3, "m"),
  25671. weight: math.unit(304, "kg"),
  25672. name: "Front (Dressed)",
  25673. image: {
  25674. source: "./media/characters/icowom-lee/front-dressed.svg",
  25675. extra: 3076 / 2933,
  25676. bottom: 51.4 / 3125.1889
  25677. }
  25678. },
  25679. rump: {
  25680. height: math.unit(0.776, "meters"),
  25681. name: "Rump",
  25682. image: {
  25683. source: "./media/characters/icowom-lee/rump.svg"
  25684. }
  25685. },
  25686. genitals: {
  25687. height: math.unit(0.78, "meters"),
  25688. name: "Genitals",
  25689. image: {
  25690. source: "./media/characters/icowom-lee/genitals.svg"
  25691. }
  25692. },
  25693. },
  25694. [
  25695. {
  25696. name: "Normal",
  25697. height: math.unit(2.3, "meters"),
  25698. default: true
  25699. },
  25700. {
  25701. name: "Macro",
  25702. height: math.unit(94, "meters"),
  25703. default: true
  25704. },
  25705. ]
  25706. ))
  25707. characterMakers.push(() => makeCharacter(
  25708. { name: "Shock Diamond", species: ["pharaoh-hound", "aeromorph"], tags: ["anthro"] },
  25709. {
  25710. front: {
  25711. height: math.unit(22, "meters"),
  25712. weight: math.unit(21000, "kg"),
  25713. name: "Front",
  25714. image: {
  25715. source: "./media/characters/shock-diamond/front.svg",
  25716. extra: 2204 / 2053,
  25717. bottom: 65 / 2239.47
  25718. }
  25719. },
  25720. frontNude: {
  25721. height: math.unit(22, "meters"),
  25722. weight: math.unit(21000, "kg"),
  25723. name: "Front (Nude)",
  25724. image: {
  25725. source: "./media/characters/shock-diamond/front-nude.svg",
  25726. extra: 2514 / 2285,
  25727. bottom: 13 / 2527.56
  25728. }
  25729. },
  25730. },
  25731. [
  25732. {
  25733. name: "Normal",
  25734. height: math.unit(3, "meters")
  25735. },
  25736. {
  25737. name: "Macro",
  25738. height: math.unit(22, "meters"),
  25739. default: true
  25740. },
  25741. ]
  25742. ))
  25743. characterMakers.push(() => makeCharacter(
  25744. { name: "Rory", species: ["dog", "magical"], tags: ["anthro"] },
  25745. {
  25746. front: {
  25747. height: math.unit(5 + 4/12, "feet"),
  25748. weight: math.unit(125, "lb"),
  25749. name: "Front",
  25750. image: {
  25751. source: "./media/characters/rory/front.svg",
  25752. extra: 1790/1681,
  25753. bottom: 66/1856
  25754. },
  25755. form: "normal",
  25756. default: true
  25757. },
  25758. back: {
  25759. height: math.unit(5 + 4/12, "feet"),
  25760. weight: math.unit(125, "lb"),
  25761. name: "Back",
  25762. image: {
  25763. source: "./media/characters/rory/back.svg",
  25764. extra: 1805/1690,
  25765. bottom: 56/1861
  25766. },
  25767. form: "normal"
  25768. },
  25769. frontDressed: {
  25770. height: math.unit(5 + 4/12, "feet"),
  25771. weight: math.unit(125, "lb"),
  25772. name: "Front (Dressed)",
  25773. image: {
  25774. source: "./media/characters/rory/front-dressed.svg",
  25775. extra: 1790/1681,
  25776. bottom: 66/1856
  25777. },
  25778. form: "normal"
  25779. },
  25780. backDressed: {
  25781. height: math.unit(5 + 4/12, "feet"),
  25782. weight: math.unit(125, "lb"),
  25783. name: "Back (Dressed)",
  25784. image: {
  25785. source: "./media/characters/rory/back-dressed.svg",
  25786. extra: 1805/1690,
  25787. bottom: 56/1861
  25788. },
  25789. form: "normal"
  25790. },
  25791. frontNsfw: {
  25792. height: math.unit(5 + 4/12, "feet"),
  25793. weight: math.unit(125, "lb"),
  25794. name: "Front (NSFW)",
  25795. image: {
  25796. source: "./media/characters/rory/front-nsfw.svg",
  25797. extra: 1790/1681,
  25798. bottom: 66/1856
  25799. },
  25800. form: "normal"
  25801. },
  25802. backNsfw: {
  25803. height: math.unit(5 + 4/12, "feet"),
  25804. weight: math.unit(125, "lb"),
  25805. name: "Back (NSFW)",
  25806. image: {
  25807. source: "./media/characters/rory/back-nsfw.svg",
  25808. extra: 1805/1690,
  25809. bottom: 56/1861
  25810. },
  25811. form: "normal"
  25812. },
  25813. dick: {
  25814. height: math.unit(0.8, "feet"),
  25815. name: "Dick",
  25816. image: {
  25817. source: "./media/characters/rory/dick.svg"
  25818. },
  25819. form: "normal"
  25820. },
  25821. thicc_front: {
  25822. height: math.unit(5 + 4/12, "feet"),
  25823. weight: math.unit(195, "lb"),
  25824. name: "Front",
  25825. image: {
  25826. source: "./media/characters/rory/thicc-front.svg",
  25827. extra: 1220/1100,
  25828. bottom: 103/1323
  25829. },
  25830. form: "thicc",
  25831. default: true
  25832. },
  25833. thicc_back: {
  25834. height: math.unit(5 + 4/12, "feet"),
  25835. weight: math.unit(195, "lb"),
  25836. name: "Back",
  25837. image: {
  25838. source: "./media/characters/rory/thicc-back.svg",
  25839. extra: 1166/1086,
  25840. bottom: 35/1201
  25841. },
  25842. form: "thicc"
  25843. },
  25844. },
  25845. [
  25846. {
  25847. name: "Micro",
  25848. height: math.unit(3, "inches"),
  25849. allForms: true
  25850. },
  25851. {
  25852. name: "Normal",
  25853. height: math.unit(5 + 4/12, "feet"),
  25854. allForms: true,
  25855. default: true
  25856. },
  25857. {
  25858. name: "Macro",
  25859. height: math.unit(90, "feet"),
  25860. allForms: true
  25861. },
  25862. {
  25863. name: "Supercharged",
  25864. height: math.unit(270, "feet"),
  25865. allForms: true
  25866. },
  25867. ],
  25868. {
  25869. "normal": {
  25870. name: "Normal",
  25871. default: true
  25872. },
  25873. "thicc": {
  25874. name: "Thicc",
  25875. },
  25876. }
  25877. ))
  25878. characterMakers.push(() => makeCharacter(
  25879. { name: "Sprisk", species: ["dragon"], tags: ["anthro"] },
  25880. {
  25881. front: {
  25882. height: math.unit(5 + 9 / 12, "feet"),
  25883. weight: math.unit(190, "lb"),
  25884. name: "Front",
  25885. image: {
  25886. source: "./media/characters/sprisk/front.svg",
  25887. extra: 1225 / 1180,
  25888. bottom: 42.7 / 1266.4
  25889. }
  25890. },
  25891. frontNsfw: {
  25892. height: math.unit(5 + 9 / 12, "feet"),
  25893. weight: math.unit(190, "lb"),
  25894. name: "Front (NSFW)",
  25895. image: {
  25896. source: "./media/characters/sprisk/front-nsfw.svg",
  25897. extra: 1225 / 1180,
  25898. bottom: 42.7 / 1266.4
  25899. }
  25900. },
  25901. back: {
  25902. height: math.unit(5 + 9 / 12, "feet"),
  25903. weight: math.unit(190, "lb"),
  25904. name: "Back",
  25905. image: {
  25906. source: "./media/characters/sprisk/back.svg",
  25907. extra: 1247 / 1200,
  25908. bottom: 5.6 / 1253.04
  25909. }
  25910. },
  25911. },
  25912. [
  25913. {
  25914. name: "Tiny",
  25915. height: math.unit(2, "inches")
  25916. },
  25917. {
  25918. name: "Normal",
  25919. height: math.unit(5 + 9 / 12, "feet"),
  25920. default: true
  25921. },
  25922. {
  25923. name: "Mini Macro",
  25924. height: math.unit(18, "feet")
  25925. },
  25926. {
  25927. name: "Macro",
  25928. height: math.unit(100, "feet")
  25929. },
  25930. {
  25931. name: "MACRO",
  25932. height: math.unit(50, "miles")
  25933. },
  25934. {
  25935. name: "M A C R O",
  25936. height: math.unit(300, "miles")
  25937. },
  25938. ]
  25939. ))
  25940. characterMakers.push(() => makeCharacter(
  25941. { name: "Bunsen", species: ["dragon"], tags: ["feral"] },
  25942. {
  25943. side: {
  25944. height: math.unit(15.6, "meters"),
  25945. weight: math.unit(700000, "kg"),
  25946. name: "Side",
  25947. image: {
  25948. source: "./media/characters/bunsen/side.svg",
  25949. extra: 1644 / 358
  25950. }
  25951. },
  25952. foot: {
  25953. height: math.unit(1.611 * 1644 / 358, "meter"),
  25954. name: "Foot",
  25955. image: {
  25956. source: "./media/characters/bunsen/foot.svg"
  25957. }
  25958. },
  25959. },
  25960. [
  25961. {
  25962. name: "Small",
  25963. height: math.unit(10, "feet")
  25964. },
  25965. {
  25966. name: "Normal",
  25967. height: math.unit(15.6, "meters"),
  25968. default: true
  25969. },
  25970. ]
  25971. ))
  25972. characterMakers.push(() => makeCharacter(
  25973. { name: "Sesh", species: ["finnish-spitz-dog"], tags: ["anthro"] },
  25974. {
  25975. front: {
  25976. height: math.unit(4 + 11 / 12, "feet"),
  25977. weight: math.unit(140, "lb"),
  25978. name: "Front",
  25979. image: {
  25980. source: "./media/characters/sesh/front.svg",
  25981. extra: 3420 / 3231,
  25982. bottom: 72 / 3949.5
  25983. }
  25984. },
  25985. },
  25986. [
  25987. {
  25988. name: "Normal",
  25989. height: math.unit(4 + 11 / 12, "feet")
  25990. },
  25991. {
  25992. name: "Grown",
  25993. height: math.unit(15, "feet"),
  25994. default: true
  25995. },
  25996. {
  25997. name: "Macro",
  25998. height: math.unit(1500, "feet")
  25999. },
  26000. {
  26001. name: "Megamacro",
  26002. height: math.unit(30, "miles")
  26003. },
  26004. {
  26005. name: "Continental",
  26006. height: math.unit(3000, "miles")
  26007. },
  26008. {
  26009. name: "Gravity Mass",
  26010. height: math.unit(300000, "miles")
  26011. },
  26012. {
  26013. name: "Planet Buster",
  26014. height: math.unit(30000000, "miles")
  26015. },
  26016. {
  26017. name: "Big",
  26018. height: math.unit(3000000000, "miles")
  26019. },
  26020. ]
  26021. ))
  26022. characterMakers.push(() => makeCharacter(
  26023. { name: "Pepper", species: ["zorgoia"], tags: ["anthro"] },
  26024. {
  26025. front: {
  26026. height: math.unit(9, "feet"),
  26027. weight: math.unit(350, "lb"),
  26028. name: "Front",
  26029. image: {
  26030. source: "./media/characters/pepper/front.svg",
  26031. extra: 1448 / 1312,
  26032. bottom: 9.4 / 1457.88
  26033. }
  26034. },
  26035. back: {
  26036. height: math.unit(9, "feet"),
  26037. weight: math.unit(350, "lb"),
  26038. name: "Back",
  26039. image: {
  26040. source: "./media/characters/pepper/back.svg",
  26041. extra: 1423 / 1300,
  26042. bottom: 4.6 / 1429
  26043. }
  26044. },
  26045. maw: {
  26046. height: math.unit(0.932, "feet"),
  26047. name: "Maw",
  26048. image: {
  26049. source: "./media/characters/pepper/maw.svg"
  26050. }
  26051. },
  26052. },
  26053. [
  26054. {
  26055. name: "Normal",
  26056. height: math.unit(9, "feet"),
  26057. default: true
  26058. },
  26059. ]
  26060. ))
  26061. characterMakers.push(() => makeCharacter(
  26062. { name: "Maelstrom", species: ["monster"], tags: ["anthro"] },
  26063. {
  26064. front: {
  26065. height: math.unit(6, "feet"),
  26066. weight: math.unit(150, "lb"),
  26067. name: "Front",
  26068. image: {
  26069. source: "./media/characters/maelstrom/front.svg",
  26070. extra: 2100 / 1883,
  26071. bottom: 94 / 2196.7
  26072. }
  26073. },
  26074. },
  26075. [
  26076. {
  26077. name: "Less Kaiju",
  26078. height: math.unit(200, "feet")
  26079. },
  26080. {
  26081. name: "Kaiju",
  26082. height: math.unit(400, "feet"),
  26083. default: true
  26084. },
  26085. {
  26086. name: "Kaiju-er",
  26087. height: math.unit(600, "feet")
  26088. },
  26089. ]
  26090. ))
  26091. characterMakers.push(() => makeCharacter(
  26092. { name: "Lexir", species: ["sergal"], tags: ["anthro"] },
  26093. {
  26094. front: {
  26095. height: math.unit(6 + 5 / 12, "feet"),
  26096. weight: math.unit(180, "lb"),
  26097. name: "Front",
  26098. image: {
  26099. source: "./media/characters/lexir/front.svg",
  26100. extra: 180 / 172,
  26101. bottom: 12 / 192
  26102. }
  26103. },
  26104. back: {
  26105. height: math.unit(6 + 5 / 12, "feet"),
  26106. weight: math.unit(180, "lb"),
  26107. name: "Back",
  26108. image: {
  26109. source: "./media/characters/lexir/back.svg",
  26110. extra: 1273/1201,
  26111. bottom: 39/1312
  26112. }
  26113. },
  26114. },
  26115. [
  26116. {
  26117. name: "Very Smal",
  26118. height: math.unit(1, "nm")
  26119. },
  26120. {
  26121. name: "Normal",
  26122. height: math.unit(6 + 5 / 12, "feet"),
  26123. default: true
  26124. },
  26125. {
  26126. name: "Macro",
  26127. height: math.unit(1, "mile")
  26128. },
  26129. {
  26130. name: "Megamacro",
  26131. height: math.unit(50, "miles")
  26132. },
  26133. ]
  26134. ))
  26135. characterMakers.push(() => makeCharacter(
  26136. { name: "Maksio", species: ["lizard"], tags: ["anthro"] },
  26137. {
  26138. front: {
  26139. height: math.unit(1.5, "meters"),
  26140. weight: math.unit(100, "lb"),
  26141. name: "Front",
  26142. image: {
  26143. source: "./media/characters/maksio/front.svg",
  26144. extra: 1549 / 1531,
  26145. bottom: 123.7 / 1674.5429
  26146. }
  26147. },
  26148. back: {
  26149. height: math.unit(1.5, "meters"),
  26150. weight: math.unit(100, "lb"),
  26151. name: "Back",
  26152. image: {
  26153. source: "./media/characters/maksio/back.svg",
  26154. extra: 1541 / 1509,
  26155. bottom: 97 / 1639
  26156. }
  26157. },
  26158. hand: {
  26159. height: math.unit(0.621, "feet"),
  26160. name: "Hand",
  26161. image: {
  26162. source: "./media/characters/maksio/hand.svg"
  26163. }
  26164. },
  26165. foot: {
  26166. height: math.unit(1.611, "feet"),
  26167. name: "Foot",
  26168. image: {
  26169. source: "./media/characters/maksio/foot.svg"
  26170. }
  26171. },
  26172. },
  26173. [
  26174. {
  26175. name: "Shrunken",
  26176. height: math.unit(10, "cm")
  26177. },
  26178. {
  26179. name: "Normal",
  26180. height: math.unit(150, "cm"),
  26181. default: true
  26182. },
  26183. ]
  26184. ))
  26185. characterMakers.push(() => makeCharacter(
  26186. { name: "Erza Bear", species: ["human", "dragon"], tags: ["anthro"] },
  26187. {
  26188. front: {
  26189. height: math.unit(100, "feet"),
  26190. name: "Front",
  26191. image: {
  26192. source: "./media/characters/erza-bear/front.svg",
  26193. extra: 2449 / 2390,
  26194. bottom: 46 / 2494
  26195. }
  26196. },
  26197. back: {
  26198. height: math.unit(100, "feet"),
  26199. name: "Back",
  26200. image: {
  26201. source: "./media/characters/erza-bear/back.svg",
  26202. extra: 2489 / 2430,
  26203. bottom: 85.4 / 2480
  26204. }
  26205. },
  26206. tail: {
  26207. height: math.unit(42, "feet"),
  26208. name: "Tail",
  26209. image: {
  26210. source: "./media/characters/erza-bear/tail.svg"
  26211. }
  26212. },
  26213. tongue: {
  26214. height: math.unit(8, "feet"),
  26215. name: "Tongue",
  26216. image: {
  26217. source: "./media/characters/erza-bear/tongue.svg"
  26218. }
  26219. },
  26220. dick: {
  26221. height: math.unit(10.5, "feet"),
  26222. name: "Dick",
  26223. image: {
  26224. source: "./media/characters/erza-bear/dick.svg"
  26225. }
  26226. },
  26227. dickVertical: {
  26228. height: math.unit(16.9, "feet"),
  26229. name: "Dick (Vertical)",
  26230. image: {
  26231. source: "./media/characters/erza-bear/dick-vertical.svg"
  26232. }
  26233. },
  26234. },
  26235. [
  26236. {
  26237. name: "Macro",
  26238. height: math.unit(100, "feet"),
  26239. default: true
  26240. },
  26241. ]
  26242. ))
  26243. characterMakers.push(() => makeCharacter(
  26244. { name: "Violet Flor", species: ["skunk"], tags: ["anthro"] },
  26245. {
  26246. front: {
  26247. height: math.unit(172, "cm"),
  26248. weight: math.unit(73, "kg"),
  26249. name: "Front",
  26250. image: {
  26251. source: "./media/characters/violet-flor/front.svg",
  26252. extra: 1474/1379,
  26253. bottom: 113/1587
  26254. }
  26255. },
  26256. back: {
  26257. height: math.unit(180, "cm"),
  26258. weight: math.unit(73, "kg"),
  26259. name: "Back",
  26260. image: {
  26261. source: "./media/characters/violet-flor/back.svg",
  26262. extra: 1660/1567,
  26263. bottom: 49/1709
  26264. }
  26265. },
  26266. },
  26267. [
  26268. {
  26269. name: "Normal",
  26270. height: math.unit(172, "cm"),
  26271. default: true
  26272. },
  26273. ]
  26274. ))
  26275. characterMakers.push(() => makeCharacter(
  26276. { name: "Lynn Rhea", species: ["shark"], tags: ["anthro"] },
  26277. {
  26278. front: {
  26279. height: math.unit(6, "feet"),
  26280. weight: math.unit(220, "lb"),
  26281. name: "Front",
  26282. image: {
  26283. source: "./media/characters/lynn-rhea/front.svg",
  26284. extra: 310 / 273
  26285. }
  26286. },
  26287. back: {
  26288. height: math.unit(6, "feet"),
  26289. weight: math.unit(220, "lb"),
  26290. name: "Back",
  26291. image: {
  26292. source: "./media/characters/lynn-rhea/back.svg",
  26293. extra: 310 / 273
  26294. }
  26295. },
  26296. dicks: {
  26297. height: math.unit(0.9, "feet"),
  26298. name: "Dicks",
  26299. image: {
  26300. source: "./media/characters/lynn-rhea/dicks.svg"
  26301. }
  26302. },
  26303. slit: {
  26304. height: math.unit(0.4, "feet"),
  26305. name: "Slit",
  26306. image: {
  26307. source: "./media/characters/lynn-rhea/slit.svg"
  26308. }
  26309. },
  26310. },
  26311. [
  26312. {
  26313. name: "Micro",
  26314. height: math.unit(1, "inch")
  26315. },
  26316. {
  26317. name: "Macro",
  26318. height: math.unit(60, "feet"),
  26319. default: true
  26320. },
  26321. {
  26322. name: "Megamacro",
  26323. height: math.unit(2, "miles")
  26324. },
  26325. {
  26326. name: "Gigamacro",
  26327. height: math.unit(3, "earths")
  26328. },
  26329. {
  26330. name: "Galactic",
  26331. height: math.unit(0.8, "galaxies")
  26332. },
  26333. ]
  26334. ))
  26335. characterMakers.push(() => makeCharacter(
  26336. { name: "Valathos", species: ["sea-monster"], tags: ["naga"] },
  26337. {
  26338. front: {
  26339. height: math.unit(1600, "feet"),
  26340. weight: math.unit(85758785169, "kg"),
  26341. name: "Front",
  26342. image: {
  26343. source: "./media/characters/valathos/front.svg",
  26344. extra: 1451 / 1339
  26345. }
  26346. },
  26347. },
  26348. [
  26349. {
  26350. name: "Macro",
  26351. height: math.unit(1600, "feet"),
  26352. default: true
  26353. },
  26354. ]
  26355. ))
  26356. characterMakers.push(() => makeCharacter(
  26357. { name: "Azula", species: ["demon"], tags: ["anthro"] },
  26358. {
  26359. front: {
  26360. height: math.unit(7 + 5 / 12, "feet"),
  26361. weight: math.unit(300, "lb"),
  26362. name: "Front",
  26363. image: {
  26364. source: "./media/characters/azula/front.svg",
  26365. extra: 3208 / 2880,
  26366. bottom: 80.2 / 3277
  26367. }
  26368. },
  26369. back: {
  26370. height: math.unit(7 + 5 / 12, "feet"),
  26371. weight: math.unit(300, "lb"),
  26372. name: "Back",
  26373. image: {
  26374. source: "./media/characters/azula/back.svg",
  26375. extra: 3169 / 2822,
  26376. bottom: 150.6 / 3321
  26377. }
  26378. },
  26379. },
  26380. [
  26381. {
  26382. name: "Normal",
  26383. height: math.unit(7 + 5 / 12, "feet"),
  26384. default: true
  26385. },
  26386. {
  26387. name: "Big",
  26388. height: math.unit(20, "feet")
  26389. },
  26390. ]
  26391. ))
  26392. characterMakers.push(() => makeCharacter(
  26393. { name: "Rupert", species: ["shark"], tags: ["anthro"] },
  26394. {
  26395. front: {
  26396. height: math.unit(5 + 1 / 12, "feet"),
  26397. weight: math.unit(110, "lb"),
  26398. name: "Front",
  26399. image: {
  26400. source: "./media/characters/rupert/front.svg",
  26401. extra: 1549 / 1495,
  26402. bottom: 54.2 / 1604.4
  26403. }
  26404. },
  26405. },
  26406. [
  26407. {
  26408. name: "Normal",
  26409. height: math.unit(5 + 1 / 12, "feet"),
  26410. default: true
  26411. },
  26412. ]
  26413. ))
  26414. characterMakers.push(() => makeCharacter(
  26415. { name: "Sheera Castellar", species: ["dragon"], tags: ["anthro", "taur"] },
  26416. {
  26417. front: {
  26418. height: math.unit(8 + 4 / 12, "feet"),
  26419. weight: math.unit(350, "lb"),
  26420. name: "Front",
  26421. image: {
  26422. source: "./media/characters/sheera-castellar/front.svg",
  26423. extra: 1957 / 1894,
  26424. bottom: 26.97 / 1975.017
  26425. }
  26426. },
  26427. side: {
  26428. height: math.unit(8 + 4 / 12, "feet"),
  26429. weight: math.unit(350, "lb"),
  26430. name: "Side",
  26431. image: {
  26432. source: "./media/characters/sheera-castellar/side.svg",
  26433. extra: 1957 / 1894
  26434. }
  26435. },
  26436. back: {
  26437. height: math.unit(8 + 4 / 12, "feet"),
  26438. weight: math.unit(350, "lb"),
  26439. name: "Back",
  26440. image: {
  26441. source: "./media/characters/sheera-castellar/back.svg",
  26442. extra: 1957 / 1894
  26443. }
  26444. },
  26445. angled: {
  26446. height: math.unit((8 + 4 / 12) * (1 - 68 / 1875), "feet"),
  26447. weight: math.unit(350, "lb"),
  26448. name: "Angled",
  26449. image: {
  26450. source: "./media/characters/sheera-castellar/angled.svg",
  26451. extra: 1807 / 1707,
  26452. bottom: 68 / 1875
  26453. }
  26454. },
  26455. genitals: {
  26456. height: math.unit(2.2, "feet"),
  26457. name: "Genitals",
  26458. image: {
  26459. source: "./media/characters/sheera-castellar/genitals.svg"
  26460. }
  26461. },
  26462. taur: {
  26463. height: math.unit(10 + 6/12, "feet"),
  26464. name: "Taur",
  26465. image: {
  26466. source: "./media/characters/sheera-castellar/taur.svg",
  26467. extra: 2017/1909,
  26468. bottom: 185/2202
  26469. }
  26470. },
  26471. },
  26472. [
  26473. {
  26474. name: "Normal",
  26475. height: math.unit(8 + 4 / 12, "feet")
  26476. },
  26477. {
  26478. name: "Macro",
  26479. height: math.unit(150, "feet"),
  26480. default: true
  26481. },
  26482. {
  26483. name: "Macro+",
  26484. height: math.unit(800, "feet")
  26485. },
  26486. ]
  26487. ))
  26488. characterMakers.push(() => makeCharacter(
  26489. { name: "Jaipur", species: ["black-panther"], tags: ["anthro"] },
  26490. {
  26491. front: {
  26492. height: math.unit(6, "feet"),
  26493. weight: math.unit(150, "lb"),
  26494. name: "Front",
  26495. image: {
  26496. source: "./media/characters/jaipur/front.svg",
  26497. extra: 3860 / 3731,
  26498. bottom: 287 / 4140
  26499. }
  26500. },
  26501. back: {
  26502. height: math.unit(6, "feet"),
  26503. weight: math.unit(150, "lb"),
  26504. name: "Back",
  26505. image: {
  26506. source: "./media/characters/jaipur/back.svg",
  26507. extra: 1637/1561,
  26508. bottom: 154/1791
  26509. }
  26510. },
  26511. },
  26512. [
  26513. {
  26514. name: "Normal",
  26515. height: math.unit(1.85, "meters"),
  26516. default: true
  26517. },
  26518. {
  26519. name: "Macro",
  26520. height: math.unit(150, "meters")
  26521. },
  26522. {
  26523. name: "Macro+",
  26524. height: math.unit(0.5, "miles")
  26525. },
  26526. {
  26527. name: "Macro++",
  26528. height: math.unit(2.5, "miles")
  26529. },
  26530. {
  26531. name: "Macro+++",
  26532. height: math.unit(12, "miles")
  26533. },
  26534. {
  26535. name: "Macro++++",
  26536. height: math.unit(120, "miles")
  26537. },
  26538. {
  26539. name: "Macro+++++",
  26540. height: math.unit(1200, "miles")
  26541. },
  26542. ]
  26543. ))
  26544. characterMakers.push(() => makeCharacter(
  26545. { name: "Sheila (Wolf)", species: ["wolf"], tags: ["anthro"] },
  26546. {
  26547. front: {
  26548. height: math.unit(6, "feet"),
  26549. weight: math.unit(150, "lb"),
  26550. name: "Front",
  26551. image: {
  26552. source: "./media/characters/sheila-wolf/front.svg",
  26553. extra: 1931 / 1808,
  26554. bottom: 29.5 / 1960
  26555. }
  26556. },
  26557. dick: {
  26558. height: math.unit(1.464, "feet"),
  26559. name: "Dick",
  26560. image: {
  26561. source: "./media/characters/sheila-wolf/dick.svg"
  26562. }
  26563. },
  26564. muzzle: {
  26565. height: math.unit(0.513, "feet"),
  26566. name: "Muzzle",
  26567. image: {
  26568. source: "./media/characters/sheila-wolf/muzzle.svg"
  26569. }
  26570. },
  26571. },
  26572. [
  26573. {
  26574. name: "Macro",
  26575. height: math.unit(70, "feet"),
  26576. default: true
  26577. },
  26578. ]
  26579. ))
  26580. characterMakers.push(() => makeCharacter(
  26581. { name: "Almor", species: ["dragon"], tags: ["anthro"] },
  26582. {
  26583. front: {
  26584. height: math.unit(32, "meters"),
  26585. weight: math.unit(300000, "kg"),
  26586. name: "Front",
  26587. image: {
  26588. source: "./media/characters/almor/front.svg",
  26589. extra: 1408 / 1322,
  26590. bottom: 94.6 / 1506.5
  26591. }
  26592. },
  26593. },
  26594. [
  26595. {
  26596. name: "Macro",
  26597. height: math.unit(32, "meters"),
  26598. default: true
  26599. },
  26600. ]
  26601. ))
  26602. characterMakers.push(() => makeCharacter(
  26603. { name: "Silver", species: ["shark"], tags: ["anthro"] },
  26604. {
  26605. front: {
  26606. height: math.unit(7, "feet"),
  26607. weight: math.unit(200, "lb"),
  26608. name: "Front",
  26609. image: {
  26610. source: "./media/characters/silver/front.svg",
  26611. extra: 472.1 / 450.5,
  26612. bottom: 26.5 / 499.424
  26613. }
  26614. },
  26615. },
  26616. [
  26617. {
  26618. name: "Normal",
  26619. height: math.unit(7, "feet"),
  26620. default: true
  26621. },
  26622. {
  26623. name: "Macro",
  26624. height: math.unit(800, "feet")
  26625. },
  26626. {
  26627. name: "Megamacro",
  26628. height: math.unit(250, "miles")
  26629. },
  26630. ]
  26631. ))
  26632. characterMakers.push(() => makeCharacter(
  26633. { name: "Pliskin", species: ["cat"], tags: ["anthro"] },
  26634. {
  26635. front: {
  26636. height: math.unit(6, "feet"),
  26637. weight: math.unit(150, "lb"),
  26638. name: "Front",
  26639. image: {
  26640. source: "./media/characters/pliskin/front.svg",
  26641. extra: 1469 / 1359,
  26642. bottom: 70 / 1540
  26643. }
  26644. },
  26645. },
  26646. [
  26647. {
  26648. name: "Micro",
  26649. height: math.unit(3, "inches")
  26650. },
  26651. {
  26652. name: "Normal",
  26653. height: math.unit(5 + 11 / 12, "feet"),
  26654. default: true
  26655. },
  26656. {
  26657. name: "Macro",
  26658. height: math.unit(120, "feet")
  26659. },
  26660. ]
  26661. ))
  26662. characterMakers.push(() => makeCharacter(
  26663. { name: "Sammy", species: ["samurott"], tags: ["anthro"] },
  26664. {
  26665. front: {
  26666. height: math.unit(6, "feet"),
  26667. weight: math.unit(150, "lb"),
  26668. name: "Front",
  26669. image: {
  26670. source: "./media/characters/sammy/front.svg",
  26671. extra: 1193 / 1089,
  26672. bottom: 30.5 / 1226
  26673. }
  26674. },
  26675. },
  26676. [
  26677. {
  26678. name: "Macro",
  26679. height: math.unit(1700, "feet"),
  26680. default: true
  26681. },
  26682. {
  26683. name: "Examacro",
  26684. height: math.unit(2.5e9, "lightyears")
  26685. },
  26686. ]
  26687. ))
  26688. characterMakers.push(() => makeCharacter(
  26689. { name: "Kuru", species: ["umbra"], tags: ["anthro"] },
  26690. {
  26691. front: {
  26692. height: math.unit(21, "meters"),
  26693. weight: math.unit(12, "tonnes"),
  26694. name: "Front",
  26695. image: {
  26696. source: "./media/characters/kuru/front.svg",
  26697. extra: 4301 / 3785,
  26698. bottom: 371.3 / 4691
  26699. }
  26700. },
  26701. },
  26702. [
  26703. {
  26704. name: "Macro",
  26705. height: math.unit(21, "meters"),
  26706. default: true
  26707. },
  26708. ]
  26709. ))
  26710. characterMakers.push(() => makeCharacter(
  26711. { name: "Rakka", species: ["umbra"], tags: ["anthro"] },
  26712. {
  26713. front: {
  26714. height: math.unit(23, "meters"),
  26715. weight: math.unit(12.2, "tonnes"),
  26716. name: "Front",
  26717. image: {
  26718. source: "./media/characters/rakka/front.svg",
  26719. extra: 4670 / 4169,
  26720. bottom: 301 / 4968.7
  26721. }
  26722. },
  26723. },
  26724. [
  26725. {
  26726. name: "Macro",
  26727. height: math.unit(23, "meters"),
  26728. default: true
  26729. },
  26730. ]
  26731. ))
  26732. characterMakers.push(() => makeCharacter(
  26733. { name: "Rhys (Feline)", species: ["cat"], tags: ["anthro"] },
  26734. {
  26735. front: {
  26736. height: math.unit(6, "feet"),
  26737. weight: math.unit(150, "lb"),
  26738. name: "Front",
  26739. image: {
  26740. source: "./media/characters/rhys-feline/front.svg",
  26741. extra: 2488 / 2308,
  26742. bottom: 35.67 / 2519.19
  26743. }
  26744. },
  26745. },
  26746. [
  26747. {
  26748. name: "Really Small",
  26749. height: math.unit(1, "nm")
  26750. },
  26751. {
  26752. name: "Micro",
  26753. height: math.unit(4, "inches")
  26754. },
  26755. {
  26756. name: "Normal",
  26757. height: math.unit(4 + 10 / 12, "feet"),
  26758. default: true
  26759. },
  26760. {
  26761. name: "Macro",
  26762. height: math.unit(100, "feet")
  26763. },
  26764. {
  26765. name: "Megamacto",
  26766. height: math.unit(50, "miles")
  26767. },
  26768. ]
  26769. ))
  26770. characterMakers.push(() => makeCharacter(
  26771. { name: "Alydar", species: ["raven", "snow-leopard"], tags: ["feral"] },
  26772. {
  26773. side: {
  26774. height: math.unit(30, "feet"),
  26775. weight: math.unit(35000, "kg"),
  26776. name: "Side",
  26777. image: {
  26778. source: "./media/characters/alydar/side.svg",
  26779. extra: 234 / 222,
  26780. bottom: 6.5 / 241
  26781. }
  26782. },
  26783. front: {
  26784. height: math.unit(30, "feet"),
  26785. weight: math.unit(35000, "kg"),
  26786. name: "Front",
  26787. image: {
  26788. source: "./media/characters/alydar/front.svg",
  26789. extra: 223.37 / 210.2,
  26790. bottom: 22.3 / 246.76
  26791. }
  26792. },
  26793. top: {
  26794. height: math.unit(64.54, "feet"),
  26795. weight: math.unit(35000, "kg"),
  26796. name: "Top",
  26797. image: {
  26798. source: "./media/characters/alydar/top.svg"
  26799. }
  26800. },
  26801. anthro: {
  26802. height: math.unit(30, "feet"),
  26803. weight: math.unit(9000, "kg"),
  26804. name: "Anthro",
  26805. image: {
  26806. source: "./media/characters/alydar/anthro.svg",
  26807. extra: 432 / 421,
  26808. bottom: 7.18 / 440
  26809. }
  26810. },
  26811. maw: {
  26812. height: math.unit(11.693, "feet"),
  26813. name: "Maw",
  26814. image: {
  26815. source: "./media/characters/alydar/maw.svg"
  26816. }
  26817. },
  26818. head: {
  26819. height: math.unit(11.693, "feet"),
  26820. name: "Head",
  26821. image: {
  26822. source: "./media/characters/alydar/head.svg"
  26823. }
  26824. },
  26825. headAlt: {
  26826. height: math.unit(12.861, "feet"),
  26827. name: "Head (Alt)",
  26828. image: {
  26829. source: "./media/characters/alydar/head-alt.svg"
  26830. }
  26831. },
  26832. wing: {
  26833. height: math.unit(20.712, "feet"),
  26834. name: "Wing",
  26835. image: {
  26836. source: "./media/characters/alydar/wing.svg"
  26837. }
  26838. },
  26839. wingFeather: {
  26840. height: math.unit(9.662, "feet"),
  26841. name: "Wing Feather",
  26842. image: {
  26843. source: "./media/characters/alydar/wing-feather.svg"
  26844. }
  26845. },
  26846. countourFeather: {
  26847. height: math.unit(4.154, "feet"),
  26848. name: "Contour Feather",
  26849. image: {
  26850. source: "./media/characters/alydar/contour-feather.svg"
  26851. }
  26852. },
  26853. },
  26854. [
  26855. {
  26856. name: "Diplomatic",
  26857. height: math.unit(13, "feet"),
  26858. default: true
  26859. },
  26860. {
  26861. name: "Small",
  26862. height: math.unit(30, "feet")
  26863. },
  26864. {
  26865. name: "Normal",
  26866. height: math.unit(95, "feet"),
  26867. default: true
  26868. },
  26869. {
  26870. name: "Large",
  26871. height: math.unit(285, "feet")
  26872. },
  26873. {
  26874. name: "Incomprehensible",
  26875. height: math.unit(450, "megameters")
  26876. },
  26877. ]
  26878. ))
  26879. characterMakers.push(() => makeCharacter(
  26880. { name: "Selicia", species: ["dragon"], tags: ["feral"] },
  26881. {
  26882. side: {
  26883. height: math.unit(11, "feet"),
  26884. weight: math.unit(1750, "kg"),
  26885. name: "Side",
  26886. image: {
  26887. source: "./media/characters/selicia/side.svg",
  26888. extra: 440 / 396,
  26889. bottom: 24.8 / 465.979
  26890. }
  26891. },
  26892. maw: {
  26893. height: math.unit(4.665, "feet"),
  26894. name: "Maw",
  26895. image: {
  26896. source: "./media/characters/selicia/maw.svg"
  26897. }
  26898. },
  26899. },
  26900. [
  26901. {
  26902. name: "Normal",
  26903. height: math.unit(11, "feet"),
  26904. default: true
  26905. },
  26906. ]
  26907. ))
  26908. characterMakers.push(() => makeCharacter(
  26909. { name: "Layla", species: ["zorua", "vulpix", "dragon"], tags: ["feral"] },
  26910. {
  26911. side: {
  26912. height: math.unit(2 + 6 / 12, "feet"),
  26913. weight: math.unit(30, "lb"),
  26914. name: "Side",
  26915. image: {
  26916. source: "./media/characters/layla/side.svg",
  26917. extra: 244 / 188,
  26918. bottom: 18.2 / 262.1
  26919. }
  26920. },
  26921. back: {
  26922. height: math.unit(2 + 6 / 12, "feet"),
  26923. weight: math.unit(30, "lb"),
  26924. name: "Back",
  26925. image: {
  26926. source: "./media/characters/layla/back.svg",
  26927. extra: 308 / 241.5,
  26928. bottom: 8.9 / 316.8
  26929. }
  26930. },
  26931. cumming: {
  26932. height: math.unit(2 + 6 / 12, "feet"),
  26933. weight: math.unit(30, "lb"),
  26934. name: "Cumming",
  26935. image: {
  26936. source: "./media/characters/layla/cumming.svg",
  26937. extra: 342 / 279,
  26938. bottom: 595 / 938
  26939. }
  26940. },
  26941. dickFlaccid: {
  26942. height: math.unit(2.595, "feet"),
  26943. name: "Flaccid Genitals",
  26944. image: {
  26945. source: "./media/characters/layla/dick-flaccid.svg"
  26946. }
  26947. },
  26948. dickErect: {
  26949. height: math.unit(2.359, "feet"),
  26950. name: "Erect Genitals",
  26951. image: {
  26952. source: "./media/characters/layla/dick-erect.svg"
  26953. }
  26954. },
  26955. dragon: {
  26956. height: math.unit(40, "feet"),
  26957. name: "Dragon",
  26958. image: {
  26959. source: "./media/characters/layla/dragon.svg",
  26960. extra: 610/535,
  26961. bottom: 367/977
  26962. }
  26963. },
  26964. taur: {
  26965. height: math.unit(30, "feet"),
  26966. name: "Taur",
  26967. image: {
  26968. source: "./media/characters/layla/taur.svg",
  26969. extra: 1268/1199,
  26970. bottom: 112/1380
  26971. }
  26972. },
  26973. },
  26974. [
  26975. {
  26976. name: "Micro",
  26977. height: math.unit(1, "inch")
  26978. },
  26979. {
  26980. name: "Small",
  26981. height: math.unit(1, "foot")
  26982. },
  26983. {
  26984. name: "Normal",
  26985. height: math.unit(2 + 6 / 12, "feet"),
  26986. default: true
  26987. },
  26988. {
  26989. name: "Macro",
  26990. height: math.unit(200, "feet")
  26991. },
  26992. {
  26993. name: "Megamacro",
  26994. height: math.unit(1000, "miles")
  26995. },
  26996. {
  26997. name: "Planetary",
  26998. height: math.unit(8000, "miles")
  26999. },
  27000. {
  27001. name: "True Layla",
  27002. height: math.unit(200000 * 7, "multiverses")
  27003. },
  27004. ]
  27005. ))
  27006. characterMakers.push(() => makeCharacter(
  27007. { name: "Knox", species: ["arcanine", "houndoom"], tags: ["feral"] },
  27008. {
  27009. back: {
  27010. height: math.unit(10.5, "feet"),
  27011. weight: math.unit(800, "lb"),
  27012. name: "Back",
  27013. image: {
  27014. source: "./media/characters/knox/back.svg",
  27015. extra: 1486 / 1089,
  27016. bottom: 107 / 1601.4
  27017. }
  27018. },
  27019. side: {
  27020. height: math.unit(10.5, "feet"),
  27021. weight: math.unit(800, "lb"),
  27022. name: "Side",
  27023. image: {
  27024. source: "./media/characters/knox/side.svg",
  27025. extra: 244 / 218,
  27026. bottom: 14 / 260
  27027. }
  27028. },
  27029. },
  27030. [
  27031. {
  27032. name: "Compact",
  27033. height: math.unit(10.5, "feet"),
  27034. default: true
  27035. },
  27036. {
  27037. name: "Dynamax",
  27038. height: math.unit(210, "feet")
  27039. },
  27040. {
  27041. name: "Full Macro",
  27042. height: math.unit(850, "feet")
  27043. },
  27044. ]
  27045. ))
  27046. characterMakers.push(() => makeCharacter(
  27047. { name: "Kayda", species: ["dragon"], tags: ["anthro"] },
  27048. {
  27049. front: {
  27050. height: math.unit(28, "feet"),
  27051. weight: math.unit(10500, "lb"),
  27052. name: "Front",
  27053. image: {
  27054. source: "./media/characters/kayda/front.svg",
  27055. extra: 1536 / 1428,
  27056. bottom: 68.7 / 1603
  27057. }
  27058. },
  27059. back: {
  27060. height: math.unit(28, "feet"),
  27061. weight: math.unit(10500, "lb"),
  27062. name: "Back",
  27063. image: {
  27064. source: "./media/characters/kayda/back.svg",
  27065. extra: 1557 / 1464,
  27066. bottom: 39.5 / 1597.49
  27067. }
  27068. },
  27069. dick: {
  27070. height: math.unit(3.858, "feet"),
  27071. name: "Dick",
  27072. image: {
  27073. source: "./media/characters/kayda/dick.svg"
  27074. }
  27075. },
  27076. },
  27077. [
  27078. {
  27079. name: "Macro",
  27080. height: math.unit(28, "feet"),
  27081. default: true
  27082. },
  27083. ]
  27084. ))
  27085. characterMakers.push(() => makeCharacter(
  27086. { name: "Brian", species: ["barbary-lion"], tags: ["anthro"] },
  27087. {
  27088. front: {
  27089. height: math.unit(10 + 11 / 12, "feet"),
  27090. weight: math.unit(1400, "lb"),
  27091. name: "Front",
  27092. image: {
  27093. source: "./media/characters/brian/front.svg",
  27094. extra: 737 / 692,
  27095. bottom: 55.4 / 785
  27096. }
  27097. },
  27098. },
  27099. [
  27100. {
  27101. name: "Normal",
  27102. height: math.unit(10 + 11 / 12, "feet"),
  27103. default: true
  27104. },
  27105. ]
  27106. ))
  27107. characterMakers.push(() => makeCharacter(
  27108. { name: "Khemri", species: ["jackal"], tags: ["anthro"] },
  27109. {
  27110. front: {
  27111. height: math.unit(5 + 8 / 12, "feet"),
  27112. weight: math.unit(140, "lb"),
  27113. name: "Front",
  27114. image: {
  27115. source: "./media/characters/khemri/front.svg",
  27116. extra: 4780 / 4059,
  27117. bottom: 80.1 / 4859.25
  27118. }
  27119. },
  27120. },
  27121. [
  27122. {
  27123. name: "Micro",
  27124. height: math.unit(6, "inches")
  27125. },
  27126. {
  27127. name: "Normal",
  27128. height: math.unit(5 + 8 / 12, "feet"),
  27129. default: true
  27130. },
  27131. ]
  27132. ))
  27133. characterMakers.push(() => makeCharacter(
  27134. { name: "Felix Braveheart", species: ["cerberus", "wolf"], tags: ["anthro", "feral"] },
  27135. {
  27136. front: {
  27137. height: math.unit(13, "feet"),
  27138. weight: math.unit(1700, "lb"),
  27139. name: "Front",
  27140. image: {
  27141. source: "./media/characters/felix-braveheart/front.svg",
  27142. extra: 1222 / 1157,
  27143. bottom: 53.2 / 1280
  27144. }
  27145. },
  27146. back: {
  27147. height: math.unit(13, "feet"),
  27148. weight: math.unit(1700, "lb"),
  27149. name: "Back",
  27150. image: {
  27151. source: "./media/characters/felix-braveheart/back.svg",
  27152. extra: 1277 / 1203,
  27153. bottom: 50.2 / 1327
  27154. }
  27155. },
  27156. feral: {
  27157. height: math.unit(6, "feet"),
  27158. weight: math.unit(400, "lb"),
  27159. name: "Feral",
  27160. image: {
  27161. source: "./media/characters/felix-braveheart/feral.svg",
  27162. extra: 682 / 625,
  27163. bottom: 6.9 / 688
  27164. }
  27165. },
  27166. },
  27167. [
  27168. {
  27169. name: "Normal",
  27170. height: math.unit(13, "feet"),
  27171. default: true
  27172. },
  27173. ]
  27174. ))
  27175. characterMakers.push(() => makeCharacter(
  27176. { name: "Shadow Blade", species: ["horse"], tags: ["feral"] },
  27177. {
  27178. side: {
  27179. height: math.unit(5 + 11 / 12, "feet"),
  27180. weight: math.unit(1400, "lb"),
  27181. name: "Side",
  27182. image: {
  27183. source: "./media/characters/shadow-blade/side.svg",
  27184. extra: 1726 / 1267,
  27185. bottom: 58.4 / 1785
  27186. }
  27187. },
  27188. },
  27189. [
  27190. {
  27191. name: "Normal",
  27192. height: math.unit(5 + 11 / 12, "feet"),
  27193. default: true
  27194. },
  27195. ]
  27196. ))
  27197. characterMakers.push(() => makeCharacter(
  27198. { name: "Karla Halldor", species: ["nimbat"], tags: ["anthro"] },
  27199. {
  27200. front: {
  27201. height: math.unit(1 + 6 / 12, "feet"),
  27202. weight: math.unit(25, "lb"),
  27203. name: "Front",
  27204. image: {
  27205. source: "./media/characters/karla-halldor/front.svg",
  27206. extra: 1459 / 1383,
  27207. bottom: 12 / 1472
  27208. }
  27209. },
  27210. },
  27211. [
  27212. {
  27213. name: "Normal",
  27214. height: math.unit(1 + 6 / 12, "feet"),
  27215. default: true
  27216. },
  27217. ]
  27218. ))
  27219. characterMakers.push(() => makeCharacter(
  27220. { name: "Ariam", species: ["dragon"], tags: ["anthro"] },
  27221. {
  27222. front: {
  27223. height: math.unit(6 + 2 / 12, "feet"),
  27224. weight: math.unit(160, "lb"),
  27225. name: "Front",
  27226. image: {
  27227. source: "./media/characters/ariam/front.svg",
  27228. extra: 1073/976,
  27229. bottom: 52/1125
  27230. }
  27231. },
  27232. back: {
  27233. height: math.unit(6 + 2/12, "feet"),
  27234. weight: math.unit(160, "lb"),
  27235. name: "Back",
  27236. image: {
  27237. source: "./media/characters/ariam/back.svg",
  27238. extra: 1103/1023,
  27239. bottom: 9/1112
  27240. }
  27241. },
  27242. dressed: {
  27243. height: math.unit(6 + 2/12, "feet"),
  27244. weight: math.unit(160, "lb"),
  27245. name: "Dressed",
  27246. image: {
  27247. source: "./media/characters/ariam/dressed.svg",
  27248. extra: 1099/1009,
  27249. bottom: 25/1124
  27250. }
  27251. },
  27252. squatting: {
  27253. height: math.unit(4.1, "feet"),
  27254. weight: math.unit(160, "lb"),
  27255. name: "Squatting",
  27256. image: {
  27257. source: "./media/characters/ariam/squatting.svg",
  27258. extra: 2617 / 2112,
  27259. bottom: 61.2 / 2681,
  27260. }
  27261. },
  27262. },
  27263. [
  27264. {
  27265. name: "Normal",
  27266. height: math.unit(6 + 2 / 12, "feet"),
  27267. default: true
  27268. },
  27269. {
  27270. name: "Normal+",
  27271. height: math.unit(4, "meters")
  27272. },
  27273. {
  27274. name: "Macro",
  27275. height: math.unit(50, "meters")
  27276. },
  27277. {
  27278. name: "Macro+",
  27279. height: math.unit(100, "meters")
  27280. },
  27281. {
  27282. name: "Megamacro",
  27283. height: math.unit(20, "km")
  27284. },
  27285. {
  27286. name: "Caretaker",
  27287. height: math.unit(444, "megameters")
  27288. },
  27289. ]
  27290. ))
  27291. characterMakers.push(() => makeCharacter(
  27292. { name: "Qodri Class-of-'Fortwelve-Six", species: ["wolxi"], tags: ["anthro"] },
  27293. {
  27294. front: {
  27295. height: math.unit(1.67, "meters"),
  27296. weight: math.unit(140, "lb"),
  27297. name: "Front",
  27298. image: {
  27299. source: "./media/characters/qodri-class-of-'fortwelve-six/front.svg",
  27300. extra: 438 / 410,
  27301. bottom: 0.75 / 439
  27302. }
  27303. },
  27304. },
  27305. [
  27306. {
  27307. name: "Shrunken",
  27308. height: math.unit(7.6, "cm")
  27309. },
  27310. {
  27311. name: "Human Scale",
  27312. height: math.unit(1.67, "meters")
  27313. },
  27314. {
  27315. name: "Wolxi Scale",
  27316. height: math.unit(36.7, "meters"),
  27317. default: true
  27318. },
  27319. ]
  27320. ))
  27321. characterMakers.push(() => makeCharacter(
  27322. { name: "Izue Two-Mothers", species: ["wolxi"], tags: ["anthro"] },
  27323. {
  27324. front: {
  27325. height: math.unit(1.73, "meters"),
  27326. weight: math.unit(240, "lb"),
  27327. name: "Front",
  27328. image: {
  27329. source: "./media/characters/izue-two-mothers/front.svg",
  27330. extra: 469 / 437,
  27331. bottom: 1.24 / 470.6
  27332. }
  27333. },
  27334. },
  27335. [
  27336. {
  27337. name: "Shrunken",
  27338. height: math.unit(7.86, "cm")
  27339. },
  27340. {
  27341. name: "Human Scale",
  27342. height: math.unit(1.73, "meters")
  27343. },
  27344. {
  27345. name: "Wolxi Scale",
  27346. height: math.unit(38, "meters"),
  27347. default: true
  27348. },
  27349. ]
  27350. ))
  27351. characterMakers.push(() => makeCharacter(
  27352. { name: "Teeku Love-Shack", species: ["wolxi"], tags: ["anthro"] },
  27353. {
  27354. front: {
  27355. height: math.unit(1.55, "meters"),
  27356. weight: math.unit(120, "lb"),
  27357. name: "Front",
  27358. image: {
  27359. source: "./media/characters/teeku-love-shack/front.svg",
  27360. extra: 387 / 362,
  27361. bottom: 1.51 / 388
  27362. }
  27363. },
  27364. },
  27365. [
  27366. {
  27367. name: "Shrunken",
  27368. height: math.unit(7, "cm")
  27369. },
  27370. {
  27371. name: "Human Scale",
  27372. height: math.unit(1.55, "meters")
  27373. },
  27374. {
  27375. name: "Wolxi Scale",
  27376. height: math.unit(34.1, "meters"),
  27377. default: true
  27378. },
  27379. ]
  27380. ))
  27381. characterMakers.push(() => makeCharacter(
  27382. { name: "Dejma the Red", species: ["wolxi"], tags: ["anthro"] },
  27383. {
  27384. front: {
  27385. height: math.unit(1.83, "meters"),
  27386. weight: math.unit(135, "lb"),
  27387. name: "Front",
  27388. image: {
  27389. source: "./media/characters/dejma-the-red/front.svg",
  27390. extra: 480 / 458,
  27391. bottom: 1.8 / 482
  27392. }
  27393. },
  27394. },
  27395. [
  27396. {
  27397. name: "Shrunken",
  27398. height: math.unit(8.3, "cm")
  27399. },
  27400. {
  27401. name: "Human Scale",
  27402. height: math.unit(1.83, "meters")
  27403. },
  27404. {
  27405. name: "Wolxi Scale",
  27406. height: math.unit(40, "meters"),
  27407. default: true
  27408. },
  27409. ]
  27410. ))
  27411. characterMakers.push(() => makeCharacter(
  27412. { name: "Aki", species: ["deer"], tags: ["anthro"] },
  27413. {
  27414. front: {
  27415. height: math.unit(1.78, "meters"),
  27416. weight: math.unit(65, "kg"),
  27417. name: "Front",
  27418. image: {
  27419. source: "./media/characters/aki/front.svg",
  27420. extra: 452 / 415
  27421. }
  27422. },
  27423. frontNsfw: {
  27424. height: math.unit(1.78, "meters"),
  27425. weight: math.unit(65, "kg"),
  27426. name: "Front (NSFW)",
  27427. image: {
  27428. source: "./media/characters/aki/front-nsfw.svg",
  27429. extra: 452 / 415
  27430. }
  27431. },
  27432. back: {
  27433. height: math.unit(1.78, "meters"),
  27434. weight: math.unit(65, "kg"),
  27435. name: "Back",
  27436. image: {
  27437. source: "./media/characters/aki/back.svg",
  27438. extra: 452 / 415
  27439. }
  27440. },
  27441. rump: {
  27442. height: math.unit(2.05, "feet"),
  27443. name: "Rump",
  27444. image: {
  27445. source: "./media/characters/aki/rump.svg"
  27446. }
  27447. },
  27448. dick: {
  27449. height: math.unit(0.95, "feet"),
  27450. name: "Dick",
  27451. image: {
  27452. source: "./media/characters/aki/dick.svg"
  27453. }
  27454. },
  27455. },
  27456. [
  27457. {
  27458. name: "Micro",
  27459. height: math.unit(15, "cm")
  27460. },
  27461. {
  27462. name: "Normal",
  27463. height: math.unit(178, "cm"),
  27464. default: true
  27465. },
  27466. {
  27467. name: "Macro",
  27468. height: math.unit(214, "m")
  27469. },
  27470. {
  27471. name: "Macro+",
  27472. height: math.unit(534, "m")
  27473. },
  27474. ]
  27475. ))
  27476. characterMakers.push(() => makeCharacter(
  27477. { name: "Ari", species: ["catgirl"], tags: ["anthro"] },
  27478. {
  27479. front: {
  27480. height: math.unit(5 + 5 / 12, "feet"),
  27481. weight: math.unit(120, "lb"),
  27482. name: "Front",
  27483. image: {
  27484. source: "./media/characters/ari/front.svg",
  27485. extra: 1550/1471,
  27486. bottom: 39/1589
  27487. }
  27488. },
  27489. },
  27490. [
  27491. {
  27492. name: "Normal",
  27493. height: math.unit(5 + 5 / 12, "feet")
  27494. },
  27495. {
  27496. name: "Macro",
  27497. height: math.unit(100, "feet"),
  27498. default: true
  27499. },
  27500. {
  27501. name: "Megamacro",
  27502. height: math.unit(100, "miles")
  27503. },
  27504. {
  27505. name: "Gigamacro",
  27506. height: math.unit(80000, "miles")
  27507. },
  27508. ]
  27509. ))
  27510. characterMakers.push(() => makeCharacter(
  27511. { name: "Bolt", species: ["keldeo"], tags: ["feral"] },
  27512. {
  27513. side: {
  27514. height: math.unit(9, "feet"),
  27515. weight: math.unit(400, "kg"),
  27516. name: "Side",
  27517. image: {
  27518. source: "./media/characters/bolt/side.svg",
  27519. extra: 1126 / 896,
  27520. bottom: 60 / 1187.3,
  27521. }
  27522. },
  27523. },
  27524. [
  27525. {
  27526. name: "Micro",
  27527. height: math.unit(5, "inches")
  27528. },
  27529. {
  27530. name: "Normal",
  27531. height: math.unit(9, "feet"),
  27532. default: true
  27533. },
  27534. {
  27535. name: "Macro",
  27536. height: math.unit(700, "feet")
  27537. },
  27538. {
  27539. name: "Max Size",
  27540. height: math.unit(1.52e22, "yottameters")
  27541. },
  27542. ]
  27543. ))
  27544. characterMakers.push(() => makeCharacter(
  27545. { name: "Draekon Sylviar", species: ["dra'gal"], tags: ["anthro"] },
  27546. {
  27547. front: {
  27548. height: math.unit(4.3, "meters"),
  27549. weight: math.unit(3, "tons"),
  27550. name: "Front",
  27551. image: {
  27552. source: "./media/characters/draekon-sylviar/front.svg",
  27553. extra: 2072/1512,
  27554. bottom: 74/2146
  27555. }
  27556. },
  27557. back: {
  27558. height: math.unit(4.3, "meters"),
  27559. weight: math.unit(3, "tons"),
  27560. name: "Back",
  27561. image: {
  27562. source: "./media/characters/draekon-sylviar/back.svg",
  27563. extra: 1639/1483,
  27564. bottom: 41/1680
  27565. }
  27566. },
  27567. feral: {
  27568. height: math.unit(1.15, "meters"),
  27569. weight: math.unit(3, "tons"),
  27570. name: "Feral",
  27571. image: {
  27572. source: "./media/characters/draekon-sylviar/feral.svg",
  27573. extra: 1033/395,
  27574. bottom: 130/1163
  27575. }
  27576. },
  27577. maw: {
  27578. height: math.unit(1.3, "meters"),
  27579. name: "Maw",
  27580. image: {
  27581. source: "./media/characters/draekon-sylviar/maw.svg"
  27582. }
  27583. },
  27584. mawSeparated: {
  27585. height: math.unit(1.53, "meters"),
  27586. name: "Separated Maw",
  27587. image: {
  27588. source: "./media/characters/draekon-sylviar/maw-separated.svg"
  27589. }
  27590. },
  27591. tail: {
  27592. height: math.unit(1.15, "meters"),
  27593. name: "Tail",
  27594. image: {
  27595. source: "./media/characters/draekon-sylviar/tail.svg"
  27596. }
  27597. },
  27598. tailDick: {
  27599. height: math.unit(1.15, "meters"),
  27600. name: "Tail (Dick)",
  27601. image: {
  27602. source: "./media/characters/draekon-sylviar/tail-dick.svg"
  27603. }
  27604. },
  27605. tailDickSeparated: {
  27606. height: math.unit(1.19, "meters"),
  27607. name: "Tail (Separated Dick)",
  27608. image: {
  27609. source: "./media/characters/draekon-sylviar/tail-dick-separated.svg"
  27610. }
  27611. },
  27612. slit: {
  27613. height: math.unit(1, "meters"),
  27614. name: "Slit",
  27615. image: {
  27616. source: "./media/characters/draekon-sylviar/slit.svg"
  27617. }
  27618. },
  27619. dick: {
  27620. height: math.unit(1.15, "meters"),
  27621. name: "Dick",
  27622. image: {
  27623. source: "./media/characters/draekon-sylviar/dick.svg"
  27624. }
  27625. },
  27626. dickSeparated: {
  27627. height: math.unit(1.1, "meters"),
  27628. name: "Separated Dick",
  27629. image: {
  27630. source: "./media/characters/draekon-sylviar/dick-separated.svg"
  27631. }
  27632. },
  27633. sheath: {
  27634. height: math.unit(1.15, "meters"),
  27635. name: "Sheath",
  27636. image: {
  27637. source: "./media/characters/draekon-sylviar/sheath.svg"
  27638. }
  27639. },
  27640. },
  27641. [
  27642. {
  27643. name: "Small",
  27644. height: math.unit(4.53 / 2, "meters"),
  27645. default: true
  27646. },
  27647. {
  27648. name: "Normal",
  27649. height: math.unit(4.53, "meters"),
  27650. default: true
  27651. },
  27652. {
  27653. name: "Large",
  27654. height: math.unit(4.53 * 2, "meters"),
  27655. },
  27656. ]
  27657. ))
  27658. characterMakers.push(() => makeCharacter(
  27659. { name: "Brawler", species: ["german-shepherd"], tags: ["anthro"] },
  27660. {
  27661. front: {
  27662. height: math.unit(6 + 2 / 12, "feet"),
  27663. weight: math.unit(180, "lb"),
  27664. name: "Front",
  27665. image: {
  27666. source: "./media/characters/brawler/front.svg",
  27667. extra: 3301 / 3027,
  27668. bottom: 138 / 3439
  27669. }
  27670. },
  27671. },
  27672. [
  27673. {
  27674. name: "Normal",
  27675. height: math.unit(6 + 2 / 12, "feet"),
  27676. default: true
  27677. },
  27678. ]
  27679. ))
  27680. characterMakers.push(() => makeCharacter(
  27681. { name: "Alex", species: ["bayleef"], tags: ["anthro"] },
  27682. {
  27683. front: {
  27684. height: math.unit(11, "feet"),
  27685. weight: math.unit(1000, "lb"),
  27686. name: "Front",
  27687. image: {
  27688. source: "./media/characters/alex/front.svg",
  27689. bottom: 44.5 / 620
  27690. }
  27691. },
  27692. },
  27693. [
  27694. {
  27695. name: "Micro",
  27696. height: math.unit(5, "inches")
  27697. },
  27698. {
  27699. name: "Normal",
  27700. height: math.unit(11, "feet"),
  27701. default: true
  27702. },
  27703. {
  27704. name: "Macro",
  27705. height: math.unit(9.5e9, "feet")
  27706. },
  27707. {
  27708. name: "Max Size",
  27709. height: math.unit(1.4e283, "yottameters")
  27710. },
  27711. ]
  27712. ))
  27713. characterMakers.push(() => makeCharacter(
  27714. { name: "Zenari", species: ["zenari"], tags: ["anthro"] },
  27715. {
  27716. female: {
  27717. height: math.unit(29.9, "m"),
  27718. weight: math.unit(Math.pow((29.9 / 2), 3) * 80, "kg"),
  27719. name: "Female",
  27720. image: {
  27721. source: "./media/characters/zenari/female.svg",
  27722. extra: 3281.6 / 3217,
  27723. bottom: 72.2 / 3353
  27724. }
  27725. },
  27726. male: {
  27727. height: math.unit(27.7, "m"),
  27728. weight: math.unit(Math.pow((27.7 / 2), 3) * 80, "kg"),
  27729. name: "Male",
  27730. image: {
  27731. source: "./media/characters/zenari/male.svg",
  27732. extra: 3008 / 2991,
  27733. bottom: 54.6 / 3069
  27734. }
  27735. },
  27736. },
  27737. [
  27738. {
  27739. name: "Macro",
  27740. height: math.unit(29.7, "meters"),
  27741. default: true
  27742. },
  27743. ]
  27744. ))
  27745. characterMakers.push(() => makeCharacter(
  27746. { name: "Mactarian", species: ["mactarian"], tags: ["anthro"] },
  27747. {
  27748. female: {
  27749. height: math.unit(23.8, "m"),
  27750. weight: math.unit(Math.pow((23.8 / 2), 3) * 80, "kg"),
  27751. name: "Female",
  27752. image: {
  27753. source: "./media/characters/mactarian/female.svg",
  27754. extra: 2662 / 2569,
  27755. bottom: 73 / 2736
  27756. }
  27757. },
  27758. male: {
  27759. height: math.unit(23.8, "m"),
  27760. weight: math.unit(Math.pow((23.8 / 2), 3) * 80, "kg"),
  27761. name: "Male",
  27762. image: {
  27763. source: "./media/characters/mactarian/male.svg",
  27764. extra: 2673 / 2600,
  27765. bottom: 76 / 2750
  27766. }
  27767. },
  27768. },
  27769. [
  27770. {
  27771. name: "Macro",
  27772. height: math.unit(23.8, "meters"),
  27773. default: true
  27774. },
  27775. ]
  27776. ))
  27777. characterMakers.push(() => makeCharacter(
  27778. { name: "Umok", species: ["umok"], tags: ["anthro"] },
  27779. {
  27780. female: {
  27781. height: math.unit(19.3, "m"),
  27782. weight: math.unit(Math.pow((19.3 / 2), 3) * 60, "kg"),
  27783. name: "Female",
  27784. image: {
  27785. source: "./media/characters/umok/female.svg",
  27786. extra: 2186 / 2078,
  27787. bottom: 87 / 2277
  27788. }
  27789. },
  27790. male: {
  27791. height: math.unit(19.5, "m"),
  27792. weight: math.unit(Math.pow((19.5 / 2), 3) * 60, "kg"),
  27793. name: "Male",
  27794. image: {
  27795. source: "./media/characters/umok/male.svg",
  27796. extra: 2233 / 2140,
  27797. bottom: 24.4 / 2258
  27798. }
  27799. },
  27800. },
  27801. [
  27802. {
  27803. name: "Macro",
  27804. height: math.unit(19.3, "meters"),
  27805. default: true
  27806. },
  27807. ]
  27808. ))
  27809. characterMakers.push(() => makeCharacter(
  27810. { name: "Joraxian", species: ["joraxian"], tags: ["anthro"] },
  27811. {
  27812. female: {
  27813. height: math.unit(26.15, "m"),
  27814. weight: math.unit(Math.pow((26.15 / 2), 3) * 85, "kg"),
  27815. name: "Female",
  27816. image: {
  27817. source: "./media/characters/joraxian/female.svg",
  27818. extra: 2912 / 2824,
  27819. bottom: 36 / 2956
  27820. }
  27821. },
  27822. male: {
  27823. height: math.unit(25.4, "m"),
  27824. weight: math.unit(Math.pow((25.4 / 2), 3) * 85, "kg"),
  27825. name: "Male",
  27826. image: {
  27827. source: "./media/characters/joraxian/male.svg",
  27828. extra: 2877 / 2721,
  27829. bottom: 82 / 2967
  27830. }
  27831. },
  27832. },
  27833. [
  27834. {
  27835. name: "Macro",
  27836. height: math.unit(26.15, "meters"),
  27837. default: true
  27838. },
  27839. ]
  27840. ))
  27841. characterMakers.push(() => makeCharacter(
  27842. { name: "Sthara", species: ["sthara"], tags: ["anthro"] },
  27843. {
  27844. female: {
  27845. height: math.unit(21.6, "m"),
  27846. weight: math.unit(Math.pow((21.6 / 2), 3) * 80, "kg"),
  27847. name: "Female",
  27848. image: {
  27849. source: "./media/characters/sthara/female.svg",
  27850. extra: 2516 / 2347,
  27851. bottom: 21.5 / 2537
  27852. }
  27853. },
  27854. male: {
  27855. height: math.unit(24, "m"),
  27856. weight: math.unit(Math.pow((24 / 2), 3) * 80, "kg"),
  27857. name: "Male",
  27858. image: {
  27859. source: "./media/characters/sthara/male.svg",
  27860. extra: 2732 / 2607,
  27861. bottom: 23 / 2732
  27862. }
  27863. },
  27864. },
  27865. [
  27866. {
  27867. name: "Macro",
  27868. height: math.unit(21.6, "meters"),
  27869. default: true
  27870. },
  27871. ]
  27872. ))
  27873. characterMakers.push(() => makeCharacter(
  27874. { name: "Luka Bryzant", species: ["german-shepherd"], tags: ["anthro"] },
  27875. {
  27876. front: {
  27877. height: math.unit(6 + 4 / 12, "feet"),
  27878. weight: math.unit(175, "lb"),
  27879. name: "Front",
  27880. image: {
  27881. source: "./media/characters/luka-bryzant/front.svg",
  27882. extra: 311 / 289,
  27883. bottom: 4 / 315
  27884. }
  27885. },
  27886. back: {
  27887. height: math.unit(6 + 4 / 12, "feet"),
  27888. weight: math.unit(175, "lb"),
  27889. name: "Back",
  27890. image: {
  27891. source: "./media/characters/luka-bryzant/back.svg",
  27892. extra: 311 / 289,
  27893. bottom: 3.8 / 313.7
  27894. }
  27895. },
  27896. },
  27897. [
  27898. {
  27899. name: "Micro",
  27900. height: math.unit(10, "inches")
  27901. },
  27902. {
  27903. name: "Normal",
  27904. height: math.unit(6 + 4 / 12, "feet"),
  27905. default: true
  27906. },
  27907. {
  27908. name: "Large",
  27909. height: math.unit(12, "feet")
  27910. },
  27911. ]
  27912. ))
  27913. characterMakers.push(() => makeCharacter(
  27914. { name: "Aman Aquila", species: ["husky", "german-shepherd"], tags: ["anthro"] },
  27915. {
  27916. front: {
  27917. height: math.unit(5 + 7 / 12, "feet"),
  27918. weight: math.unit(185, "lb"),
  27919. name: "Front",
  27920. image: {
  27921. source: "./media/characters/aman-aquila/front.svg",
  27922. extra: 1013 / 976,
  27923. bottom: 45.6 / 1057
  27924. }
  27925. },
  27926. side: {
  27927. height: math.unit(5 + 7 / 12, "feet"),
  27928. weight: math.unit(185, "lb"),
  27929. name: "Side",
  27930. image: {
  27931. source: "./media/characters/aman-aquila/side.svg",
  27932. extra: 1054 / 1011,
  27933. bottom: 15 / 1070
  27934. }
  27935. },
  27936. back: {
  27937. height: math.unit(5 + 7 / 12, "feet"),
  27938. weight: math.unit(185, "lb"),
  27939. name: "Back",
  27940. image: {
  27941. source: "./media/characters/aman-aquila/back.svg",
  27942. extra: 1026 / 970,
  27943. bottom: 12 / 1039
  27944. }
  27945. },
  27946. head: {
  27947. height: math.unit(1.211, "feet"),
  27948. name: "Head",
  27949. image: {
  27950. source: "./media/characters/aman-aquila/head.svg",
  27951. }
  27952. },
  27953. },
  27954. [
  27955. {
  27956. name: "Minimicro",
  27957. height: math.unit(0.057, "inches")
  27958. },
  27959. {
  27960. name: "Micro",
  27961. height: math.unit(7, "inches")
  27962. },
  27963. {
  27964. name: "Mini",
  27965. height: math.unit(3 + 7 / 12, "feet")
  27966. },
  27967. {
  27968. name: "Normal",
  27969. height: math.unit(5 + 7 / 12, "feet"),
  27970. default: true
  27971. },
  27972. {
  27973. name: "Macro",
  27974. height: math.unit(157 + 7 / 12, "feet")
  27975. },
  27976. {
  27977. name: "Megamacro",
  27978. height: math.unit(1557 + 7 / 12, "feet")
  27979. },
  27980. {
  27981. name: "Gigamacro",
  27982. height: math.unit(15557 + 7 / 12, "feet")
  27983. },
  27984. ]
  27985. ))
  27986. characterMakers.push(() => makeCharacter(
  27987. { name: "Hiphae", species: ["mouse"], tags: ["anthro"] },
  27988. {
  27989. front: {
  27990. height: math.unit(3 + 2 / 12, "inches"),
  27991. weight: math.unit(0.3, "ounces"),
  27992. name: "Front",
  27993. image: {
  27994. source: "./media/characters/hiphae/front.svg",
  27995. extra: 1931 / 1683,
  27996. bottom: 24 / 1955
  27997. }
  27998. },
  27999. },
  28000. [
  28001. {
  28002. name: "Normal",
  28003. height: math.unit(3 + 1 / 2, "inches"),
  28004. default: true
  28005. },
  28006. ]
  28007. ))
  28008. characterMakers.push(() => makeCharacter(
  28009. { name: "Nicky", species: ["shark"], tags: ["anthro"] },
  28010. {
  28011. front: {
  28012. height: math.unit(5 + 10 / 12, "feet"),
  28013. weight: math.unit(165, "lb"),
  28014. name: "Front",
  28015. image: {
  28016. source: "./media/characters/nicky/front.svg",
  28017. extra: 3144 / 2886,
  28018. bottom: 45.6 / 3192
  28019. }
  28020. },
  28021. back: {
  28022. height: math.unit(5 + 10 / 12, "feet"),
  28023. weight: math.unit(165, "lb"),
  28024. name: "Back",
  28025. image: {
  28026. source: "./media/characters/nicky/back.svg",
  28027. extra: 3055 / 2804,
  28028. bottom: 28.4 / 3087
  28029. }
  28030. },
  28031. frontclothed: {
  28032. height: math.unit(5 + 10 / 12, "feet"),
  28033. weight: math.unit(165, "lb"),
  28034. name: "Front (Clothed)",
  28035. image: {
  28036. source: "./media/characters/nicky/front-clothed.svg",
  28037. extra: 3184.9 / 2926.9,
  28038. bottom: 86.5 / 3239.9
  28039. }
  28040. },
  28041. foot: {
  28042. height: math.unit(1.16, "feet"),
  28043. name: "Foot",
  28044. image: {
  28045. source: "./media/characters/nicky/foot.svg"
  28046. }
  28047. },
  28048. feet: {
  28049. height: math.unit(1.34, "feet"),
  28050. name: "Feet",
  28051. image: {
  28052. source: "./media/characters/nicky/feet.svg"
  28053. }
  28054. },
  28055. maw: {
  28056. height: math.unit(0.9, "feet"),
  28057. name: "Maw",
  28058. image: {
  28059. source: "./media/characters/nicky/maw.svg"
  28060. }
  28061. },
  28062. },
  28063. [
  28064. {
  28065. name: "Normal",
  28066. height: math.unit(5 + 10 / 12, "feet"),
  28067. default: true
  28068. },
  28069. {
  28070. name: "Macro",
  28071. height: math.unit(60, "feet")
  28072. },
  28073. {
  28074. name: "Megamacro",
  28075. height: math.unit(1, "mile")
  28076. },
  28077. ]
  28078. ))
  28079. characterMakers.push(() => makeCharacter(
  28080. { name: "Blair", species: ["seal"], tags: ["taur"] },
  28081. {
  28082. side: {
  28083. height: math.unit(10, "feet"),
  28084. weight: math.unit(600, "lb"),
  28085. name: "Side",
  28086. image: {
  28087. source: "./media/characters/blair/side.svg",
  28088. bottom: 16.6 / 475,
  28089. extra: 458 / 431
  28090. }
  28091. },
  28092. },
  28093. [
  28094. {
  28095. name: "Micro",
  28096. height: math.unit(8, "inches")
  28097. },
  28098. {
  28099. name: "Normal",
  28100. height: math.unit(10, "feet"),
  28101. default: true
  28102. },
  28103. {
  28104. name: "Macro",
  28105. height: math.unit(180, "feet")
  28106. },
  28107. ]
  28108. ))
  28109. characterMakers.push(() => makeCharacter(
  28110. { name: "Fisher", species: ["dog", "fish"], tags: ["anthro"] },
  28111. {
  28112. front: {
  28113. height: math.unit(5 + 4 / 12, "feet"),
  28114. weight: math.unit(125, "lb"),
  28115. name: "Front",
  28116. image: {
  28117. source: "./media/characters/fisher/front.svg",
  28118. extra: 444 / 390,
  28119. bottom: 2 / 444.8
  28120. }
  28121. },
  28122. },
  28123. [
  28124. {
  28125. name: "Micro",
  28126. height: math.unit(4, "inches")
  28127. },
  28128. {
  28129. name: "Normal",
  28130. height: math.unit(5 + 4 / 12, "feet"),
  28131. default: true
  28132. },
  28133. {
  28134. name: "Macro",
  28135. height: math.unit(100, "feet")
  28136. },
  28137. ]
  28138. ))
  28139. characterMakers.push(() => makeCharacter(
  28140. { name: "Gliss", species: ["sergal"], tags: ["anthro"] },
  28141. {
  28142. front: {
  28143. height: math.unit(6.71, "feet"),
  28144. weight: math.unit(200, "lb"),
  28145. preyCapacity: math.unit(1000000, "people"),
  28146. name: "Front",
  28147. image: {
  28148. source: "./media/characters/gliss/front.svg",
  28149. extra: 2347 / 2231,
  28150. bottom: 113 / 2462
  28151. }
  28152. },
  28153. hammerspaceSize: {
  28154. height: math.unit(6.71 * 717, "feet"),
  28155. weight: math.unit(200, "lb"),
  28156. preyCapacity: math.unit(1000000, "people"),
  28157. name: "Hammerspace Size",
  28158. image: {
  28159. source: "./media/characters/gliss/front.svg",
  28160. extra: 2347 / 2231,
  28161. bottom: 113 / 2462
  28162. }
  28163. },
  28164. },
  28165. [
  28166. {
  28167. name: "Normal",
  28168. height: math.unit(6.71, "feet"),
  28169. default: true
  28170. },
  28171. ]
  28172. ))
  28173. characterMakers.push(() => makeCharacter(
  28174. { name: "Dune Anderson", species: ["wolf"], tags: ["feral"] },
  28175. {
  28176. side: {
  28177. height: math.unit(1.44, "m"),
  28178. weight: math.unit(80, "kg"),
  28179. name: "Side",
  28180. image: {
  28181. source: "./media/characters/dune-anderson/side.svg",
  28182. bottom: 49 / 1426
  28183. }
  28184. },
  28185. },
  28186. [
  28187. {
  28188. name: "Wolf-sized",
  28189. height: math.unit(1.44, "meters")
  28190. },
  28191. {
  28192. name: "Normal",
  28193. height: math.unit(5.05, "meters"),
  28194. default: true
  28195. },
  28196. {
  28197. name: "Big",
  28198. height: math.unit(14.4, "meters")
  28199. },
  28200. {
  28201. name: "Huge",
  28202. height: math.unit(144, "meters")
  28203. },
  28204. ]
  28205. ))
  28206. characterMakers.push(() => makeCharacter(
  28207. { name: "Hind", species: ["protogen"], tags: ["anthro"] },
  28208. {
  28209. front: {
  28210. height: math.unit(6, "feet"),
  28211. weight: math.unit(220, "lb"),
  28212. name: "Front",
  28213. image: {
  28214. source: "./media/characters/hind/front.svg",
  28215. extra: 1912/1787,
  28216. bottom: 52/1964
  28217. }
  28218. },
  28219. back: {
  28220. height: math.unit(6, "feet"),
  28221. weight: math.unit(220, "lb"),
  28222. name: "Back",
  28223. image: {
  28224. source: "./media/characters/hind/back.svg",
  28225. extra: 1901/1794,
  28226. bottom: 26/1927
  28227. }
  28228. },
  28229. },
  28230. [
  28231. {
  28232. name: "Normal",
  28233. height: math.unit(6, "feet"),
  28234. default: true
  28235. },
  28236. ]
  28237. ))
  28238. characterMakers.push(() => makeCharacter(
  28239. { name: "Tharquench Sizestealer", species: ["skaven"], tags: ["anthro"] },
  28240. {
  28241. front: {
  28242. height: math.unit(2.1, "meters"),
  28243. weight: math.unit(150, "lb"),
  28244. name: "Front",
  28245. image: {
  28246. source: "./media/characters/tharquench-sizestealer/front.svg",
  28247. extra: 1605/1470,
  28248. bottom: 36/1641
  28249. }
  28250. },
  28251. frontAlt: {
  28252. height: math.unit(2.1, "meters"),
  28253. weight: math.unit(150, "lb"),
  28254. name: "Front (Alt)",
  28255. image: {
  28256. source: "./media/characters/tharquench-sizestealer/front-alt.svg",
  28257. extra: 2318 / 2063,
  28258. bottom: 93.4 / 2410
  28259. }
  28260. },
  28261. },
  28262. [
  28263. {
  28264. name: "Nano",
  28265. height: math.unit(1, "mm")
  28266. },
  28267. {
  28268. name: "Micro",
  28269. height: math.unit(1, "cm")
  28270. },
  28271. {
  28272. name: "Normal",
  28273. height: math.unit(2.1, "meters"),
  28274. default: true
  28275. },
  28276. ]
  28277. ))
  28278. characterMakers.push(() => makeCharacter(
  28279. { name: "Solex Draconov", species: ["dragon", "kitsune"], tags: ["anthro"] },
  28280. {
  28281. front: {
  28282. height: math.unit(7 + 5 / 12, "feet"),
  28283. weight: math.unit(357, "lb"),
  28284. name: "Front",
  28285. image: {
  28286. source: "./media/characters/solex-draconov/front.svg",
  28287. extra: 1993 / 1865,
  28288. bottom: 117 / 2111
  28289. }
  28290. },
  28291. },
  28292. [
  28293. {
  28294. name: "Natural Height",
  28295. height: math.unit(7 + 5 / 12, "feet"),
  28296. default: true
  28297. },
  28298. {
  28299. name: "Macro",
  28300. height: math.unit(350, "feet")
  28301. },
  28302. {
  28303. name: "Macro+",
  28304. height: math.unit(1000, "feet")
  28305. },
  28306. {
  28307. name: "Megamacro",
  28308. height: math.unit(20, "km")
  28309. },
  28310. {
  28311. name: "Megamacro+",
  28312. height: math.unit(1000, "km")
  28313. },
  28314. {
  28315. name: "Gigamacro",
  28316. height: math.unit(2.5, "Gm")
  28317. },
  28318. {
  28319. name: "Teramacro",
  28320. height: math.unit(15, "Tm")
  28321. },
  28322. {
  28323. name: "Galactic",
  28324. height: math.unit(30, "Zm")
  28325. },
  28326. {
  28327. name: "Universal",
  28328. height: math.unit(21000, "Ym")
  28329. },
  28330. {
  28331. name: "Omniversal",
  28332. height: math.unit(9.861e50, "Ym")
  28333. },
  28334. {
  28335. name: "Existential",
  28336. height: math.unit(1e300, "meters")
  28337. },
  28338. ]
  28339. ))
  28340. characterMakers.push(() => makeCharacter(
  28341. { name: "Mandarax", species: ["dragon"], tags: ["feral"] },
  28342. {
  28343. side: {
  28344. height: math.unit(25, "feet"),
  28345. weight: math.unit(90000, "lb"),
  28346. name: "Side",
  28347. image: {
  28348. source: "./media/characters/mandarax/side.svg",
  28349. extra: 614 / 332,
  28350. bottom: 55 / 630
  28351. }
  28352. },
  28353. lounging: {
  28354. height: math.unit(15.4, "feet"),
  28355. weight: math.unit(90000, "lb"),
  28356. name: "Lounging",
  28357. image: {
  28358. source: "./media/characters/mandarax/lounging.svg",
  28359. extra: 817/609,
  28360. bottom: 685/1502
  28361. }
  28362. },
  28363. head: {
  28364. height: math.unit(11.4, "feet"),
  28365. name: "Head",
  28366. image: {
  28367. source: "./media/characters/mandarax/head.svg"
  28368. }
  28369. },
  28370. belly: {
  28371. height: math.unit(33, "feet"),
  28372. name: "Belly",
  28373. preyCapacity: math.unit(500, "people"),
  28374. image: {
  28375. source: "./media/characters/mandarax/belly.svg"
  28376. }
  28377. },
  28378. dick: {
  28379. height: math.unit(8.46, "feet"),
  28380. name: "Dick",
  28381. image: {
  28382. source: "./media/characters/mandarax/dick.svg"
  28383. }
  28384. },
  28385. top: {
  28386. height: math.unit(28, "meters"),
  28387. name: "Top",
  28388. image: {
  28389. source: "./media/characters/mandarax/top.svg"
  28390. }
  28391. },
  28392. },
  28393. [
  28394. {
  28395. name: "Normal",
  28396. height: math.unit(25, "feet"),
  28397. default: true
  28398. },
  28399. ]
  28400. ))
  28401. characterMakers.push(() => makeCharacter(
  28402. { name: "Pixil", species: ["sylveon"], tags: ["anthro"] },
  28403. {
  28404. front: {
  28405. height: math.unit(5, "feet"),
  28406. weight: math.unit(90, "lb"),
  28407. name: "Front",
  28408. image: {
  28409. source: "./media/characters/pixil/front.svg",
  28410. extra: 2000 / 1618,
  28411. bottom: 12.3 / 2011
  28412. }
  28413. },
  28414. },
  28415. [
  28416. {
  28417. name: "Normal",
  28418. height: math.unit(5, "feet"),
  28419. default: true
  28420. },
  28421. {
  28422. name: "Megamacro",
  28423. height: math.unit(10, "miles"),
  28424. },
  28425. ]
  28426. ))
  28427. characterMakers.push(() => makeCharacter(
  28428. { name: "Angel", species: ["catgirl"], tags: ["anthro"] },
  28429. {
  28430. front: {
  28431. height: math.unit(7 + 2 / 12, "feet"),
  28432. weight: math.unit(200, "lb"),
  28433. name: "Front",
  28434. image: {
  28435. source: "./media/characters/angel/front.svg",
  28436. extra: 1946/1840,
  28437. bottom: 30/1976
  28438. }
  28439. },
  28440. },
  28441. [
  28442. {
  28443. name: "Normal",
  28444. height: math.unit(7 + 2 / 12, "feet"),
  28445. default: true
  28446. },
  28447. {
  28448. name: "Macro",
  28449. height: math.unit(1000, "feet")
  28450. },
  28451. {
  28452. name: "Megamacro",
  28453. height: math.unit(2, "miles")
  28454. },
  28455. {
  28456. name: "Gigamacro",
  28457. height: math.unit(20, "earths")
  28458. },
  28459. ]
  28460. ))
  28461. characterMakers.push(() => makeCharacter(
  28462. { name: "Mekana", species: ["cowgirl"], tags: ["anthro"] },
  28463. {
  28464. front: {
  28465. height: math.unit(5, "feet"),
  28466. weight: math.unit(180, "lb"),
  28467. name: "Front",
  28468. image: {
  28469. source: "./media/characters/mekana/front.svg",
  28470. extra: 1671 / 1605,
  28471. bottom: 3.5 / 1691
  28472. }
  28473. },
  28474. side: {
  28475. height: math.unit(5, "feet"),
  28476. weight: math.unit(180, "lb"),
  28477. name: "Side",
  28478. image: {
  28479. source: "./media/characters/mekana/side.svg",
  28480. extra: 1671 / 1605,
  28481. bottom: 3.5 / 1691
  28482. }
  28483. },
  28484. back: {
  28485. height: math.unit(5, "feet"),
  28486. weight: math.unit(180, "lb"),
  28487. name: "Back",
  28488. image: {
  28489. source: "./media/characters/mekana/back.svg",
  28490. extra: 1671 / 1605,
  28491. bottom: 3.5 / 1691
  28492. }
  28493. },
  28494. },
  28495. [
  28496. {
  28497. name: "Normal",
  28498. height: math.unit(5, "feet"),
  28499. default: true
  28500. },
  28501. ]
  28502. ))
  28503. characterMakers.push(() => makeCharacter(
  28504. { name: "Pixie", species: ["pony"], tags: ["anthro"] },
  28505. {
  28506. front: {
  28507. height: math.unit(4 + 6 / 12, "feet"),
  28508. weight: math.unit(80, "lb"),
  28509. name: "Front",
  28510. image: {
  28511. source: "./media/characters/pixie/front.svg",
  28512. extra: 1924 / 1825,
  28513. bottom: 22.4 / 1946
  28514. }
  28515. },
  28516. },
  28517. [
  28518. {
  28519. name: "Normal",
  28520. height: math.unit(4 + 6 / 12, "feet"),
  28521. default: true
  28522. },
  28523. {
  28524. name: "Macro",
  28525. height: math.unit(40, "feet")
  28526. },
  28527. ]
  28528. ))
  28529. characterMakers.push(() => makeCharacter(
  28530. { name: "The Lascivious", species: ["wolxi", "deity"], tags: ["anthro"] },
  28531. {
  28532. front: {
  28533. height: math.unit(2.1, "meters"),
  28534. weight: math.unit(200, "lb"),
  28535. name: "Front",
  28536. image: {
  28537. source: "./media/characters/the-lascivious/front.svg",
  28538. extra: 1 / 0.893,
  28539. bottom: 3.5 / 573.7
  28540. }
  28541. },
  28542. },
  28543. [
  28544. {
  28545. name: "Human Scale",
  28546. height: math.unit(2.1, "meters")
  28547. },
  28548. {
  28549. name: "Wolxi Scale",
  28550. height: math.unit(46.2, "m"),
  28551. default: true
  28552. },
  28553. {
  28554. name: "Boinker of Buildings",
  28555. height: math.unit(10, "km")
  28556. },
  28557. {
  28558. name: "Shagger of Skyscrapers",
  28559. height: math.unit(40, "km")
  28560. },
  28561. {
  28562. name: "Banger of Boroughs",
  28563. height: math.unit(4000, "km")
  28564. },
  28565. {
  28566. name: "Screwer of States",
  28567. height: math.unit(100000, "km")
  28568. },
  28569. {
  28570. name: "Pounder of Planets",
  28571. height: math.unit(2000000, "km")
  28572. },
  28573. ]
  28574. ))
  28575. characterMakers.push(() => makeCharacter(
  28576. { name: "AJ", species: ["wolf"], tags: ["anthro"] },
  28577. {
  28578. front: {
  28579. height: math.unit(6, "feet"),
  28580. weight: math.unit(150, "lb"),
  28581. name: "Front",
  28582. image: {
  28583. source: "./media/characters/aj/front.svg",
  28584. extra: 2039 / 1562,
  28585. bottom: 40 / 2079
  28586. }
  28587. },
  28588. },
  28589. [
  28590. {
  28591. name: "Normal",
  28592. height: math.unit(11 + 6 / 12, "feet"),
  28593. default: true
  28594. },
  28595. {
  28596. name: "Megamacro",
  28597. height: math.unit(60, "megameters")
  28598. },
  28599. ]
  28600. ))
  28601. characterMakers.push(() => makeCharacter(
  28602. { name: "Koros", species: ["dragon"], tags: ["feral"] },
  28603. {
  28604. side: {
  28605. height: math.unit(31 + 8 / 12, "feet"),
  28606. weight: math.unit(75000, "kg"),
  28607. name: "Side",
  28608. image: {
  28609. source: "./media/characters/koros/side.svg",
  28610. extra: 1442 / 1297,
  28611. bottom: 122.7 / 1562
  28612. }
  28613. },
  28614. dicksKingsCrown: {
  28615. height: math.unit(6, "feet"),
  28616. name: "Dicks (King's Crown)",
  28617. image: {
  28618. source: "./media/characters/koros/dicks-kings-crown.svg"
  28619. }
  28620. },
  28621. dicksTailSet: {
  28622. height: math.unit(3, "feet"),
  28623. name: "Dicks (Tail Set)",
  28624. image: {
  28625. source: "./media/characters/koros/dicks-tail-set.svg"
  28626. }
  28627. },
  28628. dickCumming: {
  28629. height: math.unit(7.98, "feet"),
  28630. name: "Dick (Cumming)",
  28631. image: {
  28632. source: "./media/characters/koros/dick-cumming.svg"
  28633. }
  28634. },
  28635. dicksBack: {
  28636. height: math.unit(5.9, "feet"),
  28637. name: "Dicks (Back)",
  28638. image: {
  28639. source: "./media/characters/koros/dicks-back.svg"
  28640. }
  28641. },
  28642. dicksFront: {
  28643. height: math.unit(3.72, "feet"),
  28644. name: "Dicks (Front)",
  28645. image: {
  28646. source: "./media/characters/koros/dicks-front.svg"
  28647. }
  28648. },
  28649. dicksPeeking: {
  28650. height: math.unit(3.0, "feet"),
  28651. name: "Dicks (Peeking)",
  28652. image: {
  28653. source: "./media/characters/koros/dicks-peeking.svg"
  28654. }
  28655. },
  28656. eye: {
  28657. height: math.unit(1.7, "feet"),
  28658. name: "Eye",
  28659. image: {
  28660. source: "./media/characters/koros/eye.svg"
  28661. }
  28662. },
  28663. headFront: {
  28664. height: math.unit(11.69, "feet"),
  28665. name: "Head (Front)",
  28666. image: {
  28667. source: "./media/characters/koros/head-front.svg"
  28668. }
  28669. },
  28670. headSide: {
  28671. height: math.unit(14, "feet"),
  28672. name: "Head (Side)",
  28673. image: {
  28674. source: "./media/characters/koros/head-side.svg"
  28675. }
  28676. },
  28677. leg: {
  28678. height: math.unit(17, "feet"),
  28679. name: "Leg",
  28680. image: {
  28681. source: "./media/characters/koros/leg.svg"
  28682. }
  28683. },
  28684. mawSide: {
  28685. height: math.unit(12.8, "feet"),
  28686. name: "Maw (Side)",
  28687. image: {
  28688. source: "./media/characters/koros/maw-side.svg"
  28689. }
  28690. },
  28691. mawSpitting: {
  28692. height: math.unit(17, "feet"),
  28693. name: "Maw (Spitting)",
  28694. image: {
  28695. source: "./media/characters/koros/maw-spitting.svg"
  28696. }
  28697. },
  28698. slit: {
  28699. height: math.unit(2.8, "feet"),
  28700. name: "Slit",
  28701. image: {
  28702. source: "./media/characters/koros/slit.svg"
  28703. }
  28704. },
  28705. stomach: {
  28706. height: math.unit(6.8, "feet"),
  28707. preyCapacity: math.unit(20, "people"),
  28708. name: "Stomach",
  28709. image: {
  28710. source: "./media/characters/koros/stomach.svg"
  28711. }
  28712. },
  28713. wingspanBottom: {
  28714. height: math.unit(114, "feet"),
  28715. name: "Wingspan (Bottom)",
  28716. image: {
  28717. source: "./media/characters/koros/wingspan-bottom.svg"
  28718. }
  28719. },
  28720. wingspanTop: {
  28721. height: math.unit(104, "feet"),
  28722. name: "Wingspan (Top)",
  28723. image: {
  28724. source: "./media/characters/koros/wingspan-top.svg"
  28725. }
  28726. },
  28727. },
  28728. [
  28729. {
  28730. name: "Normal",
  28731. height: math.unit(31 + 8 / 12, "feet"),
  28732. default: true
  28733. },
  28734. ]
  28735. ))
  28736. characterMakers.push(() => makeCharacter(
  28737. { name: "Vexx", species: ["skarlan"], tags: ["anthro"] },
  28738. {
  28739. front: {
  28740. height: math.unit(18 + 5 / 12, "feet"),
  28741. weight: math.unit(3750, "kg"),
  28742. name: "Front",
  28743. image: {
  28744. source: "./media/characters/vexx/front.svg",
  28745. extra: 426 / 396,
  28746. bottom: 31.5 / 458
  28747. }
  28748. },
  28749. maw: {
  28750. height: math.unit(6, "feet"),
  28751. name: "Maw",
  28752. image: {
  28753. source: "./media/characters/vexx/maw.svg"
  28754. }
  28755. },
  28756. },
  28757. [
  28758. {
  28759. name: "Normal",
  28760. height: math.unit(18 + 5 / 12, "feet"),
  28761. default: true
  28762. },
  28763. ]
  28764. ))
  28765. characterMakers.push(() => makeCharacter(
  28766. { name: "Baadra", species: ["skarlan"], tags: ["anthro"] },
  28767. {
  28768. front: {
  28769. height: math.unit(17 + 6 / 12, "feet"),
  28770. weight: math.unit(150, "lb"),
  28771. name: "Front",
  28772. image: {
  28773. source: "./media/characters/baadra/front.svg",
  28774. extra: 1694/1553,
  28775. bottom: 179/1873
  28776. }
  28777. },
  28778. frontAlt: {
  28779. height: math.unit(17 + 6 / 12, "feet"),
  28780. weight: math.unit(150, "lb"),
  28781. name: "Front (Alt)",
  28782. image: {
  28783. source: "./media/characters/baadra/front-alt.svg",
  28784. extra: 3137 / 2890,
  28785. bottom: 168.4 / 3305
  28786. }
  28787. },
  28788. back: {
  28789. height: math.unit(17 + 6 / 12, "feet"),
  28790. weight: math.unit(150, "lb"),
  28791. name: "Back",
  28792. image: {
  28793. source: "./media/characters/baadra/back.svg",
  28794. extra: 3142 / 2890,
  28795. bottom: 220 / 3371
  28796. }
  28797. },
  28798. head: {
  28799. height: math.unit(5.45, "feet"),
  28800. name: "Head",
  28801. image: {
  28802. source: "./media/characters/baadra/head.svg"
  28803. }
  28804. },
  28805. headAngry: {
  28806. height: math.unit(4.95, "feet"),
  28807. name: "Head (Angry)",
  28808. image: {
  28809. source: "./media/characters/baadra/head-angry.svg"
  28810. }
  28811. },
  28812. headOpen: {
  28813. height: math.unit(6, "feet"),
  28814. name: "Head (Open)",
  28815. image: {
  28816. source: "./media/characters/baadra/head-open.svg"
  28817. }
  28818. },
  28819. },
  28820. [
  28821. {
  28822. name: "Normal",
  28823. height: math.unit(17 + 6 / 12, "feet"),
  28824. default: true
  28825. },
  28826. ]
  28827. ))
  28828. characterMakers.push(() => makeCharacter(
  28829. { name: "Juri", species: ["kitsune"], tags: ["anthro"] },
  28830. {
  28831. front: {
  28832. height: math.unit(7 + 3 / 12, "feet"),
  28833. weight: math.unit(180, "lb"),
  28834. name: "Front",
  28835. image: {
  28836. source: "./media/characters/juri/front.svg",
  28837. extra: 1401 / 1237,
  28838. bottom: 18.5 / 1418
  28839. }
  28840. },
  28841. side: {
  28842. height: math.unit(7 + 3 / 12, "feet"),
  28843. weight: math.unit(180, "lb"),
  28844. name: "Side",
  28845. image: {
  28846. source: "./media/characters/juri/side.svg",
  28847. extra: 1424 / 1242,
  28848. bottom: 18.5 / 1447
  28849. }
  28850. },
  28851. sitting: {
  28852. height: math.unit(6, "feet"),
  28853. weight: math.unit(180, "lb"),
  28854. name: "Sitting",
  28855. image: {
  28856. source: "./media/characters/juri/sitting.svg",
  28857. extra: 1270 / 1143,
  28858. bottom: 100 / 1343
  28859. }
  28860. },
  28861. back: {
  28862. height: math.unit(7 + 3 / 12, "feet"),
  28863. weight: math.unit(180, "lb"),
  28864. name: "Back",
  28865. image: {
  28866. source: "./media/characters/juri/back.svg",
  28867. extra: 1377 / 1240,
  28868. bottom: 23.7 / 1405
  28869. }
  28870. },
  28871. maw: {
  28872. height: math.unit(2.8, "feet"),
  28873. name: "Maw",
  28874. image: {
  28875. source: "./media/characters/juri/maw.svg"
  28876. }
  28877. },
  28878. stomach: {
  28879. height: math.unit(0.89, "feet"),
  28880. preyCapacity: math.unit(4, "liters"),
  28881. name: "Stomach",
  28882. image: {
  28883. source: "./media/characters/juri/stomach.svg"
  28884. }
  28885. },
  28886. },
  28887. [
  28888. {
  28889. name: "Normal",
  28890. height: math.unit(7 + 3 / 12, "feet"),
  28891. default: true
  28892. },
  28893. ]
  28894. ))
  28895. characterMakers.push(() => makeCharacter(
  28896. { name: "Maxene Sita", species: ["fox", "kitsune", "hellhound"], tags: ["anthro"] },
  28897. {
  28898. fox: {
  28899. height: math.unit(5 + 6 / 12, "feet"),
  28900. weight: math.unit(140, "lb"),
  28901. name: "Fox",
  28902. image: {
  28903. source: "./media/characters/maxene-sita/fox.svg",
  28904. extra: 146 / 138,
  28905. bottom: 2.1 / 148.19
  28906. }
  28907. },
  28908. foxLaying: {
  28909. height: math.unit(1.70, "feet"),
  28910. weight: math.unit(140, "lb"),
  28911. name: "Fox (Laying)",
  28912. image: {
  28913. source: "./media/characters/maxene-sita/fox-laying.svg",
  28914. extra: 910 / 572,
  28915. bottom: 71 / 981
  28916. }
  28917. },
  28918. kitsune: {
  28919. height: math.unit(10, "feet"),
  28920. weight: math.unit(800, "lb"),
  28921. name: "Kitsune",
  28922. image: {
  28923. source: "./media/characters/maxene-sita/kitsune.svg",
  28924. extra: 185 / 176,
  28925. bottom: 4.7 / 189.9
  28926. }
  28927. },
  28928. hellhound: {
  28929. height: math.unit(10, "feet"),
  28930. weight: math.unit(700, "lb"),
  28931. name: "Hellhound",
  28932. image: {
  28933. source: "./media/characters/maxene-sita/hellhound.svg",
  28934. extra: 1600 / 1545,
  28935. bottom: 81 / 1681
  28936. }
  28937. },
  28938. },
  28939. [
  28940. {
  28941. name: "Normal",
  28942. height: math.unit(5 + 6 / 12, "feet"),
  28943. default: true
  28944. },
  28945. ]
  28946. ))
  28947. characterMakers.push(() => makeCharacter(
  28948. { name: "Maia", species: ["mew"], tags: ["feral"] },
  28949. {
  28950. front: {
  28951. height: math.unit(3 + 4 / 12, "feet"),
  28952. weight: math.unit(70, "lb"),
  28953. name: "Front",
  28954. image: {
  28955. source: "./media/characters/maia/front.svg",
  28956. extra: 227 / 219.5,
  28957. bottom: 40 / 267
  28958. }
  28959. },
  28960. back: {
  28961. height: math.unit(3 + 4 / 12, "feet"),
  28962. weight: math.unit(70, "lb"),
  28963. name: "Back",
  28964. image: {
  28965. source: "./media/characters/maia/back.svg",
  28966. extra: 237 / 225
  28967. }
  28968. },
  28969. },
  28970. [
  28971. {
  28972. name: "Normal",
  28973. height: math.unit(3 + 4 / 12, "feet"),
  28974. default: true
  28975. },
  28976. ]
  28977. ))
  28978. characterMakers.push(() => makeCharacter(
  28979. { name: "Jabaro", species: ["cheetah"], tags: ["anthro"] },
  28980. {
  28981. front: {
  28982. height: math.unit(5 + 10 / 12, "feet"),
  28983. weight: math.unit(197, "lb"),
  28984. name: "Front",
  28985. image: {
  28986. source: "./media/characters/jabaro/front.svg",
  28987. extra: 225 / 216,
  28988. bottom: 5.06 / 230
  28989. }
  28990. },
  28991. back: {
  28992. height: math.unit(5 + 10 / 12, "feet"),
  28993. weight: math.unit(197, "lb"),
  28994. name: "Back",
  28995. image: {
  28996. source: "./media/characters/jabaro/back.svg",
  28997. extra: 225 / 219,
  28998. bottom: 1.9 / 227
  28999. }
  29000. },
  29001. },
  29002. [
  29003. {
  29004. name: "Normal",
  29005. height: math.unit(5 + 10 / 12, "feet"),
  29006. default: true
  29007. },
  29008. ]
  29009. ))
  29010. characterMakers.push(() => makeCharacter(
  29011. { name: "Risa", species: ["corvid"], tags: ["anthro"] },
  29012. {
  29013. front: {
  29014. height: math.unit(5 + 8 / 12, "feet"),
  29015. weight: math.unit(139, "lb"),
  29016. name: "Front",
  29017. image: {
  29018. source: "./media/characters/risa/front.svg",
  29019. extra: 270 / 260,
  29020. bottom: 11.2 / 282
  29021. }
  29022. },
  29023. back: {
  29024. height: math.unit(5 + 8 / 12, "feet"),
  29025. weight: math.unit(139, "lb"),
  29026. name: "Back",
  29027. image: {
  29028. source: "./media/characters/risa/back.svg",
  29029. extra: 264 / 255,
  29030. bottom: 4 / 268
  29031. }
  29032. },
  29033. },
  29034. [
  29035. {
  29036. name: "Normal",
  29037. height: math.unit(5 + 8 / 12, "feet"),
  29038. default: true
  29039. },
  29040. ]
  29041. ))
  29042. characterMakers.push(() => makeCharacter(
  29043. { name: "Weatley", species: ["chimera"], tags: ["anthro"] },
  29044. {
  29045. front: {
  29046. height: math.unit(2 + 11 / 12, "feet"),
  29047. weight: math.unit(30, "lb"),
  29048. name: "Front",
  29049. image: {
  29050. source: "./media/characters/weatley/front.svg",
  29051. bottom: 10.7 / 414,
  29052. extra: 403.5 / 362
  29053. }
  29054. },
  29055. back: {
  29056. height: math.unit(2 + 11 / 12, "feet"),
  29057. weight: math.unit(30, "lb"),
  29058. name: "Back",
  29059. image: {
  29060. source: "./media/characters/weatley/back.svg",
  29061. bottom: 10.7 / 414,
  29062. extra: 403.5 / 362
  29063. }
  29064. },
  29065. },
  29066. [
  29067. {
  29068. name: "Normal",
  29069. height: math.unit(2 + 11 / 12, "feet"),
  29070. default: true
  29071. },
  29072. ]
  29073. ))
  29074. characterMakers.push(() => makeCharacter(
  29075. { name: "Mercury Crescent", species: ["dragon", "kobold"], tags: ["anthro"] },
  29076. {
  29077. front: {
  29078. height: math.unit(5 + 2 / 12, "feet"),
  29079. weight: math.unit(50, "kg"),
  29080. name: "Front",
  29081. image: {
  29082. source: "./media/characters/mercury-crescent/front.svg",
  29083. extra: 1088 / 1033,
  29084. bottom: 18.9 / 1109
  29085. }
  29086. },
  29087. },
  29088. [
  29089. {
  29090. name: "Normal",
  29091. height: math.unit(5 + 2 / 12, "feet"),
  29092. default: true
  29093. },
  29094. ]
  29095. ))
  29096. characterMakers.push(() => makeCharacter(
  29097. { name: "Diamond Jones", species: ["kobold"], tags: ["anthro"] },
  29098. {
  29099. front: {
  29100. height: math.unit(2, "feet"),
  29101. weight: math.unit(15, "kg"),
  29102. name: "Front",
  29103. image: {
  29104. source: "./media/characters/diamond-jones/front.svg",
  29105. extra: 727/723,
  29106. bottom: 46/773
  29107. }
  29108. },
  29109. },
  29110. [
  29111. {
  29112. name: "Normal",
  29113. height: math.unit(2, "feet"),
  29114. default: true
  29115. },
  29116. ]
  29117. ))
  29118. characterMakers.push(() => makeCharacter(
  29119. { name: "Sweet Bit", species: ["gestalt", "kobold"], tags: ["anthro"] },
  29120. {
  29121. front: {
  29122. height: math.unit(3, "feet"),
  29123. weight: math.unit(30, "kg"),
  29124. name: "Front",
  29125. image: {
  29126. source: "./media/characters/sweet-bit/front.svg",
  29127. extra: 675 / 567,
  29128. bottom: 27.7 / 703
  29129. }
  29130. },
  29131. },
  29132. [
  29133. {
  29134. name: "Normal",
  29135. height: math.unit(3, "feet"),
  29136. default: true
  29137. },
  29138. ]
  29139. ))
  29140. characterMakers.push(() => makeCharacter(
  29141. { name: "Umbrazen", species: ["mimic"], tags: ["feral"] },
  29142. {
  29143. side: {
  29144. height: math.unit(9.178, "feet"),
  29145. weight: math.unit(500, "lb"),
  29146. name: "Side",
  29147. image: {
  29148. source: "./media/characters/umbrazen/side.svg",
  29149. extra: 1730 / 1473,
  29150. bottom: 34.6 / 1765
  29151. }
  29152. },
  29153. },
  29154. [
  29155. {
  29156. name: "Normal",
  29157. height: math.unit(9.178, "feet"),
  29158. default: true
  29159. },
  29160. ]
  29161. ))
  29162. characterMakers.push(() => makeCharacter(
  29163. { name: "Arlist", species: ["jackal"], tags: ["anthro"] },
  29164. {
  29165. front: {
  29166. height: math.unit(10, "feet"),
  29167. weight: math.unit(750, "lb"),
  29168. name: "Front",
  29169. image: {
  29170. source: "./media/characters/arlist/front.svg",
  29171. extra: 961 / 778,
  29172. bottom: 6.2 / 986
  29173. }
  29174. },
  29175. },
  29176. [
  29177. {
  29178. name: "Normal",
  29179. height: math.unit(10, "feet"),
  29180. default: true
  29181. },
  29182. ]
  29183. ))
  29184. characterMakers.push(() => makeCharacter(
  29185. { name: "Aradel", species: ["jackalope"], tags: ["anthro"] },
  29186. {
  29187. front: {
  29188. height: math.unit(5 + 1 / 12, "feet"),
  29189. weight: math.unit(110, "lb"),
  29190. name: "Front",
  29191. image: {
  29192. source: "./media/characters/aradel/front.svg",
  29193. extra: 324 / 303,
  29194. bottom: 3.6 / 329.4
  29195. }
  29196. },
  29197. },
  29198. [
  29199. {
  29200. name: "Normal",
  29201. height: math.unit(5 + 1 / 12, "feet"),
  29202. default: true
  29203. },
  29204. ]
  29205. ))
  29206. characterMakers.push(() => makeCharacter(
  29207. { name: "Serryn", species: ["calico-rat"], tags: ["anthro"] },
  29208. {
  29209. dressed: {
  29210. height: math.unit(3 + 8 / 12, "feet"),
  29211. weight: math.unit(50, "lb"),
  29212. name: "Dressed",
  29213. image: {
  29214. source: "./media/characters/serryn/dressed.svg",
  29215. extra: 1792 / 1656,
  29216. bottom: 43.5 / 1840
  29217. }
  29218. },
  29219. nude: {
  29220. height: math.unit(3 + 8 / 12, "feet"),
  29221. weight: math.unit(50, "lb"),
  29222. name: "Nude",
  29223. image: {
  29224. source: "./media/characters/serryn/nude.svg",
  29225. extra: 1792 / 1656,
  29226. bottom: 43.5 / 1840
  29227. }
  29228. },
  29229. },
  29230. [
  29231. {
  29232. name: "Normal",
  29233. height: math.unit(3 + 8 / 12, "feet"),
  29234. default: true
  29235. },
  29236. ]
  29237. ))
  29238. characterMakers.push(() => makeCharacter(
  29239. { name: "Xavier Thyme", "species": ["fox"], tags: ["anthro"] },
  29240. {
  29241. front: {
  29242. height: math.unit(7 + 10 / 12, "feet"),
  29243. weight: math.unit(255, "lb"),
  29244. name: "Front",
  29245. image: {
  29246. source: "./media/characters/xavier-thyme/front.svg",
  29247. extra: 3733 / 3642,
  29248. bottom: 131 / 3869
  29249. }
  29250. },
  29251. frontRaven: {
  29252. height: math.unit(7 + 10 / 12, "feet"),
  29253. weight: math.unit(255, "lb"),
  29254. name: "Front (Raven)",
  29255. image: {
  29256. source: "./media/characters/xavier-thyme/front-raven.svg",
  29257. extra: 4385 / 3642,
  29258. bottom: 131 / 4517
  29259. }
  29260. },
  29261. },
  29262. [
  29263. {
  29264. name: "Normal",
  29265. height: math.unit(7 + 10 / 12, "feet"),
  29266. default: true
  29267. },
  29268. ]
  29269. ))
  29270. characterMakers.push(() => makeCharacter(
  29271. { name: "Kiki", species: ["rabbit", "panda"], tags: ["anthro"] },
  29272. {
  29273. front: {
  29274. height: math.unit(1.6, "m"),
  29275. weight: math.unit(50, "kg"),
  29276. name: "Front",
  29277. image: {
  29278. source: "./media/characters/kiki/front.svg",
  29279. extra: 4682 / 3610,
  29280. bottom: 115 / 4777
  29281. }
  29282. },
  29283. },
  29284. [
  29285. {
  29286. name: "Normal",
  29287. height: math.unit(1.6, "meters"),
  29288. default: true
  29289. },
  29290. ]
  29291. ))
  29292. characterMakers.push(() => makeCharacter(
  29293. { name: "Ryoko", species: ["oni"], tags: ["anthro"] },
  29294. {
  29295. front: {
  29296. height: math.unit(50, "m"),
  29297. weight: math.unit(500, "tonnes"),
  29298. name: "Front",
  29299. image: {
  29300. source: "./media/characters/ryoko/front.svg",
  29301. extra: 4632 / 3926,
  29302. bottom: 193 / 4823
  29303. }
  29304. },
  29305. },
  29306. [
  29307. {
  29308. name: "Normal",
  29309. height: math.unit(50, "meters"),
  29310. default: true
  29311. },
  29312. ]
  29313. ))
  29314. characterMakers.push(() => makeCharacter(
  29315. { name: "Elio", species: ["umbra"], tags: ["anthro"] },
  29316. {
  29317. front: {
  29318. height: math.unit(30, "m"),
  29319. weight: math.unit(22, "tonnes"),
  29320. name: "Front",
  29321. image: {
  29322. source: "./media/characters/elio/front.svg",
  29323. extra: 4582 / 3720,
  29324. bottom: 236 / 4828
  29325. }
  29326. },
  29327. },
  29328. [
  29329. {
  29330. name: "Normal",
  29331. height: math.unit(30, "meters"),
  29332. default: true
  29333. },
  29334. ]
  29335. ))
  29336. characterMakers.push(() => makeCharacter(
  29337. { name: "Azura", species: ["phoenix"], tags: ["anthro"] },
  29338. {
  29339. front: {
  29340. height: math.unit(6 + 3 / 12, "feet"),
  29341. weight: math.unit(120, "lb"),
  29342. name: "Front",
  29343. image: {
  29344. source: "./media/characters/azura/front.svg",
  29345. extra: 1149 / 1135,
  29346. bottom: 45 / 1194
  29347. }
  29348. },
  29349. frontClothed: {
  29350. height: math.unit(6 + 3 / 12, "feet"),
  29351. weight: math.unit(120, "lb"),
  29352. name: "Front (Clothed)",
  29353. image: {
  29354. source: "./media/characters/azura/front-clothed.svg",
  29355. extra: 1149 / 1135,
  29356. bottom: 45 / 1194
  29357. }
  29358. },
  29359. },
  29360. [
  29361. {
  29362. name: "Normal",
  29363. height: math.unit(6 + 3 / 12, "feet"),
  29364. default: true
  29365. },
  29366. {
  29367. name: "Macro",
  29368. height: math.unit(20 + 6 / 12, "feet")
  29369. },
  29370. {
  29371. name: "Megamacro",
  29372. height: math.unit(12, "miles")
  29373. },
  29374. {
  29375. name: "Gigamacro",
  29376. height: math.unit(10000, "miles")
  29377. },
  29378. {
  29379. name: "Teramacro",
  29380. height: math.unit(900000, "miles")
  29381. },
  29382. ]
  29383. ))
  29384. characterMakers.push(() => makeCharacter(
  29385. { name: "Zeus", species: ["pegasus"], tags: ["anthro"] },
  29386. {
  29387. front: {
  29388. height: math.unit(12, "feet"),
  29389. weight: math.unit(1, "ton"),
  29390. capacity: math.unit(660000, "gallons"),
  29391. name: "Front",
  29392. image: {
  29393. source: "./media/characters/zeus/front.svg",
  29394. extra: 5005 / 4717,
  29395. bottom: 363 / 5388
  29396. }
  29397. },
  29398. },
  29399. [
  29400. {
  29401. name: "Normal",
  29402. height: math.unit(12, "feet")
  29403. },
  29404. {
  29405. name: "Preferred Size",
  29406. height: math.unit(0.5, "miles"),
  29407. default: true
  29408. },
  29409. {
  29410. name: "Giga Horse",
  29411. height: math.unit(300, "miles")
  29412. },
  29413. {
  29414. name: "Riding Planets",
  29415. height: math.unit(30, "megameters")
  29416. },
  29417. {
  29418. name: "Cosmic Giant",
  29419. height: math.unit(3, "zettameters")
  29420. },
  29421. {
  29422. name: "Breeding God",
  29423. height: math.unit(9.92e22, "yottameters")
  29424. },
  29425. ]
  29426. ))
  29427. characterMakers.push(() => makeCharacter(
  29428. { name: "Fang", species: ["monster"], tags: ["feral"] },
  29429. {
  29430. side: {
  29431. height: math.unit(9, "feet"),
  29432. weight: math.unit(1500, "kg"),
  29433. name: "Side",
  29434. image: {
  29435. source: "./media/characters/fang/side.svg",
  29436. extra: 924 / 866,
  29437. bottom: 47.5 / 972.3
  29438. }
  29439. },
  29440. },
  29441. [
  29442. {
  29443. name: "Normal",
  29444. height: math.unit(9, "feet"),
  29445. default: true
  29446. },
  29447. {
  29448. name: "Macro",
  29449. height: math.unit(75 + 6 / 12, "feet")
  29450. },
  29451. {
  29452. name: "Teramacro",
  29453. height: math.unit(50000, "miles")
  29454. },
  29455. ]
  29456. ))
  29457. characterMakers.push(() => makeCharacter(
  29458. { name: "Rekhit", species: ["horse"], tags: ["anthro"] },
  29459. {
  29460. front: {
  29461. height: math.unit(10, "feet"),
  29462. weight: math.unit(2, "tons"),
  29463. name: "Front",
  29464. image: {
  29465. source: "./media/characters/rekhit/front.svg",
  29466. extra: 2796 / 2590,
  29467. bottom: 225 / 3022
  29468. }
  29469. },
  29470. },
  29471. [
  29472. {
  29473. name: "Normal",
  29474. height: math.unit(10, "feet"),
  29475. default: true
  29476. },
  29477. {
  29478. name: "Macro",
  29479. height: math.unit(500, "feet")
  29480. },
  29481. ]
  29482. ))
  29483. characterMakers.push(() => makeCharacter(
  29484. { name: "Dahlia Verrick", "species": ["dhole", "springbok"], "tags": ["anthro"] },
  29485. {
  29486. front: {
  29487. height: math.unit(7 + 6.451 / 12, "feet"),
  29488. weight: math.unit(310, "lb"),
  29489. name: "Front",
  29490. image: {
  29491. source: "./media/characters/dahlia-verrick/front.svg",
  29492. extra: 1488 / 1365,
  29493. bottom: 6.2 / 1495
  29494. }
  29495. },
  29496. back: {
  29497. height: math.unit(7 + 6.451 / 12, "feet"),
  29498. weight: math.unit(310, "lb"),
  29499. name: "Back",
  29500. image: {
  29501. source: "./media/characters/dahlia-verrick/back.svg",
  29502. extra: 1472 / 1351,
  29503. bottom: 5.28 / 1477
  29504. }
  29505. },
  29506. frontBusiness: {
  29507. height: math.unit(7 + 6.451 / 12, "feet"),
  29508. weight: math.unit(200, "lb"),
  29509. name: "Front (Business)",
  29510. image: {
  29511. source: "./media/characters/dahlia-verrick/front-business.svg",
  29512. extra: 1478 / 1381,
  29513. bottom: 5.5 / 1484
  29514. }
  29515. },
  29516. frontCasual: {
  29517. height: math.unit(7 + 6.451 / 12, "feet"),
  29518. weight: math.unit(200, "lb"),
  29519. name: "Front (Casual)",
  29520. image: {
  29521. source: "./media/characters/dahlia-verrick/front-casual.svg",
  29522. extra: 1478 / 1381,
  29523. bottom: 5.5 / 1484
  29524. }
  29525. },
  29526. },
  29527. [
  29528. {
  29529. name: "Travel-Sized",
  29530. height: math.unit(7.45, "inches")
  29531. },
  29532. {
  29533. name: "Normal",
  29534. height: math.unit(7 + 6.451 / 12, "feet"),
  29535. default: true
  29536. },
  29537. {
  29538. name: "Hitting the Town",
  29539. height: math.unit(37 + 8 / 12, "feet")
  29540. },
  29541. {
  29542. name: "Stomp in the Suburbs",
  29543. height: math.unit(964 + 9.728 / 12, "feet")
  29544. },
  29545. {
  29546. name: "Sit on the City",
  29547. height: math.unit(61747 + 10.592 / 12, "feet")
  29548. },
  29549. {
  29550. name: "Glomp the Globe",
  29551. height: math.unit(252919327 + 4.832 / 12, "feet")
  29552. },
  29553. ]
  29554. ))
  29555. characterMakers.push(() => makeCharacter(
  29556. { name: "Balina Mahigan", species: ["wolf", "cow"], tags: ["anthro"] },
  29557. {
  29558. front: {
  29559. height: math.unit(6 + 4 / 12, "feet"),
  29560. weight: math.unit(320, "lb"),
  29561. name: "Front",
  29562. image: {
  29563. source: "./media/characters/balina-mahigan/front.svg",
  29564. extra: 447 / 428,
  29565. bottom: 18 / 466
  29566. }
  29567. },
  29568. back: {
  29569. height: math.unit(6 + 4 / 12, "feet"),
  29570. weight: math.unit(320, "lb"),
  29571. name: "Back",
  29572. image: {
  29573. source: "./media/characters/balina-mahigan/back.svg",
  29574. extra: 445 / 428,
  29575. bottom: 4.07 / 448
  29576. }
  29577. },
  29578. arm: {
  29579. height: math.unit(1.88, "feet"),
  29580. name: "Arm",
  29581. image: {
  29582. source: "./media/characters/balina-mahigan/arm.svg"
  29583. }
  29584. },
  29585. backPort: {
  29586. height: math.unit(0.685, "feet"),
  29587. name: "Back Port",
  29588. image: {
  29589. source: "./media/characters/balina-mahigan/back-port.svg"
  29590. }
  29591. },
  29592. hoofpaw: {
  29593. height: math.unit(1.41, "feet"),
  29594. name: "Hoofpaw",
  29595. image: {
  29596. source: "./media/characters/balina-mahigan/hoofpaw.svg"
  29597. }
  29598. },
  29599. leftHandBack: {
  29600. height: math.unit(0.938, "feet"),
  29601. name: "Left Hand (Back)",
  29602. image: {
  29603. source: "./media/characters/balina-mahigan/left-hand-back.svg"
  29604. }
  29605. },
  29606. leftHandFront: {
  29607. height: math.unit(0.938, "feet"),
  29608. name: "Left Hand (Front)",
  29609. image: {
  29610. source: "./media/characters/balina-mahigan/left-hand-front.svg"
  29611. }
  29612. },
  29613. rightHandBack: {
  29614. height: math.unit(0.95, "feet"),
  29615. name: "Right Hand (Back)",
  29616. image: {
  29617. source: "./media/characters/balina-mahigan/right-hand-back.svg"
  29618. }
  29619. },
  29620. rightHandFront: {
  29621. height: math.unit(0.95, "feet"),
  29622. name: "Right Hand (Front)",
  29623. image: {
  29624. source: "./media/characters/balina-mahigan/right-hand-front.svg"
  29625. }
  29626. },
  29627. },
  29628. [
  29629. {
  29630. name: "Normal",
  29631. height: math.unit(6 + 4 / 12, "feet"),
  29632. default: true
  29633. },
  29634. ]
  29635. ))
  29636. characterMakers.push(() => makeCharacter(
  29637. { name: "Balina Mejeri", species: ["wolf", "cow"], tags: ["anthro"] },
  29638. {
  29639. front: {
  29640. height: math.unit(6, "feet"),
  29641. weight: math.unit(320, "lb"),
  29642. name: "Front",
  29643. image: {
  29644. source: "./media/characters/balina-mejeri/front.svg",
  29645. extra: 517 / 488,
  29646. bottom: 44.2 / 561
  29647. }
  29648. },
  29649. },
  29650. [
  29651. {
  29652. name: "Normal",
  29653. height: math.unit(6 + 4 / 12, "feet")
  29654. },
  29655. {
  29656. name: "Business",
  29657. height: math.unit(155, "feet"),
  29658. default: true
  29659. },
  29660. ]
  29661. ))
  29662. characterMakers.push(() => makeCharacter(
  29663. { name: "Balbarian", species: ["wolf", "cow"], tags: ["anthro"] },
  29664. {
  29665. kneeling: {
  29666. height: math.unit(6 + 4 / 12, "feet"),
  29667. weight: math.unit(300 * 20, "lb"),
  29668. name: "Kneeling",
  29669. image: {
  29670. source: "./media/characters/balbarian/kneeling.svg",
  29671. extra: 922 / 862,
  29672. bottom: 42.4 / 965
  29673. }
  29674. },
  29675. },
  29676. [
  29677. {
  29678. name: "Normal",
  29679. height: math.unit(6 + 4 / 12, "feet")
  29680. },
  29681. {
  29682. name: "Treasured",
  29683. height: math.unit(18 + 9 / 12, "feet"),
  29684. default: true
  29685. },
  29686. {
  29687. name: "Macro",
  29688. height: math.unit(900, "feet")
  29689. },
  29690. ]
  29691. ))
  29692. characterMakers.push(() => makeCharacter(
  29693. { name: "Balina Amarini", species: ["wolf", "cow"], tags: ["anthro"] },
  29694. {
  29695. front: {
  29696. height: math.unit(6 + 4 / 12, "feet"),
  29697. weight: math.unit(325, "lb"),
  29698. name: "Front",
  29699. image: {
  29700. source: "./media/characters/balina-amarini/front.svg",
  29701. extra: 415 / 403,
  29702. bottom: 19 / 433.4
  29703. }
  29704. },
  29705. back: {
  29706. height: math.unit(6 + 4 / 12, "feet"),
  29707. weight: math.unit(325, "lb"),
  29708. name: "Back",
  29709. image: {
  29710. source: "./media/characters/balina-amarini/back.svg",
  29711. extra: 415 / 403,
  29712. bottom: 13.5 / 432
  29713. }
  29714. },
  29715. overdrive: {
  29716. height: math.unit(6 + 4 / 12, "feet"),
  29717. weight: math.unit(400, "lb"),
  29718. name: "Overdrive",
  29719. image: {
  29720. source: "./media/characters/balina-amarini/overdrive.svg",
  29721. extra: 269 / 259,
  29722. bottom: 12 / 282
  29723. }
  29724. },
  29725. },
  29726. [
  29727. {
  29728. name: "Boom",
  29729. height: math.unit(9 + 10 / 12, "feet"),
  29730. default: true
  29731. },
  29732. {
  29733. name: "Macro",
  29734. height: math.unit(280, "feet")
  29735. },
  29736. ]
  29737. ))
  29738. characterMakers.push(() => makeCharacter(
  29739. { name: "Lady Kubwa", species: ["giraffe", "deity"], tags: ["anthro"] },
  29740. {
  29741. goddess: {
  29742. height: math.unit(600, "feet"),
  29743. weight: math.unit(2000000, "tons"),
  29744. name: "Goddess",
  29745. image: {
  29746. source: "./media/characters/lady-kubwa/goddess.svg",
  29747. extra: 1240.5 / 1223,
  29748. bottom: 22 / 1263
  29749. }
  29750. },
  29751. goddesser: {
  29752. height: math.unit(900, "feet"),
  29753. weight: math.unit(20000000, "lb"),
  29754. name: "Goddess-er",
  29755. image: {
  29756. source: "./media/characters/lady-kubwa/goddess-er.svg",
  29757. extra: 899 / 888,
  29758. bottom: 12.6 / 912
  29759. }
  29760. },
  29761. },
  29762. [
  29763. {
  29764. name: "Macro",
  29765. height: math.unit(600, "feet"),
  29766. default: true
  29767. },
  29768. {
  29769. name: "Megamacro",
  29770. height: math.unit(250, "miles")
  29771. },
  29772. ]
  29773. ))
  29774. characterMakers.push(() => makeCharacter(
  29775. { name: "Tala Grovehorn", species: ["tauren"], tags: ["anthro"] },
  29776. {
  29777. front: {
  29778. height: math.unit(7 + 7 / 12, "feet"),
  29779. weight: math.unit(250, "lb"),
  29780. name: "Front",
  29781. image: {
  29782. source: "./media/characters/tala-grovehorn/front.svg",
  29783. extra: 2636 / 2525,
  29784. bottom: 147 / 2781
  29785. }
  29786. },
  29787. back: {
  29788. height: math.unit(7 + 7 / 12, "feet"),
  29789. weight: math.unit(250, "lb"),
  29790. name: "Back",
  29791. image: {
  29792. source: "./media/characters/tala-grovehorn/back.svg",
  29793. extra: 2635 / 2539,
  29794. bottom: 100 / 2732.8
  29795. }
  29796. },
  29797. mouth: {
  29798. height: math.unit(1.15, "feet"),
  29799. name: "Mouth",
  29800. image: {
  29801. source: "./media/characters/tala-grovehorn/mouth.svg"
  29802. }
  29803. },
  29804. dick: {
  29805. height: math.unit(2.36, "feet"),
  29806. name: "Dick",
  29807. image: {
  29808. source: "./media/characters/tala-grovehorn/dick.svg"
  29809. }
  29810. },
  29811. slit: {
  29812. height: math.unit(0.61, "feet"),
  29813. name: "Slit",
  29814. image: {
  29815. source: "./media/characters/tala-grovehorn/slit.svg"
  29816. }
  29817. },
  29818. },
  29819. [
  29820. ]
  29821. ))
  29822. characterMakers.push(() => makeCharacter(
  29823. { name: "Epona", species: ["unicorn"], tags: ["anthro"] },
  29824. {
  29825. front: {
  29826. height: math.unit(7 + 7 / 12, "feet"),
  29827. weight: math.unit(225, "lb"),
  29828. name: "Front",
  29829. image: {
  29830. source: "./media/characters/epona/front.svg",
  29831. extra: 2445 / 2290,
  29832. bottom: 251 / 2696
  29833. }
  29834. },
  29835. back: {
  29836. height: math.unit(7 + 7 / 12, "feet"),
  29837. weight: math.unit(225, "lb"),
  29838. name: "Back",
  29839. image: {
  29840. source: "./media/characters/epona/back.svg",
  29841. extra: 2546 / 2408,
  29842. bottom: 44 / 2589
  29843. }
  29844. },
  29845. genitals: {
  29846. height: math.unit(1.5, "feet"),
  29847. name: "Genitals",
  29848. image: {
  29849. source: "./media/characters/epona/genitals.svg"
  29850. }
  29851. },
  29852. },
  29853. [
  29854. {
  29855. name: "Normal",
  29856. height: math.unit(7 + 7 / 12, "feet"),
  29857. default: true
  29858. },
  29859. ]
  29860. ))
  29861. characterMakers.push(() => makeCharacter(
  29862. { name: "Avia Bloodbourn", species: ["lion"], tags: ["anthro"] },
  29863. {
  29864. front: {
  29865. height: math.unit(7, "feet"),
  29866. weight: math.unit(518, "lb"),
  29867. name: "Front",
  29868. image: {
  29869. source: "./media/characters/avia-bloodbourn/front.svg",
  29870. extra: 1466 / 1350,
  29871. bottom: 65 / 1527
  29872. }
  29873. },
  29874. },
  29875. [
  29876. ]
  29877. ))
  29878. characterMakers.push(() => makeCharacter(
  29879. { name: "Amera", species: ["dragon"], tags: ["anthro"] },
  29880. {
  29881. front: {
  29882. height: math.unit(9.35, "feet"),
  29883. weight: math.unit(600, "lb"),
  29884. name: "Front",
  29885. image: {
  29886. source: "./media/characters/amera/front.svg",
  29887. extra: 891 / 818,
  29888. bottom: 30 / 922.7
  29889. }
  29890. },
  29891. back: {
  29892. height: math.unit(9.35, "feet"),
  29893. weight: math.unit(600, "lb"),
  29894. name: "Back",
  29895. image: {
  29896. source: "./media/characters/amera/back.svg",
  29897. extra: 876 / 824,
  29898. bottom: 6.8 / 884
  29899. }
  29900. },
  29901. dick: {
  29902. height: math.unit(2.14, "feet"),
  29903. name: "Dick",
  29904. image: {
  29905. source: "./media/characters/amera/dick.svg"
  29906. }
  29907. },
  29908. },
  29909. [
  29910. {
  29911. name: "Normal",
  29912. height: math.unit(9.35, "feet"),
  29913. default: true
  29914. },
  29915. ]
  29916. ))
  29917. characterMakers.push(() => makeCharacter(
  29918. { name: "Rosewen", species: ["vulpera"], tags: ["anthro"] },
  29919. {
  29920. kneeling: {
  29921. height: math.unit(3 + 4 / 12, "feet"),
  29922. weight: math.unit(90, "lb"),
  29923. name: "Kneeling",
  29924. image: {
  29925. source: "./media/characters/rosewen/kneeling.svg",
  29926. extra: 1835 / 1571,
  29927. bottom: 27.7 / 1862
  29928. }
  29929. },
  29930. },
  29931. [
  29932. {
  29933. name: "Normal",
  29934. height: math.unit(3 + 4 / 12, "feet"),
  29935. default: true
  29936. },
  29937. ]
  29938. ))
  29939. characterMakers.push(() => makeCharacter(
  29940. { name: "Sabah", species: ["lucario"], tags: ["anthro"] },
  29941. {
  29942. front: {
  29943. height: math.unit(5 + 10 / 12, "feet"),
  29944. weight: math.unit(200, "lb"),
  29945. name: "Front",
  29946. image: {
  29947. source: "./media/characters/sabah/front.svg",
  29948. extra: 849 / 763,
  29949. bottom: 33.9 / 881
  29950. }
  29951. },
  29952. },
  29953. [
  29954. {
  29955. name: "Normal",
  29956. height: math.unit(5 + 10 / 12, "feet"),
  29957. default: true
  29958. },
  29959. ]
  29960. ))
  29961. characterMakers.push(() => makeCharacter(
  29962. { name: "Purple Flame", species: ["pony"], tags: ["feral"] },
  29963. {
  29964. front: {
  29965. height: math.unit(3 + 5 / 12, "feet"),
  29966. weight: math.unit(40, "kg"),
  29967. name: "Front",
  29968. image: {
  29969. source: "./media/characters/purple-flame/front.svg",
  29970. extra: 1577 / 1412,
  29971. bottom: 97 / 1694
  29972. }
  29973. },
  29974. frontDressed: {
  29975. height: math.unit(3 + 5 / 12, "feet"),
  29976. weight: math.unit(40, "kg"),
  29977. name: "Front (Dressed)",
  29978. image: {
  29979. source: "./media/characters/purple-flame/front-dressed.svg",
  29980. extra: 1577 / 1412,
  29981. bottom: 97 / 1694
  29982. }
  29983. },
  29984. headphones: {
  29985. height: math.unit(0.85, "feet"),
  29986. name: "Headphones",
  29987. image: {
  29988. source: "./media/characters/purple-flame/headphones.svg"
  29989. }
  29990. },
  29991. },
  29992. [
  29993. {
  29994. name: "Really Small",
  29995. height: math.unit(5, "cm")
  29996. },
  29997. {
  29998. name: "Micro",
  29999. height: math.unit(1 + 5 / 12, "feet")
  30000. },
  30001. {
  30002. name: "Normal",
  30003. height: math.unit(3 + 5 / 12, "feet"),
  30004. default: true
  30005. },
  30006. {
  30007. name: "Minimacro",
  30008. height: math.unit(125, "feet")
  30009. },
  30010. {
  30011. name: "Macro",
  30012. height: math.unit(0.5, "miles")
  30013. },
  30014. {
  30015. name: "Megamacro",
  30016. height: math.unit(50, "miles")
  30017. },
  30018. {
  30019. name: "Gigantic",
  30020. height: math.unit(750, "miles")
  30021. },
  30022. {
  30023. name: "Planetary",
  30024. height: math.unit(15000, "miles")
  30025. },
  30026. ]
  30027. ))
  30028. characterMakers.push(() => makeCharacter(
  30029. { name: "Arsenal", species: ["wolf", "deity"], tags: ["anthro"] },
  30030. {
  30031. front: {
  30032. height: math.unit(14, "feet"),
  30033. weight: math.unit(959, "lb"),
  30034. name: "Front",
  30035. image: {
  30036. source: "./media/characters/arsenal/front.svg",
  30037. extra: 2357 / 2157,
  30038. bottom: 93 / 2458
  30039. }
  30040. },
  30041. },
  30042. [
  30043. {
  30044. name: "Normal",
  30045. height: math.unit(14, "feet"),
  30046. default: true
  30047. },
  30048. ]
  30049. ))
  30050. characterMakers.push(() => makeCharacter(
  30051. { name: "Adira", species: ["mouse"], tags: ["anthro"] },
  30052. {
  30053. front: {
  30054. height: math.unit(6, "feet"),
  30055. weight: math.unit(150, "lb"),
  30056. name: "Front",
  30057. image: {
  30058. source: "./media/characters/adira/front.svg",
  30059. extra: 2121/2013,
  30060. bottom: 206/2327
  30061. }
  30062. },
  30063. },
  30064. [
  30065. {
  30066. name: "Micro",
  30067. height: math.unit(4, "inches"),
  30068. default: true
  30069. },
  30070. {
  30071. name: "Macro",
  30072. height: math.unit(50, "feet")
  30073. },
  30074. ]
  30075. ))
  30076. characterMakers.push(() => makeCharacter(
  30077. { name: "Grim", species: ["ceratosaurus"], tags: ["anthro"] },
  30078. {
  30079. front: {
  30080. height: math.unit(16, "feet"),
  30081. weight: math.unit(1000, "lb"),
  30082. name: "Front",
  30083. image: {
  30084. source: "./media/characters/grim/front.svg",
  30085. extra: 622 / 614,
  30086. bottom: 18.1 / 642
  30087. }
  30088. },
  30089. back: {
  30090. height: math.unit(16, "feet"),
  30091. weight: math.unit(1000, "lb"),
  30092. name: "Back",
  30093. image: {
  30094. source: "./media/characters/grim/back.svg",
  30095. extra: 610.6 / 602,
  30096. bottom: 40.8 / 652
  30097. }
  30098. },
  30099. hunched: {
  30100. height: math.unit(9.75, "feet"),
  30101. weight: math.unit(1000, "lb"),
  30102. name: "Hunched",
  30103. image: {
  30104. source: "./media/characters/grim/hunched.svg",
  30105. extra: 304 / 297,
  30106. bottom: 35.4 / 394
  30107. }
  30108. },
  30109. },
  30110. [
  30111. {
  30112. name: "Normal",
  30113. height: math.unit(16, "feet"),
  30114. default: true
  30115. },
  30116. ]
  30117. ))
  30118. characterMakers.push(() => makeCharacter(
  30119. { name: "Sinja", species: ["monster", "fox"], tags: ["anthro"] },
  30120. {
  30121. front: {
  30122. height: math.unit(2.3, "meters"),
  30123. weight: math.unit(300, "lb"),
  30124. name: "Front",
  30125. image: {
  30126. source: "./media/characters/sinja/front-sfw.svg",
  30127. extra: 1393 / 1294,
  30128. bottom: 70 / 1463
  30129. }
  30130. },
  30131. frontNsfw: {
  30132. height: math.unit(2.3, "meters"),
  30133. weight: math.unit(300, "lb"),
  30134. name: "Front (NSFW)",
  30135. image: {
  30136. source: "./media/characters/sinja/front-nsfw.svg",
  30137. extra: 1393 / 1294,
  30138. bottom: 70 / 1463
  30139. }
  30140. },
  30141. back: {
  30142. height: math.unit(2.3, "meters"),
  30143. weight: math.unit(300, "lb"),
  30144. name: "Back",
  30145. image: {
  30146. source: "./media/characters/sinja/back.svg",
  30147. extra: 1393 / 1294,
  30148. bottom: 70 / 1463
  30149. }
  30150. },
  30151. head: {
  30152. height: math.unit(1.771, "feet"),
  30153. name: "Head",
  30154. image: {
  30155. source: "./media/characters/sinja/head.svg"
  30156. }
  30157. },
  30158. slit: {
  30159. height: math.unit(0.8, "feet"),
  30160. name: "Slit",
  30161. image: {
  30162. source: "./media/characters/sinja/slit.svg"
  30163. }
  30164. },
  30165. },
  30166. [
  30167. {
  30168. name: "Normal",
  30169. height: math.unit(2.3, "meters")
  30170. },
  30171. {
  30172. name: "Macro",
  30173. height: math.unit(91, "meters"),
  30174. default: true
  30175. },
  30176. {
  30177. name: "Megamacro",
  30178. height: math.unit(91440, "meters")
  30179. },
  30180. {
  30181. name: "Gigamacro",
  30182. height: math.unit(60960000, "meters")
  30183. },
  30184. {
  30185. name: "Teramacro",
  30186. height: math.unit(9144000000, "meters")
  30187. },
  30188. ]
  30189. ))
  30190. characterMakers.push(() => makeCharacter(
  30191. { name: "Kyu", species: ["cat"], tags: ["anthro"] },
  30192. {
  30193. front: {
  30194. height: math.unit(1.7, "meters"),
  30195. weight: math.unit(130, "lb"),
  30196. name: "Front",
  30197. image: {
  30198. source: "./media/characters/kyu/front.svg",
  30199. extra: 415 / 395,
  30200. bottom: 5 / 420
  30201. }
  30202. },
  30203. head: {
  30204. height: math.unit(1.75, "feet"),
  30205. name: "Head",
  30206. image: {
  30207. source: "./media/characters/kyu/head.svg"
  30208. }
  30209. },
  30210. foot: {
  30211. height: math.unit(0.81, "feet"),
  30212. name: "Foot",
  30213. image: {
  30214. source: "./media/characters/kyu/foot.svg"
  30215. }
  30216. },
  30217. },
  30218. [
  30219. {
  30220. name: "Normal",
  30221. height: math.unit(1.7, "meters")
  30222. },
  30223. {
  30224. name: "Macro",
  30225. height: math.unit(131, "feet"),
  30226. default: true
  30227. },
  30228. {
  30229. name: "Megamacro",
  30230. height: math.unit(91440, "meters")
  30231. },
  30232. {
  30233. name: "Gigamacro",
  30234. height: math.unit(60960000, "meters")
  30235. },
  30236. {
  30237. name: "Teramacro",
  30238. height: math.unit(9144000000, "meters")
  30239. },
  30240. ]
  30241. ))
  30242. characterMakers.push(() => makeCharacter(
  30243. { name: "Joey", species: ["kangaroo"], tags: ["anthro"] },
  30244. {
  30245. front: {
  30246. height: math.unit(7 + 1 / 12, "feet"),
  30247. weight: math.unit(250, "lb"),
  30248. name: "Front",
  30249. image: {
  30250. source: "./media/characters/joey/front.svg",
  30251. extra: 1791 / 1537,
  30252. bottom: 28 / 1816
  30253. }
  30254. },
  30255. },
  30256. [
  30257. {
  30258. name: "Micro",
  30259. height: math.unit(3, "inches")
  30260. },
  30261. {
  30262. name: "Normal",
  30263. height: math.unit(7 + 1 / 12, "feet"),
  30264. default: true
  30265. },
  30266. ]
  30267. ))
  30268. characterMakers.push(() => makeCharacter(
  30269. { name: "Sam Evans", species: ["fox", "demon"], tags: ["anthro"] },
  30270. {
  30271. front: {
  30272. height: math.unit(165, "cm"),
  30273. weight: math.unit(140, "lb"),
  30274. name: "Front",
  30275. image: {
  30276. source: "./media/characters/sam-evans/front.svg",
  30277. extra: 3417 / 3230,
  30278. bottom: 41.3 / 3417
  30279. }
  30280. },
  30281. frontSixTails: {
  30282. height: math.unit(165, "cm"),
  30283. weight: math.unit(140, "lb"),
  30284. name: "Front-six-tails",
  30285. image: {
  30286. source: "./media/characters/sam-evans/front-six-tails.svg",
  30287. extra: 3417 / 3230,
  30288. bottom: 41.3 / 3417
  30289. }
  30290. },
  30291. back: {
  30292. height: math.unit(165, "cm"),
  30293. weight: math.unit(140, "lb"),
  30294. name: "Back",
  30295. image: {
  30296. source: "./media/characters/sam-evans/back.svg",
  30297. extra: 3227 / 3032,
  30298. bottom: 6.8 / 3234
  30299. }
  30300. },
  30301. face: {
  30302. height: math.unit(0.68, "feet"),
  30303. name: "Face",
  30304. image: {
  30305. source: "./media/characters/sam-evans/face.svg"
  30306. }
  30307. },
  30308. },
  30309. [
  30310. {
  30311. name: "Normal",
  30312. height: math.unit(165, "cm"),
  30313. default: true
  30314. },
  30315. {
  30316. name: "Macro",
  30317. height: math.unit(100, "meters")
  30318. },
  30319. {
  30320. name: "Macro+",
  30321. height: math.unit(800, "meters")
  30322. },
  30323. {
  30324. name: "Macro++",
  30325. height: math.unit(3, "km")
  30326. },
  30327. {
  30328. name: "Macro+++",
  30329. height: math.unit(30, "km")
  30330. },
  30331. ]
  30332. ))
  30333. characterMakers.push(() => makeCharacter(
  30334. { name: "Juliet A", species: ["lizard"], tags: ["anthro"] },
  30335. {
  30336. front: {
  30337. height: math.unit(10, "feet"),
  30338. weight: math.unit(750, "lb"),
  30339. name: "Front",
  30340. image: {
  30341. source: "./media/characters/juliet-a/front.svg",
  30342. extra: 1766 / 1720,
  30343. bottom: 43 / 1809
  30344. }
  30345. },
  30346. back: {
  30347. height: math.unit(10, "feet"),
  30348. weight: math.unit(750, "lb"),
  30349. name: "Back",
  30350. image: {
  30351. source: "./media/characters/juliet-a/back.svg",
  30352. extra: 1781 / 1734,
  30353. bottom: 35 / 1810,
  30354. }
  30355. },
  30356. },
  30357. [
  30358. {
  30359. name: "Normal",
  30360. height: math.unit(10, "feet"),
  30361. default: true
  30362. },
  30363. {
  30364. name: "Dragon Form",
  30365. height: math.unit(250, "feet")
  30366. },
  30367. {
  30368. name: "Macro",
  30369. height: math.unit(1000, "feet")
  30370. },
  30371. {
  30372. name: "Megamacro",
  30373. height: math.unit(10000, "feet")
  30374. }
  30375. ]
  30376. ))
  30377. characterMakers.push(() => makeCharacter(
  30378. { name: "Wild", species: ["hyena"], tags: ["anthro"] },
  30379. {
  30380. regular: {
  30381. height: math.unit(7 + 3 / 12, "feet"),
  30382. weight: math.unit(260, "lb"),
  30383. name: "Regular",
  30384. image: {
  30385. source: "./media/characters/wild/regular.svg",
  30386. extra: 97.45 / 92,
  30387. bottom: 6.8 / 104.3
  30388. }
  30389. },
  30390. biggums: {
  30391. height: math.unit(8 + 6 / 12, "feet"),
  30392. weight: math.unit(425, "lb"),
  30393. name: "Biggums",
  30394. image: {
  30395. source: "./media/characters/wild/biggums.svg",
  30396. extra: 97.45 / 92,
  30397. bottom: 7.5 / 132.34
  30398. }
  30399. },
  30400. mawRegular: {
  30401. height: math.unit(1.24, "feet"),
  30402. name: "Maw (Regular)",
  30403. image: {
  30404. source: "./media/characters/wild/maw.svg"
  30405. }
  30406. },
  30407. mawBiggums: {
  30408. height: math.unit(1.47, "feet"),
  30409. name: "Maw (Biggums)",
  30410. image: {
  30411. source: "./media/characters/wild/maw.svg"
  30412. }
  30413. },
  30414. },
  30415. [
  30416. {
  30417. name: "Normal",
  30418. height: math.unit(7 + 3 / 12, "feet"),
  30419. default: true
  30420. },
  30421. ]
  30422. ))
  30423. characterMakers.push(() => makeCharacter(
  30424. { name: "Vidar", species: ["deer"], tags: ["anthro", "feral"] },
  30425. {
  30426. front: {
  30427. height: math.unit(2.5, "meters"),
  30428. weight: math.unit(200, "kg"),
  30429. name: "Front",
  30430. image: {
  30431. source: "./media/characters/vidar/front.svg",
  30432. extra: 2994 / 2795,
  30433. bottom: 56 / 3061
  30434. }
  30435. },
  30436. back: {
  30437. height: math.unit(2.5, "meters"),
  30438. weight: math.unit(200, "kg"),
  30439. name: "Back",
  30440. image: {
  30441. source: "./media/characters/vidar/back.svg",
  30442. extra: 3131 / 2928,
  30443. bottom: 13.5 / 3141.5
  30444. }
  30445. },
  30446. feral: {
  30447. height: math.unit(2.5, "meters"),
  30448. weight: math.unit(2000, "kg"),
  30449. name: "Feral",
  30450. image: {
  30451. source: "./media/characters/vidar/feral.svg",
  30452. extra: 2790 / 1765,
  30453. bottom: 6 / 2796
  30454. }
  30455. },
  30456. },
  30457. [
  30458. {
  30459. name: "Normal",
  30460. height: math.unit(2.5, "meters"),
  30461. default: true
  30462. },
  30463. {
  30464. name: "Macro",
  30465. height: math.unit(100, "meters")
  30466. },
  30467. ]
  30468. ))
  30469. characterMakers.push(() => makeCharacter(
  30470. { name: "Ash", species: ["zoroark"], tags: ["anthro"] },
  30471. {
  30472. front: {
  30473. height: math.unit(5 + 9 / 12, "feet"),
  30474. weight: math.unit(120, "lb"),
  30475. name: "Front",
  30476. image: {
  30477. source: "./media/characters/ash/front.svg",
  30478. extra: 2189 / 1961,
  30479. bottom: 5.2 / 2194
  30480. }
  30481. },
  30482. },
  30483. [
  30484. {
  30485. name: "Normal",
  30486. height: math.unit(5 + 9 / 12, "feet"),
  30487. default: true
  30488. },
  30489. ]
  30490. ))
  30491. characterMakers.push(() => makeCharacter(
  30492. { name: "Gygabite", species: ["draconi"], tags: ["anthro"] },
  30493. {
  30494. front: {
  30495. height: math.unit(9, "feet"),
  30496. weight: math.unit(10000, "lb"),
  30497. name: "Front",
  30498. image: {
  30499. source: "./media/characters/gygabite/front.svg",
  30500. bottom: 31.7 / 537.8,
  30501. extra: 505 / 370
  30502. }
  30503. },
  30504. },
  30505. [
  30506. {
  30507. name: "Normal",
  30508. height: math.unit(9, "feet"),
  30509. default: true
  30510. },
  30511. ]
  30512. ))
  30513. characterMakers.push(() => makeCharacter(
  30514. { name: "P0TAT0", species: ["protogen"], tags: ["anthro"] },
  30515. {
  30516. front: {
  30517. height: math.unit(12, "feet"),
  30518. weight: math.unit(4000, "lb"),
  30519. name: "Front",
  30520. image: {
  30521. source: "./media/characters/p0tat0/front.svg",
  30522. extra: 1065 / 921,
  30523. bottom: 55.7 / 1121.25
  30524. }
  30525. },
  30526. },
  30527. [
  30528. {
  30529. name: "Normal",
  30530. height: math.unit(12, "feet"),
  30531. default: true
  30532. },
  30533. ]
  30534. ))
  30535. characterMakers.push(() => makeCharacter(
  30536. { name: "Dusk", species: ["arcanine"], tags: ["feral"] },
  30537. {
  30538. side: {
  30539. height: math.unit(6.5, "feet"),
  30540. weight: math.unit(800, "lb"),
  30541. name: "Side",
  30542. image: {
  30543. source: "./media/characters/dusk/side.svg",
  30544. extra: 615 / 373,
  30545. bottom: 53 / 664
  30546. }
  30547. },
  30548. sitting: {
  30549. height: math.unit(7, "feet"),
  30550. weight: math.unit(800, "lb"),
  30551. name: "Sitting",
  30552. image: {
  30553. source: "./media/characters/dusk/sitting.svg",
  30554. extra: 753 / 425,
  30555. bottom: 33 / 774
  30556. }
  30557. },
  30558. head: {
  30559. height: math.unit(6.1, "feet"),
  30560. name: "Head",
  30561. image: {
  30562. source: "./media/characters/dusk/head.svg"
  30563. }
  30564. },
  30565. },
  30566. [
  30567. {
  30568. name: "Normal",
  30569. height: math.unit(7, "feet"),
  30570. default: true
  30571. },
  30572. ]
  30573. ))
  30574. characterMakers.push(() => makeCharacter(
  30575. { name: "Jay Direwolf", species: ["dire-wolf"], tags: ["anthro"] },
  30576. {
  30577. front: {
  30578. height: math.unit(15, "feet"),
  30579. weight: math.unit(7000, "lb"),
  30580. name: "Front",
  30581. image: {
  30582. source: "./media/characters/jay-direwolf/front.svg",
  30583. extra: 1810 / 1732,
  30584. bottom: 66 / 1892
  30585. }
  30586. },
  30587. },
  30588. [
  30589. {
  30590. name: "Normal",
  30591. height: math.unit(15, "feet"),
  30592. default: true
  30593. },
  30594. ]
  30595. ))
  30596. characterMakers.push(() => makeCharacter(
  30597. { name: "Anchovie", species: ["cat"], tags: ["anthro"] },
  30598. {
  30599. front: {
  30600. height: math.unit(4 + 9 / 12, "feet"),
  30601. weight: math.unit(130, "lb"),
  30602. name: "Front",
  30603. image: {
  30604. source: "./media/characters/anchovie/front.svg",
  30605. extra: 382 / 350,
  30606. bottom: 25 / 409
  30607. }
  30608. },
  30609. back: {
  30610. height: math.unit(4 + 9 / 12, "feet"),
  30611. weight: math.unit(130, "lb"),
  30612. name: "Back",
  30613. image: {
  30614. source: "./media/characters/anchovie/back.svg",
  30615. extra: 385 / 352,
  30616. bottom: 16.6 / 402
  30617. }
  30618. },
  30619. frontDressed: {
  30620. height: math.unit(4 + 9 / 12, "feet"),
  30621. weight: math.unit(130, "lb"),
  30622. name: "Front (Dressed)",
  30623. image: {
  30624. source: "./media/characters/anchovie/front-dressed.svg",
  30625. extra: 382 / 350,
  30626. bottom: 25 / 409
  30627. }
  30628. },
  30629. backDressed: {
  30630. height: math.unit(4 + 9 / 12, "feet"),
  30631. weight: math.unit(130, "lb"),
  30632. name: "Back (Dressed)",
  30633. image: {
  30634. source: "./media/characters/anchovie/back-dressed.svg",
  30635. extra: 385 / 352,
  30636. bottom: 16.6 / 402
  30637. }
  30638. },
  30639. },
  30640. [
  30641. {
  30642. name: "Micro",
  30643. height: math.unit(6.4, "inches")
  30644. },
  30645. {
  30646. name: "Normal",
  30647. height: math.unit(4 + 9 / 12, "feet"),
  30648. default: true
  30649. },
  30650. ]
  30651. ))
  30652. characterMakers.push(() => makeCharacter(
  30653. { name: "AcidRenamon", species: ["renamon", "skunk"], tags: ["anthro"] },
  30654. {
  30655. front: {
  30656. height: math.unit(2, "meters"),
  30657. weight: math.unit(180, "lb"),
  30658. name: "Front",
  30659. image: {
  30660. source: "./media/characters/acidrenamon/front.svg",
  30661. extra: 987 / 890,
  30662. bottom: 22.8 / 1009
  30663. }
  30664. },
  30665. back: {
  30666. height: math.unit(2, "meters"),
  30667. weight: math.unit(180, "lb"),
  30668. name: "Back",
  30669. image: {
  30670. source: "./media/characters/acidrenamon/back.svg",
  30671. extra: 983 / 891,
  30672. bottom: 8.4 / 992
  30673. }
  30674. },
  30675. head: {
  30676. height: math.unit(1.92, "feet"),
  30677. name: "Head",
  30678. image: {
  30679. source: "./media/characters/acidrenamon/head.svg"
  30680. }
  30681. },
  30682. rump: {
  30683. height: math.unit(1.72, "feet"),
  30684. name: "Rump",
  30685. image: {
  30686. source: "./media/characters/acidrenamon/rump.svg"
  30687. }
  30688. },
  30689. tail: {
  30690. height: math.unit(4.2, "feet"),
  30691. name: "Tail",
  30692. image: {
  30693. source: "./media/characters/acidrenamon/tail.svg"
  30694. }
  30695. },
  30696. },
  30697. [
  30698. {
  30699. name: "Normal",
  30700. height: math.unit(2, "meters"),
  30701. default: true
  30702. },
  30703. {
  30704. name: "Minimacro",
  30705. height: math.unit(7, "meters")
  30706. },
  30707. {
  30708. name: "Macro",
  30709. height: math.unit(200, "meters")
  30710. },
  30711. {
  30712. name: "Gigamacro",
  30713. height: math.unit(0.2, "earths")
  30714. },
  30715. ]
  30716. ))
  30717. characterMakers.push(() => makeCharacter(
  30718. { name: "Kenzie Lee", species: ["lycanroc"], tags: ["anthro"] },
  30719. {
  30720. front: {
  30721. height: math.unit(152, "feet"),
  30722. name: "Front",
  30723. image: {
  30724. source: "./media/characters/kenzie-lee/front.svg",
  30725. extra: 1869/1774,
  30726. bottom: 128/1997
  30727. }
  30728. },
  30729. side: {
  30730. height: math.unit(86, "feet"),
  30731. name: "Side",
  30732. image: {
  30733. source: "./media/characters/kenzie-lee/side.svg",
  30734. extra: 930/815,
  30735. bottom: 177/1107
  30736. }
  30737. },
  30738. paw: {
  30739. height: math.unit(15, "feet"),
  30740. name: "Paw",
  30741. image: {
  30742. source: "./media/characters/kenzie-lee/paw.svg"
  30743. }
  30744. },
  30745. },
  30746. [
  30747. {
  30748. name: "Kenzie Flea",
  30749. height: math.unit(2, "mm"),
  30750. default: true
  30751. },
  30752. {
  30753. name: "Micro",
  30754. height: math.unit(2, "inches")
  30755. },
  30756. {
  30757. name: "Normal",
  30758. height: math.unit(152, "feet")
  30759. },
  30760. {
  30761. name: "Megamacro",
  30762. height: math.unit(7, "miles")
  30763. },
  30764. {
  30765. name: "Gigamacro",
  30766. height: math.unit(8000, "miles")
  30767. },
  30768. ]
  30769. ))
  30770. characterMakers.push(() => makeCharacter(
  30771. { name: "Withers", species: ["hellhound"], tags: ["anthro"] },
  30772. {
  30773. front: {
  30774. height: math.unit(6, "feet"),
  30775. name: "Front",
  30776. image: {
  30777. source: "./media/characters/withers/front.svg",
  30778. extra: 1935/1760,
  30779. bottom: 72/2007
  30780. }
  30781. },
  30782. back: {
  30783. height: math.unit(6, "feet"),
  30784. name: "Back",
  30785. image: {
  30786. source: "./media/characters/withers/back.svg",
  30787. extra: 1944/1792,
  30788. bottom: 12/1956
  30789. }
  30790. },
  30791. dressed: {
  30792. height: math.unit(6, "feet"),
  30793. name: "Dressed",
  30794. image: {
  30795. source: "./media/characters/withers/dressed.svg",
  30796. extra: 1937/1765,
  30797. bottom: 73/2010
  30798. }
  30799. },
  30800. phase1: {
  30801. height: math.unit(1.1, "feet"),
  30802. name: "Phase 1",
  30803. image: {
  30804. source: "./media/characters/withers/phase-1.svg",
  30805. extra: 1885/1232,
  30806. bottom: 0/1885
  30807. }
  30808. },
  30809. phase2: {
  30810. height: math.unit(1.05, "feet"),
  30811. name: "Phase 2",
  30812. image: {
  30813. source: "./media/characters/withers/phase-2.svg",
  30814. extra: 1792/1090,
  30815. bottom: 0/1792
  30816. }
  30817. },
  30818. partyWipe: {
  30819. height: math.unit(1.1, "feet"),
  30820. name: "Party Wipe",
  30821. image: {
  30822. source: "./media/characters/withers/party-wipe.svg",
  30823. extra: 1864/1207,
  30824. bottom: 0/1864
  30825. }
  30826. },
  30827. },
  30828. [
  30829. {
  30830. name: "Macro",
  30831. height: math.unit(167, "feet"),
  30832. default: true
  30833. },
  30834. {
  30835. name: "Megamacro",
  30836. height: math.unit(15, "miles")
  30837. }
  30838. ]
  30839. ))
  30840. characterMakers.push(() => makeCharacter(
  30841. { name: "Nemoskii", species: ["skunk"], tags: ["anthro"] },
  30842. {
  30843. front: {
  30844. height: math.unit(6 + 7 / 12, "feet"),
  30845. weight: math.unit(250, "lb"),
  30846. name: "Front",
  30847. image: {
  30848. source: "./media/characters/nemoskii/front.svg",
  30849. extra: 2270 / 1734,
  30850. bottom: 86 / 2354
  30851. }
  30852. },
  30853. back: {
  30854. height: math.unit(6 + 7 / 12, "feet"),
  30855. weight: math.unit(250, "lb"),
  30856. name: "Back",
  30857. image: {
  30858. source: "./media/characters/nemoskii/back.svg",
  30859. extra: 1845 / 1788,
  30860. bottom: 10.5 / 1852
  30861. }
  30862. },
  30863. head: {
  30864. height: math.unit(1.31, "feet"),
  30865. name: "Head",
  30866. image: {
  30867. source: "./media/characters/nemoskii/head.svg"
  30868. }
  30869. },
  30870. },
  30871. [
  30872. {
  30873. name: "Micro",
  30874. height: math.unit((6 + 7 / 12) * 0.1, "feet")
  30875. },
  30876. {
  30877. name: "Normal",
  30878. height: math.unit(6 + 7 / 12, "feet"),
  30879. default: true
  30880. },
  30881. {
  30882. name: "Macro",
  30883. height: math.unit((6 + 7 / 12) * 150, "feet")
  30884. },
  30885. {
  30886. name: "Macro+",
  30887. height: math.unit((6 + 7 / 12) * 500, "feet")
  30888. },
  30889. {
  30890. name: "Megamacro",
  30891. height: math.unit((6 + 7 / 12) * 100000, "feet")
  30892. },
  30893. ]
  30894. ))
  30895. characterMakers.push(() => makeCharacter(
  30896. { name: "Shui", species: ["dragon"], tags: ["anthro"] },
  30897. {
  30898. front: {
  30899. height: math.unit(1, "mile"),
  30900. weight: math.unit(265261.9, "lb"),
  30901. name: "Front",
  30902. image: {
  30903. source: "./media/characters/shui/front.svg",
  30904. extra: 1633 / 1564,
  30905. bottom: 91.5 / 1726
  30906. }
  30907. },
  30908. },
  30909. [
  30910. {
  30911. name: "Macro",
  30912. height: math.unit(1, "mile"),
  30913. default: true
  30914. },
  30915. ]
  30916. ))
  30917. characterMakers.push(() => makeCharacter(
  30918. { name: "Arokh Takakura", species: ["dragon"], tags: ["anthro"] },
  30919. {
  30920. front: {
  30921. height: math.unit(12 + 6 / 12, "feet"),
  30922. weight: math.unit(1342, "lb"),
  30923. name: "Front",
  30924. image: {
  30925. source: "./media/characters/arokh-takakura/front.svg",
  30926. extra: 1089 / 1043,
  30927. bottom: 77.4 / 1176.7
  30928. }
  30929. },
  30930. back: {
  30931. height: math.unit(12 + 6 / 12, "feet"),
  30932. weight: math.unit(1342, "lb"),
  30933. name: "Back",
  30934. image: {
  30935. source: "./media/characters/arokh-takakura/back.svg",
  30936. extra: 1046 / 1019,
  30937. bottom: 102 / 1150
  30938. }
  30939. },
  30940. },
  30941. [
  30942. {
  30943. name: "Big",
  30944. height: math.unit(12 + 6 / 12, "feet"),
  30945. default: true
  30946. },
  30947. ]
  30948. ))
  30949. characterMakers.push(() => makeCharacter(
  30950. { name: "Theo", species: ["cat"], tags: ["anthro"] },
  30951. {
  30952. front: {
  30953. height: math.unit(5 + 6 / 12, "feet"),
  30954. weight: math.unit(150, "lb"),
  30955. name: "Front",
  30956. image: {
  30957. source: "./media/characters/theo/front.svg",
  30958. extra: 1184 / 1131,
  30959. bottom: 7.4 / 1191
  30960. }
  30961. },
  30962. },
  30963. [
  30964. {
  30965. name: "Micro",
  30966. height: math.unit(5, "inches")
  30967. },
  30968. {
  30969. name: "Normal",
  30970. height: math.unit(5 + 6 / 12, "feet"),
  30971. default: true
  30972. },
  30973. ]
  30974. ))
  30975. characterMakers.push(() => makeCharacter(
  30976. { name: "Cecelia Swift", species: ["otter"], tags: ["anthro"] },
  30977. {
  30978. front: {
  30979. height: math.unit(5 + 9 / 12, "feet"),
  30980. weight: math.unit(130, "lb"),
  30981. name: "Front",
  30982. image: {
  30983. source: "./media/characters/cecelia-swift/front.svg",
  30984. extra: 502 / 484,
  30985. bottom: 23 / 523
  30986. }
  30987. },
  30988. back: {
  30989. height: math.unit(5 + 9 / 12, "feet"),
  30990. weight: math.unit(130, "lb"),
  30991. name: "Back",
  30992. image: {
  30993. source: "./media/characters/cecelia-swift/back.svg",
  30994. extra: 499 / 485,
  30995. bottom: 12 / 511
  30996. }
  30997. },
  30998. head: {
  30999. height: math.unit(0.90, "feet"),
  31000. name: "Head",
  31001. image: {
  31002. source: "./media/characters/cecelia-swift/head.svg"
  31003. }
  31004. },
  31005. rump: {
  31006. height: math.unit(1.75, "feet"),
  31007. name: "Rump",
  31008. image: {
  31009. source: "./media/characters/cecelia-swift/rump.svg"
  31010. }
  31011. },
  31012. },
  31013. [
  31014. {
  31015. name: "Normal",
  31016. height: math.unit(5 + 9 / 12, "feet"),
  31017. default: true
  31018. },
  31019. {
  31020. name: "Big",
  31021. height: math.unit(50, "feet")
  31022. },
  31023. {
  31024. name: "Macro",
  31025. height: math.unit(100, "feet")
  31026. },
  31027. {
  31028. name: "Macro+",
  31029. height: math.unit(500, "feet")
  31030. },
  31031. {
  31032. name: "Macro++",
  31033. height: math.unit(1000, "feet")
  31034. },
  31035. ]
  31036. ))
  31037. characterMakers.push(() => makeCharacter(
  31038. { name: "Kaunan", species: ["dragon"], tags: ["anthro"] },
  31039. {
  31040. front: {
  31041. height: math.unit(6, "feet"),
  31042. weight: math.unit(150, "lb"),
  31043. name: "Front",
  31044. image: {
  31045. source: "./media/characters/kaunan/front.svg",
  31046. extra: 2890 / 2523,
  31047. bottom: 49 / 2939
  31048. }
  31049. },
  31050. },
  31051. [
  31052. {
  31053. name: "Macro",
  31054. height: math.unit(150, "feet"),
  31055. default: true
  31056. },
  31057. ]
  31058. ))
  31059. characterMakers.push(() => makeCharacter(
  31060. { name: "Fei", species: ["fox"], tags: ["anthro"] },
  31061. {
  31062. dressed: {
  31063. height: math.unit(175, "cm"),
  31064. weight: math.unit(60, "kg"),
  31065. name: "Dressed",
  31066. image: {
  31067. source: "./media/characters/fei/dressed.svg",
  31068. extra: 1402/1278,
  31069. bottom: 27/1429
  31070. }
  31071. },
  31072. nude: {
  31073. height: math.unit(175, "cm"),
  31074. weight: math.unit(60, "kg"),
  31075. name: "Nude",
  31076. image: {
  31077. source: "./media/characters/fei/nude.svg",
  31078. extra: 1402/1278,
  31079. bottom: 27/1429
  31080. }
  31081. },
  31082. heels: {
  31083. height: math.unit(0.466, "feet"),
  31084. name: "Heels",
  31085. image: {
  31086. source: "./media/characters/fei/heels.svg",
  31087. extra: 156/152,
  31088. bottom: 28/184
  31089. }
  31090. },
  31091. },
  31092. [
  31093. {
  31094. name: "Mortal",
  31095. height: math.unit(175, "cm")
  31096. },
  31097. {
  31098. name: "Normal",
  31099. height: math.unit(3500, "m")
  31100. },
  31101. {
  31102. name: "Stroll",
  31103. height: math.unit(18.4, "km"),
  31104. default: true
  31105. },
  31106. {
  31107. name: "Showoff",
  31108. height: math.unit(175, "km")
  31109. },
  31110. ]
  31111. ))
  31112. characterMakers.push(() => makeCharacter(
  31113. { name: "Edrax", species: ["ferromorph"], tags: ["anthro"] },
  31114. {
  31115. front: {
  31116. height: math.unit(7, "feet"),
  31117. weight: math.unit(1000, "kg"),
  31118. name: "Front",
  31119. image: {
  31120. source: "./media/characters/edrax/front.svg",
  31121. extra: 2838 / 2550,
  31122. bottom: 130 / 2968
  31123. }
  31124. },
  31125. },
  31126. [
  31127. {
  31128. name: "Small",
  31129. height: math.unit(7, "feet")
  31130. },
  31131. {
  31132. name: "Normal",
  31133. height: math.unit(1500, "meters")
  31134. },
  31135. {
  31136. name: "Mega",
  31137. height: math.unit(12000000, "km"),
  31138. default: true
  31139. },
  31140. {
  31141. name: "Megamacro",
  31142. height: math.unit(10600000, "lightyears")
  31143. },
  31144. {
  31145. name: "Hypermacro",
  31146. height: math.unit(256, "yottameters")
  31147. },
  31148. ]
  31149. ))
  31150. characterMakers.push(() => makeCharacter(
  31151. { name: "Clove", species: ["rabbit"], tags: ["anthro"] },
  31152. {
  31153. front: {
  31154. height: math.unit(10, "feet"),
  31155. weight: math.unit(750, "lb"),
  31156. name: "Front",
  31157. image: {
  31158. source: "./media/characters/clove/front.svg",
  31159. extra: 1918/1751,
  31160. bottom: 52/1970
  31161. }
  31162. },
  31163. back: {
  31164. height: math.unit(10, "feet"),
  31165. weight: math.unit(750, "lb"),
  31166. name: "Back",
  31167. image: {
  31168. source: "./media/characters/clove/back.svg",
  31169. extra: 1912/1747,
  31170. bottom: 50/1962
  31171. }
  31172. },
  31173. },
  31174. [
  31175. {
  31176. name: "Normal",
  31177. height: math.unit(10, "feet"),
  31178. default: true
  31179. },
  31180. ]
  31181. ))
  31182. characterMakers.push(() => makeCharacter(
  31183. { name: "Alex (Rabbit)", species: ["rabbit"], tags: ["anthro"] },
  31184. {
  31185. front: {
  31186. height: math.unit(4, "feet"),
  31187. weight: math.unit(50, "lb"),
  31188. name: "Front",
  31189. image: {
  31190. source: "./media/characters/alex-rabbit/front.svg",
  31191. extra: 507 / 458,
  31192. bottom: 18.5 / 527
  31193. }
  31194. },
  31195. back: {
  31196. height: math.unit(4, "feet"),
  31197. weight: math.unit(50, "lb"),
  31198. name: "Back",
  31199. image: {
  31200. source: "./media/characters/alex-rabbit/back.svg",
  31201. extra: 502 / 460,
  31202. bottom: 18.9 / 521
  31203. }
  31204. },
  31205. },
  31206. [
  31207. {
  31208. name: "Normal",
  31209. height: math.unit(4, "feet"),
  31210. default: true
  31211. },
  31212. ]
  31213. ))
  31214. characterMakers.push(() => makeCharacter(
  31215. { name: "Zander Rose", species: ["meowth"], tags: ["anthro"] },
  31216. {
  31217. front: {
  31218. height: math.unit(1 + 3 / 12, "feet"),
  31219. weight: math.unit(80, "lb"),
  31220. name: "Front",
  31221. image: {
  31222. source: "./media/characters/zander-rose/front.svg",
  31223. extra: 916 / 797,
  31224. bottom: 17 / 933
  31225. }
  31226. },
  31227. back: {
  31228. height: math.unit(1 + 3 / 12, "feet"),
  31229. weight: math.unit(80, "lb"),
  31230. name: "Back",
  31231. image: {
  31232. source: "./media/characters/zander-rose/back.svg",
  31233. extra: 903 / 779,
  31234. bottom: 31 / 934
  31235. }
  31236. },
  31237. },
  31238. [
  31239. {
  31240. name: "Normal",
  31241. height: math.unit(1 + 3 / 12, "feet"),
  31242. default: true
  31243. },
  31244. ]
  31245. ))
  31246. characterMakers.push(() => makeCharacter(
  31247. { name: "Razz", species: ["pavodragon"], tags: ["anthro", "feral"] },
  31248. {
  31249. anthro: {
  31250. height: math.unit(6, "feet"),
  31251. weight: math.unit(150, "lb"),
  31252. name: "Anthro",
  31253. image: {
  31254. source: "./media/characters/razz/anthro.svg",
  31255. extra: 1437 / 1343,
  31256. bottom: 48 / 1485
  31257. }
  31258. },
  31259. feral: {
  31260. height: math.unit(6, "feet"),
  31261. weight: math.unit(150, "lb"),
  31262. name: "Feral",
  31263. image: {
  31264. source: "./media/characters/razz/feral.svg",
  31265. extra: 2569 / 1385,
  31266. bottom: 95 / 2664
  31267. }
  31268. },
  31269. },
  31270. [
  31271. {
  31272. name: "Normal",
  31273. height: math.unit(6, "feet"),
  31274. default: true
  31275. },
  31276. ]
  31277. ))
  31278. characterMakers.push(() => makeCharacter(
  31279. { name: "Morrigan", species: ["shark"], tags: ["anthro"] },
  31280. {
  31281. front: {
  31282. height: math.unit(9 + 4 / 12, "feet"),
  31283. weight: math.unit(500, "lb"),
  31284. name: "Front",
  31285. image: {
  31286. source: "./media/characters/morrigan/front.svg",
  31287. extra: 2707 / 2579,
  31288. bottom: 156 / 2863
  31289. }
  31290. },
  31291. },
  31292. [
  31293. {
  31294. name: "Normal",
  31295. height: math.unit(9 + 4 / 12, "feet"),
  31296. default: true
  31297. },
  31298. ]
  31299. ))
  31300. characterMakers.push(() => makeCharacter(
  31301. { name: "Jenene", species: ["wolf"], tags: ["anthro"] },
  31302. {
  31303. front: {
  31304. height: math.unit(5, "stories"),
  31305. weight: math.unit(4000, "lb"),
  31306. name: "Front",
  31307. image: {
  31308. source: "./media/characters/jenene/front.svg",
  31309. extra: 1780 / 1710,
  31310. bottom: 57 / 1837
  31311. }
  31312. },
  31313. },
  31314. [
  31315. {
  31316. name: "Normal",
  31317. height: math.unit(5, "stories"),
  31318. default: true
  31319. },
  31320. ]
  31321. ))
  31322. characterMakers.push(() => makeCharacter(
  31323. { name: "Faey", species: ["aaltranae"], tags: ["taur"] },
  31324. {
  31325. taurSfw: {
  31326. height: math.unit(10, "meters"),
  31327. weight: math.unit(17500, "kg"),
  31328. name: "Taur",
  31329. image: {
  31330. source: "./media/characters/faey/taur-sfw.svg",
  31331. extra: 1200 / 968,
  31332. bottom: 41 / 1241
  31333. }
  31334. },
  31335. chestmaw: {
  31336. height: math.unit(2.01, "meters"),
  31337. name: "Chestmaw",
  31338. image: {
  31339. source: "./media/characters/faey/chestmaw.svg"
  31340. }
  31341. },
  31342. foot: {
  31343. height: math.unit(2.43, "meters"),
  31344. name: "Foot",
  31345. image: {
  31346. source: "./media/characters/faey/foot.svg"
  31347. }
  31348. },
  31349. jaws: {
  31350. height: math.unit(1.66, "meters"),
  31351. name: "Jaws",
  31352. image: {
  31353. source: "./media/characters/faey/jaws.svg"
  31354. }
  31355. },
  31356. tongues: {
  31357. height: math.unit(2.01, "meters"),
  31358. name: "Tongues",
  31359. image: {
  31360. source: "./media/characters/faey/tongues.svg"
  31361. }
  31362. },
  31363. },
  31364. [
  31365. {
  31366. name: "Small",
  31367. height: math.unit(10, "meters"),
  31368. default: true
  31369. },
  31370. {
  31371. name: "Big",
  31372. height: math.unit(500000, "km")
  31373. },
  31374. ]
  31375. ))
  31376. characterMakers.push(() => makeCharacter(
  31377. { name: "Roku", species: ["lion"], tags: ["anthro"] },
  31378. {
  31379. front: {
  31380. height: math.unit(7, "feet"),
  31381. weight: math.unit(275, "lb"),
  31382. name: "Front",
  31383. image: {
  31384. source: "./media/characters/roku/front.svg",
  31385. extra: 903 / 878,
  31386. bottom: 37 / 940
  31387. }
  31388. },
  31389. },
  31390. [
  31391. {
  31392. name: "Normal",
  31393. height: math.unit(7, "feet"),
  31394. default: true
  31395. },
  31396. {
  31397. name: "Macro",
  31398. height: math.unit(500, "feet")
  31399. },
  31400. {
  31401. name: "Megamacro",
  31402. height: math.unit(200, "miles")
  31403. },
  31404. ]
  31405. ))
  31406. characterMakers.push(() => makeCharacter(
  31407. { name: "Lira", species: ["kitsune"], tags: ["anthro"] },
  31408. {
  31409. front: {
  31410. height: math.unit(6 + 2 / 12, "feet"),
  31411. weight: math.unit(150, "lb"),
  31412. name: "Front",
  31413. image: {
  31414. source: "./media/characters/lira/front.svg",
  31415. extra: 1727 / 1605,
  31416. bottom: 26 / 1753
  31417. }
  31418. },
  31419. back: {
  31420. height: math.unit(6 + 2 / 12, "feet"),
  31421. weight: math.unit(150, "lb"),
  31422. name: "Back",
  31423. image: {
  31424. source: "./media/characters/lira/back.svg",
  31425. extra: 1713/1621,
  31426. bottom: 20/1733
  31427. }
  31428. },
  31429. hand: {
  31430. height: math.unit(0.75, "feet"),
  31431. name: "Hand",
  31432. image: {
  31433. source: "./media/characters/lira/hand.svg"
  31434. }
  31435. },
  31436. maw: {
  31437. height: math.unit(0.65, "feet"),
  31438. name: "Maw",
  31439. image: {
  31440. source: "./media/characters/lira/maw.svg"
  31441. }
  31442. },
  31443. pawDigi: {
  31444. height: math.unit(1.6, "feet"),
  31445. name: "Paw Digi",
  31446. image: {
  31447. source: "./media/characters/lira/paw-digi.svg"
  31448. }
  31449. },
  31450. pawPlanti: {
  31451. height: math.unit(1.4, "feet"),
  31452. name: "Paw Planti",
  31453. image: {
  31454. source: "./media/characters/lira/paw-planti.svg"
  31455. }
  31456. },
  31457. },
  31458. [
  31459. {
  31460. name: "Normal",
  31461. height: math.unit(6 + 2 / 12, "feet"),
  31462. default: true
  31463. },
  31464. {
  31465. name: "Macro",
  31466. height: math.unit(100, "feet")
  31467. },
  31468. {
  31469. name: "Macro²",
  31470. height: math.unit(1600, "feet")
  31471. },
  31472. {
  31473. name: "Planetary",
  31474. height: math.unit(20, "earths")
  31475. },
  31476. ]
  31477. ))
  31478. characterMakers.push(() => makeCharacter(
  31479. { name: "Hadjet", species: ["cat"], tags: ["anthro"] },
  31480. {
  31481. front: {
  31482. height: math.unit(6, "feet"),
  31483. weight: math.unit(150, "lb"),
  31484. name: "Front",
  31485. image: {
  31486. source: "./media/characters/hadjet/front.svg",
  31487. extra: 1480 / 1346,
  31488. bottom: 26 / 1506
  31489. }
  31490. },
  31491. frontNsfw: {
  31492. height: math.unit(6, "feet"),
  31493. weight: math.unit(150, "lb"),
  31494. name: "Front (NSFW)",
  31495. image: {
  31496. source: "./media/characters/hadjet/front-nsfw.svg",
  31497. extra: 1440 / 1358,
  31498. bottom: 52 / 1492
  31499. }
  31500. },
  31501. },
  31502. [
  31503. {
  31504. name: "Macro",
  31505. height: math.unit(10, "stories"),
  31506. default: true
  31507. },
  31508. {
  31509. name: "Megamacro",
  31510. height: math.unit(1.5, "miles")
  31511. },
  31512. {
  31513. name: "Megamacro+",
  31514. height: math.unit(5, "miles")
  31515. },
  31516. ]
  31517. ))
  31518. characterMakers.push(() => makeCharacter(
  31519. { name: "Kodran", species: ["dragon", "machine"], tags: ["feral"] },
  31520. {
  31521. side: {
  31522. height: math.unit(106, "feet"),
  31523. weight: math.unit(500, "tonnes"),
  31524. name: "Side",
  31525. image: {
  31526. source: "./media/characters/kodran/side.svg",
  31527. extra: 553 / 480,
  31528. bottom: 33 / 586
  31529. }
  31530. },
  31531. front: {
  31532. height: math.unit(132, "feet"),
  31533. weight: math.unit(500, "tonnes"),
  31534. name: "Front",
  31535. image: {
  31536. source: "./media/characters/kodran/front.svg",
  31537. extra: 667 / 643,
  31538. bottom: 42 / 709
  31539. }
  31540. },
  31541. flying: {
  31542. height: math.unit(350, "feet"),
  31543. weight: math.unit(500, "tonnes"),
  31544. name: "Flying",
  31545. image: {
  31546. source: "./media/characters/kodran/flying.svg"
  31547. }
  31548. },
  31549. foot: {
  31550. height: math.unit(33, "feet"),
  31551. name: "Foot",
  31552. image: {
  31553. source: "./media/characters/kodran/foot.svg"
  31554. }
  31555. },
  31556. footFront: {
  31557. height: math.unit(19, "feet"),
  31558. name: "Foot (Front)",
  31559. image: {
  31560. source: "./media/characters/kodran/foot-front.svg",
  31561. extra: 261 / 261,
  31562. bottom: 91 / 352
  31563. }
  31564. },
  31565. headFront: {
  31566. height: math.unit(53, "feet"),
  31567. name: "Head (Front)",
  31568. image: {
  31569. source: "./media/characters/kodran/head-front.svg"
  31570. }
  31571. },
  31572. headSide: {
  31573. height: math.unit(65, "feet"),
  31574. name: "Head (Side)",
  31575. image: {
  31576. source: "./media/characters/kodran/head-side.svg"
  31577. }
  31578. },
  31579. throat: {
  31580. height: math.unit(79, "feet"),
  31581. name: "Throat",
  31582. image: {
  31583. source: "./media/characters/kodran/throat.svg"
  31584. }
  31585. },
  31586. },
  31587. [
  31588. {
  31589. name: "Large",
  31590. height: math.unit(106, "feet"),
  31591. default: true
  31592. },
  31593. ]
  31594. ))
  31595. characterMakers.push(() => makeCharacter(
  31596. { name: "Pyxaron", species: ["draptor"], tags: ["feral"] },
  31597. {
  31598. side: {
  31599. height: math.unit(11, "feet"),
  31600. weight: math.unit(150, "lb"),
  31601. name: "Side",
  31602. image: {
  31603. source: "./media/characters/pyxaron/side.svg",
  31604. extra: 305 / 195,
  31605. bottom: 17 / 322
  31606. }
  31607. },
  31608. },
  31609. [
  31610. {
  31611. name: "Normal",
  31612. height: math.unit(11, "feet"),
  31613. default: true
  31614. },
  31615. ]
  31616. ))
  31617. characterMakers.push(() => makeCharacter(
  31618. { name: "Meep", species: ["candy", "salamander"], tags: ["anthro"] },
  31619. {
  31620. front: {
  31621. height: math.unit(6, "feet"),
  31622. weight: math.unit(150, "lb"),
  31623. name: "Front",
  31624. image: {
  31625. source: "./media/characters/meep/front.svg",
  31626. extra: 88 / 80,
  31627. bottom: 6 / 94
  31628. }
  31629. },
  31630. },
  31631. [
  31632. {
  31633. name: "Fun Sized",
  31634. height: math.unit(2, "inches"),
  31635. default: true
  31636. },
  31637. {
  31638. name: "Friend Sized",
  31639. height: math.unit(8, "inches")
  31640. },
  31641. ]
  31642. ))
  31643. characterMakers.push(() => makeCharacter(
  31644. { name: "Holly (Rabbit)", species: ["rabbit"], tags: ["anthro"] },
  31645. {
  31646. front: {
  31647. height: math.unit(15, "feet"),
  31648. weight: math.unit(2500, "lb"),
  31649. name: "Front",
  31650. image: {
  31651. source: "./media/characters/holly-rabbit/front.svg",
  31652. extra: 1433 / 1233,
  31653. bottom: 125 / 1558
  31654. }
  31655. },
  31656. dick: {
  31657. height: math.unit(4.6, "feet"),
  31658. name: "Dick",
  31659. image: {
  31660. source: "./media/characters/holly-rabbit/dick.svg"
  31661. }
  31662. },
  31663. },
  31664. [
  31665. {
  31666. name: "Normal",
  31667. height: math.unit(15, "feet"),
  31668. default: true
  31669. },
  31670. {
  31671. name: "Macro",
  31672. height: math.unit(250, "feet")
  31673. },
  31674. {
  31675. name: "Macro+",
  31676. height: math.unit(2500, "feet")
  31677. },
  31678. ]
  31679. ))
  31680. characterMakers.push(() => makeCharacter(
  31681. { name: "Drena", species: ["drenath"], tags: ["anthro"] },
  31682. {
  31683. front: {
  31684. height: math.unit(3.02, "meters"),
  31685. weight: math.unit(500, "kg"),
  31686. name: "Front",
  31687. image: {
  31688. source: "./media/characters/drena/front.svg",
  31689. extra: 282 / 243,
  31690. bottom: 8 / 290
  31691. }
  31692. },
  31693. side: {
  31694. height: math.unit(3.02, "meters"),
  31695. weight: math.unit(500, "kg"),
  31696. name: "Side",
  31697. image: {
  31698. source: "./media/characters/drena/side.svg",
  31699. extra: 280 / 245,
  31700. bottom: 10 / 290
  31701. }
  31702. },
  31703. back: {
  31704. height: math.unit(3.02, "meters"),
  31705. weight: math.unit(500, "kg"),
  31706. name: "Back",
  31707. image: {
  31708. source: "./media/characters/drena/back.svg",
  31709. extra: 278 / 243,
  31710. bottom: 2 / 280
  31711. }
  31712. },
  31713. foot: {
  31714. height: math.unit(0.75, "meters"),
  31715. name: "Foot",
  31716. image: {
  31717. source: "./media/characters/drena/foot.svg"
  31718. }
  31719. },
  31720. maw: {
  31721. height: math.unit(0.82, "meters"),
  31722. name: "Maw",
  31723. image: {
  31724. source: "./media/characters/drena/maw.svg"
  31725. }
  31726. },
  31727. eating: {
  31728. height: math.unit(0.75, "meters"),
  31729. name: "Eating",
  31730. image: {
  31731. source: "./media/characters/drena/eating.svg"
  31732. }
  31733. },
  31734. rump: {
  31735. height: math.unit(0.93, "meters"),
  31736. name: "Rump",
  31737. image: {
  31738. source: "./media/characters/drena/rump.svg"
  31739. }
  31740. },
  31741. },
  31742. [
  31743. {
  31744. name: "Normal",
  31745. height: math.unit(3.02, "meters"),
  31746. default: true
  31747. },
  31748. ]
  31749. ))
  31750. characterMakers.push(() => makeCharacter(
  31751. { name: "Remmyzilla", species: ["coyju"], tags: ["anthro"] },
  31752. {
  31753. front: {
  31754. height: math.unit(6 + 4 / 12, "feet"),
  31755. weight: math.unit(250, "lb"),
  31756. name: "Front",
  31757. image: {
  31758. source: "./media/characters/remmyzilla/front.svg",
  31759. extra: 4033 / 3588,
  31760. bottom: 123 / 4156
  31761. }
  31762. },
  31763. back: {
  31764. height: math.unit(6 + 4 / 12, "feet"),
  31765. weight: math.unit(250, "lb"),
  31766. name: "Back",
  31767. image: {
  31768. source: "./media/characters/remmyzilla/back.svg",
  31769. extra: 1696/1602,
  31770. bottom: 63/1759
  31771. }
  31772. },
  31773. paw: {
  31774. height: math.unit(1.73, "feet"),
  31775. name: "Paw",
  31776. image: {
  31777. source: "./media/characters/remmyzilla/paw.svg"
  31778. },
  31779. extraAttributes: {
  31780. "toeSize": {
  31781. name: "Toe Size",
  31782. power: 2,
  31783. type: "area",
  31784. base: math.unit(0.0035, "m^2")
  31785. },
  31786. "padSize": {
  31787. name: "Pad Size",
  31788. power: 2,
  31789. type: "area",
  31790. base: math.unit(0.015, "m^2")
  31791. },
  31792. "pawsize": {
  31793. name: "Paw Size",
  31794. power: 2,
  31795. type: "area",
  31796. base: math.unit(0.072, "m^2")
  31797. },
  31798. }
  31799. },
  31800. maw: {
  31801. height: math.unit(1.73, "feet"),
  31802. name: "Maw",
  31803. image: {
  31804. source: "./media/characters/remmyzilla/maw.svg"
  31805. }
  31806. },
  31807. },
  31808. [
  31809. {
  31810. name: "Normal",
  31811. height: math.unit(6 + 4 / 12, "feet")
  31812. },
  31813. {
  31814. name: "Minimacro",
  31815. height: math.unit(12 + 8 / 12, "feet")
  31816. },
  31817. {
  31818. name: "Normal",
  31819. height: math.unit(640, "feet"),
  31820. default: true
  31821. },
  31822. {
  31823. name: "Megamacro",
  31824. height: math.unit(6400, "feet")
  31825. },
  31826. {
  31827. name: "Gigamacro",
  31828. height: math.unit(64000, "miles")
  31829. },
  31830. ]
  31831. ))
  31832. characterMakers.push(() => makeCharacter(
  31833. { name: "Lawrence", species: ["sergal"], tags: ["anthro"] },
  31834. {
  31835. front: {
  31836. height: math.unit(2.5, "meters"),
  31837. weight: math.unit(300, "lb"),
  31838. name: "Front",
  31839. image: {
  31840. source: "./media/characters/lawrence/front.svg",
  31841. extra: 357 / 335,
  31842. bottom: 30 / 387
  31843. }
  31844. },
  31845. back: {
  31846. height: math.unit(2.5, "meters"),
  31847. weight: math.unit(300, "lb"),
  31848. name: "Back",
  31849. image: {
  31850. source: "./media/characters/lawrence/back.svg",
  31851. extra: 357 / 338,
  31852. bottom: 16 / 373
  31853. }
  31854. },
  31855. head: {
  31856. height: math.unit(0.9, "meter"),
  31857. name: "Head",
  31858. image: {
  31859. source: "./media/characters/lawrence/head.svg"
  31860. }
  31861. },
  31862. maw: {
  31863. height: math.unit(0.7, "meter"),
  31864. name: "Maw",
  31865. image: {
  31866. source: "./media/characters/lawrence/maw.svg"
  31867. }
  31868. },
  31869. footBottom: {
  31870. height: math.unit(0.5, "meter"),
  31871. name: "Foot (Bottom)",
  31872. image: {
  31873. source: "./media/characters/lawrence/foot-bottom.svg"
  31874. }
  31875. },
  31876. footTop: {
  31877. height: math.unit(0.5, "meter"),
  31878. name: "Foot (Top)",
  31879. image: {
  31880. source: "./media/characters/lawrence/foot-top.svg"
  31881. }
  31882. },
  31883. },
  31884. [
  31885. {
  31886. name: "Normal",
  31887. height: math.unit(2.5, "meters"),
  31888. default: true
  31889. },
  31890. {
  31891. name: "Macro",
  31892. height: math.unit(95, "meters")
  31893. },
  31894. {
  31895. name: "Megamacro",
  31896. height: math.unit(150, "km")
  31897. },
  31898. ]
  31899. ))
  31900. characterMakers.push(() => makeCharacter(
  31901. { name: "Sydney", species: ["naga"], tags: ["naga"] },
  31902. {
  31903. front: {
  31904. height: math.unit(4.2, "meters"),
  31905. preyCapacity: math.unit(50, "m^3"),
  31906. weight: math.unit(30, "tonnes"),
  31907. name: "Front",
  31908. image: {
  31909. source: "./media/characters/sydney/front.svg",
  31910. extra: 1177/1129,
  31911. bottom: 197/1374
  31912. },
  31913. extraAttributes: {
  31914. "length": {
  31915. name: "Length",
  31916. power: 1,
  31917. type: "length",
  31918. base: math.unit(21, "meters")
  31919. },
  31920. }
  31921. },
  31922. },
  31923. [
  31924. {
  31925. name: "Normal",
  31926. height: math.unit(4.2, "meters"),
  31927. default: true
  31928. },
  31929. ]
  31930. ))
  31931. characterMakers.push(() => makeCharacter(
  31932. { name: "Jessica", species: ["maned-wolf"], tags: ["anthro"] },
  31933. {
  31934. back: {
  31935. height: math.unit(201, "feet"),
  31936. name: "Back",
  31937. image: {
  31938. source: "./media/characters/jessica/back.svg",
  31939. extra: 273 / 259,
  31940. bottom: 7 / 280
  31941. }
  31942. },
  31943. },
  31944. [
  31945. {
  31946. name: "Normal",
  31947. height: math.unit(201, "feet"),
  31948. default: true
  31949. },
  31950. {
  31951. name: "Megamacro",
  31952. height: math.unit(8, "miles")
  31953. },
  31954. ]
  31955. ))
  31956. characterMakers.push(() => makeCharacter(
  31957. { name: "Victoria", species: ["zorgoia"], tags: ["feral"] },
  31958. {
  31959. side: {
  31960. height: math.unit(5.6, "m"),
  31961. weight: math.unit(8000, "kg"),
  31962. name: "Side",
  31963. image: {
  31964. source: "./media/characters/victoria/side.svg",
  31965. extra: 1542/1229,
  31966. bottom: 124/1666
  31967. }
  31968. },
  31969. maw: {
  31970. height: math.unit(7.14, "feet"),
  31971. name: "Maw",
  31972. image: {
  31973. source: "./media/characters/victoria/maw.svg"
  31974. }
  31975. },
  31976. },
  31977. [
  31978. {
  31979. name: "Normal",
  31980. height: math.unit(5.6, "m"),
  31981. default: true
  31982. },
  31983. ]
  31984. ))
  31985. characterMakers.push(() => makeCharacter(
  31986. { name: "Cat", species: ["cat", "nickit", "lucario", "riolu", "lopunny", "dog", "pikachu"], tags: ["anthro", "feral", "taur"] },
  31987. {
  31988. front: {
  31989. height: math.unit(5 + 6 / 12, "feet"),
  31990. name: "Front",
  31991. image: {
  31992. source: "./media/characters/cat/cat-front.svg",
  31993. extra: 1422/1262,
  31994. bottom: 61/1483
  31995. },
  31996. form: "cat",
  31997. default: true
  31998. },
  31999. back: {
  32000. height: math.unit(5 + 6 / 12, "feet"),
  32001. name: "Back",
  32002. image: {
  32003. source: "./media/characters/cat/cat-back.svg",
  32004. extra: 1466/1301,
  32005. bottom: 19/1485
  32006. },
  32007. form: "cat"
  32008. },
  32009. taur: {
  32010. height: math.unit(7, "feet"),
  32011. name: "Side",
  32012. image: {
  32013. source: "./media/characters/cat/taur-side.svg",
  32014. extra: 1389/1233,
  32015. bottom: 83/1472
  32016. },
  32017. form: "taur",
  32018. default: true
  32019. },
  32020. lucarioFront: {
  32021. height: math.unit(4, "feet"),
  32022. name: "Front",
  32023. image: {
  32024. source: "./media/characters/cat/lucario-front.svg",
  32025. extra: 1149/1019,
  32026. bottom: 84/1233
  32027. },
  32028. form: "lucario",
  32029. default: true
  32030. },
  32031. lucarioBack: {
  32032. height: math.unit(4, "feet"),
  32033. name: "Back",
  32034. image: {
  32035. source: "./media/characters/cat/lucario-back.svg",
  32036. extra: 1190/1059,
  32037. bottom: 33/1223
  32038. },
  32039. form: "lucario"
  32040. },
  32041. riolu_front: {
  32042. height: math.unit(2 + 4/12, "feet"),
  32043. name: "Front",
  32044. image: {
  32045. source: "./media/characters/cat/riolu-front.svg",
  32046. extra: 1104/956,
  32047. bottom: 70/1174
  32048. },
  32049. form: "riolu",
  32050. default: true
  32051. },
  32052. nickit: {
  32053. height: math.unit(2, "feet"),
  32054. name: "Side",
  32055. image: {
  32056. source: "./media/characters/cat/nickit-side.svg",
  32057. extra: 1087/852,
  32058. bottom: 67/1154
  32059. },
  32060. form: "nickit",
  32061. default: true
  32062. },
  32063. lopunnyFront: {
  32064. height: math.unit(5, "feet"),
  32065. name: "Front",
  32066. image: {
  32067. source: "./media/characters/cat/lopunny-front.svg",
  32068. extra: 1217/1078,
  32069. bottom: 23/1240
  32070. },
  32071. form: "lopunny",
  32072. default: true
  32073. },
  32074. lopunnyBack: {
  32075. height: math.unit(5, "feet"),
  32076. name: "Back",
  32077. image: {
  32078. source: "./media/characters/cat/lopunny-back.svg",
  32079. extra: 1205/1057,
  32080. bottom: 33/1238
  32081. },
  32082. form: "lopunny"
  32083. },
  32084. dog_front: {
  32085. height: math.unit(5 + 9/12, "feet"),
  32086. name: "Front",
  32087. image: {
  32088. source: "./media/characters/cat/dog-front.svg",
  32089. extra: 1403/1309,
  32090. bottom: 31/1434
  32091. },
  32092. form: "dog",
  32093. default: true
  32094. },
  32095. dog_back: {
  32096. height: math.unit(5 + 9/12, "feet"),
  32097. name: "Back",
  32098. image: {
  32099. source: "./media/characters/cat/dog-back.svg",
  32100. extra: 1393/1297,
  32101. bottom: 38/1431
  32102. },
  32103. form: "dog",
  32104. },
  32105. pikachu_front: {
  32106. height: math.unit(2.64, "feet"),
  32107. name: "Front",
  32108. image: {
  32109. source: "./media/characters/cat/pikachu-front.svg",
  32110. extra: 1224/958,
  32111. bottom: 34/1258
  32112. },
  32113. form: "pikachu",
  32114. default: true
  32115. },
  32116. pikachu_back: {
  32117. height: math.unit(2.64, "feet"),
  32118. name: "Back",
  32119. image: {
  32120. source: "./media/characters/cat/pikachu-back.svg",
  32121. extra: 1228/958,
  32122. bottom: 16/1244
  32123. },
  32124. form: "pikachu",
  32125. },
  32126. gigachuFront: {
  32127. height: math.unit(75, "feet"),
  32128. name: "Front",
  32129. image: {
  32130. source: "./media/characters/cat/gigachu-front.svg",
  32131. extra: 1239/1027,
  32132. bottom: 32/1271
  32133. },
  32134. form: "gigachu",
  32135. default: true
  32136. },
  32137. gigachuBack: {
  32138. height: math.unit(75, "feet"),
  32139. name: "Back",
  32140. image: {
  32141. source: "./media/characters/cat/gigachu-back.svg",
  32142. extra: 1229/1030,
  32143. bottom: 9/1238
  32144. },
  32145. form: "gigachu"
  32146. },
  32147. },
  32148. [
  32149. {
  32150. name: "Really small",
  32151. height: math.unit(1, "nm"),
  32152. allForms: true
  32153. },
  32154. {
  32155. name: "Micro",
  32156. height: math.unit(5, "inches"),
  32157. allForms: true
  32158. },
  32159. {
  32160. name: "Normal",
  32161. height: math.unit(5 + 6 / 12, "feet"),
  32162. default: true,
  32163. form: "cat"
  32164. },
  32165. {
  32166. name: "Normal",
  32167. height: math.unit(7, "feet"),
  32168. default: true,
  32169. form: "taur"
  32170. },
  32171. {
  32172. name: "Normal",
  32173. height: math.unit(4, "feet"),
  32174. default: true,
  32175. form: "lucario"
  32176. },
  32177. {
  32178. name: "Normal",
  32179. height: math.unit(2, "feet"),
  32180. default: true,
  32181. form: "nickit"
  32182. },
  32183. {
  32184. name: "Normal",
  32185. height: math.unit(5, "feet"),
  32186. default: true,
  32187. form: "lopunny"
  32188. },
  32189. {
  32190. name: "Normal",
  32191. height: math.unit(2 + 4/12, "feet"),
  32192. default: true,
  32193. form: "riolu"
  32194. },
  32195. {
  32196. name: "Normal",
  32197. height: math.unit(5 + 6 / 12, "feet"),
  32198. default: true,
  32199. form: "dog"
  32200. },
  32201. {
  32202. name: "Macro",
  32203. height: math.unit(50, "feet"),
  32204. allForms: true
  32205. },
  32206. {
  32207. name: "Normal",
  32208. height: math.unit(2.64, "feet"),
  32209. default: true,
  32210. form: "pikachu"
  32211. },
  32212. {
  32213. name: "Dynamax",
  32214. height: math.unit(75, "feet"),
  32215. form: "gigachu",
  32216. default: true
  32217. },
  32218. {
  32219. name: "Macro+",
  32220. height: math.unit(150, "feet"),
  32221. allForms: true
  32222. },
  32223. {
  32224. name: "Megamacro",
  32225. height: math.unit(100, "miles"),
  32226. allForms: true
  32227. },
  32228. ],
  32229. {
  32230. "cat": {
  32231. name: "Cat",
  32232. default: true
  32233. },
  32234. "taur": {
  32235. name: "Taur",
  32236. },
  32237. "lucario": {
  32238. name: "Lucario",
  32239. },
  32240. "riolu": {
  32241. name: "Riolu",
  32242. },
  32243. "nickit": {
  32244. name: "Nickit",
  32245. },
  32246. "lopunny": {
  32247. name: "Lopunny",
  32248. },
  32249. "dog": {
  32250. name: "Dog",
  32251. },
  32252. "pikachu": {
  32253. name: "Pikachu",
  32254. },
  32255. "gigachu": {
  32256. name: "Gigachu",
  32257. ignoreAllFormSizes: true
  32258. }
  32259. }
  32260. ))
  32261. characterMakers.push(() => makeCharacter(
  32262. { name: "Kirina Violet", species: ["korean-jindo-dog"], tags: ["anthro"] },
  32263. {
  32264. front: {
  32265. height: math.unit(63.4, "meters"),
  32266. weight: math.unit(3.28349e+6, "kilograms"),
  32267. name: "Front",
  32268. image: {
  32269. source: "./media/characters/kirina-violet/front.svg",
  32270. extra: 2812 / 2725,
  32271. bottom: 0 / 2812
  32272. }
  32273. },
  32274. back: {
  32275. height: math.unit(63.4, "meters"),
  32276. weight: math.unit(3.28349e+6, "kilograms"),
  32277. name: "Back",
  32278. image: {
  32279. source: "./media/characters/kirina-violet/back.svg",
  32280. extra: 2812 / 2725,
  32281. bottom: 0 / 2812
  32282. }
  32283. },
  32284. mouth: {
  32285. height: math.unit(4.35, "meters"),
  32286. name: "Mouth",
  32287. image: {
  32288. source: "./media/characters/kirina-violet/mouth.svg"
  32289. }
  32290. },
  32291. paw: {
  32292. height: math.unit(5.6, "meters"),
  32293. name: "Paw",
  32294. image: {
  32295. source: "./media/characters/kirina-violet/paw.svg"
  32296. }
  32297. },
  32298. tail: {
  32299. height: math.unit(18, "meters"),
  32300. name: "Tail",
  32301. image: {
  32302. source: "./media/characters/kirina-violet/tail.svg"
  32303. }
  32304. },
  32305. },
  32306. [
  32307. {
  32308. name: "Macro",
  32309. height: math.unit(63.4, "meters"),
  32310. default: true
  32311. },
  32312. ]
  32313. ))
  32314. characterMakers.push(() => makeCharacter(
  32315. { name: "Sfaiyan", species: ["jackal"], tags: ["anthro"] },
  32316. {
  32317. front: {
  32318. height: math.unit(6, "feet"),
  32319. weight: math.unit(150, "lb"),
  32320. name: "Front",
  32321. image: {
  32322. source: "./media/characters/sfaiyan/front.svg",
  32323. extra: 999 / 978,
  32324. bottom: 5 / 1004
  32325. }
  32326. },
  32327. },
  32328. [
  32329. {
  32330. name: "Normal",
  32331. height: math.unit(1.82, "meters")
  32332. },
  32333. {
  32334. name: "Giant",
  32335. height: math.unit(2.27, "km"),
  32336. default: true
  32337. },
  32338. ]
  32339. ))
  32340. characterMakers.push(() => makeCharacter(
  32341. { name: "Raunehkeli", species: ["monster"], tags: ["anthro"] },
  32342. {
  32343. front: {
  32344. height: math.unit(179, "cm"),
  32345. weight: math.unit(100, "kg"),
  32346. name: "Front",
  32347. image: {
  32348. source: "./media/characters/raunehkeli/front.svg",
  32349. extra: 1934 / 1926,
  32350. bottom: 0 / 1934
  32351. }
  32352. },
  32353. },
  32354. [
  32355. {
  32356. name: "Normal",
  32357. height: math.unit(179, "cm")
  32358. },
  32359. {
  32360. name: "Maximum",
  32361. height: math.unit(575, "meters"),
  32362. default: true
  32363. },
  32364. ]
  32365. ))
  32366. characterMakers.push(() => makeCharacter(
  32367. { name: "Beatrice \"The Behemoth\" Heathers", species: ["husky", "kaiju"], tags: ["anthro"] },
  32368. {
  32369. dressed: {
  32370. height: math.unit(6 + 2/12, "feet"),
  32371. weight: math.unit(150, "lb"),
  32372. name: "Dressed",
  32373. image: {
  32374. source: "./media/characters/beatrice-the-behemoth-heathers/dressed.svg",
  32375. extra: 2620/2496,
  32376. bottom: 66/2686
  32377. }
  32378. },
  32379. nude: {
  32380. height: math.unit(6 + 2/12, "feet"),
  32381. weight: math.unit(150, "lb"),
  32382. name: "Nude",
  32383. image: {
  32384. source: "./media/characters/beatrice-the-behemoth-heathers/nude.svg",
  32385. extra: 2620/2496,
  32386. bottom: 66/2686
  32387. }
  32388. },
  32389. },
  32390. [
  32391. {
  32392. name: "Normal",
  32393. height: math.unit(6 + 2 / 12, "feet")
  32394. },
  32395. {
  32396. name: "Max Height",
  32397. height: math.unit(1181, "feet"),
  32398. default: true
  32399. },
  32400. ]
  32401. ))
  32402. characterMakers.push(() => makeCharacter(
  32403. { name: "Lilith Zott", species: ["bat", "kaiju"], tags: ["anthro"] },
  32404. {
  32405. front: {
  32406. height: math.unit(5 + 6 / 12, "feet"),
  32407. weight: math.unit(108, "lb"),
  32408. name: "Front",
  32409. image: {
  32410. source: "./media/characters/lilith-zott/front.svg",
  32411. extra: 2415/2133,
  32412. bottom: 193/2608
  32413. }
  32414. },
  32415. },
  32416. [
  32417. {
  32418. name: "Base Height",
  32419. height: math.unit(5 + 6 / 12, "feet")
  32420. },
  32421. {
  32422. name: "Preferred Height",
  32423. height: math.unit(200, "feet")
  32424. },
  32425. {
  32426. name: "Max Height",
  32427. height: math.unit(1030, "feet"),
  32428. default: true
  32429. },
  32430. ]
  32431. ))
  32432. characterMakers.push(() => makeCharacter(
  32433. { name: "Holly \"The Mega Mousky\" Heathers", species: ["mouse", "husky", "kaiju"], tags: ["anthro"] },
  32434. {
  32435. super: {
  32436. height: math.unit(6 + 2/12, "feet"),
  32437. weight: math.unit(150, "lb"),
  32438. name: "Super",
  32439. image: {
  32440. source: "./media/characters/holly-the-mega-mousky-heathers/super.svg",
  32441. extra: 2555/2387,
  32442. bottom: 50/2605
  32443. }
  32444. },
  32445. casual: {
  32446. height: math.unit(6 + 2/12, "feet"),
  32447. weight: math.unit(150, "lb"),
  32448. name: "Casual",
  32449. image: {
  32450. source: "./media/characters/holly-the-mega-mousky-heathers/casual.svg",
  32451. extra: 2555/2387,
  32452. bottom: 50/2605
  32453. }
  32454. },
  32455. hand: {
  32456. height: math.unit(1.08, "feet"),
  32457. name: "Hand",
  32458. image: {
  32459. source: "./media/characters/holly-the-mega-mousky-heathers/hand.svg"
  32460. }
  32461. },
  32462. paw: {
  32463. height: math.unit(1.33, "feet"),
  32464. name: "Paw",
  32465. image: {
  32466. source: "./media/characters/holly-the-mega-mousky-heathers/paw.svg"
  32467. }
  32468. },
  32469. },
  32470. [
  32471. {
  32472. name: "Normal",
  32473. height: math.unit(6 + 2/12, "feet")
  32474. },
  32475. {
  32476. name: "Preferred Height",
  32477. height: math.unit(220, "feet")
  32478. },
  32479. {
  32480. name: "Max Height",
  32481. height: math.unit(1100, "feet"),
  32482. default: true
  32483. },
  32484. ]
  32485. ))
  32486. characterMakers.push(() => makeCharacter(
  32487. { name: "Sona", species: ["dragon"], tags: ["anthro"] },
  32488. {
  32489. front: {
  32490. height: math.unit(100, "miles"),
  32491. name: "Front",
  32492. image: {
  32493. source: "./media/characters/sona/front.svg",
  32494. extra: 2433 / 2201,
  32495. bottom: 53 / 2486
  32496. }
  32497. },
  32498. foot: {
  32499. height: math.unit(16.1, "miles"),
  32500. name: "Foot",
  32501. image: {
  32502. source: "./media/characters/sona/foot.svg"
  32503. }
  32504. },
  32505. },
  32506. [
  32507. {
  32508. name: "Macro",
  32509. height: math.unit(100, "miles"),
  32510. default: true
  32511. },
  32512. ]
  32513. ))
  32514. characterMakers.push(() => makeCharacter(
  32515. { name: "Bailey", species: ["wolf"], tags: ["anthro"] },
  32516. {
  32517. front: {
  32518. height: math.unit(6, "feet"),
  32519. weight: math.unit(150, "lb"),
  32520. name: "Front",
  32521. image: {
  32522. source: "./media/characters/bailey/front.svg",
  32523. extra: 1778 / 1724,
  32524. bottom: 30 / 1808
  32525. }
  32526. },
  32527. },
  32528. [
  32529. {
  32530. name: "Micro",
  32531. height: math.unit(4, "inches")
  32532. },
  32533. {
  32534. name: "Normal",
  32535. height: math.unit(5 + 5 / 12, "feet"),
  32536. default: true
  32537. },
  32538. {
  32539. name: "Macro",
  32540. height: math.unit(250, "feet")
  32541. },
  32542. {
  32543. name: "Megamacro",
  32544. height: math.unit(100, "miles")
  32545. },
  32546. ]
  32547. ))
  32548. characterMakers.push(() => makeCharacter(
  32549. { name: "Snaps", species: ["cat"], tags: ["anthro"] },
  32550. {
  32551. front: {
  32552. height: math.unit(5 + 2 / 12, "feet"),
  32553. weight: math.unit(120, "lb"),
  32554. name: "Front",
  32555. image: {
  32556. source: "./media/characters/snaps/front.svg",
  32557. extra: 2370 / 2177,
  32558. bottom: 48 / 2418
  32559. }
  32560. },
  32561. back: {
  32562. height: math.unit(5 + 2 / 12, "feet"),
  32563. weight: math.unit(120, "lb"),
  32564. name: "Back",
  32565. image: {
  32566. source: "./media/characters/snaps/back.svg",
  32567. extra: 2408 / 2258,
  32568. bottom: 15 / 2423
  32569. }
  32570. },
  32571. },
  32572. [
  32573. {
  32574. name: "Micro",
  32575. height: math.unit(9, "inches")
  32576. },
  32577. {
  32578. name: "Normal",
  32579. height: math.unit(5 + 2 / 12, "feet"),
  32580. default: true
  32581. },
  32582. {
  32583. name: "Mini Macro",
  32584. height: math.unit(10, "feet")
  32585. },
  32586. ]
  32587. ))
  32588. characterMakers.push(() => makeCharacter(
  32589. { name: "Azteck", species: ["sergal"], tags: ["anthro"] },
  32590. {
  32591. front: {
  32592. height: math.unit(1.8, "meters"),
  32593. weight: math.unit(85, "kg"),
  32594. name: "Front",
  32595. image: {
  32596. source: "./media/characters/azteck/front.svg",
  32597. extra: 2815 / 2625,
  32598. bottom: 89 / 2904
  32599. }
  32600. },
  32601. back: {
  32602. height: math.unit(1.8, "meters"),
  32603. weight: math.unit(85, "kg"),
  32604. name: "Back",
  32605. image: {
  32606. source: "./media/characters/azteck/back.svg",
  32607. extra: 2856 / 2648,
  32608. bottom: 85 / 2941
  32609. }
  32610. },
  32611. frontDressed: {
  32612. height: math.unit(1.8, "meters"),
  32613. weight: math.unit(85, "kg"),
  32614. name: "Front (Dressed)",
  32615. image: {
  32616. source: "./media/characters/azteck/front-dressed.svg",
  32617. extra: 2147 / 2003,
  32618. bottom: 68 / 2215
  32619. }
  32620. },
  32621. head: {
  32622. height: math.unit(0.47, "meters"),
  32623. weight: math.unit(85, "kg"),
  32624. name: "Head",
  32625. image: {
  32626. source: "./media/characters/azteck/head.svg"
  32627. }
  32628. },
  32629. },
  32630. [
  32631. {
  32632. name: "Bite sized",
  32633. height: math.unit(16, "cm")
  32634. },
  32635. {
  32636. name: "Normal",
  32637. height: math.unit(1.8, "meters"),
  32638. default: true
  32639. },
  32640. ]
  32641. ))
  32642. characterMakers.push(() => makeCharacter(
  32643. { name: "Pidge", species: ["hellhound"], tags: ["anthro"] },
  32644. {
  32645. front: {
  32646. height: math.unit(6, "feet"),
  32647. weight: math.unit(150, "lb"),
  32648. name: "Front",
  32649. image: {
  32650. source: "./media/characters/pidge/front.svg",
  32651. extra: 1936/1820,
  32652. bottom: 0/1936
  32653. }
  32654. },
  32655. back: {
  32656. height: math.unit(6, "feet"),
  32657. weight: math.unit(150, "lb"),
  32658. name: "Back",
  32659. image: {
  32660. source: "./media/characters/pidge/back.svg",
  32661. extra: 1938/1843,
  32662. bottom: 0/1938
  32663. }
  32664. },
  32665. casual: {
  32666. height: math.unit(6, "feet"),
  32667. weight: math.unit(150, "lb"),
  32668. name: "Casual",
  32669. image: {
  32670. source: "./media/characters/pidge/casual.svg",
  32671. extra: 1936/1820,
  32672. bottom: 0/1936
  32673. }
  32674. },
  32675. tech: {
  32676. height: math.unit(6, "feet"),
  32677. weight: math.unit(150, "lb"),
  32678. name: "Tech",
  32679. image: {
  32680. source: "./media/characters/pidge/tech.svg",
  32681. extra: 1802/1682,
  32682. bottom: 0/1802
  32683. }
  32684. },
  32685. head: {
  32686. height: math.unit(1.61, "feet"),
  32687. name: "Head",
  32688. image: {
  32689. source: "./media/characters/pidge/head.svg"
  32690. }
  32691. },
  32692. collar: {
  32693. height: math.unit(0.82, "feet"),
  32694. name: "Collar",
  32695. image: {
  32696. source: "./media/characters/pidge/collar.svg"
  32697. }
  32698. },
  32699. },
  32700. [
  32701. {
  32702. name: "Macro",
  32703. height: math.unit(2, "mile"),
  32704. default: true
  32705. },
  32706. {
  32707. name: "PUPPY",
  32708. height: math.unit(20, "miles")
  32709. },
  32710. ]
  32711. ))
  32712. characterMakers.push(() => makeCharacter(
  32713. { name: "En", species: ["maned-wolf", "undead"], tags: ["anthro"] },
  32714. {
  32715. front: {
  32716. height: math.unit(6, "feet"),
  32717. weight: math.unit(150, "lb"),
  32718. name: "Front",
  32719. image: {
  32720. source: "./media/characters/en/front.svg",
  32721. extra: 1697 / 1563,
  32722. bottom: 103 / 1800
  32723. }
  32724. },
  32725. back: {
  32726. height: math.unit(6, "feet"),
  32727. weight: math.unit(150, "lb"),
  32728. name: "Back",
  32729. image: {
  32730. source: "./media/characters/en/back.svg",
  32731. extra: 1700 / 1570,
  32732. bottom: 51 / 1751
  32733. }
  32734. },
  32735. frontDressed: {
  32736. height: math.unit(6, "feet"),
  32737. weight: math.unit(150, "lb"),
  32738. name: "Front (Dressed)",
  32739. image: {
  32740. source: "./media/characters/en/front-dressed.svg",
  32741. extra: 1697 / 1563,
  32742. bottom: 103 / 1800
  32743. }
  32744. },
  32745. backDressed: {
  32746. height: math.unit(6, "feet"),
  32747. weight: math.unit(150, "lb"),
  32748. name: "Back (Dressed)",
  32749. image: {
  32750. source: "./media/characters/en/back-dressed.svg",
  32751. extra: 1700 / 1570,
  32752. bottom: 51 / 1751
  32753. }
  32754. },
  32755. },
  32756. [
  32757. {
  32758. name: "Macro",
  32759. height: math.unit(210, "feet"),
  32760. default: true
  32761. },
  32762. ]
  32763. ))
  32764. characterMakers.push(() => makeCharacter(
  32765. { name: "Haze Orris", species: ["cat", "undead"], tags: ["anthro"] },
  32766. {
  32767. front: {
  32768. height: math.unit(6, "feet"),
  32769. weight: math.unit(150, "lb"),
  32770. name: "Front",
  32771. image: {
  32772. source: "./media/characters/haze-orris/front.svg",
  32773. extra: 3975 / 3525,
  32774. bottom: 137 / 4112
  32775. }
  32776. },
  32777. },
  32778. [
  32779. {
  32780. name: "Micro",
  32781. height: math.unit(150, "mm"),
  32782. default: true
  32783. },
  32784. ]
  32785. ))
  32786. characterMakers.push(() => makeCharacter(
  32787. { name: "Casselene Yaro", species: ["fox"], tags: ["anthro"] },
  32788. {
  32789. front: {
  32790. height: math.unit(6, "feet"),
  32791. weight: math.unit(150, "lb"),
  32792. name: "Front",
  32793. image: {
  32794. source: "./media/characters/casselene-yaro/front.svg",
  32795. extra: 4721 / 4541,
  32796. bottom: 82 / 4803
  32797. }
  32798. },
  32799. back: {
  32800. height: math.unit(6, "feet"),
  32801. weight: math.unit(150, "lb"),
  32802. name: "Back",
  32803. image: {
  32804. source: "./media/characters/casselene-yaro/back.svg",
  32805. extra: 4569 / 4377,
  32806. bottom: 69 / 4638
  32807. }
  32808. },
  32809. dressed: {
  32810. height: math.unit(6, "feet"),
  32811. weight: math.unit(150, "lb"),
  32812. name: "Dressed",
  32813. image: {
  32814. source: "./media/characters/casselene-yaro/dressed.svg",
  32815. extra: 4721 / 4541,
  32816. bottom: 82 / 4803
  32817. }
  32818. },
  32819. maw: {
  32820. height: math.unit(1, "feet"),
  32821. name: "Maw",
  32822. image: {
  32823. source: "./media/characters/casselene-yaro/maw.svg"
  32824. }
  32825. },
  32826. },
  32827. [
  32828. {
  32829. name: "Macro",
  32830. height: math.unit(190, "feet"),
  32831. default: true
  32832. },
  32833. ]
  32834. ))
  32835. characterMakers.push(() => makeCharacter(
  32836. { name: "Platine", species: ["raven"], tags: ["anthro"] },
  32837. {
  32838. front: {
  32839. height: math.unit(10, "feet"),
  32840. weight: math.unit(15015, "lb"),
  32841. name: "Front",
  32842. image: {
  32843. source: "./media/characters/platine/front.svg",
  32844. extra: 1741/1650,
  32845. bottom: 84/1825
  32846. }
  32847. },
  32848. side: {
  32849. height: math.unit(10, "feet"),
  32850. weight: math.unit(15015, "lb"),
  32851. name: "Side",
  32852. image: {
  32853. source: "./media/characters/platine/side.svg",
  32854. extra: 1790/1705,
  32855. bottom: 29/1819
  32856. }
  32857. },
  32858. },
  32859. [
  32860. {
  32861. name: "Normal",
  32862. height: math.unit(10, "feet"),
  32863. default: true
  32864. },
  32865. {
  32866. name: "Macro",
  32867. height: math.unit(100, "feet")
  32868. },
  32869. {
  32870. name: "Megamacro",
  32871. height: math.unit(1000, "feet")
  32872. },
  32873. ]
  32874. ))
  32875. characterMakers.push(() => makeCharacter(
  32876. { name: "Neapolitan Ananassa", species: ["gelato-bee"], tags: ["anthro"] },
  32877. {
  32878. front: {
  32879. height: math.unit(15 + 5 / 12, "feet"),
  32880. weight: math.unit(4600, "lb"),
  32881. name: "Front",
  32882. image: {
  32883. source: "./media/characters/neapolitan-ananassa/front.svg",
  32884. extra: 2903 / 2736,
  32885. bottom: 0 / 2903
  32886. }
  32887. },
  32888. side: {
  32889. height: math.unit(15 + 5 / 12, "feet"),
  32890. weight: math.unit(4600, "lb"),
  32891. name: "Side",
  32892. image: {
  32893. source: "./media/characters/neapolitan-ananassa/side.svg",
  32894. extra: 2925 / 2719,
  32895. bottom: 0 / 2925
  32896. }
  32897. },
  32898. back: {
  32899. height: math.unit(15 + 5 / 12, "feet"),
  32900. weight: math.unit(4600, "lb"),
  32901. name: "Back",
  32902. image: {
  32903. source: "./media/characters/neapolitan-ananassa/back.svg",
  32904. extra: 2903 / 2736,
  32905. bottom: 0 / 2903
  32906. }
  32907. },
  32908. },
  32909. [
  32910. {
  32911. name: "Normal",
  32912. height: math.unit(15 + 5 / 12, "feet"),
  32913. default: true
  32914. },
  32915. {
  32916. name: "Post-Millenium",
  32917. height: math.unit(35 + 5 / 12, "feet")
  32918. },
  32919. {
  32920. name: "Post-Era",
  32921. height: math.unit(450 + 5 / 12, "feet")
  32922. },
  32923. ]
  32924. ))
  32925. characterMakers.push(() => makeCharacter(
  32926. { name: "Pazuzu", species: ["demon"], tags: ["anthro"] },
  32927. {
  32928. front: {
  32929. height: math.unit(300, "meters"),
  32930. weight: math.unit(125000, "tonnes"),
  32931. name: "Front",
  32932. image: {
  32933. source: "./media/characters/pazuzu/front.svg",
  32934. extra: 877 / 794,
  32935. bottom: 47 / 924
  32936. }
  32937. },
  32938. },
  32939. [
  32940. {
  32941. name: "Macro",
  32942. height: math.unit(300, "meters"),
  32943. default: true
  32944. },
  32945. ]
  32946. ))
  32947. characterMakers.push(() => makeCharacter(
  32948. { name: "Aasha", species: ["whale", "seal"], tags: ["anthro"] },
  32949. {
  32950. side: {
  32951. height: math.unit(10 + 7 / 12, "feet"),
  32952. weight: math.unit(2.5, "tons"),
  32953. name: "Side",
  32954. image: {
  32955. source: "./media/characters/aasha/side.svg",
  32956. extra: 1345 / 1245,
  32957. bottom: 111 / 1456
  32958. }
  32959. },
  32960. back: {
  32961. height: math.unit(10 + 7 / 12, "feet"),
  32962. weight: math.unit(2.5, "tons"),
  32963. name: "Back",
  32964. image: {
  32965. source: "./media/characters/aasha/back.svg",
  32966. extra: 1133 / 1057,
  32967. bottom: 257 / 1390
  32968. }
  32969. },
  32970. },
  32971. [
  32972. {
  32973. name: "Normal",
  32974. height: math.unit(10 + 7 / 12, "feet"),
  32975. default: true
  32976. },
  32977. ]
  32978. ))
  32979. characterMakers.push(() => makeCharacter(
  32980. { name: "Nevan", species: ["gardevoir"], tags: ["anthro"] },
  32981. {
  32982. front: {
  32983. height: math.unit(6 + 3 / 12, "feet"),
  32984. name: "Front",
  32985. image: {
  32986. source: "./media/characters/nevan/front.svg",
  32987. extra: 704 / 704,
  32988. bottom: 28 / 732
  32989. }
  32990. },
  32991. back: {
  32992. height: math.unit(6 + 3 / 12, "feet"),
  32993. name: "Back",
  32994. image: {
  32995. source: "./media/characters/nevan/back.svg",
  32996. extra: 714 / 714,
  32997. bottom: 21 / 735
  32998. }
  32999. },
  33000. frontFlaccid: {
  33001. height: math.unit(6 + 3 / 12, "feet"),
  33002. name: "Front (Flaccid)",
  33003. image: {
  33004. source: "./media/characters/nevan/front-flaccid.svg",
  33005. extra: 704 / 704,
  33006. bottom: 28 / 732
  33007. }
  33008. },
  33009. frontErect: {
  33010. height: math.unit(6 + 3 / 12, "feet"),
  33011. name: "Front (Erect)",
  33012. image: {
  33013. source: "./media/characters/nevan/front-erect.svg",
  33014. extra: 704 / 704,
  33015. bottom: 28 / 732
  33016. }
  33017. },
  33018. backFlaccid: {
  33019. height: math.unit(6 + 3 / 12, "feet"),
  33020. name: "Back (Flaccid)",
  33021. image: {
  33022. source: "./media/characters/nevan/back-flaccid.svg",
  33023. extra: 714 / 714,
  33024. bottom: 21 / 735
  33025. }
  33026. },
  33027. },
  33028. [
  33029. {
  33030. name: "Normal",
  33031. height: math.unit(6 + 3 / 12, "feet"),
  33032. default: true
  33033. },
  33034. ]
  33035. ))
  33036. characterMakers.push(() => makeCharacter(
  33037. { name: "Arhan", species: ["kobold"], tags: ["anthro"] },
  33038. {
  33039. front: {
  33040. height: math.unit(4, "feet"),
  33041. name: "Front",
  33042. image: {
  33043. source: "./media/characters/arhan/front.svg",
  33044. extra: 3368 / 3133,
  33045. bottom: 0 / 3368
  33046. }
  33047. },
  33048. side: {
  33049. height: math.unit(4, "feet"),
  33050. name: "Side",
  33051. image: {
  33052. source: "./media/characters/arhan/side.svg",
  33053. extra: 3347 / 3105,
  33054. bottom: 0 / 3347
  33055. }
  33056. },
  33057. tongue: {
  33058. height: math.unit(1.42, "feet"),
  33059. name: "Tongue",
  33060. image: {
  33061. source: "./media/characters/arhan/tongue.svg"
  33062. }
  33063. },
  33064. head: {
  33065. height: math.unit(0.85, "feet"),
  33066. name: "Head",
  33067. image: {
  33068. source: "./media/characters/arhan/head.svg"
  33069. }
  33070. },
  33071. },
  33072. [
  33073. {
  33074. name: "Normal",
  33075. height: math.unit(4, "feet"),
  33076. default: true
  33077. },
  33078. ]
  33079. ))
  33080. characterMakers.push(() => makeCharacter(
  33081. { name: "DigiDuncan", species: ["human"], tags: ["anthro"] },
  33082. {
  33083. front: {
  33084. height: math.unit(5 + 7.5 / 12, "feet"),
  33085. weight: math.unit(120, "lb"),
  33086. name: "Front",
  33087. image: {
  33088. source: "./media/characters/digi-duncan/front.svg",
  33089. extra: 330 / 326,
  33090. bottom: 16 / 346
  33091. }
  33092. },
  33093. side: {
  33094. height: math.unit(5 + 7.5 / 12, "feet"),
  33095. weight: math.unit(120, "lb"),
  33096. name: "Side",
  33097. image: {
  33098. source: "./media/characters/digi-duncan/side.svg",
  33099. extra: 341 / 337,
  33100. bottom: 1 / 342
  33101. }
  33102. },
  33103. back: {
  33104. height: math.unit(5 + 7.5 / 12, "feet"),
  33105. weight: math.unit(120, "lb"),
  33106. name: "Back",
  33107. image: {
  33108. source: "./media/characters/digi-duncan/back.svg",
  33109. extra: 330 / 326,
  33110. bottom: 12 / 342
  33111. }
  33112. },
  33113. },
  33114. [
  33115. {
  33116. name: "Speck",
  33117. height: math.unit(0.25, "mm")
  33118. },
  33119. {
  33120. name: "Micro",
  33121. height: math.unit(5, "mm")
  33122. },
  33123. {
  33124. name: "Tiny",
  33125. height: math.unit(0.5, "inches"),
  33126. default: true
  33127. },
  33128. {
  33129. name: "Human",
  33130. height: math.unit(5 + 7.5 / 12, "feet")
  33131. },
  33132. {
  33133. name: "Minigiant",
  33134. height: math.unit(8 + 5.25, "feet")
  33135. },
  33136. {
  33137. name: "Giant",
  33138. height: math.unit(2000, "feet")
  33139. },
  33140. {
  33141. name: "Mega",
  33142. height: math.unit(371.1, "miles")
  33143. },
  33144. ]
  33145. ))
  33146. characterMakers.push(() => makeCharacter(
  33147. { name: "Jagaz Soulbreaker", species: ["charr"], tags: ["anthro"] },
  33148. {
  33149. front: {
  33150. height: math.unit(2, "meters"),
  33151. weight: math.unit(350, "kg"),
  33152. name: "Front",
  33153. image: {
  33154. source: "./media/characters/jagaz-soulbreaker/front.svg",
  33155. extra: 898 / 838,
  33156. bottom: 9 / 907
  33157. }
  33158. },
  33159. },
  33160. [
  33161. {
  33162. name: "Micro",
  33163. height: math.unit(8, "meters")
  33164. },
  33165. {
  33166. name: "Normal",
  33167. height: math.unit(50, "meters"),
  33168. default: true
  33169. },
  33170. {
  33171. name: "Macro",
  33172. height: math.unit(500, "meters")
  33173. },
  33174. ]
  33175. ))
  33176. characterMakers.push(() => makeCharacter(
  33177. { name: "Khardesh", species: ["dragon"], tags: ["anthro"] },
  33178. {
  33179. front: {
  33180. height: math.unit(6 + 6 / 12, "feet"),
  33181. name: "Front",
  33182. image: {
  33183. source: "./media/characters/khardesh/front.svg",
  33184. extra: 1788/1596,
  33185. bottom: 66/1854
  33186. }
  33187. },
  33188. back: {
  33189. height: math.unit(6 + 6 / 12, "feet"),
  33190. name: "Back",
  33191. image: {
  33192. source: "./media/characters/khardesh/back.svg",
  33193. extra: 1781/1584,
  33194. bottom: 68/1849
  33195. }
  33196. },
  33197. },
  33198. [
  33199. {
  33200. name: "Normal",
  33201. height: math.unit(6 + 6 / 12, "feet"),
  33202. default: true
  33203. },
  33204. {
  33205. name: "Normal+",
  33206. height: math.unit(4, "meters")
  33207. },
  33208. {
  33209. name: "Macro",
  33210. height: math.unit(50, "meters")
  33211. },
  33212. {
  33213. name: "Macro+",
  33214. height: math.unit(100, "meters")
  33215. },
  33216. {
  33217. name: "Megamacro",
  33218. height: math.unit(20, "km")
  33219. },
  33220. ]
  33221. ))
  33222. characterMakers.push(() => makeCharacter(
  33223. { name: "Kosho", species: ["kirin"], tags: ["anthro"] },
  33224. {
  33225. front: {
  33226. height: math.unit(6, "feet"),
  33227. weight: math.unit(150, "lb"),
  33228. name: "Front",
  33229. image: {
  33230. source: "./media/characters/kosho/front.svg",
  33231. extra: 1847 / 1847,
  33232. bottom: 86 / 1933
  33233. }
  33234. },
  33235. },
  33236. [
  33237. {
  33238. name: "Second-stage micro",
  33239. height: math.unit(0.5, "inches")
  33240. },
  33241. {
  33242. name: "First-stage micro",
  33243. height: math.unit(6, "inches")
  33244. },
  33245. {
  33246. name: "Normal",
  33247. height: math.unit(6, "feet"),
  33248. default: true
  33249. },
  33250. {
  33251. name: "First-stage macro",
  33252. height: math.unit(72, "feet")
  33253. },
  33254. {
  33255. name: "Second-stage macro",
  33256. height: math.unit(864, "feet")
  33257. },
  33258. ]
  33259. ))
  33260. characterMakers.push(() => makeCharacter(
  33261. { name: "Hydra", species: ["frog"], tags: ["anthro"] },
  33262. {
  33263. normal: {
  33264. height: math.unit(4 + 6 / 12, "feet"),
  33265. name: "Normal",
  33266. image: {
  33267. source: "./media/characters/hydra/normal.svg",
  33268. extra: 2833 / 2634,
  33269. bottom: 68 / 2901
  33270. }
  33271. },
  33272. smol: {
  33273. height: math.unit(0.705, "inches"),
  33274. name: "Smol",
  33275. image: {
  33276. source: "./media/characters/hydra/smol.svg",
  33277. extra: 2715 / 2540,
  33278. bottom: 0 / 2715
  33279. }
  33280. },
  33281. },
  33282. [
  33283. {
  33284. name: "Normal",
  33285. height: math.unit(4 + 6 / 12, "feet"),
  33286. default: true
  33287. }
  33288. ]
  33289. ))
  33290. characterMakers.push(() => makeCharacter(
  33291. { name: "Daz", species: ["ant"], tags: ["anthro"] },
  33292. {
  33293. front: {
  33294. height: math.unit(0.6, "cm"),
  33295. name: "Front",
  33296. image: {
  33297. source: "./media/characters/daz/front.svg",
  33298. extra: 1682 / 1164,
  33299. bottom: 42 / 1724
  33300. }
  33301. },
  33302. },
  33303. [
  33304. {
  33305. name: "Normal",
  33306. height: math.unit(0.6, "cm"),
  33307. default: true
  33308. },
  33309. ]
  33310. ))
  33311. characterMakers.push(() => makeCharacter(
  33312. { name: "Theo (Pangolin)", species: ["pangolin"], tags: ["anthro"] },
  33313. {
  33314. front: {
  33315. height: math.unit(6, "feet"),
  33316. weight: math.unit(235, "lb"),
  33317. name: "Front",
  33318. image: {
  33319. source: "./media/characters/theo-pangolin/front.svg",
  33320. extra: 1996 / 1969,
  33321. bottom: 115 / 2111
  33322. }
  33323. },
  33324. back: {
  33325. height: math.unit(6, "feet"),
  33326. weight: math.unit(235, "lb"),
  33327. name: "Back",
  33328. image: {
  33329. source: "./media/characters/theo-pangolin/back.svg",
  33330. extra: 1979 / 1979,
  33331. bottom: 40 / 2019
  33332. }
  33333. },
  33334. feral: {
  33335. height: math.unit(2, "feet"),
  33336. weight: math.unit(30, "lb"),
  33337. name: "Feral",
  33338. image: {
  33339. source: "./media/characters/theo-pangolin/feral.svg",
  33340. extra: 803 / 791,
  33341. bottom: 181 / 984
  33342. }
  33343. },
  33344. footFive: {
  33345. height: math.unit(1.43, "feet"),
  33346. name: "Foot (Five Toes)",
  33347. image: {
  33348. source: "./media/characters/theo-pangolin/foot-five.svg"
  33349. }
  33350. },
  33351. footFour: {
  33352. height: math.unit(1.43, "feet"),
  33353. name: "Foot (Four Toes)",
  33354. image: {
  33355. source: "./media/characters/theo-pangolin/foot-four.svg"
  33356. }
  33357. },
  33358. handFour: {
  33359. height: math.unit(0.81, "feet"),
  33360. name: "Hand (Four Fingers)",
  33361. image: {
  33362. source: "./media/characters/theo-pangolin/hand-four.svg"
  33363. }
  33364. },
  33365. handThree: {
  33366. height: math.unit(0.81, "feet"),
  33367. name: "Hand (Three Fingers)",
  33368. image: {
  33369. source: "./media/characters/theo-pangolin/hand-three.svg"
  33370. }
  33371. },
  33372. headFront: {
  33373. height: math.unit(1.37, "feet"),
  33374. name: "Head (Front)",
  33375. image: {
  33376. source: "./media/characters/theo-pangolin/head-front.svg"
  33377. }
  33378. },
  33379. headSide: {
  33380. height: math.unit(1.43, "feet"),
  33381. name: "Head (Side)",
  33382. image: {
  33383. source: "./media/characters/theo-pangolin/head-side.svg"
  33384. }
  33385. },
  33386. tongue: {
  33387. height: math.unit(2.29, "feet"),
  33388. name: "Tongue",
  33389. image: {
  33390. source: "./media/characters/theo-pangolin/tongue.svg"
  33391. }
  33392. },
  33393. },
  33394. [
  33395. {
  33396. name: "Normal",
  33397. height: math.unit(6, "feet")
  33398. },
  33399. {
  33400. name: "Macro",
  33401. height: math.unit(400, "feet"),
  33402. default: true
  33403. },
  33404. ]
  33405. ))
  33406. characterMakers.push(() => makeCharacter(
  33407. { name: "Renée", species: ["mouse"], tags: ["anthro"] },
  33408. {
  33409. front: {
  33410. height: math.unit(6, "inches"),
  33411. weight: math.unit(0.036, "kg"),
  33412. name: "Front",
  33413. image: {
  33414. source: "./media/characters/renée/front.svg",
  33415. extra: 900 / 886,
  33416. bottom: 8 / 908
  33417. }
  33418. },
  33419. },
  33420. [
  33421. {
  33422. name: "Nano",
  33423. height: math.unit(1, "nm")
  33424. },
  33425. {
  33426. name: "Micro",
  33427. height: math.unit(1, "mm")
  33428. },
  33429. {
  33430. name: "Normal",
  33431. height: math.unit(6, "inches")
  33432. },
  33433. {
  33434. name: "Macro",
  33435. height: math.unit(2000, "feet"),
  33436. default: true
  33437. },
  33438. {
  33439. name: "Megamacro",
  33440. height: math.unit(2, "km")
  33441. },
  33442. {
  33443. name: "Gigamacro",
  33444. height: math.unit(2000, "km")
  33445. },
  33446. {
  33447. name: "Teramacro",
  33448. height: math.unit(250000, "km")
  33449. },
  33450. ]
  33451. ))
  33452. characterMakers.push(() => makeCharacter(
  33453. { name: "Caledvwlch", species: ["unicorn"], tags: ["anthro"] },
  33454. {
  33455. front: {
  33456. height: math.unit(4, "meters"),
  33457. weight: math.unit(150, "kg"),
  33458. name: "Front",
  33459. image: {
  33460. source: "./media/characters/caledvwlch/front.svg",
  33461. extra: 1757/1537,
  33462. bottom: 31/1788
  33463. }
  33464. },
  33465. side: {
  33466. height: math.unit(4, "meters"),
  33467. weight: math.unit(150, "kg"),
  33468. name: "Side",
  33469. image: {
  33470. source: "./media/characters/caledvwlch/side.svg",
  33471. extra: 1605 / 1536,
  33472. bottom: 31 / 1636
  33473. }
  33474. },
  33475. back: {
  33476. height: math.unit(4, "meters"),
  33477. weight: math.unit(150, "kg"),
  33478. name: "Back",
  33479. image: {
  33480. source: "./media/characters/caledvwlch/back.svg",
  33481. extra: 1635 / 1565,
  33482. bottom: 27 / 1662
  33483. }
  33484. },
  33485. },
  33486. [
  33487. {
  33488. name: "\"Incognito\"",
  33489. height: math.unit(4, "meters")
  33490. },
  33491. {
  33492. name: "Small rampage",
  33493. height: math.unit(600, "meters")
  33494. },
  33495. {
  33496. name: "Mega",
  33497. height: math.unit(30, "km")
  33498. },
  33499. {
  33500. name: "Home-size",
  33501. height: math.unit(50, "km"),
  33502. default: true
  33503. },
  33504. {
  33505. name: "Giga",
  33506. height: math.unit(300, "km")
  33507. },
  33508. {
  33509. name: "Lounging",
  33510. height: math.unit(11000, "km")
  33511. },
  33512. {
  33513. name: "Planet snacking",
  33514. height: math.unit(2000000, "km")
  33515. },
  33516. ]
  33517. ))
  33518. characterMakers.push(() => makeCharacter(
  33519. { name: "Sapphire Svell", species: ["dragon"], tags: ["anthro"] },
  33520. {
  33521. front: {
  33522. height: math.unit(6, "feet"),
  33523. weight: math.unit(215, "lb"),
  33524. name: "Front",
  33525. image: {
  33526. source: "./media/characters/sapphire-svell/front.svg",
  33527. extra: 495 / 455,
  33528. bottom: 20 / 515
  33529. }
  33530. },
  33531. back: {
  33532. height: math.unit(6, "feet"),
  33533. weight: math.unit(216, "lb"),
  33534. name: "Back",
  33535. image: {
  33536. source: "./media/characters/sapphire-svell/back.svg",
  33537. extra: 497 / 477,
  33538. bottom: 7 / 504
  33539. }
  33540. },
  33541. maw: {
  33542. height: math.unit(1.57, "feet"),
  33543. name: "Maw",
  33544. image: {
  33545. source: "./media/characters/sapphire-svell/maw.svg"
  33546. }
  33547. },
  33548. foot: {
  33549. height: math.unit(1.07, "feet"),
  33550. name: "Foot",
  33551. image: {
  33552. source: "./media/characters/sapphire-svell/foot.svg"
  33553. }
  33554. },
  33555. toering: {
  33556. height: math.unit(1.7, "inch"),
  33557. name: "Toering",
  33558. image: {
  33559. source: "./media/characters/sapphire-svell/toering.svg"
  33560. }
  33561. },
  33562. },
  33563. [
  33564. {
  33565. name: "Normal",
  33566. height: math.unit(300, "feet"),
  33567. default: true
  33568. },
  33569. {
  33570. name: "Augmented",
  33571. height: math.unit(1250, "feet")
  33572. },
  33573. {
  33574. name: "Unleashed",
  33575. height: math.unit(3000, "feet")
  33576. },
  33577. ]
  33578. ))
  33579. characterMakers.push(() => makeCharacter(
  33580. { name: "Glitch Flux", species: ["wolf"], tags: ["feral"] },
  33581. {
  33582. side: {
  33583. height: math.unit(2 + 3 / 12, "feet"),
  33584. weight: math.unit(110, "lb"),
  33585. name: "Side",
  33586. image: {
  33587. source: "./media/characters/glitch-flux/side.svg",
  33588. extra: 997 / 805,
  33589. bottom: 20 / 1017
  33590. }
  33591. },
  33592. },
  33593. [
  33594. {
  33595. name: "Normal",
  33596. height: math.unit(2 + 3 / 12, "feet"),
  33597. default: true
  33598. },
  33599. ]
  33600. ))
  33601. characterMakers.push(() => makeCharacter(
  33602. { name: "Mid", species: ["cat"], tags: ["anthro"] },
  33603. {
  33604. front: {
  33605. height: math.unit(4, "meters"),
  33606. name: "Front",
  33607. image: {
  33608. source: "./media/characters/mid/front.svg",
  33609. extra: 507 / 476,
  33610. bottom: 17 / 524
  33611. }
  33612. },
  33613. back: {
  33614. height: math.unit(4, "meters"),
  33615. name: "Back",
  33616. image: {
  33617. source: "./media/characters/mid/back.svg",
  33618. extra: 519 / 487,
  33619. bottom: 7 / 526
  33620. }
  33621. },
  33622. stuck: {
  33623. height: math.unit(2.2, "meters"),
  33624. name: "Stuck",
  33625. image: {
  33626. source: "./media/characters/mid/stuck.svg",
  33627. extra: 1951 / 1869,
  33628. bottom: 88 / 2039
  33629. }
  33630. }
  33631. },
  33632. [
  33633. {
  33634. name: "Normal",
  33635. height: math.unit(4, "meters"),
  33636. default: true
  33637. },
  33638. {
  33639. name: "Big",
  33640. height: math.unit(10, "meters")
  33641. },
  33642. {
  33643. name: "Macro",
  33644. height: math.unit(800, "meters")
  33645. },
  33646. {
  33647. name: "Megamacro",
  33648. height: math.unit(100, "km")
  33649. },
  33650. {
  33651. name: "Overgrown",
  33652. height: math.unit(1, "parsec")
  33653. },
  33654. ]
  33655. ))
  33656. characterMakers.push(() => makeCharacter(
  33657. { name: "Iris", species: ["tiger"], tags: ["anthro"] },
  33658. {
  33659. front: {
  33660. height: math.unit(2.5, "meters"),
  33661. weight: math.unit(225, "kg"),
  33662. name: "Front",
  33663. image: {
  33664. source: "./media/characters/iris/front.svg",
  33665. extra: 3348 / 3251,
  33666. bottom: 205 / 3553
  33667. }
  33668. },
  33669. maw: {
  33670. height: math.unit(0.56, "meter"),
  33671. name: "Maw",
  33672. image: {
  33673. source: "./media/characters/iris/maw.svg"
  33674. }
  33675. },
  33676. },
  33677. [
  33678. {
  33679. name: "Mewter cat",
  33680. height: math.unit(1.2, "meters")
  33681. },
  33682. {
  33683. name: "Normal",
  33684. height: math.unit(2.5, "meters"),
  33685. default: true
  33686. },
  33687. {
  33688. name: "Minimacro",
  33689. height: math.unit(18, "feet")
  33690. },
  33691. {
  33692. name: "Macro",
  33693. height: math.unit(140, "feet")
  33694. },
  33695. {
  33696. name: "Macro+",
  33697. height: math.unit(180, "meters")
  33698. },
  33699. {
  33700. name: "Megamacro",
  33701. height: math.unit(2746, "meters")
  33702. },
  33703. ]
  33704. ))
  33705. characterMakers.push(() => makeCharacter(
  33706. { name: "Axel", species: ["raven"], tags: ["anthro"] },
  33707. {
  33708. front: {
  33709. height: math.unit(6, "feet"),
  33710. weight: math.unit(135, "lb"),
  33711. name: "Front",
  33712. image: {
  33713. source: "./media/characters/axel/front.svg",
  33714. extra: 908 / 908,
  33715. bottom: 58 / 966
  33716. }
  33717. },
  33718. side: {
  33719. height: math.unit(6, "feet"),
  33720. weight: math.unit(135, "lb"),
  33721. name: "Side",
  33722. image: {
  33723. source: "./media/characters/axel/side.svg",
  33724. extra: 958 / 958,
  33725. bottom: 11 / 969
  33726. }
  33727. },
  33728. back: {
  33729. height: math.unit(6, "feet"),
  33730. weight: math.unit(135, "lb"),
  33731. name: "Back",
  33732. image: {
  33733. source: "./media/characters/axel/back.svg",
  33734. extra: 887 / 887,
  33735. bottom: 34 / 921
  33736. }
  33737. },
  33738. head: {
  33739. height: math.unit(1.07, "feet"),
  33740. name: "Head",
  33741. image: {
  33742. source: "./media/characters/axel/head.svg"
  33743. }
  33744. },
  33745. beak: {
  33746. height: math.unit(1.4, "feet"),
  33747. name: "Beak",
  33748. image: {
  33749. source: "./media/characters/axel/beak.svg"
  33750. }
  33751. },
  33752. beakSide: {
  33753. height: math.unit(1.4, "feet"),
  33754. name: "Beak Side",
  33755. image: {
  33756. source: "./media/characters/axel/beak-side.svg"
  33757. }
  33758. },
  33759. sheath: {
  33760. height: math.unit(0.5, "feet"),
  33761. name: "Sheath",
  33762. image: {
  33763. source: "./media/characters/axel/sheath.svg"
  33764. }
  33765. },
  33766. dick: {
  33767. height: math.unit(0.98, "feet"),
  33768. name: "Dick",
  33769. image: {
  33770. source: "./media/characters/axel/dick.svg"
  33771. }
  33772. },
  33773. },
  33774. [
  33775. {
  33776. name: "Macro",
  33777. height: math.unit(68, "meters"),
  33778. default: true
  33779. },
  33780. ]
  33781. ))
  33782. characterMakers.push(() => makeCharacter(
  33783. { name: "Joanna", species: ["wolf"], tags: ["anthro"] },
  33784. {
  33785. front: {
  33786. height: math.unit(3.5, "meters"),
  33787. weight: math.unit(1200, "kg"),
  33788. name: "Front",
  33789. image: {
  33790. source: "./media/characters/joanna/front.svg",
  33791. extra: 1596 / 1488,
  33792. bottom: 29 / 1625
  33793. }
  33794. },
  33795. back: {
  33796. height: math.unit(3.5, "meters"),
  33797. weight: math.unit(1200, "kg"),
  33798. name: "Back",
  33799. image: {
  33800. source: "./media/characters/joanna/back.svg",
  33801. extra: 1594 / 1495,
  33802. bottom: 26 / 1620
  33803. }
  33804. },
  33805. frontShorts: {
  33806. height: math.unit(3.5, "meters"),
  33807. weight: math.unit(1200, "kg"),
  33808. name: "Front (Shorts)",
  33809. image: {
  33810. source: "./media/characters/joanna/front-shorts.svg",
  33811. extra: 1596 / 1488,
  33812. bottom: 29 / 1625
  33813. }
  33814. },
  33815. frontBiker: {
  33816. height: math.unit(3.5, "meters"),
  33817. weight: math.unit(1200, "kg"),
  33818. name: "Front (Biker)",
  33819. image: {
  33820. source: "./media/characters/joanna/front-biker.svg",
  33821. extra: 1596 / 1488,
  33822. bottom: 29 / 1625
  33823. }
  33824. },
  33825. backBiker: {
  33826. height: math.unit(3.5, "meters"),
  33827. weight: math.unit(1200, "kg"),
  33828. name: "Back (Biker)",
  33829. image: {
  33830. source: "./media/characters/joanna/back-biker.svg",
  33831. extra: 1594 / 1495,
  33832. bottom: 88 / 1682
  33833. }
  33834. },
  33835. bikeLeft: {
  33836. height: math.unit(2.4, "meters"),
  33837. weight: math.unit(1600, "kg"),
  33838. name: "Bike (Left)",
  33839. image: {
  33840. source: "./media/characters/joanna/bike-left.svg",
  33841. extra: 720 / 720,
  33842. bottom: 8 / 728
  33843. }
  33844. },
  33845. bikeRight: {
  33846. height: math.unit(2.4, "meters"),
  33847. weight: math.unit(1600, "kg"),
  33848. name: "Bike (Right)",
  33849. image: {
  33850. source: "./media/characters/joanna/bike-right.svg",
  33851. extra: 720 / 720,
  33852. bottom: 8 / 728
  33853. }
  33854. },
  33855. },
  33856. [
  33857. {
  33858. name: "Incognito",
  33859. height: math.unit(3.5, "meters")
  33860. },
  33861. {
  33862. name: "Casual Big",
  33863. height: math.unit(200, "meters")
  33864. },
  33865. {
  33866. name: "Macro",
  33867. height: math.unit(600, "meters")
  33868. },
  33869. {
  33870. name: "Original",
  33871. height: math.unit(20, "km"),
  33872. default: true
  33873. },
  33874. {
  33875. name: "Giga",
  33876. height: math.unit(400, "km")
  33877. },
  33878. {
  33879. name: "Lounging",
  33880. height: math.unit(1500, "km")
  33881. },
  33882. {
  33883. name: "Planetary",
  33884. height: math.unit(200000, "km")
  33885. },
  33886. ]
  33887. ))
  33888. characterMakers.push(() => makeCharacter(
  33889. { name: "Hugo Sigil", species: ["cat"], tags: ["anthro"] },
  33890. {
  33891. front: {
  33892. height: math.unit(6, "feet"),
  33893. weight: math.unit(150, "lb"),
  33894. name: "Front",
  33895. image: {
  33896. source: "./media/characters/hugo-sigil/front.svg",
  33897. extra: 522 / 500,
  33898. bottom: 2 / 524
  33899. }
  33900. },
  33901. back: {
  33902. height: math.unit(6, "feet"),
  33903. weight: math.unit(150, "lb"),
  33904. name: "Back",
  33905. image: {
  33906. source: "./media/characters/hugo-sigil/back.svg",
  33907. extra: 519 / 495,
  33908. bottom: 5 / 524
  33909. }
  33910. },
  33911. maw: {
  33912. height: math.unit(1.4, "feet"),
  33913. weight: math.unit(150, "lb"),
  33914. name: "Maw",
  33915. image: {
  33916. source: "./media/characters/hugo-sigil/maw.svg"
  33917. }
  33918. },
  33919. feet: {
  33920. height: math.unit(1.56, "feet"),
  33921. weight: math.unit(150, "lb"),
  33922. name: "Feet",
  33923. image: {
  33924. source: "./media/characters/hugo-sigil/feet.svg",
  33925. extra: 177 / 177,
  33926. bottom: 12 / 189
  33927. }
  33928. },
  33929. },
  33930. [
  33931. {
  33932. name: "Normal",
  33933. height: math.unit(6, "feet")
  33934. },
  33935. {
  33936. name: "Macro",
  33937. height: math.unit(200, "feet"),
  33938. default: true
  33939. },
  33940. ]
  33941. ))
  33942. characterMakers.push(() => makeCharacter(
  33943. { name: "Peri", species: ["husky"], tags: ["anthro"] },
  33944. {
  33945. front: {
  33946. height: math.unit(6, "feet"),
  33947. weight: math.unit(150, "lb"),
  33948. name: "Front",
  33949. image: {
  33950. source: "./media/characters/peri/front.svg",
  33951. extra: 2354 / 2233,
  33952. bottom: 49 / 2403
  33953. }
  33954. },
  33955. },
  33956. [
  33957. {
  33958. name: "Really Small",
  33959. height: math.unit(1, "nm")
  33960. },
  33961. {
  33962. name: "Micro",
  33963. height: math.unit(4, "inches")
  33964. },
  33965. {
  33966. name: "Normal",
  33967. height: math.unit(7, "inches"),
  33968. default: true
  33969. },
  33970. {
  33971. name: "Macro",
  33972. height: math.unit(400, "feet")
  33973. },
  33974. {
  33975. name: "Megamacro",
  33976. height: math.unit(100, "miles")
  33977. },
  33978. ]
  33979. ))
  33980. characterMakers.push(() => makeCharacter(
  33981. { name: "Issilora", species: ["dragon"], tags: ["anthro"] },
  33982. {
  33983. frontSlim: {
  33984. height: math.unit(7, "feet"),
  33985. name: "Front (Slim)",
  33986. image: {
  33987. source: "./media/characters/issilora/front-slim.svg",
  33988. extra: 529 / 449,
  33989. bottom: 53 / 582
  33990. }
  33991. },
  33992. sideSlim: {
  33993. height: math.unit(7, "feet"),
  33994. name: "Side (Slim)",
  33995. image: {
  33996. source: "./media/characters/issilora/side-slim.svg",
  33997. extra: 570 / 480,
  33998. bottom: 30 / 600
  33999. }
  34000. },
  34001. backSlim: {
  34002. height: math.unit(7, "feet"),
  34003. name: "Back (Slim)",
  34004. image: {
  34005. source: "./media/characters/issilora/back-slim.svg",
  34006. extra: 537 / 455,
  34007. bottom: 46 / 583
  34008. }
  34009. },
  34010. frontBuff: {
  34011. height: math.unit(7, "feet"),
  34012. name: "Front (Buff)",
  34013. image: {
  34014. source: "./media/characters/issilora/front-buff.svg",
  34015. extra: 2310 / 2035,
  34016. bottom: 335 / 2645
  34017. }
  34018. },
  34019. head: {
  34020. height: math.unit(1.94, "feet"),
  34021. name: "Head",
  34022. image: {
  34023. source: "./media/characters/issilora/head.svg"
  34024. }
  34025. },
  34026. },
  34027. [
  34028. {
  34029. name: "Minimum",
  34030. height: math.unit(7, "feet")
  34031. },
  34032. {
  34033. name: "Comfortable",
  34034. height: math.unit(17, "feet")
  34035. },
  34036. {
  34037. name: "Fun Size",
  34038. height: math.unit(47, "feet")
  34039. },
  34040. {
  34041. name: "Natural Macro",
  34042. height: math.unit(137, "feet"),
  34043. default: true
  34044. },
  34045. {
  34046. name: "Maximum Kaiju",
  34047. height: math.unit(397, "feet")
  34048. },
  34049. ]
  34050. ))
  34051. characterMakers.push(() => makeCharacter(
  34052. { name: "Irb'iiritaahn", species: ["uragi'viidorn"], tags: ["taur"] },
  34053. {
  34054. front: {
  34055. height: math.unit(50 + 9/12, "feet"),
  34056. weight: math.unit(32.8, "tons"),
  34057. name: "Front",
  34058. image: {
  34059. source: "./media/characters/irb'iiritaahn/front.svg",
  34060. extra: 1878/1826,
  34061. bottom: 326/2204
  34062. }
  34063. },
  34064. back: {
  34065. height: math.unit(50 + 9/12, "feet"),
  34066. weight: math.unit(32.8, "tons"),
  34067. name: "Back",
  34068. image: {
  34069. source: "./media/characters/irb'iiritaahn/back.svg",
  34070. extra: 2052/2018,
  34071. bottom: 152/2204
  34072. }
  34073. },
  34074. head: {
  34075. height: math.unit(12.86, "feet"),
  34076. name: "Head",
  34077. image: {
  34078. source: "./media/characters/irb'iiritaahn/head.svg"
  34079. }
  34080. },
  34081. maw: {
  34082. height: math.unit(9.66, "feet"),
  34083. name: "Maw",
  34084. image: {
  34085. source: "./media/characters/irb'iiritaahn/maw.svg"
  34086. }
  34087. },
  34088. frontDick: {
  34089. height: math.unit(8.78461, "feet"),
  34090. name: "Front Dick",
  34091. image: {
  34092. source: "./media/characters/irb'iiritaahn/front-dick.svg"
  34093. }
  34094. },
  34095. rearDick: {
  34096. height: math.unit(8.78461, "feet"),
  34097. name: "Rear Dick",
  34098. image: {
  34099. source: "./media/characters/irb'iiritaahn/rear-dick.svg"
  34100. }
  34101. },
  34102. rearDickUnfolded: {
  34103. height: math.unit(8.78, "feet"),
  34104. name: "Rear Dick (Unfolded)",
  34105. image: {
  34106. source: "./media/characters/irb'iiritaahn/rear-dick-unfolded.svg"
  34107. }
  34108. },
  34109. wings: {
  34110. height: math.unit(43, "feet"),
  34111. name: "Wings",
  34112. image: {
  34113. source: "./media/characters/irb'iiritaahn/wings.svg"
  34114. }
  34115. },
  34116. },
  34117. [
  34118. {
  34119. name: "Macro",
  34120. height: math.unit(50 + 9/12, "feet"),
  34121. default: true
  34122. },
  34123. ]
  34124. ))
  34125. characterMakers.push(() => makeCharacter(
  34126. { name: "Irbisgreif", species: ["gryphdelphais"], tags: ["anthro"] },
  34127. {
  34128. front: {
  34129. height: math.unit(205, "cm"),
  34130. weight: math.unit(102, "kg"),
  34131. name: "Front",
  34132. image: {
  34133. source: "./media/characters/irbisgreif/front.svg",
  34134. extra: 785/706,
  34135. bottom: 13/798
  34136. }
  34137. },
  34138. back: {
  34139. height: math.unit(205, "cm"),
  34140. weight: math.unit(102, "kg"),
  34141. name: "Back",
  34142. image: {
  34143. source: "./media/characters/irbisgreif/back.svg",
  34144. extra: 713/701,
  34145. bottom: 26/739
  34146. }
  34147. },
  34148. frontDressed: {
  34149. height: math.unit(216, "cm"),
  34150. weight: math.unit(102, "kg"),
  34151. name: "Front (Dressed)",
  34152. image: {
  34153. source: "./media/characters/irbisgreif/front-dressed.svg",
  34154. extra: 902/776,
  34155. bottom: 14/916
  34156. }
  34157. },
  34158. sideDressed: {
  34159. height: math.unit(195, "cm"),
  34160. weight: math.unit(102, "kg"),
  34161. name: "Side (Dressed)",
  34162. image: {
  34163. source: "./media/characters/irbisgreif/side-dressed.svg",
  34164. extra: 788/688,
  34165. bottom: 21/809
  34166. }
  34167. },
  34168. backDressed: {
  34169. height: math.unit(216, "cm"),
  34170. weight: math.unit(102, "kg"),
  34171. name: "Back (Dressed)",
  34172. image: {
  34173. source: "./media/characters/irbisgreif/back-dressed.svg",
  34174. extra: 901/783,
  34175. bottom: 10/911
  34176. }
  34177. },
  34178. dick: {
  34179. height: math.unit(0.49, "feet"),
  34180. name: "Dick",
  34181. image: {
  34182. source: "./media/characters/irbisgreif/dick.svg"
  34183. }
  34184. },
  34185. wingTop: {
  34186. height: math.unit(1.93 , "feet"),
  34187. name: "Wing (Top)",
  34188. image: {
  34189. source: "./media/characters/irbisgreif/wing-top.svg"
  34190. }
  34191. },
  34192. wingBottom: {
  34193. height: math.unit(1.93 , "feet"),
  34194. name: "Wing (Bottom)",
  34195. image: {
  34196. source: "./media/characters/irbisgreif/wing-bottom.svg"
  34197. }
  34198. },
  34199. },
  34200. [
  34201. {
  34202. name: "Normal",
  34203. height: math.unit(216, "cm"),
  34204. default: true
  34205. },
  34206. ]
  34207. ))
  34208. characterMakers.push(() => makeCharacter(
  34209. { name: "Pride", species: ["skunk"], tags: ["anthro"] },
  34210. {
  34211. front: {
  34212. height: math.unit(6, "feet"),
  34213. weight: math.unit(150, "lb"),
  34214. name: "Front",
  34215. image: {
  34216. source: "./media/characters/pride/front.svg",
  34217. extra: 1299/1230,
  34218. bottom: 18/1317
  34219. }
  34220. },
  34221. },
  34222. [
  34223. {
  34224. name: "Normal",
  34225. height: math.unit(7, "feet")
  34226. },
  34227. {
  34228. name: "Mini-macro",
  34229. height: math.unit(11, "feet")
  34230. },
  34231. {
  34232. name: "Macro",
  34233. height: math.unit(15, "meters"),
  34234. default: true
  34235. },
  34236. {
  34237. name: "Macro+",
  34238. height: math.unit(40, "meters")
  34239. },
  34240. ]
  34241. ))
  34242. characterMakers.push(() => makeCharacter(
  34243. { name: "Vaelophys Nyx", species: ["maned-wolf"], tags: ["anthro", "feral"] },
  34244. {
  34245. front: {
  34246. height: math.unit(4 + 2 / 12, "feet"),
  34247. weight: math.unit(95, "lb"),
  34248. name: "Front",
  34249. image: {
  34250. source: "./media/characters/vaelophis-nyx/front.svg",
  34251. extra: 2532/2330,
  34252. bottom: 0/2532
  34253. }
  34254. },
  34255. back: {
  34256. height: math.unit(4 + 2 / 12, "feet"),
  34257. weight: math.unit(95, "lb"),
  34258. name: "Back",
  34259. image: {
  34260. source: "./media/characters/vaelophis-nyx/back.svg",
  34261. extra: 2484/2361,
  34262. bottom: 0/2484
  34263. }
  34264. },
  34265. feralSide: {
  34266. height: math.unit(2 + 1/12, "feet"),
  34267. weight: math.unit(20, "lb"),
  34268. name: "Feral (Side)",
  34269. image: {
  34270. source: "./media/characters/vaelophis-nyx/feral-side.svg",
  34271. extra: 1721/1581,
  34272. bottom: 70/1791
  34273. }
  34274. },
  34275. feralLazing: {
  34276. height: math.unit(1.08, "feet"),
  34277. weight: math.unit(20, "lb"),
  34278. name: "Feral (Lazing)",
  34279. image: {
  34280. source: "./media/characters/vaelophis-nyx/feral-lazing.svg",
  34281. extra: 822/822,
  34282. bottom: 248/1070
  34283. }
  34284. },
  34285. ear: {
  34286. height: math.unit(0.416, "feet"),
  34287. name: "Ear",
  34288. image: {
  34289. source: "./media/characters/vaelophis-nyx/ear.svg"
  34290. }
  34291. },
  34292. eye: {
  34293. height: math.unit(0.0748, "feet"),
  34294. name: "Eye",
  34295. image: {
  34296. source: "./media/characters/vaelophis-nyx/eye.svg"
  34297. }
  34298. },
  34299. mouth: {
  34300. height: math.unit(0.378, "feet"),
  34301. name: "Mouth",
  34302. image: {
  34303. source: "./media/characters/vaelophis-nyx/mouth.svg"
  34304. }
  34305. },
  34306. spade: {
  34307. height: math.unit(0.55, "feet"),
  34308. name: "Spade",
  34309. image: {
  34310. source: "./media/characters/vaelophis-nyx/spade.svg"
  34311. }
  34312. },
  34313. },
  34314. [
  34315. {
  34316. name: "Normal",
  34317. height: math.unit(4 + 2/12, "feet"),
  34318. default: true
  34319. },
  34320. ]
  34321. ))
  34322. characterMakers.push(() => makeCharacter(
  34323. { name: "Flux", species: ["luxray"], tags: ["anthro", "feral"] },
  34324. {
  34325. front: {
  34326. height: math.unit(7, "feet"),
  34327. weight: math.unit(231, "lb"),
  34328. name: "Front",
  34329. image: {
  34330. source: "./media/characters/flux/front.svg",
  34331. extra: 919/871,
  34332. bottom: 0/919
  34333. }
  34334. },
  34335. back: {
  34336. height: math.unit(7, "feet"),
  34337. weight: math.unit(231, "lb"),
  34338. name: "Back",
  34339. image: {
  34340. source: "./media/characters/flux/back.svg",
  34341. extra: 1040/992,
  34342. bottom: 0/1040
  34343. }
  34344. },
  34345. frontDressed: {
  34346. height: math.unit(7, "feet"),
  34347. weight: math.unit(231, "lb"),
  34348. name: "Front (Dressed)",
  34349. image: {
  34350. source: "./media/characters/flux/front-dressed.svg",
  34351. extra: 919/871,
  34352. bottom: 0/919
  34353. }
  34354. },
  34355. feralSide: {
  34356. height: math.unit(5, "feet"),
  34357. weight: math.unit(150, "lb"),
  34358. name: "Feral (Side)",
  34359. image: {
  34360. source: "./media/characters/flux/feral-side.svg",
  34361. extra: 598/528,
  34362. bottom: 28/626
  34363. }
  34364. },
  34365. head: {
  34366. height: math.unit(1.585, "feet"),
  34367. name: "Head",
  34368. image: {
  34369. source: "./media/characters/flux/head.svg"
  34370. }
  34371. },
  34372. headSide: {
  34373. height: math.unit(1.74, "feet"),
  34374. name: "Head (Side)",
  34375. image: {
  34376. source: "./media/characters/flux/head-side.svg"
  34377. }
  34378. },
  34379. headSideFire: {
  34380. height: math.unit(1.76, "feet"),
  34381. name: "Head (Side, Fire)",
  34382. image: {
  34383. source: "./media/characters/flux/head-side-fire.svg"
  34384. }
  34385. },
  34386. },
  34387. [
  34388. {
  34389. name: "Normal",
  34390. height: math.unit(7, "feet"),
  34391. default: true
  34392. },
  34393. ]
  34394. ))
  34395. characterMakers.push(() => makeCharacter(
  34396. { name: "Ulfra Lupae", species: ["wolf"], tags: ["anthro"] },
  34397. {
  34398. front: {
  34399. height: math.unit(9, "feet"),
  34400. weight: math.unit(1012, "lb"),
  34401. name: "Front",
  34402. image: {
  34403. source: "./media/characters/ulfra-lupae/front.svg",
  34404. extra: 1083/1011,
  34405. bottom: 67/1150
  34406. }
  34407. },
  34408. },
  34409. [
  34410. {
  34411. name: "Micro",
  34412. height: math.unit(6, "inches")
  34413. },
  34414. {
  34415. name: "Socializing",
  34416. height: math.unit(6 + 5/12, "feet")
  34417. },
  34418. {
  34419. name: "Normal",
  34420. height: math.unit(9, "feet"),
  34421. default: true
  34422. },
  34423. {
  34424. name: "Macro",
  34425. height: math.unit(150, "feet")
  34426. },
  34427. ]
  34428. ))
  34429. characterMakers.push(() => makeCharacter(
  34430. { name: "Timber", species: ["canine"], tags: ["anthro"] },
  34431. {
  34432. front: {
  34433. height: math.unit(5 + 2/12, "feet"),
  34434. weight: math.unit(120, "lb"),
  34435. name: "Front",
  34436. image: {
  34437. source: "./media/characters/timber/front.svg",
  34438. extra: 2814/2705,
  34439. bottom: 181/2995
  34440. }
  34441. },
  34442. },
  34443. [
  34444. {
  34445. name: "Normal",
  34446. height: math.unit(5 + 2/12, "feet"),
  34447. default: true
  34448. },
  34449. ]
  34450. ))
  34451. characterMakers.push(() => makeCharacter(
  34452. { name: "Nicki", species: ["goat", "wolf", "rabbit"], tags: ["anthro"] },
  34453. {
  34454. front: {
  34455. height: math.unit(9, "feet"),
  34456. name: "Front",
  34457. image: {
  34458. source: "./media/characters/nicki/front.svg",
  34459. extra: 1240/990,
  34460. bottom: 45/1285
  34461. },
  34462. form: "anthro",
  34463. default: true
  34464. },
  34465. side: {
  34466. height: math.unit(9, "feet"),
  34467. name: "Side",
  34468. image: {
  34469. source: "./media/characters/nicki/side.svg",
  34470. extra: 1047/973,
  34471. bottom: 61/1108
  34472. },
  34473. form: "anthro"
  34474. },
  34475. back: {
  34476. height: math.unit(9, "feet"),
  34477. name: "Back",
  34478. image: {
  34479. source: "./media/characters/nicki/back.svg",
  34480. extra: 1006/965,
  34481. bottom: 39/1045
  34482. },
  34483. form: "anthro"
  34484. },
  34485. taur: {
  34486. height: math.unit(15, "feet"),
  34487. name: "Taur",
  34488. image: {
  34489. source: "./media/characters/nicki/taur.svg",
  34490. extra: 1592/1347,
  34491. bottom: 0/1592
  34492. },
  34493. form: "taur",
  34494. default: true
  34495. },
  34496. },
  34497. [
  34498. {
  34499. name: "Normal",
  34500. height: math.unit(9, "feet"),
  34501. form: "anthro",
  34502. default: true
  34503. },
  34504. {
  34505. name: "Normal",
  34506. height: math.unit(15, "feet"),
  34507. form: "taur",
  34508. default: true
  34509. }
  34510. ],
  34511. {
  34512. "anthro": {
  34513. name: "Anthro",
  34514. default: true
  34515. },
  34516. "taur": {
  34517. name: "Taur"
  34518. }
  34519. }
  34520. ))
  34521. characterMakers.push(() => makeCharacter(
  34522. { name: "Lee", species: ["monster"], tags: ["anthro"] },
  34523. {
  34524. front: {
  34525. height: math.unit(7 + 10/12, "feet"),
  34526. weight: math.unit(3.5, "tons"),
  34527. name: "Front",
  34528. image: {
  34529. source: "./media/characters/lee/front.svg",
  34530. extra: 1773/1615,
  34531. bottom: 86/1859
  34532. }
  34533. },
  34534. hand: {
  34535. height: math.unit(1.78, "feet"),
  34536. name: "Hand",
  34537. image: {
  34538. source: "./media/characters/lee/hand.svg"
  34539. }
  34540. },
  34541. maw: {
  34542. height: math.unit(1.18, "feet"),
  34543. name: "Maw",
  34544. image: {
  34545. source: "./media/characters/lee/maw.svg"
  34546. }
  34547. },
  34548. },
  34549. [
  34550. {
  34551. name: "Normal",
  34552. height: math.unit(7 + 10/12, "feet"),
  34553. default: true
  34554. },
  34555. ]
  34556. ))
  34557. characterMakers.push(() => makeCharacter(
  34558. { name: "Guti", species: ["lion"], tags: ["anthro", "goo"] },
  34559. {
  34560. front: {
  34561. height: math.unit(9, "feet"),
  34562. name: "Front",
  34563. image: {
  34564. source: "./media/characters/guti/front.svg",
  34565. extra: 4551/4355,
  34566. bottom: 123/4674
  34567. }
  34568. },
  34569. tongue: {
  34570. height: math.unit(1, "feet"),
  34571. name: "Tongue",
  34572. image: {
  34573. source: "./media/characters/guti/tongue.svg"
  34574. }
  34575. },
  34576. paw: {
  34577. height: math.unit(1.18, "feet"),
  34578. name: "Paw",
  34579. image: {
  34580. source: "./media/characters/guti/paw.svg"
  34581. }
  34582. },
  34583. },
  34584. [
  34585. {
  34586. name: "Normal",
  34587. height: math.unit(9, "feet"),
  34588. default: true
  34589. },
  34590. ]
  34591. ))
  34592. characterMakers.push(() => makeCharacter(
  34593. { name: "Vesper", species: ["kitsune"], tags: ["anthro"] },
  34594. {
  34595. side: {
  34596. height: math.unit(5, "meters"),
  34597. name: "Side",
  34598. image: {
  34599. source: "./media/characters/vesper/side.svg",
  34600. extra: 1605/1518,
  34601. bottom: 0/1605
  34602. }
  34603. },
  34604. },
  34605. [
  34606. {
  34607. name: "Small",
  34608. height: math.unit(5, "meters")
  34609. },
  34610. {
  34611. name: "Sage",
  34612. height: math.unit(100, "meters"),
  34613. default: true
  34614. },
  34615. {
  34616. name: "Fun Size",
  34617. height: math.unit(600, "meters")
  34618. },
  34619. {
  34620. name: "Goddess",
  34621. height: math.unit(20000, "km")
  34622. },
  34623. {
  34624. name: "Maximum",
  34625. height: math.unit(5, "galaxies")
  34626. },
  34627. ]
  34628. ))
  34629. characterMakers.push(() => makeCharacter(
  34630. { name: "Gawain", species: ["arcanine"], tags: ["anthro"] },
  34631. {
  34632. front: {
  34633. height: math.unit(6 + 3/12, "feet"),
  34634. weight: math.unit(190, "lb"),
  34635. name: "Front",
  34636. image: {
  34637. source: "./media/characters/gawain/front.svg",
  34638. extra: 2222/2139,
  34639. bottom: 90/2312
  34640. }
  34641. },
  34642. back: {
  34643. height: math.unit(6 + 3/12, "feet"),
  34644. weight: math.unit(190, "lb"),
  34645. name: "Back",
  34646. image: {
  34647. source: "./media/characters/gawain/back.svg",
  34648. extra: 2199/2111,
  34649. bottom: 73/2272
  34650. }
  34651. },
  34652. },
  34653. [
  34654. {
  34655. name: "Normal",
  34656. height: math.unit(6 + 3/12, "feet"),
  34657. default: true
  34658. },
  34659. ]
  34660. ))
  34661. characterMakers.push(() => makeCharacter(
  34662. { name: "Dascalti", species: ["draiger"], tags: ["anthro"] },
  34663. {
  34664. side: {
  34665. height: math.unit(3.5, "meters"),
  34666. weight: math.unit(16000, "lb"),
  34667. name: "Side",
  34668. image: {
  34669. source: "./media/characters/dascalti/side.svg",
  34670. extra: 392/273,
  34671. bottom: 47/439
  34672. }
  34673. },
  34674. breath: {
  34675. height: math.unit(7.4, "feet"),
  34676. name: "Breath",
  34677. image: {
  34678. source: "./media/characters/dascalti/breath.svg"
  34679. }
  34680. },
  34681. fed: {
  34682. height: math.unit(3.6, "meters"),
  34683. weight: math.unit(16000, "lb"),
  34684. name: "Fed",
  34685. image: {
  34686. source: "./media/characters/dascalti/fed.svg",
  34687. extra: 1419/820,
  34688. bottom: 95/1514
  34689. }
  34690. },
  34691. },
  34692. [
  34693. {
  34694. name: "Normal",
  34695. height: math.unit(3.5, "meters"),
  34696. default: true
  34697. },
  34698. ]
  34699. ))
  34700. characterMakers.push(() => makeCharacter(
  34701. { name: "Mauve", species: ["skunk"], tags: ["anthro"] },
  34702. {
  34703. front: {
  34704. height: math.unit(3 + 5/12, "feet"),
  34705. name: "Front",
  34706. image: {
  34707. source: "./media/characters/mauve/front.svg",
  34708. extra: 1126/1033,
  34709. bottom: 65/1191
  34710. }
  34711. },
  34712. side: {
  34713. height: math.unit(3 + 5/12, "feet"),
  34714. name: "Side",
  34715. image: {
  34716. source: "./media/characters/mauve/side.svg",
  34717. extra: 1089/1001,
  34718. bottom: 29/1118
  34719. }
  34720. },
  34721. back: {
  34722. height: math.unit(3 + 5/12, "feet"),
  34723. name: "Back",
  34724. image: {
  34725. source: "./media/characters/mauve/back.svg",
  34726. extra: 1173/1053,
  34727. bottom: 109/1282
  34728. }
  34729. },
  34730. },
  34731. [
  34732. {
  34733. name: "Normal",
  34734. height: math.unit(3 + 5/12, "feet"),
  34735. default: true
  34736. },
  34737. ]
  34738. ))
  34739. characterMakers.push(() => makeCharacter(
  34740. { name: "Carlos", species: ["foxsky"], tags: ["anthro"] },
  34741. {
  34742. front: {
  34743. height: math.unit(6 + 3/12, "feet"),
  34744. weight: math.unit(450, "lb"),
  34745. name: "Front",
  34746. image: {
  34747. source: "./media/characters/carlos/front.svg",
  34748. extra: 444/423,
  34749. bottom: 27/471
  34750. }
  34751. },
  34752. },
  34753. [
  34754. {
  34755. name: "Normal",
  34756. height: math.unit(6 + 3/12, "feet"),
  34757. default: true
  34758. },
  34759. ]
  34760. ))
  34761. characterMakers.push(() => makeCharacter(
  34762. { name: "Jax", species: ["husky"], tags: ["anthro"] },
  34763. {
  34764. back: {
  34765. height: math.unit(5 + 10/12, "feet"),
  34766. weight: math.unit(200, "lb"),
  34767. name: "Back",
  34768. image: {
  34769. source: "./media/characters/jax/back.svg",
  34770. extra: 764/739,
  34771. bottom: 25/789
  34772. }
  34773. },
  34774. },
  34775. [
  34776. {
  34777. name: "Normal",
  34778. height: math.unit(5 + 10/12, "feet"),
  34779. default: true
  34780. },
  34781. ]
  34782. ))
  34783. characterMakers.push(() => makeCharacter(
  34784. { name: "Eikthynir", species: ["deer"], tags: ["anthro"] },
  34785. {
  34786. front: {
  34787. height: math.unit(8, "feet"),
  34788. weight: math.unit(250, "lb"),
  34789. name: "Front",
  34790. image: {
  34791. source: "./media/characters/eikthynir/front.svg",
  34792. extra: 1332/1166,
  34793. bottom: 82/1414
  34794. }
  34795. },
  34796. back: {
  34797. height: math.unit(8, "feet"),
  34798. weight: math.unit(250, "lb"),
  34799. name: "Back",
  34800. image: {
  34801. source: "./media/characters/eikthynir/back.svg",
  34802. extra: 1342/1190,
  34803. bottom: 19/1361
  34804. }
  34805. },
  34806. dick: {
  34807. height: math.unit(2.35, "feet"),
  34808. name: "Dick",
  34809. image: {
  34810. source: "./media/characters/eikthynir/dick.svg"
  34811. }
  34812. },
  34813. },
  34814. [
  34815. {
  34816. name: "Normal",
  34817. height: math.unit(8, "feet"),
  34818. default: true
  34819. },
  34820. ]
  34821. ))
  34822. characterMakers.push(() => makeCharacter(
  34823. { name: "Zlmos", species: ["dragon"], tags: ["anthro"] },
  34824. {
  34825. front: {
  34826. height: math.unit(99, "meters"),
  34827. weight: math.unit(13000, "tons"),
  34828. name: "Front",
  34829. image: {
  34830. source: "./media/characters/zlmos/front.svg",
  34831. extra: 2202/1992,
  34832. bottom: 315/2517
  34833. }
  34834. },
  34835. },
  34836. [
  34837. {
  34838. name: "Macro",
  34839. height: math.unit(99, "meters"),
  34840. default: true
  34841. },
  34842. ]
  34843. ))
  34844. characterMakers.push(() => makeCharacter(
  34845. { name: "Purri", species: ["cat"], tags: ["anthro"] },
  34846. {
  34847. front: {
  34848. height: math.unit(6 + 5/12, "feet"),
  34849. name: "Front",
  34850. image: {
  34851. source: "./media/characters/purri/front.svg",
  34852. extra: 1698/1610,
  34853. bottom: 32/1730
  34854. }
  34855. },
  34856. frontAlt: {
  34857. height: math.unit(6 + 5/12, "feet"),
  34858. name: "Front (Alt)",
  34859. image: {
  34860. source: "./media/characters/purri/front-alt.svg",
  34861. extra: 450/420,
  34862. bottom: 26/476
  34863. }
  34864. },
  34865. boots: {
  34866. height: math.unit(5.5, "feet"),
  34867. name: "Boots",
  34868. image: {
  34869. source: "./media/characters/purri/boots.svg",
  34870. extra: 905/853,
  34871. bottom: 18/923
  34872. },
  34873. extraAttributes: {
  34874. "shoeSize": {
  34875. name: "Shoe Size",
  34876. power: 1,
  34877. type: "length",
  34878. base: math.unit(12, "ShoeSizeMensUS")
  34879. },
  34880. "platformHeight": {
  34881. name: "Platform Height",
  34882. power: 1,
  34883. type: "length",
  34884. base: math.unit(2, "inches")
  34885. },
  34886. }
  34887. },
  34888. lying: {
  34889. height: math.unit(2, "feet"),
  34890. name: "Lying",
  34891. image: {
  34892. source: "./media/characters/purri/lying.svg",
  34893. extra: 940/843,
  34894. bottom: 146/1086
  34895. }
  34896. },
  34897. devious: {
  34898. height: math.unit(1.77, "feet"),
  34899. name: "Devious",
  34900. image: {
  34901. source: "./media/characters/purri/devious.svg",
  34902. extra: 1440/1155,
  34903. bottom: 147/1587
  34904. }
  34905. },
  34906. bean: {
  34907. height: math.unit(1.94, "feet"),
  34908. name: "Bean",
  34909. image: {
  34910. source: "./media/characters/purri/bean.svg"
  34911. }
  34912. },
  34913. },
  34914. [
  34915. {
  34916. name: "Micro",
  34917. height: math.unit(1, "mm")
  34918. },
  34919. {
  34920. name: "Normal",
  34921. height: math.unit(6 + 5/12, "feet"),
  34922. default: true
  34923. },
  34924. {
  34925. name: "Macro :3c",
  34926. height: math.unit(2, "miles")
  34927. },
  34928. ]
  34929. ))
  34930. characterMakers.push(() => makeCharacter(
  34931. { name: "Moonlight", species: ["umbreon"], tags: ["anthro"] },
  34932. {
  34933. front: {
  34934. height: math.unit(6 + 2/12, "feet"),
  34935. weight: math.unit(250, "lb"),
  34936. name: "Front",
  34937. image: {
  34938. source: "./media/characters/moonlight/front.svg",
  34939. extra: 1044/908,
  34940. bottom: 56/1100
  34941. }
  34942. },
  34943. feral: {
  34944. height: math.unit(3 + 1/12, "feet"),
  34945. weight: math.unit(50, "kg"),
  34946. name: "Feral",
  34947. image: {
  34948. source: "./media/characters/moonlight/feral.svg",
  34949. extra: 3705/2791,
  34950. bottom: 145/3850
  34951. }
  34952. },
  34953. paw: {
  34954. height: math.unit(1, "feet"),
  34955. name: "Paw",
  34956. image: {
  34957. source: "./media/characters/moonlight/paw.svg"
  34958. }
  34959. },
  34960. paws: {
  34961. height: math.unit(0.98, "feet"),
  34962. name: "Paws",
  34963. image: {
  34964. source: "./media/characters/moonlight/paws.svg",
  34965. extra: 939/939,
  34966. bottom: 50/989
  34967. }
  34968. },
  34969. mouth: {
  34970. height: math.unit(0.48, "feet"),
  34971. name: "Mouth",
  34972. image: {
  34973. source: "./media/characters/moonlight/mouth.svg"
  34974. }
  34975. },
  34976. dick: {
  34977. height: math.unit(1.46, "feet"),
  34978. name: "Dick",
  34979. image: {
  34980. source: "./media/characters/moonlight/dick.svg"
  34981. }
  34982. },
  34983. },
  34984. [
  34985. {
  34986. name: "Normal",
  34987. height: math.unit(6 + 2/12, "feet"),
  34988. default: true
  34989. },
  34990. {
  34991. name: "Macro",
  34992. height: math.unit(300, "feet")
  34993. },
  34994. {
  34995. name: "Macro+",
  34996. height: math.unit(1, "mile")
  34997. },
  34998. {
  34999. name: "Mt. Moon",
  35000. height: math.unit(5, "miles")
  35001. },
  35002. {
  35003. name: "Megamacro",
  35004. height: math.unit(15, "miles")
  35005. },
  35006. ]
  35007. ))
  35008. characterMakers.push(() => makeCharacter(
  35009. { name: "Sylen", species: ["wolf"], tags: ["anthro"] },
  35010. {
  35011. back: {
  35012. height: math.unit(6, "feet"),
  35013. weight: math.unit(150, "lb"),
  35014. name: "Back",
  35015. image: {
  35016. source: "./media/characters/sylen/back.svg",
  35017. extra: 1335/1273,
  35018. bottom: 107/1442
  35019. }
  35020. },
  35021. },
  35022. [
  35023. {
  35024. name: "Normal",
  35025. height: math.unit(5 + 5/12, "feet")
  35026. },
  35027. {
  35028. name: "Megamacro",
  35029. height: math.unit(3, "miles"),
  35030. default: true
  35031. },
  35032. ]
  35033. ))
  35034. characterMakers.push(() => makeCharacter(
  35035. { name: "Huttser", species: ["coyote"], tags: ["anthro"] },
  35036. {
  35037. front: {
  35038. height: math.unit(6, "feet"),
  35039. weight: math.unit(190, "lb"),
  35040. name: "Front",
  35041. image: {
  35042. source: "./media/characters/huttser/front.svg",
  35043. extra: 1152/1058,
  35044. bottom: 23/1175
  35045. }
  35046. },
  35047. side: {
  35048. height: math.unit(6, "feet"),
  35049. weight: math.unit(190, "lb"),
  35050. name: "Side",
  35051. image: {
  35052. source: "./media/characters/huttser/side.svg",
  35053. extra: 1174/1065,
  35054. bottom: 18/1192
  35055. }
  35056. },
  35057. back: {
  35058. height: math.unit(6, "feet"),
  35059. weight: math.unit(190, "lb"),
  35060. name: "Back",
  35061. image: {
  35062. source: "./media/characters/huttser/back.svg",
  35063. extra: 1158/1056,
  35064. bottom: 12/1170
  35065. }
  35066. },
  35067. },
  35068. [
  35069. ]
  35070. ))
  35071. characterMakers.push(() => makeCharacter(
  35072. { name: "Faan", species: ["slime-dragon"], tags: ["anthro", "goo"] },
  35073. {
  35074. side: {
  35075. height: math.unit(12 + 9/12, "feet"),
  35076. weight: math.unit(15000, "lb"),
  35077. name: "Side",
  35078. image: {
  35079. source: "./media/characters/faan/side.svg",
  35080. extra: 2747/2697,
  35081. bottom: 0/2747
  35082. }
  35083. },
  35084. front: {
  35085. height: math.unit(12 + 9/12, "feet"),
  35086. weight: math.unit(15000, "lb"),
  35087. name: "Front",
  35088. image: {
  35089. source: "./media/characters/faan/front.svg",
  35090. extra: 607/571,
  35091. bottom: 24/631
  35092. }
  35093. },
  35094. head: {
  35095. height: math.unit(2.85, "feet"),
  35096. name: "Head",
  35097. image: {
  35098. source: "./media/characters/faan/head.svg"
  35099. }
  35100. },
  35101. headAlt: {
  35102. height: math.unit(3.13, "feet"),
  35103. name: "Head (Alt)",
  35104. image: {
  35105. source: "./media/characters/faan/head-alt.svg"
  35106. }
  35107. },
  35108. },
  35109. [
  35110. {
  35111. name: "Normal",
  35112. height: math.unit(12 + 9/12, "feet"),
  35113. default: true
  35114. },
  35115. ]
  35116. ))
  35117. characterMakers.push(() => makeCharacter(
  35118. { name: "Tanio", species: ["foxsky"], tags: ["anthro"] },
  35119. {
  35120. front: {
  35121. height: math.unit(6, "feet"),
  35122. weight: math.unit(300, "lb"),
  35123. name: "Front",
  35124. image: {
  35125. source: "./media/characters/tanio/front.svg",
  35126. extra: 711/673,
  35127. bottom: 25/736
  35128. }
  35129. },
  35130. },
  35131. [
  35132. {
  35133. name: "Normal",
  35134. height: math.unit(6, "feet"),
  35135. default: true
  35136. },
  35137. ]
  35138. ))
  35139. characterMakers.push(() => makeCharacter(
  35140. { name: "Noboru", species: ["cat"], tags: ["anthro"] },
  35141. {
  35142. front: {
  35143. height: math.unit(3, "inches"),
  35144. name: "Front",
  35145. image: {
  35146. source: "./media/characters/noboru/front.svg",
  35147. extra: 1039/932,
  35148. bottom: 18/1057
  35149. }
  35150. },
  35151. },
  35152. [
  35153. {
  35154. name: "Micro",
  35155. height: math.unit(3, "inches"),
  35156. default: true
  35157. },
  35158. ]
  35159. ))
  35160. characterMakers.push(() => makeCharacter(
  35161. { name: "Daniel Barrett", species: ["wolf"], tags: ["anthro"] },
  35162. {
  35163. front: {
  35164. height: math.unit(1.85, "meters"),
  35165. weight: math.unit(80, "kg"),
  35166. name: "Front",
  35167. image: {
  35168. source: "./media/characters/daniel-barrett/front.svg",
  35169. extra: 355/337,
  35170. bottom: 9/364
  35171. }
  35172. },
  35173. },
  35174. [
  35175. {
  35176. name: "Pico",
  35177. height: math.unit(0.0433, "mm")
  35178. },
  35179. {
  35180. name: "Nano",
  35181. height: math.unit(1.5, "mm")
  35182. },
  35183. {
  35184. name: "Micro",
  35185. height: math.unit(5.3, "cm"),
  35186. default: true
  35187. },
  35188. {
  35189. name: "Normal",
  35190. height: math.unit(1.85, "meters")
  35191. },
  35192. {
  35193. name: "Macro",
  35194. height: math.unit(64.7, "meters")
  35195. },
  35196. {
  35197. name: "Megamacro",
  35198. height: math.unit(2.26, "km")
  35199. },
  35200. {
  35201. name: "Gigamacro",
  35202. height: math.unit(79, "km")
  35203. },
  35204. {
  35205. name: "Teramacro",
  35206. height: math.unit(2765, "km")
  35207. },
  35208. {
  35209. name: "Petamacro",
  35210. height: math.unit(96678, "km")
  35211. },
  35212. ]
  35213. ))
  35214. characterMakers.push(() => makeCharacter(
  35215. { name: "Zeel", species: ["kobold", "raptor"], tags: ["anthro"] },
  35216. {
  35217. front: {
  35218. height: math.unit(30, "meters"),
  35219. weight: math.unit(400, "tons"),
  35220. name: "Front",
  35221. image: {
  35222. source: "./media/characters/zeel/front.svg",
  35223. extra: 2599/2599,
  35224. bottom: 226/2825
  35225. }
  35226. },
  35227. },
  35228. [
  35229. {
  35230. name: "Macro",
  35231. height: math.unit(30, "meters"),
  35232. default: true
  35233. },
  35234. ]
  35235. ))
  35236. characterMakers.push(() => makeCharacter(
  35237. { name: "Tarn", species: ["wolf"], tags: ["anthro"] },
  35238. {
  35239. front: {
  35240. height: math.unit(6 + 7/12, "feet"),
  35241. weight: math.unit(210, "lb"),
  35242. name: "Front",
  35243. image: {
  35244. source: "./media/characters/tarn/front.svg",
  35245. extra: 3517/3220,
  35246. bottom: 91/3608
  35247. }
  35248. },
  35249. back: {
  35250. height: math.unit(6 + 7/12, "feet"),
  35251. weight: math.unit(210, "lb"),
  35252. name: "Back",
  35253. image: {
  35254. source: "./media/characters/tarn/back.svg",
  35255. extra: 3566/3241,
  35256. bottom: 34/3600
  35257. }
  35258. },
  35259. dick: {
  35260. height: math.unit(1.65, "feet"),
  35261. name: "Dick",
  35262. image: {
  35263. source: "./media/characters/tarn/dick.svg"
  35264. }
  35265. },
  35266. paw: {
  35267. height: math.unit(1.80, "feet"),
  35268. name: "Paw",
  35269. image: {
  35270. source: "./media/characters/tarn/paw.svg"
  35271. }
  35272. },
  35273. tongue: {
  35274. height: math.unit(0.97, "feet"),
  35275. name: "Tongue",
  35276. image: {
  35277. source: "./media/characters/tarn/tongue.svg"
  35278. }
  35279. },
  35280. },
  35281. [
  35282. {
  35283. name: "Micro",
  35284. height: math.unit(4, "inches")
  35285. },
  35286. {
  35287. name: "Normal",
  35288. height: math.unit(6 + 7/12, "feet"),
  35289. default: true
  35290. },
  35291. {
  35292. name: "Macro",
  35293. height: math.unit(300, "feet")
  35294. },
  35295. ]
  35296. ))
  35297. characterMakers.push(() => makeCharacter(
  35298. { name: "Leonidas \"Leon\" Nisitalia", species: ["cat"], tags: ["anthro"] },
  35299. {
  35300. front: {
  35301. height: math.unit(5 + 7/12, "feet"),
  35302. weight: math.unit(80, "kg"),
  35303. name: "Front",
  35304. image: {
  35305. source: "./media/characters/leonidas-leon-nisitalia/front.svg",
  35306. extra: 3023/2865,
  35307. bottom: 33/3056
  35308. }
  35309. },
  35310. back: {
  35311. height: math.unit(5 + 7/12, "feet"),
  35312. weight: math.unit(80, "kg"),
  35313. name: "Back",
  35314. image: {
  35315. source: "./media/characters/leonidas-leon-nisitalia/back.svg",
  35316. extra: 3020/2886,
  35317. bottom: 30/3050
  35318. }
  35319. },
  35320. dick: {
  35321. height: math.unit(0.98, "feet"),
  35322. name: "Dick",
  35323. image: {
  35324. source: "./media/characters/leonidas-leon-nisitalia/dick.svg"
  35325. }
  35326. },
  35327. anatomy: {
  35328. height: math.unit(2.86, "feet"),
  35329. name: "Anatomy",
  35330. image: {
  35331. source: "./media/characters/leonidas-leon-nisitalia/anatomy.svg"
  35332. }
  35333. },
  35334. },
  35335. [
  35336. {
  35337. name: "Really Small",
  35338. height: math.unit(2, "inches")
  35339. },
  35340. {
  35341. name: "Micro",
  35342. height: math.unit(5.583, "inches")
  35343. },
  35344. {
  35345. name: "Normal",
  35346. height: math.unit(5 + 7/12, "feet"),
  35347. default: true
  35348. },
  35349. {
  35350. name: "Macro",
  35351. height: math.unit(67, "feet")
  35352. },
  35353. {
  35354. name: "Megamacro",
  35355. height: math.unit(134, "feet")
  35356. },
  35357. ]
  35358. ))
  35359. characterMakers.push(() => makeCharacter(
  35360. { name: "Sally", species: ["enderman"], tags: ["anthro"] },
  35361. {
  35362. front: {
  35363. height: math.unit(9, "feet"),
  35364. weight: math.unit(120, "lb"),
  35365. name: "Front",
  35366. image: {
  35367. source: "./media/characters/sally/front.svg",
  35368. extra: 1506/1349,
  35369. bottom: 66/1572
  35370. }
  35371. },
  35372. },
  35373. [
  35374. {
  35375. name: "Normal",
  35376. height: math.unit(9, "feet"),
  35377. default: true
  35378. },
  35379. ]
  35380. ))
  35381. characterMakers.push(() => makeCharacter(
  35382. { name: "Owen", species: ["bear"], tags: ["anthro"] },
  35383. {
  35384. front: {
  35385. height: math.unit(8, "feet"),
  35386. weight: math.unit(900, "lb"),
  35387. name: "Front",
  35388. image: {
  35389. source: "./media/characters/owen/front.svg",
  35390. extra: 1761/1657,
  35391. bottom: 74/1835
  35392. }
  35393. },
  35394. side: {
  35395. height: math.unit(8, "feet"),
  35396. weight: math.unit(900, "lb"),
  35397. name: "Side",
  35398. image: {
  35399. source: "./media/characters/owen/side.svg",
  35400. extra: 1797/1734,
  35401. bottom: 30/1827
  35402. }
  35403. },
  35404. back: {
  35405. height: math.unit(8, "feet"),
  35406. weight: math.unit(900, "lb"),
  35407. name: "Back",
  35408. image: {
  35409. source: "./media/characters/owen/back.svg",
  35410. extra: 1796/1706,
  35411. bottom: 59/1855
  35412. }
  35413. },
  35414. maw: {
  35415. height: math.unit(1.76, "feet"),
  35416. name: "Maw",
  35417. image: {
  35418. source: "./media/characters/owen/maw.svg"
  35419. }
  35420. },
  35421. },
  35422. [
  35423. {
  35424. name: "Normal",
  35425. height: math.unit(8, "feet"),
  35426. default: true
  35427. },
  35428. ]
  35429. ))
  35430. characterMakers.push(() => makeCharacter(
  35431. { name: "Ryth", species: ["gremlin", "zorgoia"], tags: ["anthro", "feral"] },
  35432. {
  35433. front: {
  35434. height: math.unit(4, "feet"),
  35435. weight: math.unit(400, "lb"),
  35436. name: "Front",
  35437. image: {
  35438. source: "./media/characters/ryth/front.svg",
  35439. extra: 1920/1748,
  35440. bottom: 42/1962
  35441. }
  35442. },
  35443. back: {
  35444. height: math.unit(4, "feet"),
  35445. weight: math.unit(400, "lb"),
  35446. name: "Back",
  35447. image: {
  35448. source: "./media/characters/ryth/back.svg",
  35449. extra: 1897/1690,
  35450. bottom: 89/1986
  35451. }
  35452. },
  35453. mouth: {
  35454. height: math.unit(1.39, "feet"),
  35455. name: "Mouth",
  35456. image: {
  35457. source: "./media/characters/ryth/mouth.svg"
  35458. }
  35459. },
  35460. tailmaw: {
  35461. height: math.unit(1.23, "feet"),
  35462. name: "Tailmaw",
  35463. image: {
  35464. source: "./media/characters/ryth/tailmaw.svg"
  35465. }
  35466. },
  35467. goia: {
  35468. height: math.unit(4, "meters"),
  35469. weight: math.unit(10800, "lb"),
  35470. name: "Goia",
  35471. image: {
  35472. source: "./media/characters/ryth/goia.svg",
  35473. extra: 745/640,
  35474. bottom: 107/852
  35475. }
  35476. },
  35477. goiaFront: {
  35478. height: math.unit(4, "meters"),
  35479. weight: math.unit(10800, "lb"),
  35480. name: "Goia (Front)",
  35481. image: {
  35482. source: "./media/characters/ryth/goia-front.svg",
  35483. extra: 750/586,
  35484. bottom: 114/864
  35485. }
  35486. },
  35487. goiaMaw: {
  35488. height: math.unit(5.55, "feet"),
  35489. name: "Goia Maw",
  35490. image: {
  35491. source: "./media/characters/ryth/goia-maw.svg"
  35492. }
  35493. },
  35494. goiaForepaw: {
  35495. height: math.unit(3.5, "feet"),
  35496. name: "Goia Forepaw",
  35497. image: {
  35498. source: "./media/characters/ryth/goia-forepaw.svg"
  35499. }
  35500. },
  35501. goiaHindpaw: {
  35502. height: math.unit(5.55, "feet"),
  35503. name: "Goia Hindpaw",
  35504. image: {
  35505. source: "./media/characters/ryth/goia-hindpaw.svg"
  35506. }
  35507. },
  35508. },
  35509. [
  35510. {
  35511. name: "Normal",
  35512. height: math.unit(4, "feet"),
  35513. default: true
  35514. },
  35515. ]
  35516. ))
  35517. characterMakers.push(() => makeCharacter(
  35518. { name: "Necrolance", species: ["dragonsune"], tags: ["anthro"] },
  35519. {
  35520. front: {
  35521. height: math.unit(7, "feet"),
  35522. weight: math.unit(180, "lb"),
  35523. name: "Front",
  35524. image: {
  35525. source: "./media/characters/necrolance/front.svg",
  35526. extra: 1062/947,
  35527. bottom: 41/1103
  35528. }
  35529. },
  35530. back: {
  35531. height: math.unit(7, "feet"),
  35532. weight: math.unit(180, "lb"),
  35533. name: "Back",
  35534. image: {
  35535. source: "./media/characters/necrolance/back.svg",
  35536. extra: 1045/984,
  35537. bottom: 14/1059
  35538. }
  35539. },
  35540. wing: {
  35541. height: math.unit(2.67, "feet"),
  35542. name: "Wing",
  35543. image: {
  35544. source: "./media/characters/necrolance/wing.svg"
  35545. }
  35546. },
  35547. },
  35548. [
  35549. {
  35550. name: "Normal",
  35551. height: math.unit(7, "feet"),
  35552. default: true
  35553. },
  35554. ]
  35555. ))
  35556. characterMakers.push(() => makeCharacter(
  35557. { name: "Tyler", species: ["naga"], tags: ["naga"] },
  35558. {
  35559. front: {
  35560. height: math.unit(76, "meters"),
  35561. weight: math.unit(30000, "tons"),
  35562. name: "Front",
  35563. image: {
  35564. source: "./media/characters/tyler/front.svg",
  35565. extra: 1640/1640,
  35566. bottom: 114/1754
  35567. }
  35568. },
  35569. },
  35570. [
  35571. {
  35572. name: "Macro",
  35573. height: math.unit(76, "meters"),
  35574. default: true
  35575. },
  35576. ]
  35577. ))
  35578. characterMakers.push(() => makeCharacter(
  35579. { name: "Icey", species: ["cat"], tags: ["anthro"] },
  35580. {
  35581. front: {
  35582. height: math.unit(4 + 11/12, "feet"),
  35583. weight: math.unit(132, "lb"),
  35584. name: "Front",
  35585. image: {
  35586. source: "./media/characters/icey/front.svg",
  35587. extra: 2750/2550,
  35588. bottom: 33/2783
  35589. }
  35590. },
  35591. back: {
  35592. height: math.unit(4 + 11/12, "feet"),
  35593. weight: math.unit(132, "lb"),
  35594. name: "Back",
  35595. image: {
  35596. source: "./media/characters/icey/back.svg",
  35597. extra: 2624/2481,
  35598. bottom: 35/2659
  35599. }
  35600. },
  35601. },
  35602. [
  35603. {
  35604. name: "Normal",
  35605. height: math.unit(4 + 11/12, "feet"),
  35606. default: true
  35607. },
  35608. ]
  35609. ))
  35610. characterMakers.push(() => makeCharacter(
  35611. { name: "Smile", species: ["skunk", "ghost"], tags: ["anthro"] },
  35612. {
  35613. front: {
  35614. height: math.unit(100, "feet"),
  35615. weight: math.unit(0, "lb"),
  35616. name: "Front",
  35617. image: {
  35618. source: "./media/characters/smile/front.svg",
  35619. extra: 2983/2912,
  35620. bottom: 162/3145
  35621. }
  35622. },
  35623. back: {
  35624. height: math.unit(100, "feet"),
  35625. weight: math.unit(0, "lb"),
  35626. name: "Back",
  35627. image: {
  35628. source: "./media/characters/smile/back.svg",
  35629. extra: 3143/3031,
  35630. bottom: 91/3234
  35631. }
  35632. },
  35633. head: {
  35634. height: math.unit(26.3, "feet"),
  35635. weight: math.unit(0, "lb"),
  35636. name: "Head",
  35637. image: {
  35638. source: "./media/characters/smile/head.svg"
  35639. }
  35640. },
  35641. collar: {
  35642. height: math.unit(5.3, "feet"),
  35643. weight: math.unit(0, "lb"),
  35644. name: "Collar",
  35645. image: {
  35646. source: "./media/characters/smile/collar.svg"
  35647. }
  35648. },
  35649. },
  35650. [
  35651. {
  35652. name: "Macro",
  35653. height: math.unit(100, "feet"),
  35654. default: true
  35655. },
  35656. ]
  35657. ))
  35658. characterMakers.push(() => makeCharacter(
  35659. { name: "Arimphae", species: ["dragon"], tags: ["feral"] },
  35660. {
  35661. dragon: {
  35662. height: math.unit(26, "feet"),
  35663. weight: math.unit(36, "tons"),
  35664. name: "Dragon",
  35665. image: {
  35666. source: "./media/characters/arimphae/dragon.svg",
  35667. extra: 1574/983,
  35668. bottom: 357/1931
  35669. }
  35670. },
  35671. drake: {
  35672. height: math.unit(9, "feet"),
  35673. weight: math.unit(1.5, "tons"),
  35674. name: "Drake",
  35675. image: {
  35676. source: "./media/characters/arimphae/drake.svg",
  35677. extra: 1120/925,
  35678. bottom: 435/1555
  35679. }
  35680. },
  35681. },
  35682. [
  35683. {
  35684. name: "Small",
  35685. height: math.unit(26*5/9, "feet")
  35686. },
  35687. {
  35688. name: "Normal",
  35689. height: math.unit(26, "feet"),
  35690. default: true
  35691. },
  35692. ]
  35693. ))
  35694. characterMakers.push(() => makeCharacter(
  35695. { name: "Xander", species: ["false-vampire-bat"], tags: ["anthro"] },
  35696. {
  35697. front: {
  35698. height: math.unit(8 + 9/12, "feet"),
  35699. name: "Front",
  35700. image: {
  35701. source: "./media/characters/xander/front.svg",
  35702. extra: 1237/974,
  35703. bottom: 94/1331
  35704. }
  35705. },
  35706. },
  35707. [
  35708. {
  35709. name: "Normal",
  35710. height: math.unit(8 + 9/12, "feet"),
  35711. default: true
  35712. },
  35713. {
  35714. name: "Gaze Grabber",
  35715. height: math.unit(13 + 8/12, "feet")
  35716. },
  35717. {
  35718. name: "Jaw Dropper",
  35719. height: math.unit(27, "feet")
  35720. },
  35721. {
  35722. name: "Show Stopper",
  35723. height: math.unit(136, "feet")
  35724. },
  35725. {
  35726. name: "Superstar",
  35727. height: math.unit(1.9e6, "miles")
  35728. },
  35729. ]
  35730. ))
  35731. characterMakers.push(() => makeCharacter(
  35732. { name: "Osiris", species: ["plush", "dragon"], tags: ["feral"] },
  35733. {
  35734. side: {
  35735. height: math.unit(2100, "feet"),
  35736. name: "Side",
  35737. image: {
  35738. source: "./media/characters/osiris/side.svg",
  35739. extra: 1105/939,
  35740. bottom: 167/1272
  35741. }
  35742. },
  35743. },
  35744. [
  35745. {
  35746. name: "Macro",
  35747. height: math.unit(2100, "feet"),
  35748. default: true
  35749. },
  35750. ]
  35751. ))
  35752. characterMakers.push(() => makeCharacter(
  35753. { name: "Rhys Londe", species: ["dragon"], tags: ["anthro"] },
  35754. {
  35755. front: {
  35756. height: math.unit(6 + 8/12, "feet"),
  35757. weight: math.unit(225, "lb"),
  35758. name: "Front",
  35759. image: {
  35760. source: "./media/characters/rhys-londe/front.svg",
  35761. extra: 2258/2141,
  35762. bottom: 188/2446
  35763. }
  35764. },
  35765. back: {
  35766. height: math.unit(6 + 8/12, "feet"),
  35767. weight: math.unit(225, "lb"),
  35768. name: "Back",
  35769. image: {
  35770. source: "./media/characters/rhys-londe/back.svg",
  35771. extra: 2237/2137,
  35772. bottom: 63/2300
  35773. }
  35774. },
  35775. frontNsfw: {
  35776. height: math.unit(6 + 8/12, "feet"),
  35777. weight: math.unit(225, "lb"),
  35778. name: "Front (NSFW)",
  35779. image: {
  35780. source: "./media/characters/rhys-londe/front-nsfw.svg",
  35781. extra: 2258/2141,
  35782. bottom: 188/2446
  35783. }
  35784. },
  35785. backNsfw: {
  35786. height: math.unit(6 + 8/12, "feet"),
  35787. weight: math.unit(225, "lb"),
  35788. name: "Back (NSFW)",
  35789. image: {
  35790. source: "./media/characters/rhys-londe/back-nsfw.svg",
  35791. extra: 2237/2137,
  35792. bottom: 63/2300
  35793. }
  35794. },
  35795. dick: {
  35796. height: math.unit(30, "inches"),
  35797. name: "Dick",
  35798. image: {
  35799. source: "./media/characters/rhys-londe/dick.svg"
  35800. }
  35801. },
  35802. maw: {
  35803. height: math.unit(1.6, "feet"),
  35804. name: "Maw",
  35805. image: {
  35806. source: "./media/characters/rhys-londe/maw.svg"
  35807. }
  35808. },
  35809. },
  35810. [
  35811. {
  35812. name: "Normal",
  35813. height: math.unit(6 + 8/12, "feet"),
  35814. default: true
  35815. },
  35816. ]
  35817. ))
  35818. characterMakers.push(() => makeCharacter(
  35819. { name: "Taivas Ensim", species: ["kobold"], tags: ["anthro"] },
  35820. {
  35821. front: {
  35822. height: math.unit(3 + 10/12, "feet"),
  35823. weight: math.unit(90, "lb"),
  35824. name: "Front",
  35825. image: {
  35826. source: "./media/characters/taivas-ensim/front.svg",
  35827. extra: 1327/1216,
  35828. bottom: 96/1423
  35829. }
  35830. },
  35831. back: {
  35832. height: math.unit(3 + 10/12, "feet"),
  35833. weight: math.unit(90, "lb"),
  35834. name: "Back",
  35835. image: {
  35836. source: "./media/characters/taivas-ensim/back.svg",
  35837. extra: 1355/1247,
  35838. bottom: 11/1366
  35839. }
  35840. },
  35841. frontNsfw: {
  35842. height: math.unit(3 + 10/12, "feet"),
  35843. weight: math.unit(90, "lb"),
  35844. name: "Front (NSFW)",
  35845. image: {
  35846. source: "./media/characters/taivas-ensim/front-nsfw.svg",
  35847. extra: 1327/1216,
  35848. bottom: 96/1423
  35849. }
  35850. },
  35851. backNsfw: {
  35852. height: math.unit(3 + 10/12, "feet"),
  35853. weight: math.unit(90, "lb"),
  35854. name: "Back (NSFW)",
  35855. image: {
  35856. source: "./media/characters/taivas-ensim/back-nsfw.svg",
  35857. extra: 1355/1247,
  35858. bottom: 11/1366
  35859. }
  35860. },
  35861. },
  35862. [
  35863. {
  35864. name: "Normal",
  35865. height: math.unit(3 + 10/12, "feet"),
  35866. default: true
  35867. },
  35868. ]
  35869. ))
  35870. characterMakers.push(() => makeCharacter(
  35871. { name: "Byliss", species: ["dragon", "succubus"], tags: ["anthro"] },
  35872. {
  35873. front: {
  35874. height: math.unit(9 + 6/12, "feet"),
  35875. weight: math.unit(940, "lb"),
  35876. name: "Front",
  35877. image: {
  35878. source: "./media/characters/byliss/front.svg",
  35879. extra: 1327/1290,
  35880. bottom: 82/1409
  35881. }
  35882. },
  35883. back: {
  35884. height: math.unit(9 + 6/12, "feet"),
  35885. weight: math.unit(940, "lb"),
  35886. name: "Back",
  35887. image: {
  35888. source: "./media/characters/byliss/back.svg",
  35889. extra: 1376/1349,
  35890. bottom: 9/1385
  35891. }
  35892. },
  35893. frontNsfw: {
  35894. height: math.unit(9 + 6/12, "feet"),
  35895. weight: math.unit(940, "lb"),
  35896. name: "Front (NSFW)",
  35897. image: {
  35898. source: "./media/characters/byliss/front-nsfw.svg",
  35899. extra: 1327/1290,
  35900. bottom: 82/1409
  35901. }
  35902. },
  35903. backNsfw: {
  35904. height: math.unit(9 + 6/12, "feet"),
  35905. weight: math.unit(940, "lb"),
  35906. name: "Back (NSFW)",
  35907. image: {
  35908. source: "./media/characters/byliss/back-nsfw.svg",
  35909. extra: 1376/1349,
  35910. bottom: 9/1385
  35911. }
  35912. },
  35913. },
  35914. [
  35915. {
  35916. name: "Normal",
  35917. height: math.unit(9 + 6/12, "feet"),
  35918. default: true
  35919. },
  35920. ]
  35921. ))
  35922. characterMakers.push(() => makeCharacter(
  35923. { name: "Noraly", species: ["mia"], tags: ["anthro"] },
  35924. {
  35925. front: {
  35926. height: math.unit(5 + 2/12, "feet"),
  35927. weight: math.unit(200, "lb"),
  35928. name: "Front",
  35929. image: {
  35930. source: "./media/characters/noraly/front.svg",
  35931. extra: 4985/4773,
  35932. bottom: 150/5135
  35933. }
  35934. },
  35935. full: {
  35936. height: math.unit(5 + 2/12, "feet"),
  35937. weight: math.unit(164, "lb"),
  35938. name: "Full",
  35939. image: {
  35940. source: "./media/characters/noraly/full.svg",
  35941. extra: 1114/1059,
  35942. bottom: 35/1149
  35943. }
  35944. },
  35945. fuller: {
  35946. height: math.unit(5 + 2/12, "feet"),
  35947. weight: math.unit(230, "lb"),
  35948. name: "Fuller",
  35949. image: {
  35950. source: "./media/characters/noraly/fuller.svg",
  35951. extra: 1114/1059,
  35952. bottom: 35/1149
  35953. }
  35954. },
  35955. fullest: {
  35956. height: math.unit(5 + 2/12, "feet"),
  35957. weight: math.unit(300, "lb"),
  35958. name: "Fullest",
  35959. image: {
  35960. source: "./media/characters/noraly/fullest.svg",
  35961. extra: 1114/1059,
  35962. bottom: 35/1149
  35963. }
  35964. },
  35965. },
  35966. [
  35967. {
  35968. name: "Normal",
  35969. height: math.unit(5 + 2/12, "feet"),
  35970. default: true
  35971. },
  35972. ]
  35973. ))
  35974. characterMakers.push(() => makeCharacter(
  35975. { name: "Pera", species: ["snake"], tags: ["naga"] },
  35976. {
  35977. front: {
  35978. height: math.unit(5 + 2/12, "feet"),
  35979. weight: math.unit(210, "lb"),
  35980. name: "Front",
  35981. image: {
  35982. source: "./media/characters/pera/front.svg",
  35983. extra: 1560/1531,
  35984. bottom: 165/1725
  35985. }
  35986. },
  35987. back: {
  35988. height: math.unit(5 + 2/12, "feet"),
  35989. weight: math.unit(210, "lb"),
  35990. name: "Back",
  35991. image: {
  35992. source: "./media/characters/pera/back.svg",
  35993. extra: 1523/1493,
  35994. bottom: 152/1675
  35995. }
  35996. },
  35997. dick: {
  35998. height: math.unit(2.4, "feet"),
  35999. name: "Dick",
  36000. image: {
  36001. source: "./media/characters/pera/dick.svg"
  36002. }
  36003. },
  36004. },
  36005. [
  36006. {
  36007. name: "Normal",
  36008. height: math.unit(5 + 2/12, "feet"),
  36009. default: true
  36010. },
  36011. ]
  36012. ))
  36013. characterMakers.push(() => makeCharacter(
  36014. { name: "Julian", species: ["rainbow"], tags: ["anthro"] },
  36015. {
  36016. front: {
  36017. height: math.unit(12, "feet"),
  36018. weight: math.unit(3200, "lb"),
  36019. name: "Front",
  36020. image: {
  36021. source: "./media/characters/julian/front.svg",
  36022. extra: 2962/2701,
  36023. bottom: 184/3146
  36024. }
  36025. },
  36026. maw: {
  36027. height: math.unit(5.35, "feet"),
  36028. name: "Maw",
  36029. image: {
  36030. source: "./media/characters/julian/maw.svg"
  36031. }
  36032. },
  36033. paw: {
  36034. height: math.unit(3.07, "feet"),
  36035. name: "Paw",
  36036. image: {
  36037. source: "./media/characters/julian/paw.svg"
  36038. }
  36039. },
  36040. },
  36041. [
  36042. {
  36043. name: "Actual Size",
  36044. height: math.unit(1e-8, "angstroms")
  36045. },
  36046. {
  36047. name: "Max Size",
  36048. height: math.unit(0.01, "mm"),
  36049. default: true
  36050. },
  36051. ]
  36052. ))
  36053. characterMakers.push(() => makeCharacter(
  36054. { name: "Pi", species: ["solgaleo"], tags: ["anthro", "goo"] },
  36055. {
  36056. solgooleo: {
  36057. height: math.unit(4, "meters"),
  36058. weight: math.unit(6000*1.5, "kg"),
  36059. volume: math.unit(6000, "liters"),
  36060. name: "Solgooleo",
  36061. image: {
  36062. source: "./media/characters/pi/solgooleo.svg",
  36063. extra: 388/331,
  36064. bottom: 29/417
  36065. }
  36066. },
  36067. },
  36068. [
  36069. {
  36070. name: "Normal",
  36071. height: math.unit(4, "meters"),
  36072. default: true
  36073. },
  36074. ]
  36075. ))
  36076. characterMakers.push(() => makeCharacter(
  36077. { name: "Shaun", species: ["dragon"], tags: ["anthro"] },
  36078. {
  36079. front: {
  36080. height: math.unit(8, "feet"),
  36081. weight: math.unit(4, "tons"),
  36082. name: "Front",
  36083. image: {
  36084. source: "./media/characters/shaun/front.svg",
  36085. extra: 503/495,
  36086. bottom: 20/523
  36087. }
  36088. },
  36089. back: {
  36090. height: math.unit(8, "feet"),
  36091. weight: math.unit(4, "tons"),
  36092. name: "Back",
  36093. image: {
  36094. source: "./media/characters/shaun/back.svg",
  36095. extra: 487/480,
  36096. bottom: 20/507
  36097. }
  36098. },
  36099. },
  36100. [
  36101. {
  36102. name: "Lorg",
  36103. height: math.unit(8, "feet"),
  36104. default: true
  36105. },
  36106. ]
  36107. ))
  36108. characterMakers.push(() => makeCharacter(
  36109. { name: "Sini", species: ["dragon"], tags: ["anthro", "feral"] },
  36110. {
  36111. frontAnthro: {
  36112. height: math.unit(7, "feet"),
  36113. name: "Front",
  36114. image: {
  36115. source: "./media/characters/sini/front-anthro.svg",
  36116. extra: 726/678,
  36117. bottom: 35/761
  36118. },
  36119. form: "anthro",
  36120. default: true
  36121. },
  36122. backAnthro: {
  36123. height: math.unit(7, "feet"),
  36124. name: "Back",
  36125. image: {
  36126. source: "./media/characters/sini/back-anthro.svg",
  36127. extra: 743/701,
  36128. bottom: 12/755
  36129. },
  36130. form: "anthro",
  36131. },
  36132. frontAnthroNsfw: {
  36133. height: math.unit(7, "feet"),
  36134. name: "Front (NSFW)",
  36135. image: {
  36136. source: "./media/characters/sini/front-anthro-nsfw.svg",
  36137. extra: 726/678,
  36138. bottom: 35/761
  36139. },
  36140. form: "anthro"
  36141. },
  36142. backAnthroNsfw: {
  36143. height: math.unit(7, "feet"),
  36144. name: "Back (NSFW)",
  36145. image: {
  36146. source: "./media/characters/sini/back-anthro-nsfw.svg",
  36147. extra: 743/701,
  36148. bottom: 12/755
  36149. },
  36150. form: "anthro",
  36151. },
  36152. mawAnthro: {
  36153. height: math.unit(2.14, "feet"),
  36154. name: "Maw",
  36155. image: {
  36156. source: "./media/characters/sini/maw-anthro.svg"
  36157. },
  36158. form: "anthro"
  36159. },
  36160. dick: {
  36161. height: math.unit(1.45, "feet"),
  36162. name: "Dick",
  36163. image: {
  36164. source: "./media/characters/sini/dick-anthro.svg"
  36165. },
  36166. form: "anthro"
  36167. },
  36168. feral: {
  36169. height: math.unit(16, "feet"),
  36170. name: "Feral",
  36171. image: {
  36172. source: "./media/characters/sini/feral.svg",
  36173. extra: 814/605,
  36174. bottom: 11/825
  36175. },
  36176. form: "feral",
  36177. default: true
  36178. },
  36179. feralNsfw: {
  36180. height: math.unit(16, "feet"),
  36181. name: "Feral (NSFW)",
  36182. image: {
  36183. source: "./media/characters/sini/feral-nsfw.svg",
  36184. extra: 814/605,
  36185. bottom: 11/825
  36186. },
  36187. form: "feral"
  36188. },
  36189. mawFeral: {
  36190. height: math.unit(5.66, "feet"),
  36191. name: "Maw",
  36192. image: {
  36193. source: "./media/characters/sini/maw-feral.svg"
  36194. },
  36195. form: "feral",
  36196. },
  36197. pawFeral: {
  36198. height: math.unit(5.17, "feet"),
  36199. name: "Paw",
  36200. image: {
  36201. source: "./media/characters/sini/paw-feral.svg"
  36202. },
  36203. form: "feral",
  36204. },
  36205. rumpFeral: {
  36206. height: math.unit(13.11, "feet"),
  36207. name: "Rump",
  36208. image: {
  36209. source: "./media/characters/sini/rump-feral.svg"
  36210. },
  36211. form: "feral",
  36212. },
  36213. dickFeral: {
  36214. height: math.unit(1, "feet"),
  36215. name: "Dick",
  36216. image: {
  36217. source: "./media/characters/sini/dick-feral.svg"
  36218. },
  36219. form: "feral",
  36220. },
  36221. eyeFeral: {
  36222. height: math.unit(1.23, "feet"),
  36223. name: "Eye",
  36224. image: {
  36225. source: "./media/characters/sini/eye-feral.svg"
  36226. },
  36227. form: "feral",
  36228. },
  36229. },
  36230. [
  36231. {
  36232. name: "Normal",
  36233. height: math.unit(7, "feet"),
  36234. default: true,
  36235. form: "anthro"
  36236. },
  36237. {
  36238. name: "Normal",
  36239. height: math.unit(16, "feet"),
  36240. default: true,
  36241. form: "feral"
  36242. },
  36243. ],
  36244. {
  36245. "anthro": {
  36246. name: "Anthro",
  36247. default: true
  36248. },
  36249. "feral": {
  36250. name: "Feral",
  36251. }
  36252. }
  36253. ))
  36254. characterMakers.push(() => makeCharacter(
  36255. { name: "Raylldo", species: ["dragon"], tags: ["feral"] },
  36256. {
  36257. side: {
  36258. height: math.unit(47.2, "meters"),
  36259. weight: math.unit(10000, "tons"),
  36260. name: "Side",
  36261. image: {
  36262. source: "./media/characters/raylldo/side.svg",
  36263. extra: 2363/642,
  36264. bottom: 221/2584
  36265. }
  36266. },
  36267. top: {
  36268. height: math.unit(240, "meters"),
  36269. weight: math.unit(10000, "tons"),
  36270. name: "Top",
  36271. image: {
  36272. source: "./media/characters/raylldo/top.svg"
  36273. }
  36274. },
  36275. bottom: {
  36276. height: math.unit(240, "meters"),
  36277. weight: math.unit(10000, "tons"),
  36278. name: "Bottom",
  36279. image: {
  36280. source: "./media/characters/raylldo/bottom.svg"
  36281. }
  36282. },
  36283. head: {
  36284. height: math.unit(38.6, "meters"),
  36285. name: "Head",
  36286. image: {
  36287. source: "./media/characters/raylldo/head.svg",
  36288. extra: 1335/1112,
  36289. bottom: 0/1335
  36290. }
  36291. },
  36292. maw: {
  36293. height: math.unit(16.37, "meters"),
  36294. name: "Maw",
  36295. image: {
  36296. source: "./media/characters/raylldo/maw.svg",
  36297. extra: 883/660,
  36298. bottom: 0/883
  36299. },
  36300. extraAttributes: {
  36301. preyCapacity: {
  36302. name: "Capacity",
  36303. power: 3,
  36304. type: "volume",
  36305. base: math.unit(1000, "people")
  36306. },
  36307. tongueSize: {
  36308. name: "Tongue Size",
  36309. power: 2,
  36310. type: "area",
  36311. base: math.unit(21, "m^2")
  36312. }
  36313. }
  36314. },
  36315. forepaw: {
  36316. height: math.unit(18, "meters"),
  36317. name: "Forepaw",
  36318. image: {
  36319. source: "./media/characters/raylldo/forepaw.svg"
  36320. }
  36321. },
  36322. hindpaw: {
  36323. height: math.unit(23, "meters"),
  36324. name: "Hindpaw",
  36325. image: {
  36326. source: "./media/characters/raylldo/hindpaw.svg"
  36327. }
  36328. },
  36329. genitals: {
  36330. height: math.unit(42, "meters"),
  36331. name: "Genitals",
  36332. image: {
  36333. source: "./media/characters/raylldo/genitals.svg"
  36334. }
  36335. },
  36336. },
  36337. [
  36338. {
  36339. name: "Normal",
  36340. height: math.unit(47.2, "meters"),
  36341. default: true
  36342. },
  36343. ]
  36344. ))
  36345. characterMakers.push(() => makeCharacter(
  36346. { name: "Glint", species: ["lucent-nargacuga"], tags: ["anthro", "feral"] },
  36347. {
  36348. anthroFront: {
  36349. height: math.unit(9, "feet"),
  36350. weight: math.unit(600, "lb"),
  36351. name: "Anthro (Front)",
  36352. image: {
  36353. source: "./media/characters/glint/anthro-front.svg",
  36354. extra: 1097/1018,
  36355. bottom: 28/1125
  36356. }
  36357. },
  36358. anthroBack: {
  36359. height: math.unit(9, "feet"),
  36360. weight: math.unit(600, "lb"),
  36361. name: "Anthro (Back)",
  36362. image: {
  36363. source: "./media/characters/glint/anthro-back.svg",
  36364. extra: 1154/997,
  36365. bottom: 36/1190
  36366. }
  36367. },
  36368. feral: {
  36369. height: math.unit(11, "feet"),
  36370. weight: math.unit(50000, "lb"),
  36371. name: "Feral",
  36372. image: {
  36373. source: "./media/characters/glint/feral.svg",
  36374. extra: 3035/1585,
  36375. bottom: 1169/4204
  36376. }
  36377. },
  36378. dickAnthro: {
  36379. height: math.unit(0.7, "meters"),
  36380. name: "Dick (Anthro)",
  36381. image: {
  36382. source: "./media/characters/glint/dick-anthro.svg"
  36383. }
  36384. },
  36385. dickFeral: {
  36386. height: math.unit(2.65, "meters"),
  36387. name: "Dick (Feral)",
  36388. image: {
  36389. source: "./media/characters/glint/dick-feral.svg"
  36390. }
  36391. },
  36392. slitHidden: {
  36393. height: math.unit(5.85, "meters"),
  36394. name: "Slit (Hidden)",
  36395. image: {
  36396. source: "./media/characters/glint/slit-hidden.svg"
  36397. }
  36398. },
  36399. slitErect: {
  36400. height: math.unit(5.85, "meters"),
  36401. name: "Slit (Erect)",
  36402. image: {
  36403. source: "./media/characters/glint/slit-erect.svg"
  36404. }
  36405. },
  36406. mawAnthro: {
  36407. height: math.unit(0.63, "meters"),
  36408. name: "Maw (Anthro)",
  36409. image: {
  36410. source: "./media/characters/glint/maw.svg"
  36411. }
  36412. },
  36413. mawFeral: {
  36414. height: math.unit(2.89, "meters"),
  36415. name: "Maw (Feral)",
  36416. image: {
  36417. source: "./media/characters/glint/maw.svg"
  36418. }
  36419. },
  36420. },
  36421. [
  36422. {
  36423. name: "Normal",
  36424. height: math.unit(9, "feet"),
  36425. default: true
  36426. },
  36427. ]
  36428. ))
  36429. characterMakers.push(() => makeCharacter(
  36430. { name: "Kairne", species: ["dragon"], tags: ["feral"] },
  36431. {
  36432. side: {
  36433. height: math.unit(15, "feet"),
  36434. weight: math.unit(5000, "kg"),
  36435. name: "Side",
  36436. image: {
  36437. source: "./media/characters/kairne/side.svg",
  36438. extra: 979/811,
  36439. bottom: 13/992
  36440. }
  36441. },
  36442. front: {
  36443. height: math.unit(15, "feet"),
  36444. weight: math.unit(5000, "kg"),
  36445. name: "Front",
  36446. image: {
  36447. source: "./media/characters/kairne/front.svg",
  36448. extra: 908/814,
  36449. bottom: 26/934
  36450. }
  36451. },
  36452. sideNsfw: {
  36453. height: math.unit(15, "feet"),
  36454. weight: math.unit(5000, "kg"),
  36455. name: "Side (NSFW)",
  36456. image: {
  36457. source: "./media/characters/kairne/side-nsfw.svg",
  36458. extra: 979/811,
  36459. bottom: 13/992
  36460. }
  36461. },
  36462. frontNsfw: {
  36463. height: math.unit(15, "feet"),
  36464. weight: math.unit(5000, "kg"),
  36465. name: "Front (NSFW)",
  36466. image: {
  36467. source: "./media/characters/kairne/front-nsfw.svg",
  36468. extra: 908/814,
  36469. bottom: 26/934
  36470. }
  36471. },
  36472. dickCaged: {
  36473. height: math.unit(0.65, "meters"),
  36474. name: "Dick (Caged)",
  36475. image: {
  36476. source: "./media/characters/kairne/dick-caged.svg"
  36477. }
  36478. },
  36479. dick: {
  36480. height: math.unit(0.79, "meters"),
  36481. name: "Dick",
  36482. image: {
  36483. source: "./media/characters/kairne/dick.svg"
  36484. }
  36485. },
  36486. genitals: {
  36487. height: math.unit(1.29, "meters"),
  36488. name: "Genitals",
  36489. image: {
  36490. source: "./media/characters/kairne/genitals.svg"
  36491. }
  36492. },
  36493. maw: {
  36494. height: math.unit(1.73, "meters"),
  36495. name: "Maw",
  36496. image: {
  36497. source: "./media/characters/kairne/maw.svg"
  36498. }
  36499. },
  36500. },
  36501. [
  36502. {
  36503. name: "Normal",
  36504. height: math.unit(15, "feet"),
  36505. default: true
  36506. },
  36507. ]
  36508. ))
  36509. characterMakers.push(() => makeCharacter(
  36510. { name: "Biscuit (Jackal)", species: ["jackal"], tags: ["anthro"] },
  36511. {
  36512. front: {
  36513. height: math.unit(5 + 8/12, "feet"),
  36514. weight: math.unit(139, "lb"),
  36515. name: "Front",
  36516. image: {
  36517. source: "./media/characters/biscuit-jackal/front.svg",
  36518. extra: 2106/1961,
  36519. bottom: 58/2164
  36520. }
  36521. },
  36522. back: {
  36523. height: math.unit(5 + 8/12, "feet"),
  36524. weight: math.unit(139, "lb"),
  36525. name: "Back",
  36526. image: {
  36527. source: "./media/characters/biscuit-jackal/back.svg",
  36528. extra: 2132/1976,
  36529. bottom: 57/2189
  36530. }
  36531. },
  36532. werejackal: {
  36533. height: math.unit(6 + 3/12, "feet"),
  36534. weight: math.unit(188, "lb"),
  36535. name: "Werejackal",
  36536. image: {
  36537. source: "./media/characters/biscuit-jackal/werejackal.svg",
  36538. extra: 2373/2178,
  36539. bottom: 53/2426
  36540. }
  36541. },
  36542. },
  36543. [
  36544. {
  36545. name: "Normal",
  36546. height: math.unit(5 + 8/12, "feet"),
  36547. default: true
  36548. },
  36549. ]
  36550. ))
  36551. characterMakers.push(() => makeCharacter(
  36552. { name: "Tayra White", species: ["human", "chimera"], tags: ["anthro"] },
  36553. {
  36554. front: {
  36555. height: math.unit(140, "cm"),
  36556. weight: math.unit(45, "kg"),
  36557. name: "Front",
  36558. image: {
  36559. source: "./media/characters/tayra-white/front.svg",
  36560. extra: 2229/2192,
  36561. bottom: 75/2304
  36562. }
  36563. },
  36564. },
  36565. [
  36566. {
  36567. name: "Normal",
  36568. height: math.unit(140, "cm"),
  36569. default: true
  36570. },
  36571. ]
  36572. ))
  36573. characterMakers.push(() => makeCharacter(
  36574. { name: "Scoop", species: ["mouse"], tags: ["anthro"] },
  36575. {
  36576. front: {
  36577. height: math.unit(4 + 5/12, "feet"),
  36578. name: "Front",
  36579. image: {
  36580. source: "./media/characters/scoop/front.svg",
  36581. extra: 1257/1136,
  36582. bottom: 69/1326
  36583. }
  36584. },
  36585. back: {
  36586. height: math.unit(4 + 5/12, "feet"),
  36587. name: "Back",
  36588. image: {
  36589. source: "./media/characters/scoop/back.svg",
  36590. extra: 1321/1152,
  36591. bottom: 32/1353
  36592. }
  36593. },
  36594. maw: {
  36595. height: math.unit(0.68, "feet"),
  36596. name: "Maw",
  36597. image: {
  36598. source: "./media/characters/scoop/maw.svg"
  36599. }
  36600. },
  36601. },
  36602. [
  36603. {
  36604. name: "Really Small",
  36605. height: math.unit(1, "mm")
  36606. },
  36607. {
  36608. name: "Micro",
  36609. height: math.unit(1, "inch")
  36610. },
  36611. {
  36612. name: "Normal",
  36613. height: math.unit(4 + 5/12, "feet"),
  36614. default: true
  36615. },
  36616. {
  36617. name: "Macro",
  36618. height: math.unit(200, "feet")
  36619. },
  36620. {
  36621. name: "Megamacro",
  36622. height: math.unit(3240, "feet")
  36623. },
  36624. {
  36625. name: "Teramacro",
  36626. height: math.unit(2500, "miles")
  36627. },
  36628. ]
  36629. ))
  36630. characterMakers.push(() => makeCharacter(
  36631. { name: "Saphinara", species: ["demon", "snow-leopard"], tags: ["anthro"] },
  36632. {
  36633. front: {
  36634. height: math.unit(15 + 7/12, "feet"),
  36635. weight: math.unit(1150, "tons"),
  36636. name: "Front",
  36637. image: {
  36638. source: "./media/characters/saphinara/front.svg",
  36639. extra: 1837/1643,
  36640. bottom: 84/1921
  36641. },
  36642. form: "normal",
  36643. default: true
  36644. },
  36645. side: {
  36646. height: math.unit(15 + 7/12, "feet"),
  36647. weight: math.unit(1150, "tons"),
  36648. name: "Side",
  36649. image: {
  36650. source: "./media/characters/saphinara/side.svg",
  36651. extra: 605/547,
  36652. bottom: 6/611
  36653. },
  36654. form: "normal"
  36655. },
  36656. back: {
  36657. height: math.unit(15 + 7/12, "feet"),
  36658. weight: math.unit(1150, "tons"),
  36659. name: "Back",
  36660. image: {
  36661. source: "./media/characters/saphinara/back.svg",
  36662. extra: 591/531,
  36663. bottom: 13/604
  36664. },
  36665. form: "normal"
  36666. },
  36667. frontTail: {
  36668. height: math.unit(15 + 7/12, "feet"),
  36669. weight: math.unit(1150, "tons"),
  36670. name: "Front (Full Tail)",
  36671. image: {
  36672. source: "./media/characters/saphinara/front-tail.svg",
  36673. extra: 2256/1630,
  36674. bottom: 261/2517
  36675. },
  36676. form: "normal"
  36677. },
  36678. insides: {
  36679. height: math.unit(11.92, "feet"),
  36680. name: "Insides",
  36681. image: {
  36682. source: "./media/characters/saphinara/insides.svg"
  36683. },
  36684. form: "normal"
  36685. },
  36686. head: {
  36687. height: math.unit(4.17, "feet"),
  36688. name: "Head",
  36689. image: {
  36690. source: "./media/characters/saphinara/head.svg"
  36691. },
  36692. form: "normal"
  36693. },
  36694. tongue: {
  36695. height: math.unit(4.60, "feet"),
  36696. name: "Tongue",
  36697. image: {
  36698. source: "./media/characters/saphinara/tongue.svg"
  36699. },
  36700. form: "normal"
  36701. },
  36702. headEnraged: {
  36703. height: math.unit(5.55, "feet"),
  36704. name: "Head (Enraged)",
  36705. image: {
  36706. source: "./media/characters/saphinara/head-enraged.svg"
  36707. },
  36708. form: "normal"
  36709. },
  36710. wings: {
  36711. height: math.unit(11.95, "feet"),
  36712. name: "Wings",
  36713. image: {
  36714. source: "./media/characters/saphinara/wings.svg"
  36715. },
  36716. form: "normal"
  36717. },
  36718. feathers: {
  36719. height: math.unit(8.92, "feet"),
  36720. name: "Feathers",
  36721. image: {
  36722. source: "./media/characters/saphinara/feathers.svg"
  36723. },
  36724. form: "normal"
  36725. },
  36726. shackles: {
  36727. height: math.unit(2, "feet"),
  36728. name: "Shackles",
  36729. image: {
  36730. source: "./media/characters/saphinara/shackles.svg"
  36731. },
  36732. form: "normal"
  36733. },
  36734. eyes: {
  36735. height: math.unit(1.331, "feet"),
  36736. name: "Eyes",
  36737. image: {
  36738. source: "./media/characters/saphinara/eyes.svg"
  36739. },
  36740. form: "normal"
  36741. },
  36742. eyesEnraged: {
  36743. height: math.unit(1.331, "feet"),
  36744. name: "Eyes (Enraged)",
  36745. image: {
  36746. source: "./media/characters/saphinara/eyes-enraged.svg"
  36747. },
  36748. form: "normal"
  36749. },
  36750. trueFormSide: {
  36751. height: math.unit(200, "feet"),
  36752. weight: math.unit(1e7, "tons"),
  36753. name: "Side",
  36754. image: {
  36755. source: "./media/characters/saphinara/true-form-side.svg",
  36756. extra: 1399/770,
  36757. bottom: 97/1496
  36758. },
  36759. form: "true-form",
  36760. default: true
  36761. },
  36762. trueFormMaw: {
  36763. height: math.unit(71.5, "feet"),
  36764. name: "Maw",
  36765. image: {
  36766. source: "./media/characters/saphinara/true-form-maw.svg",
  36767. extra: 2302/1453,
  36768. bottom: 0/2302
  36769. },
  36770. form: "true-form"
  36771. },
  36772. meowberusSide: {
  36773. height: math.unit(75, "feet"),
  36774. weight: math.unit(180000, "kg"),
  36775. preyCapacity: math.unit(50000, "people"),
  36776. name: "Side",
  36777. image: {
  36778. source: "./media/characters/saphinara/meowberus-side.svg",
  36779. extra: 1400/711,
  36780. bottom: 126/1526
  36781. },
  36782. form: "meowberus",
  36783. extraAttributes: {
  36784. "pawArea": {
  36785. name: "Paw Size",
  36786. power: 2,
  36787. type: "area",
  36788. base: math.unit(35, "m^2")
  36789. }
  36790. }
  36791. },
  36792. },
  36793. [
  36794. {
  36795. name: "Normal",
  36796. height: math.unit(15 + 7/12, "feet"),
  36797. default: true,
  36798. form: "normal"
  36799. },
  36800. {
  36801. name: "Angry",
  36802. height: math.unit(30 + 6/12, "feet"),
  36803. form: "normal"
  36804. },
  36805. {
  36806. name: "Enraged",
  36807. height: math.unit(102 + 1/12, "feet"),
  36808. form: "normal"
  36809. },
  36810. {
  36811. name: "True",
  36812. height: math.unit(200, "feet"),
  36813. default: true,
  36814. form: "true-form"
  36815. },
  36816. {
  36817. name: "Normal",
  36818. height: math.unit(75, "feet"),
  36819. default: true,
  36820. form: "meowberus"
  36821. },
  36822. ],
  36823. {
  36824. "normal": {
  36825. name: "Normal",
  36826. default: true
  36827. },
  36828. "true-form": {
  36829. name: "True Form"
  36830. },
  36831. "meowberus": {
  36832. name: "Meowberus",
  36833. },
  36834. }
  36835. ))
  36836. characterMakers.push(() => makeCharacter(
  36837. { name: "Jrain", species: ["leviathan"], tags: ["anthro"] },
  36838. {
  36839. front: {
  36840. height: math.unit(6 + 8/12, "feet"),
  36841. weight: math.unit(300, "lb"),
  36842. name: "Front",
  36843. image: {
  36844. source: "./media/characters/jrain/front.svg",
  36845. extra: 3039/2865,
  36846. bottom: 399/3438
  36847. }
  36848. },
  36849. back: {
  36850. height: math.unit(6 + 8/12, "feet"),
  36851. weight: math.unit(300, "lb"),
  36852. name: "Back",
  36853. image: {
  36854. source: "./media/characters/jrain/back.svg",
  36855. extra: 3089/2938,
  36856. bottom: 172/3261
  36857. }
  36858. },
  36859. head: {
  36860. height: math.unit(2.14, "feet"),
  36861. name: "Head",
  36862. image: {
  36863. source: "./media/characters/jrain/head.svg"
  36864. }
  36865. },
  36866. maw: {
  36867. height: math.unit(1.77, "feet"),
  36868. name: "Maw",
  36869. image: {
  36870. source: "./media/characters/jrain/maw.svg"
  36871. }
  36872. },
  36873. leftHand: {
  36874. height: math.unit(1.1, "feet"),
  36875. name: "Left Hand",
  36876. image: {
  36877. source: "./media/characters/jrain/left-hand.svg"
  36878. }
  36879. },
  36880. rightHand: {
  36881. height: math.unit(1.1, "feet"),
  36882. name: "Right Hand",
  36883. image: {
  36884. source: "./media/characters/jrain/right-hand.svg"
  36885. }
  36886. },
  36887. eye: {
  36888. height: math.unit(0.35, "feet"),
  36889. name: "Eye",
  36890. image: {
  36891. source: "./media/characters/jrain/eye.svg"
  36892. }
  36893. },
  36894. },
  36895. [
  36896. {
  36897. name: "Normal",
  36898. height: math.unit(6 + 8/12, "feet"),
  36899. default: true
  36900. },
  36901. {
  36902. name: "Casually Large",
  36903. height: math.unit(25, "feet")
  36904. },
  36905. {
  36906. name: "Giant",
  36907. height: math.unit(100, "feet")
  36908. },
  36909. {
  36910. name: "Kaiju",
  36911. height: math.unit(300, "feet")
  36912. },
  36913. ]
  36914. ))
  36915. characterMakers.push(() => makeCharacter(
  36916. { name: "Sabrina", species: ["dragon", "snake", "gryphon"], tags: ["feral"] },
  36917. {
  36918. dragon: {
  36919. height: math.unit(5, "meters"),
  36920. name: "Dragon",
  36921. image: {
  36922. source: "./media/characters/sabrina/dragon.svg",
  36923. extra: 3670 / 2365,
  36924. bottom: 333 / 4003
  36925. }
  36926. },
  36927. gryphon: {
  36928. height: math.unit(3, "meters"),
  36929. name: "Gryphon",
  36930. image: {
  36931. source: "./media/characters/sabrina/gryphon.svg",
  36932. extra: 1576 / 945,
  36933. bottom: 71 / 1647
  36934. }
  36935. },
  36936. snake: {
  36937. height: math.unit(12, "meters"),
  36938. name: "Snake",
  36939. image: {
  36940. source: "./media/characters/sabrina/snake.svg",
  36941. extra: 1758 / 1320,
  36942. bottom: 186 / 1944
  36943. }
  36944. },
  36945. collar: {
  36946. height: math.unit(1.86, "meters"),
  36947. name: "Collar",
  36948. image: {
  36949. source: "./media/characters/sabrina/collar.svg"
  36950. }
  36951. },
  36952. eye: {
  36953. height: math.unit(0.53, "meters"),
  36954. name: "Eye",
  36955. image: {
  36956. source: "./media/characters/sabrina/eye.svg"
  36957. }
  36958. },
  36959. foot: {
  36960. height: math.unit(1.86, "meters"),
  36961. name: "Foot",
  36962. image: {
  36963. source: "./media/characters/sabrina/foot.svg"
  36964. }
  36965. },
  36966. hand: {
  36967. height: math.unit(1.32, "meters"),
  36968. name: "Hand",
  36969. image: {
  36970. source: "./media/characters/sabrina/hand.svg"
  36971. }
  36972. },
  36973. head: {
  36974. height: math.unit(2.44, "meters"),
  36975. name: "Head",
  36976. image: {
  36977. source: "./media/characters/sabrina/head.svg"
  36978. }
  36979. },
  36980. headAngry: {
  36981. height: math.unit(2.44, "meters"),
  36982. name: "Head (Angry))",
  36983. image: {
  36984. source: "./media/characters/sabrina/head-angry.svg"
  36985. }
  36986. },
  36987. maw: {
  36988. height: math.unit(1.65, "meters"),
  36989. name: "Maw",
  36990. image: {
  36991. source: "./media/characters/sabrina/maw.svg"
  36992. }
  36993. },
  36994. spikes: {
  36995. height: math.unit(1.69, "meters"),
  36996. name: "Spikes",
  36997. image: {
  36998. source: "./media/characters/sabrina/spikes.svg"
  36999. }
  37000. },
  37001. stomach: {
  37002. height: math.unit(1.15, "meters"),
  37003. name: "Stomach",
  37004. image: {
  37005. source: "./media/characters/sabrina/stomach.svg"
  37006. }
  37007. },
  37008. tongue: {
  37009. height: math.unit(1.27, "meters"),
  37010. name: "Tongue",
  37011. image: {
  37012. source: "./media/characters/sabrina/tongue.svg"
  37013. }
  37014. },
  37015. wingDorsal: {
  37016. height: math.unit(4.85, "meters"),
  37017. name: "Wing (Dorsal)",
  37018. image: {
  37019. source: "./media/characters/sabrina/wing-dorsal.svg"
  37020. }
  37021. },
  37022. wingVentral: {
  37023. height: math.unit(4.85, "meters"),
  37024. name: "Wing (Ventral)",
  37025. image: {
  37026. source: "./media/characters/sabrina/wing-ventral.svg"
  37027. }
  37028. },
  37029. },
  37030. [
  37031. {
  37032. name: "Normal",
  37033. height: math.unit(5, "meters"),
  37034. default: true
  37035. },
  37036. ]
  37037. ))
  37038. characterMakers.push(() => makeCharacter(
  37039. { name: "Midnight Tales", species: ["bat"], tags: ["anthro"] },
  37040. {
  37041. frontMaid: {
  37042. height: math.unit(5 + 5/12, "feet"),
  37043. weight: math.unit(130, "lb"),
  37044. name: "Front (Maid)",
  37045. image: {
  37046. source: "./media/characters/midnight-tales/front-maid.svg",
  37047. extra: 489/454,
  37048. bottom: 61/550
  37049. }
  37050. },
  37051. frontFormal: {
  37052. height: math.unit(5 + 5/12, "feet"),
  37053. weight: math.unit(130, "lb"),
  37054. name: "Front (Formal)",
  37055. image: {
  37056. source: "./media/characters/midnight-tales/front-formal.svg",
  37057. extra: 489/454,
  37058. bottom: 61/550
  37059. }
  37060. },
  37061. back: {
  37062. height: math.unit(5 + 5/12, "feet"),
  37063. weight: math.unit(130, "lb"),
  37064. name: "Back",
  37065. image: {
  37066. source: "./media/characters/midnight-tales/back.svg",
  37067. extra: 498/456,
  37068. bottom: 33/531
  37069. }
  37070. },
  37071. frontBeast: {
  37072. height: math.unit(40, "feet"),
  37073. weight: math.unit(64000, "lb"),
  37074. name: "Front (Beast)",
  37075. image: {
  37076. source: "./media/characters/midnight-tales/front-beast.svg",
  37077. extra: 927/860,
  37078. bottom: 53/980
  37079. }
  37080. },
  37081. backBeast: {
  37082. height: math.unit(40, "feet"),
  37083. weight: math.unit(64000, "lb"),
  37084. name: "Back (Beast)",
  37085. image: {
  37086. source: "./media/characters/midnight-tales/back-beast.svg",
  37087. extra: 929/855,
  37088. bottom: 16/945
  37089. }
  37090. },
  37091. footBeast: {
  37092. height: math.unit(6.7, "feet"),
  37093. name: "Foot (Beast)",
  37094. image: {
  37095. source: "./media/characters/midnight-tales/foot-beast.svg"
  37096. }
  37097. },
  37098. headBeast: {
  37099. height: math.unit(8, "feet"),
  37100. name: "Head (Beast)",
  37101. image: {
  37102. source: "./media/characters/midnight-tales/head-beast.svg"
  37103. }
  37104. },
  37105. },
  37106. [
  37107. {
  37108. name: "Normal",
  37109. height: math.unit(5 + 5 / 12, "feet"),
  37110. default: true
  37111. },
  37112. {
  37113. name: "Macro",
  37114. height: math.unit(25, "feet")
  37115. },
  37116. ]
  37117. ))
  37118. characterMakers.push(() => makeCharacter(
  37119. { name: "Argon", species: ["dragon"], tags: ["anthro"] },
  37120. {
  37121. front: {
  37122. height: math.unit(6 + 2/12, "feet"),
  37123. weight: math.unit(115, "kg"),
  37124. preyCapacity: math.unit(3, "people"),
  37125. name: "Front",
  37126. image: {
  37127. source: "./media/characters/argon/front.svg",
  37128. extra: 2009/1935,
  37129. bottom: 118/2127
  37130. },
  37131. extraAttributes: {
  37132. "tailLength": {
  37133. name: "Tail Length",
  37134. power: 1,
  37135. type: "length",
  37136. base: math.unit(6, "feet")
  37137. },
  37138. "tailWeight": {
  37139. name: "Tail Weight",
  37140. power: 3,
  37141. type: "mass",
  37142. base: math.unit(40, "kg")
  37143. },
  37144. }
  37145. },
  37146. back: {
  37147. height: math.unit(6 + 2/12, "feet"),
  37148. weight: math.unit(115, "kg"),
  37149. preyCapacity: math.unit(3, "people"),
  37150. name: "Back",
  37151. image: {
  37152. source: "./media/characters/argon/back.svg",
  37153. extra: 2047/1992,
  37154. bottom: 20/2067
  37155. },
  37156. extraAttributes: {
  37157. "tailLength": {
  37158. name: "Tail Length",
  37159. power: 1,
  37160. type: "length",
  37161. base: math.unit(6, "feet")
  37162. },
  37163. "tailWeight": {
  37164. name: "Tail Weight",
  37165. power: 3,
  37166. type: "mass",
  37167. base: math.unit(40, "kg")
  37168. },
  37169. }
  37170. },
  37171. frontDressed: {
  37172. height: math.unit(6 + 2/12, "feet"),
  37173. weight: math.unit(115, "kg"),
  37174. preyCapacity: math.unit(3, "people"),
  37175. name: "Front (Dressed)",
  37176. image: {
  37177. source: "./media/characters/argon/front-dressed.svg",
  37178. extra: 2009/1935,
  37179. bottom: 118/2127
  37180. },
  37181. extraAttributes: {
  37182. "tailLength": {
  37183. name: "Tail Length",
  37184. power: 1,
  37185. type: "length",
  37186. base: math.unit(6, "feet")
  37187. },
  37188. "tailWeight": {
  37189. name: "Tail Weight",
  37190. power: 3,
  37191. type: "mass",
  37192. base: math.unit(40, "kg")
  37193. },
  37194. }
  37195. },
  37196. },
  37197. [
  37198. {
  37199. name: "Minimum",
  37200. height: math.unit(2 + 8/12, "feet")
  37201. },
  37202. {
  37203. name: "Normal",
  37204. height: math.unit(6 + 2/12, "feet"),
  37205. default: true
  37206. },
  37207. {
  37208. name: "Maximum",
  37209. height: math.unit(20, "feet")
  37210. },
  37211. ]
  37212. ))
  37213. characterMakers.push(() => makeCharacter(
  37214. { name: "Kichi", species: ["bull", "tanuki"], tags: ["anthro"] },
  37215. {
  37216. front: {
  37217. height: math.unit(8 + 6/12, "feet"),
  37218. weight: math.unit(1150, "lb"),
  37219. name: "Front",
  37220. image: {
  37221. source: "./media/characters/kichi/front.svg",
  37222. extra: 1267/1164,
  37223. bottom: 61/1328
  37224. }
  37225. },
  37226. back: {
  37227. height: math.unit(8 + 6/12, "feet"),
  37228. weight: math.unit(1150, "lb"),
  37229. name: "Back",
  37230. image: {
  37231. source: "./media/characters/kichi/back.svg",
  37232. extra: 1273/1166,
  37233. bottom: 33/1306
  37234. }
  37235. },
  37236. },
  37237. [
  37238. {
  37239. name: "Normal",
  37240. height: math.unit(8 + 6/12, "feet"),
  37241. default: true
  37242. },
  37243. ]
  37244. ))
  37245. characterMakers.push(() => makeCharacter(
  37246. { name: "Manetel Greyscale", species: ["dragoyle"], tags: ["anthro"] },
  37247. {
  37248. front: {
  37249. height: math.unit(6, "feet"),
  37250. weight: math.unit(210, "lb"),
  37251. name: "Front",
  37252. image: {
  37253. source: "./media/characters/manetel-greyscale/front.svg",
  37254. extra: 483/444,
  37255. bottom: 22/505
  37256. },
  37257. extraAttributes: {
  37258. "tailLength": {
  37259. name: "Tail Length",
  37260. power: 1,
  37261. type: "length",
  37262. base: math.unit(6.5, "feet")
  37263. },
  37264. }
  37265. },
  37266. side: {
  37267. height: math.unit(6, "feet"),
  37268. weight: math.unit(210, "lb"),
  37269. name: "Side",
  37270. image: {
  37271. source: "./media/characters/manetel-greyscale/side.svg",
  37272. extra: 478/426,
  37273. bottom: 20/498
  37274. },
  37275. extraAttributes: {
  37276. "tailLength": {
  37277. name: "Tail Length",
  37278. power: 1,
  37279. type: "length",
  37280. base: math.unit(6.5, "feet")
  37281. },
  37282. }
  37283. },
  37284. back: {
  37285. height: math.unit(6, "feet"),
  37286. weight: math.unit(210, "lb"),
  37287. name: "Back",
  37288. image: {
  37289. source: "./media/characters/manetel-greyscale/back.svg",
  37290. extra: 482/445,
  37291. bottom: 12/494
  37292. },
  37293. extraAttributes: {
  37294. "tailLength": {
  37295. name: "Tail Length",
  37296. power: 1,
  37297. type: "length",
  37298. base: math.unit(6.5, "feet")
  37299. },
  37300. }
  37301. },
  37302. },
  37303. [
  37304. {
  37305. name: "Micro",
  37306. height: math.unit(2, "inches")
  37307. },
  37308. {
  37309. name: "Normal",
  37310. height: math.unit(6, "feet"),
  37311. default: true
  37312. },
  37313. {
  37314. name: "Macro",
  37315. height: math.unit(117, "feet")
  37316. },
  37317. ]
  37318. ))
  37319. characterMakers.push(() => makeCharacter(
  37320. { name: "Softpurr", species: ["chakat"], tags: ["taur"] },
  37321. {
  37322. side: {
  37323. height: math.unit(5 + 1/12, "feet"),
  37324. weight: math.unit(418, "lb"),
  37325. name: "Side",
  37326. image: {
  37327. source: "./media/characters/softpurr/side.svg",
  37328. extra: 1993/1945,
  37329. bottom: 134/2127
  37330. }
  37331. },
  37332. front: {
  37333. height: math.unit(5 + 1/12, "feet"),
  37334. weight: math.unit(418, "lb"),
  37335. name: "Front",
  37336. image: {
  37337. source: "./media/characters/softpurr/front.svg",
  37338. extra: 1950/1856,
  37339. bottom: 174/2124
  37340. }
  37341. },
  37342. paw: {
  37343. height: math.unit(1, "feet"),
  37344. name: "Paw",
  37345. image: {
  37346. source: "./media/characters/softpurr/paw.svg"
  37347. }
  37348. },
  37349. },
  37350. [
  37351. {
  37352. name: "Normal",
  37353. height: math.unit(5 + 1/12, "feet"),
  37354. default: true
  37355. },
  37356. ]
  37357. ))
  37358. characterMakers.push(() => makeCharacter(
  37359. { name: "Anahita", species: ["sea-serpent"], tags: ["anthro"] },
  37360. {
  37361. front: {
  37362. height: math.unit(300, "meters"),
  37363. name: "Front",
  37364. image: {
  37365. source: "./media/characters/anahita/front.svg",
  37366. extra: 609/576,
  37367. bottom: 51/660
  37368. }
  37369. },
  37370. },
  37371. [
  37372. {
  37373. name: "Macro",
  37374. height: math.unit(300, "meters"),
  37375. default: true
  37376. },
  37377. ]
  37378. ))
  37379. characterMakers.push(() => makeCharacter(
  37380. { name: "Chip (Mouse)", species: ["mouse"], tags: ["anthro"] },
  37381. {
  37382. front: {
  37383. height: math.unit(4 + 10/12, "feet"),
  37384. weight: math.unit(160, "lb"),
  37385. name: "Front",
  37386. image: {
  37387. source: "./media/characters/chip-mouse/front.svg",
  37388. extra: 3528/3408,
  37389. bottom: 0/3528
  37390. }
  37391. },
  37392. frontNsfw: {
  37393. height: math.unit(4 + 10/12, "feet"),
  37394. weight: math.unit(160, "lb"),
  37395. name: "Front (NSFW)",
  37396. image: {
  37397. source: "./media/characters/chip-mouse/front-nsfw.svg",
  37398. extra: 3528/3408,
  37399. bottom: 0/3528
  37400. }
  37401. },
  37402. },
  37403. [
  37404. {
  37405. name: "Normal",
  37406. height: math.unit(4 + 10/12, "feet"),
  37407. default: true
  37408. },
  37409. ]
  37410. ))
  37411. characterMakers.push(() => makeCharacter(
  37412. { name: "Kremm", species: ["dragon"], tags: ["feral"] },
  37413. {
  37414. side: {
  37415. height: math.unit(10, "feet"),
  37416. weight: math.unit(14000, "lb"),
  37417. name: "Side",
  37418. image: {
  37419. source: "./media/characters/kremm/side.svg",
  37420. extra: 1390/1053,
  37421. bottom: 90/1480
  37422. }
  37423. },
  37424. gut: {
  37425. height: math.unit(5.8, "feet"),
  37426. name: "Gut",
  37427. image: {
  37428. source: "./media/characters/kremm/gut.svg"
  37429. }
  37430. },
  37431. ass: {
  37432. height: math.unit(6.1, "feet"),
  37433. name: "Ass",
  37434. image: {
  37435. source: "./media/characters/kremm/ass.svg"
  37436. }
  37437. },
  37438. jaws: {
  37439. height: math.unit(2.2, "feet"),
  37440. name: "Jaws",
  37441. image: {
  37442. source: "./media/characters/kremm/jaws.svg"
  37443. }
  37444. },
  37445. dick: {
  37446. height: math.unit(4.26, "feet"),
  37447. name: "Dick",
  37448. image: {
  37449. source: "./media/characters/kremm/dick.svg"
  37450. }
  37451. },
  37452. },
  37453. [
  37454. {
  37455. name: "Normal",
  37456. height: math.unit(10, "feet"),
  37457. default: true
  37458. },
  37459. ]
  37460. ))
  37461. characterMakers.push(() => makeCharacter(
  37462. { name: "Kai", species: ["skunk"], tags: ["anthro"] },
  37463. {
  37464. front: {
  37465. height: math.unit(30, "stories"),
  37466. name: "Front",
  37467. image: {
  37468. source: "./media/characters/kai/front.svg",
  37469. extra: 1892/1718,
  37470. bottom: 162/2054
  37471. }
  37472. },
  37473. },
  37474. [
  37475. {
  37476. name: "Macro",
  37477. height: math.unit(30, "stories"),
  37478. default: true
  37479. },
  37480. ]
  37481. ))
  37482. characterMakers.push(() => makeCharacter(
  37483. { name: "Sykes", species: ["maned-wolf"], tags: ["anthro"] },
  37484. {
  37485. front: {
  37486. height: math.unit(6 + 4/12, "feet"),
  37487. weight: math.unit(145, "lb"),
  37488. name: "Front",
  37489. image: {
  37490. source: "./media/characters/sykes/front.svg",
  37491. extra: 1321 / 1187,
  37492. bottom: 66 / 1387
  37493. }
  37494. },
  37495. back: {
  37496. height: math.unit(6 + 4/12, "feet"),
  37497. weight: math.unit(145, "lb"),
  37498. name: "Back",
  37499. image: {
  37500. source: "./media/characters/sykes/back.svg",
  37501. extra: 1326/1181,
  37502. bottom: 31/1357
  37503. }
  37504. },
  37505. traditionalOutfit: {
  37506. height: math.unit(6 + 4/12, "feet"),
  37507. weight: math.unit(145, "lb"),
  37508. name: "Traditional Outfit",
  37509. image: {
  37510. source: "./media/characters/sykes/traditional-outfit.svg",
  37511. extra: 1321 / 1187,
  37512. bottom: 66 / 1387
  37513. }
  37514. },
  37515. adventureOutfit: {
  37516. height: math.unit(6 + 4/12, "feet"),
  37517. weight: math.unit(145, "lb"),
  37518. name: "Adventure Outfit",
  37519. image: {
  37520. source: "./media/characters/sykes/adventure-outfit.svg",
  37521. extra: 1321 / 1187,
  37522. bottom: 66 / 1387
  37523. }
  37524. },
  37525. handLeft: {
  37526. height: math.unit(0.9, "feet"),
  37527. name: "Hand (Left)",
  37528. image: {
  37529. source: "./media/characters/sykes/hand-left.svg"
  37530. }
  37531. },
  37532. handRight: {
  37533. height: math.unit(0.839, "feet"),
  37534. name: "Hand (Right)",
  37535. image: {
  37536. source: "./media/characters/sykes/hand-right.svg"
  37537. }
  37538. },
  37539. leftFoot: {
  37540. height: math.unit(1.2, "feet"),
  37541. name: "Foot (Left)",
  37542. image: {
  37543. source: "./media/characters/sykes/foot-left.svg"
  37544. }
  37545. },
  37546. rightFoot: {
  37547. height: math.unit(1.2, "feet"),
  37548. name: "Foot (Right)",
  37549. image: {
  37550. source: "./media/characters/sykes/foot-right.svg"
  37551. }
  37552. },
  37553. maw: {
  37554. height: math.unit(1.93, "feet"),
  37555. name: "Maw",
  37556. image: {
  37557. source: "./media/characters/sykes/maw.svg"
  37558. }
  37559. },
  37560. teeth: {
  37561. height: math.unit(0.51, "feet"),
  37562. name: "Teeth",
  37563. image: {
  37564. source: "./media/characters/sykes/teeth.svg"
  37565. }
  37566. },
  37567. tongue: {
  37568. height: math.unit(2.13, "feet"),
  37569. name: "Tongue",
  37570. image: {
  37571. source: "./media/characters/sykes/tongue.svg"
  37572. }
  37573. },
  37574. uvula: {
  37575. height: math.unit(0.16, "feet"),
  37576. name: "Uvula",
  37577. image: {
  37578. source: "./media/characters/sykes/uvula.svg"
  37579. }
  37580. },
  37581. collar: {
  37582. height: math.unit(0.287, "feet"),
  37583. name: "Collar",
  37584. image: {
  37585. source: "./media/characters/sykes/collar.svg"
  37586. }
  37587. },
  37588. tail: {
  37589. height: math.unit(3.8, "feet"),
  37590. name: "Tail",
  37591. image: {
  37592. source: "./media/characters/sykes/tail.svg"
  37593. }
  37594. },
  37595. },
  37596. [
  37597. {
  37598. name: "Shrunken",
  37599. height: math.unit(5, "inches")
  37600. },
  37601. {
  37602. name: "Normal",
  37603. height: math.unit(6 + 4 / 12, "feet"),
  37604. default: true
  37605. },
  37606. {
  37607. name: "Big",
  37608. height: math.unit(15, "feet")
  37609. },
  37610. ]
  37611. ))
  37612. characterMakers.push(() => makeCharacter(
  37613. { name: "Oven Otter", species: ["otter"], tags: ["anthro"] },
  37614. {
  37615. front: {
  37616. height: math.unit(5 + 8/12, "feet"),
  37617. weight: math.unit(190, "lb"),
  37618. name: "Front",
  37619. image: {
  37620. source: "./media/characters/oven-otter/front.svg",
  37621. extra: 1809/1740,
  37622. bottom: 181/1990
  37623. }
  37624. },
  37625. back: {
  37626. height: math.unit(5 + 8/12, "feet"),
  37627. weight: math.unit(190, "lb"),
  37628. name: "Back",
  37629. image: {
  37630. source: "./media/characters/oven-otter/back.svg",
  37631. extra: 1709/1635,
  37632. bottom: 118/1827
  37633. }
  37634. },
  37635. hand: {
  37636. height: math.unit(1.07, "feet"),
  37637. name: "Hand",
  37638. image: {
  37639. source: "./media/characters/oven-otter/hand.svg"
  37640. }
  37641. },
  37642. beans: {
  37643. height: math.unit(1.74, "feet"),
  37644. name: "Beans",
  37645. image: {
  37646. source: "./media/characters/oven-otter/beans.svg"
  37647. }
  37648. },
  37649. },
  37650. [
  37651. {
  37652. name: "Micro",
  37653. height: math.unit(0.5, "inches")
  37654. },
  37655. {
  37656. name: "Normal",
  37657. height: math.unit(5 + 8/12, "feet"),
  37658. default: true
  37659. },
  37660. {
  37661. name: "Macro",
  37662. height: math.unit(250, "feet")
  37663. },
  37664. {
  37665. name: "Really High",
  37666. height: math.unit(420, "feet")
  37667. },
  37668. ]
  37669. ))
  37670. characterMakers.push(() => makeCharacter(
  37671. { name: "Devourer", species: ["dragon", "monster"], tags: ["anthro"] },
  37672. {
  37673. front: {
  37674. height: math.unit(5, "meters"),
  37675. weight: math.unit(292000000000000, "kg"),
  37676. name: "Front",
  37677. image: {
  37678. source: "./media/characters/devourer/front.svg",
  37679. extra: 1800/1733,
  37680. bottom: 211/2011
  37681. }
  37682. },
  37683. maw: {
  37684. height: math.unit(1.1, "meter"),
  37685. name: "Maw",
  37686. image: {
  37687. source: "./media/characters/devourer/maw.svg"
  37688. }
  37689. },
  37690. },
  37691. [
  37692. {
  37693. name: "Small",
  37694. height: math.unit(3, "meters")
  37695. },
  37696. {
  37697. name: "Large",
  37698. height: math.unit(5, "meters"),
  37699. default: true
  37700. },
  37701. {
  37702. name: "Macro",
  37703. height: math.unit(20, "meters")
  37704. },
  37705. ]
  37706. ))
  37707. characterMakers.push(() => makeCharacter(
  37708. { name: "Ellarby", species: ["hydra"], tags: ["feral"] },
  37709. {
  37710. front: {
  37711. height: math.unit(6, "feet"),
  37712. weight: math.unit(400, "lb"),
  37713. name: "Front",
  37714. image: {
  37715. source: "./media/characters/ellarby/front.svg",
  37716. extra: 1909/1763,
  37717. bottom: 80/1989
  37718. }
  37719. },
  37720. back: {
  37721. height: math.unit(6, "feet"),
  37722. weight: math.unit(400, "lb"),
  37723. name: "Back",
  37724. image: {
  37725. source: "./media/characters/ellarby/back.svg",
  37726. extra: 1914/1784,
  37727. bottom: 172/2086
  37728. }
  37729. },
  37730. },
  37731. [
  37732. {
  37733. name: "Mischief",
  37734. height: math.unit(18, "inches")
  37735. },
  37736. {
  37737. name: "Trouble",
  37738. height: math.unit(12, "feet")
  37739. },
  37740. {
  37741. name: "Havoc",
  37742. height: math.unit(200, "feet"),
  37743. default: true
  37744. },
  37745. {
  37746. name: "Pandemonium",
  37747. height: math.unit(1, "mile")
  37748. },
  37749. {
  37750. name: "Catastrophe",
  37751. height: math.unit(100, "miles")
  37752. },
  37753. ]
  37754. ))
  37755. characterMakers.push(() => makeCharacter(
  37756. { name: "Vex", species: ["dragon"], tags: ["feral"] },
  37757. {
  37758. front: {
  37759. height: math.unit(4.7, "meters"),
  37760. weight: math.unit(6500, "kg"),
  37761. name: "Front",
  37762. image: {
  37763. source: "./media/characters/vex/front.svg",
  37764. extra: 1288/1140,
  37765. bottom: 100/1388
  37766. }
  37767. },
  37768. },
  37769. [
  37770. {
  37771. name: "Normal",
  37772. height: math.unit(4.7, "meters"),
  37773. default: true
  37774. },
  37775. ]
  37776. ))
  37777. characterMakers.push(() => makeCharacter(
  37778. { name: "Teshy", species: ["pangolin", "monster"], tags: ["anthro"] },
  37779. {
  37780. normal: {
  37781. height: math.unit(6, "feet"),
  37782. weight: math.unit(350, "lb"),
  37783. name: "Normal",
  37784. image: {
  37785. source: "./media/characters/teshy/normal.svg",
  37786. extra: 1795/1735,
  37787. bottom: 16/1811
  37788. }
  37789. },
  37790. monsterFront: {
  37791. height: math.unit(12, "feet"),
  37792. weight: math.unit(4700, "lb"),
  37793. name: "Monster (Front)",
  37794. image: {
  37795. source: "./media/characters/teshy/monster-front.svg",
  37796. extra: 2042/2034,
  37797. bottom: 128/2170
  37798. }
  37799. },
  37800. monsterSide: {
  37801. height: math.unit(12, "feet"),
  37802. weight: math.unit(4700, "lb"),
  37803. name: "Monster (Side)",
  37804. image: {
  37805. source: "./media/characters/teshy/monster-side.svg",
  37806. extra: 2067/2056,
  37807. bottom: 70/2137
  37808. }
  37809. },
  37810. monsterBack: {
  37811. height: math.unit(12, "feet"),
  37812. weight: math.unit(4700, "lb"),
  37813. name: "Monster (Back)",
  37814. image: {
  37815. source: "./media/characters/teshy/monster-back.svg",
  37816. extra: 1921/1914,
  37817. bottom: 171/2092
  37818. }
  37819. },
  37820. },
  37821. [
  37822. {
  37823. name: "Normal",
  37824. height: math.unit(6, "feet"),
  37825. default: true
  37826. },
  37827. ]
  37828. ))
  37829. characterMakers.push(() => makeCharacter(
  37830. { name: "Ramey", species: ["raccoon"], tags: ["anthro"] },
  37831. {
  37832. front: {
  37833. height: math.unit(6, "feet"),
  37834. name: "Front",
  37835. image: {
  37836. source: "./media/characters/ramey/front.svg",
  37837. extra: 790/787,
  37838. bottom: 27/817
  37839. }
  37840. },
  37841. },
  37842. [
  37843. {
  37844. name: "Normal",
  37845. height: math.unit(6, "feet"),
  37846. default: true
  37847. },
  37848. ]
  37849. ))
  37850. characterMakers.push(() => makeCharacter(
  37851. { name: "Phirae", species: ["cat"], tags: ["anthro"] },
  37852. {
  37853. front: {
  37854. height: math.unit(5 + 5/12, "feet"),
  37855. weight: math.unit(120, "lb"),
  37856. name: "Front",
  37857. image: {
  37858. source: "./media/characters/phirae/front.svg",
  37859. extra: 2491/2436,
  37860. bottom: 38/2529
  37861. }
  37862. },
  37863. },
  37864. [
  37865. {
  37866. name: "Normal",
  37867. height: math.unit(5 + 5/12, "feet"),
  37868. default: true
  37869. },
  37870. ]
  37871. ))
  37872. characterMakers.push(() => makeCharacter(
  37873. { name: "Stagglas", species: ["dragon"], tags: ["anthro", "feral"] },
  37874. {
  37875. front: {
  37876. height: math.unit(5 + 3/12, "feet"),
  37877. name: "Front",
  37878. image: {
  37879. source: "./media/characters/stagglas/front.svg",
  37880. extra: 962/882,
  37881. bottom: 53/1015
  37882. }
  37883. },
  37884. feral: {
  37885. height: math.unit(335, "cm"),
  37886. name: "Feral",
  37887. image: {
  37888. source: "./media/characters/stagglas/feral.svg",
  37889. extra: 1732/1090,
  37890. bottom: 48/1780
  37891. }
  37892. },
  37893. },
  37894. [
  37895. {
  37896. name: "Normal",
  37897. height: math.unit(5 + 3/12, "feet"),
  37898. default: true
  37899. },
  37900. ]
  37901. ))
  37902. characterMakers.push(() => makeCharacter(
  37903. { name: "Starra", species: ["dragon"], tags: ["anthro"] },
  37904. {
  37905. front: {
  37906. height: math.unit(5 + 4/12, "feet"),
  37907. weight: math.unit(145, "lb"),
  37908. name: "Front",
  37909. image: {
  37910. source: "./media/characters/starra/front.svg",
  37911. extra: 1790/1691,
  37912. bottom: 91/1881
  37913. }
  37914. },
  37915. },
  37916. [
  37917. {
  37918. name: "Normal",
  37919. height: math.unit(5 + 4/12, "feet"),
  37920. default: true
  37921. },
  37922. ]
  37923. ))
  37924. characterMakers.push(() => makeCharacter(
  37925. { name: "Dr. Kaizo Inazuma", species: ["zorgoia"], tags: ["anthro"] },
  37926. {
  37927. front: {
  37928. height: math.unit(3.5, "meters"),
  37929. name: "Front",
  37930. image: {
  37931. source: "./media/characters/dr-kaizo-inazuma/front.svg",
  37932. extra: 1248/972,
  37933. bottom: 38/1286
  37934. }
  37935. },
  37936. },
  37937. [
  37938. {
  37939. name: "Normal",
  37940. height: math.unit(3.5, "meters"),
  37941. default: true
  37942. },
  37943. ]
  37944. ))
  37945. characterMakers.push(() => makeCharacter(
  37946. { name: "Mika Valentine", species: ["red-panda"], tags: ["taur"] },
  37947. {
  37948. side: {
  37949. height: math.unit(8 + 2/12, "feet"),
  37950. weight: math.unit(1240, "lb"),
  37951. name: "Side",
  37952. image: {
  37953. source: "./media/characters/mika-valentine/side.svg",
  37954. extra: 2670/2501,
  37955. bottom: 250/2920
  37956. }
  37957. },
  37958. },
  37959. [
  37960. {
  37961. name: "Normal",
  37962. height: math.unit(8 + 2/12, "feet"),
  37963. default: true
  37964. },
  37965. ]
  37966. ))
  37967. characterMakers.push(() => makeCharacter(
  37968. { name: "Xoltol", species: ["dragon"], tags: ["anthro"] },
  37969. {
  37970. front: {
  37971. height: math.unit(7 + 2/12, "feet"),
  37972. name: "Front",
  37973. image: {
  37974. source: "./media/characters/xoltol/front.svg",
  37975. extra: 2212/2124,
  37976. bottom: 84/2296
  37977. }
  37978. },
  37979. side: {
  37980. height: math.unit(7 + 2/12, "feet"),
  37981. name: "Side",
  37982. image: {
  37983. source: "./media/characters/xoltol/side.svg",
  37984. extra: 2273/2197,
  37985. bottom: 26/2299
  37986. }
  37987. },
  37988. hand: {
  37989. height: math.unit(2.5, "feet"),
  37990. name: "Hand",
  37991. image: {
  37992. source: "./media/characters/xoltol/hand.svg"
  37993. }
  37994. },
  37995. },
  37996. [
  37997. {
  37998. name: "Small-ish",
  37999. height: math.unit(5 + 11/12, "feet")
  38000. },
  38001. {
  38002. name: "Normal",
  38003. height: math.unit(7 + 2/12, "feet")
  38004. },
  38005. {
  38006. name: "\"Macro\"",
  38007. height: math.unit(14 + 9/12, "feet"),
  38008. default: true
  38009. },
  38010. {
  38011. name: "Alternate Height",
  38012. height: math.unit(20, "feet")
  38013. },
  38014. {
  38015. name: "Actually Macro",
  38016. height: math.unit(100, "feet")
  38017. },
  38018. ]
  38019. ))
  38020. characterMakers.push(() => makeCharacter(
  38021. { name: "Kotetsu Redwood", species: ["zigzagoon"], tags: ["anthro"] },
  38022. {
  38023. front: {
  38024. height: math.unit(5 + 2/12, "feet"),
  38025. weight: math.unit(75, "kg"),
  38026. name: "Front",
  38027. image: {
  38028. source: "./media/characters/kotetsu-redwood/front.svg",
  38029. extra: 1053/942,
  38030. bottom: 60/1113
  38031. }
  38032. },
  38033. },
  38034. [
  38035. {
  38036. name: "Normal",
  38037. height: math.unit(5 + 2/12, "feet"),
  38038. default: true
  38039. },
  38040. ]
  38041. ))
  38042. characterMakers.push(() => makeCharacter(
  38043. { name: "Lilith", species: ["vulture"], tags: ["anthro"] },
  38044. {
  38045. front: {
  38046. height: math.unit(2.4, "meters"),
  38047. weight: math.unit(125, "kg"),
  38048. name: "Front",
  38049. image: {
  38050. source: "./media/characters/lilith/front.svg",
  38051. extra: 1590/1513,
  38052. bottom: 203/1793
  38053. }
  38054. },
  38055. },
  38056. [
  38057. {
  38058. name: "Humanoid",
  38059. height: math.unit(2.4, "meters")
  38060. },
  38061. {
  38062. name: "Normal",
  38063. height: math.unit(6, "meters"),
  38064. default: true
  38065. },
  38066. {
  38067. name: "Largest",
  38068. height: math.unit(55, "meters")
  38069. },
  38070. ]
  38071. ))
  38072. characterMakers.push(() => makeCharacter(
  38073. { name: "Bek'kah Bolger", species: ["kobold"], tags: ["anthro"] },
  38074. {
  38075. front: {
  38076. height: math.unit(8 + 4/12, "feet"),
  38077. weight: math.unit(535, "lb"),
  38078. name: "Front",
  38079. image: {
  38080. source: "./media/characters/beh'kah-bolger/front.svg",
  38081. extra: 1660/1603,
  38082. bottom: 37/1697
  38083. }
  38084. },
  38085. },
  38086. [
  38087. {
  38088. name: "Normal",
  38089. height: math.unit(8 + 4/12, "feet"),
  38090. default: true
  38091. },
  38092. {
  38093. name: "Kaiju",
  38094. height: math.unit(250, "feet")
  38095. },
  38096. {
  38097. name: "Still Growing",
  38098. height: math.unit(10, "miles")
  38099. },
  38100. {
  38101. name: "Continental",
  38102. height: math.unit(5000, "miles")
  38103. },
  38104. {
  38105. name: "Final Form",
  38106. height: math.unit(2500000, "miles")
  38107. },
  38108. ]
  38109. ))
  38110. characterMakers.push(() => makeCharacter(
  38111. { name: "Tatyana Milewska", species: ["shark"], tags: ["anthro"] },
  38112. {
  38113. front: {
  38114. height: math.unit(7 + 2/12, "feet"),
  38115. weight: math.unit(230, "kg"),
  38116. name: "Front",
  38117. image: {
  38118. source: "./media/characters/tatyana-milewska/front.svg",
  38119. extra: 1199/1150,
  38120. bottom: 86/1285
  38121. }
  38122. },
  38123. },
  38124. [
  38125. {
  38126. name: "Normal",
  38127. height: math.unit(7 + 2/12, "feet"),
  38128. default: true
  38129. },
  38130. {
  38131. name: "Big",
  38132. height: math.unit(12, "feet")
  38133. },
  38134. {
  38135. name: "Minimacro",
  38136. height: math.unit(20, "feet")
  38137. },
  38138. {
  38139. name: "Macro",
  38140. height: math.unit(120, "feet")
  38141. },
  38142. ]
  38143. ))
  38144. characterMakers.push(() => makeCharacter(
  38145. { name: "Helen Arri", species: ["dragon"], tags: ["anthro"] },
  38146. {
  38147. front: {
  38148. height: math.unit(7 + 8/12, "feet"),
  38149. weight: math.unit(152, "kg"),
  38150. name: "Front",
  38151. image: {
  38152. source: "./media/characters/helen-arri/front.svg",
  38153. extra: 440/423,
  38154. bottom: 14/454
  38155. }
  38156. },
  38157. back: {
  38158. height: math.unit(7 + 8/12, "feet"),
  38159. weight: math.unit(152, "kg"),
  38160. name: "Back",
  38161. image: {
  38162. source: "./media/characters/helen-arri/back.svg",
  38163. extra: 443/426,
  38164. bottom: 8/451
  38165. }
  38166. },
  38167. },
  38168. [
  38169. {
  38170. name: "Normal",
  38171. height: math.unit(7 + 8/12, "feet"),
  38172. default: true
  38173. },
  38174. {
  38175. name: "Big",
  38176. height: math.unit(14, "feet")
  38177. },
  38178. {
  38179. name: "Minimacro",
  38180. height: math.unit(24, "feet")
  38181. },
  38182. {
  38183. name: "Macro",
  38184. height: math.unit(140, "feet")
  38185. },
  38186. ]
  38187. ))
  38188. characterMakers.push(() => makeCharacter(
  38189. { name: "Ehanu Rehu", species: ["eastern-dragon"], tags: ["anthro"] },
  38190. {
  38191. front: {
  38192. height: math.unit(6, "meters"),
  38193. name: "Front",
  38194. image: {
  38195. source: "./media/characters/ehanu-rehu/front.svg",
  38196. extra: 1800/1800,
  38197. bottom: 59/1859
  38198. }
  38199. },
  38200. },
  38201. [
  38202. {
  38203. name: "Normal",
  38204. height: math.unit(6, "meters"),
  38205. default: true
  38206. },
  38207. ]
  38208. ))
  38209. characterMakers.push(() => makeCharacter(
  38210. { name: "Renholder", species: ["bat"], tags: ["anthro"] },
  38211. {
  38212. front: {
  38213. height: math.unit(7 + 3/12, "feet"),
  38214. name: "Front",
  38215. image: {
  38216. source: "./media/characters/renholder/front.svg",
  38217. extra: 3096/2960,
  38218. bottom: 250/3346
  38219. }
  38220. },
  38221. },
  38222. [
  38223. {
  38224. name: "Normal Bat",
  38225. height: math.unit(7 + 3/12, "feet"),
  38226. default: true
  38227. },
  38228. {
  38229. name: "Slightly Tall Bat",
  38230. height: math.unit(100, "feet")
  38231. },
  38232. {
  38233. name: "Big Bat",
  38234. height: math.unit(1000, "feet")
  38235. },
  38236. {
  38237. name: "City-Sized Bat",
  38238. height: math.unit(200000, "feet")
  38239. },
  38240. {
  38241. name: "Bigger Bat",
  38242. height: math.unit(10000, "miles")
  38243. },
  38244. {
  38245. name: "Solar Sized Bat",
  38246. height: math.unit(100, "AU")
  38247. },
  38248. {
  38249. name: "Galactic Bat",
  38250. height: math.unit(200000, "lightyears")
  38251. },
  38252. {
  38253. name: "Universally Known Bat",
  38254. height: math.unit(1, "universe")
  38255. },
  38256. ]
  38257. ))
  38258. characterMakers.push(() => makeCharacter(
  38259. { name: "Cookiecat", species: ["cat"], tags: ["anthro"] },
  38260. {
  38261. front: {
  38262. height: math.unit(6 + 11/12, "feet"),
  38263. weight: math.unit(250, "lb"),
  38264. name: "Front",
  38265. image: {
  38266. source: "./media/characters/cookiecat/front.svg",
  38267. extra: 893/827,
  38268. bottom: 14/907
  38269. }
  38270. },
  38271. },
  38272. [
  38273. {
  38274. name: "Micro",
  38275. height: math.unit(3, "inches")
  38276. },
  38277. {
  38278. name: "Normal",
  38279. height: math.unit(6 + 11/12, "feet"),
  38280. default: true
  38281. },
  38282. {
  38283. name: "Macro",
  38284. height: math.unit(100, "feet")
  38285. },
  38286. {
  38287. name: "Macro+",
  38288. height: math.unit(404, "feet")
  38289. },
  38290. {
  38291. name: "Megamacro",
  38292. height: math.unit(165, "miles")
  38293. },
  38294. {
  38295. name: "Planetary",
  38296. height: math.unit(4600, "miles")
  38297. },
  38298. ]
  38299. ))
  38300. characterMakers.push(() => makeCharacter(
  38301. { name: "Tux Kusanagi", species: ["gryffon"], tags: ["anthro"] },
  38302. {
  38303. front: {
  38304. height: math.unit(10 + 3/12, "feet"),
  38305. weight: math.unit(1500, "lb"),
  38306. name: "Front",
  38307. image: {
  38308. source: "./media/characters/tux-kusanagi/front.svg",
  38309. extra: 944/840,
  38310. bottom: 39/983
  38311. }
  38312. },
  38313. back: {
  38314. height: math.unit(10 + 3/12, "feet"),
  38315. weight: math.unit(1500, "lb"),
  38316. name: "Back",
  38317. image: {
  38318. source: "./media/characters/tux-kusanagi/back.svg",
  38319. extra: 941/842,
  38320. bottom: 28/969
  38321. }
  38322. },
  38323. rump: {
  38324. height: math.unit(5.25, "feet"),
  38325. name: "Rump",
  38326. image: {
  38327. source: "./media/characters/tux-kusanagi/rump.svg"
  38328. }
  38329. },
  38330. beak: {
  38331. height: math.unit(1.54, "feet"),
  38332. name: "Beak",
  38333. image: {
  38334. source: "./media/characters/tux-kusanagi/beak.svg"
  38335. }
  38336. },
  38337. },
  38338. [
  38339. {
  38340. name: "Normal",
  38341. height: math.unit(10 + 3/12, "feet"),
  38342. default: true
  38343. },
  38344. ]
  38345. ))
  38346. characterMakers.push(() => makeCharacter(
  38347. { name: "Uzarmazari", species: ["amtsvane"], tags: ["anthro"] },
  38348. {
  38349. front: {
  38350. height: math.unit(58, "feet"),
  38351. weight: math.unit(200, "tons"),
  38352. name: "Front",
  38353. image: {
  38354. source: "./media/characters/uzarmazari/front.svg",
  38355. extra: 1575/1455,
  38356. bottom: 152/1727
  38357. }
  38358. },
  38359. back: {
  38360. height: math.unit(58, "feet"),
  38361. weight: math.unit(200, "tons"),
  38362. name: "Back",
  38363. image: {
  38364. source: "./media/characters/uzarmazari/back.svg",
  38365. extra: 1585/1510,
  38366. bottom: 157/1742
  38367. }
  38368. },
  38369. head: {
  38370. height: math.unit(26, "feet"),
  38371. name: "Head",
  38372. image: {
  38373. source: "./media/characters/uzarmazari/head.svg"
  38374. }
  38375. },
  38376. },
  38377. [
  38378. {
  38379. name: "Normal",
  38380. height: math.unit(58, "feet"),
  38381. default: true
  38382. },
  38383. ]
  38384. ))
  38385. characterMakers.push(() => makeCharacter(
  38386. { name: "Akitu", species: ["kigavi"], tags: ["feral"] },
  38387. {
  38388. side: {
  38389. height: math.unit(15, "feet"),
  38390. name: "Side",
  38391. image: {
  38392. source: "./media/characters/akitu/side.svg",
  38393. extra: 1421/1321,
  38394. bottom: 157/1578
  38395. }
  38396. },
  38397. front: {
  38398. height: math.unit(15, "feet"),
  38399. name: "Front",
  38400. image: {
  38401. source: "./media/characters/akitu/front.svg",
  38402. extra: 1435/1326,
  38403. bottom: 232/1667
  38404. }
  38405. },
  38406. },
  38407. [
  38408. {
  38409. name: "Normal",
  38410. height: math.unit(15, "feet"),
  38411. default: true
  38412. },
  38413. ]
  38414. ))
  38415. characterMakers.push(() => makeCharacter(
  38416. { name: "Azalie Croixland", species: ["gryphon"], tags: ["anthro"] },
  38417. {
  38418. front: {
  38419. height: math.unit(10 + 8/12, "feet"),
  38420. name: "Front",
  38421. image: {
  38422. source: "./media/characters/azalie-croixland/front.svg",
  38423. extra: 1972/1856,
  38424. bottom: 31/2003
  38425. }
  38426. },
  38427. },
  38428. [
  38429. {
  38430. name: "Original Height",
  38431. height: math.unit(5 + 4/12, "feet")
  38432. },
  38433. {
  38434. name: "Normal Height",
  38435. height: math.unit(10 + 8/12, "feet"),
  38436. default: true
  38437. },
  38438. ]
  38439. ))
  38440. characterMakers.push(() => makeCharacter(
  38441. { name: "Kavus Kazian", species: ["turian"], tags: ["anthro"] },
  38442. {
  38443. side: {
  38444. height: math.unit(7 + 1/12, "feet"),
  38445. weight: math.unit(245, "lb"),
  38446. name: "Side",
  38447. image: {
  38448. source: "./media/characters/kavus-kazian/side.svg",
  38449. extra: 349/342,
  38450. bottom: 15/364
  38451. }
  38452. },
  38453. },
  38454. [
  38455. {
  38456. name: "Normal",
  38457. height: math.unit(7 + 1/12, "feet"),
  38458. default: true
  38459. },
  38460. ]
  38461. ))
  38462. characterMakers.push(() => makeCharacter(
  38463. { name: "Moonlight Rose", species: ["eevee", "leafeon", "jolteon", "demon", "vaporeon"], tags: ["anthro"] },
  38464. {
  38465. normalFront: {
  38466. height: math.unit(5 + 11/12, "feet"),
  38467. name: "Front",
  38468. image: {
  38469. source: "./media/characters/moonlight-rose/normal-front.svg",
  38470. extra: 1980/1825,
  38471. bottom: 18/1998
  38472. },
  38473. form: "normal",
  38474. default: true
  38475. },
  38476. normalBack: {
  38477. height: math.unit(5 + 11/12, "feet"),
  38478. name: "Back",
  38479. image: {
  38480. source: "./media/characters/moonlight-rose/normal-back.svg",
  38481. extra: 2010/1839,
  38482. bottom: 10/2020
  38483. },
  38484. form: "normal"
  38485. },
  38486. demonFront: {
  38487. height: math.unit(1.5, "earths"),
  38488. name: "Front",
  38489. image: {
  38490. source: "./media/characters/moonlight-rose/demon.svg",
  38491. extra: 1400/1294,
  38492. bottom: 45/1445
  38493. },
  38494. form: "demon",
  38495. default: true
  38496. },
  38497. terraFront: {
  38498. height: math.unit(1.5, "earths"),
  38499. name: "Front",
  38500. image: {
  38501. source: "./media/characters/moonlight-rose/terra.svg"
  38502. },
  38503. form: "terra",
  38504. default: true
  38505. },
  38506. jupiterFront: {
  38507. height: math.unit(69911*2, "km"),
  38508. name: "Front",
  38509. image: {
  38510. source: "./media/characters/moonlight-rose/jupiter-front.svg",
  38511. extra: 1367/1286,
  38512. bottom: 55/1422
  38513. },
  38514. form: "jupiter",
  38515. default: true
  38516. },
  38517. neptuneFront: {
  38518. height: math.unit(24622*2, "feet"),
  38519. name: "Front",
  38520. image: {
  38521. source: "./media/characters/moonlight-rose/neptune-front.svg",
  38522. extra: 1851/1712,
  38523. bottom: 0/1851
  38524. },
  38525. form: "neptune",
  38526. default: true
  38527. },
  38528. },
  38529. [
  38530. {
  38531. name: "\"Natural\" Height",
  38532. height: math.unit(5 + 11/12, "feet"),
  38533. form: "normal"
  38534. },
  38535. {
  38536. name: "Smallest comfortable size",
  38537. height: math.unit(40, "meters"),
  38538. form: "normal"
  38539. },
  38540. {
  38541. name: "Common size",
  38542. height: math.unit(50, "km"),
  38543. form: "normal",
  38544. default: true
  38545. },
  38546. {
  38547. name: "Normal",
  38548. height: math.unit(1.5, "earths"),
  38549. form: "demon",
  38550. default: true
  38551. },
  38552. {
  38553. name: "Universal",
  38554. height: math.unit(15, "universes"),
  38555. form: "demon"
  38556. },
  38557. {
  38558. name: "Earth",
  38559. height: math.unit(1.5, "earths"),
  38560. form: "terra",
  38561. default: true
  38562. },
  38563. {
  38564. name: "Super Earth",
  38565. height: math.unit(67.5, "earths"),
  38566. form: "terra"
  38567. },
  38568. {
  38569. name: "Doesn't fit in a solar system...",
  38570. height: math.unit(1, "galaxy"),
  38571. form: "terra"
  38572. },
  38573. {
  38574. name: "Saturn",
  38575. height: math.unit(58232*2, "km"),
  38576. form: "jupiter"
  38577. },
  38578. {
  38579. name: "Jupiter",
  38580. height: math.unit(69911*2, "km"),
  38581. form: "jupiter",
  38582. default: true
  38583. },
  38584. {
  38585. name: "HD 100546 b",
  38586. height: math.unit(482938, "km"),
  38587. form: "jupiter"
  38588. },
  38589. {
  38590. name: "Enceladus",
  38591. height: math.unit(513*2, "km"),
  38592. form: "neptune"
  38593. },
  38594. {
  38595. name: "Europe",
  38596. height: math.unit(1560*2, "km"),
  38597. form: "neptune"
  38598. },
  38599. {
  38600. name: "Neptune",
  38601. height: math.unit(24622*2, "km"),
  38602. form: "neptune",
  38603. default: true
  38604. },
  38605. {
  38606. name: "CoRoT-9b",
  38607. height: math.unit(75067*2, "km"),
  38608. form: "neptune"
  38609. },
  38610. ],
  38611. {
  38612. "normal": {
  38613. name: "Normal",
  38614. default: true
  38615. },
  38616. "demon": {
  38617. name: "Demon"
  38618. },
  38619. "terra": {
  38620. name: "Terra"
  38621. },
  38622. "jupiter": {
  38623. name: "Jupiter"
  38624. },
  38625. "neptune": {
  38626. name: "Neptune"
  38627. }
  38628. }
  38629. ))
  38630. characterMakers.push(() => makeCharacter(
  38631. { name: "Huckle", species: ["dragon"], tags: ["anthro"] },
  38632. {
  38633. front: {
  38634. height: math.unit(16, "feet"),
  38635. weight: math.unit(610, "kg"),
  38636. name: "Front",
  38637. image: {
  38638. source: "./media/characters/huckle/front.svg",
  38639. extra: 1731/1625,
  38640. bottom: 33/1764
  38641. }
  38642. },
  38643. back: {
  38644. height: math.unit(16, "feet"),
  38645. weight: math.unit(610, "kg"),
  38646. name: "Back",
  38647. image: {
  38648. source: "./media/characters/huckle/back.svg",
  38649. extra: 1738/1651,
  38650. bottom: 37/1775
  38651. }
  38652. },
  38653. laughing: {
  38654. height: math.unit(3.75, "feet"),
  38655. name: "Laughing",
  38656. image: {
  38657. source: "./media/characters/huckle/laughing.svg"
  38658. }
  38659. },
  38660. angry: {
  38661. height: math.unit(4.15, "feet"),
  38662. name: "Angry",
  38663. image: {
  38664. source: "./media/characters/huckle/angry.svg"
  38665. }
  38666. },
  38667. },
  38668. [
  38669. {
  38670. name: "Normal",
  38671. height: math.unit(16, "feet"),
  38672. default: true
  38673. },
  38674. {
  38675. name: "Mini Macro",
  38676. height: math.unit(463, "feet")
  38677. },
  38678. {
  38679. name: "Macro",
  38680. height: math.unit(1680, "meters")
  38681. },
  38682. {
  38683. name: "Mega Macro",
  38684. height: math.unit(175, "km")
  38685. },
  38686. {
  38687. name: "Terra Macro",
  38688. height: math.unit(32, "gigameters")
  38689. },
  38690. {
  38691. name: "Multiverse+",
  38692. height: math.unit(2.56e23, "yottameters")
  38693. },
  38694. ]
  38695. ))
  38696. characterMakers.push(() => makeCharacter(
  38697. { name: "Candy", species: ["zeraora"], tags: ["anthro"] },
  38698. {
  38699. front: {
  38700. height: math.unit(6 + 9/12, "feet"),
  38701. weight: math.unit(280, "lb"),
  38702. name: "Front",
  38703. image: {
  38704. source: "./media/characters/candy/front.svg",
  38705. extra: 234/217,
  38706. bottom: 11/245
  38707. }
  38708. },
  38709. },
  38710. [
  38711. {
  38712. name: "Really Small",
  38713. height: math.unit(0.1, "nm")
  38714. },
  38715. {
  38716. name: "Micro",
  38717. height: math.unit(2, "inches")
  38718. },
  38719. {
  38720. name: "Normal",
  38721. height: math.unit(6 + 9/12, "feet"),
  38722. default: true
  38723. },
  38724. {
  38725. name: "Small Macro",
  38726. height: math.unit(69, "feet")
  38727. },
  38728. {
  38729. name: "Macro",
  38730. height: math.unit(160, "feet")
  38731. },
  38732. {
  38733. name: "Megamacro",
  38734. height: math.unit(22000, "miles")
  38735. },
  38736. {
  38737. name: "Gigamacro",
  38738. height: math.unit(50000, "miles")
  38739. },
  38740. ]
  38741. ))
  38742. characterMakers.push(() => makeCharacter(
  38743. { name: "Joey McDonald", species: ["rabbit", "kobold"], tags: ["anthro"] },
  38744. {
  38745. front: {
  38746. height: math.unit(4, "feet"),
  38747. weight: math.unit(90, "lb"),
  38748. name: "Front",
  38749. image: {
  38750. source: "./media/characters/joey-mcdonald/front.svg",
  38751. extra: 1059/852,
  38752. bottom: 33/1092
  38753. }
  38754. },
  38755. back: {
  38756. height: math.unit(4, "feet"),
  38757. weight: math.unit(90, "lb"),
  38758. name: "Back",
  38759. image: {
  38760. source: "./media/characters/joey-mcdonald/back.svg",
  38761. extra: 1077/879,
  38762. bottom: 5/1082
  38763. }
  38764. },
  38765. frontKobold: {
  38766. height: math.unit(4, "feet"),
  38767. weight: math.unit(100, "lb"),
  38768. name: "Front (Kobold)",
  38769. image: {
  38770. source: "./media/characters/joey-mcdonald/front-kobold.svg",
  38771. extra: 1480/1367,
  38772. bottom: 0/1480
  38773. }
  38774. },
  38775. backKobold: {
  38776. height: math.unit(4, "feet"),
  38777. weight: math.unit(100, "lb"),
  38778. name: "Back (Kobold)",
  38779. image: {
  38780. source: "./media/characters/joey-mcdonald/back-kobold.svg",
  38781. extra: 1449/1361,
  38782. bottom: 0/1449
  38783. }
  38784. },
  38785. },
  38786. [
  38787. {
  38788. name: "Normal",
  38789. height: math.unit(4, "feet"),
  38790. default: true
  38791. },
  38792. ]
  38793. ))
  38794. characterMakers.push(() => makeCharacter(
  38795. { name: "Kass Lockheed", species: ["dragon"], tags: ["anthro"] },
  38796. {
  38797. front: {
  38798. height: math.unit(12 + 6/12, "feet"),
  38799. name: "Front",
  38800. image: {
  38801. source: "./media/characters/kass-lockheed/front.svg",
  38802. extra: 354/343,
  38803. bottom: 9/363
  38804. }
  38805. },
  38806. back: {
  38807. height: math.unit(12 + 6/12, "feet"),
  38808. name: "Back",
  38809. image: {
  38810. source: "./media/characters/kass-lockheed/back.svg",
  38811. extra: 364/352,
  38812. bottom: 3/367
  38813. }
  38814. },
  38815. dick: {
  38816. height: math.unit(3.12, "feet"),
  38817. name: "Dick",
  38818. image: {
  38819. source: "./media/characters/kass-lockheed/dick.svg"
  38820. }
  38821. },
  38822. head: {
  38823. height: math.unit(2.6, "feet"),
  38824. name: "Head",
  38825. image: {
  38826. source: "./media/characters/kass-lockheed/head.svg"
  38827. }
  38828. },
  38829. bleh: {
  38830. height: math.unit(2.85, "feet"),
  38831. name: "Bleh",
  38832. image: {
  38833. source: "./media/characters/kass-lockheed/bleh.svg"
  38834. }
  38835. },
  38836. smug: {
  38837. height: math.unit(2.85, "feet"),
  38838. name: "Smug",
  38839. image: {
  38840. source: "./media/characters/kass-lockheed/smug.svg"
  38841. }
  38842. },
  38843. },
  38844. [
  38845. {
  38846. name: "Normal",
  38847. height: math.unit(12 + 6/12, "feet"),
  38848. default: true
  38849. },
  38850. ]
  38851. ))
  38852. characterMakers.push(() => makeCharacter(
  38853. { name: "Taylor", species: ["rabbit"], tags: ["anthro"] },
  38854. {
  38855. front: {
  38856. height: math.unit(6 + 2/12, "feet"),
  38857. name: "Front",
  38858. image: {
  38859. source: "./media/characters/taylor/front.svg",
  38860. extra: 639/495,
  38861. bottom: 12/651
  38862. }
  38863. },
  38864. },
  38865. [
  38866. {
  38867. name: "Normal",
  38868. height: math.unit(6 + 2/12, "feet"),
  38869. default: true
  38870. },
  38871. {
  38872. name: "Big",
  38873. height: math.unit(15, "feet")
  38874. },
  38875. {
  38876. name: "Lorg",
  38877. height: math.unit(80, "feet")
  38878. },
  38879. {
  38880. name: "Too Lorg",
  38881. height: math.unit(120, "feet")
  38882. },
  38883. ]
  38884. ))
  38885. characterMakers.push(() => makeCharacter(
  38886. { name: "Kaizer", species: ["demon"], tags: ["anthro"] },
  38887. {
  38888. front: {
  38889. height: math.unit(15, "feet"),
  38890. name: "Front",
  38891. image: {
  38892. source: "./media/characters/kaizer/front.svg",
  38893. extra: 1612/1436,
  38894. bottom: 43/1655
  38895. }
  38896. },
  38897. },
  38898. [
  38899. {
  38900. name: "Normal",
  38901. height: math.unit(15, "feet"),
  38902. default: true
  38903. },
  38904. ]
  38905. ))
  38906. characterMakers.push(() => makeCharacter(
  38907. { name: "Sandy", species: ["sandshrew"], tags: ["anthro"] },
  38908. {
  38909. front: {
  38910. height: math.unit(2, "feet"),
  38911. weight: math.unit(30, "lb"),
  38912. name: "Front",
  38913. image: {
  38914. source: "./media/characters/sandy/front.svg",
  38915. extra: 1439/1307,
  38916. bottom: 194/1633
  38917. }
  38918. },
  38919. },
  38920. [
  38921. {
  38922. name: "Normal",
  38923. height: math.unit(2, "feet"),
  38924. default: true
  38925. },
  38926. ]
  38927. ))
  38928. characterMakers.push(() => makeCharacter(
  38929. { name: "Mellvi", species: ["imp"], tags: ["anthro"] },
  38930. {
  38931. front: {
  38932. height: math.unit(3, "feet"),
  38933. name: "Front",
  38934. image: {
  38935. source: "./media/characters/mellvi/front.svg",
  38936. extra: 1831/1630,
  38937. bottom: 58/1889
  38938. }
  38939. },
  38940. },
  38941. [
  38942. {
  38943. name: "Normal",
  38944. height: math.unit(3, "feet"),
  38945. default: true
  38946. },
  38947. ]
  38948. ))
  38949. characterMakers.push(() => makeCharacter(
  38950. { name: "Shirou", species: ["dragon"], tags: ["anthro"] },
  38951. {
  38952. front: {
  38953. height: math.unit(5 + 11/12, "feet"),
  38954. weight: math.unit(200, "lb"),
  38955. name: "Front",
  38956. image: {
  38957. source: "./media/characters/shirou/front.svg",
  38958. extra: 2491/2383,
  38959. bottom: 189/2680
  38960. }
  38961. },
  38962. back: {
  38963. height: math.unit(5 + 11/12, "feet"),
  38964. weight: math.unit(200, "lb"),
  38965. name: "Back",
  38966. image: {
  38967. source: "./media/characters/shirou/back.svg",
  38968. extra: 2554/2450,
  38969. bottom: 76/2630
  38970. }
  38971. },
  38972. },
  38973. [
  38974. {
  38975. name: "Normal",
  38976. height: math.unit(5 + 11/12, "feet"),
  38977. default: true
  38978. },
  38979. ]
  38980. ))
  38981. characterMakers.push(() => makeCharacter(
  38982. { name: "Noryu", species: ["protogen"], tags: ["anthro"] },
  38983. {
  38984. front: {
  38985. height: math.unit(6 + 3/12, "feet"),
  38986. weight: math.unit(177, "lb"),
  38987. name: "Front",
  38988. image: {
  38989. source: "./media/characters/noryu/front.svg",
  38990. extra: 973/885,
  38991. bottom: 10/983
  38992. }
  38993. },
  38994. },
  38995. [
  38996. {
  38997. name: "Normal",
  38998. height: math.unit(6 + 3/12, "feet"),
  38999. default: true
  39000. },
  39001. ]
  39002. ))
  39003. characterMakers.push(() => makeCharacter(
  39004. { name: "Mevolas Rubenido", species: ["carbuncle"], tags: ["anthro"] },
  39005. {
  39006. front: {
  39007. height: math.unit(5 + 6/12, "feet"),
  39008. weight: math.unit(170, "lb"),
  39009. name: "Front",
  39010. image: {
  39011. source: "./media/characters/mevolas-rubenido/front.svg",
  39012. extra: 2109/1901,
  39013. bottom: 96/2205
  39014. }
  39015. },
  39016. },
  39017. [
  39018. {
  39019. name: "Normal",
  39020. height: math.unit(5 + 6/12, "feet"),
  39021. default: true
  39022. },
  39023. ]
  39024. ))
  39025. characterMakers.push(() => makeCharacter(
  39026. { name: "Dee", species: ["valais-blacknose-sheep"], tags: ["anthro"] },
  39027. {
  39028. front: {
  39029. height: math.unit(100, "feet"),
  39030. name: "Front",
  39031. image: {
  39032. source: "./media/characters/dee/front.svg",
  39033. extra: 2153/2036,
  39034. bottom: 59/2212
  39035. }
  39036. },
  39037. back: {
  39038. height: math.unit(100, "feet"),
  39039. name: "Back",
  39040. image: {
  39041. source: "./media/characters/dee/back.svg",
  39042. extra: 2183/2058,
  39043. bottom: 75/2258
  39044. }
  39045. },
  39046. foot: {
  39047. height: math.unit(19.43, "feet"),
  39048. name: "Foot",
  39049. image: {
  39050. source: "./media/characters/dee/foot.svg"
  39051. }
  39052. },
  39053. hoof: {
  39054. height: math.unit(20.6, "feet"),
  39055. name: "Hoof",
  39056. image: {
  39057. source: "./media/characters/dee/hoof.svg"
  39058. }
  39059. },
  39060. },
  39061. [
  39062. {
  39063. name: "Macro",
  39064. height: math.unit(100, "feet"),
  39065. default: true
  39066. },
  39067. ]
  39068. ))
  39069. characterMakers.push(() => makeCharacter(
  39070. { name: "Teh", species: ["bat"], tags: ["anthro"] },
  39071. {
  39072. front: {
  39073. height: math.unit(5 + 6/12, "feet"),
  39074. name: "Front",
  39075. image: {
  39076. source: "./media/characters/teh/front.svg",
  39077. extra: 1002/847,
  39078. bottom: 62/1064
  39079. }
  39080. },
  39081. },
  39082. [
  39083. {
  39084. name: "Normal",
  39085. height: math.unit(5 + 6/12, "feet"),
  39086. default: true
  39087. },
  39088. ]
  39089. ))
  39090. characterMakers.push(() => makeCharacter(
  39091. { name: "Quicksilver Ayukoti", species: ["dragon", "wolf"], tags: ["feral"] },
  39092. {
  39093. side: {
  39094. height: math.unit(6 + 1/12, "feet"),
  39095. weight: math.unit(204, "lb"),
  39096. name: "Side",
  39097. image: {
  39098. source: "./media/characters/quicksilver-ayukoti/side.svg",
  39099. extra: 974/775,
  39100. bottom: 169/1143
  39101. }
  39102. },
  39103. sitting: {
  39104. height: math.unit(6 + 2/12, "feet"),
  39105. weight: math.unit(204, "lb"),
  39106. name: "Sitting",
  39107. image: {
  39108. source: "./media/characters/quicksilver-ayukoti/sitting.svg",
  39109. extra: 1175/964,
  39110. bottom: 378/1553
  39111. }
  39112. },
  39113. },
  39114. [
  39115. {
  39116. name: "Normal",
  39117. height: math.unit(6 + 1/12, "feet"),
  39118. default: true
  39119. },
  39120. ]
  39121. ))
  39122. characterMakers.push(() => makeCharacter(
  39123. { name: "Tululi", species: ["dunnoh"], tags: ["anthro"] },
  39124. {
  39125. front: {
  39126. height: math.unit(6, "inches"),
  39127. name: "Front",
  39128. image: {
  39129. source: "./media/characters/tululi/front.svg",
  39130. extra: 1997/1876,
  39131. bottom: 20/2017
  39132. }
  39133. },
  39134. },
  39135. [
  39136. {
  39137. name: "Normal",
  39138. height: math.unit(6, "inches"),
  39139. default: true
  39140. },
  39141. ]
  39142. ))
  39143. characterMakers.push(() => makeCharacter(
  39144. { name: "Star", species: ["novaleit"], tags: ["anthro"] },
  39145. {
  39146. front: {
  39147. height: math.unit(4 + 1/12, "feet"),
  39148. name: "Front",
  39149. image: {
  39150. source: "./media/characters/star/front.svg",
  39151. extra: 1493/1189,
  39152. bottom: 48/1541
  39153. }
  39154. },
  39155. },
  39156. [
  39157. {
  39158. name: "Normal",
  39159. height: math.unit(4 + 1/12, "feet"),
  39160. default: true
  39161. },
  39162. ]
  39163. ))
  39164. characterMakers.push(() => makeCharacter(
  39165. { name: "Comet", species: ["novaleit"], tags: ["anthro"] },
  39166. {
  39167. front: {
  39168. height: math.unit(6 + 3/12, "feet"),
  39169. name: "Front",
  39170. image: {
  39171. source: "./media/characters/comet/front.svg",
  39172. extra: 1681/1462,
  39173. bottom: 26/1707
  39174. }
  39175. },
  39176. },
  39177. [
  39178. {
  39179. name: "Normal",
  39180. height: math.unit(6 + 3/12, "feet"),
  39181. default: true
  39182. },
  39183. ]
  39184. ))
  39185. characterMakers.push(() => makeCharacter(
  39186. { name: "Vortex", species: ["kaiju"], tags: ["anthro"] },
  39187. {
  39188. front: {
  39189. height: math.unit(950, "feet"),
  39190. name: "Front",
  39191. image: {
  39192. source: "./media/characters/vortex/front.svg",
  39193. extra: 1497/1434,
  39194. bottom: 56/1553
  39195. }
  39196. },
  39197. maw: {
  39198. height: math.unit(285, "feet"),
  39199. name: "Maw",
  39200. image: {
  39201. source: "./media/characters/vortex/maw.svg"
  39202. }
  39203. },
  39204. },
  39205. [
  39206. {
  39207. name: "Macro",
  39208. height: math.unit(950, "feet"),
  39209. default: true
  39210. },
  39211. ]
  39212. ))
  39213. characterMakers.push(() => makeCharacter(
  39214. { name: "Doodle", species: ["kaiju", "dragon"], tags: ["anthro"] },
  39215. {
  39216. front: {
  39217. height: math.unit(600, "feet"),
  39218. weight: math.unit(0.02, "grams"),
  39219. name: "Front",
  39220. image: {
  39221. source: "./media/characters/doodle/front.svg",
  39222. extra: 1578/1413,
  39223. bottom: 37/1615
  39224. }
  39225. },
  39226. },
  39227. [
  39228. {
  39229. name: "Macro",
  39230. height: math.unit(600, "feet"),
  39231. default: true
  39232. },
  39233. ]
  39234. ))
  39235. characterMakers.push(() => makeCharacter(
  39236. { name: "Jai", species: ["dragon"], tags: ["anthro"] },
  39237. {
  39238. front: {
  39239. height: math.unit(6 + 6/12, "feet"),
  39240. name: "Front",
  39241. image: {
  39242. source: "./media/characters/jai/front.svg",
  39243. extra: 1645/1534,
  39244. bottom: 115/1760
  39245. }
  39246. },
  39247. },
  39248. [
  39249. {
  39250. name: "Normal",
  39251. height: math.unit(6 + 6/12, "feet"),
  39252. default: true
  39253. },
  39254. ]
  39255. ))
  39256. characterMakers.push(() => makeCharacter(
  39257. { name: "Pixel", species: ["gryphon"], tags: ["anthro"] },
  39258. {
  39259. front: {
  39260. height: math.unit(6 + 8/12, "feet"),
  39261. name: "Front",
  39262. image: {
  39263. source: "./media/characters/pixel/front.svg",
  39264. extra: 1900/1735,
  39265. bottom: 63/1963
  39266. }
  39267. },
  39268. },
  39269. [
  39270. {
  39271. name: "Normal",
  39272. height: math.unit(6 + 8/12, "feet"),
  39273. default: true
  39274. },
  39275. ]
  39276. ))
  39277. characterMakers.push(() => makeCharacter(
  39278. { name: "Rhett", species: ["deer"], tags: ["anthro"] },
  39279. {
  39280. back: {
  39281. height: math.unit(4 + 1/12, "feet"),
  39282. weight: math.unit(75, "lb"),
  39283. name: "Back",
  39284. image: {
  39285. source: "./media/characters/rhett/back.svg",
  39286. extra: 930/878,
  39287. bottom: 25/955
  39288. }
  39289. },
  39290. front: {
  39291. height: math.unit(4 + 1/12, "feet"),
  39292. weight: math.unit(75, "lb"),
  39293. name: "Front",
  39294. image: {
  39295. source: "./media/characters/rhett/front.svg",
  39296. extra: 1682/1586,
  39297. bottom: 92/1774
  39298. }
  39299. },
  39300. },
  39301. [
  39302. {
  39303. name: "Micro",
  39304. height: math.unit(8, "inches")
  39305. },
  39306. {
  39307. name: "Tiny",
  39308. height: math.unit(2, "feet")
  39309. },
  39310. {
  39311. name: "Normal",
  39312. height: math.unit(4 + 1/12, "feet"),
  39313. default: true
  39314. },
  39315. ]
  39316. ))
  39317. characterMakers.push(() => makeCharacter(
  39318. { name: "Penny", species: ["mouse"], tags: ["anthro"] },
  39319. {
  39320. front: {
  39321. height: math.unit(3 + 3/12, "feet"),
  39322. name: "Front",
  39323. image: {
  39324. source: "./media/characters/penny/front.svg",
  39325. extra: 1406/1311,
  39326. bottom: 26/1432
  39327. }
  39328. },
  39329. },
  39330. [
  39331. {
  39332. name: "Normal",
  39333. height: math.unit(3 + 3/12, "feet"),
  39334. default: true
  39335. },
  39336. ]
  39337. ))
  39338. characterMakers.push(() => makeCharacter(
  39339. { name: "Monty", species: ["cat", "kangaroo"], tags: ["anthro"] },
  39340. {
  39341. front: {
  39342. height: math.unit(4 + 11/12, "feet"),
  39343. name: "Front",
  39344. image: {
  39345. source: "./media/characters/monty/front.svg",
  39346. extra: 1479/1209,
  39347. bottom: 0/1479
  39348. }
  39349. },
  39350. },
  39351. [
  39352. {
  39353. name: "Normal",
  39354. height: math.unit(4 + 11/12, "feet"),
  39355. default: true
  39356. },
  39357. ]
  39358. ))
  39359. characterMakers.push(() => makeCharacter(
  39360. { name: "Sterling", species: ["lunaral-dragon"], tags: ["anthro"] },
  39361. {
  39362. front: {
  39363. height: math.unit(8 + 4/12, "feet"),
  39364. name: "Front",
  39365. image: {
  39366. source: "./media/characters/sterling/front.svg",
  39367. extra: 1420/1236,
  39368. bottom: 27/1447
  39369. }
  39370. },
  39371. },
  39372. [
  39373. {
  39374. name: "Normal",
  39375. height: math.unit(8 + 4/12, "feet"),
  39376. default: true
  39377. },
  39378. ]
  39379. ))
  39380. characterMakers.push(() => makeCharacter(
  39381. { name: "Marble", species: ["tiger"], tags: ["anthro"] },
  39382. {
  39383. front: {
  39384. height: math.unit(15, "feet"),
  39385. name: "Front",
  39386. image: {
  39387. source: "./media/characters/marble/front.svg",
  39388. extra: 973/937,
  39389. bottom: 32/1005
  39390. }
  39391. },
  39392. },
  39393. [
  39394. {
  39395. name: "Normal",
  39396. height: math.unit(15, "feet"),
  39397. default: true
  39398. },
  39399. ]
  39400. ))
  39401. characterMakers.push(() => makeCharacter(
  39402. { name: "Powder", species: ["sugar-glider"], tags: ["feral"] },
  39403. {
  39404. front: {
  39405. height: math.unit(3, "inches"),
  39406. name: "Front",
  39407. image: {
  39408. source: "./media/characters/powder/front.svg",
  39409. extra: 1504/1334,
  39410. bottom: 518/2022
  39411. }
  39412. },
  39413. },
  39414. [
  39415. {
  39416. name: "Normal",
  39417. height: math.unit(3, "inches"),
  39418. default: true
  39419. },
  39420. ]
  39421. ))
  39422. characterMakers.push(() => makeCharacter(
  39423. { name: "Joey (Raccoon)", species: ["raccoon"], tags: ["anthro"] },
  39424. {
  39425. front: {
  39426. height: math.unit(4 + 5/12, "feet"),
  39427. name: "Front",
  39428. image: {
  39429. source: "./media/characters/joey-raccoon/front.svg",
  39430. extra: 1273/1197,
  39431. bottom: 0/1273
  39432. }
  39433. },
  39434. },
  39435. [
  39436. {
  39437. name: "Normal",
  39438. height: math.unit(4 + 5/12, "feet"),
  39439. default: true
  39440. },
  39441. ]
  39442. ))
  39443. characterMakers.push(() => makeCharacter(
  39444. { name: "Vick", species: ["hyena"], tags: ["anthro"] },
  39445. {
  39446. front: {
  39447. height: math.unit(8 + 4/12, "feet"),
  39448. name: "Front",
  39449. image: {
  39450. source: "./media/characters/vick/front.svg",
  39451. extra: 2187/2118,
  39452. bottom: 47/2234
  39453. }
  39454. },
  39455. },
  39456. [
  39457. {
  39458. name: "Normal",
  39459. height: math.unit(8 + 4/12, "feet"),
  39460. default: true
  39461. },
  39462. ]
  39463. ))
  39464. characterMakers.push(() => makeCharacter(
  39465. { name: "Mitsy", species: ["mouse"], tags: ["anthro"] },
  39466. {
  39467. front: {
  39468. height: math.unit(5 + 5/12, "feet"),
  39469. name: "Front",
  39470. image: {
  39471. source: "./media/characters/mitsy/front.svg",
  39472. extra: 1842/1695,
  39473. bottom: 0/1842
  39474. }
  39475. },
  39476. },
  39477. [
  39478. {
  39479. name: "Normal",
  39480. height: math.unit(5 + 5/12, "feet"),
  39481. default: true
  39482. },
  39483. ]
  39484. ))
  39485. characterMakers.push(() => makeCharacter(
  39486. { name: "Silvy", species: ["ninetales"], tags: ["anthro"] },
  39487. {
  39488. front: {
  39489. height: math.unit(6 + 3/12, "feet"),
  39490. name: "Front",
  39491. image: {
  39492. source: "./media/characters/silvy/front.svg",
  39493. extra: 1995/1836,
  39494. bottom: 225/2220
  39495. }
  39496. },
  39497. },
  39498. [
  39499. {
  39500. name: "Normal",
  39501. height: math.unit(6 + 3/12, "feet"),
  39502. default: true
  39503. },
  39504. ]
  39505. ))
  39506. characterMakers.push(() => makeCharacter(
  39507. { name: "Rodney", species: ["mammal"], tags: ["anthro"] },
  39508. {
  39509. front: {
  39510. height: math.unit(3 + 8/12, "feet"),
  39511. name: "Front",
  39512. image: {
  39513. source: "./media/characters/rodney/front.svg",
  39514. extra: 1956/1747,
  39515. bottom: 31/1987
  39516. }
  39517. },
  39518. frontDressed: {
  39519. height: math.unit(2.9, "feet"),
  39520. name: "Front (Dressed)",
  39521. image: {
  39522. source: "./media/characters/rodney/front-dressed.svg",
  39523. extra: 1382/1241,
  39524. bottom: 385/1767
  39525. }
  39526. },
  39527. },
  39528. [
  39529. {
  39530. name: "Normal",
  39531. height: math.unit(3 + 8/12, "feet"),
  39532. default: true
  39533. },
  39534. ]
  39535. ))
  39536. characterMakers.push(() => makeCharacter(
  39537. { name: "Zakail Sudekai", species: ["arctic-wolf"], tags: ["anthro"] },
  39538. {
  39539. front: {
  39540. height: math.unit(5 + 9/12, "feet"),
  39541. weight: math.unit(194, "lbs"),
  39542. name: "Front",
  39543. image: {
  39544. source: "./media/characters/zakail-sudekai/front.svg",
  39545. extra: 2696/2533,
  39546. bottom: 248/2944
  39547. }
  39548. },
  39549. maw: {
  39550. height: math.unit(1.35, "feet"),
  39551. name: "Maw",
  39552. image: {
  39553. source: "./media/characters/zakail-sudekai/maw.svg"
  39554. }
  39555. },
  39556. },
  39557. [
  39558. {
  39559. name: "Normal",
  39560. height: math.unit(5 + 9/12, "feet"),
  39561. default: true
  39562. },
  39563. ]
  39564. ))
  39565. characterMakers.push(() => makeCharacter(
  39566. { name: "Eleanor", species: ["cow"], tags: ["anthro"] },
  39567. {
  39568. front: {
  39569. height: math.unit(8 + 4/12, "feet"),
  39570. weight: math.unit(1200, "lb"),
  39571. name: "Front",
  39572. image: {
  39573. source: "./media/characters/eleanor/front.svg",
  39574. extra: 1226/1192,
  39575. bottom: 52/1278
  39576. }
  39577. },
  39578. back: {
  39579. height: math.unit(8 + 4/12, "feet"),
  39580. weight: math.unit(1200, "lb"),
  39581. name: "Back",
  39582. image: {
  39583. source: "./media/characters/eleanor/back.svg",
  39584. extra: 1242/1184,
  39585. bottom: 60/1302
  39586. }
  39587. },
  39588. head: {
  39589. height: math.unit(2.62, "feet"),
  39590. name: "Head",
  39591. image: {
  39592. source: "./media/characters/eleanor/head.svg"
  39593. }
  39594. },
  39595. },
  39596. [
  39597. {
  39598. name: "Normal",
  39599. height: math.unit(8 + 4/12, "feet"),
  39600. default: true
  39601. },
  39602. ]
  39603. ))
  39604. characterMakers.push(() => makeCharacter(
  39605. { name: "Tanya", species: ["shark"], tags: ["anthro"] },
  39606. {
  39607. front: {
  39608. height: math.unit(8 + 4/12, "feet"),
  39609. weight: math.unit(750, "lb"),
  39610. name: "Front",
  39611. image: {
  39612. source: "./media/characters/tanya/front.svg",
  39613. extra: 1749/1615,
  39614. bottom: 33/1782
  39615. }
  39616. },
  39617. },
  39618. [
  39619. {
  39620. name: "Normal",
  39621. height: math.unit(8 + 4/12, "feet"),
  39622. default: true
  39623. },
  39624. ]
  39625. ))
  39626. characterMakers.push(() => makeCharacter(
  39627. { name: "Cindy", species: ["dragon"], tags: ["anthro"] },
  39628. {
  39629. front: {
  39630. height: math.unit(5, "feet"),
  39631. weight: math.unit(225, "lb"),
  39632. name: "Front",
  39633. image: {
  39634. source: "./media/characters/cindy/front.svg",
  39635. extra: 1320/1250,
  39636. bottom: 42/1362
  39637. }
  39638. },
  39639. frontDressed: {
  39640. height: math.unit(5, "feet"),
  39641. weight: math.unit(225, "lb"),
  39642. name: "Front (Dressed)",
  39643. image: {
  39644. source: "./media/characters/cindy/front-dressed.svg",
  39645. extra: 1320/1250,
  39646. bottom: 42/1362
  39647. }
  39648. },
  39649. back: {
  39650. height: math.unit(5, "feet"),
  39651. weight: math.unit(225, "lb"),
  39652. name: "Back",
  39653. image: {
  39654. source: "./media/characters/cindy/back.svg",
  39655. extra: 1384/1346,
  39656. bottom: 14/1398
  39657. }
  39658. },
  39659. },
  39660. [
  39661. {
  39662. name: "Normal",
  39663. height: math.unit(5, "feet"),
  39664. default: true
  39665. },
  39666. ]
  39667. ))
  39668. characterMakers.push(() => makeCharacter(
  39669. { name: "Wilbur Owen", species: ["donkey"], tags: ["anthro"] },
  39670. {
  39671. front: {
  39672. height: math.unit(6 + 9/12, "feet"),
  39673. weight: math.unit(440, "lb"),
  39674. name: "Front",
  39675. image: {
  39676. source: "./media/characters/wilbur-owen/front.svg",
  39677. extra: 1575/1448,
  39678. bottom: 72/1647
  39679. }
  39680. },
  39681. back: {
  39682. height: math.unit(6 + 9/12, "feet"),
  39683. weight: math.unit(440, "lb"),
  39684. name: "Back",
  39685. image: {
  39686. source: "./media/characters/wilbur-owen/back.svg",
  39687. extra: 1578/1445,
  39688. bottom: 36/1614
  39689. }
  39690. },
  39691. },
  39692. [
  39693. {
  39694. name: "Normal",
  39695. height: math.unit(6 + 9/12, "feet"),
  39696. default: true
  39697. },
  39698. ]
  39699. ))
  39700. characterMakers.push(() => makeCharacter(
  39701. { name: "Keegan", species: ["chinchilla", "tiger"], tags: ["anthro"] },
  39702. {
  39703. front: {
  39704. height: math.unit(6 + 5/12, "feet"),
  39705. weight: math.unit(650, "lb"),
  39706. name: "Front",
  39707. image: {
  39708. source: "./media/characters/keegan/front.svg",
  39709. extra: 2387/2198,
  39710. bottom: 33/2420
  39711. }
  39712. },
  39713. side: {
  39714. height: math.unit(6 + 5/12, "feet"),
  39715. weight: math.unit(650, "lb"),
  39716. name: "Side",
  39717. image: {
  39718. source: "./media/characters/keegan/side.svg",
  39719. extra: 2390/2202,
  39720. bottom: 47/2437
  39721. }
  39722. },
  39723. back: {
  39724. height: math.unit(6 + 5/12, "feet"),
  39725. weight: math.unit(650, "lb"),
  39726. name: "Back",
  39727. image: {
  39728. source: "./media/characters/keegan/back.svg",
  39729. extra: 2418/2268,
  39730. bottom: 15/2433
  39731. }
  39732. },
  39733. frontSfw: {
  39734. height: math.unit(6 + 5/12, "feet"),
  39735. weight: math.unit(650, "lb"),
  39736. name: "Front (SFW)",
  39737. image: {
  39738. source: "./media/characters/keegan/front-sfw.svg",
  39739. extra: 2387/2198,
  39740. bottom: 33/2420
  39741. }
  39742. },
  39743. beans: {
  39744. height: math.unit(1.85, "feet"),
  39745. name: "Beans",
  39746. image: {
  39747. source: "./media/characters/keegan/beans.svg"
  39748. }
  39749. },
  39750. },
  39751. [
  39752. {
  39753. name: "Normal",
  39754. height: math.unit(6 + 5/12, "feet"),
  39755. default: true
  39756. },
  39757. ]
  39758. ))
  39759. characterMakers.push(() => makeCharacter(
  39760. { name: "Colton", species: ["bat", "imp", "deity"], tags: ["anthro"] },
  39761. {
  39762. front: {
  39763. height: math.unit(9, "feet"),
  39764. name: "Front",
  39765. image: {
  39766. source: "./media/characters/colton/front.svg",
  39767. extra: 1589/1326,
  39768. bottom: 139/1728
  39769. }
  39770. },
  39771. },
  39772. [
  39773. {
  39774. name: "Normal",
  39775. height: math.unit(9, "feet"),
  39776. default: true
  39777. },
  39778. ]
  39779. ))
  39780. characterMakers.push(() => makeCharacter(
  39781. { name: "Bora", species: ["chinchilla"], tags: ["anthro"] },
  39782. {
  39783. front: {
  39784. height: math.unit(2 + 9/12, "feet"),
  39785. name: "Front",
  39786. image: {
  39787. source: "./media/characters/bora/front.svg",
  39788. extra: 1265/1250,
  39789. bottom: 24/1289
  39790. }
  39791. },
  39792. },
  39793. [
  39794. {
  39795. name: "Normal",
  39796. height: math.unit(2 + 9/12, "feet"),
  39797. default: true
  39798. },
  39799. ]
  39800. ))
  39801. characterMakers.push(() => makeCharacter(
  39802. { name: "Myu-myu", species: ["monster"], tags: ["anthro"] },
  39803. {
  39804. front: {
  39805. height: math.unit(8, "feet"),
  39806. name: "Front",
  39807. image: {
  39808. source: "./media/characters/myu-myu/front.svg",
  39809. extra: 1949/1857,
  39810. bottom: 90/2039
  39811. }
  39812. },
  39813. },
  39814. [
  39815. {
  39816. name: "Normal",
  39817. height: math.unit(8, "feet"),
  39818. default: true
  39819. },
  39820. {
  39821. name: "Big",
  39822. height: math.unit(15, "feet")
  39823. },
  39824. {
  39825. name: "BIG",
  39826. height: math.unit(25, "feet")
  39827. },
  39828. ]
  39829. ))
  39830. characterMakers.push(() => makeCharacter(
  39831. { name: "Haloren", species: ["felkin"], tags: ["anthro"] },
  39832. {
  39833. side: {
  39834. height: math.unit(7 + 5/12, "feet"),
  39835. weight: math.unit(2800, "lb"),
  39836. name: "Side",
  39837. image: {
  39838. source: "./media/characters/haloren/side.svg",
  39839. extra: 1793/409,
  39840. bottom: 59/1852
  39841. }
  39842. },
  39843. frontPaw: {
  39844. height: math.unit(2.36, "feet"),
  39845. name: "Front paw",
  39846. image: {
  39847. source: "./media/characters/haloren/front-paw.svg"
  39848. }
  39849. },
  39850. hindPaw: {
  39851. height: math.unit(3.18, "feet"),
  39852. name: "Hind paw",
  39853. image: {
  39854. source: "./media/characters/haloren/hind-paw.svg"
  39855. }
  39856. },
  39857. maw: {
  39858. height: math.unit(5.05, "feet"),
  39859. name: "Maw",
  39860. image: {
  39861. source: "./media/characters/haloren/maw.svg"
  39862. }
  39863. },
  39864. dick: {
  39865. height: math.unit(2.90, "feet"),
  39866. name: "Dick",
  39867. image: {
  39868. source: "./media/characters/haloren/dick.svg"
  39869. }
  39870. },
  39871. },
  39872. [
  39873. {
  39874. name: "Normal",
  39875. height: math.unit(7 + 5/12, "feet"),
  39876. default: true
  39877. },
  39878. {
  39879. name: "Enhanced",
  39880. height: math.unit(14 + 3/12, "feet")
  39881. },
  39882. ]
  39883. ))
  39884. characterMakers.push(() => makeCharacter(
  39885. { name: "Kimmy", species: ["kitsune"], tags: ["anthro"] },
  39886. {
  39887. front: {
  39888. height: math.unit(171, "cm"),
  39889. name: "Front",
  39890. image: {
  39891. source: "./media/characters/kimmy/front.svg",
  39892. extra: 1491/1435,
  39893. bottom: 53/1544
  39894. }
  39895. },
  39896. },
  39897. [
  39898. {
  39899. name: "Small",
  39900. height: math.unit(9, "cm")
  39901. },
  39902. {
  39903. name: "Normal",
  39904. height: math.unit(171, "cm"),
  39905. default: true
  39906. },
  39907. ]
  39908. ))
  39909. characterMakers.push(() => makeCharacter(
  39910. { name: "Galeboomer", species: ["wolf"], tags: ["anthro"] },
  39911. {
  39912. front: {
  39913. height: math.unit(8, "feet"),
  39914. weight: math.unit(300, "lb"),
  39915. name: "Front",
  39916. image: {
  39917. source: "./media/characters/galeboomer/front.svg",
  39918. extra: 4651/4415,
  39919. bottom: 162/4813
  39920. }
  39921. },
  39922. back: {
  39923. height: math.unit(8, "feet"),
  39924. weight: math.unit(300, "lb"),
  39925. name: "Back",
  39926. image: {
  39927. source: "./media/characters/galeboomer/back.svg",
  39928. extra: 4544/4314,
  39929. bottom: 16/4560
  39930. }
  39931. },
  39932. frontAlt: {
  39933. height: math.unit(8, "feet"),
  39934. weight: math.unit(300, "lb"),
  39935. name: "Front (Alt)",
  39936. image: {
  39937. source: "./media/characters/galeboomer/front-alt.svg",
  39938. extra: 4458/4228,
  39939. bottom: 68/4526
  39940. }
  39941. },
  39942. maw: {
  39943. height: math.unit(1.2, "feet"),
  39944. name: "Maw",
  39945. image: {
  39946. source: "./media/characters/galeboomer/maw.svg"
  39947. }
  39948. },
  39949. },
  39950. [
  39951. {
  39952. name: "Normal",
  39953. height: math.unit(8, "feet"),
  39954. default: true
  39955. },
  39956. ]
  39957. ))
  39958. characterMakers.push(() => makeCharacter(
  39959. { name: "Chyr", species: ["fox"], tags: ["anthro"] },
  39960. {
  39961. front: {
  39962. height: math.unit(5 + 9/12, "feet"),
  39963. weight: math.unit(120, "lb"),
  39964. name: "Front",
  39965. image: {
  39966. source: "./media/characters/chyr/front.svg",
  39967. extra: 1323/1254,
  39968. bottom: 63/1386
  39969. }
  39970. },
  39971. back: {
  39972. height: math.unit(5 + 9/12, "feet"),
  39973. weight: math.unit(120, "lb"),
  39974. name: "Back",
  39975. image: {
  39976. source: "./media/characters/chyr/back.svg",
  39977. extra: 1323/1252,
  39978. bottom: 48/1371
  39979. }
  39980. },
  39981. },
  39982. [
  39983. {
  39984. name: "Normal",
  39985. height: math.unit(5 + 9/12, "feet"),
  39986. default: true
  39987. },
  39988. ]
  39989. ))
  39990. characterMakers.push(() => makeCharacter(
  39991. { name: "Solarus", species: ["tykeriel"], tags: ["anthro"] },
  39992. {
  39993. front: {
  39994. height: math.unit(7, "feet"),
  39995. weight: math.unit(310, "lb"),
  39996. name: "Front",
  39997. image: {
  39998. source: "./media/characters/solarus/front.svg",
  39999. extra: 2415/2021,
  40000. bottom: 103/2518
  40001. }
  40002. },
  40003. back: {
  40004. height: math.unit(7, "feet"),
  40005. weight: math.unit(310, "lb"),
  40006. name: "Back",
  40007. image: {
  40008. source: "./media/characters/solarus/back.svg",
  40009. extra: 2463/2089,
  40010. bottom: 79/2542
  40011. }
  40012. },
  40013. },
  40014. [
  40015. {
  40016. name: "Normal",
  40017. height: math.unit(7, "feet"),
  40018. default: true
  40019. },
  40020. ]
  40021. ))
  40022. characterMakers.push(() => makeCharacter(
  40023. { name: "Mutsuju Koizaemon", species: ["snow-leopard", "lynx"], tags: ["anthro"] },
  40024. {
  40025. front: {
  40026. height: math.unit(16, "feet"),
  40027. name: "Front",
  40028. image: {
  40029. source: "./media/characters/mutsuju-koizaemon/front.svg",
  40030. extra: 1844/1780,
  40031. bottom: 58/1902
  40032. }
  40033. },
  40034. winterCoat: {
  40035. height: math.unit(16, "feet"),
  40036. name: "Winter Coat",
  40037. image: {
  40038. source: "./media/characters/mutsuju-koizaemon/winter-coat.svg",
  40039. extra: 1807/1775,
  40040. bottom: 69/1876
  40041. }
  40042. },
  40043. },
  40044. [
  40045. {
  40046. name: "Normal",
  40047. height: math.unit(16, "feet"),
  40048. default: true
  40049. },
  40050. {
  40051. name: "Chicago Size",
  40052. height: math.unit(560, "feet")
  40053. },
  40054. ]
  40055. ))
  40056. characterMakers.push(() => makeCharacter(
  40057. { name: "Lexor", species: ["dragon"], tags: ["anthro"] },
  40058. {
  40059. front: {
  40060. height: math.unit(11 + 6/12, "feet"),
  40061. weight: math.unit(1366, "lb"),
  40062. name: "Front",
  40063. image: {
  40064. source: "./media/characters/lexor/front.svg",
  40065. extra: 1560/1481,
  40066. bottom: 211/1771
  40067. }
  40068. },
  40069. back: {
  40070. height: math.unit(11 + 6/12, "feet"),
  40071. weight: math.unit(1366, "lb"),
  40072. name: "Back",
  40073. image: {
  40074. source: "./media/characters/lexor/back.svg",
  40075. extra: 1614/1533,
  40076. bottom: 76/1690
  40077. }
  40078. },
  40079. maw: {
  40080. height: math.unit(3, "feet"),
  40081. name: "Maw",
  40082. image: {
  40083. source: "./media/characters/lexor/maw.svg"
  40084. }
  40085. },
  40086. dick: {
  40087. height: math.unit(2.59, "feet"),
  40088. name: "Dick",
  40089. image: {
  40090. source: "./media/characters/lexor/dick.svg"
  40091. }
  40092. },
  40093. },
  40094. [
  40095. {
  40096. name: "Normal",
  40097. height: math.unit(11 + 6/12, "feet"),
  40098. default: true
  40099. },
  40100. ]
  40101. ))
  40102. characterMakers.push(() => makeCharacter(
  40103. { name: "Magnum", species: ["folf"], tags: ["anthro"] },
  40104. {
  40105. front: {
  40106. height: math.unit(5 + 8/12, "feet"),
  40107. name: "Front",
  40108. image: {
  40109. source: "./media/characters/magnum/front.svg",
  40110. extra: 942/855,
  40111. bottom: 26/968
  40112. }
  40113. },
  40114. },
  40115. [
  40116. {
  40117. name: "Normal",
  40118. height: math.unit(5 + 8/12, "feet"),
  40119. default: true
  40120. },
  40121. ]
  40122. ))
  40123. characterMakers.push(() => makeCharacter(
  40124. { name: "Solas Sharpsman", species: ["kitsune"], tags: ["anthro"] },
  40125. {
  40126. front: {
  40127. height: math.unit(18 + 4/12, "feet"),
  40128. weight: math.unit(1500, "kg"),
  40129. name: "Front",
  40130. image: {
  40131. source: "./media/characters/solas-sharpsman/front.svg",
  40132. extra: 1698/1589,
  40133. bottom: 0/1698
  40134. }
  40135. },
  40136. },
  40137. [
  40138. {
  40139. name: "Normal",
  40140. height: math.unit(18 + 4/12, "feet"),
  40141. default: true
  40142. },
  40143. ]
  40144. ))
  40145. characterMakers.push(() => makeCharacter(
  40146. { name: "October", species: ["tiger"], tags: ["anthro"] },
  40147. {
  40148. front: {
  40149. height: math.unit(5 + 5/12, "feet"),
  40150. weight: math.unit(180, "lb"),
  40151. name: "Front",
  40152. image: {
  40153. source: "./media/characters/october/front.svg",
  40154. extra: 1800/1650,
  40155. bottom: 0/1800
  40156. }
  40157. },
  40158. frontNsfw: {
  40159. height: math.unit(5 + 5/12, "feet"),
  40160. weight: math.unit(180, "lb"),
  40161. name: "Front (NSFW)",
  40162. image: {
  40163. source: "./media/characters/october/front-nsfw.svg",
  40164. extra: 1392/1307,
  40165. bottom: 42/1434
  40166. }
  40167. },
  40168. },
  40169. [
  40170. {
  40171. name: "Normal",
  40172. height: math.unit(5 + 5/12, "feet"),
  40173. default: true
  40174. },
  40175. ]
  40176. ))
  40177. characterMakers.push(() => makeCharacter(
  40178. { name: "Essynkardi", species: ["dragon"], tags: ["anthro"] },
  40179. {
  40180. front: {
  40181. height: math.unit(8 + 6/12, "feet"),
  40182. name: "Front",
  40183. image: {
  40184. source: "./media/characters/essynkardi/front.svg",
  40185. extra: 1541/1457,
  40186. bottom: 47/1588
  40187. }
  40188. },
  40189. },
  40190. [
  40191. {
  40192. name: "Normal",
  40193. height: math.unit(8 + 6/12, "feet"),
  40194. default: true
  40195. },
  40196. ]
  40197. ))
  40198. characterMakers.push(() => makeCharacter(
  40199. { name: "Icky", species: ["raven", "pooltoy"], tags: ["anthro"] },
  40200. {
  40201. front: {
  40202. height: math.unit(6 + 6/12, "feet"),
  40203. weight: math.unit(7, "lb"),
  40204. name: "Front",
  40205. image: {
  40206. source: "./media/characters/icky/front.svg",
  40207. extra: 813/782,
  40208. bottom: 66/879
  40209. }
  40210. },
  40211. back: {
  40212. height: math.unit(6 + 6/12, "feet"),
  40213. weight: math.unit(7, "lb"),
  40214. name: "Back",
  40215. image: {
  40216. source: "./media/characters/icky/back.svg",
  40217. extra: 754/735,
  40218. bottom: 56/810
  40219. }
  40220. },
  40221. },
  40222. [
  40223. {
  40224. name: "Normal",
  40225. height: math.unit(6 + 6/12, "feet"),
  40226. default: true
  40227. },
  40228. ]
  40229. ))
  40230. characterMakers.push(() => makeCharacter(
  40231. { name: "Rojas", species: ["dragon", "human"], tags: ["anthro"] },
  40232. {
  40233. front: {
  40234. height: math.unit(15, "feet"),
  40235. name: "Front",
  40236. image: {
  40237. source: "./media/characters/rojas/front.svg",
  40238. extra: 1462/1408,
  40239. bottom: 95/1557
  40240. }
  40241. },
  40242. back: {
  40243. height: math.unit(15, "feet"),
  40244. name: "Back",
  40245. image: {
  40246. source: "./media/characters/rojas/back.svg",
  40247. extra: 1023/954,
  40248. bottom: 28/1051
  40249. }
  40250. },
  40251. },
  40252. [
  40253. {
  40254. name: "Normal",
  40255. height: math.unit(15, "feet"),
  40256. default: true
  40257. },
  40258. ]
  40259. ))
  40260. characterMakers.push(() => makeCharacter(
  40261. { name: "Alek Dryagan", species: ["sea-monster", "human", "demi"], tags: ["anthro"] },
  40262. {
  40263. frontHuman: {
  40264. height: math.unit(5 + 7/12, "feet"),
  40265. name: "Front (Human)",
  40266. image: {
  40267. source: "./media/characters/alek-dryagan/front-human.svg",
  40268. extra: 1687/1667,
  40269. bottom: 69/1756
  40270. }
  40271. },
  40272. backHuman: {
  40273. height: math.unit(5 + 7/12, "feet"),
  40274. name: "Back (Human)",
  40275. image: {
  40276. source: "./media/characters/alek-dryagan/back-human.svg",
  40277. extra: 1670/1649,
  40278. bottom: 65/1735
  40279. }
  40280. },
  40281. frontDemi: {
  40282. height: math.unit(65, "feet"),
  40283. name: "Front (Demi)",
  40284. image: {
  40285. source: "./media/characters/alek-dryagan/front-demi.svg",
  40286. extra: 1669/1642,
  40287. bottom: 49/1718
  40288. }
  40289. },
  40290. backDemi: {
  40291. height: math.unit(65, "feet"),
  40292. name: "Back (Demi)",
  40293. image: {
  40294. source: "./media/characters/alek-dryagan/back-demi.svg",
  40295. extra: 1658/1637,
  40296. bottom: 40/1698
  40297. }
  40298. },
  40299. mawHuman: {
  40300. height: math.unit(0.3, "feet"),
  40301. name: "Maw (Human)",
  40302. image: {
  40303. source: "./media/characters/alek-dryagan/maw-human.svg"
  40304. }
  40305. },
  40306. mawDemi: {
  40307. height: math.unit(3.8, "feet"),
  40308. name: "Maw (Demi)",
  40309. image: {
  40310. source: "./media/characters/alek-dryagan/maw-demi.svg"
  40311. }
  40312. },
  40313. },
  40314. [
  40315. {
  40316. name: "Normal",
  40317. height: math.unit(5 + 7/12, "feet"),
  40318. default: true
  40319. },
  40320. ]
  40321. ))
  40322. characterMakers.push(() => makeCharacter(
  40323. { name: "Gen", species: ["cat", "human", "demi"], tags: ["anthro"] },
  40324. {
  40325. frontHuman: {
  40326. height: math.unit(5 + 2/12, "feet"),
  40327. name: "Front (Human)",
  40328. image: {
  40329. source: "./media/characters/gen/front-human.svg",
  40330. extra: 1627/1538,
  40331. bottom: 71/1698
  40332. }
  40333. },
  40334. backHuman: {
  40335. height: math.unit(5 + 2/12, "feet"),
  40336. name: "Back (Human)",
  40337. image: {
  40338. source: "./media/characters/gen/back-human.svg",
  40339. extra: 1638/1548,
  40340. bottom: 69/1707
  40341. }
  40342. },
  40343. frontDemi: {
  40344. height: math.unit(5 + 2/12, "feet"),
  40345. name: "Front (Demi)",
  40346. image: {
  40347. source: "./media/characters/gen/front-demi.svg",
  40348. extra: 1627/1538,
  40349. bottom: 71/1698
  40350. }
  40351. },
  40352. backDemi: {
  40353. height: math.unit(5 + 2/12, "feet"),
  40354. name: "Back (Demi)",
  40355. image: {
  40356. source: "./media/characters/gen/back-demi.svg",
  40357. extra: 1638/1548,
  40358. bottom: 69/1707
  40359. }
  40360. },
  40361. },
  40362. [
  40363. {
  40364. name: "Normal",
  40365. height: math.unit(5 + 2/12, "feet"),
  40366. default: true
  40367. },
  40368. ]
  40369. ))
  40370. characterMakers.push(() => makeCharacter(
  40371. { name: "Max Kobold", species: ["imp", "human", "demi"], tags: ["anthro"] },
  40372. {
  40373. frontImp: {
  40374. height: math.unit(1 + 11/12, "feet"),
  40375. name: "Front (Imp)",
  40376. image: {
  40377. source: "./media/characters/max-kobold/front-imp.svg",
  40378. extra: 1238/1134,
  40379. bottom: 81/1319
  40380. }
  40381. },
  40382. backImp: {
  40383. height: math.unit(1 + 11/12, "feet"),
  40384. name: "Back (Imp)",
  40385. image: {
  40386. source: "./media/characters/max-kobold/back-imp.svg",
  40387. extra: 1334/1175,
  40388. bottom: 34/1368
  40389. }
  40390. },
  40391. frontDemi: {
  40392. height: math.unit(5 + 9/12, "feet"),
  40393. name: "Front (Demi)",
  40394. image: {
  40395. source: "./media/characters/max-kobold/front-demi.svg",
  40396. extra: 1715/1685,
  40397. bottom: 54/1769
  40398. }
  40399. },
  40400. backDemi: {
  40401. height: math.unit(5 + 9/12, "feet"),
  40402. name: "Back (Demi)",
  40403. image: {
  40404. source: "./media/characters/max-kobold/back-demi.svg",
  40405. extra: 1752/1729,
  40406. bottom: 41/1793
  40407. }
  40408. },
  40409. handImp: {
  40410. height: math.unit(0.45, "feet"),
  40411. name: "Hand (Imp)",
  40412. image: {
  40413. source: "./media/characters/max-kobold/hand.svg"
  40414. }
  40415. },
  40416. pawImp: {
  40417. height: math.unit(0.46, "feet"),
  40418. name: "Paw (Imp)",
  40419. image: {
  40420. source: "./media/characters/max-kobold/paw.svg"
  40421. }
  40422. },
  40423. handDemi: {
  40424. height: math.unit(0.80, "feet"),
  40425. name: "Hand (Demi)",
  40426. image: {
  40427. source: "./media/characters/max-kobold/hand.svg"
  40428. }
  40429. },
  40430. pawDemi: {
  40431. height: math.unit(1.1, "feet"),
  40432. name: "Paw (Demi)",
  40433. image: {
  40434. source: "./media/characters/max-kobold/paw.svg"
  40435. }
  40436. },
  40437. headImp: {
  40438. height: math.unit(1.33, "feet"),
  40439. name: "Head (Imp)",
  40440. image: {
  40441. source: "./media/characters/max-kobold/head-imp.svg"
  40442. }
  40443. },
  40444. mawImp: {
  40445. height: math.unit(0.75, "feet"),
  40446. name: "Maw (Imp)",
  40447. image: {
  40448. source: "./media/characters/max-kobold/maw-imp.svg"
  40449. }
  40450. },
  40451. mawDemi: {
  40452. height: math.unit(0.42, "feet"),
  40453. name: "Maw (Demi)",
  40454. image: {
  40455. source: "./media/characters/max-kobold/maw-demi.svg"
  40456. }
  40457. },
  40458. },
  40459. [
  40460. {
  40461. name: "Normal",
  40462. height: math.unit(1 + 11/12, "feet"),
  40463. default: true
  40464. },
  40465. ]
  40466. ))
  40467. characterMakers.push(() => makeCharacter(
  40468. { name: "Carbon", species: ["charizard", "demi"], tags: ["anthro"] },
  40469. {
  40470. front: {
  40471. height: math.unit(7 + 5/12, "feet"),
  40472. name: "Front",
  40473. image: {
  40474. source: "./media/characters/carbon/front.svg",
  40475. extra: 1754/1689,
  40476. bottom: 65/1819
  40477. }
  40478. },
  40479. back: {
  40480. height: math.unit(7 + 5/12, "feet"),
  40481. name: "Back",
  40482. image: {
  40483. source: "./media/characters/carbon/back.svg",
  40484. extra: 1762/1695,
  40485. bottom: 24/1786
  40486. }
  40487. },
  40488. frontGigantamax: {
  40489. height: math.unit(150, "feet"),
  40490. name: "Front (Gigantamax)",
  40491. image: {
  40492. source: "./media/characters/carbon/front-gigantamax.svg",
  40493. extra: 1826/1669,
  40494. bottom: 59/1885
  40495. }
  40496. },
  40497. backGigantamax: {
  40498. height: math.unit(150, "feet"),
  40499. name: "Back (Gigantamax)",
  40500. image: {
  40501. source: "./media/characters/carbon/back-gigantamax.svg",
  40502. extra: 1796/1653,
  40503. bottom: 53/1849
  40504. }
  40505. },
  40506. maw: {
  40507. height: math.unit(0.48, "feet"),
  40508. name: "Maw",
  40509. image: {
  40510. source: "./media/characters/carbon/maw.svg"
  40511. }
  40512. },
  40513. mawGigantamax: {
  40514. height: math.unit(7.5, "feet"),
  40515. name: "Maw (Gigantamax)",
  40516. image: {
  40517. source: "./media/characters/carbon/maw-gigantamax.svg"
  40518. }
  40519. },
  40520. },
  40521. [
  40522. {
  40523. name: "Normal",
  40524. height: math.unit(7 + 5/12, "feet"),
  40525. default: true
  40526. },
  40527. ]
  40528. ))
  40529. characterMakers.push(() => makeCharacter(
  40530. { name: "Maverick", species: ["salazzle", "demi"], tags: ["anthro"] },
  40531. {
  40532. front: {
  40533. height: math.unit(6, "feet"),
  40534. name: "Front",
  40535. image: {
  40536. source: "./media/characters/maverick/front.svg",
  40537. extra: 1672/1661,
  40538. bottom: 85/1757
  40539. }
  40540. },
  40541. back: {
  40542. height: math.unit(6, "feet"),
  40543. name: "Back",
  40544. image: {
  40545. source: "./media/characters/maverick/back.svg",
  40546. extra: 1642/1631,
  40547. bottom: 38/1680
  40548. }
  40549. },
  40550. },
  40551. [
  40552. {
  40553. name: "Normal",
  40554. height: math.unit(6, "feet"),
  40555. default: true
  40556. },
  40557. ]
  40558. ))
  40559. characterMakers.push(() => makeCharacter(
  40560. { name: "Grockle", species: ["stegosaurus"], tags: ["anthro"] },
  40561. {
  40562. front: {
  40563. height: math.unit(15, "feet"),
  40564. weight: math.unit(615, "lb"),
  40565. name: "Front",
  40566. image: {
  40567. source: "./media/characters/grockle/front.svg",
  40568. extra: 1535/1427,
  40569. bottom: 56/1591
  40570. }
  40571. },
  40572. },
  40573. [
  40574. {
  40575. name: "Normal",
  40576. height: math.unit(15, "feet"),
  40577. default: true
  40578. },
  40579. {
  40580. name: "Large",
  40581. height: math.unit(150, "feet")
  40582. },
  40583. {
  40584. name: "Macro",
  40585. height: math.unit(1876, "feet")
  40586. },
  40587. {
  40588. name: "Mega Macro",
  40589. height: math.unit(121940, "feet")
  40590. },
  40591. {
  40592. name: "Giga Macro",
  40593. height: math.unit(750, "km")
  40594. },
  40595. {
  40596. name: "Tera Macro",
  40597. height: math.unit(750000, "km")
  40598. },
  40599. {
  40600. name: "Galactic",
  40601. height: math.unit(1.4e5, "km")
  40602. },
  40603. {
  40604. name: "Godlike",
  40605. height: math.unit(9.8e280, "galaxies")
  40606. },
  40607. ]
  40608. ))
  40609. characterMakers.push(() => makeCharacter(
  40610. { name: "Alistair", species: ["dragon"], tags: ["anthro"] },
  40611. {
  40612. front: {
  40613. height: math.unit(11, "meters"),
  40614. weight: math.unit(20, "tonnes"),
  40615. name: "Front",
  40616. image: {
  40617. source: "./media/characters/alistair/front.svg",
  40618. extra: 1265/1009,
  40619. bottom: 93/1358
  40620. }
  40621. },
  40622. },
  40623. [
  40624. {
  40625. name: "Normal",
  40626. height: math.unit(11, "meters"),
  40627. default: true
  40628. },
  40629. ]
  40630. ))
  40631. characterMakers.push(() => makeCharacter(
  40632. { name: "Haruka", species: ["raptor"], tags: ["anthro"] },
  40633. {
  40634. front: {
  40635. height: math.unit(5 + 8/12, "feet"),
  40636. name: "Front",
  40637. image: {
  40638. source: "./media/characters/haruka/front.svg",
  40639. extra: 2012/1952,
  40640. bottom: 0/2012
  40641. }
  40642. },
  40643. },
  40644. [
  40645. {
  40646. name: "Normal",
  40647. height: math.unit(5 + 8/12, "feet"),
  40648. default: true
  40649. },
  40650. ]
  40651. ))
  40652. characterMakers.push(() => makeCharacter(
  40653. { name: "Vivian Sylveon", species: ["sylveon", "computer-virus"], tags: ["anthro"] },
  40654. {
  40655. back: {
  40656. height: math.unit(9, "feet"),
  40657. name: "Back",
  40658. image: {
  40659. source: "./media/characters/vivian-sylveon/back.svg",
  40660. extra: 1853/1714,
  40661. bottom: 0/1853
  40662. }
  40663. },
  40664. hyper: {
  40665. height: math.unit(5.58, "feet"),
  40666. name: "Hyper",
  40667. preyCapacity: math.unit(2.80616218797, "m^3"),
  40668. image: {
  40669. source: "./media/characters/vivian-sylveon/hyper.svg",
  40670. extra: 999/676,
  40671. bottom: 697/1696
  40672. },
  40673. },
  40674. paw: {
  40675. height: math.unit(1.8, "feet"),
  40676. name: "Paw",
  40677. image: {
  40678. source: "./media/characters/vivian-sylveon/paw.svg"
  40679. }
  40680. },
  40681. danger: {
  40682. height: math.unit(7.5, "feet"),
  40683. name: "DANGER",
  40684. image: {
  40685. source: "./media/characters/vivian-sylveon/danger.svg"
  40686. }
  40687. },
  40688. },
  40689. [
  40690. {
  40691. name: "Normal",
  40692. height: math.unit(10, "feet"),
  40693. default: true
  40694. },
  40695. {
  40696. name: "Macro",
  40697. height: math.unit(500, "feet")
  40698. },
  40699. {
  40700. name: "Megamacro",
  40701. height: math.unit(600, "miles")
  40702. },
  40703. {
  40704. name: "Gigamacro",
  40705. height: math.unit(30000, "miles")
  40706. },
  40707. ]
  40708. ))
  40709. characterMakers.push(() => makeCharacter(
  40710. { name: "Daiki", species: ["bat", "dragon"], tags: ["anthro" ,"feral"] },
  40711. {
  40712. anthro: {
  40713. height: math.unit(5 + 10/12, "feet"),
  40714. weight: math.unit(100, "lb"),
  40715. name: "Anthro",
  40716. image: {
  40717. source: "./media/characters/daiki/anthro.svg",
  40718. extra: 1115/1027,
  40719. bottom: 69/1184
  40720. }
  40721. },
  40722. feral: {
  40723. height: math.unit(200, "feet"),
  40724. name: "Feral",
  40725. image: {
  40726. source: "./media/characters/daiki/feral.svg",
  40727. extra: 1256/313,
  40728. bottom: 39/1295
  40729. }
  40730. },
  40731. feralHead: {
  40732. height: math.unit(171, "feet"),
  40733. name: "Feral Head",
  40734. image: {
  40735. source: "./media/characters/daiki/feral-head.svg"
  40736. }
  40737. },
  40738. manaDragon: {
  40739. height: math.unit(170, "meters"),
  40740. name: "Mana Dragon",
  40741. image: {
  40742. source: "./media/characters/daiki/mana-dragon.svg",
  40743. extra: 763/420,
  40744. bottom: 97/860
  40745. }
  40746. },
  40747. },
  40748. [
  40749. {
  40750. name: "Normal",
  40751. height: math.unit(5 + 10/12, "feet"),
  40752. default: true
  40753. },
  40754. ]
  40755. ))
  40756. characterMakers.push(() => makeCharacter(
  40757. { name: "Tea Spot", species: ["space-springhare"], tags: ["anthro"] },
  40758. {
  40759. fullyEquippedFront: {
  40760. height: math.unit(3 + 1/12, "feet"),
  40761. weight: math.unit(24, "lb"),
  40762. name: "Fully Equipped (Front)",
  40763. image: {
  40764. source: "./media/characters/tea-spot/fully-equipped-front.svg",
  40765. extra: 687/605,
  40766. bottom: 18/705
  40767. }
  40768. },
  40769. fullyEquippedBack: {
  40770. height: math.unit(3 + 1/12, "feet"),
  40771. weight: math.unit(24, "lb"),
  40772. name: "Fully Equipped (Back)",
  40773. image: {
  40774. source: "./media/characters/tea-spot/fully-equipped-back.svg",
  40775. extra: 689/590,
  40776. bottom: 18/707
  40777. }
  40778. },
  40779. dailyWear: {
  40780. height: math.unit(3 + 1/12, "feet"),
  40781. weight: math.unit(24, "lb"),
  40782. name: "Daily Wear",
  40783. image: {
  40784. source: "./media/characters/tea-spot/daily-wear.svg",
  40785. extra: 701/620,
  40786. bottom: 21/722
  40787. }
  40788. },
  40789. maidWork: {
  40790. height: math.unit(3 + 1/12, "feet"),
  40791. weight: math.unit(24, "lb"),
  40792. name: "Maid Work",
  40793. image: {
  40794. source: "./media/characters/tea-spot/maid-work.svg",
  40795. extra: 693/609,
  40796. bottom: 15/708
  40797. }
  40798. },
  40799. },
  40800. [
  40801. {
  40802. name: "Normal",
  40803. height: math.unit(3 + 1/12, "feet"),
  40804. default: true
  40805. },
  40806. ]
  40807. ))
  40808. characterMakers.push(() => makeCharacter(
  40809. { name: "Chee", species: ["cheetah"], tags: ["anthro"] },
  40810. {
  40811. front: {
  40812. height: math.unit(175, "cm"),
  40813. weight: math.unit(75, "kg"),
  40814. name: "Front",
  40815. image: {
  40816. source: "./media/characters/chee/front.svg",
  40817. extra: 1796/1740,
  40818. bottom: 40/1836
  40819. }
  40820. },
  40821. },
  40822. [
  40823. {
  40824. name: "Micro-Micro",
  40825. height: math.unit(1, "nm")
  40826. },
  40827. {
  40828. name: "Micro-erst",
  40829. height: math.unit(1, "micrometer")
  40830. },
  40831. {
  40832. name: "Micro-er",
  40833. height: math.unit(1, "cm")
  40834. },
  40835. {
  40836. name: "Normal",
  40837. height: math.unit(175, "cm"),
  40838. default: true
  40839. },
  40840. {
  40841. name: "Macro",
  40842. height: math.unit(100, "m")
  40843. },
  40844. {
  40845. name: "Macro-er",
  40846. height: math.unit(1, "km")
  40847. },
  40848. {
  40849. name: "Macro-erst",
  40850. height: math.unit(10, "km")
  40851. },
  40852. {
  40853. name: "Macro-Macro",
  40854. height: math.unit(100, "km")
  40855. },
  40856. ]
  40857. ))
  40858. characterMakers.push(() => makeCharacter(
  40859. { name: "Kingsley", species: ["dragon"], tags: ["anthro"] },
  40860. {
  40861. front: {
  40862. height: math.unit(11 + 9/12, "feet"),
  40863. weight: math.unit(935, "lb"),
  40864. name: "Front",
  40865. image: {
  40866. source: "./media/characters/kingsley/front.svg",
  40867. extra: 1803/1674,
  40868. bottom: 127/1930
  40869. }
  40870. },
  40871. frontNude: {
  40872. height: math.unit(11 + 9/12, "feet"),
  40873. weight: math.unit(935, "lb"),
  40874. name: "Front (Nude)",
  40875. image: {
  40876. source: "./media/characters/kingsley/front-nude.svg",
  40877. extra: 1803/1674,
  40878. bottom: 127/1930
  40879. }
  40880. },
  40881. },
  40882. [
  40883. {
  40884. name: "Normal",
  40885. height: math.unit(11 + 9/12, "feet"),
  40886. default: true
  40887. },
  40888. ]
  40889. ))
  40890. characterMakers.push(() => makeCharacter(
  40891. { name: "Rymel", species: ["river-drake"], tags: ["feral"] },
  40892. {
  40893. side: {
  40894. height: math.unit(9, "feet"),
  40895. name: "Side",
  40896. image: {
  40897. source: "./media/characters/rymel/side.svg",
  40898. extra: 792/469,
  40899. bottom: 121/913
  40900. }
  40901. },
  40902. maw: {
  40903. height: math.unit(2.4, "meters"),
  40904. name: "Maw",
  40905. image: {
  40906. source: "./media/characters/rymel/maw.svg"
  40907. }
  40908. },
  40909. },
  40910. [
  40911. {
  40912. name: "House Drake",
  40913. height: math.unit(2, "feet")
  40914. },
  40915. {
  40916. name: "Reduced",
  40917. height: math.unit(4.5, "feet")
  40918. },
  40919. {
  40920. name: "Normal",
  40921. height: math.unit(9, "feet"),
  40922. default: true
  40923. },
  40924. ]
  40925. ))
  40926. characterMakers.push(() => makeCharacter(
  40927. { name: "Rubus", species: ["plant", "dragon", "construct"], tags: ["anthro"] },
  40928. {
  40929. front: {
  40930. height: math.unit(1.74, "meters"),
  40931. weight: math.unit(55, "kg"),
  40932. name: "Front",
  40933. image: {
  40934. source: "./media/characters/rubus/front.svg",
  40935. extra: 1894/1742,
  40936. bottom: 44/1938
  40937. }
  40938. },
  40939. },
  40940. [
  40941. {
  40942. name: "Normal",
  40943. height: math.unit(1.74, "meters"),
  40944. default: true
  40945. },
  40946. ]
  40947. ))
  40948. characterMakers.push(() => makeCharacter(
  40949. { name: "Cassie Kingston", species: ["border-collie"], tags: ["anthro"] },
  40950. {
  40951. front: {
  40952. height: math.unit(5 + 2/12, "feet"),
  40953. weight: math.unit(112, "lb"),
  40954. name: "Front",
  40955. image: {
  40956. source: "./media/characters/cassie-kingston/front.svg",
  40957. extra: 1438/1390,
  40958. bottom: 47/1485
  40959. }
  40960. },
  40961. },
  40962. [
  40963. {
  40964. name: "Normal",
  40965. height: math.unit(5 + 2/12, "feet"),
  40966. default: true
  40967. },
  40968. {
  40969. name: "Macro",
  40970. height: math.unit(128, "feet")
  40971. },
  40972. {
  40973. name: "Megamacro",
  40974. height: math.unit(2.56, "miles")
  40975. },
  40976. ]
  40977. ))
  40978. characterMakers.push(() => makeCharacter(
  40979. { name: "Fox", species: ["fox"], tags: ["anthro"] },
  40980. {
  40981. front: {
  40982. height: math.unit(7, "feet"),
  40983. name: "Front",
  40984. image: {
  40985. source: "./media/characters/fox/front.svg",
  40986. extra: 1798/1703,
  40987. bottom: 55/1853
  40988. }
  40989. },
  40990. back: {
  40991. height: math.unit(7, "feet"),
  40992. name: "Back",
  40993. image: {
  40994. source: "./media/characters/fox/back.svg",
  40995. extra: 1748/1649,
  40996. bottom: 32/1780
  40997. }
  40998. },
  40999. head: {
  41000. height: math.unit(1.95, "feet"),
  41001. name: "Head",
  41002. image: {
  41003. source: "./media/characters/fox/head.svg"
  41004. }
  41005. },
  41006. dick: {
  41007. height: math.unit(1.33, "feet"),
  41008. name: "Dick",
  41009. image: {
  41010. source: "./media/characters/fox/dick.svg"
  41011. }
  41012. },
  41013. foot: {
  41014. height: math.unit(1, "feet"),
  41015. name: "Foot",
  41016. image: {
  41017. source: "./media/characters/fox/foot.svg"
  41018. }
  41019. },
  41020. paw: {
  41021. height: math.unit(0.92, "feet"),
  41022. name: "Paw",
  41023. image: {
  41024. source: "./media/characters/fox/paw.svg"
  41025. }
  41026. },
  41027. },
  41028. [
  41029. {
  41030. name: "Small",
  41031. height: math.unit(3, "inches")
  41032. },
  41033. {
  41034. name: "\"Realistic\"",
  41035. height: math.unit(7, "feet")
  41036. },
  41037. {
  41038. name: "Normal",
  41039. height: math.unit(150, "feet"),
  41040. default: true
  41041. },
  41042. {
  41043. name: "BIG",
  41044. height: math.unit(1200, "feet")
  41045. },
  41046. {
  41047. name: "👀",
  41048. height: math.unit(5, "miles")
  41049. },
  41050. {
  41051. name: "👀👀👀",
  41052. height: math.unit(64, "miles")
  41053. },
  41054. ]
  41055. ))
  41056. characterMakers.push(() => makeCharacter(
  41057. { name: "Asonja Rossa", species: ["wolf", "dragon"], tags: ["anthro"] },
  41058. {
  41059. front: {
  41060. height: math.unit(625, "feet"),
  41061. name: "Front",
  41062. image: {
  41063. source: "./media/characters/asonja-rossa/front.svg",
  41064. extra: 1833/1686,
  41065. bottom: 24/1857
  41066. }
  41067. },
  41068. back: {
  41069. height: math.unit(625, "feet"),
  41070. name: "Back",
  41071. image: {
  41072. source: "./media/characters/asonja-rossa/back.svg",
  41073. extra: 1852/1753,
  41074. bottom: 26/1878
  41075. }
  41076. },
  41077. },
  41078. [
  41079. {
  41080. name: "Macro",
  41081. height: math.unit(625, "feet"),
  41082. default: true
  41083. },
  41084. ]
  41085. ))
  41086. characterMakers.push(() => makeCharacter(
  41087. { name: "Rezukii", species: ["dragon"], tags: ["feral"] },
  41088. {
  41089. side: {
  41090. height: math.unit(8, "feet"),
  41091. name: "Side",
  41092. image: {
  41093. source: "./media/characters/rezukii/side.svg",
  41094. extra: 979/542,
  41095. bottom: 87/1066
  41096. }
  41097. },
  41098. sitting: {
  41099. height: math.unit(14.6, "feet"),
  41100. name: "Sitting",
  41101. image: {
  41102. source: "./media/characters/rezukii/sitting.svg",
  41103. extra: 1023/813,
  41104. bottom: 45/1068
  41105. }
  41106. },
  41107. },
  41108. [
  41109. {
  41110. name: "Tiny",
  41111. height: math.unit(2, "feet")
  41112. },
  41113. {
  41114. name: "Smol",
  41115. height: math.unit(4, "feet")
  41116. },
  41117. {
  41118. name: "Normal",
  41119. height: math.unit(8, "feet"),
  41120. default: true
  41121. },
  41122. {
  41123. name: "Big",
  41124. height: math.unit(12, "feet")
  41125. },
  41126. {
  41127. name: "Macro",
  41128. height: math.unit(30, "feet")
  41129. },
  41130. ]
  41131. ))
  41132. characterMakers.push(() => makeCharacter(
  41133. { name: "Dawnheart", species: ["horse"], tags: ["anthro"] },
  41134. {
  41135. front: {
  41136. height: math.unit(14, "feet"),
  41137. weight: math.unit(9.5, "tonnes"),
  41138. name: "Front",
  41139. image: {
  41140. source: "./media/characters/dawnheart/front.svg",
  41141. extra: 2792/2675,
  41142. bottom: 64/2856
  41143. }
  41144. },
  41145. },
  41146. [
  41147. {
  41148. name: "Normal",
  41149. height: math.unit(14, "feet"),
  41150. default: true
  41151. },
  41152. ]
  41153. ))
  41154. characterMakers.push(() => makeCharacter(
  41155. { name: "Gladi", species: ["cat" ,"dragon"], tags: ["anthro", "feral"] },
  41156. {
  41157. front: {
  41158. height: math.unit(1.7, "m"),
  41159. name: "Front",
  41160. image: {
  41161. source: "./media/characters/gladi/front.svg",
  41162. extra: 1460/1362,
  41163. bottom: 19/1479
  41164. }
  41165. },
  41166. back: {
  41167. height: math.unit(1.7, "m"),
  41168. name: "Back",
  41169. image: {
  41170. source: "./media/characters/gladi/back.svg",
  41171. extra: 1459/1357,
  41172. bottom: 12/1471
  41173. }
  41174. },
  41175. feral: {
  41176. height: math.unit(2.05, "m"),
  41177. name: "Feral",
  41178. image: {
  41179. source: "./media/characters/gladi/feral.svg",
  41180. extra: 821/557,
  41181. bottom: 91/912
  41182. }
  41183. },
  41184. },
  41185. [
  41186. {
  41187. name: "Shortest",
  41188. height: math.unit(70, "cm")
  41189. },
  41190. {
  41191. name: "Normal",
  41192. height: math.unit(1.7, "m")
  41193. },
  41194. {
  41195. name: "Macro",
  41196. height: math.unit(10, "m"),
  41197. default: true
  41198. },
  41199. {
  41200. name: "Tallest",
  41201. height: math.unit(200, "m")
  41202. },
  41203. ]
  41204. ))
  41205. characterMakers.push(() => makeCharacter(
  41206. { name: "Erdno", species: ["mouse", "djinn"], tags: ["anthro"] },
  41207. {
  41208. front: {
  41209. height: math.unit(5 + 7/12, "feet"),
  41210. weight: math.unit(2, "tons"),
  41211. name: "Front",
  41212. image: {
  41213. source: "./media/characters/erdno/front.svg",
  41214. extra: 1234/1129,
  41215. bottom: 35/1269
  41216. }
  41217. },
  41218. angled: {
  41219. height: math.unit(5 + 7/12, "feet"),
  41220. weight: math.unit(2, "tons"),
  41221. name: "Angled",
  41222. image: {
  41223. source: "./media/characters/erdno/angled.svg",
  41224. extra: 1185/1139,
  41225. bottom: 36/1221
  41226. }
  41227. },
  41228. side: {
  41229. height: math.unit(5 + 7/12, "feet"),
  41230. weight: math.unit(2, "tons"),
  41231. name: "Side",
  41232. image: {
  41233. source: "./media/characters/erdno/side.svg",
  41234. extra: 1191/1144,
  41235. bottom: 40/1231
  41236. }
  41237. },
  41238. back: {
  41239. height: math.unit(5 + 7/12, "feet"),
  41240. weight: math.unit(2, "tons"),
  41241. name: "Back",
  41242. image: {
  41243. source: "./media/characters/erdno/back.svg",
  41244. extra: 1202/1146,
  41245. bottom: 17/1219
  41246. }
  41247. },
  41248. frontNsfw: {
  41249. height: math.unit(5 + 7/12, "feet"),
  41250. weight: math.unit(2, "tons"),
  41251. name: "Front (NSFW)",
  41252. image: {
  41253. source: "./media/characters/erdno/front-nsfw.svg",
  41254. extra: 1234/1129,
  41255. bottom: 35/1269
  41256. }
  41257. },
  41258. angledNsfw: {
  41259. height: math.unit(5 + 7/12, "feet"),
  41260. weight: math.unit(2, "tons"),
  41261. name: "Angled (NSFW)",
  41262. image: {
  41263. source: "./media/characters/erdno/angled-nsfw.svg",
  41264. extra: 1185/1139,
  41265. bottom: 36/1221
  41266. }
  41267. },
  41268. sideNsfw: {
  41269. height: math.unit(5 + 7/12, "feet"),
  41270. weight: math.unit(2, "tons"),
  41271. name: "Side (NSFW)",
  41272. image: {
  41273. source: "./media/characters/erdno/side-nsfw.svg",
  41274. extra: 1191/1144,
  41275. bottom: 40/1231
  41276. }
  41277. },
  41278. backNsfw: {
  41279. height: math.unit(5 + 7/12, "feet"),
  41280. weight: math.unit(2, "tons"),
  41281. name: "Back (NSFW)",
  41282. image: {
  41283. source: "./media/characters/erdno/back-nsfw.svg",
  41284. extra: 1202/1146,
  41285. bottom: 17/1219
  41286. }
  41287. },
  41288. frontHyper: {
  41289. height: math.unit(5 + 7/12, "feet"),
  41290. weight: math.unit(2, "tons"),
  41291. name: "Front (Hyper)",
  41292. image: {
  41293. source: "./media/characters/erdno/front-hyper.svg",
  41294. extra: 1298/1136,
  41295. bottom: 35/1333
  41296. }
  41297. },
  41298. },
  41299. [
  41300. {
  41301. name: "Normal",
  41302. height: math.unit(5 + 7/12, "feet"),
  41303. default: true
  41304. },
  41305. {
  41306. name: "Big",
  41307. height: math.unit(5.7, "meters")
  41308. },
  41309. {
  41310. name: "Macro",
  41311. height: math.unit(5.7, "kilometers")
  41312. },
  41313. {
  41314. name: "Megamacro",
  41315. height: math.unit(5.7, "earths")
  41316. },
  41317. ]
  41318. ))
  41319. characterMakers.push(() => makeCharacter(
  41320. { name: "Jamie", species: ["fox"], tags: ["anthro"] },
  41321. {
  41322. front: {
  41323. height: math.unit(5 + 10/12, "feet"),
  41324. weight: math.unit(150, "lb"),
  41325. name: "Front",
  41326. image: {
  41327. source: "./media/characters/jamie/front.svg",
  41328. extra: 1908/1768,
  41329. bottom: 19/1927
  41330. }
  41331. },
  41332. },
  41333. [
  41334. {
  41335. name: "Minimum",
  41336. height: math.unit(2, "cm")
  41337. },
  41338. {
  41339. name: "Micro",
  41340. height: math.unit(3, "inches")
  41341. },
  41342. {
  41343. name: "Normal",
  41344. height: math.unit(5 + 10/12, "feet"),
  41345. default: true
  41346. },
  41347. {
  41348. name: "Macro",
  41349. height: math.unit(150, "feet")
  41350. },
  41351. {
  41352. name: "Megamacro",
  41353. height: math.unit(10000, "m")
  41354. },
  41355. ]
  41356. ))
  41357. characterMakers.push(() => makeCharacter(
  41358. { name: "Shiron", species: ["wolf"], tags: ["anthro"] },
  41359. {
  41360. front: {
  41361. height: math.unit(2, "meters"),
  41362. weight: math.unit(100, "kg"),
  41363. name: "Front",
  41364. image: {
  41365. source: "./media/characters/shiron/front.svg",
  41366. extra: 2103/1985,
  41367. bottom: 98/2201
  41368. }
  41369. },
  41370. back: {
  41371. height: math.unit(2, "meters"),
  41372. weight: math.unit(100, "kg"),
  41373. name: "Back",
  41374. image: {
  41375. source: "./media/characters/shiron/back.svg",
  41376. extra: 2110/2015,
  41377. bottom: 89/2199
  41378. }
  41379. },
  41380. hand: {
  41381. height: math.unit(0.96, "feet"),
  41382. name: "Hand",
  41383. image: {
  41384. source: "./media/characters/shiron/hand.svg"
  41385. }
  41386. },
  41387. foot: {
  41388. height: math.unit(1.464, "feet"),
  41389. name: "Foot",
  41390. image: {
  41391. source: "./media/characters/shiron/foot.svg"
  41392. }
  41393. },
  41394. },
  41395. [
  41396. {
  41397. name: "Normal",
  41398. height: math.unit(2, "meters")
  41399. },
  41400. {
  41401. name: "Macro",
  41402. height: math.unit(500, "meters"),
  41403. default: true
  41404. },
  41405. {
  41406. name: "Megamacro",
  41407. height: math.unit(20, "km")
  41408. },
  41409. ]
  41410. ))
  41411. characterMakers.push(() => makeCharacter(
  41412. { name: "Sam", species: ["red-panda"], tags: ["anthro"] },
  41413. {
  41414. front: {
  41415. height: math.unit(6, "feet"),
  41416. name: "Front",
  41417. image: {
  41418. source: "./media/characters/sam/front.svg",
  41419. extra: 849/826,
  41420. bottom: 19/868
  41421. }
  41422. },
  41423. },
  41424. [
  41425. {
  41426. name: "Normal",
  41427. height: math.unit(6, "feet"),
  41428. default: true
  41429. },
  41430. ]
  41431. ))
  41432. characterMakers.push(() => makeCharacter(
  41433. { name: "Namori Kurogawa", species: ["fox"], tags: ["anthro"] },
  41434. {
  41435. front: {
  41436. height: math.unit(8 + 4/12, "feet"),
  41437. weight: math.unit(122, "kg"),
  41438. name: "Front",
  41439. image: {
  41440. source: "./media/characters/namori-kurogawa/front.svg",
  41441. extra: 1894/1576,
  41442. bottom: 34/1928
  41443. }
  41444. },
  41445. },
  41446. [
  41447. {
  41448. name: "Normal",
  41449. height: math.unit(8 + 4/12, "feet"),
  41450. default: true
  41451. },
  41452. ]
  41453. ))
  41454. characterMakers.push(() => makeCharacter(
  41455. { name: "Unmru", species: ["horse", "demon"], tags: ["anthro"] },
  41456. {
  41457. front: {
  41458. height: math.unit(9, "feet"),
  41459. weight: math.unit(621, "lb"),
  41460. name: "Front",
  41461. image: {
  41462. source: "./media/characters/unmru/front.svg",
  41463. extra: 1853/1747,
  41464. bottom: 73/1926
  41465. }
  41466. },
  41467. side: {
  41468. height: math.unit(9, "feet"),
  41469. weight: math.unit(621, "lb"),
  41470. name: "Side",
  41471. image: {
  41472. source: "./media/characters/unmru/side.svg",
  41473. extra: 1781/1671,
  41474. bottom: 127/1908
  41475. }
  41476. },
  41477. back: {
  41478. height: math.unit(9, "feet"),
  41479. weight: math.unit(621, "lb"),
  41480. name: "Back",
  41481. image: {
  41482. source: "./media/characters/unmru/back.svg",
  41483. extra: 1894/1765,
  41484. bottom: 75/1969
  41485. }
  41486. },
  41487. dick: {
  41488. height: math.unit(3, "feet"),
  41489. weight: math.unit(35, "lb"),
  41490. name: "Dick",
  41491. image: {
  41492. source: "./media/characters/unmru/dick.svg"
  41493. }
  41494. },
  41495. },
  41496. [
  41497. {
  41498. name: "Normal",
  41499. height: math.unit(9, "feet")
  41500. },
  41501. {
  41502. name: "Natural",
  41503. height: math.unit(27, "feet"),
  41504. default: true
  41505. },
  41506. {
  41507. name: "Giant",
  41508. height: math.unit(90, "feet")
  41509. },
  41510. {
  41511. name: "Kaiju",
  41512. height: math.unit(270, "feet")
  41513. },
  41514. {
  41515. name: "Macro",
  41516. height: math.unit(900, "feet")
  41517. },
  41518. {
  41519. name: "Macro+",
  41520. height: math.unit(2700, "feet")
  41521. },
  41522. {
  41523. name: "Megamacro",
  41524. height: math.unit(9000, "feet")
  41525. },
  41526. {
  41527. name: "City-Crushing",
  41528. height: math.unit(27000, "feet")
  41529. },
  41530. {
  41531. name: "Mountain-Mashing",
  41532. height: math.unit(90000, "feet")
  41533. },
  41534. {
  41535. name: "Earth-Eclipsing",
  41536. height: math.unit(2.7e8, "feet")
  41537. },
  41538. {
  41539. name: "Sol-Swallowing",
  41540. height: math.unit(9e10, "feet")
  41541. },
  41542. {
  41543. name: "Majoris-Munching",
  41544. height: math.unit(2.7e13, "feet")
  41545. },
  41546. ]
  41547. ))
  41548. characterMakers.push(() => makeCharacter(
  41549. { name: "Squeaks (Mouse)", species: ["grasshopper-mouse"], tags: ["feral"] },
  41550. {
  41551. front: {
  41552. height: math.unit(1, "inch"),
  41553. name: "Front",
  41554. image: {
  41555. source: "./media/characters/squeaks-mouse/front.svg",
  41556. extra: 352/308,
  41557. bottom: 25/377
  41558. }
  41559. },
  41560. },
  41561. [
  41562. {
  41563. name: "Micro",
  41564. height: math.unit(1, "inch"),
  41565. default: true
  41566. },
  41567. ]
  41568. ))
  41569. characterMakers.push(() => makeCharacter(
  41570. { name: "Sayko", species: ["dragon"], tags: ["feral"] },
  41571. {
  41572. side: {
  41573. height: math.unit(35, "feet"),
  41574. name: "Side",
  41575. image: {
  41576. source: "./media/characters/sayko/side.svg",
  41577. extra: 1697/1021,
  41578. bottom: 82/1779
  41579. }
  41580. },
  41581. head: {
  41582. height: math.unit(16, "feet"),
  41583. name: "Head",
  41584. image: {
  41585. source: "./media/characters/sayko/head.svg"
  41586. }
  41587. },
  41588. forepaw: {
  41589. height: math.unit(7.85, "feet"),
  41590. name: "Forepaw",
  41591. image: {
  41592. source: "./media/characters/sayko/forepaw.svg"
  41593. }
  41594. },
  41595. hindpaw: {
  41596. height: math.unit(8.8, "feet"),
  41597. name: "Hindpaw",
  41598. image: {
  41599. source: "./media/characters/sayko/hindpaw.svg"
  41600. }
  41601. },
  41602. },
  41603. [
  41604. {
  41605. name: "Normal",
  41606. height: math.unit(35, "feet"),
  41607. default: true
  41608. },
  41609. {
  41610. name: "Colossus",
  41611. height: math.unit(100, "meters")
  41612. },
  41613. {
  41614. name: "\"Small\" Deity",
  41615. height: math.unit(1, "km")
  41616. },
  41617. {
  41618. name: "\"Large\" Deity",
  41619. height: math.unit(15, "km")
  41620. },
  41621. ]
  41622. ))
  41623. characterMakers.push(() => makeCharacter(
  41624. { name: "Mukiro", species: ["somali-cat"], tags: ["anthro"] },
  41625. {
  41626. front: {
  41627. height: math.unit(6, "feet"),
  41628. weight: math.unit(250, "lb"),
  41629. name: "Front",
  41630. image: {
  41631. source: "./media/characters/mukiro/front.svg",
  41632. extra: 1368/1310,
  41633. bottom: 34/1402
  41634. }
  41635. },
  41636. },
  41637. [
  41638. {
  41639. name: "Normal",
  41640. height: math.unit(6, "feet"),
  41641. default: true
  41642. },
  41643. ]
  41644. ))
  41645. characterMakers.push(() => makeCharacter(
  41646. { name: "Zeph the Tiger God", species: ["deity"], tags: ["anthro"] },
  41647. {
  41648. front: {
  41649. height: math.unit(12 + 4/12, "feet"),
  41650. name: "Front",
  41651. image: {
  41652. source: "./media/characters/zeph-the-tiger-god/front.svg",
  41653. extra: 1346/1311,
  41654. bottom: 65/1411
  41655. }
  41656. },
  41657. },
  41658. [
  41659. {
  41660. name: "Base",
  41661. height: math.unit(12 + 4/12, "feet"),
  41662. default: true
  41663. },
  41664. {
  41665. name: "Macro",
  41666. height: math.unit(150, "feet")
  41667. },
  41668. {
  41669. name: "Mega",
  41670. height: math.unit(2, "miles")
  41671. },
  41672. {
  41673. name: "Demi God",
  41674. height: math.unit(4, "AU")
  41675. },
  41676. {
  41677. name: "God Size",
  41678. height: math.unit(1, "universe")
  41679. },
  41680. ]
  41681. ))
  41682. characterMakers.push(() => makeCharacter(
  41683. { name: "Trey", species: ["minccino"], tags: ["anthro"] },
  41684. {
  41685. front: {
  41686. height: math.unit(3 + 3/12, "feet"),
  41687. weight: math.unit(88, "lb"),
  41688. name: "Front",
  41689. image: {
  41690. source: "./media/characters/trey/front.svg",
  41691. extra: 1815/1509,
  41692. bottom: 60/1875
  41693. }
  41694. },
  41695. },
  41696. [
  41697. {
  41698. name: "Normal",
  41699. height: math.unit(3 + 3/12, "feet"),
  41700. default: true
  41701. },
  41702. ]
  41703. ))
  41704. characterMakers.push(() => makeCharacter(
  41705. { name: "Adelonda", species: ["dragon"], tags: ["anthro", "feral"] },
  41706. {
  41707. front: {
  41708. height: math.unit(4, "meters"),
  41709. name: "Front",
  41710. image: {
  41711. source: "./media/characters/adelonda/front.svg",
  41712. extra: 1077/982,
  41713. bottom: 39/1116
  41714. }
  41715. },
  41716. back: {
  41717. height: math.unit(4, "meters"),
  41718. name: "Back",
  41719. image: {
  41720. source: "./media/characters/adelonda/back.svg",
  41721. extra: 1105/1003,
  41722. bottom: 25/1130
  41723. }
  41724. },
  41725. feral: {
  41726. height: math.unit(40/1.5, "meters"),
  41727. name: "Feral",
  41728. image: {
  41729. source: "./media/characters/adelonda/feral.svg",
  41730. extra: 597/271,
  41731. bottom: 387/984
  41732. }
  41733. },
  41734. },
  41735. [
  41736. {
  41737. name: "Normal",
  41738. height: math.unit(4, "meters"),
  41739. default: true
  41740. },
  41741. ]
  41742. ))
  41743. characterMakers.push(() => makeCharacter(
  41744. { name: "Acadiel", species: ["dragon"], tags: ["anthro"] },
  41745. {
  41746. front: {
  41747. height: math.unit(8 + 4/12, "feet"),
  41748. weight: math.unit(670, "lb"),
  41749. name: "Front",
  41750. image: {
  41751. source: "./media/characters/acadiel/front.svg",
  41752. extra: 1901/1595,
  41753. bottom: 142/2043
  41754. }
  41755. },
  41756. },
  41757. [
  41758. {
  41759. name: "Normal",
  41760. height: math.unit(8 + 4/12, "feet"),
  41761. default: true
  41762. },
  41763. {
  41764. name: "Macro",
  41765. height: math.unit(200, "feet")
  41766. },
  41767. ]
  41768. ))
  41769. characterMakers.push(() => makeCharacter(
  41770. { name: "Kayne Ein", species: ["dragon", "wolf"], tags: ["anthro"] },
  41771. {
  41772. front: {
  41773. height: math.unit(6 + 2/12, "feet"),
  41774. weight: math.unit(185, "lb"),
  41775. name: "Front",
  41776. image: {
  41777. source: "./media/characters/kayne-ein/front.svg",
  41778. extra: 1780/1560,
  41779. bottom: 81/1861
  41780. }
  41781. },
  41782. },
  41783. [
  41784. {
  41785. name: "Normal",
  41786. height: math.unit(6 + 2/12, "feet"),
  41787. default: true
  41788. },
  41789. {
  41790. name: "Transformation Stage",
  41791. height: math.unit(15, "feet")
  41792. },
  41793. {
  41794. name: "Macro",
  41795. height: math.unit(150, "feet")
  41796. },
  41797. {
  41798. name: "Earth's Shadow",
  41799. height: math.unit(6200, "miles")
  41800. },
  41801. {
  41802. name: "Universal Demon",
  41803. height: math.unit(28e9, "parsecs")
  41804. },
  41805. {
  41806. name: "Multiverse God",
  41807. height: math.unit(3, "multiverses")
  41808. },
  41809. ]
  41810. ))
  41811. characterMakers.push(() => makeCharacter(
  41812. { name: "Fawn", species: ["deer"], tags: ["anthro"] },
  41813. {
  41814. front: {
  41815. height: math.unit(5 + 5/12, "feet"),
  41816. name: "Front",
  41817. image: {
  41818. source: "./media/characters/fawn/front.svg",
  41819. extra: 1873/1731,
  41820. bottom: 95/1968
  41821. }
  41822. },
  41823. back: {
  41824. height: math.unit(5 + 5/12, "feet"),
  41825. name: "Back",
  41826. image: {
  41827. source: "./media/characters/fawn/back.svg",
  41828. extra: 1813/1700,
  41829. bottom: 14/1827
  41830. }
  41831. },
  41832. hoof: {
  41833. height: math.unit(1.45, "feet"),
  41834. name: "Hoof",
  41835. image: {
  41836. source: "./media/characters/fawn/hoof.svg"
  41837. }
  41838. },
  41839. },
  41840. [
  41841. {
  41842. name: "Normal",
  41843. height: math.unit(5 + 5/12, "feet"),
  41844. default: true
  41845. },
  41846. ]
  41847. ))
  41848. characterMakers.push(() => makeCharacter(
  41849. { name: "Orion", species: ["pine-marten"], tags: ["anthro"] },
  41850. {
  41851. front: {
  41852. height: math.unit(2 + 5/12, "feet"),
  41853. name: "Front",
  41854. image: {
  41855. source: "./media/characters/orion/front.svg",
  41856. extra: 1366/1304,
  41857. bottom: 43/1409
  41858. }
  41859. },
  41860. paw: {
  41861. height: math.unit(0.52, "feet"),
  41862. name: "Paw",
  41863. image: {
  41864. source: "./media/characters/orion/paw.svg"
  41865. }
  41866. },
  41867. },
  41868. [
  41869. {
  41870. name: "Normal",
  41871. height: math.unit(2 + 5/12, "feet"),
  41872. default: true
  41873. },
  41874. ]
  41875. ))
  41876. characterMakers.push(() => makeCharacter(
  41877. { name: "Vera", species: ["husky", "arcanine"], tags: ["anthro"] },
  41878. {
  41879. front: {
  41880. height: math.unit(5 + 10/12, "feet"),
  41881. name: "Front",
  41882. image: {
  41883. source: "./media/characters/vera/front.svg",
  41884. extra: 1680/1575,
  41885. bottom: 49/1729
  41886. }
  41887. },
  41888. back: {
  41889. height: math.unit(5 + 10/12, "feet"),
  41890. name: "Back",
  41891. image: {
  41892. source: "./media/characters/vera/back.svg",
  41893. extra: 1700/1588,
  41894. bottom: 18/1718
  41895. }
  41896. },
  41897. arcanine: {
  41898. height: math.unit(6 + 8/12, "feet"),
  41899. name: "Arcanine",
  41900. image: {
  41901. source: "./media/characters/vera/arcanine.svg",
  41902. extra: 1590/1511,
  41903. bottom: 71/1661
  41904. }
  41905. },
  41906. maw: {
  41907. height: math.unit(0.82, "feet"),
  41908. name: "Maw",
  41909. image: {
  41910. source: "./media/characters/vera/maw.svg"
  41911. }
  41912. },
  41913. mawArcanine: {
  41914. height: math.unit(0.97, "feet"),
  41915. name: "Maw (Arcanine)",
  41916. image: {
  41917. source: "./media/characters/vera/maw-arcanine.svg"
  41918. }
  41919. },
  41920. paw: {
  41921. height: math.unit(0.75, "feet"),
  41922. name: "Paw",
  41923. image: {
  41924. source: "./media/characters/vera/paw.svg"
  41925. }
  41926. },
  41927. pawprint: {
  41928. height: math.unit(0.52, "feet"),
  41929. name: "Pawprint",
  41930. image: {
  41931. source: "./media/characters/vera/pawprint.svg"
  41932. }
  41933. },
  41934. },
  41935. [
  41936. {
  41937. name: "Normal",
  41938. height: math.unit(5 + 10/12, "feet"),
  41939. default: true
  41940. },
  41941. {
  41942. name: "Macro",
  41943. height: math.unit(75, "feet")
  41944. },
  41945. ]
  41946. ))
  41947. characterMakers.push(() => makeCharacter(
  41948. { name: "Orvan Rabbit", species: ["rabbit"], tags: ["anthro"] },
  41949. {
  41950. front: {
  41951. height: math.unit(4, "feet"),
  41952. weight: math.unit(40, "lb"),
  41953. name: "Front",
  41954. image: {
  41955. source: "./media/characters/orvan-rabbit/front.svg",
  41956. extra: 1896/1642,
  41957. bottom: 29/1925
  41958. }
  41959. },
  41960. },
  41961. [
  41962. {
  41963. name: "Normal",
  41964. height: math.unit(4, "feet"),
  41965. default: true
  41966. },
  41967. ]
  41968. ))
  41969. characterMakers.push(() => makeCharacter(
  41970. { name: "Lisa", species: ["fox", "deity", "caribou", "kitsune"], tags: ["anthro"] },
  41971. {
  41972. front: {
  41973. height: math.unit(6, "feet"),
  41974. weight: math.unit(168, "lb"),
  41975. name: "Front",
  41976. image: {
  41977. source: "./media/characters/lisa/front.svg",
  41978. extra: 2065/1867,
  41979. bottom: 46/2111
  41980. }
  41981. },
  41982. back: {
  41983. height: math.unit(6, "feet"),
  41984. weight: math.unit(168, "lb"),
  41985. name: "Back",
  41986. image: {
  41987. source: "./media/characters/lisa/back.svg",
  41988. extra: 1982/1838,
  41989. bottom: 29/2011
  41990. }
  41991. },
  41992. maw: {
  41993. height: math.unit(0.81, "feet"),
  41994. name: "Maw",
  41995. image: {
  41996. source: "./media/characters/lisa/maw.svg"
  41997. }
  41998. },
  41999. paw: {
  42000. height: math.unit(0.9, "feet"),
  42001. name: "Paw",
  42002. image: {
  42003. source: "./media/characters/lisa/paw.svg"
  42004. }
  42005. },
  42006. caribousune: {
  42007. height: math.unit(7 + 2/12, "feet"),
  42008. weight: math.unit(268, "lb"),
  42009. name: "Caribousune",
  42010. image: {
  42011. source: "./media/characters/lisa/caribousune.svg",
  42012. extra: 1843/1633,
  42013. bottom: 29/1872
  42014. }
  42015. },
  42016. frontCaribousune: {
  42017. height: math.unit(7 + 2/12, "feet"),
  42018. weight: math.unit(268, "lb"),
  42019. name: "Front (Caribousune)",
  42020. image: {
  42021. source: "./media/characters/lisa/front-caribousune.svg",
  42022. extra: 1818/1638,
  42023. bottom: 52/1870
  42024. }
  42025. },
  42026. sideCaribousune: {
  42027. height: math.unit(7 + 2/12, "feet"),
  42028. weight: math.unit(268, "lb"),
  42029. name: "Side (Caribousune)",
  42030. image: {
  42031. source: "./media/characters/lisa/side-caribousune.svg",
  42032. extra: 1851/1635,
  42033. bottom: 16/1867
  42034. }
  42035. },
  42036. backCaribousune: {
  42037. height: math.unit(7 + 2/12, "feet"),
  42038. weight: math.unit(268, "lb"),
  42039. name: "Back (Caribousune)",
  42040. image: {
  42041. source: "./media/characters/lisa/back-caribousune.svg",
  42042. extra: 1801/1604,
  42043. bottom: 44/1845
  42044. }
  42045. },
  42046. caribou: {
  42047. height: math.unit(7 + 2/12, "feet"),
  42048. weight: math.unit(268, "lb"),
  42049. name: "Caribou",
  42050. image: {
  42051. source: "./media/characters/lisa/caribou.svg",
  42052. extra: 1843/1633,
  42053. bottom: 29/1872
  42054. }
  42055. },
  42056. frontCaribou: {
  42057. height: math.unit(7 + 2/12, "feet"),
  42058. weight: math.unit(268, "lb"),
  42059. name: "Front (Caribou)",
  42060. image: {
  42061. source: "./media/characters/lisa/front-caribou.svg",
  42062. extra: 1818/1638,
  42063. bottom: 52/1870
  42064. }
  42065. },
  42066. sideCaribou: {
  42067. height: math.unit(7 + 2/12, "feet"),
  42068. weight: math.unit(268, "lb"),
  42069. name: "Side (Caribou)",
  42070. image: {
  42071. source: "./media/characters/lisa/side-caribou.svg",
  42072. extra: 1851/1635,
  42073. bottom: 16/1867
  42074. }
  42075. },
  42076. backCaribou: {
  42077. height: math.unit(7 + 2/12, "feet"),
  42078. weight: math.unit(268, "lb"),
  42079. name: "Back (Caribou)",
  42080. image: {
  42081. source: "./media/characters/lisa/back-caribou.svg",
  42082. extra: 1801/1604,
  42083. bottom: 44/1845
  42084. }
  42085. },
  42086. mawCaribou: {
  42087. height: math.unit(1.45, "feet"),
  42088. name: "Maw (Caribou)",
  42089. image: {
  42090. source: "./media/characters/lisa/maw-caribou.svg"
  42091. }
  42092. },
  42093. mawCaribousune: {
  42094. height: math.unit(1.45, "feet"),
  42095. name: "Maw (Caribousune)",
  42096. image: {
  42097. source: "./media/characters/lisa/maw-caribousune.svg"
  42098. }
  42099. },
  42100. pawCaribousune: {
  42101. height: math.unit(1.61, "feet"),
  42102. name: "Paw (Caribou)",
  42103. image: {
  42104. source: "./media/characters/lisa/paw-caribousune.svg"
  42105. }
  42106. },
  42107. },
  42108. [
  42109. {
  42110. name: "Normal",
  42111. height: math.unit(6, "feet")
  42112. },
  42113. {
  42114. name: "God Size",
  42115. height: math.unit(72, "feet"),
  42116. default: true
  42117. },
  42118. {
  42119. name: "Towering",
  42120. height: math.unit(288, "feet")
  42121. },
  42122. {
  42123. name: "City Size",
  42124. height: math.unit(48384, "feet")
  42125. },
  42126. {
  42127. name: "Continental",
  42128. height: math.unit(4200, "miles")
  42129. },
  42130. {
  42131. name: "Planet Eater",
  42132. height: math.unit(42, "earths")
  42133. },
  42134. {
  42135. name: "Star Swallower",
  42136. height: math.unit(42, "solarradii")
  42137. },
  42138. {
  42139. name: "System Swallower",
  42140. height: math.unit(84000, "AU")
  42141. },
  42142. {
  42143. name: "Galaxy Gobbler",
  42144. height: math.unit(42, "galaxies")
  42145. },
  42146. {
  42147. name: "Universe Devourer",
  42148. height: math.unit(42, "universes")
  42149. },
  42150. {
  42151. name: "Multiverse Muncher",
  42152. height: math.unit(42, "multiverses")
  42153. },
  42154. ]
  42155. ))
  42156. characterMakers.push(() => makeCharacter(
  42157. { name: "Shadow (Rat)", species: ["rat"], tags: ["anthro"] },
  42158. {
  42159. front: {
  42160. height: math.unit(36, "feet"),
  42161. name: "Front",
  42162. image: {
  42163. source: "./media/characters/shadow-rat/front.svg",
  42164. extra: 1845/1758,
  42165. bottom: 83/1928
  42166. }
  42167. },
  42168. },
  42169. [
  42170. {
  42171. name: "Macro",
  42172. height: math.unit(36, "feet"),
  42173. default: true
  42174. },
  42175. ]
  42176. ))
  42177. characterMakers.push(() => makeCharacter(
  42178. { name: "Torallia", species: ["cobra", "demon"], tags: ["naga"] },
  42179. {
  42180. side: {
  42181. height: math.unit(8, "feet"),
  42182. weight: math.unit(2630, "lb"),
  42183. name: "Side",
  42184. image: {
  42185. source: "./media/characters/torallia/side.svg",
  42186. extra: 2164/2021,
  42187. bottom: 371/2535
  42188. }
  42189. },
  42190. },
  42191. [
  42192. {
  42193. name: "Mortal Interaction",
  42194. height: math.unit(8, "feet")
  42195. },
  42196. {
  42197. name: "Natural",
  42198. height: math.unit(24, "feet"),
  42199. default: true
  42200. },
  42201. {
  42202. name: "Giant",
  42203. height: math.unit(80, "feet")
  42204. },
  42205. {
  42206. name: "Kaiju",
  42207. height: math.unit(240, "feet")
  42208. },
  42209. {
  42210. name: "Macro",
  42211. height: math.unit(800, "feet")
  42212. },
  42213. {
  42214. name: "Macro+",
  42215. height: math.unit(2400, "feet")
  42216. },
  42217. {
  42218. name: "Macro++",
  42219. height: math.unit(8000, "feet")
  42220. },
  42221. {
  42222. name: "City-Crushing",
  42223. height: math.unit(24000, "feet")
  42224. },
  42225. {
  42226. name: "Mountain-Mashing",
  42227. height: math.unit(80000, "feet")
  42228. },
  42229. {
  42230. name: "District Demolisher",
  42231. height: math.unit(240000, "feet")
  42232. },
  42233. {
  42234. name: "Tri-County Terror",
  42235. height: math.unit(800000, "feet")
  42236. },
  42237. {
  42238. name: "State Smasher",
  42239. height: math.unit(2.4e6, "feet")
  42240. },
  42241. {
  42242. name: "Nation Nemesis",
  42243. height: math.unit(8e6, "feet")
  42244. },
  42245. {
  42246. name: "Continent Cracker",
  42247. height: math.unit(2.4e7, "feet")
  42248. },
  42249. {
  42250. name: "Planet-Pillaging",
  42251. height: math.unit(8e7, "feet")
  42252. },
  42253. {
  42254. name: "Earth-Eclipsing",
  42255. height: math.unit(2.4e8, "feet")
  42256. },
  42257. {
  42258. name: "Jovian-Jostling",
  42259. height: math.unit(8e8, "feet")
  42260. },
  42261. {
  42262. name: "Gas Giant Gulper",
  42263. height: math.unit(2.4e9, "feet")
  42264. },
  42265. {
  42266. name: "Astral Annihilator",
  42267. height: math.unit(8e9, "feet")
  42268. },
  42269. {
  42270. name: "Celestial Conqueror",
  42271. height: math.unit(2.4e10, "feet")
  42272. },
  42273. {
  42274. name: "Sol-Swallowing",
  42275. height: math.unit(8e10, "feet")
  42276. },
  42277. {
  42278. name: "Hunter of the Heavens",
  42279. height: math.unit(2.4e13, "feet")
  42280. },
  42281. ]
  42282. ))
  42283. characterMakers.push(() => makeCharacter(
  42284. { name: "Rebecca Pawlson", species: ["fennec-fox"], tags: ["anthro"] },
  42285. {
  42286. front: {
  42287. height: math.unit(10, "feet"),
  42288. weight: math.unit(844, "kilograms"),
  42289. name: "Front",
  42290. image: {
  42291. source: "./media/characters/rebecca-pawlson/front.svg",
  42292. extra: 1196/1099,
  42293. bottom: 81/1277
  42294. },
  42295. extraAttributes: {
  42296. "pawSize": {
  42297. name: "Paw Size",
  42298. power: 2,
  42299. type: "area",
  42300. base: math.unit(0.2 * 0.375, "meters^2")
  42301. },
  42302. "handSize": {
  42303. name: "Hand Size",
  42304. power: 2,
  42305. type: "area",
  42306. base: math.unit(0.2 * 0.35, "meters^2")
  42307. },
  42308. "breastDiameter": {
  42309. name: "Breast Diameter",
  42310. power: 1,
  42311. type: "length",
  42312. base: math.unit(0.5, "meters")
  42313. },
  42314. "breastVolume": {
  42315. name: "Breast Volume",
  42316. power: 3,
  42317. type: "volume",
  42318. base: math.unit(0.065, "m^3")
  42319. },
  42320. "breastMass": {
  42321. name: "Breast Mass",
  42322. power: 3,
  42323. type: "mass",
  42324. base: math.unit(65, "kg")
  42325. },
  42326. "nippleDiameter": {
  42327. name: "Nipple Diameter",
  42328. power: 1,
  42329. type: "length",
  42330. base: math.unit(0.1, "meters")
  42331. },
  42332. }
  42333. },
  42334. back: {
  42335. height: math.unit(10, "feet"),
  42336. weight: math.unit(844, "kilograms"),
  42337. name: "Back",
  42338. image: {
  42339. source: "./media/characters/rebecca-pawlson/back.svg",
  42340. extra: 879/776,
  42341. bottom: 43/922
  42342. },
  42343. extraAttributes: {
  42344. "pawSize": {
  42345. name: "Paw Size",
  42346. power: 2,
  42347. type: "area",
  42348. base: math.unit(0.2 * 0.375, "meters^2")
  42349. },
  42350. "handSize": {
  42351. name: "Hand Size",
  42352. power: 2,
  42353. type: "area",
  42354. base: math.unit(0.2 * 0.35, "meters^2")
  42355. },
  42356. "breastDiameter": {
  42357. name: "Breast Diameter",
  42358. power: 1,
  42359. type: "length",
  42360. base: math.unit(0.5, "meters")
  42361. },
  42362. "breastVolume": {
  42363. name: "Breast Volume",
  42364. power: 3,
  42365. type: "volume",
  42366. base: math.unit(0.065, "m^3")
  42367. },
  42368. "breastMass": {
  42369. name: "Breast Mass",
  42370. power: 3,
  42371. type: "mass",
  42372. base: math.unit(65, "kg")
  42373. },
  42374. "nippleDiameter": {
  42375. name: "Nipple Diameter",
  42376. power: 1,
  42377. type: "length",
  42378. base: math.unit(0.1, "meters")
  42379. },
  42380. }
  42381. },
  42382. },
  42383. [
  42384. {
  42385. name: "Normal",
  42386. height: math.unit(6 + 8/12, "feet")
  42387. },
  42388. {
  42389. name: "Mini Macro",
  42390. height: math.unit(10, "feet"),
  42391. default: true
  42392. },
  42393. {
  42394. name: "Macro",
  42395. height: math.unit(100, "feet")
  42396. },
  42397. {
  42398. name: "Mega Macro",
  42399. height: math.unit(2500, "feet")
  42400. },
  42401. {
  42402. name: "Giga Macro",
  42403. height: math.unit(50, "miles")
  42404. },
  42405. ]
  42406. ))
  42407. characterMakers.push(() => makeCharacter(
  42408. { name: "Moxie Nova", species: ["dragon", "cat"], tags: ["anthro"] },
  42409. {
  42410. front: {
  42411. height: math.unit(7 + 6/12, "feet"),
  42412. weight: math.unit(600, "lb"),
  42413. name: "Front",
  42414. image: {
  42415. source: "./media/characters/moxie-nova/front.svg",
  42416. extra: 1734/1652,
  42417. bottom: 41/1775
  42418. }
  42419. },
  42420. },
  42421. [
  42422. {
  42423. name: "Normal",
  42424. height: math.unit(7 + 6/12, "feet"),
  42425. default: true
  42426. },
  42427. ]
  42428. ))
  42429. characterMakers.push(() => makeCharacter(
  42430. { name: "Tiffany", species: ["fox", "raccoon"], tags: ["anthro"] },
  42431. {
  42432. goat: {
  42433. height: math.unit(4, "feet"),
  42434. weight: math.unit(180, "lb"),
  42435. name: "Goat",
  42436. image: {
  42437. source: "./media/characters/tiffany/goat.svg",
  42438. extra: 1845/1595,
  42439. bottom: 106/1951
  42440. }
  42441. },
  42442. front: {
  42443. height: math.unit(5, "feet"),
  42444. weight: math.unit(150, "lb"),
  42445. name: "Foxcoon",
  42446. image: {
  42447. source: "./media/characters/tiffany/foxcoon.svg",
  42448. extra: 1941/1845,
  42449. bottom: 58/1999
  42450. }
  42451. },
  42452. },
  42453. [
  42454. {
  42455. name: "Normal",
  42456. height: math.unit(5, "feet"),
  42457. default: true
  42458. },
  42459. ]
  42460. ))
  42461. characterMakers.push(() => makeCharacter(
  42462. { name: "Raxinath", species: ["dragon"], tags: ["anthro"] },
  42463. {
  42464. front: {
  42465. height: math.unit(8, "feet"),
  42466. weight: math.unit(300, "lb"),
  42467. name: "Front",
  42468. image: {
  42469. source: "./media/characters/raxinath/front.svg",
  42470. extra: 1407/1309,
  42471. bottom: 39/1446
  42472. }
  42473. },
  42474. back: {
  42475. height: math.unit(8, "feet"),
  42476. weight: math.unit(300, "lb"),
  42477. name: "Back",
  42478. image: {
  42479. source: "./media/characters/raxinath/back.svg",
  42480. extra: 1405/1315,
  42481. bottom: 9/1414
  42482. }
  42483. },
  42484. },
  42485. [
  42486. {
  42487. name: "Speck",
  42488. height: math.unit(0.5, "nm")
  42489. },
  42490. {
  42491. name: "Micro",
  42492. height: math.unit(3, "inches")
  42493. },
  42494. {
  42495. name: "Kobold",
  42496. height: math.unit(3, "feet")
  42497. },
  42498. {
  42499. name: "Normal",
  42500. height: math.unit(8, "feet"),
  42501. default: true
  42502. },
  42503. {
  42504. name: "Giant",
  42505. height: math.unit(50, "feet")
  42506. },
  42507. {
  42508. name: "Macro",
  42509. height: math.unit(1000, "feet")
  42510. },
  42511. {
  42512. name: "Megamacro",
  42513. height: math.unit(1, "mile")
  42514. },
  42515. ]
  42516. ))
  42517. characterMakers.push(() => makeCharacter(
  42518. { name: "Mal (Dragon)", species: ["dragon", "deity"], tags: ["anthro"] },
  42519. {
  42520. front: {
  42521. height: math.unit(10, "feet"),
  42522. weight: math.unit(1442, "lb"),
  42523. name: "Front",
  42524. image: {
  42525. source: "./media/characters/mal-dragon/front.svg",
  42526. extra: 1515/1444,
  42527. bottom: 113/1628
  42528. }
  42529. },
  42530. back: {
  42531. height: math.unit(10, "feet"),
  42532. weight: math.unit(1442, "lb"),
  42533. name: "Back",
  42534. image: {
  42535. source: "./media/characters/mal-dragon/back.svg",
  42536. extra: 1527/1434,
  42537. bottom: 25/1552
  42538. }
  42539. },
  42540. },
  42541. [
  42542. {
  42543. name: "Mortal Interaction",
  42544. height: math.unit(10, "feet"),
  42545. default: true
  42546. },
  42547. {
  42548. name: "Large",
  42549. height: math.unit(30, "feet")
  42550. },
  42551. {
  42552. name: "Kaiju",
  42553. height: math.unit(300, "feet")
  42554. },
  42555. {
  42556. name: "Megamacro",
  42557. height: math.unit(10000, "feet")
  42558. },
  42559. {
  42560. name: "Continent Cracker",
  42561. height: math.unit(30000000, "feet")
  42562. },
  42563. {
  42564. name: "Sol-Swallowing",
  42565. height: math.unit(1e11, "feet")
  42566. },
  42567. {
  42568. name: "Light Universal",
  42569. height: math.unit(5, "universes")
  42570. },
  42571. {
  42572. name: "Universe Atoms",
  42573. height: math.unit(1.829e9, "universes")
  42574. },
  42575. {
  42576. name: "Light Multiversal",
  42577. height: math.unit(5, "multiverses")
  42578. },
  42579. {
  42580. name: "Multiverse Atoms",
  42581. height: math.unit(1.829e9, "multiverses")
  42582. },
  42583. {
  42584. name: "Fabric of Time",
  42585. height: math.unit(1e262, "multiverses")
  42586. },
  42587. ]
  42588. ))
  42589. characterMakers.push(() => makeCharacter(
  42590. { name: "Tabitha", species: ["mouse", "cat"], tags: ["anthro"] },
  42591. {
  42592. front: {
  42593. height: math.unit(9, "feet"),
  42594. weight: math.unit(1050, "lb"),
  42595. name: "Front",
  42596. image: {
  42597. source: "./media/characters/tabitha/front.svg",
  42598. extra: 2083/1994,
  42599. bottom: 68/2151
  42600. }
  42601. },
  42602. },
  42603. [
  42604. {
  42605. name: "Baseline",
  42606. height: math.unit(9, "feet"),
  42607. default: true
  42608. },
  42609. {
  42610. name: "Giant",
  42611. height: math.unit(90, "feet")
  42612. },
  42613. {
  42614. name: "Macro",
  42615. height: math.unit(900, "feet")
  42616. },
  42617. {
  42618. name: "Megamacro",
  42619. height: math.unit(9000, "feet")
  42620. },
  42621. {
  42622. name: "City-Crushing",
  42623. height: math.unit(27000, "feet")
  42624. },
  42625. {
  42626. name: "Mountain-Mashing",
  42627. height: math.unit(90000, "feet")
  42628. },
  42629. {
  42630. name: "Nation Nemesis",
  42631. height: math.unit(9e6, "feet")
  42632. },
  42633. {
  42634. name: "Continent Cracker",
  42635. height: math.unit(27e6, "feet")
  42636. },
  42637. {
  42638. name: "Earth-Eclipsing",
  42639. height: math.unit(2.7e8, "feet")
  42640. },
  42641. {
  42642. name: "Gas Giant Gulper",
  42643. height: math.unit(2.7e9, "feet")
  42644. },
  42645. {
  42646. name: "Sol-Swallowing",
  42647. height: math.unit(9e10, "feet")
  42648. },
  42649. {
  42650. name: "Galaxy Gulper",
  42651. height: math.unit(9, "galaxies")
  42652. },
  42653. {
  42654. name: "Cosmos Churner",
  42655. height: math.unit(9, "universes")
  42656. },
  42657. ]
  42658. ))
  42659. characterMakers.push(() => makeCharacter(
  42660. { name: "Tow", species: ["cat"], tags: ["anthro"] },
  42661. {
  42662. front: {
  42663. height: math.unit(160, "cm"),
  42664. weight: math.unit(55, "kg"),
  42665. name: "Front",
  42666. image: {
  42667. source: "./media/characters/tow/front.svg",
  42668. extra: 1751/1722,
  42669. bottom: 74/1825
  42670. }
  42671. },
  42672. },
  42673. [
  42674. {
  42675. name: "Norm",
  42676. height: math.unit(160, "cm")
  42677. },
  42678. {
  42679. name: "Casual",
  42680. height: math.unit(3200, "m"),
  42681. default: true
  42682. },
  42683. {
  42684. name: "Show-Off",
  42685. height: math.unit(160, "km")
  42686. },
  42687. ]
  42688. ))
  42689. characterMakers.push(() => makeCharacter(
  42690. { name: "Vivian (Ocra Dragon)", species: ["dragon", "orca"], tags: ["anthro", "goo"] },
  42691. {
  42692. front: {
  42693. height: math.unit(7 + 11/12, "feet"),
  42694. weight: math.unit(342.8, "lb"),
  42695. name: "Front",
  42696. image: {
  42697. source: "./media/characters/vivian-orca-dragon/front.svg",
  42698. extra: 1890/1865,
  42699. bottom: 28/1918
  42700. }
  42701. },
  42702. },
  42703. [
  42704. {
  42705. name: "Micro",
  42706. height: math.unit(5, "inches")
  42707. },
  42708. {
  42709. name: "Normal",
  42710. height: math.unit(7 + 11/12, "feet"),
  42711. default: true
  42712. },
  42713. {
  42714. name: "Macro",
  42715. height: math.unit(395 + 7/12, "feet")
  42716. },
  42717. ]
  42718. ))
  42719. characterMakers.push(() => makeCharacter(
  42720. { name: "Lotherakon", species: ["hellhound", "deity"], tags: ["anthro"] },
  42721. {
  42722. side: {
  42723. height: math.unit(10, "feet"),
  42724. weight: math.unit(1442, "lb"),
  42725. name: "Side",
  42726. image: {
  42727. source: "./media/characters/lotherakon/side.svg",
  42728. extra: 1604/1497,
  42729. bottom: 89/1693
  42730. }
  42731. },
  42732. },
  42733. [
  42734. {
  42735. name: "Mortal Interaction",
  42736. height: math.unit(10, "feet")
  42737. },
  42738. {
  42739. name: "Large",
  42740. height: math.unit(30, "feet"),
  42741. default: true
  42742. },
  42743. {
  42744. name: "Giant",
  42745. height: math.unit(100, "feet")
  42746. },
  42747. {
  42748. name: "Kaiju",
  42749. height: math.unit(300, "feet")
  42750. },
  42751. {
  42752. name: "Macro",
  42753. height: math.unit(1000, "feet")
  42754. },
  42755. {
  42756. name: "Macro+",
  42757. height: math.unit(3000, "feet")
  42758. },
  42759. {
  42760. name: "Megamacro",
  42761. height: math.unit(10000, "feet")
  42762. },
  42763. {
  42764. name: "City-Crushing",
  42765. height: math.unit(30000, "feet")
  42766. },
  42767. {
  42768. name: "Continent Cracker",
  42769. height: math.unit(30e6, "feet")
  42770. },
  42771. {
  42772. name: "Earth Eclipsing",
  42773. height: math.unit(3e8, "feet")
  42774. },
  42775. {
  42776. name: "Gas Giant Gulper",
  42777. height: math.unit(3e9, "feet")
  42778. },
  42779. {
  42780. name: "Sol-Swallowing",
  42781. height: math.unit(1e11, "feet")
  42782. },
  42783. {
  42784. name: "System Swallower",
  42785. height: math.unit(3e14, "feet")
  42786. },
  42787. {
  42788. name: "Galaxy Gulper",
  42789. height: math.unit(10, "galaxies")
  42790. },
  42791. {
  42792. name: "Light Universal",
  42793. height: math.unit(5, "universes")
  42794. },
  42795. {
  42796. name: "Universe Palm",
  42797. height: math.unit(20, "universes")
  42798. },
  42799. {
  42800. name: "Light Multiversal",
  42801. height: math.unit(5, "multiverses")
  42802. },
  42803. {
  42804. name: "Multiverse Palm",
  42805. height: math.unit(20, "multiverses")
  42806. },
  42807. {
  42808. name: "Inferno Incarnate",
  42809. height: math.unit(1e7, "multiverses")
  42810. },
  42811. ]
  42812. ))
  42813. characterMakers.push(() => makeCharacter(
  42814. { name: "Malithee", species: ["frog", "dragon", "deity"], tags: ["anthro"] },
  42815. {
  42816. front: {
  42817. height: math.unit(8, "feet"),
  42818. weight: math.unit(1200, "lb"),
  42819. name: "Front",
  42820. image: {
  42821. source: "./media/characters/malithee/front.svg",
  42822. extra: 1675/1640,
  42823. bottom: 162/1837
  42824. }
  42825. },
  42826. },
  42827. [
  42828. {
  42829. name: "Mortal Interaction",
  42830. height: math.unit(8, "feet"),
  42831. default: true
  42832. },
  42833. {
  42834. name: "Large",
  42835. height: math.unit(24, "feet")
  42836. },
  42837. {
  42838. name: "Kaiju",
  42839. height: math.unit(240, "feet")
  42840. },
  42841. {
  42842. name: "Megamacro",
  42843. height: math.unit(8000, "feet")
  42844. },
  42845. {
  42846. name: "Continent Cracker",
  42847. height: math.unit(24e6, "feet")
  42848. },
  42849. {
  42850. name: "Earth-Eclipsing",
  42851. height: math.unit(2.4e8, "feet")
  42852. },
  42853. {
  42854. name: "Sol-Swallowing",
  42855. height: math.unit(8e10, "feet")
  42856. },
  42857. {
  42858. name: "Galaxy Gulper",
  42859. height: math.unit(8, "galaxies")
  42860. },
  42861. {
  42862. name: "Light Universal",
  42863. height: math.unit(4, "universes")
  42864. },
  42865. {
  42866. name: "Universe Atoms",
  42867. height: math.unit(1.829e9, "universes")
  42868. },
  42869. {
  42870. name: "Light Multiversal",
  42871. height: math.unit(4, "multiverses")
  42872. },
  42873. {
  42874. name: "Multiverse Atoms",
  42875. height: math.unit(1.829e9, "multiverses")
  42876. },
  42877. {
  42878. name: "Nigh-Omnipresence",
  42879. height: math.unit(8e261, "multiverses")
  42880. },
  42881. ]
  42882. ))
  42883. characterMakers.push(() => makeCharacter(
  42884. { name: "Miles Thestia", species: ["wolf", "dog"], tags: ["anthro"] },
  42885. {
  42886. front: {
  42887. height: math.unit(10, "feet"),
  42888. weight: math.unit(1500, "lb"),
  42889. name: "Front",
  42890. image: {
  42891. source: "./media/characters/miles-thestia/front.svg",
  42892. extra: 1812/1727,
  42893. bottom: 86/1898
  42894. }
  42895. },
  42896. back: {
  42897. height: math.unit(10, "feet"),
  42898. weight: math.unit(1500, "lb"),
  42899. name: "Back",
  42900. image: {
  42901. source: "./media/characters/miles-thestia/back.svg",
  42902. extra: 1799/1690,
  42903. bottom: 47/1846
  42904. }
  42905. },
  42906. frontNsfw: {
  42907. height: math.unit(10, "feet"),
  42908. weight: math.unit(1500, "lb"),
  42909. name: "Front (NSFW)",
  42910. image: {
  42911. source: "./media/characters/miles-thestia/front-nsfw.svg",
  42912. extra: 1812/1727,
  42913. bottom: 86/1898
  42914. }
  42915. },
  42916. },
  42917. [
  42918. {
  42919. name: "Mini-Macro",
  42920. height: math.unit(10, "feet"),
  42921. default: true
  42922. },
  42923. ]
  42924. ))
  42925. characterMakers.push(() => makeCharacter(
  42926. { name: "TITAN.S.WULF", species: ["wolf"], tags: ["anthro"] },
  42927. {
  42928. front: {
  42929. height: math.unit(25, "feet"),
  42930. name: "Front",
  42931. image: {
  42932. source: "./media/characters/titan-s-wulf/front.svg",
  42933. extra: 1560/1484,
  42934. bottom: 76/1636
  42935. }
  42936. },
  42937. },
  42938. [
  42939. {
  42940. name: "Smallest",
  42941. height: math.unit(25, "feet"),
  42942. default: true
  42943. },
  42944. {
  42945. name: "Normal",
  42946. height: math.unit(200, "feet")
  42947. },
  42948. {
  42949. name: "Macro",
  42950. height: math.unit(200000, "feet")
  42951. },
  42952. {
  42953. name: "Multiversal Original",
  42954. height: math.unit(10000, "multiverses")
  42955. },
  42956. ]
  42957. ))
  42958. characterMakers.push(() => makeCharacter(
  42959. { name: "Tawendeh", species: ["otter", "deity"], tags: ["anthro"] },
  42960. {
  42961. front: {
  42962. height: math.unit(8, "feet"),
  42963. weight: math.unit(553, "lb"),
  42964. name: "Front",
  42965. image: {
  42966. source: "./media/characters/tawendeh/front.svg",
  42967. extra: 2365/2268,
  42968. bottom: 83/2448
  42969. }
  42970. },
  42971. frontClothed: {
  42972. height: math.unit(8, "feet"),
  42973. weight: math.unit(553, "lb"),
  42974. name: "Front (Clothed)",
  42975. image: {
  42976. source: "./media/characters/tawendeh/front-clothed.svg",
  42977. extra: 2365/2268,
  42978. bottom: 83/2448
  42979. }
  42980. },
  42981. back: {
  42982. height: math.unit(8, "feet"),
  42983. weight: math.unit(553, "lb"),
  42984. name: "Back",
  42985. image: {
  42986. source: "./media/characters/tawendeh/back.svg",
  42987. extra: 2397/2294,
  42988. bottom: 42/2439
  42989. }
  42990. },
  42991. },
  42992. [
  42993. {
  42994. name: "Mortal Interaction",
  42995. height: math.unit(8, "feet"),
  42996. default: true
  42997. },
  42998. {
  42999. name: "Giant",
  43000. height: math.unit(80, "feet")
  43001. },
  43002. {
  43003. name: "Macro",
  43004. height: math.unit(800, "feet")
  43005. },
  43006. {
  43007. name: "Megamacro",
  43008. height: math.unit(8000, "feet")
  43009. },
  43010. {
  43011. name: "City-Crushing",
  43012. height: math.unit(24000, "feet")
  43013. },
  43014. {
  43015. name: "Mountain-Mashing",
  43016. height: math.unit(80000, "feet")
  43017. },
  43018. {
  43019. name: "Nation Nemesis",
  43020. height: math.unit(8e6, "feet")
  43021. },
  43022. {
  43023. name: "Continent Cracker",
  43024. height: math.unit(24e6, "feet")
  43025. },
  43026. {
  43027. name: "Earth-Eclipsing",
  43028. height: math.unit(2.4e8, "feet")
  43029. },
  43030. {
  43031. name: "Gas Giant Gulper",
  43032. height: math.unit(2.4e9, "feet")
  43033. },
  43034. {
  43035. name: "Sol-Swallowing",
  43036. height: math.unit(8e10, "feet")
  43037. },
  43038. {
  43039. name: "Galaxy Gulper",
  43040. height: math.unit(8, "galaxies")
  43041. },
  43042. {
  43043. name: "Cosmos Churner",
  43044. height: math.unit(8, "universes")
  43045. },
  43046. {
  43047. name: "Omnipotent Otter",
  43048. height: math.unit(80, "universes")
  43049. },
  43050. ]
  43051. ))
  43052. characterMakers.push(() => makeCharacter(
  43053. { name: "Neesha", species: ["gnoll"], tags: ["anthro"] },
  43054. {
  43055. front: {
  43056. height: math.unit(2.6, "meters"),
  43057. weight: math.unit(900, "kg"),
  43058. name: "Front",
  43059. image: {
  43060. source: "./media/characters/neesha/front.svg",
  43061. extra: 1803/1653,
  43062. bottom: 128/1931
  43063. }
  43064. },
  43065. },
  43066. [
  43067. {
  43068. name: "Normal",
  43069. height: math.unit(2.6, "meters"),
  43070. default: true
  43071. },
  43072. {
  43073. name: "Macro",
  43074. height: math.unit(50, "meters")
  43075. },
  43076. ]
  43077. ))
  43078. characterMakers.push(() => makeCharacter(
  43079. { name: "Kyera", species: ["dragon", "mouse"], tags: ["anthro"] },
  43080. {
  43081. front: {
  43082. height: math.unit(5, "feet"),
  43083. weight: math.unit(185, "lb"),
  43084. name: "Front",
  43085. image: {
  43086. source: "./media/characters/kyera/front.svg",
  43087. extra: 1875/1790,
  43088. bottom: 96/1971
  43089. }
  43090. },
  43091. },
  43092. [
  43093. {
  43094. name: "Normal",
  43095. height: math.unit(5, "feet"),
  43096. default: true
  43097. },
  43098. ]
  43099. ))
  43100. characterMakers.push(() => makeCharacter(
  43101. { name: "Yuko", species: ["catgirl"], tags: ["anthro"] },
  43102. {
  43103. front: {
  43104. height: math.unit(7 + 6/12, "feet"),
  43105. weight: math.unit(540, "lb"),
  43106. name: "Front",
  43107. image: {
  43108. source: "./media/characters/yuko/front.svg",
  43109. extra: 1282/1222,
  43110. bottom: 101/1383
  43111. }
  43112. },
  43113. frontClothed: {
  43114. height: math.unit(7 + 6/12, "feet"),
  43115. weight: math.unit(540, "lb"),
  43116. name: "Front (Clothed)",
  43117. image: {
  43118. source: "./media/characters/yuko/front-clothed.svg",
  43119. extra: 1282/1222,
  43120. bottom: 101/1383
  43121. }
  43122. },
  43123. },
  43124. [
  43125. {
  43126. name: "Normal",
  43127. height: math.unit(7 + 6/12, "feet"),
  43128. default: true
  43129. },
  43130. {
  43131. name: "Macro",
  43132. height: math.unit(26 + 9/12, "feet")
  43133. },
  43134. {
  43135. name: "Megamacro",
  43136. height: math.unit(300, "feet")
  43137. },
  43138. {
  43139. name: "Gigamacro",
  43140. height: math.unit(5000, "feet")
  43141. },
  43142. {
  43143. name: "Planetary",
  43144. height: math.unit(10000, "miles")
  43145. },
  43146. ]
  43147. ))
  43148. characterMakers.push(() => makeCharacter(
  43149. { name: "Deam Nitrel", species: ["wolf"], tags: ["anthro"] },
  43150. {
  43151. front: {
  43152. height: math.unit(8 + 2/12, "feet"),
  43153. weight: math.unit(600, "lb"),
  43154. name: "Front",
  43155. image: {
  43156. source: "./media/characters/deam-nitrel/front.svg",
  43157. extra: 1308/1234,
  43158. bottom: 125/1433
  43159. }
  43160. },
  43161. },
  43162. [
  43163. {
  43164. name: "Normal",
  43165. height: math.unit(8 + 2/12, "feet"),
  43166. default: true
  43167. },
  43168. ]
  43169. ))
  43170. characterMakers.push(() => makeCharacter(
  43171. { name: "Skyress", species: ["dragon"], tags: ["anthro"] },
  43172. {
  43173. front: {
  43174. height: math.unit(6.1, "feet"),
  43175. weight: math.unit(180, "lb"),
  43176. name: "Front",
  43177. image: {
  43178. source: "./media/characters/skyress/front.svg",
  43179. extra: 1045/915,
  43180. bottom: 28/1073
  43181. }
  43182. },
  43183. maw: {
  43184. height: math.unit(1, "feet"),
  43185. name: "Maw",
  43186. image: {
  43187. source: "./media/characters/skyress/maw.svg"
  43188. }
  43189. },
  43190. },
  43191. [
  43192. {
  43193. name: "Normal",
  43194. height: math.unit(6.1, "feet"),
  43195. default: true
  43196. },
  43197. {
  43198. name: "Macro",
  43199. height: math.unit(200, "feet")
  43200. },
  43201. ]
  43202. ))
  43203. characterMakers.push(() => makeCharacter(
  43204. { name: "Amethyst Jones", species: ["kobold"], tags: ["anthro"] },
  43205. {
  43206. front: {
  43207. height: math.unit(4 + 2/12, "feet"),
  43208. weight: math.unit(40, "kg"),
  43209. name: "Front",
  43210. image: {
  43211. source: "./media/characters/amethyst-jones/front.svg",
  43212. extra: 1220/1150,
  43213. bottom: 101/1321
  43214. }
  43215. },
  43216. },
  43217. [
  43218. {
  43219. name: "Normal",
  43220. height: math.unit(4 + 2/12, "feet"),
  43221. default: true
  43222. },
  43223. ]
  43224. ))
  43225. characterMakers.push(() => makeCharacter(
  43226. { name: "Jade", species: ["panther", "dragon"], tags: ["anthro"] },
  43227. {
  43228. front: {
  43229. height: math.unit(1.7, "m"),
  43230. weight: math.unit(135, "lb"),
  43231. name: "Front",
  43232. image: {
  43233. source: "./media/characters/jade/front.svg",
  43234. extra: 1818/1767,
  43235. bottom: 32/1850
  43236. }
  43237. },
  43238. back: {
  43239. height: math.unit(1.7, "m"),
  43240. weight: math.unit(135, "lb"),
  43241. name: "Back",
  43242. image: {
  43243. source: "./media/characters/jade/back.svg",
  43244. extra: 1869/1809,
  43245. bottom: 35/1904
  43246. }
  43247. },
  43248. hand: {
  43249. height: math.unit(0.24, "m"),
  43250. name: "Hand",
  43251. image: {
  43252. source: "./media/characters/jade/hand.svg"
  43253. }
  43254. },
  43255. foot: {
  43256. height: math.unit(0.263, "m"),
  43257. name: "Foot",
  43258. image: {
  43259. source: "./media/characters/jade/foot.svg"
  43260. }
  43261. },
  43262. dick: {
  43263. height: math.unit(0.47, "m"),
  43264. name: "Dick",
  43265. image: {
  43266. source: "./media/characters/jade/dick.svg"
  43267. }
  43268. },
  43269. },
  43270. [
  43271. {
  43272. name: "Micro",
  43273. height: math.unit(22, "cm")
  43274. },
  43275. {
  43276. name: "Normal",
  43277. height: math.unit(1.7, "m"),
  43278. default: true
  43279. },
  43280. {
  43281. name: "Macro",
  43282. height: math.unit(152, "m")
  43283. },
  43284. ]
  43285. ))
  43286. characterMakers.push(() => makeCharacter(
  43287. { name: "Cookie", species: ["snow-leopard"], tags: ["anthro"] },
  43288. {
  43289. front: {
  43290. height: math.unit(100, "miles"),
  43291. weight: math.unit(20000, "tons"),
  43292. name: "Front",
  43293. image: {
  43294. source: "./media/characters/cookie/front.svg",
  43295. extra: 1125/1070,
  43296. bottom: 30/1155
  43297. }
  43298. },
  43299. },
  43300. [
  43301. {
  43302. name: "Big",
  43303. height: math.unit(50, "feet")
  43304. },
  43305. {
  43306. name: "Macro",
  43307. height: math.unit(100, "miles"),
  43308. default: true
  43309. },
  43310. {
  43311. name: "Megamacro",
  43312. height: math.unit(90000, "miles")
  43313. },
  43314. ]
  43315. ))
  43316. characterMakers.push(() => makeCharacter(
  43317. { name: "Farzian", species: ["folf"], tags: ["anthro"] },
  43318. {
  43319. front: {
  43320. height: math.unit(6, "feet"),
  43321. weight: math.unit(145, "lb"),
  43322. name: "Front",
  43323. image: {
  43324. source: "./media/characters/farzian/front.svg",
  43325. extra: 1902/1693,
  43326. bottom: 108/2010
  43327. }
  43328. },
  43329. },
  43330. [
  43331. {
  43332. name: "Macro",
  43333. height: math.unit(500, "feet"),
  43334. default: true
  43335. },
  43336. ]
  43337. ))
  43338. characterMakers.push(() => makeCharacter(
  43339. { name: "Kimberly Tilson", species: ["rabbit"], tags: ["anthro"] },
  43340. {
  43341. front: {
  43342. height: math.unit(3 + 6/12, "feet"),
  43343. weight: math.unit(50, "lb"),
  43344. name: "Front",
  43345. image: {
  43346. source: "./media/characters/kimberly-tilson/front.svg",
  43347. extra: 1400/1322,
  43348. bottom: 36/1436
  43349. }
  43350. },
  43351. back: {
  43352. height: math.unit(3 + 6/12, "feet"),
  43353. weight: math.unit(50, "lb"),
  43354. name: "Back",
  43355. image: {
  43356. source: "./media/characters/kimberly-tilson/back.svg",
  43357. extra: 1370/1307,
  43358. bottom: 20/1390
  43359. }
  43360. },
  43361. },
  43362. [
  43363. {
  43364. name: "Normal",
  43365. height: math.unit(3 + 6/12, "feet"),
  43366. default: true
  43367. },
  43368. ]
  43369. ))
  43370. characterMakers.push(() => makeCharacter(
  43371. { name: "Harthos", species: ["peacekeeper", "allusus"], tags: ["anthro"] },
  43372. {
  43373. front: {
  43374. height: math.unit(350, "meters"),
  43375. weight: math.unit(7.57059e+8, "lb"),
  43376. name: "Front",
  43377. image: {
  43378. source: "./media/characters/harthos/front.svg",
  43379. extra: 455/446,
  43380. bottom: 15/470
  43381. },
  43382. form: "peacekeeper",
  43383. default: true
  43384. },
  43385. allusus_front: {
  43386. height: math.unit(270, "meters"),
  43387. weight: math.unit(3.47550e+8, "lb"),
  43388. name: "Front",
  43389. image: {
  43390. source: "./media/characters/harthos/allusus-front.svg",
  43391. extra: 455/446,
  43392. bottom: 15/470
  43393. },
  43394. form: "allusus",
  43395. },
  43396. },
  43397. [
  43398. {
  43399. name: "Macro",
  43400. height: math.unit(350, "meters"),
  43401. default: true,
  43402. form: "peacekeeper"
  43403. },
  43404. {
  43405. name: "Macro",
  43406. height: math.unit(270, "meters"),
  43407. default: true,
  43408. form: "allusus"
  43409. },
  43410. ],
  43411. {
  43412. "peacekeeper": {
  43413. name: "Peacekeeper",
  43414. default: true
  43415. },
  43416. "allusus": {
  43417. name: "Allusus",
  43418. },
  43419. }
  43420. ))
  43421. characterMakers.push(() => makeCharacter(
  43422. { name: "Hypatia", species: ["gardevoir", "deity"], tags: ["anthro"] },
  43423. {
  43424. front: {
  43425. height: math.unit(15, "feet"),
  43426. name: "Front",
  43427. image: {
  43428. source: "./media/characters/hypatia/front.svg",
  43429. extra: 1653/1591,
  43430. bottom: 79/1732
  43431. }
  43432. },
  43433. },
  43434. [
  43435. {
  43436. name: "Normal",
  43437. height: math.unit(15, "feet")
  43438. },
  43439. {
  43440. name: "Small",
  43441. height: math.unit(300, "feet")
  43442. },
  43443. {
  43444. name: "Macro",
  43445. height: math.unit(2500, "feet"),
  43446. default: true
  43447. },
  43448. {
  43449. name: "Mega Macro",
  43450. height: math.unit(1500, "miles")
  43451. },
  43452. {
  43453. name: "Giga Macro",
  43454. height: math.unit(1.5e6, "miles")
  43455. },
  43456. ]
  43457. ))
  43458. characterMakers.push(() => makeCharacter(
  43459. { name: "Wulver", species: ["werewolf"], tags: ["anthro"] },
  43460. {
  43461. front: {
  43462. height: math.unit(6, "feet"),
  43463. weight: math.unit(200, "lb"),
  43464. name: "Front",
  43465. image: {
  43466. source: "./media/characters/wulver/front.svg",
  43467. extra: 1724/1632,
  43468. bottom: 130/1854
  43469. }
  43470. },
  43471. frontNsfw: {
  43472. height: math.unit(6, "feet"),
  43473. weight: math.unit(200, "lb"),
  43474. name: "Front (NSFW)",
  43475. image: {
  43476. source: "./media/characters/wulver/front-nsfw.svg",
  43477. extra: 1724/1632,
  43478. bottom: 130/1854
  43479. }
  43480. },
  43481. },
  43482. [
  43483. {
  43484. name: "Human-Sized",
  43485. height: math.unit(6, "feet")
  43486. },
  43487. {
  43488. name: "Normal",
  43489. height: math.unit(4, "meters"),
  43490. default: true
  43491. },
  43492. {
  43493. name: "Large",
  43494. height: math.unit(6, "m")
  43495. },
  43496. ]
  43497. ))
  43498. characterMakers.push(() => makeCharacter(
  43499. { name: "Maru", species: ["tiger"], tags: ["anthro"] },
  43500. {
  43501. front: {
  43502. height: math.unit(7, "feet"),
  43503. name: "Front",
  43504. image: {
  43505. source: "./media/characters/maru/front.svg",
  43506. extra: 1595/1570,
  43507. bottom: 0/1595
  43508. }
  43509. },
  43510. },
  43511. [
  43512. {
  43513. name: "Normal",
  43514. height: math.unit(7, "feet"),
  43515. default: true
  43516. },
  43517. {
  43518. name: "Macro",
  43519. height: math.unit(700, "feet")
  43520. },
  43521. {
  43522. name: "Mega Macro",
  43523. height: math.unit(25, "miles")
  43524. },
  43525. ]
  43526. ))
  43527. characterMakers.push(() => makeCharacter(
  43528. { name: "Xenon", species: ["river-otter", "wolf"], tags: ["anthro"] },
  43529. {
  43530. front: {
  43531. height: math.unit(6, "feet"),
  43532. weight: math.unit(170, "lb"),
  43533. name: "Front",
  43534. image: {
  43535. source: "./media/characters/xenon/front.svg",
  43536. extra: 1376/1305,
  43537. bottom: 56/1432
  43538. }
  43539. },
  43540. back: {
  43541. height: math.unit(6, "feet"),
  43542. weight: math.unit(170, "lb"),
  43543. name: "Back",
  43544. image: {
  43545. source: "./media/characters/xenon/back.svg",
  43546. extra: 1328/1259,
  43547. bottom: 95/1423
  43548. }
  43549. },
  43550. maw: {
  43551. height: math.unit(0.52, "feet"),
  43552. name: "Maw",
  43553. image: {
  43554. source: "./media/characters/xenon/maw.svg"
  43555. }
  43556. },
  43557. handLeft: {
  43558. height: math.unit(0.82 * 169 / 153, "feet"),
  43559. name: "Hand (Left)",
  43560. image: {
  43561. source: "./media/characters/xenon/hand-left.svg"
  43562. }
  43563. },
  43564. handRight: {
  43565. height: math.unit(0.82, "feet"),
  43566. name: "Hand (Right)",
  43567. image: {
  43568. source: "./media/characters/xenon/hand-right.svg"
  43569. }
  43570. },
  43571. footLeft: {
  43572. height: math.unit(1.13, "feet"),
  43573. name: "Foot (Left)",
  43574. image: {
  43575. source: "./media/characters/xenon/foot-left.svg"
  43576. }
  43577. },
  43578. footRight: {
  43579. height: math.unit(1.13 * 194 / 196, "feet"),
  43580. name: "Foot (Right)",
  43581. image: {
  43582. source: "./media/characters/xenon/foot-right.svg"
  43583. }
  43584. },
  43585. },
  43586. [
  43587. {
  43588. name: "Micro",
  43589. height: math.unit(0.8, "inches")
  43590. },
  43591. {
  43592. name: "Normal",
  43593. height: math.unit(6, "feet")
  43594. },
  43595. {
  43596. name: "Macro",
  43597. height: math.unit(50, "feet"),
  43598. default: true
  43599. },
  43600. {
  43601. name: "Macro+",
  43602. height: math.unit(250, "feet")
  43603. },
  43604. {
  43605. name: "Megamacro",
  43606. height: math.unit(1500, "feet")
  43607. },
  43608. ]
  43609. ))
  43610. characterMakers.push(() => makeCharacter(
  43611. { name: "Zane", species: ["wolf", "werewolf"], tags: ["anthro"] },
  43612. {
  43613. front: {
  43614. height: math.unit(7 + 5/12, "feet"),
  43615. name: "Front",
  43616. image: {
  43617. source: "./media/characters/zane/front.svg",
  43618. extra: 1260/1203,
  43619. bottom: 94/1354
  43620. }
  43621. },
  43622. back: {
  43623. height: math.unit(5.05, "feet"),
  43624. name: "Back",
  43625. image: {
  43626. source: "./media/characters/zane/back.svg",
  43627. extra: 893/829,
  43628. bottom: 30/923
  43629. }
  43630. },
  43631. werewolf: {
  43632. height: math.unit(11, "feet"),
  43633. name: "Werewolf",
  43634. image: {
  43635. source: "./media/characters/zane/werewolf.svg",
  43636. extra: 1383/1323,
  43637. bottom: 89/1472
  43638. }
  43639. },
  43640. foot: {
  43641. height: math.unit(1.46, "feet"),
  43642. name: "Foot",
  43643. image: {
  43644. source: "./media/characters/zane/foot.svg"
  43645. }
  43646. },
  43647. footFront: {
  43648. height: math.unit(0.784, "feet"),
  43649. name: "Foot (Front)",
  43650. image: {
  43651. source: "./media/characters/zane/foot-front.svg"
  43652. }
  43653. },
  43654. dick: {
  43655. height: math.unit(1.95, "feet"),
  43656. name: "Dick",
  43657. image: {
  43658. source: "./media/characters/zane/dick.svg"
  43659. }
  43660. },
  43661. dickWerewolf: {
  43662. height: math.unit(3.77, "feet"),
  43663. name: "Dick (Werewolf)",
  43664. image: {
  43665. source: "./media/characters/zane/dick.svg"
  43666. }
  43667. },
  43668. },
  43669. [
  43670. {
  43671. name: "Normal",
  43672. height: math.unit(7 + 5/12, "feet"),
  43673. default: true
  43674. },
  43675. ]
  43676. ))
  43677. characterMakers.push(() => makeCharacter(
  43678. { name: "Benni Desparque", species: ["tiger", "rabbit"], tags: ["anthro"] },
  43679. {
  43680. front: {
  43681. height: math.unit(6 + 2/12, "feet"),
  43682. weight: math.unit(284, "lb"),
  43683. name: "Front",
  43684. image: {
  43685. source: "./media/characters/benni-desparque/front.svg",
  43686. extra: 878/729,
  43687. bottom: 58/936
  43688. }
  43689. },
  43690. back: {
  43691. height: math.unit(6 + 2/12, "feet"),
  43692. weight: math.unit(284, "lb"),
  43693. name: "Back",
  43694. image: {
  43695. source: "./media/characters/benni-desparque/back.svg",
  43696. extra: 901/756,
  43697. bottom: 51/952
  43698. }
  43699. },
  43700. dressed: {
  43701. height: math.unit(6 + 2/12 + 0.5/12, "feet"),
  43702. weight: math.unit(284, "lb"),
  43703. name: "Dressed",
  43704. image: {
  43705. source: "./media/characters/benni-desparque/dressed.svg",
  43706. extra: 1514/1276,
  43707. bottom: 65/1579
  43708. }
  43709. },
  43710. hand: {
  43711. height: math.unit(1.28, "feet"),
  43712. name: "Hand",
  43713. image: {
  43714. source: "./media/characters/benni-desparque/hand.svg"
  43715. }
  43716. },
  43717. foot: {
  43718. height: math.unit(1.53, "feet"),
  43719. name: "Foot",
  43720. image: {
  43721. source: "./media/characters/benni-desparque/foot.svg"
  43722. }
  43723. },
  43724. aiControlUnit: {
  43725. height: math.unit(0.175, "feet"),
  43726. name: "AI Control Unit",
  43727. image: {
  43728. source: "./media/characters/benni-desparque/ai-control-unit.svg"
  43729. }
  43730. },
  43731. },
  43732. [
  43733. {
  43734. name: "Civilian",
  43735. height: math.unit(6 + 2/12, "feet")
  43736. },
  43737. {
  43738. name: "Normal",
  43739. height: math.unit(98, "feet"),
  43740. default: true
  43741. },
  43742. {
  43743. name: "Kaiju Fighter",
  43744. height: math.unit(268, "feet")
  43745. },
  43746. ]
  43747. ))
  43748. characterMakers.push(() => makeCharacter(
  43749. { name: "Maxine", species: ["human"], tags: ["anthro"] },
  43750. {
  43751. front: {
  43752. height: math.unit(5, "feet"),
  43753. weight: math.unit(105, "lb"),
  43754. name: "Front",
  43755. image: {
  43756. source: "./media/characters/maxine/front.svg",
  43757. extra: 1386/1250,
  43758. bottom: 71/1457
  43759. }
  43760. },
  43761. },
  43762. [
  43763. {
  43764. name: "Normal",
  43765. height: math.unit(5, "feet"),
  43766. default: true
  43767. },
  43768. ]
  43769. ))
  43770. characterMakers.push(() => makeCharacter(
  43771. { name: "Scaly", species: ["charizard"], tags: ["anthro"] },
  43772. {
  43773. front: {
  43774. height: math.unit(11 + 7/12, "feet"),
  43775. weight: math.unit(9576, "lb"),
  43776. name: "Front",
  43777. image: {
  43778. source: "./media/characters/scaly/front.svg",
  43779. extra: 888/867,
  43780. bottom: 36/924
  43781. }
  43782. },
  43783. },
  43784. [
  43785. {
  43786. name: "Normal",
  43787. height: math.unit(11 + 7/12, "feet"),
  43788. default: true
  43789. },
  43790. ]
  43791. ))
  43792. characterMakers.push(() => makeCharacter(
  43793. { name: "Saelria", species: ["slime", "dragon"], tags: ["goo"] },
  43794. {
  43795. front: {
  43796. height: math.unit(6 + 3/12, "feet"),
  43797. name: "Front",
  43798. image: {
  43799. source: "./media/characters/saelria/front.svg",
  43800. extra: 1243/1138,
  43801. bottom: 46/1289
  43802. }
  43803. },
  43804. },
  43805. [
  43806. {
  43807. name: "Micro",
  43808. height: math.unit(6, "inches"),
  43809. },
  43810. {
  43811. name: "Normal",
  43812. height: math.unit(6 + 3/12, "feet"),
  43813. default: true
  43814. },
  43815. {
  43816. name: "Macro",
  43817. height: math.unit(25, "feet")
  43818. },
  43819. ]
  43820. ))
  43821. characterMakers.push(() => makeCharacter(
  43822. { name: "Tef", species: ["human", "deity"], tags: ["anthro"] },
  43823. {
  43824. front: {
  43825. height: math.unit(80, "meters"),
  43826. weight: math.unit(7000, "tonnes"),
  43827. name: "Front",
  43828. image: {
  43829. source: "./media/characters/tef/front.svg",
  43830. extra: 2036/1991,
  43831. bottom: 54/2090
  43832. }
  43833. },
  43834. back: {
  43835. height: math.unit(80, "meters"),
  43836. weight: math.unit(7000, "tonnes"),
  43837. name: "Back",
  43838. image: {
  43839. source: "./media/characters/tef/back.svg",
  43840. extra: 2036/1991,
  43841. bottom: 54/2090
  43842. }
  43843. },
  43844. },
  43845. [
  43846. {
  43847. name: "Macro",
  43848. height: math.unit(80, "meters"),
  43849. default: true
  43850. },
  43851. ]
  43852. ))
  43853. characterMakers.push(() => makeCharacter(
  43854. { name: "Rover", species: ["mouse"], tags: ["anthro"] },
  43855. {
  43856. front: {
  43857. height: math.unit(13, "feet"),
  43858. weight: math.unit(6, "tons"),
  43859. name: "Front",
  43860. image: {
  43861. source: "./media/characters/rover/front.svg",
  43862. extra: 1233/1156,
  43863. bottom: 50/1283
  43864. }
  43865. },
  43866. back: {
  43867. height: math.unit(13, "feet"),
  43868. weight: math.unit(6, "tons"),
  43869. name: "Back",
  43870. image: {
  43871. source: "./media/characters/rover/back.svg",
  43872. extra: 1327/1258,
  43873. bottom: 39/1366
  43874. }
  43875. },
  43876. },
  43877. [
  43878. {
  43879. name: "Normal",
  43880. height: math.unit(13, "feet"),
  43881. default: true
  43882. },
  43883. {
  43884. name: "Macro",
  43885. height: math.unit(1300, "feet")
  43886. },
  43887. {
  43888. name: "Megamacro",
  43889. height: math.unit(1300, "miles")
  43890. },
  43891. {
  43892. name: "Gigamacro",
  43893. height: math.unit(1300000, "miles")
  43894. },
  43895. ]
  43896. ))
  43897. characterMakers.push(() => makeCharacter(
  43898. { name: "Ariz", species: ["peacekeeper"], tags: ["anthro"] },
  43899. {
  43900. front: {
  43901. height: math.unit(10, "feet"),
  43902. weight: math.unit(500, "lb"),
  43903. name: "Front",
  43904. image: {
  43905. source: "./media/characters/ariz/front.svg",
  43906. extra: 461/450,
  43907. bottom: 16/477
  43908. }
  43909. },
  43910. },
  43911. [
  43912. {
  43913. name: "MiniMacro",
  43914. height: math.unit(10, "feet"),
  43915. default: true
  43916. },
  43917. ]
  43918. ))
  43919. characterMakers.push(() => makeCharacter(
  43920. { name: "Sigrun", species: ["peacekeeper"], tags: ["anthro"] },
  43921. {
  43922. front: {
  43923. height: math.unit(6, "feet"),
  43924. weight: math.unit(140, "lb"),
  43925. name: "Front",
  43926. image: {
  43927. source: "./media/characters/sigrun/front.svg",
  43928. extra: 1418/1359,
  43929. bottom: 27/1445
  43930. }
  43931. },
  43932. },
  43933. [
  43934. {
  43935. name: "Macro",
  43936. height: math.unit(35, "feet"),
  43937. default: true
  43938. },
  43939. ]
  43940. ))
  43941. characterMakers.push(() => makeCharacter(
  43942. { name: "Numin", species: ["peacekeeper"], tags: ["anthro"] },
  43943. {
  43944. front: {
  43945. height: math.unit(6, "feet"),
  43946. weight: math.unit(150, "lb"),
  43947. name: "Front",
  43948. image: {
  43949. source: "./media/characters/numin/front.svg",
  43950. extra: 1433/1388,
  43951. bottom: 12/1445
  43952. }
  43953. },
  43954. },
  43955. [
  43956. {
  43957. name: "Macro",
  43958. height: math.unit(21.5, "km"),
  43959. default: true
  43960. },
  43961. ]
  43962. ))
  43963. characterMakers.push(() => makeCharacter(
  43964. { name: "Melwa", species: ["kaiju"], tags: ["anthro"] },
  43965. {
  43966. front: {
  43967. height: math.unit(6, "feet"),
  43968. weight: math.unit(463, "lb"),
  43969. name: "Front",
  43970. image: {
  43971. source: "./media/characters/melwa/front.svg",
  43972. extra: 1307/1248,
  43973. bottom: 93/1400
  43974. }
  43975. },
  43976. },
  43977. [
  43978. {
  43979. name: "Macro",
  43980. height: math.unit(50, "meters"),
  43981. default: true
  43982. },
  43983. ]
  43984. ))
  43985. characterMakers.push(() => makeCharacter(
  43986. { name: "Zorkaiju", species: ["kaiju", "cat"], tags: ["anthro"] },
  43987. {
  43988. front: {
  43989. height: math.unit(325, "feet"),
  43990. name: "Front",
  43991. image: {
  43992. source: "./media/characters/zorkaiju/front.svg",
  43993. extra: 1955/1814,
  43994. bottom: 40/1995
  43995. }
  43996. },
  43997. frontExtended: {
  43998. height: math.unit(325, "feet"),
  43999. name: "Front (Extended)",
  44000. image: {
  44001. source: "./media/characters/zorkaiju/front-extended.svg",
  44002. extra: 1955/1814,
  44003. bottom: 40/1995
  44004. }
  44005. },
  44006. side: {
  44007. height: math.unit(325, "feet"),
  44008. name: "Side",
  44009. image: {
  44010. source: "./media/characters/zorkaiju/side.svg",
  44011. extra: 1495/1396,
  44012. bottom: 17/1512
  44013. }
  44014. },
  44015. sideExtended: {
  44016. height: math.unit(325, "feet"),
  44017. name: "Side (Extended)",
  44018. image: {
  44019. source: "./media/characters/zorkaiju/side-extended.svg",
  44020. extra: 1495/1396,
  44021. bottom: 17/1512
  44022. }
  44023. },
  44024. back: {
  44025. height: math.unit(325, "feet"),
  44026. name: "Back",
  44027. image: {
  44028. source: "./media/characters/zorkaiju/back.svg",
  44029. extra: 1959/1821,
  44030. bottom: 31/1990
  44031. }
  44032. },
  44033. backExtended: {
  44034. height: math.unit(325, "feet"),
  44035. name: "Back (Extended)",
  44036. image: {
  44037. source: "./media/characters/zorkaiju/back-extended.svg",
  44038. extra: 1959/1821,
  44039. bottom: 31/1990
  44040. }
  44041. },
  44042. hand: {
  44043. height: math.unit(58.4, "feet"),
  44044. name: "Hand",
  44045. image: {
  44046. source: "./media/characters/zorkaiju/hand.svg"
  44047. }
  44048. },
  44049. handExtended: {
  44050. height: math.unit(61.4, "feet"),
  44051. name: "Hand (Extended)",
  44052. image: {
  44053. source: "./media/characters/zorkaiju/hand-extended.svg"
  44054. }
  44055. },
  44056. foot: {
  44057. height: math.unit(95, "feet"),
  44058. name: "Foot",
  44059. image: {
  44060. source: "./media/characters/zorkaiju/foot.svg"
  44061. }
  44062. },
  44063. leftArm: {
  44064. height: math.unit(59, "feet"),
  44065. name: "Left Arm",
  44066. image: {
  44067. source: "./media/characters/zorkaiju/left-arm.svg"
  44068. }
  44069. },
  44070. rightArm: {
  44071. height: math.unit(59, "feet"),
  44072. name: "Right Arm",
  44073. image: {
  44074. source: "./media/characters/zorkaiju/right-arm.svg"
  44075. }
  44076. },
  44077. leftArmExtended: {
  44078. height: math.unit(59 * 1.033546, "feet"),
  44079. name: "Left Arm (Extended)",
  44080. image: {
  44081. source: "./media/characters/zorkaiju/left-arm-extended.svg"
  44082. }
  44083. },
  44084. rightArmExtended: {
  44085. height: math.unit(59 * 1.0496, "feet"),
  44086. name: "Right Arm (Extended)",
  44087. image: {
  44088. source: "./media/characters/zorkaiju/right-arm-extended.svg"
  44089. }
  44090. },
  44091. tail: {
  44092. height: math.unit(104, "feet"),
  44093. name: "Tail",
  44094. image: {
  44095. source: "./media/characters/zorkaiju/tail.svg"
  44096. }
  44097. },
  44098. tailExtended: {
  44099. height: math.unit(104, "feet"),
  44100. name: "Tail (Extended)",
  44101. image: {
  44102. source: "./media/characters/zorkaiju/tail-extended.svg"
  44103. }
  44104. },
  44105. tailBottom: {
  44106. height: math.unit(104, "feet"),
  44107. name: "Tail Bottom",
  44108. image: {
  44109. source: "./media/characters/zorkaiju/tail-bottom.svg"
  44110. }
  44111. },
  44112. crystal: {
  44113. height: math.unit(27.54, "feet"),
  44114. name: "Crystal",
  44115. image: {
  44116. source: "./media/characters/zorkaiju/crystal.svg"
  44117. }
  44118. },
  44119. },
  44120. [
  44121. {
  44122. name: "Kaiju",
  44123. height: math.unit(325, "feet"),
  44124. default: true
  44125. },
  44126. ]
  44127. ))
  44128. characterMakers.push(() => makeCharacter(
  44129. { name: "Bailey Belfry", species: ["townsend-big-eared-bat"], tags: ["anthro"] },
  44130. {
  44131. front: {
  44132. height: math.unit(6 + 1/12, "feet"),
  44133. weight: math.unit(115, "lb"),
  44134. name: "Front",
  44135. image: {
  44136. source: "./media/characters/bailey-belfry/front.svg",
  44137. extra: 1240/1121,
  44138. bottom: 101/1341
  44139. }
  44140. },
  44141. },
  44142. [
  44143. {
  44144. name: "Normal",
  44145. height: math.unit(6 + 1/12, "feet"),
  44146. default: true
  44147. },
  44148. ]
  44149. ))
  44150. characterMakers.push(() => makeCharacter(
  44151. { name: "Blacky", species: ["cat", "dragon"], tags: ["feral"] },
  44152. {
  44153. side: {
  44154. height: math.unit(4, "meters"),
  44155. weight: math.unit(250, "kg"),
  44156. name: "Side",
  44157. image: {
  44158. source: "./media/characters/blacky/side.svg",
  44159. extra: 1027/919,
  44160. bottom: 43/1070
  44161. }
  44162. },
  44163. maw: {
  44164. height: math.unit(1, "meters"),
  44165. name: "Maw",
  44166. image: {
  44167. source: "./media/characters/blacky/maw.svg"
  44168. }
  44169. },
  44170. paw: {
  44171. height: math.unit(1, "meters"),
  44172. name: "Paw",
  44173. image: {
  44174. source: "./media/characters/blacky/paw.svg"
  44175. }
  44176. },
  44177. },
  44178. [
  44179. {
  44180. name: "Normal",
  44181. height: math.unit(4, "meters"),
  44182. default: true
  44183. },
  44184. ]
  44185. ))
  44186. characterMakers.push(() => makeCharacter(
  44187. { name: "Thux-Ei", species: ["fox"], tags: ["anthro"] },
  44188. {
  44189. front: {
  44190. height: math.unit(170, "cm"),
  44191. weight: math.unit(66, "kg"),
  44192. name: "Front",
  44193. image: {
  44194. source: "./media/characters/thux-ei/front.svg",
  44195. extra: 1109/1011,
  44196. bottom: 8/1117
  44197. }
  44198. },
  44199. },
  44200. [
  44201. {
  44202. name: "Normal",
  44203. height: math.unit(170, "cm"),
  44204. default: true
  44205. },
  44206. ]
  44207. ))
  44208. characterMakers.push(() => makeCharacter(
  44209. { name: "Roxanne Voltaire", species: ["jaguar"], tags: ["anthro"] },
  44210. {
  44211. front: {
  44212. height: math.unit(5, "feet"),
  44213. weight: math.unit(120, "lb"),
  44214. name: "Front",
  44215. image: {
  44216. source: "./media/characters/roxanne-voltaire/front.svg",
  44217. extra: 1901/1779,
  44218. bottom: 53/1954
  44219. }
  44220. },
  44221. },
  44222. [
  44223. {
  44224. name: "Normal",
  44225. height: math.unit(5, "feet"),
  44226. default: true
  44227. },
  44228. {
  44229. name: "Giant",
  44230. height: math.unit(50, "feet")
  44231. },
  44232. {
  44233. name: "Titan",
  44234. height: math.unit(500, "feet")
  44235. },
  44236. {
  44237. name: "Macro",
  44238. height: math.unit(5000, "feet")
  44239. },
  44240. {
  44241. name: "Megamacro",
  44242. height: math.unit(50000, "feet")
  44243. },
  44244. {
  44245. name: "Gigamacro",
  44246. height: math.unit(500000, "feet")
  44247. },
  44248. {
  44249. name: "Teramacro",
  44250. height: math.unit(5e6, "feet")
  44251. },
  44252. ]
  44253. ))
  44254. characterMakers.push(() => makeCharacter(
  44255. { name: "Squeaks", species: ["rough-collie"], tags: ["anthro"] },
  44256. {
  44257. front: {
  44258. height: math.unit(6 + 2/12, "feet"),
  44259. name: "Front",
  44260. image: {
  44261. source: "./media/characters/squeaks/front.svg",
  44262. extra: 1823/1768,
  44263. bottom: 138/1961
  44264. }
  44265. },
  44266. },
  44267. [
  44268. {
  44269. name: "Micro",
  44270. height: math.unit(0.5, "inches")
  44271. },
  44272. {
  44273. name: "Normal",
  44274. height: math.unit(6 + 2/12, "feet"),
  44275. default: true
  44276. },
  44277. {
  44278. name: "Macro",
  44279. height: math.unit(600, "feet")
  44280. },
  44281. ]
  44282. ))
  44283. characterMakers.push(() => makeCharacter(
  44284. { name: "Archinger", species: ["squirrel"], tags: ["anthro"] },
  44285. {
  44286. front: {
  44287. height: math.unit(1.72, "meters"),
  44288. name: "Front",
  44289. image: {
  44290. source: "./media/characters/archinger/front.svg",
  44291. extra: 1861/1675,
  44292. bottom: 125/1986
  44293. }
  44294. },
  44295. back: {
  44296. height: math.unit(1.72, "meters"),
  44297. name: "Back",
  44298. image: {
  44299. source: "./media/characters/archinger/back.svg",
  44300. extra: 1844/1701,
  44301. bottom: 104/1948
  44302. }
  44303. },
  44304. cock: {
  44305. height: math.unit(0.59, "feet"),
  44306. name: "Cock",
  44307. image: {
  44308. source: "./media/characters/archinger/cock.svg"
  44309. }
  44310. },
  44311. },
  44312. [
  44313. {
  44314. name: "Normal",
  44315. height: math.unit(1.72, "meters"),
  44316. default: true
  44317. },
  44318. {
  44319. name: "Macro",
  44320. height: math.unit(84, "meters")
  44321. },
  44322. {
  44323. name: "Macro+",
  44324. height: math.unit(112, "meters")
  44325. },
  44326. {
  44327. name: "Macro++",
  44328. height: math.unit(960, "meters")
  44329. },
  44330. {
  44331. name: "Macro+++",
  44332. height: math.unit(4, "km")
  44333. },
  44334. {
  44335. name: "Macro++++",
  44336. height: math.unit(48, "km")
  44337. },
  44338. {
  44339. name: "Macro+++++",
  44340. height: math.unit(4500, "km")
  44341. },
  44342. ]
  44343. ))
  44344. characterMakers.push(() => makeCharacter(
  44345. { name: "Alsnapz", species: ["avian"], tags: ["anthro"] },
  44346. {
  44347. front: {
  44348. height: math.unit(5 + 5/12, "feet"),
  44349. name: "Front",
  44350. image: {
  44351. source: "./media/characters/alsnapz/front.svg",
  44352. extra: 1157/1065,
  44353. bottom: 42/1199
  44354. }
  44355. },
  44356. },
  44357. [
  44358. {
  44359. name: "Normal",
  44360. height: math.unit(5 + 5/12, "feet"),
  44361. default: true
  44362. },
  44363. ]
  44364. ))
  44365. characterMakers.push(() => makeCharacter(
  44366. { name: "Mag", species: ["magpie"], tags: ["feral"] },
  44367. {
  44368. side: {
  44369. height: math.unit(3.2, "earths"),
  44370. name: "Side",
  44371. image: {
  44372. source: "./media/characters/mag/side.svg",
  44373. extra: 1331/1008,
  44374. bottom: 52/1383
  44375. }
  44376. },
  44377. wing: {
  44378. height: math.unit(1.94, "earths"),
  44379. name: "Wing",
  44380. image: {
  44381. source: "./media/characters/mag/wing.svg"
  44382. }
  44383. },
  44384. dick: {
  44385. height: math.unit(1.8, "earths"),
  44386. name: "Dick",
  44387. image: {
  44388. source: "./media/characters/mag/dick.svg"
  44389. }
  44390. },
  44391. ass: {
  44392. height: math.unit(1.33, "earths"),
  44393. name: "Ass",
  44394. image: {
  44395. source: "./media/characters/mag/ass.svg"
  44396. }
  44397. },
  44398. head: {
  44399. height: math.unit(1.1, "earths"),
  44400. name: "Head",
  44401. image: {
  44402. source: "./media/characters/mag/head.svg"
  44403. }
  44404. },
  44405. maw: {
  44406. height: math.unit(1.62, "earths"),
  44407. name: "Maw",
  44408. image: {
  44409. source: "./media/characters/mag/maw.svg"
  44410. }
  44411. },
  44412. },
  44413. [
  44414. {
  44415. name: "Small",
  44416. height: math.unit(162, "feet")
  44417. },
  44418. {
  44419. name: "Normal",
  44420. height: math.unit(3.2, "earths"),
  44421. default: true
  44422. },
  44423. ]
  44424. ))
  44425. characterMakers.push(() => makeCharacter(
  44426. { name: "Vorrel Harroc", species: ["t-rex"], tags: ["anthro"] },
  44427. {
  44428. front: {
  44429. height: math.unit(512, "feet"),
  44430. weight: math.unit(63509, "tonnes"),
  44431. name: "Front",
  44432. image: {
  44433. source: "./media/characters/vorrel-harroc/front.svg",
  44434. extra: 1075/1063,
  44435. bottom: 62/1137
  44436. }
  44437. },
  44438. },
  44439. [
  44440. {
  44441. name: "Normal",
  44442. height: math.unit(10, "feet")
  44443. },
  44444. {
  44445. name: "Macro",
  44446. height: math.unit(512, "feet"),
  44447. default: true
  44448. },
  44449. {
  44450. name: "Megamacro",
  44451. height: math.unit(256, "miles")
  44452. },
  44453. {
  44454. name: "Gigamacro",
  44455. height: math.unit(4096, "miles")
  44456. },
  44457. ]
  44458. ))
  44459. characterMakers.push(() => makeCharacter(
  44460. { name: "Froimar", species: ["eastern-dragon"], tags: ["anthro"] },
  44461. {
  44462. side: {
  44463. height: math.unit(50, "feet"),
  44464. name: "Side",
  44465. image: {
  44466. source: "./media/characters/froimar/side.svg",
  44467. extra: 855/638,
  44468. bottom: 99/954
  44469. }
  44470. },
  44471. },
  44472. [
  44473. {
  44474. name: "Macro",
  44475. height: math.unit(50, "feet"),
  44476. default: true
  44477. },
  44478. ]
  44479. ))
  44480. characterMakers.push(() => makeCharacter(
  44481. { name: "Timothy", species: ["rabbit"], tags: ["anthro"] },
  44482. {
  44483. front: {
  44484. height: math.unit(210, "miles"),
  44485. name: "Front",
  44486. image: {
  44487. source: "./media/characters/timothy/front.svg",
  44488. extra: 1007/943,
  44489. bottom: 62/1069
  44490. }
  44491. },
  44492. frontSkirt: {
  44493. height: math.unit(210, "miles"),
  44494. name: "Front (Skirt)",
  44495. image: {
  44496. source: "./media/characters/timothy/front-skirt.svg",
  44497. extra: 1007/943,
  44498. bottom: 62/1069
  44499. }
  44500. },
  44501. frontCoat: {
  44502. height: math.unit(210, "miles"),
  44503. name: "Front (Coat)",
  44504. image: {
  44505. source: "./media/characters/timothy/front-coat.svg",
  44506. extra: 1007/943,
  44507. bottom: 62/1069
  44508. }
  44509. },
  44510. },
  44511. [
  44512. {
  44513. name: "Macro",
  44514. height: math.unit(210, "miles"),
  44515. default: true
  44516. },
  44517. {
  44518. name: "Megamacro",
  44519. height: math.unit(210000, "miles")
  44520. },
  44521. ]
  44522. ))
  44523. characterMakers.push(() => makeCharacter(
  44524. { name: "Pyotr", species: ["fox"], tags: ["anthro"] },
  44525. {
  44526. front: {
  44527. height: math.unit(188, "feet"),
  44528. name: "Front",
  44529. image: {
  44530. source: "./media/characters/pyotr/front.svg",
  44531. extra: 1912/1826,
  44532. bottom: 18/1930
  44533. }
  44534. },
  44535. },
  44536. [
  44537. {
  44538. name: "Macro",
  44539. height: math.unit(188, "feet"),
  44540. default: true
  44541. },
  44542. {
  44543. name: "Megamacro",
  44544. height: math.unit(8, "miles")
  44545. },
  44546. ]
  44547. ))
  44548. characterMakers.push(() => makeCharacter(
  44549. { name: "Ackart", species: ["fox"], tags: ["taur"] },
  44550. {
  44551. side: {
  44552. height: math.unit(10, "feet"),
  44553. weight: math.unit(4500, "lb"),
  44554. name: "Side",
  44555. image: {
  44556. source: "./media/characters/ackart/side.svg",
  44557. extra: 1776/1668,
  44558. bottom: 116/1892
  44559. }
  44560. },
  44561. },
  44562. [
  44563. {
  44564. name: "Normal",
  44565. height: math.unit(10, "feet"),
  44566. default: true
  44567. },
  44568. ]
  44569. ))
  44570. characterMakers.push(() => makeCharacter(
  44571. { name: "Nolow", species: ["cheetah"], tags: ["taur"] },
  44572. {
  44573. side: {
  44574. height: math.unit(21, "feet"),
  44575. name: "Side",
  44576. image: {
  44577. source: "./media/characters/nolow/side.svg",
  44578. extra: 1484/1434,
  44579. bottom: 85/1569
  44580. }
  44581. },
  44582. sideErect: {
  44583. height: math.unit(21, "feet"),
  44584. name: "Side (Erect)",
  44585. image: {
  44586. source: "./media/characters/nolow/side-erect.svg",
  44587. extra: 1484/1434,
  44588. bottom: 85/1569
  44589. }
  44590. },
  44591. },
  44592. [
  44593. {
  44594. name: "Regular",
  44595. height: math.unit(12, "feet")
  44596. },
  44597. {
  44598. name: "Big Chee",
  44599. height: math.unit(21, "feet"),
  44600. default: true
  44601. },
  44602. ]
  44603. ))
  44604. characterMakers.push(() => makeCharacter(
  44605. { name: "Nines", species: ["kitsune"], tags: ["anthro"] },
  44606. {
  44607. front: {
  44608. height: math.unit(7, "feet"),
  44609. weight: math.unit(250, "lb"),
  44610. name: "Front",
  44611. image: {
  44612. source: "./media/characters/nines/front.svg",
  44613. extra: 1741/1607,
  44614. bottom: 41/1782
  44615. }
  44616. },
  44617. side: {
  44618. height: math.unit(7, "feet"),
  44619. weight: math.unit(250, "lb"),
  44620. name: "Side",
  44621. image: {
  44622. source: "./media/characters/nines/side.svg",
  44623. extra: 1854/1735,
  44624. bottom: 93/1947
  44625. }
  44626. },
  44627. back: {
  44628. height: math.unit(7, "feet"),
  44629. weight: math.unit(250, "lb"),
  44630. name: "Back",
  44631. image: {
  44632. source: "./media/characters/nines/back.svg",
  44633. extra: 1748/1615,
  44634. bottom: 20/1768
  44635. }
  44636. },
  44637. },
  44638. [
  44639. {
  44640. name: "Megamacro",
  44641. height: math.unit(99, "km"),
  44642. default: true
  44643. },
  44644. ]
  44645. ))
  44646. characterMakers.push(() => makeCharacter(
  44647. { name: "Zenith", species: ["civet", "hyena"], tags: ["anthro"] },
  44648. {
  44649. front: {
  44650. height: math.unit(5 + 10/12, "feet"),
  44651. weight: math.unit(210, "lb"),
  44652. name: "Front",
  44653. image: {
  44654. source: "./media/characters/zenith/front.svg",
  44655. extra: 1531/1452,
  44656. bottom: 198/1729
  44657. }
  44658. },
  44659. back: {
  44660. height: math.unit(5 + 10/12, "feet"),
  44661. weight: math.unit(210, "lb"),
  44662. name: "Back",
  44663. image: {
  44664. source: "./media/characters/zenith/back.svg",
  44665. extra: 1571/1487,
  44666. bottom: 75/1646
  44667. }
  44668. },
  44669. },
  44670. [
  44671. {
  44672. name: "Normal",
  44673. height: math.unit(5 + 10/12, "feet"),
  44674. default: true
  44675. }
  44676. ]
  44677. ))
  44678. characterMakers.push(() => makeCharacter(
  44679. { name: "Jasper", species: ["cat"], tags: ["anthro"] },
  44680. {
  44681. front: {
  44682. height: math.unit(4, "feet"),
  44683. weight: math.unit(60, "lb"),
  44684. name: "Front",
  44685. image: {
  44686. source: "./media/characters/jasper/front.svg",
  44687. extra: 1450/1379,
  44688. bottom: 19/1469
  44689. }
  44690. },
  44691. },
  44692. [
  44693. {
  44694. name: "Normal",
  44695. height: math.unit(4, "feet"),
  44696. default: true
  44697. },
  44698. ]
  44699. ))
  44700. characterMakers.push(() => makeCharacter(
  44701. { name: "Tiberius Thyben", species: ["raccoon"], tags: ["anthro"] },
  44702. {
  44703. front: {
  44704. height: math.unit(6 + 5/12, "feet"),
  44705. weight: math.unit(290, "lb"),
  44706. name: "Front",
  44707. image: {
  44708. source: "./media/characters/tiberius-thyben/front.svg",
  44709. extra: 757/739,
  44710. bottom: 39/796
  44711. }
  44712. },
  44713. },
  44714. [
  44715. {
  44716. name: "Micro",
  44717. height: math.unit(1.5, "inches")
  44718. },
  44719. {
  44720. name: "Normal",
  44721. height: math.unit(6 + 5/12, "feet"),
  44722. default: true
  44723. },
  44724. {
  44725. name: "Macro",
  44726. height: math.unit(300, "feet")
  44727. },
  44728. ]
  44729. ))
  44730. characterMakers.push(() => makeCharacter(
  44731. { name: "Sabre", species: ["jackal"], tags: ["anthro"] },
  44732. {
  44733. front: {
  44734. height: math.unit(5 + 6/12, "feet"),
  44735. weight: math.unit(60, "kg"),
  44736. name: "Front",
  44737. image: {
  44738. source: "./media/characters/sabre/front.svg",
  44739. extra: 738/671,
  44740. bottom: 27/765
  44741. }
  44742. },
  44743. },
  44744. [
  44745. {
  44746. name: "Teeny",
  44747. height: math.unit(2, "inches")
  44748. },
  44749. {
  44750. name: "Smol",
  44751. height: math.unit(8, "inches")
  44752. },
  44753. {
  44754. name: "Normal",
  44755. height: math.unit(5 + 6/12, "feet"),
  44756. default: true
  44757. },
  44758. {
  44759. name: "Mini-Macro",
  44760. height: math.unit(15, "feet")
  44761. },
  44762. {
  44763. name: "Macro",
  44764. height: math.unit(50, "feet")
  44765. },
  44766. ]
  44767. ))
  44768. characterMakers.push(() => makeCharacter(
  44769. { name: "Charlie", species: ["deer"], tags: ["anthro"] },
  44770. {
  44771. front: {
  44772. height: math.unit(6 + 4/12, "feet"),
  44773. weight: math.unit(170, "lb"),
  44774. name: "Front",
  44775. image: {
  44776. source: "./media/characters/charlie/front.svg",
  44777. extra: 1348/1228,
  44778. bottom: 15/1363
  44779. }
  44780. },
  44781. },
  44782. [
  44783. {
  44784. name: "Macro",
  44785. height: math.unit(1700, "meters"),
  44786. default: true
  44787. },
  44788. {
  44789. name: "MegaMacro",
  44790. height: math.unit(20400, "meters")
  44791. },
  44792. ]
  44793. ))
  44794. characterMakers.push(() => makeCharacter(
  44795. { name: "Susan Grant", species: ["human"], tags: ["anthro"] },
  44796. {
  44797. front: {
  44798. height: math.unit(1.96, "meters"),
  44799. weight: math.unit(220, "lb"),
  44800. name: "Front",
  44801. image: {
  44802. source: "./media/characters/susan-grant/front.svg",
  44803. extra: 482/478,
  44804. bottom: 7/489
  44805. }
  44806. },
  44807. },
  44808. [
  44809. {
  44810. name: "Normal",
  44811. height: math.unit(1.96, "meters"),
  44812. default: true
  44813. },
  44814. {
  44815. name: "Macro",
  44816. height: math.unit(76.2, "meters")
  44817. },
  44818. {
  44819. name: "MegaMacro",
  44820. height: math.unit(305, "meters")
  44821. },
  44822. {
  44823. name: "GigaMacro",
  44824. height: math.unit(1220, "meters")
  44825. },
  44826. {
  44827. name: "SuperMacro",
  44828. height: math.unit(4878, "meters")
  44829. },
  44830. ]
  44831. ))
  44832. characterMakers.push(() => makeCharacter(
  44833. { name: "Axel Isanov", species: ["human"], tags: ["anthro"] },
  44834. {
  44835. front: {
  44836. height: math.unit(5 + 4/12, "feet"),
  44837. weight: math.unit(110, "lb"),
  44838. name: "Front",
  44839. image: {
  44840. source: "./media/characters/axel-isanov/front.svg",
  44841. extra: 1096/1065,
  44842. bottom: 13/1109
  44843. }
  44844. },
  44845. },
  44846. [
  44847. {
  44848. name: "Normal",
  44849. height: math.unit(5 + 4/12, "feet"),
  44850. default: true
  44851. },
  44852. ]
  44853. ))
  44854. characterMakers.push(() => makeCharacter(
  44855. { name: "Necahual", species: ["cat"], tags: ["anthro"] },
  44856. {
  44857. front: {
  44858. height: math.unit(9, "feet"),
  44859. weight: math.unit(467, "lb"),
  44860. name: "Front",
  44861. image: {
  44862. source: "./media/characters/necahual/front.svg",
  44863. extra: 920/873,
  44864. bottom: 26/946
  44865. }
  44866. },
  44867. back: {
  44868. height: math.unit(9, "feet"),
  44869. weight: math.unit(467, "lb"),
  44870. name: "Back",
  44871. image: {
  44872. source: "./media/characters/necahual/back.svg",
  44873. extra: 930/884,
  44874. bottom: 16/946
  44875. }
  44876. },
  44877. frontUnderwear: {
  44878. height: math.unit(9, "feet"),
  44879. weight: math.unit(467, "lb"),
  44880. name: "Front (Underwear)",
  44881. image: {
  44882. source: "./media/characters/necahual/front-underwear.svg",
  44883. extra: 920/873,
  44884. bottom: 26/946
  44885. }
  44886. },
  44887. frontDressed: {
  44888. height: math.unit(9, "feet"),
  44889. weight: math.unit(467, "lb"),
  44890. name: "Front (Dressed)",
  44891. image: {
  44892. source: "./media/characters/necahual/front-dressed.svg",
  44893. extra: 920/873,
  44894. bottom: 26/946
  44895. }
  44896. },
  44897. },
  44898. [
  44899. {
  44900. name: "Comprsesed",
  44901. height: math.unit(9, "feet")
  44902. },
  44903. {
  44904. name: "Natural",
  44905. height: math.unit(15, "feet"),
  44906. default: true
  44907. },
  44908. {
  44909. name: "Boosted",
  44910. height: math.unit(50, "feet")
  44911. },
  44912. {
  44913. name: "Boosted+",
  44914. height: math.unit(150, "feet")
  44915. },
  44916. {
  44917. name: "Max",
  44918. height: math.unit(500, "feet")
  44919. },
  44920. ]
  44921. ))
  44922. characterMakers.push(() => makeCharacter(
  44923. { name: "Theo Acacia", species: ["giraffe"], tags: ["anthro"] },
  44924. {
  44925. front: {
  44926. height: math.unit(22 + 1/12, "feet"),
  44927. weight: math.unit(3200, "lb"),
  44928. name: "Front",
  44929. image: {
  44930. source: "./media/characters/theo-acacia/front.svg",
  44931. extra: 1796/1741,
  44932. bottom: 83/1879
  44933. }
  44934. },
  44935. frontUnderwear: {
  44936. height: math.unit(22 + 1/12, "feet"),
  44937. weight: math.unit(3200, "lb"),
  44938. name: "Front (Underwear)",
  44939. image: {
  44940. source: "./media/characters/theo-acacia/front-underwear.svg",
  44941. extra: 1796/1741,
  44942. bottom: 83/1879
  44943. }
  44944. },
  44945. frontNude: {
  44946. height: math.unit(22 + 1/12, "feet"),
  44947. weight: math.unit(3200, "lb"),
  44948. name: "Front (Nude)",
  44949. image: {
  44950. source: "./media/characters/theo-acacia/front-nude.svg",
  44951. extra: 1796/1741,
  44952. bottom: 83/1879
  44953. }
  44954. },
  44955. },
  44956. [
  44957. {
  44958. name: "Normal",
  44959. height: math.unit(22 + 1/12, "feet"),
  44960. default: true
  44961. },
  44962. ]
  44963. ))
  44964. characterMakers.push(() => makeCharacter(
  44965. { name: "Astra", species: ["jackal", "umbreon"], tags: ["anthro"] },
  44966. {
  44967. front: {
  44968. height: math.unit(20, "feet"),
  44969. name: "Front",
  44970. image: {
  44971. source: "./media/characters/astra/front.svg",
  44972. extra: 1850/1714,
  44973. bottom: 106/1956
  44974. }
  44975. },
  44976. frontUndressed: {
  44977. height: math.unit(20, "feet"),
  44978. name: "Front (Undressed)",
  44979. image: {
  44980. source: "./media/characters/astra/front-undressed.svg",
  44981. extra: 1926/1749,
  44982. bottom: 0/1926
  44983. }
  44984. },
  44985. hand: {
  44986. height: math.unit(1.53, "feet"),
  44987. name: "Hand",
  44988. image: {
  44989. source: "./media/characters/astra/hand.svg"
  44990. }
  44991. },
  44992. paw: {
  44993. height: math.unit(1.53, "feet"),
  44994. name: "Paw",
  44995. image: {
  44996. source: "./media/characters/astra/paw.svg"
  44997. }
  44998. },
  44999. },
  45000. [
  45001. {
  45002. name: "Smallest",
  45003. height: math.unit(20, "feet")
  45004. },
  45005. {
  45006. name: "Normal",
  45007. height: math.unit(1e9, "miles"),
  45008. default: true
  45009. },
  45010. {
  45011. name: "Larger",
  45012. height: math.unit(5, "multiverses")
  45013. },
  45014. {
  45015. name: "Largest",
  45016. height: math.unit(1e9, "multiverses")
  45017. },
  45018. ]
  45019. ))
  45020. characterMakers.push(() => makeCharacter(
  45021. { name: "Breanna", species: ["jackal", "umbreon"], tags: ["anthro"] },
  45022. {
  45023. front: {
  45024. height: math.unit(8, "feet"),
  45025. name: "Front",
  45026. image: {
  45027. source: "./media/characters/breanna/front.svg",
  45028. extra: 1912/1632,
  45029. bottom: 33/1945
  45030. }
  45031. },
  45032. },
  45033. [
  45034. {
  45035. name: "Smallest",
  45036. height: math.unit(8, "feet")
  45037. },
  45038. {
  45039. name: "Normal",
  45040. height: math.unit(1, "mile"),
  45041. default: true
  45042. },
  45043. {
  45044. name: "Maximum",
  45045. height: math.unit(1500000000000, "lightyears")
  45046. },
  45047. ]
  45048. ))
  45049. characterMakers.push(() => makeCharacter(
  45050. { name: "Cai", species: ["fox"], tags: ["anthro"] },
  45051. {
  45052. front: {
  45053. height: math.unit(5 + 11/12, "feet"),
  45054. weight: math.unit(155, "lb"),
  45055. name: "Front",
  45056. image: {
  45057. source: "./media/characters/cai/front.svg",
  45058. extra: 1823/1702,
  45059. bottom: 32/1855
  45060. }
  45061. },
  45062. back: {
  45063. height: math.unit(5 + 11/12, "feet"),
  45064. weight: math.unit(155, "lb"),
  45065. name: "Back",
  45066. image: {
  45067. source: "./media/characters/cai/back.svg",
  45068. extra: 1809/1708,
  45069. bottom: 31/1840
  45070. }
  45071. },
  45072. },
  45073. [
  45074. {
  45075. name: "Normal",
  45076. height: math.unit(5 + 11/12, "feet"),
  45077. default: true
  45078. },
  45079. {
  45080. name: "Big",
  45081. height: math.unit(15, "feet")
  45082. },
  45083. {
  45084. name: "Macro",
  45085. height: math.unit(200, "feet")
  45086. },
  45087. ]
  45088. ))
  45089. characterMakers.push(() => makeCharacter(
  45090. { name: "Zanna Virtuedòttir", species: ["tiefling"], tags: ["anthro"] },
  45091. {
  45092. front: {
  45093. height: math.unit(5 + 6/12, "feet"),
  45094. weight: math.unit(160, "lb"),
  45095. name: "Front",
  45096. image: {
  45097. source: "./media/characters/zanna-virtuedòttir/front.svg",
  45098. extra: 1227/1174,
  45099. bottom: 37/1264
  45100. }
  45101. },
  45102. },
  45103. [
  45104. {
  45105. name: "Macro",
  45106. height: math.unit(444, "meters"),
  45107. default: true
  45108. },
  45109. ]
  45110. ))
  45111. characterMakers.push(() => makeCharacter(
  45112. { name: "Rex", species: ["dragon"], tags: ["anthro"] },
  45113. {
  45114. front: {
  45115. height: math.unit(18 + 7/12, "feet"),
  45116. name: "Front",
  45117. image: {
  45118. source: "./media/characters/rex/front.svg",
  45119. extra: 1941/1807,
  45120. bottom: 66/2007
  45121. }
  45122. },
  45123. back: {
  45124. height: math.unit(18 + 7/12, "feet"),
  45125. name: "Back",
  45126. image: {
  45127. source: "./media/characters/rex/back.svg",
  45128. extra: 1937/1822,
  45129. bottom: 42/1979
  45130. }
  45131. },
  45132. boot: {
  45133. height: math.unit(3.45, "feet"),
  45134. name: "Boot",
  45135. image: {
  45136. source: "./media/characters/rex/boot.svg"
  45137. }
  45138. },
  45139. paw: {
  45140. height: math.unit(4.17, "feet"),
  45141. name: "Paw",
  45142. image: {
  45143. source: "./media/characters/rex/paw.svg"
  45144. }
  45145. },
  45146. head: {
  45147. height: math.unit(6.728, "feet"),
  45148. name: "Head",
  45149. image: {
  45150. source: "./media/characters/rex/head.svg"
  45151. }
  45152. },
  45153. },
  45154. [
  45155. {
  45156. name: "Nano",
  45157. height: math.unit(18 + 7/12, "feet")
  45158. },
  45159. {
  45160. name: "Micro",
  45161. height: math.unit(1.5, "megameters")
  45162. },
  45163. {
  45164. name: "Normal",
  45165. height: math.unit(440, "megameters"),
  45166. default: true
  45167. },
  45168. {
  45169. name: "Macro",
  45170. height: math.unit(2.5, "gigameters")
  45171. },
  45172. {
  45173. name: "Gigamacro",
  45174. height: math.unit(2, "galaxies")
  45175. },
  45176. ]
  45177. ))
  45178. characterMakers.push(() => makeCharacter(
  45179. { name: "Silverwing", species: ["lugia"], tags: ["feral"] },
  45180. {
  45181. side: {
  45182. height: math.unit(32, "feet"),
  45183. weight: math.unit(250000, "lb"),
  45184. name: "Side",
  45185. image: {
  45186. source: "./media/characters/silverwing/side.svg",
  45187. extra: 1100/1019,
  45188. bottom: 204/1304
  45189. }
  45190. },
  45191. },
  45192. [
  45193. {
  45194. name: "Normal",
  45195. height: math.unit(32, "feet"),
  45196. default: true
  45197. },
  45198. ]
  45199. ))
  45200. characterMakers.push(() => makeCharacter(
  45201. { name: "Tristan Hawthorne", species: ["skunk", "raichu", "umbreon"], tags: ["anthro"] },
  45202. {
  45203. skunkFront: {
  45204. height: math.unit(4 + 6/12, "feet"),
  45205. weight: math.unit(120, "lb"),
  45206. name: "Front",
  45207. image: {
  45208. source: "./media/characters/tristan-hawthorne/skunk-front.svg",
  45209. extra: 330/318,
  45210. bottom: 25/355
  45211. },
  45212. form: "skunk",
  45213. default: true
  45214. },
  45215. alolanUmbraichu_front: {
  45216. height: math.unit(2 + 6/12, "feet"),
  45217. name: "Front",
  45218. image: {
  45219. source: "./media/characters/tristan-hawthorne/alolan-umbraichu-front.svg",
  45220. extra: 389/350,
  45221. bottom: 33/422
  45222. },
  45223. form: "alolan-umbraichu",
  45224. default: true
  45225. },
  45226. },
  45227. [
  45228. {
  45229. name: "Normal",
  45230. height: math.unit(4 + 6/12, "feet"),
  45231. form: "skunk",
  45232. default: true
  45233. },
  45234. {
  45235. name: "Normal",
  45236. height: math.unit(2 + 6/12, "feet"),
  45237. form: "alolan-umbraichu",
  45238. default: true
  45239. },
  45240. ],
  45241. {
  45242. "skunk": {
  45243. name: "Skunk",
  45244. default: true
  45245. },
  45246. "alolan-umbraichu": {
  45247. name: "Alolan Umbraichu",
  45248. },
  45249. }
  45250. ))
  45251. characterMakers.push(() => makeCharacter(
  45252. { name: "Mizu", species: ["sika-deer"], tags: ["anthro"] },
  45253. {
  45254. front: {
  45255. height: math.unit(5 + 11/12, "feet"),
  45256. weight: math.unit(190, "lb"),
  45257. name: "Front",
  45258. image: {
  45259. source: "./media/characters/mizu/front.svg",
  45260. extra: 1988/1788,
  45261. bottom: 14/2002
  45262. }
  45263. },
  45264. },
  45265. [
  45266. {
  45267. name: "Normal",
  45268. height: math.unit(5 + 11/12, "feet"),
  45269. default: true
  45270. },
  45271. ]
  45272. ))
  45273. characterMakers.push(() => makeCharacter(
  45274. { name: "Dechroma", species: ["dragon", "plant"], tags: ["anthro"] },
  45275. {
  45276. front: {
  45277. height: math.unit(1.7, "feet"),
  45278. weight: math.unit(50, "lb"),
  45279. name: "Front",
  45280. image: {
  45281. source: "./media/characters/dechroma/front.svg",
  45282. extra: 1095/859,
  45283. bottom: 64/1159
  45284. }
  45285. },
  45286. },
  45287. [
  45288. {
  45289. name: "Normal",
  45290. height: math.unit(1.7, "feet"),
  45291. default: true
  45292. },
  45293. ]
  45294. ))
  45295. characterMakers.push(() => makeCharacter(
  45296. { name: "Veluren Thanazel", species: ["dragon"], tags: ["feral"] },
  45297. {
  45298. side: {
  45299. height: math.unit(30, "feet"),
  45300. name: "Side",
  45301. image: {
  45302. source: "./media/characters/veluren-thanazel/side.svg",
  45303. extra: 1611/633,
  45304. bottom: 118/1729
  45305. }
  45306. },
  45307. front: {
  45308. height: math.unit(30, "feet"),
  45309. name: "Front",
  45310. image: {
  45311. source: "./media/characters/veluren-thanazel/front.svg",
  45312. extra: 1486/636,
  45313. bottom: 238/1724
  45314. }
  45315. },
  45316. head: {
  45317. height: math.unit(21.4, "feet"),
  45318. name: "Head",
  45319. image: {
  45320. source: "./media/characters/veluren-thanazel/head.svg"
  45321. }
  45322. },
  45323. genitals: {
  45324. height: math.unit(19.4, "feet"),
  45325. name: "Genitals",
  45326. image: {
  45327. source: "./media/characters/veluren-thanazel/genitals.svg"
  45328. }
  45329. },
  45330. },
  45331. [
  45332. {
  45333. name: "Social",
  45334. height: math.unit(6, "feet")
  45335. },
  45336. {
  45337. name: "Play",
  45338. height: math.unit(12, "feet")
  45339. },
  45340. {
  45341. name: "True",
  45342. height: math.unit(30, "feet"),
  45343. default: true
  45344. },
  45345. ]
  45346. ))
  45347. characterMakers.push(() => makeCharacter(
  45348. { name: "Arcturas", species: ["dragon", "elemental"], tags: ["anthro"] },
  45349. {
  45350. front: {
  45351. height: math.unit(7 + 6/12, "feet"),
  45352. weight: math.unit(500, "kg"),
  45353. name: "Front",
  45354. image: {
  45355. source: "./media/characters/arcturas/front.svg",
  45356. extra: 1700/1500,
  45357. bottom: 145/1845
  45358. }
  45359. },
  45360. },
  45361. [
  45362. {
  45363. name: "Normal",
  45364. height: math.unit(7 + 6/12, "feet"),
  45365. default: true
  45366. },
  45367. ]
  45368. ))
  45369. characterMakers.push(() => makeCharacter(
  45370. { name: "Vitaen", species: ["zorgoia", "vampire"], tags: ["feral"] },
  45371. {
  45372. side: {
  45373. height: math.unit(6, "feet"),
  45374. weight: math.unit(2, "tons"),
  45375. name: "Side",
  45376. image: {
  45377. source: "./media/characters/vitaen/side.svg",
  45378. extra: 1157/617,
  45379. bottom: 122/1279
  45380. }
  45381. },
  45382. },
  45383. [
  45384. {
  45385. name: "Normal",
  45386. height: math.unit(6, "feet"),
  45387. default: true
  45388. },
  45389. ]
  45390. ))
  45391. characterMakers.push(() => makeCharacter(
  45392. { name: "Fia Dreamweaver", species: ["spireborn"], tags: ["anthro"] },
  45393. {
  45394. front: {
  45395. height: math.unit(19, "feet"),
  45396. name: "Front",
  45397. image: {
  45398. source: "./media/characters/fia-dreamweaver/front.svg",
  45399. extra: 1630/1504,
  45400. bottom: 25/1655
  45401. }
  45402. },
  45403. },
  45404. [
  45405. {
  45406. name: "Normal",
  45407. height: math.unit(19, "feet"),
  45408. default: true
  45409. },
  45410. ]
  45411. ))
  45412. characterMakers.push(() => makeCharacter(
  45413. { name: "Artan", species: ["fennec-fox"], tags: ["anthro"] },
  45414. {
  45415. front: {
  45416. height: math.unit(5 + 4/12, "feet"),
  45417. name: "Front",
  45418. image: {
  45419. source: "./media/characters/artan/front.svg",
  45420. extra: 1618/1535,
  45421. bottom: 46/1664
  45422. }
  45423. },
  45424. back: {
  45425. height: math.unit(5 + 4/12, "feet"),
  45426. name: "Back",
  45427. image: {
  45428. source: "./media/characters/artan/back.svg",
  45429. extra: 1618/1543,
  45430. bottom: 31/1649
  45431. }
  45432. },
  45433. },
  45434. [
  45435. {
  45436. name: "Normal",
  45437. height: math.unit(5 + 4/12, "feet"),
  45438. default: true
  45439. },
  45440. ]
  45441. ))
  45442. characterMakers.push(() => makeCharacter(
  45443. { name: "Silver (Dragon)", species: ["dragon"], tags: ["feral"] },
  45444. {
  45445. side: {
  45446. height: math.unit(182, "cm"),
  45447. weight: math.unit(1000, "lb"),
  45448. name: "Side",
  45449. image: {
  45450. source: "./media/characters/silver-dragon/side.svg",
  45451. extra: 710/287,
  45452. bottom: 88/798
  45453. }
  45454. },
  45455. },
  45456. [
  45457. {
  45458. name: "Normal",
  45459. height: math.unit(182, "cm"),
  45460. default: true
  45461. },
  45462. ]
  45463. ))
  45464. characterMakers.push(() => makeCharacter(
  45465. { name: "Zephyr", species: ["zorgoia"], tags: ["feral"] },
  45466. {
  45467. side: {
  45468. height: math.unit(6 + 6/12, "feet"),
  45469. weight: math.unit(1.5, "tons"),
  45470. name: "Side",
  45471. image: {
  45472. source: "./media/characters/zephyr/side.svg",
  45473. extra: 1436/603,
  45474. bottom: 105/1541
  45475. }
  45476. },
  45477. },
  45478. [
  45479. {
  45480. name: "Normal",
  45481. height: math.unit(6 + 6/12, "feet"),
  45482. default: true
  45483. },
  45484. ]
  45485. ))
  45486. characterMakers.push(() => makeCharacter(
  45487. { name: "Vixye", species: ["extraplanar"], tags: ["anthro"] },
  45488. {
  45489. side: {
  45490. height: math.unit(1, "feet"),
  45491. name: "Side",
  45492. image: {
  45493. source: "./media/characters/vixye/side.svg",
  45494. extra: 632/541,
  45495. bottom: 0/632
  45496. }
  45497. },
  45498. },
  45499. [
  45500. {
  45501. name: "Normal",
  45502. height: math.unit(1, "feet"),
  45503. default: true
  45504. },
  45505. {
  45506. name: "True",
  45507. height: math.unit(1e15, "multiverses")
  45508. },
  45509. ]
  45510. ))
  45511. characterMakers.push(() => makeCharacter(
  45512. { name: "Darla Mac Lochlainn", species: ["bear", "werebeast"], tags: ["anthro"] },
  45513. {
  45514. front: {
  45515. height: math.unit(8 + 2/12, "feet"),
  45516. weight: math.unit(650, "lb"),
  45517. name: "Front",
  45518. image: {
  45519. source: "./media/characters/darla-mac-lochlainn/front.svg",
  45520. extra: 1174/1137,
  45521. bottom: 82/1256
  45522. }
  45523. },
  45524. back: {
  45525. height: math.unit(8 + 2/12, "feet"),
  45526. weight: math.unit(650, "lb"),
  45527. name: "Back",
  45528. image: {
  45529. source: "./media/characters/darla-mac-lochlainn/back.svg",
  45530. extra: 1204/1157,
  45531. bottom: 46/1250
  45532. }
  45533. },
  45534. },
  45535. [
  45536. {
  45537. name: "Wildform",
  45538. height: math.unit(8 + 2/12, "feet"),
  45539. default: true
  45540. },
  45541. ]
  45542. ))
  45543. characterMakers.push(() => makeCharacter(
  45544. { name: "Cyphin", species: ["spireborn"], tags: ["anthro"] },
  45545. {
  45546. front: {
  45547. height: math.unit(18, "feet"),
  45548. name: "Front",
  45549. image: {
  45550. source: "./media/characters/cyphin/front.svg",
  45551. extra: 970/886,
  45552. bottom: 42/1012
  45553. }
  45554. },
  45555. back: {
  45556. height: math.unit(18, "feet"),
  45557. name: "Back",
  45558. image: {
  45559. source: "./media/characters/cyphin/back.svg",
  45560. extra: 1009/894,
  45561. bottom: 24/1033
  45562. }
  45563. },
  45564. head: {
  45565. height: math.unit(5.05, "feet"),
  45566. name: "Head",
  45567. image: {
  45568. source: "./media/characters/cyphin/head.svg"
  45569. }
  45570. },
  45571. tailbud: {
  45572. height: math.unit(5, "feet"),
  45573. name: "Tailbud",
  45574. image: {
  45575. source: "./media/characters/cyphin/tailbud.svg"
  45576. }
  45577. },
  45578. },
  45579. [
  45580. ]
  45581. ))
  45582. characterMakers.push(() => makeCharacter(
  45583. { name: "Raijin", species: ["zorgoia"], tags: ["feral"] },
  45584. {
  45585. side: {
  45586. height: math.unit(10, "feet"),
  45587. weight: math.unit(6, "tons"),
  45588. name: "Side",
  45589. image: {
  45590. source: "./media/characters/raijin/side.svg",
  45591. extra: 1529/613,
  45592. bottom: 337/1866
  45593. }
  45594. },
  45595. },
  45596. [
  45597. {
  45598. name: "Normal",
  45599. height: math.unit(10, "feet"),
  45600. default: true
  45601. },
  45602. ]
  45603. ))
  45604. characterMakers.push(() => makeCharacter(
  45605. { name: "Nilghais", species: ["felkin"], tags: ["feral"] },
  45606. {
  45607. side: {
  45608. height: math.unit(9, "feet"),
  45609. name: "Side",
  45610. image: {
  45611. source: "./media/characters/nilghais/side.svg",
  45612. extra: 1047/744,
  45613. bottom: 91/1138
  45614. }
  45615. },
  45616. head: {
  45617. height: math.unit(3.14, "feet"),
  45618. name: "Head",
  45619. image: {
  45620. source: "./media/characters/nilghais/head.svg"
  45621. }
  45622. },
  45623. mouth: {
  45624. height: math.unit(4.6, "feet"),
  45625. name: "Mouth",
  45626. image: {
  45627. source: "./media/characters/nilghais/mouth.svg"
  45628. }
  45629. },
  45630. wings: {
  45631. height: math.unit(24, "feet"),
  45632. name: "Wings",
  45633. image: {
  45634. source: "./media/characters/nilghais/wings.svg"
  45635. }
  45636. },
  45637. ass: {
  45638. height: math.unit(6.12, "feet"),
  45639. name: "Ass",
  45640. image: {
  45641. source: "./media/characters/nilghais/ass.svg"
  45642. }
  45643. },
  45644. },
  45645. [
  45646. {
  45647. name: "Normal",
  45648. height: math.unit(9, "feet"),
  45649. default: true
  45650. },
  45651. ]
  45652. ))
  45653. characterMakers.push(() => makeCharacter(
  45654. { name: "Zolgar", species: ["alien", "opossum", "bear"], tags: ["anthro"] },
  45655. {
  45656. regular: {
  45657. height: math.unit(16 + 2/12, "feet"),
  45658. weight: math.unit(2300, "lb"),
  45659. name: "Regular",
  45660. image: {
  45661. source: "./media/characters/zolgar/regular.svg",
  45662. extra: 1246/1004,
  45663. bottom: 124/1370
  45664. }
  45665. },
  45666. boxers: {
  45667. height: math.unit(16 + 2/12, "feet"),
  45668. weight: math.unit(2300, "lb"),
  45669. name: "Boxers",
  45670. image: {
  45671. source: "./media/characters/zolgar/boxers.svg",
  45672. extra: 1246/1004,
  45673. bottom: 124/1370
  45674. }
  45675. },
  45676. armored: {
  45677. height: math.unit(16 + 2/12, "feet"),
  45678. weight: math.unit(2300, "lb"),
  45679. name: "Armored",
  45680. image: {
  45681. source: "./media/characters/zolgar/armored.svg",
  45682. extra: 1246/1004,
  45683. bottom: 124/1370
  45684. }
  45685. },
  45686. goth: {
  45687. height: math.unit(16 + 2/12, "feet"),
  45688. weight: math.unit(2300, "lb"),
  45689. name: "Goth",
  45690. image: {
  45691. source: "./media/characters/zolgar/goth.svg",
  45692. extra: 1246/1004,
  45693. bottom: 124/1370
  45694. }
  45695. },
  45696. },
  45697. [
  45698. {
  45699. name: "Shrunken Down",
  45700. height: math.unit(9 + 2/12, "feet")
  45701. },
  45702. {
  45703. name: "Normal",
  45704. height: math.unit(16 + 2/12, "feet"),
  45705. default: true
  45706. },
  45707. ]
  45708. ))
  45709. characterMakers.push(() => makeCharacter(
  45710. { name: "Luca", species: ["zoroark", "lucario"], tags: ["anthro"] },
  45711. {
  45712. front: {
  45713. height: math.unit(6, "feet"),
  45714. weight: math.unit(168, "lb"),
  45715. name: "Front",
  45716. image: {
  45717. source: "./media/characters/luca/front.svg",
  45718. extra: 841/667,
  45719. bottom: 102/943
  45720. }
  45721. },
  45722. },
  45723. [
  45724. {
  45725. name: "Normal",
  45726. height: math.unit(6, "feet"),
  45727. default: true
  45728. },
  45729. ]
  45730. ))
  45731. characterMakers.push(() => makeCharacter(
  45732. { name: "Zezo", species: ["goo"], tags: ["feral"] },
  45733. {
  45734. side: {
  45735. height: math.unit(7 + 3/12, "feet"),
  45736. weight: math.unit(312, "lb"),
  45737. name: "Side",
  45738. image: {
  45739. source: "./media/characters/zezo/side.svg",
  45740. extra: 1192/1067,
  45741. bottom: 63/1255
  45742. }
  45743. },
  45744. },
  45745. [
  45746. {
  45747. name: "Normal",
  45748. height: math.unit(7 + 3/12, "feet"),
  45749. default: true
  45750. },
  45751. ]
  45752. ))
  45753. characterMakers.push(() => makeCharacter(
  45754. { name: "Mayso", species: ["dunnoh"], tags: ["anthro"] },
  45755. {
  45756. front: {
  45757. height: math.unit(5 + 5/12, "feet"),
  45758. weight: math.unit(170, "lb"),
  45759. name: "Front",
  45760. image: {
  45761. source: "./media/characters/mayso/front.svg",
  45762. extra: 1215/1108,
  45763. bottom: 16/1231
  45764. }
  45765. },
  45766. },
  45767. [
  45768. {
  45769. name: "Normal",
  45770. height: math.unit(5 + 5/12, "feet"),
  45771. default: true
  45772. },
  45773. ]
  45774. ))
  45775. characterMakers.push(() => makeCharacter(
  45776. { name: "Hess", species: ["gryphon"], tags: ["anthro"] },
  45777. {
  45778. front: {
  45779. height: math.unit(4 + 3/12, "feet"),
  45780. weight: math.unit(80, "lb"),
  45781. name: "Front",
  45782. image: {
  45783. source: "./media/characters/hess/front.svg",
  45784. extra: 1200/1123,
  45785. bottom: 16/1216
  45786. }
  45787. },
  45788. },
  45789. [
  45790. {
  45791. name: "Normal",
  45792. height: math.unit(4 + 3/12, "feet"),
  45793. default: true
  45794. },
  45795. ]
  45796. ))
  45797. characterMakers.push(() => makeCharacter(
  45798. { name: "Ashgar", species: ["bear", "lizard"], tags: ["anthro", "feral"] },
  45799. {
  45800. front: {
  45801. height: math.unit(1.9, "meters"),
  45802. name: "Front",
  45803. image: {
  45804. source: "./media/characters/ashgar/front.svg",
  45805. extra: 1177/1146,
  45806. bottom: 99/1276
  45807. }
  45808. },
  45809. back: {
  45810. height: math.unit(1.9, "meters"),
  45811. name: "Back",
  45812. image: {
  45813. source: "./media/characters/ashgar/back.svg",
  45814. extra: 1201/1183,
  45815. bottom: 53/1254
  45816. }
  45817. },
  45818. feral: {
  45819. height: math.unit(1.4, "meters"),
  45820. name: "Feral",
  45821. image: {
  45822. source: "./media/characters/ashgar/feral.svg",
  45823. extra: 370/345,
  45824. bottom: 45/415
  45825. }
  45826. },
  45827. },
  45828. [
  45829. {
  45830. name: "Normal",
  45831. height: math.unit(1.9, "meters"),
  45832. default: true
  45833. },
  45834. ]
  45835. ))
  45836. characterMakers.push(() => makeCharacter(
  45837. { name: "Phillip", species: ["wolf"], tags: ["anthro"] },
  45838. {
  45839. regular: {
  45840. height: math.unit(6, "feet"),
  45841. weight: math.unit(220, "lb"),
  45842. name: "Regular",
  45843. image: {
  45844. source: "./media/characters/phillip/regular.svg",
  45845. extra: 1373/1277,
  45846. bottom: 75/1448
  45847. }
  45848. },
  45849. dressed: {
  45850. height: math.unit(6, "feet"),
  45851. weight: math.unit(220, "lb"),
  45852. name: "Dressed",
  45853. image: {
  45854. source: "./media/characters/phillip/dressed.svg",
  45855. extra: 1373/1277,
  45856. bottom: 75/1448
  45857. }
  45858. },
  45859. paw: {
  45860. height: math.unit(1.44, "feet"),
  45861. name: "Paw",
  45862. image: {
  45863. source: "./media/characters/phillip/paw.svg"
  45864. }
  45865. },
  45866. },
  45867. [
  45868. {
  45869. name: "Normal",
  45870. height: math.unit(6, "feet"),
  45871. default: true
  45872. },
  45873. ]
  45874. ))
  45875. characterMakers.push(() => makeCharacter(
  45876. { name: "Uvula", species: ["dragon", "monster"], tags: ["feral"] },
  45877. {
  45878. side: {
  45879. height: math.unit(42, "feet"),
  45880. name: "Side",
  45881. image: {
  45882. source: "./media/characters/uvula/side.svg",
  45883. extra: 683/586,
  45884. bottom: 60/743
  45885. }
  45886. },
  45887. front: {
  45888. height: math.unit(42, "feet"),
  45889. name: "Front",
  45890. image: {
  45891. source: "./media/characters/uvula/front.svg",
  45892. extra: 705/613,
  45893. bottom: 54/759
  45894. }
  45895. },
  45896. maw: {
  45897. height: math.unit(23.5, "feet"),
  45898. name: "Maw",
  45899. image: {
  45900. source: "./media/characters/uvula/maw.svg"
  45901. }
  45902. },
  45903. },
  45904. [
  45905. {
  45906. name: "Original Size",
  45907. height: math.unit(14, "inches")
  45908. },
  45909. {
  45910. name: "Human Size",
  45911. height: math.unit(6, "feet")
  45912. },
  45913. {
  45914. name: "Big",
  45915. height: math.unit(42, "feet"),
  45916. default: true
  45917. },
  45918. {
  45919. name: "Bigger",
  45920. height: math.unit(100, "feet")
  45921. },
  45922. ]
  45923. ))
  45924. characterMakers.push(() => makeCharacter(
  45925. { name: "Lannah", species: ["wolf"], tags: ["anthro"] },
  45926. {
  45927. front: {
  45928. height: math.unit(5 + 11/12, "feet"),
  45929. name: "Front",
  45930. image: {
  45931. source: "./media/characters/lannah/front.svg",
  45932. extra: 1208/1113,
  45933. bottom: 97/1305
  45934. }
  45935. },
  45936. },
  45937. [
  45938. {
  45939. name: "Normal",
  45940. height: math.unit(5 + 11/12, "feet"),
  45941. default: true
  45942. },
  45943. ]
  45944. ))
  45945. characterMakers.push(() => makeCharacter(
  45946. { name: "Emberflame", species: ["ninetales"], tags: ["feral"] },
  45947. {
  45948. front: {
  45949. height: math.unit(6 + 3/12, "feet"),
  45950. weight: math.unit(3.5, "tons"),
  45951. name: "Front",
  45952. image: {
  45953. source: "./media/characters/emberflame/front.svg",
  45954. extra: 1198/672,
  45955. bottom: 82/1280
  45956. }
  45957. },
  45958. side: {
  45959. height: math.unit(6 + 3/12, "feet"),
  45960. weight: math.unit(3.5, "tons"),
  45961. name: "Side",
  45962. image: {
  45963. source: "./media/characters/emberflame/side.svg",
  45964. extra: 938/527,
  45965. bottom: 56/994
  45966. }
  45967. },
  45968. },
  45969. [
  45970. {
  45971. name: "Normal",
  45972. height: math.unit(6 + 3/12, "feet"),
  45973. default: true
  45974. },
  45975. ]
  45976. ))
  45977. characterMakers.push(() => makeCharacter(
  45978. { name: "Sophie Ambrose", species: ["zorgoia"], tags: ["feral"] },
  45979. {
  45980. side: {
  45981. height: math.unit(17.5, "feet"),
  45982. weight: math.unit(35, "tons"),
  45983. name: "Side",
  45984. image: {
  45985. source: "./media/characters/sophie-ambrose/side.svg",
  45986. extra: 1573/1242,
  45987. bottom: 71/1644
  45988. }
  45989. },
  45990. maw: {
  45991. height: math.unit(7.4, "feet"),
  45992. name: "Maw",
  45993. image: {
  45994. source: "./media/characters/sophie-ambrose/maw.svg"
  45995. }
  45996. },
  45997. },
  45998. [
  45999. {
  46000. name: "Normal",
  46001. height: math.unit(17.5, "feet"),
  46002. default: true
  46003. },
  46004. ]
  46005. ))
  46006. characterMakers.push(() => makeCharacter(
  46007. { name: "King Mugi", species: ["kaiju", "canine", "reptile"], tags: ["anthro"] },
  46008. {
  46009. front: {
  46010. height: math.unit(280, "feet"),
  46011. weight: math.unit(550, "tons"),
  46012. name: "Front",
  46013. image: {
  46014. source: "./media/characters/king-mugi/front.svg",
  46015. extra: 1102/947,
  46016. bottom: 104/1206
  46017. }
  46018. },
  46019. },
  46020. [
  46021. {
  46022. name: "King Mugi",
  46023. height: math.unit(280, "feet"),
  46024. default: true
  46025. },
  46026. ]
  46027. ))
  46028. characterMakers.push(() => makeCharacter(
  46029. { name: "Nova (Fox)", species: ["fox"], tags: ["anthro"] },
  46030. {
  46031. female: {
  46032. height: math.unit(300, "meters"),
  46033. name: "Front",
  46034. image: {
  46035. source: "./media/characters/nova-fox/female.svg",
  46036. extra: 664/632,
  46037. bottom: 51/715
  46038. },
  46039. form: "female",
  46040. default: true
  46041. },
  46042. male: {
  46043. height: math.unit(300, "meters"),
  46044. name: "Front",
  46045. image: {
  46046. source: "./media/characters/nova-fox/male.svg",
  46047. extra: 663/631,
  46048. bottom: 30/693
  46049. },
  46050. form: "male",
  46051. default: true
  46052. },
  46053. },
  46054. [
  46055. {
  46056. name: "Macro",
  46057. height: math.unit(300, "meters"),
  46058. default: true,
  46059. allForms: true
  46060. },
  46061. ],
  46062. {
  46063. "female": {
  46064. name: "Female",
  46065. default: true
  46066. },
  46067. "male": {
  46068. name: "Male",
  46069. },
  46070. }
  46071. ))
  46072. characterMakers.push(() => makeCharacter(
  46073. { name: "Sam (Bat)", species: ["bat", "rat"], tags: ["anthro"] },
  46074. {
  46075. front: {
  46076. height: math.unit(6 + 3/12, "feet"),
  46077. weight: math.unit(170, "lb"),
  46078. name: "Front",
  46079. image: {
  46080. source: "./media/characters/sam-bat/front.svg",
  46081. extra: 1601/1411,
  46082. bottom: 125/1726
  46083. }
  46084. },
  46085. back: {
  46086. height: math.unit(6 + 3/12, "feet"),
  46087. weight: math.unit(170, "lb"),
  46088. name: "Back",
  46089. image: {
  46090. source: "./media/characters/sam-bat/back.svg",
  46091. extra: 1577/1405,
  46092. bottom: 58/1635
  46093. }
  46094. },
  46095. },
  46096. [
  46097. {
  46098. name: "Normal",
  46099. height: math.unit(6 + 3/12, "feet"),
  46100. default: true
  46101. },
  46102. ]
  46103. ))
  46104. characterMakers.push(() => makeCharacter(
  46105. { name: "Inari", species: ["eevee"], tags: ["feral"] },
  46106. {
  46107. front: {
  46108. height: math.unit(59, "feet"),
  46109. weight: math.unit(40000, "lb"),
  46110. name: "Front",
  46111. image: {
  46112. source: "./media/characters/inari/front.svg",
  46113. extra: 1884/1350,
  46114. bottom: 95/1979
  46115. }
  46116. },
  46117. },
  46118. [
  46119. {
  46120. name: "Gigantamax",
  46121. height: math.unit(59, "feet"),
  46122. default: true
  46123. },
  46124. ]
  46125. ))
  46126. characterMakers.push(() => makeCharacter(
  46127. { name: "Elizabeth", species: ["bat"], tags: ["anthro"] },
  46128. {
  46129. front: {
  46130. height: math.unit(5 + 8/12, "feet"),
  46131. name: "Front",
  46132. image: {
  46133. source: "./media/characters/elizabeth/front.svg",
  46134. extra: 1395/1298,
  46135. bottom: 54/1449
  46136. }
  46137. },
  46138. mouth: {
  46139. height: math.unit(1.97, "feet"),
  46140. name: "Mouth",
  46141. image: {
  46142. source: "./media/characters/elizabeth/mouth.svg"
  46143. }
  46144. },
  46145. foot: {
  46146. height: math.unit(1.17, "feet"),
  46147. name: "Foot",
  46148. image: {
  46149. source: "./media/characters/elizabeth/foot.svg"
  46150. }
  46151. },
  46152. },
  46153. [
  46154. {
  46155. name: "Normal",
  46156. height: math.unit(5 + 8/12, "feet"),
  46157. default: true
  46158. },
  46159. {
  46160. name: "Minimacro",
  46161. height: math.unit(18, "feet")
  46162. },
  46163. {
  46164. name: "Macro",
  46165. height: math.unit(180, "feet")
  46166. },
  46167. ]
  46168. ))
  46169. characterMakers.push(() => makeCharacter(
  46170. { name: "October Gossamer", species: ["cat"], tags: ["anthro"] },
  46171. {
  46172. front: {
  46173. height: math.unit(5 + 2/12, "feet"),
  46174. name: "Front",
  46175. image: {
  46176. source: "./media/characters/october-gossamer/front.svg",
  46177. extra: 505/454,
  46178. bottom: 7/512
  46179. }
  46180. },
  46181. back: {
  46182. height: math.unit(5 + 2/12, "feet"),
  46183. name: "Back",
  46184. image: {
  46185. source: "./media/characters/october-gossamer/back.svg",
  46186. extra: 501/454,
  46187. bottom: 11/512
  46188. }
  46189. },
  46190. },
  46191. [
  46192. {
  46193. name: "Normal",
  46194. height: math.unit(5 + 2/12, "feet"),
  46195. default: true
  46196. },
  46197. ]
  46198. ))
  46199. characterMakers.push(() => makeCharacter(
  46200. { name: "Epiglottis \"Glottis\" Larynx", species: ["dragon", "monster"], tags: ["anthro"] },
  46201. {
  46202. front: {
  46203. height: math.unit(5, "feet"),
  46204. name: "Front",
  46205. image: {
  46206. source: "./media/characters/epiglottis/front.svg",
  46207. extra: 923/849,
  46208. bottom: 17/940
  46209. }
  46210. },
  46211. },
  46212. [
  46213. {
  46214. name: "Original Size",
  46215. height: math.unit(10, "inches")
  46216. },
  46217. {
  46218. name: "Human Size",
  46219. height: math.unit(5, "feet"),
  46220. default: true
  46221. },
  46222. {
  46223. name: "Big",
  46224. height: math.unit(25, "feet")
  46225. },
  46226. {
  46227. name: "Bigger",
  46228. height: math.unit(50, "feet")
  46229. },
  46230. {
  46231. name: "oh lawd",
  46232. height: math.unit(75, "feet")
  46233. },
  46234. ]
  46235. ))
  46236. characterMakers.push(() => makeCharacter(
  46237. { name: "Lerm", species: ["skink"], tags: ["anthro"] },
  46238. {
  46239. front: {
  46240. height: math.unit(2 + 4/12, "feet"),
  46241. weight: math.unit(60, "lb"),
  46242. name: "Front",
  46243. image: {
  46244. source: "./media/characters/lerm/front.svg",
  46245. extra: 796/790,
  46246. bottom: 79/875
  46247. }
  46248. },
  46249. },
  46250. [
  46251. {
  46252. name: "Normal",
  46253. height: math.unit(2 + 4/12, "feet"),
  46254. default: true
  46255. },
  46256. ]
  46257. ))
  46258. characterMakers.push(() => makeCharacter(
  46259. { name: "Xena Nebadon", species: ["wolf"], tags: ["anthro"] },
  46260. {
  46261. front: {
  46262. height: math.unit(5.5, "feet"),
  46263. weight: math.unit(130, "lb"),
  46264. name: "Front",
  46265. image: {
  46266. source: "./media/characters/xena-nebadon/front.svg",
  46267. extra: 1828/1730,
  46268. bottom: 79/1907
  46269. }
  46270. },
  46271. },
  46272. [
  46273. {
  46274. name: "Tiny Puppy",
  46275. height: math.unit(3, "inches")
  46276. },
  46277. {
  46278. name: "Normal",
  46279. height: math.unit(5.5, "feet"),
  46280. default: true
  46281. },
  46282. {
  46283. name: "Lotta Lady",
  46284. height: math.unit(12, "feet")
  46285. },
  46286. {
  46287. name: "Pretty Big",
  46288. height: math.unit(100, "feet")
  46289. },
  46290. {
  46291. name: "Big",
  46292. height: math.unit(500, "feet")
  46293. },
  46294. {
  46295. name: "Skyscraper Toys",
  46296. height: math.unit(2500, "feet")
  46297. },
  46298. {
  46299. name: "Plane Catcher",
  46300. height: math.unit(8, "miles")
  46301. },
  46302. {
  46303. name: "Planet Toys",
  46304. height: math.unit(15, "earths")
  46305. },
  46306. {
  46307. name: "Stardust",
  46308. height: math.unit(0.25, "galaxies")
  46309. },
  46310. {
  46311. name: "Snacks",
  46312. height: math.unit(70, "universes")
  46313. },
  46314. ]
  46315. ))
  46316. characterMakers.push(() => makeCharacter(
  46317. { name: "Bounty", species: ["bat-eared-fox"], tags: ["anthro"] },
  46318. {
  46319. front: {
  46320. height: math.unit(1.6, "meters"),
  46321. weight: math.unit(60, "kg"),
  46322. name: "Front",
  46323. image: {
  46324. source: "./media/characters/bounty/front.svg",
  46325. extra: 1426/1308,
  46326. bottom: 15/1441
  46327. }
  46328. },
  46329. back: {
  46330. height: math.unit(1.6, "meters"),
  46331. weight: math.unit(60, "kg"),
  46332. name: "Back",
  46333. image: {
  46334. source: "./media/characters/bounty/back.svg",
  46335. extra: 1417/1307,
  46336. bottom: 8/1425
  46337. }
  46338. },
  46339. },
  46340. [
  46341. {
  46342. name: "Normal",
  46343. height: math.unit(1.6, "meters"),
  46344. default: true
  46345. },
  46346. {
  46347. name: "Macro",
  46348. height: math.unit(300, "meters")
  46349. },
  46350. ]
  46351. ))
  46352. characterMakers.push(() => makeCharacter(
  46353. { name: "Mochi", species: ["gryphon", "belted-kingfisher", "snow-leopard", "kaiju"], tags: ["anthro", "feral"] },
  46354. {
  46355. front: {
  46356. height: math.unit(2 + 8/12, "feet"),
  46357. weight: math.unit(15, "lb"),
  46358. name: "Front",
  46359. image: {
  46360. source: "./media/characters/mochi/front.svg",
  46361. extra: 1022/852,
  46362. bottom: 435/1457
  46363. }
  46364. },
  46365. back: {
  46366. height: math.unit(2 + 8/12, "feet"),
  46367. weight: math.unit(15, "lb"),
  46368. name: "Back",
  46369. image: {
  46370. source: "./media/characters/mochi/back.svg",
  46371. extra: 1335/1119,
  46372. bottom: 39/1374
  46373. }
  46374. },
  46375. bird: {
  46376. height: math.unit(2 + 8/12, "feet"),
  46377. weight: math.unit(15, "lb"),
  46378. name: "Bird",
  46379. image: {
  46380. source: "./media/characters/mochi/bird.svg",
  46381. extra: 1251/1113,
  46382. bottom: 178/1429
  46383. }
  46384. },
  46385. kaiju: {
  46386. height: math.unit(154, "feet"),
  46387. weight: math.unit(1e7, "lb"),
  46388. name: "Kaiju",
  46389. image: {
  46390. source: "./media/characters/mochi/kaiju.svg",
  46391. extra: 460/324,
  46392. bottom: 40/500
  46393. }
  46394. },
  46395. head: {
  46396. height: math.unit(1.21, "feet"),
  46397. name: "Head",
  46398. image: {
  46399. source: "./media/characters/mochi/head.svg"
  46400. }
  46401. },
  46402. alternateTail: {
  46403. height: math.unit(2 + 8/12, "feet"),
  46404. weight: math.unit(45, "lb"),
  46405. name: "Alternate Tail",
  46406. image: {
  46407. source: "./media/characters/mochi/alternate-tail.svg",
  46408. extra: 139/76,
  46409. bottom: 45/184
  46410. }
  46411. },
  46412. },
  46413. [
  46414. {
  46415. name: "Micro",
  46416. height: math.unit(2, "inches")
  46417. },
  46418. {
  46419. name: "Normal",
  46420. height: math.unit(2 + 8/12, "feet"),
  46421. default: true
  46422. },
  46423. {
  46424. name: "Macro",
  46425. height: math.unit(106, "feet")
  46426. },
  46427. ]
  46428. ))
  46429. characterMakers.push(() => makeCharacter(
  46430. { name: "Sarel", species: ["omnifalcon"], tags: ["anthro"] },
  46431. {
  46432. front: {
  46433. height: math.unit(5.67, "feet"),
  46434. weight: math.unit(135, "lb"),
  46435. name: "Front",
  46436. image: {
  46437. source: "./media/characters/sarel/front.svg",
  46438. extra: 865/788,
  46439. bottom: 97/962
  46440. }
  46441. },
  46442. back: {
  46443. height: math.unit(5.67, "feet"),
  46444. weight: math.unit(135, "lb"),
  46445. name: "Back",
  46446. image: {
  46447. source: "./media/characters/sarel/back.svg",
  46448. extra: 857/777,
  46449. bottom: 32/889
  46450. }
  46451. },
  46452. chozoan: {
  46453. height: math.unit(5.67, "feet"),
  46454. weight: math.unit(135, "lb"),
  46455. name: "Chozoan",
  46456. image: {
  46457. source: "./media/characters/sarel/chozoan.svg",
  46458. extra: 865/788,
  46459. bottom: 97/962
  46460. }
  46461. },
  46462. current: {
  46463. height: math.unit(5.67, "feet"),
  46464. weight: math.unit(135, "lb"),
  46465. name: "Current",
  46466. image: {
  46467. source: "./media/characters/sarel/current.svg",
  46468. extra: 865/788,
  46469. bottom: 97/962
  46470. }
  46471. },
  46472. head: {
  46473. height: math.unit(1.77, "feet"),
  46474. name: "Head",
  46475. image: {
  46476. source: "./media/characters/sarel/head.svg"
  46477. }
  46478. },
  46479. claws: {
  46480. height: math.unit(1.8, "feet"),
  46481. name: "Claws",
  46482. image: {
  46483. source: "./media/characters/sarel/claws.svg"
  46484. }
  46485. },
  46486. clawsAlt: {
  46487. height: math.unit(1.8, "feet"),
  46488. name: "Claws (Alt)",
  46489. image: {
  46490. source: "./media/characters/sarel/claws-alt.svg"
  46491. }
  46492. },
  46493. },
  46494. [
  46495. {
  46496. name: "Normal",
  46497. height: math.unit(5.67, "feet"),
  46498. default: true
  46499. },
  46500. ]
  46501. ))
  46502. characterMakers.push(() => makeCharacter(
  46503. { name: "Alyonia", species: ["shark"], tags: ["anthro"] },
  46504. {
  46505. front: {
  46506. height: math.unit(5500, "feet"),
  46507. name: "Front",
  46508. image: {
  46509. source: "./media/characters/alyonia/front.svg",
  46510. extra: 1200/1135,
  46511. bottom: 29/1229
  46512. }
  46513. },
  46514. back: {
  46515. height: math.unit(5500, "feet"),
  46516. name: "Back",
  46517. image: {
  46518. source: "./media/characters/alyonia/back.svg",
  46519. extra: 1205/1138,
  46520. bottom: 10/1215
  46521. }
  46522. },
  46523. },
  46524. [
  46525. {
  46526. name: "Small",
  46527. height: math.unit(10, "feet")
  46528. },
  46529. {
  46530. name: "Macro",
  46531. height: math.unit(500, "feet")
  46532. },
  46533. {
  46534. name: "Mega Macro",
  46535. height: math.unit(5500, "feet"),
  46536. default: true
  46537. },
  46538. {
  46539. name: "Mega Macro+",
  46540. height: math.unit(500000, "feet")
  46541. },
  46542. {
  46543. name: "Giga Macro",
  46544. height: math.unit(3000, "miles")
  46545. },
  46546. {
  46547. name: "Tera Macro",
  46548. height: math.unit(2.8e6, "miles")
  46549. },
  46550. {
  46551. name: "Galactic",
  46552. height: math.unit(120000, "lightyears")
  46553. },
  46554. ]
  46555. ))
  46556. characterMakers.push(() => makeCharacter(
  46557. { name: "Autumn", species: ["werewolf", "human"], tags: ["anthro"] },
  46558. {
  46559. werewolf: {
  46560. height: math.unit(8, "feet"),
  46561. weight: math.unit(425, "lb"),
  46562. name: "Werewolf",
  46563. image: {
  46564. source: "./media/characters/autumn/werewolf.svg",
  46565. extra: 2154/2031,
  46566. bottom: 160/2314
  46567. }
  46568. },
  46569. human: {
  46570. height: math.unit(5 + 8/12, "feet"),
  46571. weight: math.unit(150, "lb"),
  46572. name: "Human",
  46573. image: {
  46574. source: "./media/characters/autumn/human.svg",
  46575. extra: 1200/1149,
  46576. bottom: 30/1230
  46577. }
  46578. },
  46579. },
  46580. [
  46581. {
  46582. name: "Normal",
  46583. height: math.unit(8, "feet"),
  46584. default: true
  46585. },
  46586. ]
  46587. ))
  46588. characterMakers.push(() => makeCharacter(
  46589. { name: "Cobalt (Charizard)", species: ["charizard"], tags: ["anthro"] },
  46590. {
  46591. front: {
  46592. height: math.unit(8 + 5/12, "feet"),
  46593. weight: math.unit(825, "lb"),
  46594. name: "Front",
  46595. image: {
  46596. source: "./media/characters/cobalt-charizard/front.svg",
  46597. extra: 1268/1155,
  46598. bottom: 122/1390
  46599. }
  46600. },
  46601. side: {
  46602. height: math.unit(8 + 5/12, "feet"),
  46603. weight: math.unit(825, "lb"),
  46604. name: "Side",
  46605. image: {
  46606. source: "./media/characters/cobalt-charizard/side.svg",
  46607. extra: 1348/1257,
  46608. bottom: 58/1406
  46609. }
  46610. },
  46611. gMax: {
  46612. height: math.unit(134 + 11/12, "feet"),
  46613. name: "G-Max",
  46614. image: {
  46615. source: "./media/characters/cobalt-charizard/g-max.svg",
  46616. extra: 1835/1541,
  46617. bottom: 151/1986
  46618. }
  46619. },
  46620. },
  46621. [
  46622. {
  46623. name: "Normal",
  46624. height: math.unit(8 + 5/12, "feet"),
  46625. default: true
  46626. },
  46627. ]
  46628. ))
  46629. characterMakers.push(() => makeCharacter(
  46630. { name: "Stella", species: ["gryphon"], tags: ["anthro"] },
  46631. {
  46632. front: {
  46633. height: math.unit(6 + 3/12, "feet"),
  46634. weight: math.unit(210, "lb"),
  46635. name: "Front",
  46636. image: {
  46637. source: "./media/characters/stella/front.svg",
  46638. extra: 3549/3335,
  46639. bottom: 51/3600
  46640. }
  46641. },
  46642. },
  46643. [
  46644. {
  46645. name: "Normal",
  46646. height: math.unit(6 + 3/12, "feet"),
  46647. default: true
  46648. },
  46649. ]
  46650. ))
  46651. characterMakers.push(() => makeCharacter(
  46652. { name: "Riley Bishop", species: ["human"], tags: ["anthro"] },
  46653. {
  46654. front: {
  46655. height: math.unit(5, "feet"),
  46656. weight: math.unit(90, "lb"),
  46657. name: "Front",
  46658. image: {
  46659. source: "./media/characters/riley-bishop/front.svg",
  46660. extra: 1450/1428,
  46661. bottom: 152/1602
  46662. }
  46663. },
  46664. },
  46665. [
  46666. {
  46667. name: "Normal",
  46668. height: math.unit(5, "feet"),
  46669. default: true
  46670. },
  46671. ]
  46672. ))
  46673. characterMakers.push(() => makeCharacter(
  46674. { name: "Theo (Arcanine)", species: ["arcanine"], tags: ["feral"] },
  46675. {
  46676. side: {
  46677. height: math.unit(8 + 2/12, "feet"),
  46678. weight: math.unit(500, "kg"),
  46679. name: "Side",
  46680. image: {
  46681. source: "./media/characters/theo-arcanine/side.svg",
  46682. extra: 1342/1074,
  46683. bottom: 111/1453
  46684. }
  46685. },
  46686. },
  46687. [
  46688. {
  46689. name: "Normal",
  46690. height: math.unit(8 + 2/12, "feet"),
  46691. default: true
  46692. },
  46693. ]
  46694. ))
  46695. characterMakers.push(() => makeCharacter(
  46696. { name: "Kali", species: ["avali"], tags: ["anthro"] },
  46697. {
  46698. front: {
  46699. height: math.unit(4, "feet"),
  46700. name: "Front",
  46701. image: {
  46702. source: "./media/characters/kali/front.svg",
  46703. extra: 1074/867,
  46704. bottom: 34/1108
  46705. }
  46706. },
  46707. back: {
  46708. height: math.unit(4, "feet"),
  46709. name: "Back",
  46710. image: {
  46711. source: "./media/characters/kali/back.svg",
  46712. extra: 1068/863,
  46713. bottom: 26/1094
  46714. }
  46715. },
  46716. frontAlt: {
  46717. height: math.unit(4, "feet"),
  46718. name: "Front (Alt)",
  46719. image: {
  46720. source: "./media/characters/kali/front-alt.svg",
  46721. extra: 1921/1357,
  46722. bottom: 70/1991
  46723. }
  46724. },
  46725. },
  46726. [
  46727. {
  46728. name: "Normal",
  46729. height: math.unit(4, "feet"),
  46730. default: true
  46731. },
  46732. {
  46733. name: "Big'vali",
  46734. height: math.unit(11, "feet")
  46735. },
  46736. {
  46737. name: "Macro",
  46738. height: math.unit(32, "meters")
  46739. },
  46740. {
  46741. name: "Macro+",
  46742. height: math.unit(150, "meters")
  46743. },
  46744. {
  46745. name: "Megamacro",
  46746. height: math.unit(7500, "meters")
  46747. },
  46748. {
  46749. name: "Megamacro+",
  46750. height: math.unit(80, "kilometers")
  46751. },
  46752. ]
  46753. ))
  46754. characterMakers.push(() => makeCharacter(
  46755. { name: "Gapp", species: ["zorgoia"], tags: ["feral"] },
  46756. {
  46757. side: {
  46758. height: math.unit(5 + 11/12, "feet"),
  46759. weight: math.unit(236, "lb"),
  46760. name: "Side",
  46761. image: {
  46762. source: "./media/characters/gapp/side.svg",
  46763. extra: 775/340,
  46764. bottom: 58/833
  46765. }
  46766. },
  46767. mouth: {
  46768. height: math.unit(2.98, "feet"),
  46769. name: "Mouth",
  46770. image: {
  46771. source: "./media/characters/gapp/mouth.svg"
  46772. }
  46773. },
  46774. },
  46775. [
  46776. {
  46777. name: "Normal",
  46778. height: math.unit(5 + 1/12, "feet"),
  46779. default: true
  46780. },
  46781. ]
  46782. ))
  46783. characterMakers.push(() => makeCharacter(
  46784. { name: "Persephone", species: ["absol"], tags: ["anthro"] },
  46785. {
  46786. front: {
  46787. height: math.unit(6, "feet"),
  46788. name: "Front",
  46789. image: {
  46790. source: "./media/characters/persephone/front.svg",
  46791. extra: 1895/1717,
  46792. bottom: 96/1991
  46793. }
  46794. },
  46795. back: {
  46796. height: math.unit(6, "feet"),
  46797. name: "Back",
  46798. image: {
  46799. source: "./media/characters/persephone/back.svg",
  46800. extra: 1868/1679,
  46801. bottom: 26/1894
  46802. }
  46803. },
  46804. casual: {
  46805. height: math.unit(6, "feet"),
  46806. name: "Casual",
  46807. image: {
  46808. source: "./media/characters/persephone/casual.svg",
  46809. extra: 1713/1541,
  46810. bottom: 76/1789
  46811. }
  46812. },
  46813. gaming: {
  46814. height: math.unit(3.55, "feet"),
  46815. name: "Gaming",
  46816. image: {
  46817. source: "./media/characters/persephone/gaming.svg",
  46818. extra: 1242/1038,
  46819. bottom: 66/1308
  46820. }
  46821. },
  46822. head: {
  46823. height: math.unit(2.15, "feet"),
  46824. name: "😐",
  46825. image: {
  46826. source: "./media/characters/persephone/head.svg"
  46827. }
  46828. },
  46829. talking: {
  46830. height: math.unit(2.5, "feet"),
  46831. name: "💬",
  46832. image: {
  46833. source: "./media/characters/persephone/talking.svg"
  46834. }
  46835. },
  46836. hmm: {
  46837. height: math.unit(2.28, "feet"),
  46838. name: "🤨",
  46839. image: {
  46840. source: "./media/characters/persephone/hmm.svg"
  46841. }
  46842. },
  46843. },
  46844. [
  46845. {
  46846. name: "Human Size",
  46847. height: math.unit(6, "feet")
  46848. },
  46849. {
  46850. name: "Big Steppy",
  46851. height: math.unit(600, "meters"),
  46852. default: true
  46853. },
  46854. {
  46855. name: "Galaxy Brain",
  46856. height: math.unit(1, "zettameter")
  46857. },
  46858. ]
  46859. ))
  46860. characterMakers.push(() => makeCharacter(
  46861. { name: "Riley Foxthing", species: ["fox"], tags: ["anthro"] },
  46862. {
  46863. front: {
  46864. height: math.unit(1.85, "meters"),
  46865. name: "Front",
  46866. image: {
  46867. source: "./media/characters/riley-foxthing/front.svg",
  46868. extra: 1495/1354,
  46869. bottom: 122/1617
  46870. }
  46871. },
  46872. frontAlt: {
  46873. height: math.unit(1.85, "meters"),
  46874. name: "Front (Alt)",
  46875. image: {
  46876. source: "./media/characters/riley-foxthing/front-alt.svg",
  46877. extra: 1572/1389,
  46878. bottom: 116/1688
  46879. }
  46880. },
  46881. },
  46882. [
  46883. {
  46884. name: "Normal Sized",
  46885. height: math.unit(1.85, "meters"),
  46886. default: true
  46887. },
  46888. {
  46889. name: "Quite Sizable",
  46890. height: math.unit(5, "meters")
  46891. },
  46892. {
  46893. name: "Rather Large",
  46894. height: math.unit(20, "meters")
  46895. },
  46896. {
  46897. name: "Macro",
  46898. height: math.unit(450, "meters")
  46899. },
  46900. {
  46901. name: "Giga",
  46902. height: math.unit(5, "km")
  46903. },
  46904. ]
  46905. ))
  46906. characterMakers.push(() => makeCharacter(
  46907. { name: "Blizzard", species: ["arctic-fox"], tags: ["anthro"] },
  46908. {
  46909. front: {
  46910. height: math.unit(6, "feet"),
  46911. weight: math.unit(200, "lb"),
  46912. name: "Front",
  46913. image: {
  46914. source: "./media/characters/blizzard/front.svg",
  46915. extra: 1136/990,
  46916. bottom: 136/1272
  46917. }
  46918. },
  46919. back: {
  46920. height: math.unit(6, "feet"),
  46921. weight: math.unit(200, "lb"),
  46922. name: "Back",
  46923. image: {
  46924. source: "./media/characters/blizzard/back.svg",
  46925. extra: 1175/1034,
  46926. bottom: 97/1272
  46927. }
  46928. },
  46929. sitting: {
  46930. height: math.unit(3.725, "feet"),
  46931. weight: math.unit(200, "lb"),
  46932. name: "Sitting",
  46933. image: {
  46934. source: "./media/characters/blizzard/sitting.svg",
  46935. extra: 581/485,
  46936. bottom: 90/671
  46937. }
  46938. },
  46939. frontWizard: {
  46940. height: math.unit(7.9, "feet"),
  46941. weight: math.unit(200, "lb"),
  46942. name: "Front (Wizard)",
  46943. image: {
  46944. source: "./media/characters/blizzard/front-wizard.svg"
  46945. }
  46946. },
  46947. backWizard: {
  46948. height: math.unit(7.9, "feet"),
  46949. weight: math.unit(200, "lb"),
  46950. name: "Back (Wizard)",
  46951. image: {
  46952. source: "./media/characters/blizzard/back-wizard.svg"
  46953. }
  46954. },
  46955. frontNsfw: {
  46956. height: math.unit(6, "feet"),
  46957. weight: math.unit(200, "lb"),
  46958. name: "Front (NSFW)",
  46959. image: {
  46960. source: "./media/characters/blizzard/front-nsfw.svg",
  46961. extra: 1136/990,
  46962. bottom: 136/1272
  46963. }
  46964. },
  46965. backNsfw: {
  46966. height: math.unit(6, "feet"),
  46967. weight: math.unit(200, "lb"),
  46968. name: "Back (NSFW)",
  46969. image: {
  46970. source: "./media/characters/blizzard/back-nsfw.svg",
  46971. extra: 1175/1034,
  46972. bottom: 97/1272
  46973. }
  46974. },
  46975. sittingNsfw: {
  46976. height: math.unit(3.725, "feet"),
  46977. weight: math.unit(200, "lb"),
  46978. name: "Sitting (NSFW)",
  46979. image: {
  46980. source: "./media/characters/blizzard/sitting-nsfw.svg",
  46981. extra: 581/485,
  46982. bottom: 90/671
  46983. }
  46984. },
  46985. wizardFrontNsfw: {
  46986. height: math.unit(7.9, "feet"),
  46987. weight: math.unit(200, "lb"),
  46988. name: "Wizard (Front, NSFW)",
  46989. image: {
  46990. source: "./media/characters/blizzard/wizard-front-nsfw.svg"
  46991. }
  46992. },
  46993. },
  46994. [
  46995. {
  46996. name: "Normal",
  46997. height: math.unit(6, "feet"),
  46998. default: true
  46999. },
  47000. ]
  47001. ))
  47002. characterMakers.push(() => makeCharacter(
  47003. { name: "Lumi", species: ["snow-tiger"], tags: ["anthro"] },
  47004. {
  47005. front: {
  47006. height: math.unit(5 + 2/12, "feet"),
  47007. name: "Front",
  47008. image: {
  47009. source: "./media/characters/lumi/front.svg",
  47010. extra: 1328/1268,
  47011. bottom: 103/1431
  47012. }
  47013. },
  47014. back: {
  47015. height: math.unit(5 + 2/12, "feet"),
  47016. name: "Back",
  47017. image: {
  47018. source: "./media/characters/lumi/back.svg",
  47019. extra: 1381/1327,
  47020. bottom: 43/1424
  47021. }
  47022. },
  47023. },
  47024. [
  47025. {
  47026. name: "Normal",
  47027. height: math.unit(5 + 2/12, "feet"),
  47028. default: true
  47029. },
  47030. ]
  47031. ))
  47032. characterMakers.push(() => makeCharacter(
  47033. { name: "Aliya Cotton", species: ["rabbit"], tags: ["anthro"] },
  47034. {
  47035. front: {
  47036. height: math.unit(5 + 9/12, "feet"),
  47037. name: "Front",
  47038. image: {
  47039. source: "./media/characters/aliya-cotton/front.svg",
  47040. extra: 577/564,
  47041. bottom: 29/606
  47042. }
  47043. },
  47044. },
  47045. [
  47046. {
  47047. name: "Normal",
  47048. height: math.unit(5 + 9/12, "feet"),
  47049. default: true
  47050. },
  47051. ]
  47052. ))
  47053. characterMakers.push(() => makeCharacter(
  47054. { name: "Noah (Luxray)", species: ["luxray"], tags: ["anthro"] },
  47055. {
  47056. front: {
  47057. height: math.unit(2.7, "meters"),
  47058. weight: math.unit(25000, "lb"),
  47059. name: "Front",
  47060. image: {
  47061. source: "./media/characters/noah-luxray/front.svg",
  47062. extra: 1644/825,
  47063. bottom: 339/1983
  47064. }
  47065. },
  47066. side: {
  47067. height: math.unit(2.97, "meters"),
  47068. weight: math.unit(25000, "lb"),
  47069. name: "Side",
  47070. image: {
  47071. source: "./media/characters/noah-luxray/side.svg",
  47072. extra: 1319/650,
  47073. bottom: 163/1482
  47074. }
  47075. },
  47076. dick: {
  47077. height: math.unit(7.4, "feet"),
  47078. weight: math.unit(2500, "lb"),
  47079. name: "Dick",
  47080. image: {
  47081. source: "./media/characters/noah-luxray/dick.svg"
  47082. }
  47083. },
  47084. dickAlt: {
  47085. height: math.unit(10.83, "feet"),
  47086. weight: math.unit(2500, "lb"),
  47087. name: "Dick (Alt)",
  47088. image: {
  47089. source: "./media/characters/noah-luxray/dick-alt.svg"
  47090. }
  47091. },
  47092. },
  47093. [
  47094. {
  47095. name: "BIG",
  47096. height: math.unit(2.7, "meters"),
  47097. default: true
  47098. },
  47099. ]
  47100. ))
  47101. characterMakers.push(() => makeCharacter(
  47102. { name: "Arion", species: ["horse"], tags: ["anthro"] },
  47103. {
  47104. standing: {
  47105. height: math.unit(183, "cm"),
  47106. weight: math.unit(68, "kg"),
  47107. name: "Standing",
  47108. image: {
  47109. source: "./media/characters/arion/standing.svg",
  47110. extra: 1869/1807,
  47111. bottom: 93/1962
  47112. }
  47113. },
  47114. reclining: {
  47115. height: math.unit(70.5, "cm"),
  47116. weight: math.unit(68, "lb"),
  47117. name: "Reclining",
  47118. image: {
  47119. source: "./media/characters/arion/reclining.svg",
  47120. extra: 937/870,
  47121. bottom: 63/1000
  47122. }
  47123. },
  47124. },
  47125. [
  47126. {
  47127. name: "Colossus Size, Low",
  47128. height: math.unit(33, "meters"),
  47129. default: true
  47130. },
  47131. {
  47132. name: "Colossus Size, Mid",
  47133. height: math.unit(52, "meters")
  47134. },
  47135. {
  47136. name: "Colossus Size, High",
  47137. height: math.unit(60, "meters")
  47138. },
  47139. {
  47140. name: "Titan Size, Low",
  47141. height: math.unit(91, "meters"),
  47142. },
  47143. {
  47144. name: "Titan Size, Mid",
  47145. height: math.unit(122, "meters")
  47146. },
  47147. {
  47148. name: "Titan Size, High",
  47149. height: math.unit(162, "meters")
  47150. },
  47151. ]
  47152. ))
  47153. characterMakers.push(() => makeCharacter(
  47154. { name: "Stellar Marbey", species: ["marble-fox"], tags: ["anthro"] },
  47155. {
  47156. front: {
  47157. height: math.unit(53, "meters"),
  47158. name: "Front",
  47159. image: {
  47160. source: "./media/characters/stellar-marbey/front.svg",
  47161. extra: 1913/1805,
  47162. bottom: 92/2005
  47163. }
  47164. },
  47165. back: {
  47166. height: math.unit(53, "meters"),
  47167. name: "Back",
  47168. image: {
  47169. source: "./media/characters/stellar-marbey/back.svg",
  47170. extra: 1960/1851,
  47171. bottom: 28/1988
  47172. }
  47173. },
  47174. mouth: {
  47175. height: math.unit(3.5, "meters"),
  47176. name: "Mouth",
  47177. image: {
  47178. source: "./media/characters/stellar-marbey/mouth.svg"
  47179. }
  47180. },
  47181. },
  47182. [
  47183. {
  47184. name: "Macro",
  47185. height: math.unit(53, "meters"),
  47186. default: true
  47187. },
  47188. ]
  47189. ))
  47190. characterMakers.push(() => makeCharacter(
  47191. { name: "Matsu", species: ["dragon", "deer"], tags: ["anthro"] },
  47192. {
  47193. front: {
  47194. height: math.unit(8 + 1/12, "feet"),
  47195. weight: math.unit(233, "lb"),
  47196. name: "Front",
  47197. image: {
  47198. source: "./media/characters/matsu/front.svg",
  47199. extra: 832/772,
  47200. bottom: 40/872
  47201. }
  47202. },
  47203. back: {
  47204. height: math.unit(8 + 1/12, "feet"),
  47205. weight: math.unit(233, "lb"),
  47206. name: "Back",
  47207. image: {
  47208. source: "./media/characters/matsu/back.svg",
  47209. extra: 839/780,
  47210. bottom: 47/886
  47211. }
  47212. },
  47213. },
  47214. [
  47215. {
  47216. name: "Normal",
  47217. height: math.unit(8 + 1/12, "feet"),
  47218. default: true
  47219. },
  47220. ]
  47221. ))
  47222. characterMakers.push(() => makeCharacter(
  47223. { name: "Thiz", species: ["gremlin"], tags: ["anthro"] },
  47224. {
  47225. front: {
  47226. height: math.unit(4, "feet"),
  47227. weight: math.unit(148, "lb"),
  47228. name: "Front",
  47229. image: {
  47230. source: "./media/characters/thiz/front.svg",
  47231. extra: 1913/1748,
  47232. bottom: 62/1975
  47233. }
  47234. },
  47235. },
  47236. [
  47237. {
  47238. name: "Normal",
  47239. height: math.unit(4, "feet"),
  47240. default: true
  47241. },
  47242. ]
  47243. ))
  47244. characterMakers.push(() => makeCharacter(
  47245. { name: "Marcel", species: ["king-wickerbeast"], tags: ["anthro"] },
  47246. {
  47247. front: {
  47248. height: math.unit(7 + 6/12, "feet"),
  47249. weight: math.unit(267, "lb"),
  47250. name: "Front",
  47251. image: {
  47252. source: "./media/characters/marcel/front.svg",
  47253. extra: 1221/1096,
  47254. bottom: 76/1297
  47255. }
  47256. },
  47257. },
  47258. [
  47259. {
  47260. name: "Normal",
  47261. height: math.unit(7 + 6/12, "feet"),
  47262. default: true
  47263. },
  47264. ]
  47265. ))
  47266. characterMakers.push(() => makeCharacter(
  47267. { name: "Flake", species: ["dragon"], tags: ["feral"] },
  47268. {
  47269. side: {
  47270. height: math.unit(42, "meters"),
  47271. name: "Side",
  47272. image: {
  47273. source: "./media/characters/flake/side.svg",
  47274. extra: 1525/1306,
  47275. bottom: 209/1734
  47276. }
  47277. },
  47278. },
  47279. [
  47280. {
  47281. name: "Normal",
  47282. height: math.unit(42, "meters"),
  47283. default: true
  47284. },
  47285. ]
  47286. ))
  47287. characterMakers.push(() => makeCharacter(
  47288. { name: "Someonne", species: ["alien", "robot"], tags: ["anthro"] },
  47289. {
  47290. dressed: {
  47291. height: math.unit(6 + 4/12, "feet"),
  47292. weight: math.unit(520, "lb"),
  47293. name: "Dressed",
  47294. image: {
  47295. source: "./media/characters/someonne/dressed.svg",
  47296. extra: 1020/1010,
  47297. bottom: 178/1198
  47298. }
  47299. },
  47300. undressed: {
  47301. height: math.unit(6 + 4/12, "feet"),
  47302. weight: math.unit(520, "lb"),
  47303. name: "Undressed",
  47304. image: {
  47305. source: "./media/characters/someonne/undressed.svg",
  47306. extra: 1019/1014,
  47307. bottom: 169/1188
  47308. }
  47309. },
  47310. },
  47311. [
  47312. {
  47313. name: "Normal",
  47314. height: math.unit(6 + 4/12, "feet"),
  47315. default: true
  47316. },
  47317. ]
  47318. ))
  47319. characterMakers.push(() => makeCharacter(
  47320. { name: "Till", species: ["kobold"], tags: ["anthro"] },
  47321. {
  47322. front: {
  47323. height: math.unit(3, "feet"),
  47324. weight: math.unit(30, "lb"),
  47325. name: "Front",
  47326. image: {
  47327. source: "./media/characters/till/front.svg",
  47328. extra: 892/823,
  47329. bottom: 55/947
  47330. }
  47331. },
  47332. },
  47333. [
  47334. {
  47335. name: "Normal",
  47336. height: math.unit(3, "feet"),
  47337. default: true
  47338. },
  47339. ]
  47340. ))
  47341. characterMakers.push(() => makeCharacter(
  47342. { name: "Sydney Heki", species: ["werewolf"], tags: ["anthro"] },
  47343. {
  47344. front: {
  47345. height: math.unit(9 + 8/12, "feet"),
  47346. weight: math.unit(800, "lb"),
  47347. name: "Front",
  47348. image: {
  47349. source: "./media/characters/sydney-heki/front.svg",
  47350. extra: 1360/1300,
  47351. bottom: 22/1382
  47352. }
  47353. },
  47354. back: {
  47355. height: math.unit(9 + 8/12, "feet"),
  47356. weight: math.unit(800, "lb"),
  47357. name: "Back",
  47358. image: {
  47359. source: "./media/characters/sydney-heki/back.svg",
  47360. extra: 1356/1293,
  47361. bottom: 12/1368
  47362. }
  47363. },
  47364. frontDressed: {
  47365. height: math.unit(9 + 8/12, "feet"),
  47366. weight: math.unit(800, "lb"),
  47367. name: "Front (Dressed)",
  47368. image: {
  47369. source: "./media/characters/sydney-heki/front-dressed.svg",
  47370. extra: 1360/1300,
  47371. bottom: 22/1382
  47372. }
  47373. },
  47374. },
  47375. [
  47376. {
  47377. name: "Normal",
  47378. height: math.unit(9 + 8/12, "feet"),
  47379. default: true
  47380. },
  47381. {
  47382. name: "Macro",
  47383. height: math.unit(500, "feet")
  47384. },
  47385. {
  47386. name: "Megamacro",
  47387. height: math.unit(3.6, "miles")
  47388. },
  47389. ]
  47390. ))
  47391. characterMakers.push(() => makeCharacter(
  47392. { name: "Fowler Karlsson", species: ["horse"], tags: ["anthro"] },
  47393. {
  47394. front: {
  47395. height: math.unit(200, "cm"),
  47396. weight: math.unit(250, "lb"),
  47397. name: "Front",
  47398. image: {
  47399. source: "./media/characters/fowler-karlsson/front.svg",
  47400. extra: 897/845,
  47401. bottom: 123/1020
  47402. }
  47403. },
  47404. back: {
  47405. height: math.unit(200, "cm"),
  47406. weight: math.unit(250, "lb"),
  47407. name: "Back",
  47408. image: {
  47409. source: "./media/characters/fowler-karlsson/back.svg",
  47410. extra: 999/944,
  47411. bottom: 26/1025
  47412. }
  47413. },
  47414. dick: {
  47415. height: math.unit(1.92, "feet"),
  47416. weight: math.unit(150, "lb"),
  47417. name: "Dick",
  47418. image: {
  47419. source: "./media/characters/fowler-karlsson/dick.svg"
  47420. }
  47421. },
  47422. },
  47423. [
  47424. {
  47425. name: "Normal",
  47426. height: math.unit(200, "cm"),
  47427. default: true
  47428. },
  47429. {
  47430. name: "Smaller Macro",
  47431. height: math.unit(90, "m")
  47432. },
  47433. {
  47434. name: "Macro",
  47435. height: math.unit(150, "m")
  47436. },
  47437. {
  47438. name: "Bigger Macro",
  47439. height: math.unit(300, "m")
  47440. },
  47441. ]
  47442. ))
  47443. characterMakers.push(() => makeCharacter(
  47444. { name: "Rylide", species: ["jackalope"], tags: ["taur"] },
  47445. {
  47446. side: {
  47447. height: math.unit(8 + 2/12, "feet"),
  47448. weight: math.unit(1, "tonne"),
  47449. name: "Side",
  47450. image: {
  47451. source: "./media/characters/rylide/side.svg",
  47452. extra: 1318/1034,
  47453. bottom: 106/1424
  47454. }
  47455. },
  47456. sitting: {
  47457. height: math.unit(303, "cm"),
  47458. weight: math.unit(1, "tonne"),
  47459. name: "Sitting",
  47460. image: {
  47461. source: "./media/characters/rylide/sitting.svg",
  47462. extra: 1303/1103,
  47463. bottom: 36/1339
  47464. }
  47465. },
  47466. },
  47467. [
  47468. {
  47469. name: "Normal",
  47470. height: math.unit(8 + 2/12, "feet"),
  47471. default: true
  47472. },
  47473. ]
  47474. ))
  47475. characterMakers.push(() => makeCharacter(
  47476. { name: "Pudask", species: ["european-polecat"], tags: ["anthro"] },
  47477. {
  47478. front: {
  47479. height: math.unit(5 + 10/12, "feet"),
  47480. weight: math.unit(160, "lb"),
  47481. name: "Front",
  47482. image: {
  47483. source: "./media/characters/pudask/front.svg",
  47484. extra: 1616/1590,
  47485. bottom: 161/1777
  47486. }
  47487. },
  47488. },
  47489. [
  47490. {
  47491. name: "Ferret Height",
  47492. height: math.unit(2 + 5/12, "feet")
  47493. },
  47494. {
  47495. name: "Canon Height",
  47496. height: math.unit(5 + 10/12, "feet"),
  47497. default: true
  47498. },
  47499. ]
  47500. ))
  47501. characterMakers.push(() => makeCharacter(
  47502. { name: "Ramita", species: ["teshari"], tags: ["anthro"] },
  47503. {
  47504. front: {
  47505. height: math.unit(3 + 6/12, "feet"),
  47506. weight: math.unit(60, "lb"),
  47507. name: "Front",
  47508. image: {
  47509. source: "./media/characters/ramita/front.svg",
  47510. extra: 1402/1232,
  47511. bottom: 62/1464
  47512. }
  47513. },
  47514. dressed: {
  47515. height: math.unit(3 + 6/12, "feet"),
  47516. weight: math.unit(60, "lb"),
  47517. name: "Dressed",
  47518. image: {
  47519. source: "./media/characters/ramita/dressed.svg",
  47520. extra: 1534/1249,
  47521. bottom: 50/1584
  47522. }
  47523. },
  47524. },
  47525. [
  47526. {
  47527. name: "Normal",
  47528. height: math.unit(3 + 6/12, "feet"),
  47529. default: true
  47530. },
  47531. ]
  47532. ))
  47533. characterMakers.push(() => makeCharacter(
  47534. { name: "Ark", species: ["dragon"], tags: ["anthro"] },
  47535. {
  47536. front: {
  47537. height: math.unit(8, "feet"),
  47538. name: "Front",
  47539. image: {
  47540. source: "./media/characters/ark/front.svg",
  47541. extra: 772/693,
  47542. bottom: 45/817
  47543. }
  47544. },
  47545. },
  47546. [
  47547. {
  47548. name: "Normal",
  47549. height: math.unit(8, "feet"),
  47550. default: true
  47551. },
  47552. ]
  47553. ))
  47554. characterMakers.push(() => makeCharacter(
  47555. { name: "Ludwig-Horn", species: ["tiger", "dragon"], tags: ["anthro"] },
  47556. {
  47557. front: {
  47558. height: math.unit(6, "feet"),
  47559. weight: math.unit(250, "lb"),
  47560. volume: math.unit(5/8, "gallons"),
  47561. name: "Front",
  47562. image: {
  47563. source: "./media/characters/ludwig-horn/front.svg",
  47564. extra: 1782/1635,
  47565. bottom: 96/1878
  47566. }
  47567. },
  47568. back: {
  47569. height: math.unit(6, "feet"),
  47570. weight: math.unit(250, "lb"),
  47571. volume: math.unit(5/8, "gallons"),
  47572. name: "Back",
  47573. image: {
  47574. source: "./media/characters/ludwig-horn/back.svg",
  47575. extra: 1874/1729,
  47576. bottom: 27/1901
  47577. }
  47578. },
  47579. dick: {
  47580. height: math.unit(1.05, "feet"),
  47581. weight: math.unit(15, "lb"),
  47582. volume: math.unit(5/8, "gallons"),
  47583. name: "Dick",
  47584. image: {
  47585. source: "./media/characters/ludwig-horn/dick.svg"
  47586. }
  47587. },
  47588. },
  47589. [
  47590. {
  47591. name: "Small",
  47592. height: math.unit(6, "feet")
  47593. },
  47594. {
  47595. name: "Typical",
  47596. height: math.unit(12, "feet"),
  47597. default: true
  47598. },
  47599. {
  47600. name: "Building",
  47601. height: math.unit(80, "feet")
  47602. },
  47603. {
  47604. name: "Town",
  47605. height: math.unit(800, "feet")
  47606. },
  47607. {
  47608. name: "Kingdom",
  47609. height: math.unit(80000, "feet")
  47610. },
  47611. {
  47612. name: "Planet",
  47613. height: math.unit(8000000, "feet")
  47614. },
  47615. {
  47616. name: "Universe",
  47617. height: math.unit(8000000000, "feet")
  47618. },
  47619. {
  47620. name: "Transcended",
  47621. height: math.unit(8e27, "feet")
  47622. },
  47623. ]
  47624. ))
  47625. characterMakers.push(() => makeCharacter(
  47626. { name: "Biot Avery", species: ["dragon"], tags: ["anthro"] },
  47627. {
  47628. front: {
  47629. height: math.unit(5, "feet"),
  47630. weight: math.unit(50, "kg"),
  47631. name: "Front",
  47632. image: {
  47633. source: "./media/characters/biot-avery/front.svg",
  47634. extra: 1295/1232,
  47635. bottom: 86/1381
  47636. }
  47637. },
  47638. },
  47639. [
  47640. {
  47641. name: "Normal",
  47642. height: math.unit(5, "feet"),
  47643. default: true
  47644. },
  47645. ]
  47646. ))
  47647. characterMakers.push(() => makeCharacter(
  47648. { name: "Kitsune Kiro", species: ["kitsune"], tags: ["anthro"] },
  47649. {
  47650. front: {
  47651. height: math.unit(6, "feet"),
  47652. name: "Front",
  47653. image: {
  47654. source: "./media/characters/kitsune-kiro/front.svg",
  47655. extra: 1270/1158,
  47656. bottom: 42/1312
  47657. }
  47658. },
  47659. frontAlt: {
  47660. height: math.unit(6, "feet"),
  47661. name: "Front (Alt)",
  47662. image: {
  47663. source: "./media/characters/kitsune-kiro/front-alt.svg",
  47664. extra: 1130/1081,
  47665. bottom: 36/1166
  47666. }
  47667. },
  47668. },
  47669. [
  47670. {
  47671. name: "Smol",
  47672. height: math.unit(3, "feet")
  47673. },
  47674. {
  47675. name: "Normal",
  47676. height: math.unit(6, "feet"),
  47677. default: true
  47678. },
  47679. ]
  47680. ))
  47681. characterMakers.push(() => makeCharacter(
  47682. { name: "Jack Thatcher", species: ["fox"], tags: ["anthro"] },
  47683. {
  47684. front: {
  47685. height: math.unit(6, "feet"),
  47686. weight: math.unit(125, "lb"),
  47687. name: "Front",
  47688. image: {
  47689. source: "./media/characters/jack-thatcher/front.svg",
  47690. extra: 1474/1370,
  47691. bottom: 26/1500
  47692. }
  47693. },
  47694. back: {
  47695. height: math.unit(6, "feet"),
  47696. weight: math.unit(125, "lb"),
  47697. name: "Back",
  47698. image: {
  47699. source: "./media/characters/jack-thatcher/back.svg",
  47700. extra: 1489/1384,
  47701. bottom: 18/1507
  47702. }
  47703. },
  47704. },
  47705. [
  47706. {
  47707. name: "Normal",
  47708. height: math.unit(6, "feet"),
  47709. default: true
  47710. },
  47711. {
  47712. name: "Macro",
  47713. height: math.unit(75, "feet")
  47714. },
  47715. {
  47716. name: "Macro-er",
  47717. height: math.unit(250, "feet")
  47718. },
  47719. ]
  47720. ))
  47721. characterMakers.push(() => makeCharacter(
  47722. { name: "Max Hyper", species: ["husky"], tags: ["anthro"] },
  47723. {
  47724. front: {
  47725. height: math.unit(7, "feet"),
  47726. weight: math.unit(110, "kg"),
  47727. name: "Front",
  47728. image: {
  47729. source: "./media/characters/max-hyper/front.svg",
  47730. extra: 1969/1881,
  47731. bottom: 49/2018
  47732. }
  47733. },
  47734. },
  47735. [
  47736. {
  47737. name: "Normal",
  47738. height: math.unit(7, "feet"),
  47739. default: true
  47740. },
  47741. ]
  47742. ))
  47743. characterMakers.push(() => makeCharacter(
  47744. { name: "Spook", species: ["alien"], tags: ["anthro"] },
  47745. {
  47746. front: {
  47747. height: math.unit(5 + 5/12, "feet"),
  47748. weight: math.unit(160, "lb"),
  47749. name: "Front",
  47750. image: {
  47751. source: "./media/characters/spook/front.svg",
  47752. extra: 794/791,
  47753. bottom: 54/848
  47754. }
  47755. },
  47756. back: {
  47757. height: math.unit(5 + 5/12, "feet"),
  47758. weight: math.unit(160, "lb"),
  47759. name: "Back",
  47760. image: {
  47761. source: "./media/characters/spook/back.svg",
  47762. extra: 812/798,
  47763. bottom: 32/844
  47764. }
  47765. },
  47766. },
  47767. [
  47768. {
  47769. name: "Normal",
  47770. height: math.unit(5 + 5/12, "feet"),
  47771. default: true
  47772. },
  47773. ]
  47774. ))
  47775. characterMakers.push(() => makeCharacter(
  47776. { name: "Xeaduulix", species: ["dragon"], tags: ["anthro"] },
  47777. {
  47778. front: {
  47779. height: math.unit(18, "feet"),
  47780. name: "Front",
  47781. image: {
  47782. source: "./media/characters/xeaduulix/front.svg",
  47783. extra: 1380/1166,
  47784. bottom: 110/1490
  47785. }
  47786. },
  47787. back: {
  47788. height: math.unit(18, "feet"),
  47789. name: "Back",
  47790. image: {
  47791. source: "./media/characters/xeaduulix/back.svg",
  47792. extra: 1592/1170,
  47793. bottom: 128/1720
  47794. }
  47795. },
  47796. frontNsfw: {
  47797. height: math.unit(18, "feet"),
  47798. name: "Front (NSFW)",
  47799. image: {
  47800. source: "./media/characters/xeaduulix/front-nsfw.svg",
  47801. extra: 1380/1166,
  47802. bottom: 110/1490
  47803. }
  47804. },
  47805. backNsfw: {
  47806. height: math.unit(18, "feet"),
  47807. name: "Back (NSFW)",
  47808. image: {
  47809. source: "./media/characters/xeaduulix/back-nsfw.svg",
  47810. extra: 1592/1170,
  47811. bottom: 128/1720
  47812. }
  47813. },
  47814. },
  47815. [
  47816. {
  47817. name: "Normal",
  47818. height: math.unit(18, "feet"),
  47819. default: true
  47820. },
  47821. ]
  47822. ))
  47823. characterMakers.push(() => makeCharacter(
  47824. { name: "Fledge", species: ["alicorn"], tags: ["anthro"] },
  47825. {
  47826. spreadWings: {
  47827. height: math.unit(20, "feet"),
  47828. name: "Spread Wings",
  47829. image: {
  47830. source: "./media/characters/fledge/spread-wings.svg",
  47831. extra: 693/635,
  47832. bottom: 26/719
  47833. }
  47834. },
  47835. front: {
  47836. height: math.unit(20, "feet"),
  47837. name: "Front",
  47838. image: {
  47839. source: "./media/characters/fledge/front.svg",
  47840. extra: 684/637,
  47841. bottom: 18/702
  47842. }
  47843. },
  47844. frontAlt: {
  47845. height: math.unit(20, "feet"),
  47846. name: "Front (Alt)",
  47847. image: {
  47848. source: "./media/characters/fledge/front-alt.svg",
  47849. extra: 708/664,
  47850. bottom: 13/721
  47851. }
  47852. },
  47853. back: {
  47854. height: math.unit(20, "feet"),
  47855. name: "Back",
  47856. image: {
  47857. source: "./media/characters/fledge/back.svg",
  47858. extra: 718/634,
  47859. bottom: 22/740
  47860. }
  47861. },
  47862. head: {
  47863. height: math.unit(5.55, "feet"),
  47864. name: "Head",
  47865. image: {
  47866. source: "./media/characters/fledge/head.svg"
  47867. }
  47868. },
  47869. headAlt: {
  47870. height: math.unit(5.1, "feet"),
  47871. name: "Head (Alt)",
  47872. image: {
  47873. source: "./media/characters/fledge/head-alt.svg"
  47874. }
  47875. },
  47876. },
  47877. [
  47878. {
  47879. name: "Small",
  47880. height: math.unit(6 + 2/12, "feet")
  47881. },
  47882. {
  47883. name: "Big",
  47884. height: math.unit(20, "feet"),
  47885. default: true
  47886. },
  47887. {
  47888. name: "Giant",
  47889. height: math.unit(100, "feet")
  47890. },
  47891. {
  47892. name: "Macro",
  47893. height: math.unit(200, "feet")
  47894. },
  47895. ]
  47896. ))
  47897. characterMakers.push(() => makeCharacter(
  47898. { name: "Atlas Morenai", species: ["red-panda", "atlas-moth"], tags: ["anthro"] },
  47899. {
  47900. front: {
  47901. height: math.unit(1, "meter"),
  47902. name: "Front",
  47903. image: {
  47904. source: "./media/characters/atlas-morenai/front.svg",
  47905. extra: 1275/1043,
  47906. bottom: 19/1294
  47907. }
  47908. },
  47909. back: {
  47910. height: math.unit(1, "meter"),
  47911. name: "Back",
  47912. image: {
  47913. source: "./media/characters/atlas-morenai/back.svg",
  47914. extra: 1141/1001,
  47915. bottom: 25/1166
  47916. }
  47917. },
  47918. },
  47919. [
  47920. {
  47921. name: "Normal",
  47922. height: math.unit(1, "meter"),
  47923. default: true
  47924. },
  47925. {
  47926. name: "Magic-Infused",
  47927. height: math.unit(5, "meters")
  47928. },
  47929. ]
  47930. ))
  47931. characterMakers.push(() => makeCharacter(
  47932. { name: "Cintia", species: ["fox"], tags: ["anthro"] },
  47933. {
  47934. front: {
  47935. height: math.unit(5, "meters"),
  47936. name: "Front",
  47937. image: {
  47938. source: "./media/characters/cintia/front.svg",
  47939. extra: 1312/1228,
  47940. bottom: 38/1350
  47941. }
  47942. },
  47943. back: {
  47944. height: math.unit(5, "meters"),
  47945. name: "Back",
  47946. image: {
  47947. source: "./media/characters/cintia/back.svg",
  47948. extra: 1260/1166,
  47949. bottom: 98/1358
  47950. }
  47951. },
  47952. frontDick: {
  47953. height: math.unit(5, "meters"),
  47954. name: "Front (Dick)",
  47955. image: {
  47956. source: "./media/characters/cintia/front-dick.svg",
  47957. extra: 1312/1228,
  47958. bottom: 38/1350
  47959. }
  47960. },
  47961. backDick: {
  47962. height: math.unit(5, "meters"),
  47963. name: "Back (Dick)",
  47964. image: {
  47965. source: "./media/characters/cintia/back-dick.svg",
  47966. extra: 1260/1166,
  47967. bottom: 98/1358
  47968. }
  47969. },
  47970. bust: {
  47971. height: math.unit(1.97, "meters"),
  47972. name: "Bust",
  47973. image: {
  47974. source: "./media/characters/cintia/bust.svg",
  47975. extra: 617/565,
  47976. bottom: 0/617
  47977. }
  47978. },
  47979. },
  47980. [
  47981. {
  47982. name: "Normal",
  47983. height: math.unit(5, "meters"),
  47984. default: true
  47985. },
  47986. ]
  47987. ))
  47988. characterMakers.push(() => makeCharacter(
  47989. { name: "Denora", species: ["husky"], tags: ["anthro"] },
  47990. {
  47991. side: {
  47992. height: math.unit(100, "feet"),
  47993. name: "Side",
  47994. image: {
  47995. source: "./media/characters/denora/side.svg",
  47996. extra: 875/803,
  47997. bottom: 9/884
  47998. }
  47999. },
  48000. },
  48001. [
  48002. {
  48003. name: "Standard",
  48004. height: math.unit(100, "feet"),
  48005. default: true
  48006. },
  48007. {
  48008. name: "Grand",
  48009. height: math.unit(1000, "feet")
  48010. },
  48011. {
  48012. name: "Conquering",
  48013. height: math.unit(10000, "feet")
  48014. },
  48015. ]
  48016. ))
  48017. characterMakers.push(() => makeCharacter(
  48018. { name: "Kiva", species: ["dire-wolf"], tags: ["anthro"] },
  48019. {
  48020. front: {
  48021. height: math.unit(8 + 5/12, "feet"),
  48022. weight: math.unit(700, "lb"),
  48023. name: "Front",
  48024. image: {
  48025. source: "./media/characters/kiva/front.svg",
  48026. extra: 419/406,
  48027. bottom: 30/449
  48028. }
  48029. },
  48030. sideDressed: {
  48031. height: math.unit(8 + 5/12, "feet"),
  48032. weight: math.unit(700, "lb"),
  48033. name: "Side (Dressed)",
  48034. image: {
  48035. source: "./media/characters/kiva/side-dressed.svg",
  48036. extra: 1102/1055,
  48037. bottom: 60/1162
  48038. }
  48039. },
  48040. sideNude: {
  48041. height: math.unit(8 + 5/12, "feet"),
  48042. weight: math.unit(700, "lb"),
  48043. name: "Side (Nude)",
  48044. image: {
  48045. source: "./media/characters/kiva/side-nude.svg",
  48046. extra: 1102/1055,
  48047. bottom: 60/1162
  48048. }
  48049. },
  48050. },
  48051. [
  48052. {
  48053. name: "Base Height",
  48054. height: math.unit(8 + 5/12, "feet"),
  48055. default: true
  48056. },
  48057. {
  48058. name: "Macro",
  48059. height: math.unit(100, "feet")
  48060. },
  48061. {
  48062. name: "Max",
  48063. height: math.unit(3280, "feet")
  48064. },
  48065. ]
  48066. ))
  48067. characterMakers.push(() => makeCharacter(
  48068. { name: "ZTragon", species: ["dragon"], tags: ["anthro"] },
  48069. {
  48070. front: {
  48071. height: math.unit(6 + 8/12, "feet"),
  48072. weight: math.unit(250, "lb"),
  48073. name: "Front",
  48074. image: {
  48075. source: "./media/characters/ztragon/front.svg",
  48076. extra: 1825/1684,
  48077. bottom: 98/1923
  48078. }
  48079. },
  48080. },
  48081. [
  48082. {
  48083. name: "Normal",
  48084. height: math.unit(6 + 8/12, "feet"),
  48085. default: true
  48086. },
  48087. {
  48088. name: "Macro",
  48089. height: math.unit(80, "feet")
  48090. },
  48091. ]
  48092. ))
  48093. characterMakers.push(() => makeCharacter(
  48094. { name: "Yesenia", species: ["snake"], tags: ["naga"] },
  48095. {
  48096. front: {
  48097. height: math.unit(10.4, "feet"),
  48098. weight: math.unit(2, "tons"),
  48099. name: "Front",
  48100. image: {
  48101. source: "./media/characters/yesenia/front.svg",
  48102. extra: 1479/1474,
  48103. bottom: 233/1712
  48104. }
  48105. },
  48106. },
  48107. [
  48108. {
  48109. name: "Normal",
  48110. height: math.unit(10.4, "feet"),
  48111. default: true
  48112. },
  48113. ]
  48114. ))
  48115. characterMakers.push(() => makeCharacter(
  48116. { name: "Leanne Lycheborne", species: ["wolf", "dog", "werewolf"], tags: ["anthro"] },
  48117. {
  48118. normal: {
  48119. height: math.unit(6 + 1/12, "feet"),
  48120. weight: math.unit(180, "lb"),
  48121. name: "Normal",
  48122. image: {
  48123. source: "./media/characters/leanne-lycheborne/normal.svg",
  48124. extra: 1748/1660,
  48125. bottom: 98/1846
  48126. }
  48127. },
  48128. were: {
  48129. height: math.unit(12, "feet"),
  48130. weight: math.unit(1600, "lb"),
  48131. name: "Were",
  48132. image: {
  48133. source: "./media/characters/leanne-lycheborne/were.svg",
  48134. extra: 1485/1432,
  48135. bottom: 66/1551
  48136. }
  48137. },
  48138. },
  48139. [
  48140. {
  48141. name: "Normal",
  48142. height: math.unit(6 + 1/12, "feet"),
  48143. default: true
  48144. },
  48145. ]
  48146. ))
  48147. characterMakers.push(() => makeCharacter(
  48148. { name: "Kira Tyler", species: ["dragon", "cat"], tags: ["feral"] },
  48149. {
  48150. side: {
  48151. height: math.unit(13, "feet"),
  48152. name: "Side",
  48153. image: {
  48154. source: "./media/characters/kira-tyler/side.svg",
  48155. extra: 693/393,
  48156. bottom: 58/751
  48157. }
  48158. },
  48159. },
  48160. [
  48161. {
  48162. name: "Normal",
  48163. height: math.unit(13, "feet"),
  48164. default: true
  48165. },
  48166. ]
  48167. ))
  48168. characterMakers.push(() => makeCharacter(
  48169. { name: "Blaze", species: ["octopus", "avian"], tags: ["anthro"] },
  48170. {
  48171. front: {
  48172. height: math.unit(10.3, "feet"),
  48173. weight: math.unit(150, "lb"),
  48174. name: "Front",
  48175. image: {
  48176. source: "./media/characters/blaze/front.svg",
  48177. extra: 1378/1286,
  48178. bottom: 172/1550
  48179. }
  48180. },
  48181. },
  48182. [
  48183. {
  48184. name: "Normal",
  48185. height: math.unit(10.3, "feet"),
  48186. default: true
  48187. },
  48188. ]
  48189. ))
  48190. characterMakers.push(() => makeCharacter(
  48191. { name: "Anu", species: ["fennec-fox", "jackal"], tags: ["taur"] },
  48192. {
  48193. side: {
  48194. height: math.unit(2, "meters"),
  48195. weight: math.unit(400, "kg"),
  48196. name: "Side",
  48197. image: {
  48198. source: "./media/characters/anu/side.svg",
  48199. extra: 506/394,
  48200. bottom: 18/524
  48201. }
  48202. },
  48203. },
  48204. [
  48205. {
  48206. name: "Humanoid",
  48207. height: math.unit(2, "meters")
  48208. },
  48209. {
  48210. name: "Normal",
  48211. height: math.unit(5, "meters"),
  48212. default: true
  48213. },
  48214. ]
  48215. ))
  48216. characterMakers.push(() => makeCharacter(
  48217. { name: "Synx the Lynx", species: ["lynx"], tags: ["anthro"] },
  48218. {
  48219. front: {
  48220. height: math.unit(5 + 5/12, "feet"),
  48221. weight: math.unit(170, "lb"),
  48222. name: "Front",
  48223. image: {
  48224. source: "./media/characters/synx-the-lynx/front.svg",
  48225. extra: 1893/1745,
  48226. bottom: 17/1910
  48227. }
  48228. },
  48229. side: {
  48230. height: math.unit(5 + 5/12, "feet"),
  48231. weight: math.unit(170, "lb"),
  48232. name: "Side",
  48233. image: {
  48234. source: "./media/characters/synx-the-lynx/side.svg",
  48235. extra: 1884/1740,
  48236. bottom: 39/1923
  48237. }
  48238. },
  48239. back: {
  48240. height: math.unit(5 + 5/12, "feet"),
  48241. weight: math.unit(170, "lb"),
  48242. name: "Back",
  48243. image: {
  48244. source: "./media/characters/synx-the-lynx/back.svg",
  48245. extra: 1903/1755,
  48246. bottom: 14/1917
  48247. }
  48248. },
  48249. },
  48250. [
  48251. {
  48252. name: "Normal",
  48253. height: math.unit(5 + 5/12, "feet"),
  48254. default: true
  48255. },
  48256. ]
  48257. ))
  48258. characterMakers.push(() => makeCharacter(
  48259. { name: "Nadezda Fex", species: ["fox"], tags: ["anthro"] },
  48260. {
  48261. back: {
  48262. height: math.unit(15, "feet"),
  48263. name: "Back",
  48264. image: {
  48265. source: "./media/characters/nadezda-fex/back.svg",
  48266. extra: 1695/1481,
  48267. bottom: 25/1720
  48268. }
  48269. },
  48270. },
  48271. [
  48272. {
  48273. name: "Normal",
  48274. height: math.unit(15, "feet"),
  48275. default: true
  48276. },
  48277. {
  48278. name: "Macro",
  48279. height: math.unit(2.5, "miles")
  48280. },
  48281. {
  48282. name: "Goddess",
  48283. height: math.unit(2, "multiverses")
  48284. },
  48285. ]
  48286. ))
  48287. characterMakers.push(() => makeCharacter(
  48288. { name: "Lev", species: ["snake"], tags: ["anthro"] },
  48289. {
  48290. front: {
  48291. height: math.unit(216, "cm"),
  48292. name: "Front",
  48293. image: {
  48294. source: "./media/characters/lev/front.svg",
  48295. extra: 1728/1670,
  48296. bottom: 82/1810
  48297. }
  48298. },
  48299. back: {
  48300. height: math.unit(216, "cm"),
  48301. name: "Back",
  48302. image: {
  48303. source: "./media/characters/lev/back.svg",
  48304. extra: 1738/1675,
  48305. bottom: 24/1762
  48306. }
  48307. },
  48308. dressed: {
  48309. height: math.unit(216, "cm"),
  48310. name: "Dressed",
  48311. image: {
  48312. source: "./media/characters/lev/dressed.svg",
  48313. extra: 1397/1351,
  48314. bottom: 73/1470
  48315. }
  48316. },
  48317. head: {
  48318. height: math.unit(0.51, "meter"),
  48319. name: "Head",
  48320. image: {
  48321. source: "./media/characters/lev/head.svg"
  48322. }
  48323. },
  48324. },
  48325. [
  48326. {
  48327. name: "Normal",
  48328. height: math.unit(216, "cm"),
  48329. default: true
  48330. },
  48331. {
  48332. name: "Relatively Macro",
  48333. height: math.unit(80, "meters")
  48334. },
  48335. {
  48336. name: "Megamacro",
  48337. height: math.unit(21600, "meters")
  48338. },
  48339. {
  48340. name: "Megamacro+",
  48341. height: math.unit(64800, "meters")
  48342. },
  48343. ]
  48344. ))
  48345. characterMakers.push(() => makeCharacter(
  48346. { name: "Moka", species: ["dragon"], tags: ["anthro"] },
  48347. {
  48348. front: {
  48349. height: math.unit(2, "meters"),
  48350. weight: math.unit(80, "kg"),
  48351. name: "Front",
  48352. image: {
  48353. source: "./media/characters/moka/front.svg",
  48354. extra: 1337/1255,
  48355. bottom: 58/1395
  48356. }
  48357. },
  48358. },
  48359. [
  48360. {
  48361. name: "Micro",
  48362. height: math.unit(15, "cm")
  48363. },
  48364. {
  48365. name: "Normal",
  48366. height: math.unit(2, "meters"),
  48367. default: true
  48368. },
  48369. {
  48370. name: "Macro",
  48371. height: math.unit(20, "meters"),
  48372. },
  48373. ]
  48374. ))
  48375. characterMakers.push(() => makeCharacter(
  48376. { name: "Kuzco", species: ["snake"], tags: ["anthro"] },
  48377. {
  48378. front: {
  48379. height: math.unit(9, "feet"),
  48380. weight: math.unit(240, "lb"),
  48381. name: "Front",
  48382. image: {
  48383. source: "./media/characters/kuzco/front.svg",
  48384. extra: 1593/1487,
  48385. bottom: 32/1625
  48386. }
  48387. },
  48388. side: {
  48389. height: math.unit(9, "feet"),
  48390. weight: math.unit(240, "lb"),
  48391. name: "Side",
  48392. image: {
  48393. source: "./media/characters/kuzco/side.svg",
  48394. extra: 1575/1485,
  48395. bottom: 30/1605
  48396. }
  48397. },
  48398. back: {
  48399. height: math.unit(9, "feet"),
  48400. weight: math.unit(240, "lb"),
  48401. name: "Back",
  48402. image: {
  48403. source: "./media/characters/kuzco/back.svg",
  48404. extra: 1603/1514,
  48405. bottom: 14/1617
  48406. }
  48407. },
  48408. },
  48409. [
  48410. {
  48411. name: "Normal",
  48412. height: math.unit(9, "feet"),
  48413. default: true
  48414. },
  48415. ]
  48416. ))
  48417. characterMakers.push(() => makeCharacter(
  48418. { name: "Ceruleus", species: ["fox", "dragon"], tags: ["feral"] },
  48419. {
  48420. side: {
  48421. height: math.unit(2, "meters"),
  48422. weight: math.unit(300, "kg"),
  48423. name: "Side",
  48424. image: {
  48425. source: "./media/characters/ceruleus/side.svg",
  48426. extra: 1068/974,
  48427. bottom: 126/1194
  48428. }
  48429. },
  48430. maw: {
  48431. height: math.unit(0.8125, "meter"),
  48432. name: "Maw",
  48433. image: {
  48434. source: "./media/characters/ceruleus/maw.svg"
  48435. }
  48436. },
  48437. },
  48438. [
  48439. {
  48440. name: "Normal",
  48441. height: math.unit(16, "meters"),
  48442. default: true
  48443. },
  48444. ]
  48445. ))
  48446. characterMakers.push(() => makeCharacter(
  48447. { name: "Acouya", species: ["kangaroo"], tags: ["anthro"] },
  48448. {
  48449. front: {
  48450. height: math.unit(9, "feet"),
  48451. weight: math.unit(500, "kg"),
  48452. name: "Front",
  48453. image: {
  48454. source: "./media/characters/acouya/front.svg",
  48455. extra: 1660/1473,
  48456. bottom: 28/1688
  48457. }
  48458. },
  48459. },
  48460. [
  48461. {
  48462. name: "Normal",
  48463. height: math.unit(9, "feet"),
  48464. default: true
  48465. },
  48466. ]
  48467. ))
  48468. characterMakers.push(() => makeCharacter(
  48469. { name: "Vant", species: ["husky"], tags: ["anthro"] },
  48470. {
  48471. front: {
  48472. height: math.unit(5 + 6/12, "feet"),
  48473. weight: math.unit(195, "lb"),
  48474. name: "Front",
  48475. image: {
  48476. source: "./media/characters/vant/front.svg",
  48477. extra: 1396/1320,
  48478. bottom: 20/1416
  48479. }
  48480. },
  48481. back: {
  48482. height: math.unit(5 + 6/12, "feet"),
  48483. weight: math.unit(195, "lb"),
  48484. name: "Back",
  48485. image: {
  48486. source: "./media/characters/vant/back.svg",
  48487. extra: 1396/1320,
  48488. bottom: 20/1416
  48489. }
  48490. },
  48491. maw: {
  48492. height: math.unit(0.75, "feet"),
  48493. name: "Maw",
  48494. image: {
  48495. source: "./media/characters/vant/maw.svg"
  48496. }
  48497. },
  48498. paw: {
  48499. height: math.unit(1.07, "feet"),
  48500. name: "Paw",
  48501. image: {
  48502. source: "./media/characters/vant/paw.svg"
  48503. }
  48504. },
  48505. },
  48506. [
  48507. {
  48508. name: "Micro",
  48509. height: math.unit(0.25, "inches")
  48510. },
  48511. {
  48512. name: "Normal",
  48513. height: math.unit(5 + 6/12, "feet"),
  48514. default: true
  48515. },
  48516. {
  48517. name: "Macro",
  48518. height: math.unit(75, "feet")
  48519. },
  48520. ]
  48521. ))
  48522. characterMakers.push(() => makeCharacter(
  48523. { name: "Ahra", species: ["fox"], tags: ["anthro"] },
  48524. {
  48525. front: {
  48526. height: math.unit(30, "meters"),
  48527. weight: math.unit(363, "tons"),
  48528. name: "Front",
  48529. image: {
  48530. source: "./media/characters/ahra/front.svg",
  48531. extra: 1914/1814,
  48532. bottom: 46/1960
  48533. }
  48534. },
  48535. },
  48536. [
  48537. {
  48538. name: "Macro",
  48539. height: math.unit(30, "meters"),
  48540. default: true
  48541. },
  48542. ]
  48543. ))
  48544. characterMakers.push(() => makeCharacter(
  48545. { name: "Coriander", species: ["owlbear"], tags: ["anthro"] },
  48546. {
  48547. undressed: {
  48548. height: math.unit(2, "m"),
  48549. weight: math.unit(250, "kg"),
  48550. name: "Undressed",
  48551. image: {
  48552. source: "./media/characters/coriander/undressed.svg",
  48553. extra: 1757/1606,
  48554. bottom: 107/1864
  48555. }
  48556. },
  48557. dressed: {
  48558. height: math.unit(2, "m"),
  48559. weight: math.unit(250, "kg"),
  48560. name: "Dressed",
  48561. image: {
  48562. source: "./media/characters/coriander/dressed.svg",
  48563. extra: 1757/1606,
  48564. bottom: 107/1864
  48565. }
  48566. },
  48567. },
  48568. [
  48569. {
  48570. name: "Normal",
  48571. height: math.unit(4, "meters"),
  48572. default: true
  48573. },
  48574. {
  48575. name: "XL",
  48576. height: math.unit(6, "meters")
  48577. },
  48578. {
  48579. name: "XXL",
  48580. height: math.unit(8, "meters")
  48581. },
  48582. ]
  48583. ))
  48584. characterMakers.push(() => makeCharacter(
  48585. { name: "Syrinx", species: ["phoenix"], tags: ["anthro"] },
  48586. {
  48587. front: {
  48588. height: math.unit(6, "feet"),
  48589. name: "Front",
  48590. image: {
  48591. source: "./media/characters/syrinx/front.svg",
  48592. extra: 1557/1259,
  48593. bottom: 171/1728
  48594. }
  48595. },
  48596. },
  48597. [
  48598. {
  48599. name: "Normal",
  48600. height: math.unit(6 + 3/12, "feet"),
  48601. default: true
  48602. },
  48603. ]
  48604. ))
  48605. characterMakers.push(() => makeCharacter(
  48606. { name: "Bor", species: ["silvertongue"], tags: ["anthro"] },
  48607. {
  48608. front: {
  48609. height: math.unit(11 + 6/12, "feet"),
  48610. weight: math.unit(1.5, "tons"),
  48611. name: "Front",
  48612. image: {
  48613. source: "./media/characters/bor/front.svg",
  48614. extra: 1189/1109,
  48615. bottom: 170/1359
  48616. }
  48617. },
  48618. },
  48619. [
  48620. {
  48621. name: "Normal",
  48622. height: math.unit(11 + 6/12, "feet"),
  48623. default: true
  48624. },
  48625. {
  48626. name: "Macro",
  48627. height: math.unit(32 + 9/12, "feet")
  48628. },
  48629. ]
  48630. ))
  48631. characterMakers.push(() => makeCharacter(
  48632. { name: "Abacus", species: ["construct", "corvid"], tags: ["anthro", "feral"] },
  48633. {
  48634. anthro: {
  48635. height: math.unit(9, "feet"),
  48636. weight: math.unit(2076, "lb"),
  48637. name: "Anthro",
  48638. image: {
  48639. source: "./media/characters/abacus/anthro.svg",
  48640. extra: 1540/1494,
  48641. bottom: 233/1773
  48642. }
  48643. },
  48644. pigeon: {
  48645. height: math.unit(1, "feet"),
  48646. name: "Pigeon",
  48647. image: {
  48648. source: "./media/characters/abacus/pigeon.svg",
  48649. extra: 528/525,
  48650. bottom: 46/574
  48651. }
  48652. },
  48653. },
  48654. [
  48655. {
  48656. name: "Normal",
  48657. height: math.unit(9, "feet"),
  48658. default: true
  48659. },
  48660. ]
  48661. ))
  48662. characterMakers.push(() => makeCharacter(
  48663. { name: "Delkhan", species: ["t-rex"], tags: ["feral"] },
  48664. {
  48665. side: {
  48666. height: math.unit(6, "feet"),
  48667. name: "Side",
  48668. image: {
  48669. source: "./media/characters/delkhan/side.svg",
  48670. extra: 1884/1786,
  48671. bottom: 308/2192
  48672. }
  48673. },
  48674. head: {
  48675. height: math.unit(3.38, "feet"),
  48676. name: "Head",
  48677. image: {
  48678. source: "./media/characters/delkhan/head.svg"
  48679. }
  48680. },
  48681. },
  48682. [
  48683. {
  48684. name: "Normal",
  48685. height: math.unit(72, "feet"),
  48686. default: true
  48687. },
  48688. {
  48689. name: "Giant",
  48690. height: math.unit(172, "feet")
  48691. },
  48692. ]
  48693. ))
  48694. characterMakers.push(() => makeCharacter(
  48695. { name: "Euchidat", species: ["opossum"], tags: ["anthro"] },
  48696. {
  48697. standing: {
  48698. height: math.unit(6, "feet"),
  48699. name: "Standing",
  48700. image: {
  48701. source: "./media/characters/euchidat/standing.svg",
  48702. extra: 1612/1553,
  48703. bottom: 116/1728
  48704. }
  48705. },
  48706. leaning: {
  48707. height: math.unit(6, "feet"),
  48708. name: "Leaning",
  48709. image: {
  48710. source: "./media/characters/euchidat/leaning.svg",
  48711. extra: 1719/1674,
  48712. bottom: 27/1746
  48713. }
  48714. },
  48715. },
  48716. [
  48717. {
  48718. name: "Normal",
  48719. height: math.unit(175, "feet"),
  48720. default: true
  48721. },
  48722. {
  48723. name: "Megamacro",
  48724. height: math.unit(190, "miles")
  48725. },
  48726. {
  48727. name: "Gigamacro",
  48728. height: math.unit(190000, "miles")
  48729. },
  48730. ]
  48731. ))
  48732. characterMakers.push(() => makeCharacter(
  48733. { name: "Rebecca Stack", species: ["human"], tags: ["anthro"] },
  48734. {
  48735. front: {
  48736. height: math.unit(6, "feet"),
  48737. weight: math.unit(150, "lb"),
  48738. name: "Front",
  48739. image: {
  48740. source: "./media/characters/rebecca-stack/front.svg",
  48741. extra: 1256/1201,
  48742. bottom: 18/1274
  48743. }
  48744. },
  48745. },
  48746. [
  48747. {
  48748. name: "Normal",
  48749. height: math.unit(5 + 8/12, "feet"),
  48750. default: true
  48751. },
  48752. {
  48753. name: "Demolitionist",
  48754. height: math.unit(200, "feet")
  48755. },
  48756. {
  48757. name: "Out of Control",
  48758. height: math.unit(2, "miles")
  48759. },
  48760. {
  48761. name: "Giga",
  48762. height: math.unit(7200, "miles")
  48763. },
  48764. ]
  48765. ))
  48766. characterMakers.push(() => makeCharacter(
  48767. { name: "Jenny Cartwright", species: ["human"], tags: ["anthro"] },
  48768. {
  48769. front: {
  48770. height: math.unit(6, "feet"),
  48771. weight: math.unit(150, "lb"),
  48772. name: "Front",
  48773. image: {
  48774. source: "./media/characters/jenny-cartwright/front.svg",
  48775. extra: 1384/1376,
  48776. bottom: 58/1442
  48777. }
  48778. },
  48779. },
  48780. [
  48781. {
  48782. name: "Normal",
  48783. height: math.unit(6 + 7/12, "feet"),
  48784. default: true
  48785. },
  48786. {
  48787. name: "Librarian",
  48788. height: math.unit(55, "feet")
  48789. },
  48790. {
  48791. name: "Sightseer",
  48792. height: math.unit(50, "miles")
  48793. },
  48794. {
  48795. name: "Giga",
  48796. height: math.unit(30000, "miles")
  48797. },
  48798. ]
  48799. ))
  48800. characterMakers.push(() => makeCharacter(
  48801. { name: "Marvy", species: ["sergal"], tags: ["anthro"] },
  48802. {
  48803. nude: {
  48804. height: math.unit(8, "feet"),
  48805. weight: math.unit(225, "lb"),
  48806. name: "Nude",
  48807. image: {
  48808. source: "./media/characters/marvy/nude.svg",
  48809. extra: 1900/1683,
  48810. bottom: 89/1989
  48811. }
  48812. },
  48813. dressed: {
  48814. height: math.unit(8, "feet"),
  48815. weight: math.unit(225, "lb"),
  48816. name: "Dressed",
  48817. image: {
  48818. source: "./media/characters/marvy/dressed.svg",
  48819. extra: 1900/1683,
  48820. bottom: 89/1989
  48821. }
  48822. },
  48823. head: {
  48824. height: math.unit(2.85, "feet"),
  48825. name: "Head",
  48826. image: {
  48827. source: "./media/characters/marvy/head.svg"
  48828. }
  48829. },
  48830. },
  48831. [
  48832. {
  48833. name: "Normal",
  48834. height: math.unit(8, "feet"),
  48835. default: true
  48836. },
  48837. ]
  48838. ))
  48839. characterMakers.push(() => makeCharacter(
  48840. { name: "Leah", species: ["maned-wolf"], tags: ["anthro"] },
  48841. {
  48842. front: {
  48843. height: math.unit(8, "feet"),
  48844. weight: math.unit(250, "lb"),
  48845. name: "Front",
  48846. image: {
  48847. source: "./media/characters/leah/front.svg",
  48848. extra: 1257/1149,
  48849. bottom: 109/1366
  48850. }
  48851. },
  48852. },
  48853. [
  48854. {
  48855. name: "Normal",
  48856. height: math.unit(8, "feet"),
  48857. default: true
  48858. },
  48859. {
  48860. name: "Minimacro",
  48861. height: math.unit(40, "feet")
  48862. },
  48863. {
  48864. name: "Macro",
  48865. height: math.unit(124, "feet")
  48866. },
  48867. {
  48868. name: "Megamacro",
  48869. height: math.unit(850, "feet")
  48870. },
  48871. ]
  48872. ))
  48873. characterMakers.push(() => makeCharacter(
  48874. { name: "Alvir", species: ["ahuizotl"], tags: ["feral"] },
  48875. {
  48876. side: {
  48877. height: math.unit(13 + 6/12, "feet"),
  48878. weight: math.unit(3200, "lb"),
  48879. name: "Side",
  48880. image: {
  48881. source: "./media/characters/alvir/side.svg",
  48882. extra: 896/589,
  48883. bottom: 26/922
  48884. }
  48885. },
  48886. },
  48887. [
  48888. {
  48889. name: "Normal",
  48890. height: math.unit(13 + 6/12, "feet"),
  48891. default: true
  48892. },
  48893. ]
  48894. ))
  48895. characterMakers.push(() => makeCharacter(
  48896. { name: "Zaina Khalil", species: ["human"], tags: ["anthro"] },
  48897. {
  48898. front: {
  48899. height: math.unit(5 + 4/12, "feet"),
  48900. weight: math.unit(236, "lb"),
  48901. name: "Front",
  48902. image: {
  48903. source: "./media/characters/zaina-khalil/front.svg",
  48904. extra: 1533/1485,
  48905. bottom: 94/1627
  48906. }
  48907. },
  48908. side: {
  48909. height: math.unit(5 + 4/12, "feet"),
  48910. weight: math.unit(236, "lb"),
  48911. name: "Side",
  48912. image: {
  48913. source: "./media/characters/zaina-khalil/side.svg",
  48914. extra: 1537/1498,
  48915. bottom: 66/1603
  48916. }
  48917. },
  48918. back: {
  48919. height: math.unit(5 + 4/12, "feet"),
  48920. weight: math.unit(236, "lb"),
  48921. name: "Back",
  48922. image: {
  48923. source: "./media/characters/zaina-khalil/back.svg",
  48924. extra: 1546/1494,
  48925. bottom: 89/1635
  48926. }
  48927. },
  48928. },
  48929. [
  48930. {
  48931. name: "Normal",
  48932. height: math.unit(5 + 4/12, "feet"),
  48933. default: true
  48934. },
  48935. ]
  48936. ))
  48937. characterMakers.push(() => makeCharacter(
  48938. { name: "Terry", species: ["husky"], tags: ["taur"] },
  48939. {
  48940. side: {
  48941. height: math.unit(12, "feet"),
  48942. weight: math.unit(4000, "lb"),
  48943. name: "Side",
  48944. image: {
  48945. source: "./media/characters/terry/side.svg",
  48946. extra: 1518/1439,
  48947. bottom: 149/1667
  48948. }
  48949. },
  48950. },
  48951. [
  48952. {
  48953. name: "Normal",
  48954. height: math.unit(12, "feet"),
  48955. default: true
  48956. },
  48957. ]
  48958. ))
  48959. characterMakers.push(() => makeCharacter(
  48960. { name: "Kahea", species: ["werewolf"], tags: ["anthro"] },
  48961. {
  48962. front: {
  48963. height: math.unit(12, "feet"),
  48964. weight: math.unit(1500, "lb"),
  48965. name: "Front",
  48966. image: {
  48967. source: "./media/characters/kahea/front.svg",
  48968. extra: 1722/1617,
  48969. bottom: 179/1901
  48970. }
  48971. },
  48972. },
  48973. [
  48974. {
  48975. name: "Normal",
  48976. height: math.unit(12, "feet"),
  48977. default: true
  48978. },
  48979. ]
  48980. ))
  48981. characterMakers.push(() => makeCharacter(
  48982. { name: "Alex Xuria", species: ["demon", "rabbit"], tags: ["anthro"] },
  48983. {
  48984. demonFront: {
  48985. height: math.unit(36, "feet"),
  48986. name: "Front",
  48987. image: {
  48988. source: "./media/characters/alex-xuria/demon-front.svg",
  48989. extra: 1705/1673,
  48990. bottom: 198/1903
  48991. },
  48992. form: "demon",
  48993. default: true
  48994. },
  48995. demonBack: {
  48996. height: math.unit(36, "feet"),
  48997. name: "Back",
  48998. image: {
  48999. source: "./media/characters/alex-xuria/demon-back.svg",
  49000. extra: 1725/1693,
  49001. bottom: 70/1795
  49002. },
  49003. form: "demon"
  49004. },
  49005. demonHead: {
  49006. height: math.unit(2.14, "meters"),
  49007. name: "Head",
  49008. image: {
  49009. source: "./media/characters/alex-xuria/demon-head.svg"
  49010. },
  49011. form: "demon"
  49012. },
  49013. demonHand: {
  49014. height: math.unit(1.61, "meters"),
  49015. name: "Hand",
  49016. image: {
  49017. source: "./media/characters/alex-xuria/demon-hand.svg"
  49018. },
  49019. form: "demon"
  49020. },
  49021. demonPaw: {
  49022. height: math.unit(1.35, "meters"),
  49023. name: "Paw",
  49024. image: {
  49025. source: "./media/characters/alex-xuria/demon-paw.svg"
  49026. },
  49027. form: "demon"
  49028. },
  49029. demonFoot: {
  49030. height: math.unit(2.2, "meters"),
  49031. name: "Foot",
  49032. image: {
  49033. source: "./media/characters/alex-xuria/demon-foot.svg"
  49034. },
  49035. form: "demon"
  49036. },
  49037. demonCock: {
  49038. height: math.unit(1.74, "meters"),
  49039. name: "Cock",
  49040. image: {
  49041. source: "./media/characters/alex-xuria/demon-cock.svg"
  49042. },
  49043. form: "demon"
  49044. },
  49045. demonTailClosed: {
  49046. height: math.unit(1.47, "meters"),
  49047. name: "Tail (Closed)",
  49048. image: {
  49049. source: "./media/characters/alex-xuria/demon-tail-closed.svg"
  49050. },
  49051. form: "demon"
  49052. },
  49053. demonTailOpen: {
  49054. height: math.unit(2.85, "meters"),
  49055. name: "Tail (Open)",
  49056. image: {
  49057. source: "./media/characters/alex-xuria/demon-tail-open.svg"
  49058. },
  49059. form: "demon"
  49060. },
  49061. incubusFront: {
  49062. height: math.unit(12, "feet"),
  49063. name: "Front",
  49064. image: {
  49065. source: "./media/characters/alex-xuria/incubus-front.svg",
  49066. extra: 1754/1677,
  49067. bottom: 125/1879
  49068. },
  49069. form: "incubus",
  49070. default: true
  49071. },
  49072. incubusBack: {
  49073. height: math.unit(12, "feet"),
  49074. name: "Back",
  49075. image: {
  49076. source: "./media/characters/alex-xuria/incubus-back.svg",
  49077. extra: 1702/1647,
  49078. bottom: 30/1732
  49079. },
  49080. form: "incubus"
  49081. },
  49082. incubusHead: {
  49083. height: math.unit(3.45, "feet"),
  49084. name: "Head",
  49085. image: {
  49086. source: "./media/characters/alex-xuria/incubus-head.svg"
  49087. },
  49088. form: "incubus"
  49089. },
  49090. rabbitFront: {
  49091. height: math.unit(6, "feet"),
  49092. name: "Front",
  49093. image: {
  49094. source: "./media/characters/alex-xuria/rabbit-front.svg",
  49095. extra: 1369/1349,
  49096. bottom: 45/1414
  49097. },
  49098. form: "rabbit",
  49099. default: true
  49100. },
  49101. rabbitSide: {
  49102. height: math.unit(6, "feet"),
  49103. name: "Side",
  49104. image: {
  49105. source: "./media/characters/alex-xuria/rabbit-side.svg",
  49106. extra: 1370/1356,
  49107. bottom: 37/1407
  49108. },
  49109. form: "rabbit"
  49110. },
  49111. rabbitBack: {
  49112. height: math.unit(6, "feet"),
  49113. name: "Back",
  49114. image: {
  49115. source: "./media/characters/alex-xuria/rabbit-back.svg",
  49116. extra: 1375/1358,
  49117. bottom: 43/1418
  49118. },
  49119. form: "rabbit"
  49120. },
  49121. },
  49122. [
  49123. {
  49124. name: "Normal",
  49125. height: math.unit(6, "feet"),
  49126. default: true,
  49127. form: "rabbit"
  49128. },
  49129. {
  49130. name: "Incubus",
  49131. height: math.unit(12, "feet"),
  49132. default: true,
  49133. form: "incubus"
  49134. },
  49135. {
  49136. name: "Demon",
  49137. height: math.unit(36, "feet"),
  49138. default: true,
  49139. form: "demon"
  49140. }
  49141. ],
  49142. {
  49143. "demon": {
  49144. name: "Demon",
  49145. default: true
  49146. },
  49147. "incubus": {
  49148. name: "Incubus",
  49149. },
  49150. "rabbit": {
  49151. name: "Rabbit"
  49152. }
  49153. }
  49154. ))
  49155. characterMakers.push(() => makeCharacter(
  49156. { name: "Syrup", species: ["rabbit"], tags: ["anthro"] },
  49157. {
  49158. front: {
  49159. height: math.unit(7 + 5/12, "feet"),
  49160. weight: math.unit(510, "lb"),
  49161. name: "Front",
  49162. image: {
  49163. source: "./media/characters/syrup/front.svg",
  49164. extra: 932/916,
  49165. bottom: 26/958
  49166. }
  49167. },
  49168. },
  49169. [
  49170. {
  49171. name: "Normal",
  49172. height: math.unit(7 + 5/12, "feet"),
  49173. default: true
  49174. },
  49175. {
  49176. name: "Big",
  49177. height: math.unit(50, "feet")
  49178. },
  49179. {
  49180. name: "Macro",
  49181. height: math.unit(300, "feet")
  49182. },
  49183. {
  49184. name: "Megamacro",
  49185. height: math.unit(1, "mile")
  49186. },
  49187. ]
  49188. ))
  49189. characterMakers.push(() => makeCharacter(
  49190. { name: "Zeimne", species: ["kitsune", "demon", "deity"], tags: ["anthro"] },
  49191. {
  49192. front: {
  49193. height: math.unit(6 + 9/12, "feet"),
  49194. name: "Front",
  49195. image: {
  49196. source: "./media/characters/zeimne/front.svg",
  49197. extra: 1969/1806,
  49198. bottom: 53/2022
  49199. }
  49200. },
  49201. },
  49202. [
  49203. {
  49204. name: "Normal",
  49205. height: math.unit(6 + 9/12, "feet"),
  49206. default: true
  49207. },
  49208. {
  49209. name: "Giant",
  49210. height: math.unit(550, "feet")
  49211. },
  49212. {
  49213. name: "Mega",
  49214. height: math.unit(3, "miles")
  49215. },
  49216. {
  49217. name: "Giga",
  49218. height: math.unit(250, "miles")
  49219. },
  49220. {
  49221. name: "Tera",
  49222. height: math.unit(1, "AU")
  49223. },
  49224. ]
  49225. ))
  49226. characterMakers.push(() => makeCharacter(
  49227. { name: "Grar", species: ["jackalope"], tags: ["anthro"] },
  49228. {
  49229. front: {
  49230. height: math.unit(5 + 2/12, "feet"),
  49231. name: "Front",
  49232. image: {
  49233. source: "./media/characters/grar/front.svg",
  49234. extra: 1331/1119,
  49235. bottom: 60/1391
  49236. }
  49237. },
  49238. back: {
  49239. height: math.unit(5 + 2/12, "feet"),
  49240. name: "Back",
  49241. image: {
  49242. source: "./media/characters/grar/back.svg",
  49243. extra: 1385/1169,
  49244. bottom: 23/1408
  49245. }
  49246. },
  49247. },
  49248. [
  49249. {
  49250. name: "Normal",
  49251. height: math.unit(5 + 2/12, "feet"),
  49252. default: true
  49253. },
  49254. ]
  49255. ))
  49256. characterMakers.push(() => makeCharacter(
  49257. { name: "Endraya", species: ["ender-dragon"], tags: ["anthro"] },
  49258. {
  49259. front: {
  49260. height: math.unit(13 + 7/12, "feet"),
  49261. weight: math.unit(2200, "lb"),
  49262. name: "Front",
  49263. image: {
  49264. source: "./media/characters/endraya/front.svg",
  49265. extra: 1289/1215,
  49266. bottom: 50/1339
  49267. }
  49268. },
  49269. nude: {
  49270. height: math.unit(13 + 7/12, "feet"),
  49271. weight: math.unit(2200, "lb"),
  49272. name: "Nude",
  49273. image: {
  49274. source: "./media/characters/endraya/nude.svg",
  49275. extra: 1247/1171,
  49276. bottom: 40/1287
  49277. }
  49278. },
  49279. head: {
  49280. height: math.unit(2.6, "feet"),
  49281. name: "Head",
  49282. image: {
  49283. source: "./media/characters/endraya/head.svg"
  49284. }
  49285. },
  49286. slit: {
  49287. height: math.unit(3.4, "feet"),
  49288. name: "Slit",
  49289. image: {
  49290. source: "./media/characters/endraya/slit.svg"
  49291. }
  49292. },
  49293. },
  49294. [
  49295. {
  49296. name: "Normal",
  49297. height: math.unit(13 + 7/12, "feet"),
  49298. default: true
  49299. },
  49300. {
  49301. name: "Macro",
  49302. height: math.unit(200, "feet")
  49303. },
  49304. ]
  49305. ))
  49306. characterMakers.push(() => makeCharacter(
  49307. { name: "Rodryana", species: ["hyena"], tags: ["anthro"] },
  49308. {
  49309. front: {
  49310. height: math.unit(1.81, "meters"),
  49311. weight: math.unit(69, "kg"),
  49312. name: "Front",
  49313. image: {
  49314. source: "./media/characters/rodryana/front.svg",
  49315. extra: 2002/1921,
  49316. bottom: 53/2055
  49317. }
  49318. },
  49319. back: {
  49320. height: math.unit(1.81, "meters"),
  49321. weight: math.unit(69, "kg"),
  49322. name: "Back",
  49323. image: {
  49324. source: "./media/characters/rodryana/back.svg",
  49325. extra: 1993/1926,
  49326. bottom: 48/2041
  49327. }
  49328. },
  49329. maw: {
  49330. height: math.unit(0.19769417475, "meters"),
  49331. name: "Maw",
  49332. image: {
  49333. source: "./media/characters/rodryana/maw.svg"
  49334. }
  49335. },
  49336. slit: {
  49337. height: math.unit(0.31631067961, "meters"),
  49338. name: "Slit",
  49339. image: {
  49340. source: "./media/characters/rodryana/slit.svg"
  49341. }
  49342. },
  49343. },
  49344. [
  49345. {
  49346. name: "Normal",
  49347. height: math.unit(1.81, "meters")
  49348. },
  49349. {
  49350. name: "Mini Macro",
  49351. height: math.unit(181, "meters")
  49352. },
  49353. {
  49354. name: "Macro",
  49355. height: math.unit(452, "meters"),
  49356. default: true
  49357. },
  49358. {
  49359. name: "Mega Macro",
  49360. height: math.unit(1.375, "km")
  49361. },
  49362. {
  49363. name: "Giga Macro",
  49364. height: math.unit(13.575, "km")
  49365. },
  49366. ]
  49367. ))
  49368. characterMakers.push(() => makeCharacter(
  49369. { name: "Asaya", species: ["human", "deity"], tags: ["anthro"] },
  49370. {
  49371. front: {
  49372. height: math.unit(6, "feet"),
  49373. weight: math.unit(1000, "lb"),
  49374. name: "Front",
  49375. image: {
  49376. source: "./media/characters/asaya/front.svg",
  49377. extra: 1460/1200,
  49378. bottom: 71/1531
  49379. }
  49380. },
  49381. },
  49382. [
  49383. {
  49384. name: "Normal",
  49385. height: math.unit(8, "km"),
  49386. default: true
  49387. },
  49388. ]
  49389. ))
  49390. characterMakers.push(() => makeCharacter(
  49391. { name: "Sarzu and Israz", species: ["naga"], tags: ["naga"] },
  49392. {
  49393. front: {
  49394. height: math.unit(3.5, "meters"),
  49395. name: "Front",
  49396. image: {
  49397. source: "./media/characters/sarzu-and-israz/front.svg",
  49398. extra: 1570/1558,
  49399. bottom: 150/1720
  49400. },
  49401. },
  49402. back: {
  49403. height: math.unit(3.5, "meters"),
  49404. name: "Back",
  49405. image: {
  49406. source: "./media/characters/sarzu-and-israz/back.svg",
  49407. extra: 1523/1509,
  49408. bottom: 132/1655
  49409. },
  49410. },
  49411. frontFemale: {
  49412. height: math.unit(3.5, "meters"),
  49413. name: "Front (Female)",
  49414. image: {
  49415. source: "./media/characters/sarzu-and-israz/front-female.svg",
  49416. extra: 1570/1558,
  49417. bottom: 150/1720
  49418. },
  49419. },
  49420. frontHerm: {
  49421. height: math.unit(3.5, "meters"),
  49422. name: "Front (Herm)",
  49423. image: {
  49424. source: "./media/characters/sarzu-and-israz/front-herm.svg",
  49425. extra: 1570/1558,
  49426. bottom: 150/1720
  49427. },
  49428. },
  49429. },
  49430. [
  49431. {
  49432. name: "Normal",
  49433. height: math.unit(3.5, "meters"),
  49434. default: true,
  49435. },
  49436. {
  49437. name: "Macro",
  49438. height: math.unit(65.5, "meters"),
  49439. },
  49440. ],
  49441. ))
  49442. characterMakers.push(() => makeCharacter(
  49443. { name: "Zenimma", species: ["bruhathkayosaurus"], tags: ["anthro"] },
  49444. {
  49445. front: {
  49446. height: math.unit(6, "feet"),
  49447. weight: math.unit(250, "lb"),
  49448. name: "Front",
  49449. image: {
  49450. source: "./media/characters/zenimma/front.svg",
  49451. extra: 1346/1320,
  49452. bottom: 58/1404
  49453. }
  49454. },
  49455. back: {
  49456. height: math.unit(6, "feet"),
  49457. weight: math.unit(250, "lb"),
  49458. name: "Back",
  49459. image: {
  49460. source: "./media/characters/zenimma/back.svg",
  49461. extra: 1324/1308,
  49462. bottom: 44/1368
  49463. }
  49464. },
  49465. dick: {
  49466. height: math.unit(1.44, "feet"),
  49467. name: "Dick",
  49468. image: {
  49469. source: "./media/characters/zenimma/dick.svg"
  49470. }
  49471. },
  49472. },
  49473. [
  49474. {
  49475. name: "Canon Height",
  49476. height: math.unit(66, "miles"),
  49477. default: true
  49478. },
  49479. ]
  49480. ))
  49481. characterMakers.push(() => makeCharacter(
  49482. { name: "Shavon", species: ["black-sable-antelope"], tags: ["anthro"] },
  49483. {
  49484. nude: {
  49485. height: math.unit(6, "feet"),
  49486. weight: math.unit(150, "lb"),
  49487. name: "Nude",
  49488. image: {
  49489. source: "./media/characters/shavon/nude.svg",
  49490. extra: 1242/1096,
  49491. bottom: 98/1340
  49492. }
  49493. },
  49494. dressed: {
  49495. height: math.unit(6, "feet"),
  49496. weight: math.unit(150, "lb"),
  49497. name: "Dressed",
  49498. image: {
  49499. source: "./media/characters/shavon/dressed.svg",
  49500. extra: 1242/1096,
  49501. bottom: 98/1340
  49502. }
  49503. },
  49504. },
  49505. [
  49506. {
  49507. name: "Macro",
  49508. height: math.unit(255, "feet"),
  49509. default: true
  49510. },
  49511. ]
  49512. ))
  49513. characterMakers.push(() => makeCharacter(
  49514. { name: "Steph", species: ["shark"], tags: ["anthro"] },
  49515. {
  49516. front: {
  49517. height: math.unit(6, "feet"),
  49518. name: "Front",
  49519. image: {
  49520. source: "./media/characters/steph/front.svg",
  49521. extra: 1430/1330,
  49522. bottom: 54/1484
  49523. }
  49524. },
  49525. },
  49526. [
  49527. {
  49528. name: "Normal",
  49529. height: math.unit(6, "feet"),
  49530. default: true
  49531. },
  49532. ]
  49533. ))
  49534. characterMakers.push(() => makeCharacter(
  49535. { name: "Kil'aman", species: ["dragon", "deity"], tags: ["anthro"] },
  49536. {
  49537. front: {
  49538. height: math.unit(9, "feet"),
  49539. weight: math.unit(400, "lb"),
  49540. name: "Front",
  49541. image: {
  49542. source: "./media/characters/kil'aman/front.svg",
  49543. extra: 1210/1159,
  49544. bottom: 109/1319
  49545. }
  49546. },
  49547. head: {
  49548. height: math.unit(2.14, "feet"),
  49549. name: "Head",
  49550. image: {
  49551. source: "./media/characters/kil'aman/head.svg"
  49552. }
  49553. },
  49554. maw: {
  49555. height: math.unit(1.21, "feet"),
  49556. name: "Maw",
  49557. image: {
  49558. source: "./media/characters/kil'aman/maw.svg"
  49559. }
  49560. },
  49561. foot: {
  49562. height: math.unit(1.7, "feet"),
  49563. name: "Foot",
  49564. image: {
  49565. source: "./media/characters/kil'aman/foot.svg"
  49566. }
  49567. },
  49568. dick: {
  49569. height: math.unit(2.1, "feet"),
  49570. name: "Dick",
  49571. image: {
  49572. source: "./media/characters/kil'aman/dick.svg"
  49573. }
  49574. },
  49575. },
  49576. [
  49577. {
  49578. name: "Normal",
  49579. height: math.unit(9, "feet")
  49580. },
  49581. {
  49582. name: "Canon Height",
  49583. height: math.unit(10, "miles"),
  49584. default: true
  49585. },
  49586. {
  49587. name: "Maximum",
  49588. height: math.unit(6e9, "miles")
  49589. },
  49590. ]
  49591. ))
  49592. characterMakers.push(() => makeCharacter(
  49593. { name: "Qadan", species: ["utahraptor"], tags: ["anthro"] },
  49594. {
  49595. front: {
  49596. height: math.unit(90, "feet"),
  49597. weight: math.unit(675000, "lb"),
  49598. name: "Front",
  49599. image: {
  49600. source: "./media/characters/qadan/front.svg",
  49601. extra: 1012/1004,
  49602. bottom: 78/1090
  49603. }
  49604. },
  49605. back: {
  49606. height: math.unit(90, "feet"),
  49607. weight: math.unit(675000, "lb"),
  49608. name: "Back",
  49609. image: {
  49610. source: "./media/characters/qadan/back.svg",
  49611. extra: 1042/1031,
  49612. bottom: 55/1097
  49613. }
  49614. },
  49615. armored: {
  49616. height: math.unit(90, "feet"),
  49617. weight: math.unit(675000, "lb"),
  49618. name: "Armored",
  49619. image: {
  49620. source: "./media/characters/qadan/armored.svg",
  49621. extra: 1047/1037,
  49622. bottom: 48/1095
  49623. }
  49624. },
  49625. },
  49626. [
  49627. {
  49628. name: "Normal",
  49629. height: math.unit(90, "feet"),
  49630. default: true
  49631. },
  49632. ]
  49633. ))
  49634. characterMakers.push(() => makeCharacter(
  49635. { name: "Brooke", species: ["indian-giant-squirrel"], tags: ["anthro"] },
  49636. {
  49637. front: {
  49638. height: math.unit(6, "feet"),
  49639. weight: math.unit(225, "lb"),
  49640. name: "Front",
  49641. image: {
  49642. source: "./media/characters/brooke/front.svg",
  49643. extra: 1050/1010,
  49644. bottom: 66/1116
  49645. }
  49646. },
  49647. back: {
  49648. height: math.unit(6, "feet"),
  49649. weight: math.unit(225, "lb"),
  49650. name: "Back",
  49651. image: {
  49652. source: "./media/characters/brooke/back.svg",
  49653. extra: 1053/1013,
  49654. bottom: 41/1094
  49655. }
  49656. },
  49657. dressed: {
  49658. height: math.unit(6, "feet"),
  49659. weight: math.unit(225, "lb"),
  49660. name: "Dressed",
  49661. image: {
  49662. source: "./media/characters/brooke/dressed.svg",
  49663. extra: 1050/1010,
  49664. bottom: 66/1116
  49665. }
  49666. },
  49667. },
  49668. [
  49669. {
  49670. name: "Canon Height",
  49671. height: math.unit(500, "miles"),
  49672. default: true
  49673. },
  49674. ]
  49675. ))
  49676. characterMakers.push(() => makeCharacter(
  49677. { name: "Wubs", species: ["golden-retriever"], tags: ["anthro"] },
  49678. {
  49679. front: {
  49680. height: math.unit(6 + 2/12, "feet"),
  49681. weight: math.unit(210, "lb"),
  49682. name: "Front",
  49683. image: {
  49684. source: "./media/characters/wubs/front.svg",
  49685. extra: 1345/1325,
  49686. bottom: 70/1415
  49687. }
  49688. },
  49689. back: {
  49690. height: math.unit(6 + 2/12, "feet"),
  49691. weight: math.unit(210, "lb"),
  49692. name: "Back",
  49693. image: {
  49694. source: "./media/characters/wubs/back.svg",
  49695. extra: 1296/1275,
  49696. bottom: 58/1354
  49697. }
  49698. },
  49699. },
  49700. [
  49701. {
  49702. name: "Normal",
  49703. height: math.unit(6 + 2/12, "feet"),
  49704. default: true
  49705. },
  49706. {
  49707. name: "Macro",
  49708. height: math.unit(1000, "feet")
  49709. },
  49710. {
  49711. name: "Megamacro",
  49712. height: math.unit(1, "mile")
  49713. },
  49714. ]
  49715. ))
  49716. characterMakers.push(() => makeCharacter(
  49717. { name: "Blue", species: ["deer", "bat"], tags: ["anthro"] },
  49718. {
  49719. front: {
  49720. height: math.unit(4, "feet"),
  49721. weight: math.unit(120, "lb"),
  49722. name: "Front",
  49723. image: {
  49724. source: "./media/characters/blue/front.svg",
  49725. extra: 1636/1525,
  49726. bottom: 43/1679
  49727. }
  49728. },
  49729. back: {
  49730. height: math.unit(4, "feet"),
  49731. weight: math.unit(120, "lb"),
  49732. name: "Back",
  49733. image: {
  49734. source: "./media/characters/blue/back.svg",
  49735. extra: 1660/1560,
  49736. bottom: 57/1717
  49737. }
  49738. },
  49739. paws: {
  49740. height: math.unit(0.826, "feet"),
  49741. name: "Paws",
  49742. image: {
  49743. source: "./media/characters/blue/paws.svg"
  49744. }
  49745. },
  49746. },
  49747. [
  49748. {
  49749. name: "Micro",
  49750. height: math.unit(3, "inches")
  49751. },
  49752. {
  49753. name: "Normal",
  49754. height: math.unit(4, "feet"),
  49755. default: true
  49756. },
  49757. {
  49758. name: "Femenine Form",
  49759. height: math.unit(14, "feet")
  49760. },
  49761. {
  49762. name: "Werebat Form",
  49763. height: math.unit(18, "feet")
  49764. },
  49765. ]
  49766. ))
  49767. characterMakers.push(() => makeCharacter(
  49768. { name: "Kaya", species: ["dragon"], tags: ["anthro"] },
  49769. {
  49770. female: {
  49771. height: math.unit(7 + 4/12, "feet"),
  49772. weight: math.unit(243, "lb"),
  49773. name: "Female",
  49774. image: {
  49775. source: "./media/characters/kaya/female.svg",
  49776. extra: 975/898,
  49777. bottom: 34/1009
  49778. }
  49779. },
  49780. herm: {
  49781. height: math.unit(7 + 4/12, "feet"),
  49782. weight: math.unit(243, "lb"),
  49783. name: "Herm",
  49784. image: {
  49785. source: "./media/characters/kaya/herm.svg",
  49786. extra: 975/898,
  49787. bottom: 34/1009
  49788. }
  49789. },
  49790. },
  49791. [
  49792. {
  49793. name: "Normal",
  49794. height: math.unit(7 + 4/12, "feet"),
  49795. default: true
  49796. },
  49797. ]
  49798. ))
  49799. characterMakers.push(() => makeCharacter(
  49800. { name: "Kassandra", species: ["dragon", "snake"], tags: ["anthro"] },
  49801. {
  49802. female: {
  49803. height: math.unit(9 + 4/12, "feet"),
  49804. weight: math.unit(398, "lb"),
  49805. name: "Female",
  49806. image: {
  49807. source: "./media/characters/kassandra/female.svg",
  49808. extra: 908/839,
  49809. bottom: 61/969
  49810. }
  49811. },
  49812. intersex: {
  49813. height: math.unit(9 + 4/12, "feet"),
  49814. weight: math.unit(398, "lb"),
  49815. name: "Intersex",
  49816. image: {
  49817. source: "./media/characters/kassandra/intersex.svg",
  49818. extra: 908/839,
  49819. bottom: 61/969
  49820. }
  49821. },
  49822. },
  49823. [
  49824. {
  49825. name: "Normal",
  49826. height: math.unit(9 + 4/12, "feet"),
  49827. default: true
  49828. },
  49829. ]
  49830. ))
  49831. characterMakers.push(() => makeCharacter(
  49832. { name: "Amy", species: ["snow-leopard"], tags: ["anthro"] },
  49833. {
  49834. front: {
  49835. height: math.unit(3, "meters"),
  49836. name: "Front",
  49837. image: {
  49838. source: "./media/characters/amy/front.svg",
  49839. extra: 1380/1343,
  49840. bottom: 70/1450
  49841. }
  49842. },
  49843. back: {
  49844. height: math.unit(3, "meters"),
  49845. name: "Back",
  49846. image: {
  49847. source: "./media/characters/amy/back.svg",
  49848. extra: 1380/1347,
  49849. bottom: 66/1446
  49850. }
  49851. },
  49852. },
  49853. [
  49854. {
  49855. name: "Normal",
  49856. height: math.unit(3, "meters"),
  49857. default: true
  49858. },
  49859. ]
  49860. ))
  49861. characterMakers.push(() => makeCharacter(
  49862. { name: "Alphaschakal", species: ["jackal"], tags: ["feral"] },
  49863. {
  49864. side: {
  49865. height: math.unit(47, "cm"),
  49866. weight: math.unit(10.8, "kg"),
  49867. name: "Side",
  49868. image: {
  49869. source: "./media/characters/alphaschakal/side.svg",
  49870. extra: 1058/568,
  49871. bottom: 62/1120
  49872. }
  49873. },
  49874. back: {
  49875. height: math.unit(78, "cm"),
  49876. weight: math.unit(10.8, "kg"),
  49877. name: "Back",
  49878. image: {
  49879. source: "./media/characters/alphaschakal/back.svg",
  49880. extra: 1102/942,
  49881. bottom: 185/1287
  49882. }
  49883. },
  49884. head: {
  49885. height: math.unit(28, "cm"),
  49886. name: "Head",
  49887. image: {
  49888. source: "./media/characters/alphaschakal/head.svg",
  49889. extra: 696/508,
  49890. bottom: 0/696
  49891. }
  49892. },
  49893. paw: {
  49894. height: math.unit(16, "cm"),
  49895. name: "Paw",
  49896. image: {
  49897. source: "./media/characters/alphaschakal/paw.svg"
  49898. }
  49899. },
  49900. },
  49901. [
  49902. {
  49903. name: "Normal",
  49904. height: math.unit(47, "cm"),
  49905. default: true
  49906. },
  49907. {
  49908. name: "Macro",
  49909. height: math.unit(340, "cm")
  49910. },
  49911. ]
  49912. ))
  49913. characterMakers.push(() => makeCharacter(
  49914. { name: "EcoByss", species: ["goat", "deity", "demon"], tags: ["anthro"] },
  49915. {
  49916. front: {
  49917. height: math.unit(36, "earths"),
  49918. name: "Front",
  49919. image: {
  49920. source: "./media/characters/ecobyss/front.svg",
  49921. extra: 1282/1215,
  49922. bottom: 11/1293
  49923. }
  49924. },
  49925. back: {
  49926. height: math.unit(36, "earths"),
  49927. name: "Back",
  49928. image: {
  49929. source: "./media/characters/ecobyss/back.svg",
  49930. extra: 1291/1222,
  49931. bottom: 8/1299
  49932. }
  49933. },
  49934. },
  49935. [
  49936. {
  49937. name: "Normal",
  49938. height: math.unit(36, "earths"),
  49939. default: true
  49940. },
  49941. ]
  49942. ))
  49943. characterMakers.push(() => makeCharacter(
  49944. { name: "Vasuk", species: ["snake", "chimera"], tags: ["naga"] },
  49945. {
  49946. front: {
  49947. height: math.unit(12, "feet"),
  49948. name: "Front",
  49949. image: {
  49950. source: "./media/characters/vasuk/front.svg",
  49951. extra: 1326/1207,
  49952. bottom: 64/1390
  49953. }
  49954. },
  49955. },
  49956. [
  49957. {
  49958. name: "Normal",
  49959. height: math.unit(12, "feet"),
  49960. default: true
  49961. },
  49962. ]
  49963. ))
  49964. characterMakers.push(() => makeCharacter(
  49965. { name: "Linneaus", species: ["cougar", "deer"], tags: ["taur"] },
  49966. {
  49967. side: {
  49968. height: math.unit(100, "feet"),
  49969. name: "Side",
  49970. image: {
  49971. source: "./media/characters/linneaus/side.svg",
  49972. extra: 987/807,
  49973. bottom: 47/1034
  49974. }
  49975. },
  49976. },
  49977. [
  49978. {
  49979. name: "Macro",
  49980. height: math.unit(100, "feet"),
  49981. default: true
  49982. },
  49983. ]
  49984. ))
  49985. characterMakers.push(() => makeCharacter(
  49986. { name: "Nyterious Daligdig", species: ["triceratops"], tags: ["anthro"] },
  49987. {
  49988. front: {
  49989. height: math.unit(8, "feet"),
  49990. weight: math.unit(1200, "lb"),
  49991. name: "Front",
  49992. image: {
  49993. source: "./media/characters/nyterious-daligdig/front.svg",
  49994. extra: 1284/1094,
  49995. bottom: 84/1368
  49996. }
  49997. },
  49998. back: {
  49999. height: math.unit(8, "feet"),
  50000. weight: math.unit(1200, "lb"),
  50001. name: "Back",
  50002. image: {
  50003. source: "./media/characters/nyterious-daligdig/back.svg",
  50004. extra: 1301/1121,
  50005. bottom: 129/1430
  50006. }
  50007. },
  50008. mouth: {
  50009. height: math.unit(1.464, "feet"),
  50010. name: "Mouth",
  50011. image: {
  50012. source: "./media/characters/nyterious-daligdig/mouth.svg"
  50013. }
  50014. },
  50015. },
  50016. [
  50017. {
  50018. name: "Small",
  50019. height: math.unit(8, "feet"),
  50020. default: true
  50021. },
  50022. {
  50023. name: "Normal",
  50024. height: math.unit(15, "feet")
  50025. },
  50026. {
  50027. name: "Macro",
  50028. height: math.unit(90, "feet")
  50029. },
  50030. ]
  50031. ))
  50032. characterMakers.push(() => makeCharacter(
  50033. { name: "Bandel", species: ["drake"], tags: ["anthro"] },
  50034. {
  50035. front: {
  50036. height: math.unit(7 + 4/12, "feet"),
  50037. weight: math.unit(252, "lb"),
  50038. name: "Front",
  50039. image: {
  50040. source: "./media/characters/bandel/front.svg",
  50041. extra: 1946/1775,
  50042. bottom: 26/1972
  50043. }
  50044. },
  50045. back: {
  50046. height: math.unit(7 + 4/12, "feet"),
  50047. weight: math.unit(252, "lb"),
  50048. name: "Back",
  50049. image: {
  50050. source: "./media/characters/bandel/back.svg",
  50051. extra: 1940/1770,
  50052. bottom: 25/1965
  50053. }
  50054. },
  50055. maw: {
  50056. height: math.unit(2.15, "feet"),
  50057. name: "Maw",
  50058. image: {
  50059. source: "./media/characters/bandel/maw.svg"
  50060. }
  50061. },
  50062. stomach: {
  50063. height: math.unit(1.95, "feet"),
  50064. name: "Stomach",
  50065. image: {
  50066. source: "./media/characters/bandel/stomach.svg"
  50067. }
  50068. },
  50069. },
  50070. [
  50071. {
  50072. name: "Normal",
  50073. height: math.unit(7 + 4/12, "feet"),
  50074. default: true
  50075. },
  50076. ]
  50077. ))
  50078. characterMakers.push(() => makeCharacter(
  50079. { name: "Zed", species: ["avian", "mimic"], tags: ["anthro"] },
  50080. {
  50081. front: {
  50082. height: math.unit(10 + 5/12, "feet"),
  50083. weight: math.unit(773.5, "kg"),
  50084. name: "Front",
  50085. image: {
  50086. source: "./media/characters/zed/front.svg",
  50087. extra: 987/941,
  50088. bottom: 52/1039
  50089. }
  50090. },
  50091. },
  50092. [
  50093. {
  50094. name: "Short",
  50095. height: math.unit(5 + 4/12, "feet")
  50096. },
  50097. {
  50098. name: "Average",
  50099. height: math.unit(10 + 5/12, "feet"),
  50100. default: true
  50101. },
  50102. {
  50103. name: "Mini-Macro",
  50104. height: math.unit(24 + 9/12, "feet")
  50105. },
  50106. {
  50107. name: "Macro",
  50108. height: math.unit(249, "feet")
  50109. },
  50110. {
  50111. name: "Mega-Macro",
  50112. height: math.unit(12490, "feet")
  50113. },
  50114. {
  50115. name: "Giga-Macro",
  50116. height: math.unit(24.9, "miles")
  50117. },
  50118. {
  50119. name: "Tera-Macro",
  50120. height: math.unit(24900, "miles")
  50121. },
  50122. {
  50123. name: "Cosmic Scale",
  50124. height: math.unit(38.9, "lightyears")
  50125. },
  50126. {
  50127. name: "Universal Scale",
  50128. height: math.unit(138e12, "lightyears")
  50129. },
  50130. ]
  50131. ))
  50132. characterMakers.push(() => makeCharacter(
  50133. { name: "Ivan", species: ["okapi"], tags: ["anthro"] },
  50134. {
  50135. front: {
  50136. height: math.unit(1561, "inches"),
  50137. name: "Front",
  50138. image: {
  50139. source: "./media/characters/ivan/front.svg",
  50140. extra: 1126/1071,
  50141. bottom: 26/1152
  50142. }
  50143. },
  50144. back: {
  50145. height: math.unit(1561, "inches"),
  50146. name: "Back",
  50147. image: {
  50148. source: "./media/characters/ivan/back.svg",
  50149. extra: 1134/1079,
  50150. bottom: 30/1164
  50151. }
  50152. },
  50153. },
  50154. [
  50155. {
  50156. name: "Normal",
  50157. height: math.unit(1561, "inches"),
  50158. default: true
  50159. },
  50160. ]
  50161. ))
  50162. characterMakers.push(() => makeCharacter(
  50163. { name: "Robin (Arctic Hare)", species: ["arctic-hare"], tags: ["anthro"] },
  50164. {
  50165. front: {
  50166. height: math.unit(5 + 7/12, "feet"),
  50167. weight: math.unit(150, "lb"),
  50168. name: "Front",
  50169. image: {
  50170. source: "./media/characters/robin-arctic-hare/front.svg",
  50171. extra: 1148/974,
  50172. bottom: 20/1168
  50173. }
  50174. },
  50175. },
  50176. [
  50177. {
  50178. name: "Normal",
  50179. height: math.unit(5 + 7/12, "feet"),
  50180. default: true
  50181. },
  50182. ]
  50183. ))
  50184. characterMakers.push(() => makeCharacter(
  50185. { name: "Birch", species: ["dragon"], tags: ["feral"] },
  50186. {
  50187. side: {
  50188. height: math.unit(5, "feet"),
  50189. name: "Side",
  50190. image: {
  50191. source: "./media/characters/birch/side.svg",
  50192. extra: 985/796,
  50193. bottom: 111/1096
  50194. }
  50195. },
  50196. },
  50197. [
  50198. {
  50199. name: "Normal",
  50200. height: math.unit(5, "feet"),
  50201. default: true
  50202. },
  50203. ]
  50204. ))
  50205. characterMakers.push(() => makeCharacter(
  50206. { name: "Rasp", species: ["mew"], tags: ["anthro"] },
  50207. {
  50208. front: {
  50209. height: math.unit(4, "feet"),
  50210. name: "Front",
  50211. image: {
  50212. source: "./media/characters/rasp/front.svg",
  50213. extra: 561/478,
  50214. bottom: 74/635
  50215. }
  50216. },
  50217. },
  50218. [
  50219. {
  50220. name: "Normal",
  50221. height: math.unit(4, "feet"),
  50222. default: true
  50223. },
  50224. ]
  50225. ))
  50226. characterMakers.push(() => makeCharacter(
  50227. { name: "Agatha", species: ["leopard-gecko"], tags: ["anthro"] },
  50228. {
  50229. front: {
  50230. height: math.unit(4 + 6/12, "feet"),
  50231. name: "Front",
  50232. image: {
  50233. source: "./media/characters/agatha/front.svg",
  50234. extra: 947/933,
  50235. bottom: 42/989
  50236. }
  50237. },
  50238. back: {
  50239. height: math.unit(4 + 6/12, "feet"),
  50240. name: "Back",
  50241. image: {
  50242. source: "./media/characters/agatha/back.svg",
  50243. extra: 935/922,
  50244. bottom: 48/983
  50245. }
  50246. },
  50247. },
  50248. [
  50249. {
  50250. name: "Normal",
  50251. height: math.unit(4 + 6 /12, "feet"),
  50252. default: true
  50253. },
  50254. {
  50255. name: "Max Size",
  50256. height: math.unit(500, "feet")
  50257. },
  50258. ]
  50259. ))
  50260. characterMakers.push(() => makeCharacter(
  50261. { name: "Roggy", species: ["monster"], tags: ["feral"] },
  50262. {
  50263. side: {
  50264. height: math.unit(30, "feet"),
  50265. name: "Side",
  50266. image: {
  50267. source: "./media/characters/roggy/side.svg",
  50268. extra: 909/643,
  50269. bottom: 63/972
  50270. }
  50271. },
  50272. lounging: {
  50273. height: math.unit(20, "feet"),
  50274. name: "Lounging",
  50275. image: {
  50276. source: "./media/characters/roggy/lounging.svg",
  50277. extra: 643/479,
  50278. bottom: 145/788
  50279. }
  50280. },
  50281. handpaw: {
  50282. height: math.unit(13.1, "feet"),
  50283. name: "Handpaw",
  50284. image: {
  50285. source: "./media/characters/roggy/handpaw.svg"
  50286. }
  50287. },
  50288. footpaw: {
  50289. height: math.unit(15.8, "feet"),
  50290. name: "Footpaw",
  50291. image: {
  50292. source: "./media/characters/roggy/footpaw.svg"
  50293. }
  50294. },
  50295. },
  50296. [
  50297. {
  50298. name: "Menacing",
  50299. height: math.unit(30, "feet"),
  50300. default: true
  50301. },
  50302. ]
  50303. ))
  50304. characterMakers.push(() => makeCharacter(
  50305. { name: "Naomi", species: ["mienshao"], tags: ["anthro"] },
  50306. {
  50307. front: {
  50308. height: math.unit(5 + 7/12, "feet"),
  50309. weight: math.unit(135, "lb"),
  50310. name: "Front",
  50311. image: {
  50312. source: "./media/characters/naomi/front.svg",
  50313. extra: 1209/1154,
  50314. bottom: 129/1338
  50315. }
  50316. },
  50317. back: {
  50318. height: math.unit(5 + 7/12, "feet"),
  50319. weight: math.unit(135, "lb"),
  50320. name: "Back",
  50321. image: {
  50322. source: "./media/characters/naomi/back.svg",
  50323. extra: 1252/1190,
  50324. bottom: 23/1275
  50325. }
  50326. },
  50327. },
  50328. [
  50329. {
  50330. name: "Normal",
  50331. height: math.unit(5 + 7 /12, "feet"),
  50332. default: true
  50333. },
  50334. ]
  50335. ))
  50336. characterMakers.push(() => makeCharacter(
  50337. { name: "Kimpi", species: ["dreamspawn"], tags: ["feral"] },
  50338. {
  50339. side: {
  50340. height: math.unit(35, "meters"),
  50341. name: "Side",
  50342. image: {
  50343. source: "./media/characters/kimpi/side.svg",
  50344. extra: 419/382,
  50345. bottom: 63/482
  50346. }
  50347. },
  50348. hand: {
  50349. height: math.unit(8.96, "meters"),
  50350. name: "Hand",
  50351. image: {
  50352. source: "./media/characters/kimpi/hand.svg"
  50353. }
  50354. },
  50355. },
  50356. [
  50357. {
  50358. name: "Normal",
  50359. height: math.unit(35, "meters"),
  50360. default: true
  50361. },
  50362. ]
  50363. ))
  50364. characterMakers.push(() => makeCharacter(
  50365. { name: "Pepper (Purrloin)", species: ["purrloin"], tags: ["anthro"] },
  50366. {
  50367. front: {
  50368. height: math.unit(4 + 4/12, "feet"),
  50369. name: "Front",
  50370. image: {
  50371. source: "./media/characters/pepper-purrloin/front.svg",
  50372. extra: 1141/1024,
  50373. bottom: 21/1162
  50374. }
  50375. },
  50376. },
  50377. [
  50378. {
  50379. name: "Normal",
  50380. height: math.unit(4 + 4/12, "feet"),
  50381. default: true
  50382. },
  50383. ]
  50384. ))
  50385. characterMakers.push(() => makeCharacter(
  50386. { name: "Raphael", species: ["noivern"], tags: ["anthro"] },
  50387. {
  50388. front: {
  50389. height: math.unit(6 + 2/12, "feet"),
  50390. name: "Front",
  50391. image: {
  50392. source: "./media/characters/raphael/front.svg",
  50393. extra: 1101/962,
  50394. bottom: 59/1160
  50395. }
  50396. },
  50397. },
  50398. [
  50399. {
  50400. name: "Normal",
  50401. height: math.unit(6 + 2/12, "feet"),
  50402. default: true
  50403. },
  50404. ]
  50405. ))
  50406. characterMakers.push(() => makeCharacter(
  50407. { name: "Victor Williams", species: ["wolf"], tags: ["anthro"] },
  50408. {
  50409. front: {
  50410. height: math.unit(6, "feet"),
  50411. weight: math.unit(150, "lb"),
  50412. name: "Front",
  50413. image: {
  50414. source: "./media/characters/victor-williams/front.svg",
  50415. extra: 1894/1825,
  50416. bottom: 67/1961
  50417. }
  50418. },
  50419. },
  50420. [
  50421. {
  50422. name: "Normal",
  50423. height: math.unit(6, "feet"),
  50424. default: true
  50425. },
  50426. ]
  50427. ))
  50428. characterMakers.push(() => makeCharacter(
  50429. { name: "Rachel", species: ["hedgehog"], tags: ["anthro"] },
  50430. {
  50431. front: {
  50432. height: math.unit(5 + 8/12, "feet"),
  50433. weight: math.unit(150, "lb"),
  50434. name: "Front",
  50435. image: {
  50436. source: "./media/characters/rachel/front.svg",
  50437. extra: 1902/1787,
  50438. bottom: 46/1948
  50439. }
  50440. },
  50441. },
  50442. [
  50443. {
  50444. name: "Base Height",
  50445. height: math.unit(5 + 8/12, "feet"),
  50446. default: true
  50447. },
  50448. {
  50449. name: "Macro",
  50450. height: math.unit(200, "feet")
  50451. },
  50452. {
  50453. name: "Mega Macro",
  50454. height: math.unit(1, "mile")
  50455. },
  50456. {
  50457. name: "Giga Macro",
  50458. height: math.unit(1500, "miles")
  50459. },
  50460. {
  50461. name: "Tera Macro",
  50462. height: math.unit(8000, "miles")
  50463. },
  50464. {
  50465. name: "Tera Macro+",
  50466. height: math.unit(2e5, "miles")
  50467. },
  50468. ]
  50469. ))
  50470. characterMakers.push(() => makeCharacter(
  50471. { name: "Svetlana Rozovskaya", species: ["dragon", "naga"], tags: ["naga"] },
  50472. {
  50473. front: {
  50474. height: math.unit(6.5, "feet"),
  50475. name: "Front",
  50476. image: {
  50477. source: "./media/characters/svetlana-rozovskaya/front.svg",
  50478. extra: 860/819,
  50479. bottom: 307/1167
  50480. }
  50481. },
  50482. back: {
  50483. height: math.unit(6.5, "feet"),
  50484. name: "Back",
  50485. image: {
  50486. source: "./media/characters/svetlana-rozovskaya/back.svg",
  50487. extra: 880/837,
  50488. bottom: 395/1275
  50489. }
  50490. },
  50491. sleeping: {
  50492. height: math.unit(2.79, "feet"),
  50493. name: "Sleeping",
  50494. image: {
  50495. source: "./media/characters/svetlana-rozovskaya/sleeping.svg",
  50496. extra: 465/383,
  50497. bottom: 263/728
  50498. }
  50499. },
  50500. maw: {
  50501. height: math.unit(2.52, "feet"),
  50502. name: "Maw",
  50503. image: {
  50504. source: "./media/characters/svetlana-rozovskaya/maw.svg"
  50505. }
  50506. },
  50507. },
  50508. [
  50509. {
  50510. name: "Normal",
  50511. height: math.unit(6.5, "feet"),
  50512. default: true
  50513. },
  50514. ]
  50515. ))
  50516. characterMakers.push(() => makeCharacter(
  50517. { name: "Nova Nerium", species: ["dragon", "cat"], tags: ["anthro"] },
  50518. {
  50519. front: {
  50520. height: math.unit(5, "feet"),
  50521. name: "Front",
  50522. image: {
  50523. source: "./media/characters/nova-nerium/front.svg",
  50524. extra: 1548/1392,
  50525. bottom: 374/1922
  50526. }
  50527. },
  50528. back: {
  50529. height: math.unit(5, "feet"),
  50530. name: "Back",
  50531. image: {
  50532. source: "./media/characters/nova-nerium/back.svg",
  50533. extra: 1658/1468,
  50534. bottom: 257/1915
  50535. }
  50536. },
  50537. },
  50538. [
  50539. {
  50540. name: "Normal",
  50541. height: math.unit(5, "feet"),
  50542. default: true
  50543. },
  50544. ]
  50545. ))
  50546. characterMakers.push(() => makeCharacter(
  50547. { name: "Ashe Pyriph", species: ["liger"], tags: ["anthro"] },
  50548. {
  50549. front: {
  50550. height: math.unit(5 + 4/12, "feet"),
  50551. name: "Front",
  50552. image: {
  50553. source: "./media/characters/ashe-pyriph/front.svg",
  50554. extra: 1935/1747,
  50555. bottom: 60/1995
  50556. }
  50557. },
  50558. },
  50559. [
  50560. {
  50561. name: "Normal",
  50562. height: math.unit(5 + 4/12, "feet"),
  50563. default: true
  50564. },
  50565. ]
  50566. ))
  50567. characterMakers.push(() => makeCharacter(
  50568. { name: "Flicker Wisp", species: ["wolf", "drider"], tags: ["anthro"] },
  50569. {
  50570. front: {
  50571. height: math.unit(8.7, "feet"),
  50572. name: "Front",
  50573. image: {
  50574. source: "./media/characters/flicker-wisp/front.svg",
  50575. extra: 1835/1613,
  50576. bottom: 449/2284
  50577. }
  50578. },
  50579. side: {
  50580. height: math.unit(8.7, "feet"),
  50581. name: "Side",
  50582. image: {
  50583. source: "./media/characters/flicker-wisp/side.svg",
  50584. extra: 1841/1642,
  50585. bottom: 336/2177
  50586. },
  50587. default: true
  50588. },
  50589. maw: {
  50590. height: math.unit(3.35, "feet"),
  50591. name: "Maw",
  50592. image: {
  50593. source: "./media/characters/flicker-wisp/maw.svg",
  50594. extra: 2338/1506,
  50595. bottom: 0/2338
  50596. }
  50597. },
  50598. ovipositor: {
  50599. height: math.unit(4.95, "feet"),
  50600. name: "Ovipositor",
  50601. image: {
  50602. source: "./media/characters/flicker-wisp/ovipositor.svg"
  50603. }
  50604. },
  50605. egg: {
  50606. height: math.unit(0.385, "feet"),
  50607. weight: math.unit(2, "lb"),
  50608. name: "Egg",
  50609. image: {
  50610. source: "./media/characters/flicker-wisp/egg.svg"
  50611. }
  50612. },
  50613. },
  50614. [
  50615. {
  50616. name: "Normal",
  50617. height: math.unit(8.7, "feet"),
  50618. default: true
  50619. },
  50620. ]
  50621. ))
  50622. characterMakers.push(() => makeCharacter(
  50623. { name: "Faefnul", species: ["alien", "lizard"], tags: ["anthro"] },
  50624. {
  50625. side: {
  50626. height: math.unit(11, "feet"),
  50627. name: "Side",
  50628. image: {
  50629. source: "./media/characters/faefnul/side.svg",
  50630. extra: 1100/1007,
  50631. bottom: 0/1100
  50632. }
  50633. },
  50634. },
  50635. [
  50636. {
  50637. name: "Normal",
  50638. height: math.unit(11, "feet"),
  50639. default: true
  50640. },
  50641. ]
  50642. ))
  50643. characterMakers.push(() => makeCharacter(
  50644. { name: "Shady", species: ["fox"], tags: ["anthro"] },
  50645. {
  50646. front: {
  50647. height: math.unit(6 + 2/12, "feet"),
  50648. name: "Front",
  50649. image: {
  50650. source: "./media/characters/shady/front.svg",
  50651. extra: 502/461,
  50652. bottom: 9/511
  50653. }
  50654. },
  50655. kneeling: {
  50656. height: math.unit(4.6, "feet"),
  50657. name: "Kneeling",
  50658. image: {
  50659. source: "./media/characters/shady/kneeling.svg",
  50660. extra: 1328/1219,
  50661. bottom: 117/1445
  50662. }
  50663. },
  50664. maw: {
  50665. height: math.unit(2, "feet"),
  50666. name: "Maw",
  50667. image: {
  50668. source: "./media/characters/shady/maw.svg"
  50669. }
  50670. },
  50671. },
  50672. [
  50673. {
  50674. name: "Nano",
  50675. height: math.unit(1, "mm")
  50676. },
  50677. {
  50678. name: "Micro",
  50679. height: math.unit(12, "mm")
  50680. },
  50681. {
  50682. name: "Tiny",
  50683. height: math.unit(3, "inches")
  50684. },
  50685. {
  50686. name: "Normal",
  50687. height: math.unit(6 + 2/12, "feet"),
  50688. default: true
  50689. },
  50690. {
  50691. name: "Big",
  50692. height: math.unit(15, "feet")
  50693. },
  50694. {
  50695. name: "Macro",
  50696. height: math.unit(150, "feet")
  50697. },
  50698. {
  50699. name: "Titanic",
  50700. height: math.unit(500, "feet")
  50701. },
  50702. ]
  50703. ))
  50704. characterMakers.push(() => makeCharacter(
  50705. { name: "Fenrir", species: ["wolf"], tags: ["anthro"] },
  50706. {
  50707. front: {
  50708. height: math.unit(12, "feet"),
  50709. name: "Front",
  50710. image: {
  50711. source: "./media/characters/fenrir/front.svg",
  50712. extra: 968/875,
  50713. bottom: 22/990
  50714. }
  50715. },
  50716. },
  50717. [
  50718. {
  50719. name: "Big",
  50720. height: math.unit(12, "feet"),
  50721. default: true
  50722. },
  50723. ]
  50724. ))
  50725. characterMakers.push(() => makeCharacter(
  50726. { name: "Makar", species: ["cat"], tags: ["anthro"] },
  50727. {
  50728. front: {
  50729. height: math.unit(5 + 4/12, "feet"),
  50730. name: "Front",
  50731. image: {
  50732. source: "./media/characters/makar/front.svg",
  50733. extra: 1181/1112,
  50734. bottom: 78/1259
  50735. }
  50736. },
  50737. },
  50738. [
  50739. {
  50740. name: "Normal",
  50741. height: math.unit(5 + 4/12, "feet"),
  50742. default: true
  50743. },
  50744. ]
  50745. ))
  50746. characterMakers.push(() => makeCharacter(
  50747. { name: "Callow", species: ["deer"], tags: ["anthro"] },
  50748. {
  50749. front: {
  50750. height: math.unit(5 + 7/12, "feet"),
  50751. name: "Front",
  50752. image: {
  50753. source: "./media/characters/callow/front.svg",
  50754. extra: 1482/1304,
  50755. bottom: 23/1505
  50756. }
  50757. },
  50758. back: {
  50759. height: math.unit(5 + 7/12, "feet"),
  50760. name: "Back",
  50761. image: {
  50762. source: "./media/characters/callow/back.svg",
  50763. extra: 1484/1296,
  50764. bottom: 25/1509
  50765. }
  50766. },
  50767. },
  50768. [
  50769. {
  50770. name: "Micro",
  50771. height: math.unit(3, "inches"),
  50772. default: true
  50773. },
  50774. {
  50775. name: "Normal",
  50776. height: math.unit(5 + 7/12, "feet")
  50777. },
  50778. ]
  50779. ))
  50780. characterMakers.push(() => makeCharacter(
  50781. { name: "Natel", species: ["folf"], tags: ["anthro"] },
  50782. {
  50783. front: {
  50784. height: math.unit(6 + 2/12, "feet"),
  50785. name: "Front",
  50786. image: {
  50787. source: "./media/characters/natel/front.svg",
  50788. extra: 1833/1692,
  50789. bottom: 166/1999
  50790. }
  50791. },
  50792. },
  50793. [
  50794. {
  50795. name: "Normal",
  50796. height: math.unit(6 + 2/12, "feet"),
  50797. default: true
  50798. },
  50799. ]
  50800. ))
  50801. characterMakers.push(() => makeCharacter(
  50802. { name: "Misu", species: ["coyote"], tags: ["anthro"] },
  50803. {
  50804. front: {
  50805. height: math.unit(1.75, "meters"),
  50806. name: "Front",
  50807. image: {
  50808. source: "./media/characters/misu/front.svg",
  50809. extra: 1690/1558,
  50810. bottom: 234/1924
  50811. }
  50812. },
  50813. back: {
  50814. height: math.unit(1.75, "meters"),
  50815. name: "Back",
  50816. image: {
  50817. source: "./media/characters/misu/back.svg",
  50818. extra: 1762/1618,
  50819. bottom: 146/1908
  50820. }
  50821. },
  50822. frontNude: {
  50823. height: math.unit(1.75, "meters"),
  50824. name: "Front (Nude)",
  50825. image: {
  50826. source: "./media/characters/misu/front-nude.svg",
  50827. extra: 1690/1558,
  50828. bottom: 234/1924
  50829. }
  50830. },
  50831. backNude: {
  50832. height: math.unit(1.75, "meters"),
  50833. name: "Back (Nude)",
  50834. image: {
  50835. source: "./media/characters/misu/back-nude.svg",
  50836. extra: 1762/1618,
  50837. bottom: 146/1908
  50838. }
  50839. },
  50840. frontErect: {
  50841. height: math.unit(1.75, "meters"),
  50842. name: "Front (Erect)",
  50843. image: {
  50844. source: "./media/characters/misu/front-erect.svg",
  50845. extra: 1690/1558,
  50846. bottom: 234/1924
  50847. }
  50848. },
  50849. maw: {
  50850. height: math.unit(0.47, "meters"),
  50851. name: "Maw",
  50852. image: {
  50853. source: "./media/characters/misu/maw.svg"
  50854. }
  50855. },
  50856. head: {
  50857. height: math.unit(0.35, "meters"),
  50858. name: "Head",
  50859. image: {
  50860. source: "./media/characters/misu/head.svg"
  50861. }
  50862. },
  50863. rear: {
  50864. height: math.unit(0.47, "meters"),
  50865. name: "Rear",
  50866. image: {
  50867. source: "./media/characters/misu/rear.svg"
  50868. }
  50869. },
  50870. },
  50871. [
  50872. {
  50873. name: "Normal",
  50874. height: math.unit(1.75, "meters")
  50875. },
  50876. {
  50877. name: "Not good for the people",
  50878. height: math.unit(42, "meters")
  50879. },
  50880. {
  50881. name: "Not good for the neighborhood",
  50882. height: math.unit(135, "meters")
  50883. },
  50884. {
  50885. name: "Bit bigger problem",
  50886. height: math.unit(380, "meters"),
  50887. default: true
  50888. },
  50889. {
  50890. name: "Not good for the city",
  50891. height: math.unit(1.5, "km")
  50892. },
  50893. {
  50894. name: "Not good for the county",
  50895. height: math.unit(5.5, "km")
  50896. },
  50897. {
  50898. name: "Not good for the state",
  50899. height: math.unit(25, "km")
  50900. },
  50901. {
  50902. name: "Not good for the country",
  50903. height: math.unit(125, "km")
  50904. },
  50905. {
  50906. name: "Not good for the continent",
  50907. height: math.unit(2100, "km")
  50908. },
  50909. {
  50910. name: "Not good for the planet",
  50911. height: math.unit(35000, "km")
  50912. },
  50913. {
  50914. name: "Just no",
  50915. height: math.unit(8.5e18, "km")
  50916. },
  50917. ]
  50918. ))
  50919. characterMakers.push(() => makeCharacter(
  50920. { name: "Poppy", species: ["human"], tags: ["anthro"] },
  50921. {
  50922. front: {
  50923. height: math.unit(6.5, "feet"),
  50924. name: "Front",
  50925. image: {
  50926. source: "./media/characters/poppy/front.svg",
  50927. extra: 1878/1812,
  50928. bottom: 43/1921
  50929. }
  50930. },
  50931. feet: {
  50932. height: math.unit(1.06, "feet"),
  50933. name: "Feet",
  50934. image: {
  50935. source: "./media/characters/poppy/feet.svg",
  50936. extra: 1083/1083,
  50937. bottom: 87/1170
  50938. }
  50939. },
  50940. },
  50941. [
  50942. {
  50943. name: "Human",
  50944. height: math.unit(6.5, "feet")
  50945. },
  50946. {
  50947. name: "Default",
  50948. height: math.unit(300, "feet"),
  50949. default: true
  50950. },
  50951. {
  50952. name: "Huge",
  50953. height: math.unit(850, "feet")
  50954. },
  50955. {
  50956. name: "Mega",
  50957. height: math.unit(8000, "feet")
  50958. },
  50959. {
  50960. name: "Giga",
  50961. height: math.unit(300, "miles")
  50962. },
  50963. ]
  50964. ))
  50965. characterMakers.push(() => makeCharacter(
  50966. { name: "Zener", species: ["dragon" ,"robot"], tags: ["anthro", "feral"] },
  50967. {
  50968. bipedal: {
  50969. height: math.unit(7, "feet"),
  50970. name: "Bipedal",
  50971. image: {
  50972. source: "./media/characters/zener/bipedal.svg",
  50973. extra: 874/805,
  50974. bottom: 109/983
  50975. }
  50976. },
  50977. quadrupedal: {
  50978. height: math.unit(4.64, "feet"),
  50979. name: "Quadrupedal",
  50980. image: {
  50981. source: "./media/characters/zener/quadrupedal.svg",
  50982. extra: 638/507,
  50983. bottom: 190/828
  50984. }
  50985. },
  50986. cock: {
  50987. height: math.unit(18, "inches"),
  50988. name: "Cock",
  50989. image: {
  50990. source: "./media/characters/zener/cock.svg"
  50991. }
  50992. },
  50993. },
  50994. [
  50995. {
  50996. name: "Normal",
  50997. height: math.unit(7, "feet"),
  50998. default: true
  50999. },
  51000. ]
  51001. ))
  51002. characterMakers.push(() => makeCharacter(
  51003. { name: "Charlie (Dog)", species: ["dog"], tags: ["anthro"] },
  51004. {
  51005. nude: {
  51006. height: math.unit(5 + 6/12, "feet"),
  51007. name: "Nude",
  51008. image: {
  51009. source: "./media/characters/charlie-dog/nude.svg",
  51010. extra: 768/734,
  51011. bottom: 26/794
  51012. }
  51013. },
  51014. dressed: {
  51015. height: math.unit(5 + 6/12, "feet"),
  51016. name: "Dressed",
  51017. image: {
  51018. source: "./media/characters/charlie-dog/dressed.svg",
  51019. extra: 768/734,
  51020. bottom: 26/794
  51021. }
  51022. },
  51023. },
  51024. [
  51025. {
  51026. name: "Normal",
  51027. height: math.unit(5 + 6/12, "feet"),
  51028. default: true
  51029. },
  51030. ]
  51031. ))
  51032. characterMakers.push(() => makeCharacter(
  51033. { name: "Ir'istrasz", species: ["dragon"], tags: ["anthro"] },
  51034. {
  51035. front: {
  51036. height: math.unit(6 + 4/12, "feet"),
  51037. name: "Front",
  51038. image: {
  51039. source: "./media/characters/ir'istrasz/front.svg",
  51040. extra: 1014/977,
  51041. bottom: 65/1079
  51042. }
  51043. },
  51044. back: {
  51045. height: math.unit(6 + 4/12, "feet"),
  51046. name: "Back",
  51047. image: {
  51048. source: "./media/characters/ir'istrasz/back.svg",
  51049. extra: 1024/992,
  51050. bottom: 34/1058
  51051. }
  51052. },
  51053. },
  51054. [
  51055. {
  51056. name: "Normal",
  51057. height: math.unit(6 + 4/12, "feet"),
  51058. default: true
  51059. },
  51060. ]
  51061. ))
  51062. characterMakers.push(() => makeCharacter(
  51063. { name: "Dee (Ditto)", species: ["ditto"], tags: ["anthro", "goo"] },
  51064. {
  51065. front: {
  51066. height: math.unit(5 + 8/12, "feet"),
  51067. name: "Front",
  51068. image: {
  51069. source: "./media/characters/dee-ditto/front.svg",
  51070. extra: 1874/1785,
  51071. bottom: 68/1942
  51072. }
  51073. },
  51074. back: {
  51075. height: math.unit(5 + 8/12, "feet"),
  51076. name: "Back",
  51077. image: {
  51078. source: "./media/characters/dee-ditto/back.svg",
  51079. extra: 1870/1783,
  51080. bottom: 77/1947
  51081. }
  51082. },
  51083. },
  51084. [
  51085. {
  51086. name: "Normal",
  51087. height: math.unit(5 + 8/12, "feet"),
  51088. default: true
  51089. },
  51090. ]
  51091. ))
  51092. characterMakers.push(() => makeCharacter(
  51093. { name: "Fey", species: ["werebeast", "fox"], tags: ["anthro"] },
  51094. {
  51095. front: {
  51096. height: math.unit(7 + 6/12, "feet"),
  51097. name: "Front",
  51098. image: {
  51099. source: "./media/characters/fey/front.svg",
  51100. extra: 995/979,
  51101. bottom: 30/1025
  51102. }
  51103. },
  51104. back: {
  51105. height: math.unit(7 + 6/12, "feet"),
  51106. name: "Back",
  51107. image: {
  51108. source: "./media/characters/fey/back.svg",
  51109. extra: 1079/1008,
  51110. bottom: 5/1084
  51111. }
  51112. },
  51113. dressed: {
  51114. height: math.unit(7 + 6/12, "feet"),
  51115. name: "Dressed",
  51116. image: {
  51117. source: "./media/characters/fey/dressed.svg",
  51118. extra: 995/979,
  51119. bottom: 30/1025
  51120. }
  51121. },
  51122. },
  51123. [
  51124. {
  51125. name: "Normal",
  51126. height: math.unit(7 + 6/12, "feet"),
  51127. default: true
  51128. },
  51129. ]
  51130. ))
  51131. characterMakers.push(() => makeCharacter(
  51132. { name: "Aster", species: ["alien"], tags: ["anthro"] },
  51133. {
  51134. standing: {
  51135. height: math.unit(17, "feet"),
  51136. name: "Standing",
  51137. image: {
  51138. source: "./media/characters/aster/standing.svg",
  51139. extra: 1798/1598,
  51140. bottom: 117/1915
  51141. }
  51142. },
  51143. },
  51144. [
  51145. {
  51146. name: "Normal",
  51147. height: math.unit(17, "feet"),
  51148. default: true
  51149. },
  51150. {
  51151. name: "Homewrecker",
  51152. height: math.unit(95, "feet")
  51153. },
  51154. {
  51155. name: "Planet Devourer",
  51156. height: math.unit(1008000, "miles")
  51157. },
  51158. ]
  51159. ))
  51160. characterMakers.push(() => makeCharacter(
  51161. { name: "Devon Childs", species: ["hyena"], tags: ["anthro"] },
  51162. {
  51163. front: {
  51164. height: math.unit(6 + 5/12, "feet"),
  51165. weight: math.unit(265, "lb"),
  51166. name: "Front",
  51167. image: {
  51168. source: "./media/characters/devon-childs/front.svg",
  51169. extra: 1795/1721,
  51170. bottom: 41/1836
  51171. }
  51172. },
  51173. side: {
  51174. height: math.unit(6 + 5/12, "feet"),
  51175. weight: math.unit(265, "lb"),
  51176. name: "Side",
  51177. image: {
  51178. source: "./media/characters/devon-childs/side.svg",
  51179. extra: 1812/1738,
  51180. bottom: 30/1842
  51181. }
  51182. },
  51183. back: {
  51184. height: math.unit(6 + 5/12, "feet"),
  51185. weight: math.unit(265, "lb"),
  51186. name: "Back",
  51187. image: {
  51188. source: "./media/characters/devon-childs/back.svg",
  51189. extra: 1808/1735,
  51190. bottom: 23/1831
  51191. }
  51192. },
  51193. hand: {
  51194. height: math.unit(1.464, "feet"),
  51195. name: "Hand",
  51196. image: {
  51197. source: "./media/characters/devon-childs/hand.svg"
  51198. }
  51199. },
  51200. foot: {
  51201. height: math.unit(1.6, "feet"),
  51202. name: "Foot",
  51203. image: {
  51204. source: "./media/characters/devon-childs/foot.svg"
  51205. }
  51206. },
  51207. },
  51208. [
  51209. {
  51210. name: "Micro",
  51211. height: math.unit(7, "cm")
  51212. },
  51213. {
  51214. name: "Normal",
  51215. height: math.unit(6 + 5/12, "feet"),
  51216. default: true
  51217. },
  51218. {
  51219. name: "Macro",
  51220. height: math.unit(154, "feet")
  51221. },
  51222. ]
  51223. ))
  51224. characterMakers.push(() => makeCharacter(
  51225. { name: "Lydemox Vir", species: ["kitsune"], tags: ["anthro"] },
  51226. {
  51227. front: {
  51228. height: math.unit(6, "feet"),
  51229. weight: math.unit(180, "lb"),
  51230. name: "Front",
  51231. image: {
  51232. source: "./media/characters/lydemox-vir/front.svg",
  51233. extra: 1632/1435,
  51234. bottom: 58/1690
  51235. }
  51236. },
  51237. frontSFW: {
  51238. height: math.unit(6, "feet"),
  51239. weight: math.unit(180, "lb"),
  51240. name: "Front (SFW)",
  51241. image: {
  51242. source: "./media/characters/lydemox-vir/front-sfw.svg",
  51243. extra: 1632/1435,
  51244. bottom: 58/1690
  51245. }
  51246. },
  51247. back: {
  51248. height: math.unit(6, "feet"),
  51249. weight: math.unit(180, "lb"),
  51250. name: "Back",
  51251. image: {
  51252. source: "./media/characters/lydemox-vir/back.svg",
  51253. extra: 1593/1408,
  51254. bottom: 31/1624
  51255. }
  51256. },
  51257. paw: {
  51258. height: math.unit(1.85, "feet"),
  51259. name: "Paw",
  51260. image: {
  51261. source: "./media/characters/lydemox-vir/paw.svg"
  51262. }
  51263. },
  51264. dick: {
  51265. height: math.unit(1.8, "feet"),
  51266. name: "Dick",
  51267. image: {
  51268. source: "./media/characters/lydemox-vir/dick.svg"
  51269. }
  51270. },
  51271. },
  51272. [
  51273. {
  51274. name: "Macro",
  51275. height: math.unit(100, "feet"),
  51276. default: true
  51277. },
  51278. {
  51279. name: "Teramacro",
  51280. height: math.unit(1, "earth")
  51281. },
  51282. {
  51283. name: "Planetary",
  51284. height: math.unit(20, "earths")
  51285. },
  51286. ]
  51287. ))
  51288. characterMakers.push(() => makeCharacter(
  51289. { name: "Mia", species: ["panda"], tags: ["anthro"] },
  51290. {
  51291. front: {
  51292. height: math.unit(15 + 8/12, "feet"),
  51293. weight: math.unit(1237, "kg"),
  51294. name: "Front",
  51295. image: {
  51296. source: "./media/characters/mia/front.svg",
  51297. extra: 1573/1446,
  51298. bottom: 58/1631
  51299. }
  51300. },
  51301. },
  51302. [
  51303. {
  51304. name: "Small",
  51305. height: math.unit(9 + 5/12, "feet")
  51306. },
  51307. {
  51308. name: "Normal",
  51309. height: math.unit(15 + 8/12, "feet"),
  51310. default: true
  51311. },
  51312. ]
  51313. ))
  51314. characterMakers.push(() => makeCharacter(
  51315. { name: "Mr. Graves", species: ["wolf"], tags: ["anthro"] },
  51316. {
  51317. front: {
  51318. height: math.unit(10 + 6/12, "feet"),
  51319. weight: math.unit(1.3, "tons"),
  51320. name: "Front",
  51321. image: {
  51322. source: "./media/characters/mr-graves/front.svg",
  51323. extra: 1779/1695,
  51324. bottom: 198/1977
  51325. }
  51326. },
  51327. },
  51328. [
  51329. {
  51330. name: "Normal",
  51331. height: math.unit(10 + 6 /12, "feet"),
  51332. default: true
  51333. },
  51334. ]
  51335. ))
  51336. characterMakers.push(() => makeCharacter(
  51337. { name: "Jess", species: ["human"], tags: ["anthro"] },
  51338. {
  51339. dressedFront: {
  51340. height: math.unit(5 + 8/12, "feet"),
  51341. weight: math.unit(125, "lb"),
  51342. name: "Dressed (Front)",
  51343. image: {
  51344. source: "./media/characters/jess/dressed-front.svg",
  51345. extra: 1176/1152,
  51346. bottom: 42/1218
  51347. }
  51348. },
  51349. dressedSide: {
  51350. height: math.unit(5 + 8/12, "feet"),
  51351. weight: math.unit(125, "lb"),
  51352. name: "Dressed (Side)",
  51353. image: {
  51354. source: "./media/characters/jess/dressed-side.svg",
  51355. extra: 1204/1190,
  51356. bottom: 6/1210
  51357. }
  51358. },
  51359. nudeFront: {
  51360. height: math.unit(5 + 8/12, "feet"),
  51361. weight: math.unit(125, "lb"),
  51362. name: "Nude (Front)",
  51363. image: {
  51364. source: "./media/characters/jess/nude-front.svg",
  51365. extra: 1176/1152,
  51366. bottom: 42/1218
  51367. }
  51368. },
  51369. nudeSide: {
  51370. height: math.unit(5 + 8/12, "feet"),
  51371. weight: math.unit(125, "lb"),
  51372. name: "Nude (Side)",
  51373. image: {
  51374. source: "./media/characters/jess/nude-side.svg",
  51375. extra: 1204/1190,
  51376. bottom: 6/1210
  51377. }
  51378. },
  51379. organsFront: {
  51380. height: math.unit(2.83799342105, "feet"),
  51381. name: "Organs (Front)",
  51382. image: {
  51383. source: "./media/characters/jess/organs-front.svg"
  51384. }
  51385. },
  51386. organsSide: {
  51387. height: math.unit(2.64225290474, "feet"),
  51388. name: "Organs (Side)",
  51389. image: {
  51390. source: "./media/characters/jess/organs-side.svg"
  51391. }
  51392. },
  51393. digestiveTractFront: {
  51394. height: math.unit(2.8106580871, "feet"),
  51395. name: "Digestive Tract (Front)",
  51396. image: {
  51397. source: "./media/characters/jess/digestive-tract-front.svg"
  51398. }
  51399. },
  51400. digestiveTractSide: {
  51401. height: math.unit(2.54365045014, "feet"),
  51402. name: "Digestive Tract (Side)",
  51403. image: {
  51404. source: "./media/characters/jess/digestive-tract-side.svg"
  51405. }
  51406. },
  51407. respiratorySystemFront: {
  51408. height: math.unit(1.11196233456, "feet"),
  51409. name: "Respiratory System (Front)",
  51410. image: {
  51411. source: "./media/characters/jess/respiratory-system-front.svg"
  51412. }
  51413. },
  51414. respiratorySystemSide: {
  51415. height: math.unit(0.89327966297, "feet"),
  51416. name: "Respiratory System (Side)",
  51417. image: {
  51418. source: "./media/characters/jess/respiratory-system-side.svg"
  51419. }
  51420. },
  51421. urinaryTractFront: {
  51422. height: math.unit(1.16126356186, "feet"),
  51423. name: "Urinary Tract (Front)",
  51424. image: {
  51425. source: "./media/characters/jess/urinary-tract-front.svg"
  51426. }
  51427. },
  51428. urinaryTractSide: {
  51429. height: math.unit(1.20910039627, "feet"),
  51430. name: "Urinary Tract (Side)",
  51431. image: {
  51432. source: "./media/characters/jess/urinary-tract-side.svg"
  51433. }
  51434. },
  51435. reproductiveOrgansFront: {
  51436. height: math.unit(0.48422591566, "feet"),
  51437. name: "Reproductive Organs (Front)",
  51438. image: {
  51439. source: "./media/characters/jess/reproductive-organs-front.svg"
  51440. }
  51441. },
  51442. reproductiveOrgansSide: {
  51443. height: math.unit(0.61553314481, "feet"),
  51444. name: "Reproductive Organs (Side)",
  51445. image: {
  51446. source: "./media/characters/jess/reproductive-organs-side.svg"
  51447. }
  51448. },
  51449. breastsFront: {
  51450. height: math.unit(0.47690395121, "feet"),
  51451. name: "Breasts (Front)",
  51452. image: {
  51453. source: "./media/characters/jess/breasts-front.svg"
  51454. }
  51455. },
  51456. breastsSide: {
  51457. height: math.unit(0.30556998307, "feet"),
  51458. name: "Breasts (Side)",
  51459. image: {
  51460. source: "./media/characters/jess/breasts-side.svg"
  51461. }
  51462. },
  51463. heartFront: {
  51464. height: math.unit(0.53011022622, "feet"),
  51465. name: "Heart (Front)",
  51466. image: {
  51467. source: "./media/characters/jess/heart-front.svg"
  51468. }
  51469. },
  51470. heartSide: {
  51471. height: math.unit(0.51790695213, "feet"),
  51472. name: "Heart (Side)",
  51473. image: {
  51474. source: "./media/characters/jess/heart-side.svg"
  51475. }
  51476. },
  51477. earsAndNoseFront: {
  51478. height: math.unit(0.29385483995, "feet"),
  51479. name: "Ears and Nose (Front)",
  51480. image: {
  51481. source: "./media/characters/jess/ears-and-nose-front.svg"
  51482. }
  51483. },
  51484. earsAndNoseSide: {
  51485. height: math.unit(0.18109658741, "feet"),
  51486. name: "Ears and Nose (Side)",
  51487. image: {
  51488. source: "./media/characters/jess/ears-and-nose-side.svg"
  51489. }
  51490. },
  51491. },
  51492. [
  51493. {
  51494. name: "Normal",
  51495. height: math.unit(5 + 8/12, "feet"),
  51496. default: true
  51497. },
  51498. ]
  51499. ))
  51500. characterMakers.push(() => makeCharacter(
  51501. { name: "Wimpering", species: ["human"], tags: ["anthro"] },
  51502. {
  51503. front: {
  51504. height: math.unit(6, "feet"),
  51505. weight: math.unit(6.64467e-7, "grams"),
  51506. name: "Front",
  51507. image: {
  51508. source: "./media/characters/wimpering/front.svg",
  51509. extra: 597/587,
  51510. bottom: 34/631
  51511. }
  51512. },
  51513. },
  51514. [
  51515. {
  51516. name: "Micro",
  51517. height: math.unit(0.4, "mm"),
  51518. default: true
  51519. },
  51520. ]
  51521. ))
  51522. characterMakers.push(() => makeCharacter(
  51523. { name: "Keltre", species: ["dog"], tags: ["anthro"] },
  51524. {
  51525. front: {
  51526. height: math.unit(5 + 2/12, "feet"),
  51527. weight: math.unit(110, "lb"),
  51528. name: "Front",
  51529. image: {
  51530. source: "./media/characters/keltre/front.svg",
  51531. extra: 1099/1057,
  51532. bottom: 22/1121
  51533. }
  51534. },
  51535. back: {
  51536. height: math.unit(5 + 2/12, "feet"),
  51537. weight: math.unit(110, "lb"),
  51538. name: "Back",
  51539. image: {
  51540. source: "./media/characters/keltre/back.svg",
  51541. extra: 1095/1053,
  51542. bottom: 17/1112
  51543. }
  51544. },
  51545. dressed: {
  51546. height: math.unit(5 + 2/12, "feet"),
  51547. weight: math.unit(110, "lb"),
  51548. name: "Dressed",
  51549. image: {
  51550. source: "./media/characters/keltre/dressed.svg",
  51551. extra: 1099/1057,
  51552. bottom: 22/1121
  51553. }
  51554. },
  51555. winter: {
  51556. height: math.unit(5 + 2/12, "feet"),
  51557. weight: math.unit(110, "lb"),
  51558. name: "Winter",
  51559. image: {
  51560. source: "./media/characters/keltre/winter.svg",
  51561. extra: 1099/1057,
  51562. bottom: 22/1121
  51563. }
  51564. },
  51565. head: {
  51566. height: math.unit(1.61 * 0.86, "feet"),
  51567. name: "Head",
  51568. image: {
  51569. source: "./media/characters/keltre/head.svg",
  51570. extra: 534/421,
  51571. bottom: 0/534
  51572. }
  51573. },
  51574. hand: {
  51575. height: math.unit(1.3 * 0.86, "feet"),
  51576. name: "Hand",
  51577. image: {
  51578. source: "./media/characters/keltre/hand.svg"
  51579. }
  51580. },
  51581. foot: {
  51582. height: math.unit(1.8 * 0.86, "feet"),
  51583. name: "Foot",
  51584. image: {
  51585. source: "./media/characters/keltre/foot.svg"
  51586. }
  51587. },
  51588. },
  51589. [
  51590. {
  51591. name: "Fine",
  51592. height: math.unit(1, "inch")
  51593. },
  51594. {
  51595. name: "Dimnutive",
  51596. height: math.unit(4, "inches")
  51597. },
  51598. {
  51599. name: "Tiny",
  51600. height: math.unit(1, "foot")
  51601. },
  51602. {
  51603. name: "Small",
  51604. height: math.unit(3, "feet")
  51605. },
  51606. {
  51607. name: "Normal",
  51608. height: math.unit(5 + 2/12, "feet"),
  51609. default: true
  51610. },
  51611. ]
  51612. ))
  51613. characterMakers.push(() => makeCharacter(
  51614. { name: "Nox", species: ["cat"], tags: ["anthro"] },
  51615. {
  51616. front: {
  51617. height: math.unit(6 + 2/12, "feet"),
  51618. name: "Front",
  51619. image: {
  51620. source: "./media/characters/nox/front.svg",
  51621. extra: 1917/1830,
  51622. bottom: 74/1991
  51623. }
  51624. },
  51625. back: {
  51626. height: math.unit(6 + 2/12, "feet"),
  51627. name: "Back",
  51628. image: {
  51629. source: "./media/characters/nox/back.svg",
  51630. extra: 1896/1815,
  51631. bottom: 21/1917
  51632. }
  51633. },
  51634. head: {
  51635. height: math.unit(1.1, "feet"),
  51636. name: "Head",
  51637. image: {
  51638. source: "./media/characters/nox/head.svg",
  51639. extra: 874/704,
  51640. bottom: 0/874
  51641. }
  51642. },
  51643. tattoo: {
  51644. height: math.unit(0.729, "feet"),
  51645. name: "Tattoo",
  51646. image: {
  51647. source: "./media/characters/nox/tattoo.svg"
  51648. }
  51649. },
  51650. },
  51651. [
  51652. {
  51653. name: "Normal",
  51654. height: math.unit(6 + 2/12, "feet")
  51655. },
  51656. {
  51657. name: "Gigamacro",
  51658. height: math.unit(2, "earths"),
  51659. default: true
  51660. },
  51661. {
  51662. name: "Cosmic",
  51663. height: math.unit(867, "yottameters")
  51664. },
  51665. ]
  51666. ))
  51667. characterMakers.push(() => makeCharacter(
  51668. { name: "Caspian", species: ["ferret"], tags: ["anthro"] },
  51669. {
  51670. front: {
  51671. height: math.unit(6, "feet"),
  51672. weight: math.unit(150, "lb"),
  51673. name: "Front",
  51674. image: {
  51675. source: "./media/characters/caspian/front.svg",
  51676. extra: 1443/1359,
  51677. bottom: 0/1443
  51678. }
  51679. },
  51680. back: {
  51681. height: math.unit(6, "feet"),
  51682. weight: math.unit(150, "lb"),
  51683. name: "Back",
  51684. image: {
  51685. source: "./media/characters/caspian/back.svg",
  51686. extra: 1379/1309,
  51687. bottom: 0/1379
  51688. }
  51689. },
  51690. head: {
  51691. height: math.unit(0.9, "feet"),
  51692. name: "Head",
  51693. image: {
  51694. source: "./media/characters/caspian/head.svg",
  51695. extra: 692/492,
  51696. bottom: 0/692
  51697. }
  51698. },
  51699. headAlt: {
  51700. height: math.unit(0.95, "feet"),
  51701. name: "Head (Alt)",
  51702. image: {
  51703. source: "./media/characters/caspian/head-alt.svg",
  51704. extra: 668/508,
  51705. bottom: 0/668
  51706. }
  51707. },
  51708. hand: {
  51709. height: math.unit(0.8, "feet"),
  51710. name: "Hand",
  51711. image: {
  51712. source: "./media/characters/caspian/hand.svg"
  51713. }
  51714. },
  51715. paw: {
  51716. height: math.unit(0.95, "feet"),
  51717. name: "Paw",
  51718. image: {
  51719. source: "./media/characters/caspian/paw.svg"
  51720. }
  51721. },
  51722. },
  51723. [
  51724. {
  51725. name: "Normal",
  51726. height: math.unit(162, "feet"),
  51727. default: true
  51728. },
  51729. ]
  51730. ))
  51731. characterMakers.push(() => makeCharacter(
  51732. { name: "Myra Aisling", species: ["coyote"], tags: ["anthro"] },
  51733. {
  51734. front: {
  51735. height: math.unit(6, "feet"),
  51736. name: "Front",
  51737. image: {
  51738. source: "./media/characters/myra-aisling/front.svg",
  51739. extra: 1268/1166,
  51740. bottom: 73/1341
  51741. }
  51742. },
  51743. back: {
  51744. height: math.unit(6, "feet"),
  51745. name: "Back",
  51746. image: {
  51747. source: "./media/characters/myra-aisling/back.svg",
  51748. extra: 1249/1149,
  51749. bottom: 79/1328
  51750. }
  51751. },
  51752. dressed: {
  51753. height: math.unit(6, "feet"),
  51754. name: "Dressed",
  51755. image: {
  51756. source: "./media/characters/myra-aisling/dressed.svg",
  51757. extra: 1290/1189,
  51758. bottom: 47/1337
  51759. }
  51760. },
  51761. hand: {
  51762. height: math.unit(1.1, "feet"),
  51763. name: "Hand",
  51764. image: {
  51765. source: "./media/characters/myra-aisling/hand.svg"
  51766. }
  51767. },
  51768. paw: {
  51769. height: math.unit(1.23, "feet"),
  51770. name: "Paw",
  51771. image: {
  51772. source: "./media/characters/myra-aisling/paw.svg"
  51773. }
  51774. },
  51775. },
  51776. [
  51777. {
  51778. name: "Normal",
  51779. height: math.unit(160, "feet"),
  51780. default: true
  51781. },
  51782. ]
  51783. ))
  51784. characterMakers.push(() => makeCharacter(
  51785. { name: "Tenley Sidero", species: ["lycanroc"], tags: ["anthro"] },
  51786. {
  51787. front: {
  51788. height: math.unit(6, "feet"),
  51789. name: "Front",
  51790. image: {
  51791. source: "./media/characters/tenley-sidero/front.svg",
  51792. extra: 1365/1276,
  51793. bottom: 47/1412
  51794. }
  51795. },
  51796. back: {
  51797. height: math.unit(6, "feet"),
  51798. name: "Back",
  51799. image: {
  51800. source: "./media/characters/tenley-sidero/back.svg",
  51801. extra: 1383/1283,
  51802. bottom: 35/1418
  51803. }
  51804. },
  51805. dressed: {
  51806. height: math.unit(6, "feet"),
  51807. name: "Dressed",
  51808. image: {
  51809. source: "./media/characters/tenley-sidero/dressed.svg",
  51810. extra: 1364/1275,
  51811. bottom: 42/1406
  51812. }
  51813. },
  51814. head: {
  51815. height: math.unit(1.47, "feet"),
  51816. name: "Head",
  51817. image: {
  51818. source: "./media/characters/tenley-sidero/head.svg",
  51819. extra: 610/490,
  51820. bottom: 0/610
  51821. }
  51822. },
  51823. },
  51824. [
  51825. {
  51826. name: "Normal",
  51827. height: math.unit(154, "feet"),
  51828. default: true
  51829. },
  51830. ]
  51831. ))
  51832. characterMakers.push(() => makeCharacter(
  51833. { name: "Mallory", species: ["rabbit"], tags: ["anthro"] },
  51834. {
  51835. front: {
  51836. height: math.unit(5, "inches"),
  51837. name: "Front",
  51838. image: {
  51839. source: "./media/characters/mallory/front.svg",
  51840. extra: 1919/1678,
  51841. bottom: 29/1948
  51842. }
  51843. },
  51844. hand: {
  51845. height: math.unit(0.73, "inches"),
  51846. name: "Hand",
  51847. image: {
  51848. source: "./media/characters/mallory/hand.svg"
  51849. }
  51850. },
  51851. paw: {
  51852. height: math.unit(0.68, "inches"),
  51853. name: "Paw",
  51854. image: {
  51855. source: "./media/characters/mallory/paw.svg"
  51856. }
  51857. },
  51858. },
  51859. [
  51860. {
  51861. name: "Small",
  51862. height: math.unit(5, "inches"),
  51863. default: true
  51864. },
  51865. ]
  51866. ))
  51867. characterMakers.push(() => makeCharacter(
  51868. { name: "Mab", species: ["opossum"], tags: ["anthro"] },
  51869. {
  51870. naked: {
  51871. height: math.unit(6, "feet"),
  51872. name: "Naked",
  51873. image: {
  51874. source: "./media/characters/mab/naked.svg",
  51875. extra: 1855/1757,
  51876. bottom: 208/2063
  51877. }
  51878. },
  51879. outside: {
  51880. height: math.unit(6, "feet"),
  51881. name: "Outside",
  51882. image: {
  51883. source: "./media/characters/mab/outside.svg",
  51884. extra: 1855/1757,
  51885. bottom: 208/2063
  51886. }
  51887. },
  51888. party: {
  51889. height: math.unit(6, "feet"),
  51890. name: "Party",
  51891. image: {
  51892. source: "./media/characters/mab/party.svg",
  51893. extra: 1855/1757,
  51894. bottom: 208/2063
  51895. }
  51896. },
  51897. },
  51898. [
  51899. {
  51900. name: "Normal",
  51901. height: math.unit(165, "feet"),
  51902. default: true
  51903. },
  51904. ]
  51905. ))
  51906. characterMakers.push(() => makeCharacter(
  51907. { name: "Winter", species: ["arcanine"], tags: ["feral"] },
  51908. {
  51909. feral: {
  51910. height: math.unit(12, "feet"),
  51911. weight: math.unit(20000, "lb"),
  51912. name: "Side",
  51913. image: {
  51914. source: "./media/characters/winter/feral.svg",
  51915. extra: 1286/943,
  51916. bottom: 112/1398
  51917. },
  51918. form: "feral",
  51919. default: true
  51920. },
  51921. feralNsfw: {
  51922. height: math.unit(12, "feet"),
  51923. weight: math.unit(20000, "lb"),
  51924. name: "Side (NSFW)",
  51925. image: {
  51926. source: "./media/characters/winter/feral-nsfw.svg",
  51927. extra: 1286/943,
  51928. bottom: 112/1398
  51929. },
  51930. form: "feral"
  51931. },
  51932. dick: {
  51933. height: math.unit(3.79, "feet"),
  51934. name: "Dick",
  51935. image: {
  51936. source: "./media/characters/winter/dick.svg"
  51937. },
  51938. form: "feral"
  51939. },
  51940. anthro: {
  51941. height: math.unit(12, "feet"),
  51942. weight: math.unit(10, "tons"),
  51943. name: "Anthro",
  51944. image: {
  51945. source: "./media/characters/winter/anthro.svg",
  51946. extra: 1701/1553,
  51947. bottom: 64/1765
  51948. },
  51949. form: "anthro",
  51950. default: true
  51951. },
  51952. },
  51953. [
  51954. {
  51955. name: "Big",
  51956. height: math.unit(12, "feet"),
  51957. default: true,
  51958. form: "feral"
  51959. },
  51960. {
  51961. name: "Big",
  51962. height: math.unit(12, "feet"),
  51963. default: true,
  51964. form: "anthro"
  51965. },
  51966. ],
  51967. {
  51968. "feral": {
  51969. name: "Feral",
  51970. default: true
  51971. },
  51972. "anthro": {
  51973. name: "Anthro"
  51974. }
  51975. }
  51976. ))
  51977. characterMakers.push(() => makeCharacter(
  51978. { name: "Alto", species: ["mouse", "chinchilla"], tags: ["anthro"] },
  51979. {
  51980. front: {
  51981. height: math.unit(4.1, "inches"),
  51982. name: "Front",
  51983. image: {
  51984. source: "./media/characters/alto/front.svg",
  51985. extra: 736/627,
  51986. bottom: 90/826
  51987. }
  51988. },
  51989. },
  51990. [
  51991. {
  51992. name: "Normal",
  51993. height: math.unit(4.1, "inches"),
  51994. default: true
  51995. },
  51996. ]
  51997. ))
  51998. characterMakers.push(() => makeCharacter(
  51999. { name: "Ratstrid V", species: ["opossum"], tags: ["anthro"] },
  52000. {
  52001. sitting: {
  52002. height: math.unit(3, "feet"),
  52003. name: "Sitting",
  52004. image: {
  52005. source: "./media/characters/ratstrid-v/sitting.svg",
  52006. extra: 355/310,
  52007. bottom: 136/491
  52008. }
  52009. },
  52010. },
  52011. [
  52012. {
  52013. name: "Normal",
  52014. height: math.unit(3, "feet"),
  52015. default: true
  52016. },
  52017. ]
  52018. ))
  52019. characterMakers.push(() => makeCharacter(
  52020. { name: "Siz", species: ["cinderace"], tags: ["anthro"] },
  52021. {
  52022. back: {
  52023. height: math.unit(6, "feet"),
  52024. weight: math.unit(450, "lb"),
  52025. name: "Back",
  52026. image: {
  52027. source: "./media/characters/siz/back.svg",
  52028. extra: 1449/1274,
  52029. bottom: 13/1462
  52030. }
  52031. },
  52032. },
  52033. [
  52034. {
  52035. name: "Smallest",
  52036. height: math.unit(18 + 3/12, "feet")
  52037. },
  52038. {
  52039. name: "Modest",
  52040. height: math.unit(56 + 8/12, "feet"),
  52041. default: true
  52042. },
  52043. {
  52044. name: "Largest",
  52045. height: math.unit(3590, "feet")
  52046. },
  52047. ]
  52048. ))
  52049. characterMakers.push(() => makeCharacter(
  52050. { name: "Ven", species: ["raven"], tags: ["anthro"] },
  52051. {
  52052. front: {
  52053. height: math.unit(5 + 9/12, "feet"),
  52054. weight: math.unit(150, "lb"),
  52055. name: "Front",
  52056. image: {
  52057. source: "./media/characters/ven/front.svg",
  52058. extra: 1372/1320,
  52059. bottom: 73/1445
  52060. }
  52061. },
  52062. side: {
  52063. height: math.unit(5 + 9/12, "feet"),
  52064. weight: math.unit(1150, "lb"),
  52065. name: "Side",
  52066. image: {
  52067. source: "./media/characters/ven/side.svg",
  52068. extra: 1119/1070,
  52069. bottom: 42/1161
  52070. },
  52071. default: true
  52072. },
  52073. },
  52074. [
  52075. {
  52076. name: "Normal",
  52077. height: math.unit(5 + 9/12, "feet"),
  52078. default: true
  52079. },
  52080. ]
  52081. ))
  52082. characterMakers.push(() => makeCharacter(
  52083. { name: "Maple", species: ["caudin"], tags: ["anthro"] },
  52084. {
  52085. front: {
  52086. height: math.unit(12, "feet"),
  52087. weight: math.unit(1000, "kg"),
  52088. name: "Front",
  52089. image: {
  52090. source: "./media/characters/maple/front.svg",
  52091. extra: 1193/1081,
  52092. bottom: 22/1215
  52093. }
  52094. },
  52095. },
  52096. [
  52097. {
  52098. name: "Compressed",
  52099. height: math.unit(7, "feet")
  52100. },
  52101. {
  52102. name: "Normal",
  52103. height: math.unit(12, "feet"),
  52104. default: true
  52105. },
  52106. ]
  52107. ))
  52108. characterMakers.push(() => makeCharacter(
  52109. { name: "Nora", species: ["blaziken"], tags: ["anthro"] },
  52110. {
  52111. front: {
  52112. height: math.unit(9, "feet"),
  52113. weight: math.unit(1500, "lb"),
  52114. name: "Front",
  52115. image: {
  52116. source: "./media/characters/nora/front.svg",
  52117. extra: 1348/1286,
  52118. bottom: 218/1566
  52119. }
  52120. },
  52121. erect: {
  52122. height: math.unit(9, "feet"),
  52123. weight: math.unit(11500, "lb"),
  52124. name: "Erect",
  52125. image: {
  52126. source: "./media/characters/nora/erect.svg",
  52127. extra: 1488/1433,
  52128. bottom: 133/1621
  52129. }
  52130. },
  52131. },
  52132. [
  52133. {
  52134. name: "Normal",
  52135. height: math.unit(9, "feet"),
  52136. default: true
  52137. },
  52138. ]
  52139. ))
  52140. characterMakers.push(() => makeCharacter(
  52141. { name: "North (Caudin)", species: ["caudin"], tags: ["anthro"] },
  52142. {
  52143. front: {
  52144. height: math.unit(25, "feet"),
  52145. weight: math.unit(27500, "lb"),
  52146. name: "Front",
  52147. image: {
  52148. source: "./media/characters/north-caudin/front.svg",
  52149. extra: 1184/1082,
  52150. bottom: 23/1207
  52151. }
  52152. },
  52153. },
  52154. [
  52155. {
  52156. name: "Compressed",
  52157. height: math.unit(10, "feet")
  52158. },
  52159. {
  52160. name: "Normal",
  52161. height: math.unit(25, "feet"),
  52162. default: true
  52163. },
  52164. ]
  52165. ))
  52166. characterMakers.push(() => makeCharacter(
  52167. { name: "Merrian", species: ["caudin", "avian"], tags: ["anthro"] },
  52168. {
  52169. front: {
  52170. height: math.unit(9, "feet"),
  52171. weight: math.unit(1250, "lb"),
  52172. name: "Front",
  52173. image: {
  52174. source: "./media/characters/merrian/front.svg",
  52175. extra: 2393/2304,
  52176. bottom: 40/2433
  52177. }
  52178. },
  52179. },
  52180. [
  52181. {
  52182. name: "Normal",
  52183. height: math.unit(9, "feet"),
  52184. default: true
  52185. },
  52186. ]
  52187. ))
  52188. characterMakers.push(() => makeCharacter(
  52189. { name: "Hazel", species: ["red-winged-blackbird"], tags: ["anthro"] },
  52190. {
  52191. front: {
  52192. height: math.unit(9, "feet"),
  52193. weight: math.unit(1000, "lb"),
  52194. name: "Front",
  52195. image: {
  52196. source: "./media/characters/hazel/front.svg",
  52197. extra: 2351/2298,
  52198. bottom: 38/2389
  52199. }
  52200. },
  52201. },
  52202. [
  52203. {
  52204. name: "Normal",
  52205. height: math.unit(9, "feet"),
  52206. default: true
  52207. },
  52208. ]
  52209. ))
  52210. characterMakers.push(() => makeCharacter(
  52211. { name: "Emma", species: ["caudin"], tags: ["anthro"] },
  52212. {
  52213. front: {
  52214. height: math.unit(13, "feet"),
  52215. weight: math.unit(3200, "lb"),
  52216. name: "Front",
  52217. image: {
  52218. source: "./media/characters/emma/front.svg",
  52219. extra: 2263/2029,
  52220. bottom: 68/2331
  52221. }
  52222. },
  52223. },
  52224. [
  52225. {
  52226. name: "Normal",
  52227. height: math.unit(13, "feet"),
  52228. default: true
  52229. },
  52230. ]
  52231. ))
  52232. characterMakers.push(() => makeCharacter(
  52233. { name: "Ilumina", species: ["hooded-wheater"], tags: ["anthro"] },
  52234. {
  52235. front: {
  52236. height: math.unit(11 + 9/12, "feet"),
  52237. weight: math.unit(2500, "lb"),
  52238. name: "Front",
  52239. image: {
  52240. source: "./media/characters/ilumina/front.svg",
  52241. extra: 2248/2209,
  52242. bottom: 164/2412
  52243. }
  52244. },
  52245. },
  52246. [
  52247. {
  52248. name: "Normal",
  52249. height: math.unit(11 + 9/12, "feet"),
  52250. default: true
  52251. },
  52252. ]
  52253. ))
  52254. characterMakers.push(() => makeCharacter(
  52255. { name: "Moonshine", species: ["caudin"], tags: ["anthro"] },
  52256. {
  52257. front: {
  52258. height: math.unit(8 + 10/12, "feet"),
  52259. weight: math.unit(1350, "lb"),
  52260. name: "Front",
  52261. image: {
  52262. source: "./media/characters/moonshine/front.svg",
  52263. extra: 2395/2288,
  52264. bottom: 40/2435
  52265. }
  52266. },
  52267. },
  52268. [
  52269. {
  52270. name: "Normal",
  52271. height: math.unit(8 + 10/12, "feet"),
  52272. default: true
  52273. },
  52274. ]
  52275. ))
  52276. characterMakers.push(() => makeCharacter(
  52277. { name: "Aletia", species: ["caudin"], tags: ["anthro"] },
  52278. {
  52279. front: {
  52280. height: math.unit(14, "feet"),
  52281. weight: math.unit(3400, "lb"),
  52282. name: "Front",
  52283. image: {
  52284. source: "./media/characters/aletia/front.svg",
  52285. extra: 1185/1052,
  52286. bottom: 21/1206
  52287. }
  52288. },
  52289. },
  52290. [
  52291. {
  52292. name: "Compressed",
  52293. height: math.unit(8, "feet")
  52294. },
  52295. {
  52296. name: "Normal",
  52297. height: math.unit(14, "feet"),
  52298. default: true
  52299. },
  52300. ]
  52301. ))
  52302. characterMakers.push(() => makeCharacter(
  52303. { name: "Deidra", species: ["caudin"], tags: ["anthro"] },
  52304. {
  52305. front: {
  52306. height: math.unit(17, "feet"),
  52307. weight: math.unit(6500, "lb"),
  52308. name: "Front",
  52309. image: {
  52310. source: "./media/characters/deidra/front.svg",
  52311. extra: 1201/1081,
  52312. bottom: 16/1217
  52313. }
  52314. },
  52315. },
  52316. [
  52317. {
  52318. name: "Compressed",
  52319. height: math.unit(9 + 6/12, "feet")
  52320. },
  52321. {
  52322. name: "Normal",
  52323. height: math.unit(17, "feet"),
  52324. default: true
  52325. },
  52326. ]
  52327. ))
  52328. characterMakers.push(() => makeCharacter(
  52329. { name: "Freki Yrmori", species: ["folf"], tags: ["anthro"] },
  52330. {
  52331. front: {
  52332. height: math.unit(7 + 4/12, "feet"),
  52333. weight: math.unit(280, "lb"),
  52334. name: "Front",
  52335. image: {
  52336. source: "./media/characters/freki-yrmori/front.svg",
  52337. extra: 1286/1182,
  52338. bottom: 29/1315
  52339. }
  52340. },
  52341. maw: {
  52342. height: math.unit(0.9, "feet"),
  52343. name: "Maw",
  52344. image: {
  52345. source: "./media/characters/freki-yrmori/maw.svg"
  52346. }
  52347. },
  52348. },
  52349. [
  52350. {
  52351. name: "Normal",
  52352. height: math.unit(7 + 4/12, "feet"),
  52353. default: true
  52354. },
  52355. {
  52356. name: "Macro",
  52357. height: math.unit(38.5, "meters")
  52358. },
  52359. ]
  52360. ))
  52361. characterMakers.push(() => makeCharacter(
  52362. { name: "Aetherios", species: ["dragon"], tags: ["feral"] },
  52363. {
  52364. side: {
  52365. height: math.unit(47.2, "meters"),
  52366. weight: math.unit(10000, "tons"),
  52367. name: "Side",
  52368. image: {
  52369. source: "./media/characters/aetherios/side.svg",
  52370. extra: 2363/642,
  52371. bottom: 221/2584
  52372. }
  52373. },
  52374. top: {
  52375. height: math.unit(240, "meters"),
  52376. weight: math.unit(10000, "tons"),
  52377. name: "Top",
  52378. image: {
  52379. source: "./media/characters/aetherios/top.svg"
  52380. }
  52381. },
  52382. bottom: {
  52383. height: math.unit(240, "meters"),
  52384. weight: math.unit(10000, "tons"),
  52385. name: "Bottom",
  52386. image: {
  52387. source: "./media/characters/aetherios/bottom.svg"
  52388. }
  52389. },
  52390. head: {
  52391. height: math.unit(38.6, "meters"),
  52392. name: "Head",
  52393. image: {
  52394. source: "./media/characters/aetherios/head.svg",
  52395. extra: 1335/1112,
  52396. bottom: 0/1335
  52397. }
  52398. },
  52399. front: {
  52400. height: math.unit(29, "meters"),
  52401. name: "Front",
  52402. image: {
  52403. source: "./media/characters/aetherios/front.svg",
  52404. extra: 1266/953,
  52405. bottom: 158/1424
  52406. }
  52407. },
  52408. maw: {
  52409. height: math.unit(16.37, "meters"),
  52410. name: "Maw",
  52411. image: {
  52412. source: "./media/characters/aetherios/maw.svg",
  52413. extra: 748/637,
  52414. bottom: 0/748
  52415. },
  52416. extraAttributes: {
  52417. preyCapacity: {
  52418. name: "Capacity",
  52419. power: 3,
  52420. type: "volume",
  52421. base: math.unit(1000, "people")
  52422. },
  52423. tongueSize: {
  52424. name: "Tongue Size",
  52425. power: 2,
  52426. type: "area",
  52427. base: math.unit(21, "m^2")
  52428. }
  52429. }
  52430. },
  52431. forepaw: {
  52432. height: math.unit(18, "meters"),
  52433. name: "Forepaw",
  52434. image: {
  52435. source: "./media/characters/aetherios/forepaw.svg"
  52436. }
  52437. },
  52438. hindpaw: {
  52439. height: math.unit(23, "meters"),
  52440. name: "Hindpaw",
  52441. image: {
  52442. source: "./media/characters/aetherios/hindpaw.svg"
  52443. }
  52444. },
  52445. genitals: {
  52446. height: math.unit(42, "meters"),
  52447. name: "Genitals",
  52448. image: {
  52449. source: "./media/characters/aetherios/genitals.svg"
  52450. }
  52451. },
  52452. },
  52453. [
  52454. {
  52455. name: "Normal",
  52456. height: math.unit(47.2, "meters"),
  52457. default: true
  52458. },
  52459. {
  52460. name: "Macro",
  52461. height: math.unit(160, "meters")
  52462. },
  52463. {
  52464. name: "Mega",
  52465. height: math.unit(1.87, "km")
  52466. },
  52467. {
  52468. name: "Giga",
  52469. height: math.unit(40000, "km")
  52470. },
  52471. {
  52472. name: "Stellar",
  52473. height: math.unit(158000000, "km")
  52474. },
  52475. {
  52476. name: "Cosmic",
  52477. height: math.unit(9.46e12, "km")
  52478. },
  52479. ]
  52480. ))
  52481. characterMakers.push(() => makeCharacter(
  52482. { name: "Mizu (Gieeg)", species: ["gieeg"], tags: ["anthro"] },
  52483. {
  52484. front: {
  52485. height: math.unit(5 + 4/12, "feet"),
  52486. weight: math.unit(80, "lb"),
  52487. name: "Front",
  52488. image: {
  52489. source: "./media/characters/mizu-gieeg/front.svg",
  52490. extra: 850/709,
  52491. bottom: 52/902
  52492. }
  52493. },
  52494. back: {
  52495. height: math.unit(5 + 4/12, "feet"),
  52496. weight: math.unit(80, "lb"),
  52497. name: "Back",
  52498. image: {
  52499. source: "./media/characters/mizu-gieeg/back.svg",
  52500. extra: 882/745,
  52501. bottom: 25/907
  52502. }
  52503. },
  52504. },
  52505. [
  52506. {
  52507. name: "Normal",
  52508. height: math.unit(5 + 4/12, "feet"),
  52509. default: true
  52510. },
  52511. ]
  52512. ))
  52513. characterMakers.push(() => makeCharacter(
  52514. { name: "Roselle St. Papier", species: ["ringtail"], tags: ["anthro"] },
  52515. {
  52516. front: {
  52517. height: math.unit(6, "feet"),
  52518. name: "Front",
  52519. image: {
  52520. source: "./media/characters/roselle-st-papier/front.svg",
  52521. extra: 1430/1280,
  52522. bottom: 37/1467
  52523. }
  52524. },
  52525. back: {
  52526. height: math.unit(6, "feet"),
  52527. name: "Back",
  52528. image: {
  52529. source: "./media/characters/roselle-st-papier/back.svg",
  52530. extra: 1491/1296,
  52531. bottom: 23/1514
  52532. }
  52533. },
  52534. ear: {
  52535. height: math.unit(1.26, "feet"),
  52536. name: "Ear",
  52537. image: {
  52538. source: "./media/characters/roselle-st-papier/ear.svg"
  52539. }
  52540. },
  52541. },
  52542. [
  52543. {
  52544. name: "Normal",
  52545. height: math.unit(150, "feet"),
  52546. default: true
  52547. },
  52548. ]
  52549. ))
  52550. characterMakers.push(() => makeCharacter(
  52551. { name: "Valargent", species: ["fox"], tags: ["anthro"] },
  52552. {
  52553. front: {
  52554. height: math.unit(1, "inches"),
  52555. name: "Front",
  52556. image: {
  52557. source: "./media/characters/valargent/front.svg",
  52558. extra: 1825/1694,
  52559. bottom: 62/1887
  52560. }
  52561. },
  52562. back: {
  52563. height: math.unit(1, "inches"),
  52564. name: "Back",
  52565. image: {
  52566. source: "./media/characters/valargent/back.svg",
  52567. extra: 1775/1682,
  52568. bottom: 88/1863
  52569. }
  52570. },
  52571. },
  52572. [
  52573. {
  52574. name: "Micro",
  52575. height: math.unit(1, "inch"),
  52576. default: true
  52577. },
  52578. ]
  52579. ))
  52580. characterMakers.push(() => makeCharacter(
  52581. { name: "Zarina", species: ["hisuian-zoroark"], tags: ["anthro"] },
  52582. {
  52583. front: {
  52584. height: math.unit(3.4, "meters"),
  52585. name: "Front",
  52586. image: {
  52587. source: "./media/characters/zarina/front.svg",
  52588. extra: 1733/1425,
  52589. bottom: 93/1826
  52590. }
  52591. },
  52592. squatting: {
  52593. height: math.unit(2.14, "meters"),
  52594. name: "Squatting",
  52595. image: {
  52596. source: "./media/characters/zarina/squatting.svg",
  52597. extra: 1073/788,
  52598. bottom: 63/1136
  52599. }
  52600. },
  52601. back: {
  52602. height: math.unit(2.14, "meters"),
  52603. name: "Back",
  52604. image: {
  52605. source: "./media/characters/zarina/back.svg",
  52606. extra: 1128/885,
  52607. bottom: 0/1128
  52608. }
  52609. },
  52610. },
  52611. [
  52612. {
  52613. name: "Normal",
  52614. height: math.unit(3.4, "meters"),
  52615. default: true
  52616. },
  52617. {
  52618. name: "Big",
  52619. height: math.unit(5, "meters")
  52620. },
  52621. {
  52622. name: "Macro",
  52623. height: math.unit(110, "meters")
  52624. },
  52625. ]
  52626. ))
  52627. characterMakers.push(() => makeCharacter(
  52628. { name: "VentusAstroFox", species: ["fox"], tags: ["anthro"] },
  52629. {
  52630. front: {
  52631. height: math.unit(7, "feet"),
  52632. name: "Front",
  52633. image: {
  52634. source: "./media/characters/ventus-astro-fox/front.svg",
  52635. extra: 1792/1623,
  52636. bottom: 28/1820
  52637. }
  52638. },
  52639. back: {
  52640. height: math.unit(7, "feet"),
  52641. name: "Back",
  52642. image: {
  52643. source: "./media/characters/ventus-astro-fox/back.svg",
  52644. extra: 1789/1620,
  52645. bottom: 31/1820
  52646. }
  52647. },
  52648. outfit: {
  52649. height: math.unit(7, "feet"),
  52650. name: "Outfit",
  52651. image: {
  52652. source: "./media/characters/ventus-astro-fox/outfit.svg",
  52653. extra: 1054/925,
  52654. bottom: 15/1069
  52655. }
  52656. },
  52657. head: {
  52658. height: math.unit(1.12, "feet"),
  52659. name: "Head",
  52660. image: {
  52661. source: "./media/characters/ventus-astro-fox/head.svg",
  52662. extra: 866/504,
  52663. bottom: 0/866
  52664. }
  52665. },
  52666. hand: {
  52667. height: math.unit(1, "feet"),
  52668. name: "Hand",
  52669. image: {
  52670. source: "./media/characters/ventus-astro-fox/hand.svg"
  52671. }
  52672. },
  52673. paw: {
  52674. height: math.unit(1.5, "feet"),
  52675. name: "Paw",
  52676. image: {
  52677. source: "./media/characters/ventus-astro-fox/paw.svg"
  52678. }
  52679. },
  52680. },
  52681. [
  52682. {
  52683. name: "Normal",
  52684. height: math.unit(7, "feet"),
  52685. default: true
  52686. },
  52687. {
  52688. name: "Macro",
  52689. height: math.unit(200, "feet")
  52690. },
  52691. {
  52692. name: "Cosmic",
  52693. height: math.unit(3, "universes")
  52694. },
  52695. ]
  52696. ))
  52697. characterMakers.push(() => makeCharacter(
  52698. { name: "CORE-T", species: ["cybeast"], tags: ["anthro"] },
  52699. {
  52700. front: {
  52701. height: math.unit(3, "meters"),
  52702. weight: math.unit(7000, "lb"),
  52703. name: "Front",
  52704. image: {
  52705. source: "./media/characters/core-t/front.svg",
  52706. extra: 5729/4941,
  52707. bottom: 1129/6858
  52708. }
  52709. },
  52710. },
  52711. [
  52712. {
  52713. name: "Big",
  52714. height: math.unit(3, "meters"),
  52715. default: true
  52716. },
  52717. ]
  52718. ))
  52719. characterMakers.push(() => makeCharacter(
  52720. { name: "Cadbunny", species: ["cinderace"], tags: ["anthro"] },
  52721. {
  52722. normal: {
  52723. height: math.unit(6 + 6/12, "feet"),
  52724. weight: math.unit(275, "lb"),
  52725. name: "Front",
  52726. image: {
  52727. source: "./media/characters/cadbunny/normal.svg",
  52728. extra: 1129/947,
  52729. bottom: 93/1222
  52730. },
  52731. default: true,
  52732. form: "normal"
  52733. },
  52734. gigantamax: {
  52735. height: math.unit(26, "feet"),
  52736. weight: math.unit(16000, "lb"),
  52737. name: "Front",
  52738. image: {
  52739. source: "./media/characters/cadbunny/gigantamax.svg",
  52740. extra: 1133/944,
  52741. bottom: 90/1223
  52742. },
  52743. default: true,
  52744. form: "gigantamax"
  52745. },
  52746. },
  52747. [
  52748. {
  52749. name: "Normal",
  52750. height: math.unit(6 + 6/12, "feet"),
  52751. default: true,
  52752. form: "normal"
  52753. },
  52754. {
  52755. name: "Small",
  52756. height: math.unit(26, "feet"),
  52757. default: true,
  52758. form: "gigantamax"
  52759. },
  52760. {
  52761. name: "Large",
  52762. height: math.unit(78, "feet"),
  52763. form: "gigantamax"
  52764. },
  52765. ],
  52766. {
  52767. "normal": {
  52768. name: "Normal",
  52769. default: true
  52770. },
  52771. "gigantamax": {
  52772. name: "Gigantamax"
  52773. }
  52774. }
  52775. ))
  52776. characterMakers.push(() => makeCharacter(
  52777. { name: "Blitz Dunkelheit", species: ["wolf"], tags: ["anthro", "feral"] },
  52778. {
  52779. anthroFront: {
  52780. height: math.unit(8, "feet"),
  52781. weight: math.unit(300, "lb"),
  52782. name: "Front",
  52783. image: {
  52784. source: "./media/characters/blitz-dunkelheit/anthro-front.svg",
  52785. extra: 1272/1176,
  52786. bottom: 53/1325
  52787. },
  52788. form: "anthro",
  52789. default: true
  52790. },
  52791. feralSide: {
  52792. height: math.unit(4, "feet"),
  52793. weight: math.unit(250, "lb"),
  52794. name: "Side",
  52795. image: {
  52796. source: "./media/characters/blitz-dunkelheit/feral-side.svg",
  52797. extra: 731/621,
  52798. bottom: 0/731
  52799. },
  52800. form: "feral",
  52801. default: true
  52802. },
  52803. },
  52804. [
  52805. {
  52806. name: "Regular",
  52807. height: math.unit(8, "feet"),
  52808. form: "anthro"
  52809. },
  52810. {
  52811. name: "Macro",
  52812. height: math.unit(250, "feet"),
  52813. form: "anthro",
  52814. default: true
  52815. },
  52816. {
  52817. name: "Regular",
  52818. height: math.unit(4, "feet"),
  52819. form: "feral"
  52820. },
  52821. {
  52822. name: "Macro",
  52823. height: math.unit(125, "feet"),
  52824. form: "feral",
  52825. default: true
  52826. },
  52827. ],
  52828. {
  52829. "anthro": {
  52830. name: "Anthro",
  52831. default: true
  52832. },
  52833. "feral": {
  52834. name: "Feral",
  52835. },
  52836. }
  52837. ))
  52838. characterMakers.push(() => makeCharacter(
  52839. { name: "Maple (Javira Dragon)", species: ["javira-dragon"], tags: ["feral"] },
  52840. {
  52841. front: {
  52842. height: math.unit(11 + 10/12, "feet"),
  52843. weight: math.unit(1587, "kg"),
  52844. name: "Front",
  52845. image: {
  52846. source: "./media/characters/maple-javira-dragon/front.svg",
  52847. extra: 1136/744,
  52848. bottom: 73/1209
  52849. }
  52850. },
  52851. side: {
  52852. height: math.unit(11 + 10/12, "feet"),
  52853. weight: math.unit(1587, "kg"),
  52854. name: "Side",
  52855. image: {
  52856. source: "./media/characters/maple-javira-dragon/side.svg",
  52857. extra: 712/505,
  52858. bottom: 17/729
  52859. }
  52860. },
  52861. head: {
  52862. height: math.unit(8.05, "feet"),
  52863. name: "Head",
  52864. image: {
  52865. source: "./media/characters/maple-javira-dragon/head.svg",
  52866. extra: 1420/1344,
  52867. bottom: 0/1420
  52868. }
  52869. },
  52870. },
  52871. [
  52872. {
  52873. name: "Normal",
  52874. height: math.unit(11 + 10/12, "feet"),
  52875. default: true
  52876. },
  52877. ]
  52878. ))
  52879. characterMakers.push(() => makeCharacter(
  52880. { name: "Sonia Wyverntail", species: ["kobold"], tags: ["anthro"] },
  52881. {
  52882. front: {
  52883. height: math.unit(117, "cm"),
  52884. weight: math.unit(50, "kg"),
  52885. name: "Front",
  52886. image: {
  52887. source: "./media/characters/sonia-wyverntail/front.svg",
  52888. extra: 708/592,
  52889. bottom: 25/733
  52890. }
  52891. },
  52892. },
  52893. [
  52894. {
  52895. name: "Normal",
  52896. height: math.unit(117, "cm"),
  52897. default: true
  52898. },
  52899. ]
  52900. ))
  52901. characterMakers.push(() => makeCharacter(
  52902. { name: "Micah", species: ["moth"], tags: ["anthro"] },
  52903. {
  52904. front: {
  52905. height: math.unit(6 + 5/12, "feet"),
  52906. name: "Front",
  52907. image: {
  52908. source: "./media/characters/micah/front.svg",
  52909. extra: 1758/1546,
  52910. bottom: 214/1972
  52911. }
  52912. },
  52913. },
  52914. [
  52915. {
  52916. name: "Normal",
  52917. height: math.unit(6 + 5/12, "feet"),
  52918. default: true
  52919. },
  52920. ]
  52921. ))
  52922. characterMakers.push(() => makeCharacter(
  52923. { name: "Zarya", species: ["skunk"], tags: ["anthro"] },
  52924. {
  52925. front: {
  52926. height: math.unit(1.75, "meters"),
  52927. weight: math.unit(100, "kg"),
  52928. name: "Front",
  52929. image: {
  52930. source: "./media/characters/zarya/front.svg",
  52931. extra: 741/735,
  52932. bottom: 44/785
  52933. },
  52934. extraAttributes: {
  52935. "tailLength": {
  52936. name: "Tail Length",
  52937. power: 1,
  52938. type: "length",
  52939. base: math.unit(180, "cm")
  52940. },
  52941. "pawLength": {
  52942. name: "Paw Length",
  52943. power: 1,
  52944. type: "length",
  52945. base: math.unit(31, "cm")
  52946. },
  52947. }
  52948. },
  52949. side: {
  52950. height: math.unit(1.75, "meters"),
  52951. weight: math.unit(100, "kg"),
  52952. name: "Side",
  52953. image: {
  52954. source: "./media/characters/zarya/side.svg",
  52955. extra: 776/770,
  52956. bottom: 17/793
  52957. },
  52958. extraAttributes: {
  52959. "tailLength": {
  52960. name: "Tail Length",
  52961. power: 1,
  52962. type: "length",
  52963. base: math.unit(180, "cm")
  52964. },
  52965. "pawLength": {
  52966. name: "Paw Length",
  52967. power: 1,
  52968. type: "length",
  52969. base: math.unit(31, "cm")
  52970. },
  52971. }
  52972. },
  52973. back: {
  52974. height: math.unit(1.75, "meters"),
  52975. weight: math.unit(100, "kg"),
  52976. name: "Back",
  52977. image: {
  52978. source: "./media/characters/zarya/back.svg",
  52979. extra: 741/735,
  52980. bottom: 44/785
  52981. },
  52982. extraAttributes: {
  52983. "tailLength": {
  52984. name: "Tail Length",
  52985. power: 1,
  52986. type: "length",
  52987. base: math.unit(180, "cm")
  52988. },
  52989. "pawLength": {
  52990. name: "Paw Length",
  52991. power: 1,
  52992. type: "length",
  52993. base: math.unit(31, "cm")
  52994. },
  52995. }
  52996. },
  52997. frontNoTail: {
  52998. height: math.unit(1.75, "meters"),
  52999. weight: math.unit(100, "kg"),
  53000. name: "Front (No Tail)",
  53001. image: {
  53002. source: "./media/characters/zarya/front-no-tail.svg",
  53003. extra: 741/735,
  53004. bottom: 44/785
  53005. },
  53006. extraAttributes: {
  53007. "tailLength": {
  53008. name: "Tail Length",
  53009. power: 1,
  53010. type: "length",
  53011. base: math.unit(180, "cm")
  53012. },
  53013. "pawLength": {
  53014. name: "Paw Length",
  53015. power: 1,
  53016. type: "length",
  53017. base: math.unit(31, "cm")
  53018. },
  53019. }
  53020. },
  53021. dressed: {
  53022. height: math.unit(1.75, "meters"),
  53023. weight: math.unit(100, "kg"),
  53024. name: "Dressed",
  53025. image: {
  53026. source: "./media/characters/zarya/dressed.svg",
  53027. extra: 683/672,
  53028. bottom: 79/762
  53029. },
  53030. extraAttributes: {
  53031. "tailLength": {
  53032. name: "Tail Length",
  53033. power: 1,
  53034. type: "length",
  53035. base: math.unit(180, "cm")
  53036. },
  53037. "pawLength": {
  53038. name: "Paw Length",
  53039. power: 1,
  53040. type: "length",
  53041. base: math.unit(31, "cm")
  53042. },
  53043. }
  53044. },
  53045. },
  53046. [
  53047. {
  53048. name: "Micro",
  53049. height: math.unit(5, "cm")
  53050. },
  53051. {
  53052. name: "Normal",
  53053. height: math.unit(1.75, "meters"),
  53054. default: true
  53055. },
  53056. {
  53057. name: "Macro",
  53058. height: math.unit(122, "meters")
  53059. },
  53060. ]
  53061. ))
  53062. characterMakers.push(() => makeCharacter(
  53063. { name: "Sven Hatisson", species: ["wolf"], tags: ["anthro"] },
  53064. {
  53065. front: {
  53066. height: math.unit(7.5, "feet"),
  53067. name: "Front",
  53068. image: {
  53069. source: "./media/characters/sven-hatisson/front.svg",
  53070. extra: 917/857,
  53071. bottom: 42/959
  53072. }
  53073. },
  53074. back: {
  53075. height: math.unit(7.5, "feet"),
  53076. name: "Back",
  53077. image: {
  53078. source: "./media/characters/sven-hatisson/back.svg",
  53079. extra: 903/856,
  53080. bottom: 15/918
  53081. }
  53082. },
  53083. },
  53084. [
  53085. {
  53086. name: "Base Height",
  53087. height: math.unit(7.5, "feet")
  53088. },
  53089. {
  53090. name: "Usual Height",
  53091. height: math.unit(13.5, "feet"),
  53092. default: true
  53093. },
  53094. {
  53095. name: "Smaller Macro",
  53096. height: math.unit(85, "feet")
  53097. },
  53098. {
  53099. name: "Moderate Macro",
  53100. height: math.unit(320, "feet")
  53101. },
  53102. {
  53103. name: "Large Macro",
  53104. height: math.unit(1000, "feet")
  53105. },
  53106. {
  53107. name: "Largest Size",
  53108. height: math.unit(2, "miles")
  53109. },
  53110. ]
  53111. ))
  53112. characterMakers.push(() => makeCharacter(
  53113. { name: "Terra", species: ["dragon", "otter"], tags: ["feral"] },
  53114. {
  53115. side: {
  53116. height: math.unit(1.8, "meters"),
  53117. weight: math.unit(275, "kg"),
  53118. name: "Side",
  53119. image: {
  53120. source: "./media/characters/terra/side.svg",
  53121. extra: 1273/1147,
  53122. bottom: 0/1273
  53123. }
  53124. },
  53125. },
  53126. [
  53127. {
  53128. name: "Normal",
  53129. height: math.unit(16.2, "meters"),
  53130. default: true
  53131. },
  53132. ]
  53133. ))
  53134. characterMakers.push(() => makeCharacter(
  53135. { name: "Rae", species: ["borzoi", "werewolf"], tags: ["anthro"] },
  53136. {
  53137. borzoiFront: {
  53138. height: math.unit(6 + 9/12, "feet"),
  53139. name: "Front",
  53140. image: {
  53141. source: "./media/characters/rae/borzoi-front.svg",
  53142. extra: 1161/1098,
  53143. bottom: 31/1192
  53144. },
  53145. form: "borzoi",
  53146. default: true
  53147. },
  53148. werewolfFront: {
  53149. height: math.unit(8 + 7/12, "feet"),
  53150. name: "Front",
  53151. image: {
  53152. source: "./media/characters/rae/werewolf-front.svg",
  53153. extra: 1411/1334,
  53154. bottom: 127/1538
  53155. },
  53156. form: "werewolf",
  53157. default: true
  53158. },
  53159. },
  53160. [
  53161. {
  53162. name: "Normal",
  53163. height: math.unit(6 + 9/12, "feet"),
  53164. default: true,
  53165. form: "borzoi"
  53166. },
  53167. {
  53168. name: "Normal",
  53169. height: math.unit(8 + 7/12, "feet"),
  53170. default: true,
  53171. form: "werewolf"
  53172. },
  53173. ],
  53174. {
  53175. "borzoi": {
  53176. name: "Borzoi",
  53177. default: true
  53178. },
  53179. "werewolf": {
  53180. name: "Werewolf",
  53181. },
  53182. }
  53183. ))
  53184. characterMakers.push(() => makeCharacter(
  53185. { name: "Kit", species: ["kitsune"], tags: ["anthro"] },
  53186. {
  53187. front: {
  53188. height: math.unit(8 + 7/12, "feet"),
  53189. weight: math.unit(482, "lb"),
  53190. name: "Front",
  53191. image: {
  53192. source: "./media/characters/kit/front.svg",
  53193. extra: 1247/1103,
  53194. bottom: 41/1288
  53195. }
  53196. },
  53197. back: {
  53198. height: math.unit(8 + 7/12, "feet"),
  53199. weight: math.unit(482, "lb"),
  53200. name: "Back",
  53201. image: {
  53202. source: "./media/characters/kit/back.svg",
  53203. extra: 1252/1123,
  53204. bottom: 21/1273
  53205. }
  53206. },
  53207. paw: {
  53208. height: math.unit(1.46, "feet"),
  53209. name: "Paw",
  53210. image: {
  53211. source: "./media/characters/kit/paw.svg"
  53212. }
  53213. },
  53214. },
  53215. [
  53216. {
  53217. name: "Normal",
  53218. height: math.unit(2.61, "meters"),
  53219. default: true
  53220. },
  53221. {
  53222. name: "\"Tall\"",
  53223. height: math.unit(8.21, "meters")
  53224. },
  53225. {
  53226. name: "Tall",
  53227. height: math.unit(19.6, "meters")
  53228. },
  53229. {
  53230. name: "Very Tall",
  53231. height: math.unit(57.91, "meters")
  53232. },
  53233. {
  53234. name: "Semi-Macro",
  53235. height: math.unit(138.64, "meters")
  53236. },
  53237. {
  53238. name: "Macro",
  53239. height: math.unit(831.99, "meters")
  53240. },
  53241. {
  53242. name: "EX-Macro",
  53243. height: math.unit(96451121, "meters")
  53244. },
  53245. {
  53246. name: "S1-Omnipotent",
  53247. height: math.unit(4.42074e+9, "meters")
  53248. },
  53249. {
  53250. name: "S2-Omnipotent",
  53251. height: math.unit(9.42074e+17, "meters")
  53252. },
  53253. {
  53254. name: "Omnipotent",
  53255. height: math.unit(4.23112e+24, "meters")
  53256. },
  53257. {
  53258. name: "Hypergod",
  53259. height: math.unit(5.05176e+27, "meters")
  53260. },
  53261. {
  53262. name: "Hypergod-EX",
  53263. height: math.unit(9.45532e+49, "meters")
  53264. },
  53265. {
  53266. name: "Hypergod-SP",
  53267. height: math.unit(9.45532e+195, "meters")
  53268. },
  53269. ]
  53270. ))
  53271. characterMakers.push(() => makeCharacter(
  53272. { name: "Celeste", species: ["raptor", "alien"], tags: ["feral"] },
  53273. {
  53274. side: {
  53275. height: math.unit(0.6, "meters"),
  53276. weight: math.unit(24, "kg"),
  53277. name: "Side",
  53278. image: {
  53279. source: "./media/characters/celeste/side.svg",
  53280. extra: 810/517,
  53281. bottom: 53/863
  53282. }
  53283. },
  53284. },
  53285. [
  53286. {
  53287. name: "Velociraptor",
  53288. height: math.unit(0.6, "meters"),
  53289. default: true
  53290. },
  53291. {
  53292. name: "Utahraptor",
  53293. height: math.unit(1.8, "meters")
  53294. },
  53295. {
  53296. name: "Gallimimus",
  53297. height: math.unit(4.0, "meters")
  53298. },
  53299. {
  53300. name: "Large",
  53301. height: math.unit(20, "meters")
  53302. },
  53303. {
  53304. name: "Planetary",
  53305. height: math.unit(50, "megameters")
  53306. },
  53307. {
  53308. name: "Stellar",
  53309. height: math.unit(1.5, "gigameters")
  53310. },
  53311. {
  53312. name: "Galactic",
  53313. height: math.unit(100, "exameters")
  53314. },
  53315. ]
  53316. ))
  53317. characterMakers.push(() => makeCharacter(
  53318. { name: "Glacia", species: ["koopew"], tags: ["anthro"] },
  53319. {
  53320. front: {
  53321. height: math.unit(6, "feet"),
  53322. weight: math.unit(210, "lb"),
  53323. name: "Front",
  53324. image: {
  53325. source: "./media/characters/glacia/front.svg",
  53326. extra: 958/901,
  53327. bottom: 45/1003
  53328. }
  53329. },
  53330. },
  53331. [
  53332. {
  53333. name: "Macro",
  53334. height: math.unit(1000, "meters"),
  53335. default: true
  53336. },
  53337. ]
  53338. ))
  53339. characterMakers.push(() => makeCharacter(
  53340. { name: "Giri", species: ["giraffe"], tags: ["anthro"] },
  53341. {
  53342. front: {
  53343. height: math.unit(4, "meters"),
  53344. name: "Front",
  53345. image: {
  53346. source: "./media/characters/giri/front.svg",
  53347. extra: 966/894,
  53348. bottom: 21/987
  53349. }
  53350. },
  53351. },
  53352. [
  53353. {
  53354. name: "Normal",
  53355. height: math.unit(4, "meters"),
  53356. default: true
  53357. },
  53358. ]
  53359. ))
  53360. characterMakers.push(() => makeCharacter(
  53361. { name: "Tin", species: ["nevrean"], tags: ["anthro"] },
  53362. {
  53363. back: {
  53364. height: math.unit(4, "feet"),
  53365. weight: math.unit(37, "lb"),
  53366. name: "Back",
  53367. image: {
  53368. source: "./media/characters/tin/back.svg",
  53369. extra: 845/780,
  53370. bottom: 28/873
  53371. }
  53372. },
  53373. },
  53374. [
  53375. {
  53376. name: "Normal",
  53377. height: math.unit(4, "feet"),
  53378. default: true
  53379. },
  53380. ]
  53381. ))
  53382. characterMakers.push(() => makeCharacter(
  53383. { name: "Cadenza Vivace", species: ["titanoboa"], tags: ["feral"] },
  53384. {
  53385. front: {
  53386. height: math.unit(25, "feet"),
  53387. name: "Front",
  53388. image: {
  53389. source: "./media/characters/cadenza-vivace/front.svg",
  53390. extra: 1842/1578,
  53391. bottom: 30/1872
  53392. }
  53393. },
  53394. },
  53395. [
  53396. {
  53397. name: "Macro",
  53398. height: math.unit(25, "feet"),
  53399. default: true
  53400. },
  53401. ]
  53402. ))
  53403. characterMakers.push(() => makeCharacter(
  53404. { name: "Zain", species: ["kangaroo"], tags: ["anthro"] },
  53405. {
  53406. front: {
  53407. height: math.unit(10, "feet"),
  53408. weight: math.unit(625, "kg"),
  53409. name: "Front",
  53410. image: {
  53411. source: "./media/characters/zain/front.svg",
  53412. extra: 1682/1498,
  53413. bottom: 223/1905
  53414. }
  53415. },
  53416. back: {
  53417. height: math.unit(10, "feet"),
  53418. weight: math.unit(625, "kg"),
  53419. name: "Back",
  53420. image: {
  53421. source: "./media/characters/zain/back.svg",
  53422. extra: 1814/1657,
  53423. bottom: 152/1966
  53424. }
  53425. },
  53426. head: {
  53427. height: math.unit(10, "feet"),
  53428. weight: math.unit(625, "kg"),
  53429. name: "Head",
  53430. image: {
  53431. source: "./media/characters/zain/head.svg",
  53432. extra: 1059/762,
  53433. bottom: 0/1059
  53434. }
  53435. },
  53436. },
  53437. [
  53438. {
  53439. name: "Normal",
  53440. height: math.unit(10, "feet"),
  53441. default: true
  53442. },
  53443. ]
  53444. ))
  53445. characterMakers.push(() => makeCharacter(
  53446. { name: "Ruchex", species: ["raichu"], tags: ["anthro"] },
  53447. {
  53448. front: {
  53449. height: math.unit(6 + 5/12, "feet"),
  53450. weight: math.unit(750, "lb"),
  53451. name: "Front",
  53452. image: {
  53453. source: "./media/characters/ruchex/front.svg",
  53454. extra: 877/820,
  53455. bottom: 17/894
  53456. },
  53457. extraAttributes: {
  53458. "width": {
  53459. name: "Width",
  53460. power: 1,
  53461. type: "length",
  53462. base: math.unit(4.757, "feet")
  53463. },
  53464. }
  53465. },
  53466. },
  53467. [
  53468. {
  53469. name: "Normal",
  53470. height: math.unit(6 + 5/12, "feet"),
  53471. default: true
  53472. },
  53473. ]
  53474. ))
  53475. characterMakers.push(() => makeCharacter(
  53476. { name: "Buster", species: ["sergal", "goo"], tags: ["anthro"] },
  53477. {
  53478. dressedFront: {
  53479. height: math.unit(191, "cm"),
  53480. weight: math.unit(80, "kg"),
  53481. name: "Front",
  53482. image: {
  53483. source: "./media/characters/buster/dressed-front.svg",
  53484. extra: 1022/973,
  53485. bottom: 69/1091
  53486. }
  53487. },
  53488. dressedBack: {
  53489. height: math.unit(191, "cm"),
  53490. weight: math.unit(80, "kg"),
  53491. name: "Back",
  53492. image: {
  53493. source: "./media/characters/buster/dressed-back.svg",
  53494. extra: 1018/970,
  53495. bottom: 55/1073
  53496. }
  53497. },
  53498. nudeFront: {
  53499. height: math.unit(191, "cm"),
  53500. weight: math.unit(80, "kg"),
  53501. name: "Front (Nude)",
  53502. image: {
  53503. source: "./media/characters/buster/nude-front.svg",
  53504. extra: 1022/973,
  53505. bottom: 69/1091
  53506. }
  53507. },
  53508. nudeBack: {
  53509. height: math.unit(191, "cm"),
  53510. weight: math.unit(80, "kg"),
  53511. name: "Back (Nude)",
  53512. image: {
  53513. source: "./media/characters/buster/nude-back.svg",
  53514. extra: 1018/970,
  53515. bottom: 55/1073
  53516. }
  53517. },
  53518. dick: {
  53519. height: math.unit(2.59, "feet"),
  53520. name: "Dick",
  53521. image: {
  53522. source: "./media/characters/buster/dick.svg"
  53523. }
  53524. },
  53525. ass: {
  53526. height: math.unit(1.2, "feet"),
  53527. name: "Ass",
  53528. image: {
  53529. source: "./media/characters/buster/ass.svg"
  53530. }
  53531. },
  53532. },
  53533. [
  53534. {
  53535. name: "Normal",
  53536. height: math.unit(191, "cm"),
  53537. default: true
  53538. },
  53539. ]
  53540. ))
  53541. characterMakers.push(() => makeCharacter(
  53542. { name: "Sonya", species: ["suicune"], tags: ["feral"] },
  53543. {
  53544. side: {
  53545. height: math.unit(8.1, "feet"),
  53546. weight: math.unit(3500, "lb"),
  53547. name: "Side",
  53548. image: {
  53549. source: "./media/characters/sonya/side.svg",
  53550. extra: 1730/1317,
  53551. bottom: 86/1816
  53552. }
  53553. },
  53554. },
  53555. [
  53556. {
  53557. name: "Normal",
  53558. height: math.unit(8.1, "feet"),
  53559. default: true
  53560. },
  53561. ]
  53562. ))
  53563. characterMakers.push(() => makeCharacter(
  53564. { name: "Cadence Andrysiak", species: ["civet"], tags: ["anthro"] },
  53565. {
  53566. front: {
  53567. height: math.unit(6, "feet"),
  53568. weight: math.unit(150, "lb"),
  53569. name: "Front",
  53570. image: {
  53571. source: "./media/characters/cadence-andrysiak/front.svg",
  53572. extra: 1164/1121,
  53573. bottom: 60/1224
  53574. }
  53575. },
  53576. back: {
  53577. height: math.unit(6, "feet"),
  53578. weight: math.unit(150, "lb"),
  53579. name: "Back",
  53580. image: {
  53581. source: "./media/characters/cadence-andrysiak/back.svg",
  53582. extra: 1200/1165,
  53583. bottom: 9/1209
  53584. }
  53585. },
  53586. dressed: {
  53587. height: math.unit(6, "feet"),
  53588. weight: math.unit(150, "lb"),
  53589. name: "Dressed",
  53590. image: {
  53591. source: "./media/characters/cadence-andrysiak/dressed.svg",
  53592. extra: 1164/1121,
  53593. bottom: 60/1224
  53594. }
  53595. },
  53596. },
  53597. [
  53598. {
  53599. name: "Micro",
  53600. height: math.unit(1, "mm")
  53601. },
  53602. {
  53603. name: "Normal",
  53604. height: math.unit(6, "feet"),
  53605. default: true
  53606. },
  53607. ]
  53608. ))
  53609. characterMakers.push(() => makeCharacter(
  53610. { name: "PENNY", species: ["lynx" ,"computer-virus"], tags: ["anthro"] },
  53611. {
  53612. front: {
  53613. height: math.unit(60, "inches"),
  53614. weight: math.unit(16, "lb"),
  53615. preyCapacity: math.unit(80, "liters"),
  53616. name: "Front",
  53617. image: {
  53618. source: "./media/characters/penny-lynx/front.svg",
  53619. extra: 1959/1769,
  53620. bottom: 49/2008
  53621. }
  53622. },
  53623. },
  53624. [
  53625. {
  53626. name: "Nokia",
  53627. height: math.unit(2, "inches")
  53628. },
  53629. {
  53630. name: "Desktop",
  53631. height: math.unit(24, "inches")
  53632. },
  53633. {
  53634. name: "TV",
  53635. height: math.unit(60, "inches")
  53636. },
  53637. {
  53638. name: "Jumbotron",
  53639. height: math.unit(12, "feet")
  53640. },
  53641. {
  53642. name: "Billboard",
  53643. height: math.unit(48, "feet"),
  53644. default: true
  53645. },
  53646. {
  53647. name: "IMAX",
  53648. height: math.unit(96, "feet")
  53649. },
  53650. {
  53651. name: "SINGULARITY",
  53652. height: math.unit(864938, "miles")
  53653. },
  53654. ]
  53655. ))
  53656. characterMakers.push(() => makeCharacter(
  53657. { name: "Sukebe", species: ["panda"], tags: ["anthro"] },
  53658. {
  53659. front: {
  53660. height: math.unit(5 + 4/12, "feet"),
  53661. weight: math.unit(230, "lb"),
  53662. name: "Front",
  53663. image: {
  53664. source: "./media/characters/sukebe/front.svg",
  53665. extra: 2130/2038,
  53666. bottom: 90/2220
  53667. }
  53668. },
  53669. back: {
  53670. height: math.unit(3.48, "feet"),
  53671. weight: math.unit(230, "lb"),
  53672. name: "Back",
  53673. image: {
  53674. source: "./media/characters/sukebe/back.svg",
  53675. extra: 1670/1604,
  53676. bottom: 0/1670
  53677. }
  53678. },
  53679. },
  53680. [
  53681. {
  53682. name: "Normal",
  53683. height: math.unit(5 + 4/12, "feet"),
  53684. default: true
  53685. },
  53686. ]
  53687. ))
  53688. characterMakers.push(() => makeCharacter(
  53689. { name: "Nylla", species: ["dragon"], tags: ["anthro"] },
  53690. {
  53691. front: {
  53692. height: math.unit(6, "feet"),
  53693. name: "Front",
  53694. image: {
  53695. source: "./media/characters/nylla/front.svg",
  53696. extra: 1868/1699,
  53697. bottom: 97/1965
  53698. }
  53699. },
  53700. back: {
  53701. height: math.unit(6, "feet"),
  53702. name: "Back",
  53703. image: {
  53704. source: "./media/characters/nylla/back.svg",
  53705. extra: 1889/1712,
  53706. bottom: 93/1982
  53707. }
  53708. },
  53709. frontNsfw: {
  53710. height: math.unit(6, "feet"),
  53711. name: "Front (NSFW)",
  53712. image: {
  53713. source: "./media/characters/nylla/front-nsfw.svg",
  53714. extra: 1868/1699,
  53715. bottom: 97/1965
  53716. },
  53717. extraAttributes: {
  53718. "dickLength": {
  53719. name: "Dick Length",
  53720. power: 1,
  53721. type: "length",
  53722. base: math.unit(1.4, "feet")
  53723. },
  53724. "cumVolume": {
  53725. name: "Cum Volume",
  53726. power: 3,
  53727. type: "volume",
  53728. base: math.unit(100, "mL")
  53729. },
  53730. }
  53731. },
  53732. backNsfw: {
  53733. height: math.unit(6, "feet"),
  53734. name: "Back (NSFW)",
  53735. image: {
  53736. source: "./media/characters/nylla/back-nsfw.svg",
  53737. extra: 1889/1712,
  53738. bottom: 93/1982
  53739. }
  53740. },
  53741. maw: {
  53742. height: math.unit(2.10, "feet"),
  53743. name: "Maw",
  53744. image: {
  53745. source: "./media/characters/nylla/maw.svg"
  53746. }
  53747. },
  53748. paws: {
  53749. height: math.unit(2.06, "feet"),
  53750. name: "Paws",
  53751. image: {
  53752. source: "./media/characters/nylla/paws.svg"
  53753. }
  53754. },
  53755. muzzle: {
  53756. height: math.unit(0.61, "feet"),
  53757. name: "Muzzle",
  53758. image: {
  53759. source: "./media/characters/nylla/muzzle.svg"
  53760. }
  53761. },
  53762. sheath: {
  53763. height: math.unit(1.305, "feet"),
  53764. name: "Sheath",
  53765. image: {
  53766. source: "./media/characters/nylla/sheath.svg"
  53767. }
  53768. },
  53769. },
  53770. [
  53771. {
  53772. name: "Micro",
  53773. height: math.unit(7.5, "inches")
  53774. },
  53775. {
  53776. name: "Normal",
  53777. height: math.unit(7, "feet"),
  53778. default: true
  53779. },
  53780. {
  53781. name: "Macro",
  53782. height: math.unit(60, "feet")
  53783. },
  53784. {
  53785. name: "Mega",
  53786. height: math.unit(200, "feet")
  53787. },
  53788. ]
  53789. ))
  53790. characterMakers.push(() => makeCharacter(
  53791. { name: "HUNT3R", species: ["protogen"], tags: ["anthro"] },
  53792. {
  53793. front: {
  53794. height: math.unit(10, "feet"),
  53795. weight: math.unit(2300, "lb"),
  53796. name: "Front",
  53797. image: {
  53798. source: "./media/characters/hunt3r/front.svg",
  53799. extra: 1909/1742,
  53800. bottom: 46/1955
  53801. }
  53802. },
  53803. },
  53804. [
  53805. {
  53806. name: "Normal",
  53807. height: math.unit(10, "feet"),
  53808. default: true
  53809. },
  53810. ]
  53811. ))
  53812. characterMakers.push(() => makeCharacter(
  53813. { name: "Cylphis", species: ["draconi", "deity"], tags: ["anthro"] },
  53814. {
  53815. dressed: {
  53816. height: math.unit(11, "feet"),
  53817. weight: math.unit(18500, "lb"),
  53818. preyCapacity: math.unit(9, "people"),
  53819. name: "Dressed",
  53820. image: {
  53821. source: "./media/characters/cylphis/dressed.svg",
  53822. extra: 1028/1003,
  53823. bottom: 75/1103
  53824. },
  53825. },
  53826. undressed: {
  53827. height: math.unit(11, "feet"),
  53828. weight: math.unit(18500, "lb"),
  53829. preyCapacity: math.unit(9, "people"),
  53830. name: "Undressed",
  53831. image: {
  53832. source: "./media/characters/cylphis/undressed.svg",
  53833. extra: 1028/1003,
  53834. bottom: 75/1103
  53835. }
  53836. },
  53837. full: {
  53838. height: math.unit(11, "feet"),
  53839. weight: math.unit(18500 + 150*9, "lb"),
  53840. preyCapacity: math.unit(9, "people"),
  53841. name: "Full",
  53842. image: {
  53843. source: "./media/characters/cylphis/full.svg",
  53844. extra: 1028/1003,
  53845. bottom: 75/1103
  53846. }
  53847. },
  53848. },
  53849. [
  53850. {
  53851. name: "Small",
  53852. height: math.unit(8, "feet")
  53853. },
  53854. {
  53855. name: "Normal",
  53856. height: math.unit(11, "feet"),
  53857. default: true
  53858. },
  53859. ]
  53860. ))
  53861. characterMakers.push(() => makeCharacter(
  53862. { name: "Orishan", species: ["rabbit"], tags: ["anthro"] },
  53863. {
  53864. front: {
  53865. height: math.unit(2 + 7/12, "feet"),
  53866. name: "Front",
  53867. image: {
  53868. source: "./media/characters/orishan/front.svg",
  53869. extra: 1058/1023,
  53870. bottom: 23/1081
  53871. }
  53872. },
  53873. back: {
  53874. height: math.unit(2 + 7/12, "feet"),
  53875. name: "Back",
  53876. image: {
  53877. source: "./media/characters/orishan/back.svg",
  53878. extra: 1058/1023,
  53879. bottom: 23/1081
  53880. }
  53881. },
  53882. },
  53883. [
  53884. {
  53885. name: "Micro",
  53886. height: math.unit(2, "cm")
  53887. },
  53888. {
  53889. name: "Normal",
  53890. height: math.unit(2 + 7/12, "feet"),
  53891. default: true
  53892. },
  53893. ]
  53894. ))
  53895. characterMakers.push(() => makeCharacter(
  53896. { name: "Seranis", species: ["cat"], tags: ["anthro"] },
  53897. {
  53898. front: {
  53899. height: math.unit(3, "meters"),
  53900. weight: math.unit(508, "kg"),
  53901. name: "Front",
  53902. image: {
  53903. source: "./media/characters/seranis/front.svg",
  53904. extra: 1478/1454,
  53905. bottom: 41/1519
  53906. }
  53907. },
  53908. },
  53909. [
  53910. {
  53911. name: "Normal",
  53912. height: math.unit(3, "meters"),
  53913. default: true
  53914. },
  53915. {
  53916. name: "Macro",
  53917. height: math.unit(108, "meters")
  53918. },
  53919. {
  53920. name: "Megamacro",
  53921. height: math.unit(1250, "meters")
  53922. },
  53923. ]
  53924. ))
  53925. characterMakers.push(() => makeCharacter(
  53926. { name: "Ankou", species: ["mouse", "imp"], tags: ["anthro"] },
  53927. {
  53928. undressed: {
  53929. height: math.unit(5 + 3/12, "feet"),
  53930. name: "Undressed",
  53931. image: {
  53932. source: "./media/characters/ankou/undressed.svg",
  53933. extra: 1301/1213,
  53934. bottom: 87/1388
  53935. }
  53936. },
  53937. dressed: {
  53938. height: math.unit(5 + 3/12, "feet"),
  53939. name: "Dressed",
  53940. image: {
  53941. source: "./media/characters/ankou/dressed.svg",
  53942. extra: 1301/1213,
  53943. bottom: 87/1388
  53944. }
  53945. },
  53946. head: {
  53947. height: math.unit(1.61, "feet"),
  53948. name: "Head",
  53949. image: {
  53950. source: "./media/characters/ankou/head.svg"
  53951. }
  53952. },
  53953. },
  53954. [
  53955. {
  53956. name: "Normal",
  53957. height: math.unit(5 + 3/12, "feet"),
  53958. default: true
  53959. },
  53960. ]
  53961. ))
  53962. characterMakers.push(() => makeCharacter(
  53963. { name: "Juniper Skunktaur", species: ["skunk", "taur"], tags: ["taur"] },
  53964. {
  53965. side: {
  53966. height: math.unit(6 + 3/12, "feet"),
  53967. weight: math.unit(200, "kg"),
  53968. name: "Side",
  53969. image: {
  53970. source: "./media/characters/juniper-skunktaur/side.svg",
  53971. extra: 1574/1229,
  53972. bottom: 38/1612
  53973. }
  53974. },
  53975. front: {
  53976. height: math.unit(6 + 3/12, "feet"),
  53977. weight: math.unit(200, "kg"),
  53978. name: "Front",
  53979. image: {
  53980. source: "./media/characters/juniper-skunktaur/front.svg",
  53981. extra: 1337/1278,
  53982. bottom: 22/1359
  53983. }
  53984. },
  53985. back: {
  53986. height: math.unit(6 + 3/12, "feet"),
  53987. weight: math.unit(200, "kg"),
  53988. name: "Back",
  53989. image: {
  53990. source: "./media/characters/juniper-skunktaur/back.svg",
  53991. extra: 1618/1273,
  53992. bottom: 13/1631
  53993. }
  53994. },
  53995. top: {
  53996. height: math.unit(2.62, "feet"),
  53997. weight: math.unit(200, "kg"),
  53998. name: "Top",
  53999. image: {
  54000. source: "./media/characters/juniper-skunktaur/top.svg"
  54001. }
  54002. },
  54003. },
  54004. [
  54005. {
  54006. name: "Normal",
  54007. height: math.unit(6 + 3/12, "feet"),
  54008. default: true
  54009. },
  54010. ]
  54011. ))
  54012. characterMakers.push(() => makeCharacter(
  54013. { name: "Rei", species: ["kitsune"], tags: ["anthro"] },
  54014. {
  54015. front: {
  54016. height: math.unit(20.5, "feet"),
  54017. name: "Front",
  54018. image: {
  54019. source: "./media/characters/rei/front.svg",
  54020. extra: 1349/1195,
  54021. bottom: 31/1380
  54022. }
  54023. },
  54024. back: {
  54025. height: math.unit(20.5, "feet"),
  54026. name: "Back",
  54027. image: {
  54028. source: "./media/characters/rei/back.svg",
  54029. extra: 1358/1204,
  54030. bottom: 22/1380
  54031. }
  54032. },
  54033. pawsDigi: {
  54034. height: math.unit(3.45, "feet"),
  54035. name: "Paws (Digi)",
  54036. image: {
  54037. source: "./media/characters/rei/paws-digi.svg"
  54038. }
  54039. },
  54040. pawsPlanti: {
  54041. height: math.unit(3.45, "feet"),
  54042. name: "Paws (Planti)",
  54043. image: {
  54044. source: "./media/characters/rei/paws-planti.svg"
  54045. }
  54046. },
  54047. },
  54048. [
  54049. {
  54050. name: "Normal",
  54051. height: math.unit(20.5, "feet"),
  54052. default: true
  54053. },
  54054. ]
  54055. ))
  54056. characterMakers.push(() => makeCharacter(
  54057. { name: "Carina", species: ["arctic-fox"], tags: ["anthro"] },
  54058. {
  54059. front: {
  54060. height: math.unit(5 + 11/12, "feet"),
  54061. name: "Front",
  54062. image: {
  54063. source: "./media/characters/carina/front.svg",
  54064. extra: 1720/1449,
  54065. bottom: 14/1734
  54066. }
  54067. },
  54068. back: {
  54069. height: math.unit(5 + 11/12, "feet"),
  54070. name: "Back",
  54071. image: {
  54072. source: "./media/characters/carina/back.svg",
  54073. extra: 1493/1445,
  54074. bottom: 17/1510
  54075. }
  54076. },
  54077. paw: {
  54078. height: math.unit(0.92, "feet"),
  54079. name: "Paw",
  54080. image: {
  54081. source: "./media/characters/carina/paw.svg"
  54082. }
  54083. },
  54084. },
  54085. [
  54086. {
  54087. name: "Normal",
  54088. height: math.unit(5 + 11/12, "feet"),
  54089. default: true
  54090. },
  54091. ]
  54092. ))
  54093. characterMakers.push(() => makeCharacter(
  54094. { name: "Maya", species: ["cat"], tags: ["anthro", "taur"] },
  54095. {
  54096. normal_front: {
  54097. height: math.unit(4.88, "meters"),
  54098. name: "Front",
  54099. image: {
  54100. source: "./media/characters/maya/normal-front.svg",
  54101. extra: 1222/1145,
  54102. bottom: 57/1279
  54103. },
  54104. form: "normal",
  54105. default: true
  54106. },
  54107. monstrous_front: {
  54108. height: math.unit(10, "meters"),
  54109. name: "Front",
  54110. image: {
  54111. source: "./media/characters/maya/monstrous-front.svg",
  54112. extra: 1523/1109,
  54113. bottom: 113/1636
  54114. },
  54115. form: "monstrous",
  54116. extraAttributes: {
  54117. "swallowSize": {
  54118. name: "Tailmaw Bite Size",
  54119. power: 3,
  54120. type: "volume",
  54121. base: math.unit(43000, "liters")
  54122. },
  54123. }
  54124. },
  54125. taur_front: {
  54126. height: math.unit(10, "meters"),
  54127. name: "Front",
  54128. image: {
  54129. source: "./media/characters/maya/taur-front.svg",
  54130. extra: 743/506,
  54131. bottom: 101/844
  54132. },
  54133. form: "taur",
  54134. },
  54135. },
  54136. [
  54137. {
  54138. name: "Normal",
  54139. height: math.unit(4.88, "meters"),
  54140. default: true,
  54141. form: "normal"
  54142. },
  54143. {
  54144. name: "Macro",
  54145. height: math.unit(38.1, "meters"),
  54146. form: "normal"
  54147. },
  54148. {
  54149. name: "Macro+",
  54150. height: math.unit(152.4, "meters"),
  54151. form: "normal"
  54152. },
  54153. {
  54154. name: "Macro++",
  54155. height: math.unit(16.09, "km"),
  54156. form: "normal"
  54157. },
  54158. {
  54159. name: "Mega-macro",
  54160. height: math.unit(700, "megameters"),
  54161. form: "normal"
  54162. },
  54163. {
  54164. name: "Satiated",
  54165. height: math.unit(10, "meters"),
  54166. default: true,
  54167. form: "monstrous"
  54168. },
  54169. {
  54170. name: "Hungry",
  54171. height: math.unit(75, "meters"),
  54172. form: "monstrous"
  54173. },
  54174. {
  54175. name: "Ravenous",
  54176. height: math.unit(500, "meters"),
  54177. form: "monstrous"
  54178. },
  54179. {
  54180. name: "\"Normal\"",
  54181. height: math.unit(10, "meters"),
  54182. form: "taur"
  54183. },
  54184. {
  54185. name: "Macro",
  54186. height: math.unit(50, "meters"),
  54187. form: "taur"
  54188. },
  54189. ],
  54190. {
  54191. "normal": {
  54192. name: "Normal",
  54193. default: true
  54194. },
  54195. "monstrous": {
  54196. name: "Monstrous",
  54197. },
  54198. "taur": {
  54199. name: "Taur",
  54200. },
  54201. }
  54202. ))
  54203. characterMakers.push(() => makeCharacter(
  54204. { name: "Yepir", species: ["hyena"], tags: ["anthro"] },
  54205. {
  54206. front: {
  54207. height: math.unit(6 + 2/12, "feet"),
  54208. weight: math.unit(500, "lb"),
  54209. preyCapacity: math.unit(4, "people"),
  54210. name: "Front",
  54211. image: {
  54212. source: "./media/characters/yepir/front.svg"
  54213. }
  54214. },
  54215. side: {
  54216. height: math.unit(6 + 2/12, "feet"),
  54217. weight: math.unit(500, "lb"),
  54218. preyCapacity: math.unit(4, "people"),
  54219. name: "Side",
  54220. image: {
  54221. source: "./media/characters/yepir/side.svg"
  54222. }
  54223. },
  54224. paw: {
  54225. height: math.unit(1.05, "feet"),
  54226. name: "Paw",
  54227. image: {
  54228. source: "./media/characters/yepir/paw.svg"
  54229. }
  54230. },
  54231. },
  54232. [
  54233. {
  54234. name: "Normal",
  54235. height: math.unit(6 + 2/12, "feet"),
  54236. default: true
  54237. },
  54238. ]
  54239. ))
  54240. characterMakers.push(() => makeCharacter(
  54241. { name: "Russec", species: ["continental-giant-rabbit"], tags: ["anthro"] },
  54242. {
  54243. front: {
  54244. height: math.unit(5 + 4/12, "feet"),
  54245. name: "Front",
  54246. image: {
  54247. source: "./media/characters/russec/front.svg",
  54248. extra: 1926/1626,
  54249. bottom: 72/1998
  54250. }
  54251. },
  54252. back: {
  54253. height: math.unit(5 + 4/12, "feet"),
  54254. name: "Back",
  54255. image: {
  54256. source: "./media/characters/russec/back.svg",
  54257. extra: 1910/1591,
  54258. bottom: 48/1958
  54259. }
  54260. },
  54261. },
  54262. [
  54263. {
  54264. name: "Small",
  54265. height: math.unit(5 + 4/12, "feet")
  54266. },
  54267. {
  54268. name: "Normal",
  54269. height: math.unit(72, "feet"),
  54270. default: true
  54271. },
  54272. ]
  54273. ))
  54274. characterMakers.push(() => makeCharacter(
  54275. { name: "Cianus", species: ["demigryph"], tags: ["anthro"] },
  54276. {
  54277. side: {
  54278. height: math.unit(12, "feet"),
  54279. name: "Side",
  54280. image: {
  54281. source: "./media/characters/cianus/side.svg",
  54282. extra: 808/526,
  54283. bottom: 61/869
  54284. }
  54285. },
  54286. },
  54287. [
  54288. {
  54289. name: "Normal",
  54290. height: math.unit(12, "feet"),
  54291. default: true
  54292. },
  54293. ]
  54294. ))
  54295. characterMakers.push(() => makeCharacter(
  54296. { name: "Ahab", species: ["bald-eagle"], tags: ["anthro"] },
  54297. {
  54298. front: {
  54299. height: math.unit(9 + 6/12, "feet"),
  54300. weight: math.unit(300, "lb"),
  54301. name: "Front",
  54302. image: {
  54303. source: "./media/characters/ahab/front.svg",
  54304. extra: 1897/1868,
  54305. bottom: 121/2018
  54306. }
  54307. },
  54308. frontNsfw: {
  54309. height: math.unit(9 + 6/12, "feet"),
  54310. weight: math.unit(300, "lb"),
  54311. name: "Front (NSFW)",
  54312. image: {
  54313. source: "./media/characters/ahab/front-nsfw.svg",
  54314. extra: 1897/1868,
  54315. bottom: 121/2018
  54316. }
  54317. },
  54318. },
  54319. [
  54320. {
  54321. name: "Normal",
  54322. height: math.unit(9 + 6/12, "feet")
  54323. },
  54324. {
  54325. name: "Macro",
  54326. height: math.unit(657, "feet"),
  54327. default: true
  54328. },
  54329. ]
  54330. ))
  54331. characterMakers.push(() => makeCharacter(
  54332. { name: "Aarkus", species: ["deer"], tags: ["anthro"] },
  54333. {
  54334. front: {
  54335. height: math.unit(2.69, "meters"),
  54336. weight: math.unit(132, "kg"),
  54337. name: "Front",
  54338. image: {
  54339. source: "./media/characters/aarkus/front.svg",
  54340. extra: 1400/1231,
  54341. bottom: 34/1434
  54342. }
  54343. },
  54344. back: {
  54345. height: math.unit(2.69, "meters"),
  54346. weight: math.unit(132, "kg"),
  54347. name: "Back",
  54348. image: {
  54349. source: "./media/characters/aarkus/back.svg",
  54350. extra: 1381/1218,
  54351. bottom: 30/1411
  54352. }
  54353. },
  54354. frontNsfw: {
  54355. height: math.unit(2.69, "meters"),
  54356. weight: math.unit(132, "kg"),
  54357. name: "Front (NSFW)",
  54358. image: {
  54359. source: "./media/characters/aarkus/front-nsfw.svg",
  54360. extra: 1400/1231,
  54361. bottom: 34/1434
  54362. }
  54363. },
  54364. foot: {
  54365. height: math.unit(1.45, "feet"),
  54366. name: "Foot",
  54367. image: {
  54368. source: "./media/characters/aarkus/foot.svg"
  54369. }
  54370. },
  54371. head: {
  54372. height: math.unit(2.85, "feet"),
  54373. name: "Head",
  54374. image: {
  54375. source: "./media/characters/aarkus/head.svg"
  54376. }
  54377. },
  54378. headAlt: {
  54379. height: math.unit(3.07, "feet"),
  54380. name: "Head (Alt)",
  54381. image: {
  54382. source: "./media/characters/aarkus/head-alt.svg"
  54383. }
  54384. },
  54385. mouth: {
  54386. height: math.unit(1.25, "feet"),
  54387. name: "Mouth",
  54388. image: {
  54389. source: "./media/characters/aarkus/mouth.svg"
  54390. }
  54391. },
  54392. dick: {
  54393. height: math.unit(1.77, "feet"),
  54394. name: "Dick",
  54395. image: {
  54396. source: "./media/characters/aarkus/dick.svg"
  54397. }
  54398. },
  54399. },
  54400. [
  54401. {
  54402. name: "Normal",
  54403. height: math.unit(2.69, "meters"),
  54404. default: true
  54405. },
  54406. {
  54407. name: "Macro",
  54408. height: math.unit(269, "meters")
  54409. },
  54410. {
  54411. name: "Macro+",
  54412. height: math.unit(672.5, "meters")
  54413. },
  54414. {
  54415. name: "Megamacro",
  54416. height: math.unit(2.017, "km")
  54417. },
  54418. ]
  54419. ))
  54420. characterMakers.push(() => makeCharacter(
  54421. { name: "Diode", species: ["moth"], tags: ["anthro"] },
  54422. {
  54423. front: {
  54424. height: math.unit(23.47, "cm"),
  54425. weight: math.unit(600, "grams"),
  54426. name: "Front",
  54427. image: {
  54428. source: "./media/characters/diode/front.svg",
  54429. extra: 1778/1396,
  54430. bottom: 95/1873
  54431. }
  54432. },
  54433. side: {
  54434. height: math.unit(23.47, "cm"),
  54435. weight: math.unit(600, "grams"),
  54436. name: "Side",
  54437. image: {
  54438. source: "./media/characters/diode/side.svg",
  54439. extra: 1831/1404,
  54440. bottom: 86/1917
  54441. }
  54442. },
  54443. wings: {
  54444. height: math.unit(0.683, "feet"),
  54445. name: "Wings",
  54446. image: {
  54447. source: "./media/characters/diode/wings.svg"
  54448. }
  54449. },
  54450. },
  54451. [
  54452. {
  54453. name: "Normal",
  54454. height: math.unit(23.47, "cm"),
  54455. default: true
  54456. },
  54457. ]
  54458. ))
  54459. characterMakers.push(() => makeCharacter(
  54460. { name: "Reika", species: ["kestrel", "mockingbird"], tags: ["anthro"] },
  54461. {
  54462. front: {
  54463. height: math.unit(6 + 3/12, "feet"),
  54464. weight: math.unit(250, "lb"),
  54465. name: "Front",
  54466. image: {
  54467. source: "./media/characters/reika/front.svg",
  54468. extra: 1120/1078,
  54469. bottom: 86/1206
  54470. }
  54471. },
  54472. },
  54473. [
  54474. {
  54475. name: "Normal",
  54476. height: math.unit(6 + 3/12, "feet"),
  54477. default: true
  54478. },
  54479. ]
  54480. ))
  54481. characterMakers.push(() => makeCharacter(
  54482. { name: "Lokuto Takama", species: ["arctic-fox", "kitsune"], tags: ["anthro"] },
  54483. {
  54484. front: {
  54485. height: math.unit(16 + 8/12, "feet"),
  54486. weight: math.unit(9000, "lb"),
  54487. name: "Front",
  54488. image: {
  54489. source: "./media/characters/lokuto-takama/front.svg",
  54490. extra: 1774/1632,
  54491. bottom: 147/1921
  54492. },
  54493. extraAttributes: {
  54494. "bustWidth": {
  54495. name: "Bust Width",
  54496. power: 1,
  54497. type: "length",
  54498. base: math.unit(2.4, "meters")
  54499. },
  54500. "breastWeight": {
  54501. name: "Breast Weight",
  54502. power: 3,
  54503. type: "mass",
  54504. base: math.unit(1000, "kg")
  54505. },
  54506. }
  54507. },
  54508. },
  54509. [
  54510. {
  54511. name: "Normal",
  54512. height: math.unit(16 + 8/12, "feet"),
  54513. default: true
  54514. },
  54515. ]
  54516. ))
  54517. characterMakers.push(() => makeCharacter(
  54518. { name: "Owak Bone", species: ["marowak"], tags: ["anthro"] },
  54519. {
  54520. front: {
  54521. height: math.unit(10, "cm"),
  54522. weight: math.unit(850, "grams"),
  54523. name: "Front",
  54524. image: {
  54525. source: "./media/characters/owak-bone/front.svg",
  54526. extra: 1965/1801,
  54527. bottom: 31/1996
  54528. }
  54529. },
  54530. },
  54531. [
  54532. {
  54533. name: "Normal",
  54534. height: math.unit(10, "cm"),
  54535. default: true
  54536. },
  54537. ]
  54538. ))
  54539. characterMakers.push(() => makeCharacter(
  54540. { name: "Muffin", species: ["ferret"], tags: ["anthro"] },
  54541. {
  54542. front: {
  54543. height: math.unit(2 + 6/12, "feet"),
  54544. weight: math.unit(9, "lb"),
  54545. name: "Front",
  54546. image: {
  54547. source: "./media/characters/muffin/front.svg",
  54548. extra: 1220/1195,
  54549. bottom: 84/1304
  54550. }
  54551. },
  54552. },
  54553. [
  54554. {
  54555. name: "Normal",
  54556. height: math.unit(2 + 6/12, "feet"),
  54557. default: true
  54558. },
  54559. ]
  54560. ))
  54561. characterMakers.push(() => makeCharacter(
  54562. { name: "Chimera", species: ["pegasus"], tags: ["anthro"] },
  54563. {
  54564. front: {
  54565. height: math.unit(7, "feet"),
  54566. name: "Front",
  54567. image: {
  54568. source: "./media/characters/chimera/front.svg",
  54569. extra: 1752/1614,
  54570. bottom: 68/1820
  54571. }
  54572. },
  54573. },
  54574. [
  54575. {
  54576. name: "Normal",
  54577. height: math.unit(7, "feet")
  54578. },
  54579. {
  54580. name: "Gigamacro",
  54581. height: math.unit(2.9, "gigameters"),
  54582. default: true
  54583. },
  54584. {
  54585. name: "Universal",
  54586. height: math.unit(1.56e26, "yottameters")
  54587. },
  54588. ]
  54589. ))
  54590. characterMakers.push(() => makeCharacter(
  54591. { name: "Kit (Fennec Fox)", species: ["fennec-fox"], tags: ["anthro"] },
  54592. {
  54593. front: {
  54594. height: math.unit(3, "feet"),
  54595. weight: math.unit(20, "lb"),
  54596. name: "Front",
  54597. image: {
  54598. source: "./media/characters/kit-fennec-fox/front.svg",
  54599. extra: 1027/932,
  54600. bottom: 16/1043
  54601. }
  54602. },
  54603. back: {
  54604. height: math.unit(3, "feet"),
  54605. weight: math.unit(20, "lb"),
  54606. name: "Back",
  54607. image: {
  54608. source: "./media/characters/kit-fennec-fox/back.svg",
  54609. extra: 1027/932,
  54610. bottom: 16/1043
  54611. }
  54612. },
  54613. },
  54614. [
  54615. {
  54616. name: "Normal",
  54617. height: math.unit(3, "feet"),
  54618. default: true
  54619. },
  54620. ]
  54621. ))
  54622. characterMakers.push(() => makeCharacter(
  54623. { name: "Blue (Otter)", species: ["otter"], tags: ["anthro"] },
  54624. {
  54625. front: {
  54626. height: math.unit(167, "cm"),
  54627. name: "Front",
  54628. image: {
  54629. source: "./media/characters/blue-otter/front.svg",
  54630. extra: 1951/1920,
  54631. bottom: 31/1982
  54632. }
  54633. },
  54634. },
  54635. [
  54636. {
  54637. name: "Otter-Sized",
  54638. height: math.unit(100, "cm")
  54639. },
  54640. {
  54641. name: "Normal",
  54642. height: math.unit(167, "cm"),
  54643. default: true
  54644. },
  54645. ]
  54646. ))
  54647. characterMakers.push(() => makeCharacter(
  54648. { name: "Maverick (Leopard Gecko)", species: ["leopard-gecko"], tags: ["anthro"] },
  54649. {
  54650. front: {
  54651. height: math.unit(4 + 4/12, "feet"),
  54652. name: "Front",
  54653. image: {
  54654. source: "./media/characters/maverick-leopard-gecko/front.svg",
  54655. extra: 1072/1067,
  54656. bottom: 117/1189
  54657. }
  54658. },
  54659. back: {
  54660. height: math.unit(4 + 4/12, "feet"),
  54661. name: "Back",
  54662. image: {
  54663. source: "./media/characters/maverick-leopard-gecko/back.svg",
  54664. extra: 1135/1129,
  54665. bottom: 57/1192
  54666. }
  54667. },
  54668. head: {
  54669. height: math.unit(1.77, "feet"),
  54670. name: "Head",
  54671. image: {
  54672. source: "./media/characters/maverick-leopard-gecko/head.svg"
  54673. }
  54674. },
  54675. },
  54676. [
  54677. {
  54678. name: "Normal",
  54679. height: math.unit(4 + 4/12, "feet"),
  54680. default: true
  54681. },
  54682. ]
  54683. ))
  54684. characterMakers.push(() => makeCharacter(
  54685. { name: "Carley Hartford", species: ["joltik"], tags: ["anthro"] },
  54686. {
  54687. front: {
  54688. height: math.unit(2, "inches"),
  54689. name: "Front",
  54690. image: {
  54691. source: "./media/characters/carley-hartford/front.svg",
  54692. extra: 1035/988,
  54693. bottom: 23/1058
  54694. }
  54695. },
  54696. back: {
  54697. height: math.unit(2, "inches"),
  54698. name: "Back",
  54699. image: {
  54700. source: "./media/characters/carley-hartford/back.svg",
  54701. extra: 1035/988,
  54702. bottom: 23/1058
  54703. }
  54704. },
  54705. dressed: {
  54706. height: math.unit(2, "inches"),
  54707. name: "Dressed",
  54708. image: {
  54709. source: "./media/characters/carley-hartford/dressed.svg",
  54710. extra: 651/620,
  54711. bottom: 0/651
  54712. }
  54713. },
  54714. },
  54715. [
  54716. {
  54717. name: "Micro",
  54718. height: math.unit(2, "inches"),
  54719. default: true
  54720. },
  54721. {
  54722. name: "Macro",
  54723. height: math.unit(6 + 3/12, "feet")
  54724. },
  54725. ]
  54726. ))
  54727. characterMakers.push(() => makeCharacter(
  54728. { name: "Duke", species: ["ferret"], tags: ["anthro"] },
  54729. {
  54730. front: {
  54731. height: math.unit(2 + 3/12, "feet"),
  54732. weight: math.unit(15 + 7/16, "lb"),
  54733. name: "Front",
  54734. image: {
  54735. source: "./media/characters/duke/front.svg",
  54736. extra: 910/815,
  54737. bottom: 30/940
  54738. }
  54739. },
  54740. },
  54741. [
  54742. {
  54743. name: "Normal",
  54744. height: math.unit(2 + 3/12, "feet"),
  54745. default: true
  54746. },
  54747. ]
  54748. ))
  54749. characterMakers.push(() => makeCharacter(
  54750. { name: "Dein", species: ["ferret"], tags: ["anthro"] },
  54751. {
  54752. front: {
  54753. height: math.unit(5 + 4/12, "feet"),
  54754. weight: math.unit(156, "lb"),
  54755. name: "Front",
  54756. image: {
  54757. source: "./media/characters/dein/front.svg",
  54758. extra: 855/815,
  54759. bottom: 48/903
  54760. }
  54761. },
  54762. side: {
  54763. height: math.unit(5 + 4/12, "feet"),
  54764. weight: math.unit(156, "lb"),
  54765. name: "side",
  54766. image: {
  54767. source: "./media/characters/dein/side.svg",
  54768. extra: 846/803,
  54769. bottom: 25/871
  54770. }
  54771. },
  54772. maw: {
  54773. height: math.unit(1.45, "feet"),
  54774. name: "Maw",
  54775. image: {
  54776. source: "./media/characters/dein/maw.svg"
  54777. }
  54778. },
  54779. },
  54780. [
  54781. {
  54782. name: "Ferret Sized",
  54783. height: math.unit(2 + 5/12, "feet")
  54784. },
  54785. {
  54786. name: "Normal",
  54787. height: math.unit(5 + 4/12, "feet"),
  54788. default: true
  54789. },
  54790. ]
  54791. ))
  54792. characterMakers.push(() => makeCharacter(
  54793. { name: "Daurine Arima", species: ["werewolf"], tags: ["anthro"] },
  54794. {
  54795. front: {
  54796. height: math.unit(84 + 8/12, "feet"),
  54797. weight: math.unit(942180, "lb"),
  54798. name: "Front",
  54799. image: {
  54800. source: "./media/characters/daurine-arima/front.svg",
  54801. extra: 1989/1782,
  54802. bottom: 37/2026
  54803. }
  54804. },
  54805. side: {
  54806. height: math.unit(84 + 8/12, "feet"),
  54807. weight: math.unit(942180, "lb"),
  54808. name: "Side",
  54809. image: {
  54810. source: "./media/characters/daurine-arima/side.svg",
  54811. extra: 1997/1790,
  54812. bottom: 21/2018
  54813. }
  54814. },
  54815. back: {
  54816. height: math.unit(84 + 8/12, "feet"),
  54817. weight: math.unit(942180, "lb"),
  54818. name: "Back",
  54819. image: {
  54820. source: "./media/characters/daurine-arima/back.svg",
  54821. extra: 1992/1800,
  54822. bottom: 12/2004
  54823. }
  54824. },
  54825. head: {
  54826. height: math.unit(15.5, "feet"),
  54827. name: "Head",
  54828. image: {
  54829. source: "./media/characters/daurine-arima/head.svg"
  54830. }
  54831. },
  54832. headAlt: {
  54833. height: math.unit(19.19, "feet"),
  54834. name: "Head (Alt)",
  54835. image: {
  54836. source: "./media/characters/daurine-arima/head-alt.svg"
  54837. }
  54838. },
  54839. },
  54840. [
  54841. {
  54842. name: "Minimum height",
  54843. height: math.unit(8 + 10/12, "feet")
  54844. },
  54845. {
  54846. name: "Comfort height",
  54847. height: math.unit(19 + 6 /12, "feet")
  54848. },
  54849. {
  54850. name: "\"Normal\" height",
  54851. height: math.unit(28 + 10/12, "feet")
  54852. },
  54853. {
  54854. name: "Base height",
  54855. height: math.unit(84 + 8/12, "feet"),
  54856. default: true
  54857. },
  54858. {
  54859. name: "Mini-macro",
  54860. height: math.unit(2360, "feet")
  54861. },
  54862. {
  54863. name: "Macro",
  54864. height: math.unit(10, "miles")
  54865. },
  54866. {
  54867. name: "Goddess",
  54868. height: math.unit(9.99e40, "yottameters")
  54869. },
  54870. ]
  54871. ))
  54872. characterMakers.push(() => makeCharacter(
  54873. { name: "Cilenomon", species: ["slime"], tags: ["anthro"] },
  54874. {
  54875. front: {
  54876. height: math.unit(2.3, "meters"),
  54877. name: "Front",
  54878. image: {
  54879. source: "./media/characters/cilenomon/front.svg",
  54880. extra: 1963/1778,
  54881. bottom: 54/2017
  54882. }
  54883. },
  54884. },
  54885. [
  54886. {
  54887. name: "Normal",
  54888. height: math.unit(2.3, "meters"),
  54889. default: true
  54890. },
  54891. {
  54892. name: "Big",
  54893. height: math.unit(5, "meters")
  54894. },
  54895. {
  54896. name: "Macro",
  54897. height: math.unit(30, "meters")
  54898. },
  54899. {
  54900. name: "True",
  54901. height: math.unit(1, "universe")
  54902. },
  54903. ]
  54904. ))
  54905. characterMakers.push(() => makeCharacter(
  54906. { name: "Sen (Mink)", species: ["mink"], tags: ["anthro"] },
  54907. {
  54908. front: {
  54909. height: math.unit(5, "feet"),
  54910. name: "Front",
  54911. image: {
  54912. source: "./media/characters/sen-mink/front.svg",
  54913. extra: 1727/1675,
  54914. bottom: 35/1762
  54915. }
  54916. },
  54917. },
  54918. [
  54919. {
  54920. name: "Normal",
  54921. height: math.unit(5, "feet"),
  54922. default: true
  54923. },
  54924. ]
  54925. ))
  54926. characterMakers.push(() => makeCharacter(
  54927. { name: "Ophois", species: ["jackal", "sandcat"], tags: ["anthro"] },
  54928. {
  54929. front: {
  54930. height: math.unit(5.42999, "feet"),
  54931. weight: math.unit(100, "lb"),
  54932. name: "Front",
  54933. image: {
  54934. source: "./media/characters/ophois/front.svg",
  54935. extra: 1429/1286,
  54936. bottom: 60/1489
  54937. }
  54938. },
  54939. },
  54940. [
  54941. {
  54942. name: "Normal",
  54943. height: math.unit(5.42999, "feet"),
  54944. default: true
  54945. },
  54946. ]
  54947. ))
  54948. characterMakers.push(() => makeCharacter(
  54949. { name: "Riley", species: ["eagle"], tags: ["anthro"] },
  54950. {
  54951. front: {
  54952. height: math.unit(2, "meters"),
  54953. name: "Front",
  54954. image: {
  54955. source: "./media/characters/riley/front.svg",
  54956. extra: 1779/1754,
  54957. bottom: 139/1918
  54958. }
  54959. },
  54960. },
  54961. [
  54962. {
  54963. name: "Normal",
  54964. height: math.unit(2, "meters"),
  54965. default: true
  54966. },
  54967. ]
  54968. ))
  54969. characterMakers.push(() => makeCharacter(
  54970. { name: "Shuken Flash", species: ["arctic-fox"], tags: ["anthro"] },
  54971. {
  54972. front: {
  54973. height: math.unit(6 + 2/12, "feet"),
  54974. weight: math.unit(195, "lb"),
  54975. preyCapacity: math.unit(6, "people"),
  54976. name: "Front",
  54977. image: {
  54978. source: "./media/characters/shuken-flash/front.svg",
  54979. extra: 1905/1739,
  54980. bottom: 65/1970
  54981. }
  54982. },
  54983. back: {
  54984. height: math.unit(6 + 2/12, "feet"),
  54985. weight: math.unit(195, "lb"),
  54986. preyCapacity: math.unit(6, "people"),
  54987. name: "Back",
  54988. image: {
  54989. source: "./media/characters/shuken-flash/back.svg",
  54990. extra: 1912/1751,
  54991. bottom: 13/1925
  54992. }
  54993. },
  54994. },
  54995. [
  54996. {
  54997. name: "Normal",
  54998. height: math.unit(6 + 2/12, "feet"),
  54999. default: true
  55000. },
  55001. ]
  55002. ))
  55003. characterMakers.push(() => makeCharacter(
  55004. { name: "Plat", species: ["raven"], tags: ["anthro"] },
  55005. {
  55006. front: {
  55007. height: math.unit(5 + 9/12, "feet"),
  55008. weight: math.unit(150, "lb"),
  55009. name: "Front",
  55010. image: {
  55011. source: "./media/characters/plat/front.svg",
  55012. extra: 1816/1703,
  55013. bottom: 43/1859
  55014. }
  55015. },
  55016. side: {
  55017. height: math.unit(5 + 9/12, "feet"),
  55018. weight: math.unit(300, "lb"),
  55019. name: "Side",
  55020. image: {
  55021. source: "./media/characters/plat/side.svg",
  55022. extra: 1824/1699,
  55023. bottom: 18/1842
  55024. }
  55025. },
  55026. },
  55027. [
  55028. {
  55029. name: "Normal",
  55030. height: math.unit(5 + 9/12, "feet"),
  55031. default: true
  55032. },
  55033. ]
  55034. ))
  55035. characterMakers.push(() => makeCharacter(
  55036. { name: "Elaine", species: ["snake", "dragon"], tags: ["anthro"] },
  55037. {
  55038. front: {
  55039. height: math.unit(9, "feet"),
  55040. weight: math.unit(1800, "lb"),
  55041. name: "Front",
  55042. image: {
  55043. source: "./media/characters/elaine/front.svg",
  55044. extra: 1833/1354,
  55045. bottom: 25/1858
  55046. }
  55047. },
  55048. back: {
  55049. height: math.unit(8.8, "feet"),
  55050. weight: math.unit(1800, "lb"),
  55051. name: "Back",
  55052. image: {
  55053. source: "./media/characters/elaine/back.svg",
  55054. extra: 1641/1233,
  55055. bottom: 53/1694
  55056. }
  55057. },
  55058. },
  55059. [
  55060. {
  55061. name: "Normal",
  55062. height: math.unit(9, "feet"),
  55063. default: true
  55064. },
  55065. ]
  55066. ))
  55067. characterMakers.push(() => makeCharacter(
  55068. { name: "Vera (Raven)", species: ["raven"], tags: ["anthro"] },
  55069. {
  55070. front: {
  55071. height: math.unit(17 + 9/12, "feet"),
  55072. weight: math.unit(8000, "lb"),
  55073. name: "Front",
  55074. image: {
  55075. source: "./media/characters/vera-raven/front.svg",
  55076. extra: 1457/1412,
  55077. bottom: 121/1578
  55078. }
  55079. },
  55080. side: {
  55081. height: math.unit(17 + 9/12, "feet"),
  55082. weight: math.unit(8000, "lb"),
  55083. name: "Side",
  55084. image: {
  55085. source: "./media/characters/vera-raven/side.svg",
  55086. extra: 1510/1464,
  55087. bottom: 54/1564
  55088. }
  55089. },
  55090. },
  55091. [
  55092. {
  55093. name: "Normal",
  55094. height: math.unit(17 + 9/12, "feet"),
  55095. default: true
  55096. },
  55097. ]
  55098. ))
  55099. characterMakers.push(() => makeCharacter(
  55100. { name: "Nakisha", species: ["sabertooth-tiger", "leopard"], tags: ["anthro"] },
  55101. {
  55102. dressed: {
  55103. height: math.unit(6 + 9/12, "feet"),
  55104. name: "Dressed",
  55105. image: {
  55106. source: "./media/characters/nakisha/dressed.svg",
  55107. extra: 1909/1757,
  55108. bottom: 48/1957
  55109. }
  55110. },
  55111. nude: {
  55112. height: math.unit(6 + 9/12, "feet"),
  55113. name: "Nude",
  55114. image: {
  55115. source: "./media/characters/nakisha/nude.svg",
  55116. extra: 1917/1765,
  55117. bottom: 34/1951
  55118. }
  55119. },
  55120. },
  55121. [
  55122. {
  55123. name: "Normal",
  55124. height: math.unit(6 + 9/12, "feet"),
  55125. default: true
  55126. },
  55127. ]
  55128. ))
  55129. characterMakers.push(() => makeCharacter(
  55130. { name: "Serafin", species: ["dragon"], tags: ["anthro"] },
  55131. {
  55132. front: {
  55133. height: math.unit(87, "meters"),
  55134. name: "Front",
  55135. image: {
  55136. source: "./media/characters/serafin/front.svg",
  55137. extra: 1919/1776,
  55138. bottom: 65/1984
  55139. }
  55140. },
  55141. },
  55142. [
  55143. {
  55144. name: "Normal",
  55145. height: math.unit(87, "meters"),
  55146. default: true
  55147. },
  55148. ]
  55149. ))
  55150. characterMakers.push(() => makeCharacter(
  55151. { name: "Poptart", species: ["red-panda", "husky"], tags: ["anthro"] },
  55152. {
  55153. front: {
  55154. height: math.unit(6, "feet"),
  55155. weight: math.unit(200, "lb"),
  55156. name: "Front",
  55157. image: {
  55158. source: "./media/characters/poptart/front.svg",
  55159. extra: 615/583,
  55160. bottom: 23/638
  55161. }
  55162. },
  55163. back: {
  55164. height: math.unit(6, "feet"),
  55165. weight: math.unit(200, "lb"),
  55166. name: "Back",
  55167. image: {
  55168. source: "./media/characters/poptart/back.svg",
  55169. extra: 617/584,
  55170. bottom: 22/639
  55171. }
  55172. },
  55173. frontNsfw: {
  55174. height: math.unit(6, "feet"),
  55175. weight: math.unit(200, "lb"),
  55176. name: "Front (NSFW)",
  55177. image: {
  55178. source: "./media/characters/poptart/front-nsfw.svg",
  55179. extra: 615/583,
  55180. bottom: 23/638
  55181. }
  55182. },
  55183. backNsfw: {
  55184. height: math.unit(6, "feet"),
  55185. weight: math.unit(200, "lb"),
  55186. name: "Back (NSFW)",
  55187. image: {
  55188. source: "./media/characters/poptart/back-nsfw.svg",
  55189. extra: 617/584,
  55190. bottom: 22/639
  55191. }
  55192. },
  55193. hand: {
  55194. height: math.unit(1.14, "feet"),
  55195. name: "Hand",
  55196. image: {
  55197. source: "./media/characters/poptart/hand.svg"
  55198. }
  55199. },
  55200. foot: {
  55201. height: math.unit(1.5, "feet"),
  55202. name: "Foot",
  55203. image: {
  55204. source: "./media/characters/poptart/foot.svg"
  55205. }
  55206. },
  55207. },
  55208. [
  55209. {
  55210. name: "Normal",
  55211. height: math.unit(6, "feet"),
  55212. default: true
  55213. },
  55214. {
  55215. name: "Grande",
  55216. height: math.unit(350, "feet")
  55217. },
  55218. {
  55219. name: "Massif",
  55220. height: math.unit(967, "feet")
  55221. },
  55222. ]
  55223. ))
  55224. characterMakers.push(() => makeCharacter(
  55225. { name: "Trance", species: ["hyena"], tags: ["anthro"] },
  55226. {
  55227. hyenaSide: {
  55228. height: math.unit(120, "cm"),
  55229. weight: math.unit(120, "lb"),
  55230. name: "Side",
  55231. image: {
  55232. source: "./media/characters/trance/hyena-side.svg",
  55233. extra: 998/904,
  55234. bottom: 76/1074
  55235. }
  55236. },
  55237. },
  55238. [
  55239. {
  55240. name: "Normal",
  55241. height: math.unit(120, "cm"),
  55242. default: true
  55243. },
  55244. {
  55245. name: "Dire",
  55246. height: math.unit(230, "cm")
  55247. },
  55248. {
  55249. name: "Macro",
  55250. height: math.unit(37, "feet")
  55251. },
  55252. ]
  55253. ))
  55254. characterMakers.push(() => makeCharacter(
  55255. { name: "Michael Berretta", species: ["lion"], tags: ["anthro"] },
  55256. {
  55257. front: {
  55258. height: math.unit(6 + 3/12, "feet"),
  55259. name: "Front",
  55260. image: {
  55261. source: "./media/characters/michael-berretta/front.svg",
  55262. extra: 515/494,
  55263. bottom: 20/535
  55264. }
  55265. },
  55266. back: {
  55267. height: math.unit(6 + 3/12, "feet"),
  55268. name: "Back",
  55269. image: {
  55270. source: "./media/characters/michael-berretta/back.svg",
  55271. extra: 520/497,
  55272. bottom: 21/541
  55273. }
  55274. },
  55275. frontNsfw: {
  55276. height: math.unit(6 + 3/12, "feet"),
  55277. name: "Front (NSFW)",
  55278. image: {
  55279. source: "./media/characters/michael-berretta/front-nsfw.svg",
  55280. extra: 515/494,
  55281. bottom: 20/535
  55282. }
  55283. },
  55284. dick: {
  55285. height: math.unit(1, "feet"),
  55286. name: "Dick",
  55287. image: {
  55288. source: "./media/characters/michael-berretta/dick.svg"
  55289. }
  55290. },
  55291. },
  55292. [
  55293. {
  55294. name: "Normal",
  55295. height: math.unit(6 + 3/12, "feet"),
  55296. default: true
  55297. },
  55298. {
  55299. name: "Big",
  55300. height: math.unit(12, "feet")
  55301. },
  55302. {
  55303. name: "Macro",
  55304. height: math.unit(187.5, "feet")
  55305. },
  55306. ]
  55307. ))
  55308. characterMakers.push(() => makeCharacter(
  55309. { name: "Stella Edgecomb", species: ["bear"], tags: ["anthro"] },
  55310. {
  55311. front: {
  55312. height: math.unit(9 + 9/12, "feet"),
  55313. weight: math.unit(1244, "lb"),
  55314. name: "Front",
  55315. image: {
  55316. source: "./media/characters/stella-edgecomb/front.svg",
  55317. extra: 1835/1706,
  55318. bottom: 49/1884
  55319. }
  55320. },
  55321. pen: {
  55322. height: math.unit(0.95, "feet"),
  55323. name: "Pen",
  55324. image: {
  55325. source: "./media/characters/stella-edgecomb/pen.svg"
  55326. }
  55327. },
  55328. },
  55329. [
  55330. {
  55331. name: "Cozy Bear",
  55332. height: math.unit(0.5, "inches")
  55333. },
  55334. {
  55335. name: "Normal",
  55336. height: math.unit(9 + 9/12, "feet"),
  55337. default: true
  55338. },
  55339. {
  55340. name: "Giga Bear",
  55341. height: math.unit(1, "mile")
  55342. },
  55343. {
  55344. name: "Great Bear",
  55345. height: math.unit(53, "miles")
  55346. },
  55347. {
  55348. name: "Goddess Bear",
  55349. height: math.unit(40000, "miles")
  55350. },
  55351. {
  55352. name: "Sun Bear",
  55353. height: math.unit(900000, "miles")
  55354. },
  55355. ]
  55356. ))
  55357. characterMakers.push(() => makeCharacter(
  55358. { name: "Ash´iika", species: ["dragon"], tags: ["anthro", "feral"] },
  55359. {
  55360. anthroFront: {
  55361. height: math.unit(556, "cm"),
  55362. weight: math.unit(2650, "kg"),
  55363. preyCapacity: math.unit(3, "people"),
  55364. name: "Front",
  55365. image: {
  55366. source: "./media/characters/ash´iika/front.svg",
  55367. extra: 710/673,
  55368. bottom: 15/725
  55369. },
  55370. form: "anthro",
  55371. default: true
  55372. },
  55373. anthroSide: {
  55374. height: math.unit(556, "cm"),
  55375. weight: math.unit(2650, "kg"),
  55376. preyCapacity: math.unit(3, "people"),
  55377. name: "Side",
  55378. image: {
  55379. source: "./media/characters/ash´iika/side.svg",
  55380. extra: 696/676,
  55381. bottom: 13/709
  55382. },
  55383. form: "anthro"
  55384. },
  55385. anthroDressed: {
  55386. height: math.unit(556, "cm"),
  55387. weight: math.unit(2650, "kg"),
  55388. preyCapacity: math.unit(3, "people"),
  55389. name: "Dressed",
  55390. image: {
  55391. source: "./media/characters/ash´iika/dressed.svg",
  55392. extra: 710/673,
  55393. bottom: 15/725
  55394. },
  55395. form: "anthro"
  55396. },
  55397. anthroHead: {
  55398. height: math.unit(3.5, "feet"),
  55399. name: "Head",
  55400. image: {
  55401. source: "./media/characters/ash´iika/head.svg",
  55402. extra: 348/291,
  55403. bottom: 45/393
  55404. },
  55405. form: "anthro"
  55406. },
  55407. feralSide: {
  55408. height: math.unit(870, "cm"),
  55409. weight: math.unit(17500, "kg"),
  55410. preyCapacity: math.unit(15, "people"),
  55411. name: "Side",
  55412. image: {
  55413. source: "./media/characters/ash´iika/feral.svg",
  55414. extra: 595/199,
  55415. bottom: 7/602
  55416. },
  55417. form: "feral",
  55418. default: true,
  55419. },
  55420. },
  55421. [
  55422. {
  55423. name: "Normal",
  55424. height: math.unit(556, "cm"),
  55425. default: true,
  55426. form: "anthro"
  55427. },
  55428. {
  55429. name: "Macro",
  55430. height: math.unit(88, "meters"),
  55431. form: "anthro"
  55432. },
  55433. {
  55434. name: "Normal",
  55435. height: math.unit(870, "cm"),
  55436. default: true,
  55437. form: "feral"
  55438. },
  55439. {
  55440. name: "Large",
  55441. height: math.unit(25, "meters"),
  55442. form: "feral"
  55443. },
  55444. ],
  55445. {
  55446. "anthro": {
  55447. name: "Anthro",
  55448. default: true
  55449. },
  55450. "feral": {
  55451. name: "Feral",
  55452. },
  55453. }
  55454. ))
  55455. characterMakers.push(() => makeCharacter(
  55456. { name: "Yen", species: ["hrothgar"], tags: ["anthro"] },
  55457. {
  55458. front: {
  55459. height: math.unit(10, "feet"),
  55460. weight: math.unit(800, "lb"),
  55461. name: "Front",
  55462. image: {
  55463. source: "./media/characters/yen/front.svg",
  55464. extra: 443/411,
  55465. bottom: 6/449
  55466. }
  55467. },
  55468. sleeping: {
  55469. height: math.unit(10, "feet"),
  55470. weight: math.unit(800, "lb"),
  55471. name: "Sleeping",
  55472. image: {
  55473. source: "./media/characters/yen/sleeping.svg",
  55474. extra: 470/422,
  55475. bottom: 0/470
  55476. }
  55477. },
  55478. head: {
  55479. height: math.unit(2.2, "feet"),
  55480. name: "Head",
  55481. image: {
  55482. source: "./media/characters/yen/head.svg"
  55483. }
  55484. },
  55485. headAlt: {
  55486. height: math.unit(2.1, "feet"),
  55487. name: "Head (Alt)",
  55488. image: {
  55489. source: "./media/characters/yen/head-alt.svg"
  55490. }
  55491. },
  55492. },
  55493. [
  55494. {
  55495. name: "Normal",
  55496. height: math.unit(10, "feet"),
  55497. default: true
  55498. },
  55499. ]
  55500. ))
  55501. characterMakers.push(() => makeCharacter(
  55502. { name: "Citra", species: ["dragon"], tags: ["anthro"] },
  55503. {
  55504. front: {
  55505. height: math.unit(12, "feet"),
  55506. name: "Front",
  55507. image: {
  55508. source: "./media/characters/citra/front.svg",
  55509. extra: 1950/1710,
  55510. bottom: 47/1997
  55511. }
  55512. },
  55513. },
  55514. [
  55515. {
  55516. name: "Normal",
  55517. height: math.unit(12, "feet"),
  55518. default: true
  55519. },
  55520. ]
  55521. ))
  55522. characterMakers.push(() => makeCharacter(
  55523. { name: "Sholstim", species: ["dragon"], tags: ["feral"] },
  55524. {
  55525. side: {
  55526. height: math.unit(7 + 10/12, "feet"),
  55527. name: "Side",
  55528. image: {
  55529. source: "./media/characters/sholstim/side.svg",
  55530. extra: 786/682,
  55531. bottom: 40/826
  55532. }
  55533. },
  55534. },
  55535. [
  55536. {
  55537. name: "Normal",
  55538. height: math.unit(7 + 10/12, "feet"),
  55539. default: true
  55540. },
  55541. ]
  55542. ))
  55543. characterMakers.push(() => makeCharacter(
  55544. { name: "Aggyn", species: ["human", "cobra"], tags: ["anthro"] },
  55545. {
  55546. front: {
  55547. height: math.unit(3.10, "meters"),
  55548. name: "Front",
  55549. image: {
  55550. source: "./media/characters/aggyn/front.svg",
  55551. extra: 1188/963,
  55552. bottom: 24/1212
  55553. }
  55554. },
  55555. },
  55556. [
  55557. {
  55558. name: "Normal",
  55559. height: math.unit(3.10, "meters"),
  55560. default: true
  55561. },
  55562. ]
  55563. ))
  55564. characterMakers.push(() => makeCharacter(
  55565. { name: "Alsandair Hergenroether", species: ["pangolin", "deity"], tags: ["anthro"] },
  55566. {
  55567. front: {
  55568. height: math.unit(7 + 5/12, "feet"),
  55569. weight: math.unit(687, "lb"),
  55570. name: "Front",
  55571. image: {
  55572. source: "./media/characters/alsandair-hergenroether/front.svg",
  55573. extra: 1251/1186,
  55574. bottom: 75/1326
  55575. }
  55576. },
  55577. back: {
  55578. height: math.unit(7 + 5/12, "feet"),
  55579. weight: math.unit(687, "lb"),
  55580. name: "Back",
  55581. image: {
  55582. source: "./media/characters/alsandair-hergenroether/back.svg",
  55583. extra: 1290/1229,
  55584. bottom: 17/1307
  55585. }
  55586. },
  55587. },
  55588. [
  55589. {
  55590. name: "Max Compression",
  55591. height: math.unit(7 + 5/12, "feet"),
  55592. default: true
  55593. },
  55594. {
  55595. name: "\"Normal\"",
  55596. height: math.unit(2, "universes")
  55597. },
  55598. ]
  55599. ))
  55600. characterMakers.push(() => makeCharacter(
  55601. { name: "Ie", species: ["teshari"], tags: ["anthro"] },
  55602. {
  55603. front: {
  55604. height: math.unit(4 + 1/12, "feet"),
  55605. weight: math.unit(92, "lb"),
  55606. name: "Front",
  55607. image: {
  55608. source: "./media/characters/ie/front.svg",
  55609. extra: 1585/1352,
  55610. bottom: 91/1676
  55611. }
  55612. },
  55613. },
  55614. [
  55615. {
  55616. name: "Normal",
  55617. height: math.unit(4 + 1/12, "feet"),
  55618. default: true
  55619. },
  55620. ]
  55621. ))
  55622. characterMakers.push(() => makeCharacter(
  55623. { name: "Willow", species: ["nargacuga", "garchomp"], tags: ["anthro", "taur"] },
  55624. {
  55625. anthro: {
  55626. height: math.unit(6, "feet"),
  55627. weight: math.unit(150, "lb"),
  55628. name: "Front",
  55629. image: {
  55630. source: "./media/characters/willow/anthro.svg",
  55631. extra: 1073/986,
  55632. bottom: 34/1107
  55633. },
  55634. form: "anthro",
  55635. default: true
  55636. },
  55637. taur: {
  55638. height: math.unit(6, "feet"),
  55639. weight: math.unit(150, "lb"),
  55640. name: "Side",
  55641. image: {
  55642. source: "./media/characters/willow/taur.svg",
  55643. extra: 647/512,
  55644. bottom: 136/783
  55645. },
  55646. form: "taur",
  55647. default: true
  55648. },
  55649. },
  55650. [
  55651. {
  55652. name: "Humanoid",
  55653. height: math.unit(2.7, "meters"),
  55654. form: "anthro"
  55655. },
  55656. {
  55657. name: "Normal",
  55658. height: math.unit(9, "meters"),
  55659. form: "anthro",
  55660. default: true
  55661. },
  55662. {
  55663. name: "Humanoid",
  55664. height: math.unit(2.1, "meters"),
  55665. form: "taur"
  55666. },
  55667. {
  55668. name: "Normal",
  55669. height: math.unit(7, "meters"),
  55670. form: "taur",
  55671. default: true
  55672. },
  55673. ],
  55674. {
  55675. "anthro": {
  55676. name: "Anthro",
  55677. default: true
  55678. },
  55679. "taur": {
  55680. name: "Taur",
  55681. },
  55682. }
  55683. ))
  55684. characterMakers.push(() => makeCharacter(
  55685. { name: "Kyan", species: ["sable"], tags: ["anthro"] },
  55686. {
  55687. front: {
  55688. height: math.unit(2 + 5/12, "feet"),
  55689. name: "Front",
  55690. image: {
  55691. source: "./media/characters/kyan/front.svg",
  55692. extra: 460/334,
  55693. bottom: 23/483
  55694. },
  55695. extraAttributes: {
  55696. "toeLength": {
  55697. name: "Toe Length",
  55698. power: 1,
  55699. type: "length",
  55700. base: math.unit(7, "cm")
  55701. },
  55702. "toeclawLength": {
  55703. name: "Toeclaw Length",
  55704. power: 1,
  55705. type: "length",
  55706. base: math.unit(4.7, "cm")
  55707. },
  55708. "earHeight": {
  55709. name: "Ear Height",
  55710. power: 1,
  55711. type: "length",
  55712. base: math.unit(14.1, "cm")
  55713. },
  55714. }
  55715. },
  55716. paws: {
  55717. height: math.unit(0.45, "feet"),
  55718. name: "Paws",
  55719. image: {
  55720. source: "./media/characters/kyan/paws.svg",
  55721. extra: 581/581,
  55722. bottom: 114/695
  55723. }
  55724. },
  55725. },
  55726. [
  55727. {
  55728. name: "Normal",
  55729. height: math.unit(2 + 5/12, "feet"),
  55730. default: true
  55731. },
  55732. ]
  55733. ))
  55734. characterMakers.push(() => makeCharacter(
  55735. { name: "Xazzon", species: ["deino"], tags: ["anthro"] },
  55736. {
  55737. front: {
  55738. height: math.unit(2 + 2/3, "feet"),
  55739. name: "Front",
  55740. image: {
  55741. source: "./media/characters/xazzon/front.svg",
  55742. extra: 1109/984,
  55743. bottom: 42/1151
  55744. }
  55745. },
  55746. back: {
  55747. height: math.unit(2 + 2/3, "feet"),
  55748. name: "Back",
  55749. image: {
  55750. source: "./media/characters/xazzon/back.svg",
  55751. extra: 1095/971,
  55752. bottom: 23/1118
  55753. }
  55754. },
  55755. },
  55756. [
  55757. {
  55758. name: "Normal",
  55759. height: math.unit(2 + 2/3, "feet"),
  55760. default: true
  55761. },
  55762. ]
  55763. ))
  55764. characterMakers.push(() => makeCharacter(
  55765. { name: "Khyla Shadowsong", species: ["charr"], tags: ["anthro"] },
  55766. {
  55767. front: {
  55768. height: math.unit(8, "feet"),
  55769. weight: math.unit(300, "lb"),
  55770. name: "Front",
  55771. image: {
  55772. source: "./media/characters/khyla-shadowsong/front.svg",
  55773. extra: 861/798,
  55774. bottom: 32/893
  55775. }
  55776. },
  55777. side: {
  55778. height: math.unit(8, "feet"),
  55779. weight: math.unit(300, "lb"),
  55780. name: "Side",
  55781. image: {
  55782. source: "./media/characters/khyla-shadowsong/side.svg",
  55783. extra: 790/750,
  55784. bottom: 87/877
  55785. }
  55786. },
  55787. back: {
  55788. height: math.unit(8, "feet"),
  55789. weight: math.unit(300, "lb"),
  55790. name: "Back",
  55791. image: {
  55792. source: "./media/characters/khyla-shadowsong/back.svg",
  55793. extra: 855/808,
  55794. bottom: 14/869
  55795. }
  55796. },
  55797. head: {
  55798. height: math.unit(2.7, "feet"),
  55799. name: "Head",
  55800. image: {
  55801. source: "./media/characters/khyla-shadowsong/head.svg"
  55802. }
  55803. },
  55804. },
  55805. [
  55806. {
  55807. name: "Micro",
  55808. height: math.unit(6, "inches")
  55809. },
  55810. {
  55811. name: "Normal",
  55812. height: math.unit(8, "feet"),
  55813. default: true
  55814. },
  55815. ]
  55816. ))
  55817. characterMakers.push(() => makeCharacter(
  55818. { name: "Tiden", species: ["housecat"], tags: ["anthro"] },
  55819. {
  55820. hyperFront: {
  55821. height: math.unit(9 + 4/12, "feet"),
  55822. weight: math.unit(2000, "lb"),
  55823. name: "Front",
  55824. image: {
  55825. source: "./media/characters/tiden/hyper-front.svg",
  55826. extra: 400/382,
  55827. bottom: 6/406
  55828. },
  55829. form: "hyper",
  55830. },
  55831. regularFront: {
  55832. height: math.unit(7 + 10/12, "feet"),
  55833. weight: math.unit(470, "lb"),
  55834. name: "Front",
  55835. image: {
  55836. source: "./media/characters/tiden/regular-front.svg",
  55837. extra: 468/442,
  55838. bottom: 6/474
  55839. },
  55840. form: "regular",
  55841. },
  55842. },
  55843. [
  55844. {
  55845. name: "Normal",
  55846. height: math.unit(9 + 4/12, "feet"),
  55847. default: true,
  55848. form: "hyper"
  55849. },
  55850. {
  55851. name: "Normal",
  55852. height: math.unit(7 + 10/12, "feet"),
  55853. default: true,
  55854. form: "regular"
  55855. },
  55856. ],
  55857. {
  55858. "hyper": {
  55859. name: "Hyper",
  55860. default: true
  55861. },
  55862. "regular": {
  55863. name: "Regular",
  55864. },
  55865. }
  55866. ))
  55867. characterMakers.push(() => makeCharacter(
  55868. { name: "Jason Crowe", species: ["gryphon", "raven", "bombay-cat"], tags: ["feral"] },
  55869. {
  55870. side: {
  55871. height: math.unit(6, "feet"),
  55872. weight: math.unit(150, "lb"),
  55873. name: "Side",
  55874. image: {
  55875. source: "./media/characters/jason-crowe/side.svg",
  55876. extra: 1771/766,
  55877. bottom: 219/1990
  55878. }
  55879. },
  55880. },
  55881. [
  55882. {
  55883. name: "Pocket Gryphon",
  55884. height: math.unit(6, "cm")
  55885. },
  55886. {
  55887. name: "Raven",
  55888. height: math.unit(60, "cm")
  55889. },
  55890. {
  55891. name: "Normal",
  55892. height: math.unit(1, "meter"),
  55893. default: true
  55894. },
  55895. ]
  55896. ))
  55897. characterMakers.push(() => makeCharacter(
  55898. { name: "Django", species: ["maine-coon"], tags: ["anthro"] },
  55899. {
  55900. front: {
  55901. height: math.unit(9 + 6/12, "feet"),
  55902. weight: math.unit(1100, "lb"),
  55903. name: "Front",
  55904. image: {
  55905. source: "./media/characters/django/front.svg",
  55906. extra: 1231/1136,
  55907. bottom: 34/1265
  55908. }
  55909. },
  55910. side: {
  55911. height: math.unit(9 + 6/12, "feet"),
  55912. weight: math.unit(1100, "lb"),
  55913. name: "Side",
  55914. image: {
  55915. source: "./media/characters/django/side.svg",
  55916. extra: 1267/1174,
  55917. bottom: 9/1276
  55918. }
  55919. },
  55920. },
  55921. [
  55922. {
  55923. name: "Normal",
  55924. height: math.unit(9 + 6/12, "feet"),
  55925. default: true
  55926. },
  55927. {
  55928. name: "Macro 1",
  55929. height: math.unit(50, "feet")
  55930. },
  55931. {
  55932. name: "Macro 2",
  55933. height: math.unit(500, "feet")
  55934. },
  55935. {
  55936. name: "Mega Macro",
  55937. height: math.unit(5300, "feet")
  55938. },
  55939. ]
  55940. ))
  55941. characterMakers.push(() => makeCharacter(
  55942. { name: "Eri", species: ["moth", "alien"], tags: ["anthro"] },
  55943. {
  55944. frontSfw: {
  55945. height: math.unit(120, "cm"),
  55946. weight: math.unit(15, "kg"),
  55947. name: "Front (SFW)",
  55948. image: {
  55949. source: "./media/characters/eri/front-sfw.svg",
  55950. extra: 1014/939,
  55951. bottom: 37/1051
  55952. },
  55953. form: "moth",
  55954. },
  55955. frontNsfw: {
  55956. height: math.unit(120, "cm"),
  55957. weight: math.unit(15, "kg"),
  55958. name: "Front (NSFW)",
  55959. image: {
  55960. source: "./media/characters/eri/front-nsfw.svg",
  55961. extra: 1014/939,
  55962. bottom: 37/1051
  55963. },
  55964. form: "moth",
  55965. default: true
  55966. },
  55967. egg: {
  55968. height: math.unit(10, "cm"),
  55969. name: "Egg",
  55970. image: {
  55971. source: "./media/characters/eri/egg.svg"
  55972. },
  55973. form: "egg",
  55974. default: true
  55975. },
  55976. },
  55977. [
  55978. {
  55979. name: "Normal",
  55980. height: math.unit(120, "cm"),
  55981. default: true,
  55982. form: "moth"
  55983. },
  55984. {
  55985. name: "Normal",
  55986. height: math.unit(10, "cm"),
  55987. default: true,
  55988. form: "egg"
  55989. },
  55990. ],
  55991. {
  55992. "moth": {
  55993. name: "Moth",
  55994. default: true
  55995. },
  55996. "egg": {
  55997. name: "Egg",
  55998. },
  55999. }
  56000. ))
  56001. characterMakers.push(() => makeCharacter(
  56002. { name: "Bishop Dowser", species: ["red-panda"], tags: ["anthro"] },
  56003. {
  56004. front: {
  56005. height: math.unit(200, "feet"),
  56006. name: "Front",
  56007. image: {
  56008. source: "./media/characters/bishop-dowser/front.svg",
  56009. extra: 933/868,
  56010. bottom: 106/1039
  56011. }
  56012. },
  56013. },
  56014. [
  56015. {
  56016. name: "Giant",
  56017. height: math.unit(200, "feet"),
  56018. default: true
  56019. },
  56020. ]
  56021. ))
  56022. characterMakers.push(() => makeCharacter(
  56023. { name: "Fryra", species: ["dragon", "cow"], tags: ["anthro"] },
  56024. {
  56025. front: {
  56026. height: math.unit(2, "meters"),
  56027. preyCapacity: math.unit(3, "people"),
  56028. name: "Front",
  56029. image: {
  56030. source: "./media/characters/fryra/front.svg",
  56031. extra: 1025/948,
  56032. bottom: 30/1055
  56033. },
  56034. extraAttributes: {
  56035. "breastVolume": {
  56036. name: "Breast Volume",
  56037. power: 3,
  56038. type: "volume",
  56039. base: math.unit(8, "liters")
  56040. },
  56041. }
  56042. },
  56043. back: {
  56044. height: math.unit(2, "meters"),
  56045. preyCapacity: math.unit(3, "people"),
  56046. name: "Back",
  56047. image: {
  56048. source: "./media/characters/fryra/back.svg",
  56049. extra: 993/938,
  56050. bottom: 38/1031
  56051. },
  56052. extraAttributes: {
  56053. "breastVolume": {
  56054. name: "Breast Volume",
  56055. power: 3,
  56056. type: "volume",
  56057. base: math.unit(8, "liters")
  56058. },
  56059. }
  56060. },
  56061. head: {
  56062. height: math.unit(1.33, "feet"),
  56063. name: "Head",
  56064. image: {
  56065. source: "./media/characters/fryra/head.svg"
  56066. }
  56067. },
  56068. maw: {
  56069. height: math.unit(0.56, "feet"),
  56070. name: "Maw",
  56071. image: {
  56072. source: "./media/characters/fryra/maw.svg"
  56073. }
  56074. },
  56075. },
  56076. [
  56077. {
  56078. name: "Micro",
  56079. height: math.unit(5, "cm")
  56080. },
  56081. {
  56082. name: "Normal",
  56083. height: math.unit(2, "meters"),
  56084. default: true
  56085. },
  56086. {
  56087. name: "Small Macro",
  56088. height: math.unit(8, "meters")
  56089. },
  56090. {
  56091. name: "Macro",
  56092. height: math.unit(50, "meters")
  56093. },
  56094. {
  56095. name: "Megamacro",
  56096. height: math.unit(1, "km")
  56097. },
  56098. {
  56099. name: "Planetary",
  56100. height: math.unit(300000, "km")
  56101. },
  56102. {
  56103. name: "Universal",
  56104. height: math.unit(250, "lightyears")
  56105. },
  56106. {
  56107. name: "Fabric of Reality",
  56108. height: math.unit(1000, "multiverses")
  56109. },
  56110. ]
  56111. ))
  56112. characterMakers.push(() => makeCharacter(
  56113. { name: "Fiera", species: ["husky"], tags: ["anthro"] },
  56114. {
  56115. frontDressed: {
  56116. height: math.unit(6 + 2/12, "feet"),
  56117. name: "Front (Dressed)",
  56118. image: {
  56119. source: "./media/characters/fiera/front-dressed.svg",
  56120. extra: 1883/1793,
  56121. bottom: 70/1953
  56122. }
  56123. },
  56124. backDressed: {
  56125. height: math.unit(6 + 2/12, "feet"),
  56126. name: "Back (Dressed)",
  56127. image: {
  56128. source: "./media/characters/fiera/back-dressed.svg",
  56129. extra: 1847/1780,
  56130. bottom: 70/1917
  56131. }
  56132. },
  56133. frontNude: {
  56134. height: math.unit(6 + 2/12, "feet"),
  56135. name: "Front (Nude)",
  56136. image: {
  56137. source: "./media/characters/fiera/front-nude.svg",
  56138. extra: 1875/1785,
  56139. bottom: 66/1941
  56140. }
  56141. },
  56142. backNude: {
  56143. height: math.unit(6 + 2/12, "feet"),
  56144. name: "Back (Nude)",
  56145. image: {
  56146. source: "./media/characters/fiera/back-nude.svg",
  56147. extra: 1855/1788,
  56148. bottom: 44/1899
  56149. }
  56150. },
  56151. maw: {
  56152. height: math.unit(1.3, "feet"),
  56153. name: "Maw",
  56154. image: {
  56155. source: "./media/characters/fiera/maw.svg"
  56156. }
  56157. },
  56158. paw: {
  56159. height: math.unit(1, "feet"),
  56160. name: "Paw",
  56161. image: {
  56162. source: "./media/characters/fiera/paw.svg"
  56163. }
  56164. },
  56165. shoe: {
  56166. height: math.unit(1.05, "feet"),
  56167. name: "Shoe",
  56168. image: {
  56169. source: "./media/characters/fiera/shoe.svg"
  56170. }
  56171. },
  56172. },
  56173. [
  56174. {
  56175. name: "Normal",
  56176. height: math.unit(6 + 2/12, "feet"),
  56177. default: true
  56178. },
  56179. {
  56180. name: "Size Difference",
  56181. height: math.unit(13, "feet")
  56182. },
  56183. {
  56184. name: "Macro",
  56185. height: math.unit(60, "feet")
  56186. },
  56187. {
  56188. name: "Mega Macro",
  56189. height: math.unit(200, "feet")
  56190. },
  56191. ]
  56192. ))
  56193. characterMakers.push(() => makeCharacter(
  56194. { name: "Flare", species: ["husky"], tags: ["anthro"] },
  56195. {
  56196. back: {
  56197. height: math.unit(6, "feet"),
  56198. name: "Back",
  56199. image: {
  56200. source: "./media/characters/flare/back.svg",
  56201. extra: 1883/1765,
  56202. bottom: 32/1915
  56203. }
  56204. },
  56205. },
  56206. [
  56207. {
  56208. name: "Normal",
  56209. height: math.unit(6 + 2/12, "feet"),
  56210. default: true
  56211. },
  56212. {
  56213. name: "Size Difference",
  56214. height: math.unit(13, "feet")
  56215. },
  56216. {
  56217. name: "Macro",
  56218. height: math.unit(60, "feet")
  56219. },
  56220. {
  56221. name: "Macro 2",
  56222. height: math.unit(100, "feet")
  56223. },
  56224. {
  56225. name: "Mega Macro",
  56226. height: math.unit(200, "feet")
  56227. },
  56228. ]
  56229. ))
  56230. characterMakers.push(() => makeCharacter(
  56231. { name: "Hanna", species: ["coelacanth"], tags: ["anthro"] },
  56232. {
  56233. front: {
  56234. height: math.unit(2.2, "m"),
  56235. weight: math.unit(300, "kg"),
  56236. name: "Front",
  56237. image: {
  56238. source: "./media/characters/hanna/front.svg",
  56239. extra: 1696/1502,
  56240. bottom: 206/1902
  56241. }
  56242. },
  56243. },
  56244. [
  56245. {
  56246. name: "Humanoid",
  56247. height: math.unit(2.2, "meters")
  56248. },
  56249. {
  56250. name: "Normal",
  56251. height: math.unit(4.8, "meters"),
  56252. default: true
  56253. },
  56254. ]
  56255. ))
  56256. characterMakers.push(() => makeCharacter(
  56257. { name: "Argo", species: ["silvally"], tags: ["taur"] },
  56258. {
  56259. front: {
  56260. height: math.unit(2.8, "meters"),
  56261. name: "Front",
  56262. image: {
  56263. source: "./media/characters/argo/front.svg",
  56264. extra: 731/518,
  56265. bottom: 84/815
  56266. }
  56267. },
  56268. },
  56269. [
  56270. {
  56271. name: "Normal",
  56272. height: math.unit(3, "meters"),
  56273. default: true
  56274. },
  56275. ]
  56276. ))
  56277. characterMakers.push(() => makeCharacter(
  56278. { name: "Sybil", species: ["scolipede", "typhlosion"], tags: ["feral"] },
  56279. {
  56280. side: {
  56281. height: math.unit(3.8, "meters"),
  56282. name: "Side",
  56283. image: {
  56284. source: "./media/characters/sybil/side.svg",
  56285. extra: 382/361,
  56286. bottom: 25/407
  56287. }
  56288. },
  56289. },
  56290. [
  56291. {
  56292. name: "Normal",
  56293. height: math.unit(3.8, "meters"),
  56294. default: true
  56295. },
  56296. ]
  56297. ))
  56298. characterMakers.push(() => makeCharacter(
  56299. { name: "Plum", species: ["great-maccao"], tags: ["taur", "feral"] },
  56300. {
  56301. side: {
  56302. height: math.unit(6, "meters"),
  56303. name: "Side",
  56304. image: {
  56305. source: "./media/characters/plum/side.svg",
  56306. extra: 858/755,
  56307. bottom: 45/903
  56308. },
  56309. form: "taur",
  56310. default: true
  56311. },
  56312. back: {
  56313. height: math.unit(6.3, "meters"),
  56314. name: "Back",
  56315. image: {
  56316. source: "./media/characters/plum/back.svg",
  56317. extra: 887/813,
  56318. bottom: 32/919
  56319. },
  56320. form: "taur",
  56321. },
  56322. feral: {
  56323. height: math.unit(5.5, "meter"),
  56324. name: "Front",
  56325. image: {
  56326. source: "./media/characters/plum/feral.svg",
  56327. extra: 568/403,
  56328. bottom: 51/619
  56329. },
  56330. form: "feral",
  56331. default: true
  56332. },
  56333. head: {
  56334. height: math.unit(1.46, "meter"),
  56335. name: "Head",
  56336. image: {
  56337. source: "./media/characters/plum/head.svg"
  56338. },
  56339. form: "taur"
  56340. },
  56341. tailTop: {
  56342. height: math.unit(5.6, "meter"),
  56343. name: "Tail (Top)",
  56344. image: {
  56345. source: "./media/characters/plum/tail-top.svg"
  56346. },
  56347. form: "taur",
  56348. },
  56349. tailBottom: {
  56350. height: math.unit(5.6, "meter"),
  56351. name: "Tail (Bottom)",
  56352. image: {
  56353. source: "./media/characters/plum/tail-bottom.svg"
  56354. },
  56355. form: "taur",
  56356. },
  56357. feralHead: {
  56358. height: math.unit(2.56549521, "meter"),
  56359. name: "Head",
  56360. image: {
  56361. source: "./media/characters/plum/head.svg"
  56362. },
  56363. form: "feral"
  56364. },
  56365. feralTailTop: {
  56366. height: math.unit(5.44728435, "meter"),
  56367. name: "Tail (Top)",
  56368. image: {
  56369. source: "./media/characters/plum/tail-top.svg"
  56370. },
  56371. form: "feral",
  56372. },
  56373. feralTailBottom: {
  56374. height: math.unit(5.44728435, "meter"),
  56375. name: "Tail (Bottom)",
  56376. image: {
  56377. source: "./media/characters/plum/tail-bottom.svg"
  56378. },
  56379. form: "feral",
  56380. },
  56381. },
  56382. [
  56383. {
  56384. name: "Normal",
  56385. height: math.unit(6, "meters"),
  56386. default: true,
  56387. form: "taur"
  56388. },
  56389. {
  56390. name: "Normal",
  56391. height: math.unit(5.5, "meters"),
  56392. default: true,
  56393. form: "feral"
  56394. },
  56395. ],
  56396. {
  56397. "taur": {
  56398. name: "Taur",
  56399. default: true
  56400. },
  56401. "feral": {
  56402. name: "Feral",
  56403. },
  56404. }
  56405. ))
  56406. characterMakers.push(() => makeCharacter(
  56407. { name: "Celeste (Kitsune)", species: ["kitsune"], tags: ["anthro"] },
  56408. {
  56409. front: {
  56410. height: math.unit(6, "feet"),
  56411. weight: math.unit(115, "lb"),
  56412. name: "Front",
  56413. image: {
  56414. source: "./media/characters/celeste-kitsune/front.svg",
  56415. extra: 393/366,
  56416. bottom: 7/400
  56417. }
  56418. },
  56419. side: {
  56420. height: math.unit(6, "feet"),
  56421. weight: math.unit(115, "lb"),
  56422. name: "Side",
  56423. image: {
  56424. source: "./media/characters/celeste-kitsune/side.svg",
  56425. extra: 818/765,
  56426. bottom: 40/858
  56427. }
  56428. },
  56429. },
  56430. [
  56431. {
  56432. name: "Megamacro",
  56433. height: math.unit(1500, "miles"),
  56434. default: true
  56435. },
  56436. ]
  56437. ))
  56438. characterMakers.push(() => makeCharacter(
  56439. { name: "Io", species: ["shapeshifter"], tags: ["anthro"] },
  56440. {
  56441. front: {
  56442. height: math.unit(8, "meters"),
  56443. name: "Front",
  56444. image: {
  56445. source: "./media/characters/io/front.svg",
  56446. extra: 865/722,
  56447. bottom: 58/923
  56448. }
  56449. },
  56450. back: {
  56451. height: math.unit(8, "meters"),
  56452. name: "Back",
  56453. image: {
  56454. source: "./media/characters/io/back.svg",
  56455. extra: 920/776,
  56456. bottom: 42/962
  56457. }
  56458. },
  56459. head: {
  56460. height: math.unit(5.09, "meters"),
  56461. name: "Head",
  56462. image: {
  56463. source: "./media/characters/io/head.svg"
  56464. }
  56465. },
  56466. hand: {
  56467. height: math.unit(1.6, "meters"),
  56468. name: "Hand",
  56469. image: {
  56470. source: "./media/characters/io/hand.svg"
  56471. }
  56472. },
  56473. foot: {
  56474. height: math.unit(2.4, "meters"),
  56475. name: "Foot",
  56476. image: {
  56477. source: "./media/characters/io/foot.svg"
  56478. }
  56479. },
  56480. },
  56481. [
  56482. {
  56483. name: "Normal",
  56484. height: math.unit(8, "meters"),
  56485. default: true
  56486. },
  56487. ]
  56488. ))
  56489. characterMakers.push(() => makeCharacter(
  56490. { name: "Silas", species: ["skaven"], tags: ["anthro"] },
  56491. {
  56492. side: {
  56493. height: math.unit(6 + 3/12, "feet"),
  56494. weight: math.unit(225, "lb"),
  56495. name: "Side",
  56496. image: {
  56497. source: "./media/characters/silas/side.svg",
  56498. extra: 703/653,
  56499. bottom: 23/726
  56500. },
  56501. extraAttributes: {
  56502. "pawLength": {
  56503. name: "Paw Length",
  56504. power: 1,
  56505. type: "length",
  56506. base: math.unit(12, "inches")
  56507. },
  56508. "pawWidth": {
  56509. name: "Paw Width",
  56510. power: 1,
  56511. type: "length",
  56512. base: math.unit(4.5, "inches")
  56513. },
  56514. "pawArea": {
  56515. name: "Paw Area",
  56516. power: 2,
  56517. type: "area",
  56518. base: math.unit(12 * 4.5, "inches^2")
  56519. },
  56520. }
  56521. },
  56522. },
  56523. [
  56524. {
  56525. name: "Normal",
  56526. height: math.unit(6 + 3/12, "feet"),
  56527. default: true
  56528. },
  56529. ]
  56530. ))
  56531. characterMakers.push(() => makeCharacter(
  56532. { name: "Zari", species: ["otter"], tags: ["anthro"] },
  56533. {
  56534. back: {
  56535. height: math.unit(1.6, "meters"),
  56536. weight: math.unit(150, "lb"),
  56537. name: "Back",
  56538. image: {
  56539. source: "./media/characters/zari/back.svg",
  56540. extra: 424/411,
  56541. bottom: 32/456
  56542. },
  56543. extraAttributes: {
  56544. "bladderCapacity": {
  56545. name: "Bladder Size",
  56546. power: 3,
  56547. type: "volume",
  56548. base: math.unit(500, "mL")
  56549. },
  56550. "bladderFlow": {
  56551. name: "Flow Rate",
  56552. power: 3,
  56553. type: "volume",
  56554. base: math.unit(25, "mL")
  56555. },
  56556. }
  56557. },
  56558. },
  56559. [
  56560. {
  56561. name: "Normal",
  56562. height: math.unit(1.6, "meters"),
  56563. default: true
  56564. },
  56565. ]
  56566. ))
  56567. characterMakers.push(() => makeCharacter(
  56568. { name: "Charlie (Human)", species: ["human"], tags: ["anthro"] },
  56569. {
  56570. front: {
  56571. height: math.unit(25, "feet"),
  56572. weight: math.unit(5, "tons"),
  56573. name: "Front",
  56574. image: {
  56575. source: "./media/characters/charlie-human/front.svg",
  56576. extra: 1870/1740,
  56577. bottom: 102/1972
  56578. },
  56579. extraAttributes: {
  56580. "dickLength": {
  56581. name: "Dick Length",
  56582. power: 1,
  56583. type: "length",
  56584. base: math.unit(9, "feet")
  56585. },
  56586. }
  56587. },
  56588. back: {
  56589. height: math.unit(25, "feet"),
  56590. weight: math.unit(5, "tons"),
  56591. name: "Back",
  56592. image: {
  56593. source: "./media/characters/charlie-human/back.svg",
  56594. extra: 1858/1733,
  56595. bottom: 105/1963
  56596. },
  56597. extraAttributes: {
  56598. "dickLength": {
  56599. name: "Dick Length",
  56600. power: 1,
  56601. type: "length",
  56602. base: math.unit(9, "feet")
  56603. },
  56604. }
  56605. },
  56606. },
  56607. [
  56608. {
  56609. name: "\"Normal\"",
  56610. height: math.unit(6 + 4/12, "feet")
  56611. },
  56612. {
  56613. name: "Big",
  56614. height: math.unit(25, "feet"),
  56615. default: true
  56616. },
  56617. ]
  56618. ))
  56619. characterMakers.push(() => makeCharacter(
  56620. { name: "Ookitsu", species: ["kitsune"], tags: ["anthro"] },
  56621. {
  56622. front: {
  56623. height: math.unit(6 + 4/12, "feet"),
  56624. weight: math.unit(320, "lb"),
  56625. name: "Front",
  56626. image: {
  56627. source: "./media/characters/ookitsu/front.svg",
  56628. extra: 1160/976,
  56629. bottom: 38/1198
  56630. }
  56631. },
  56632. frontNsfw: {
  56633. height: math.unit(6 + 4/12, "feet"),
  56634. weight: math.unit(320, "lb"),
  56635. name: "Front (NSFW)",
  56636. image: {
  56637. source: "./media/characters/ookitsu/front-nsfw.svg",
  56638. extra: 1160/976,
  56639. bottom: 38/1198
  56640. }
  56641. },
  56642. back: {
  56643. height: math.unit(6 + 4/12, "feet"),
  56644. weight: math.unit(320, "lb"),
  56645. name: "Back",
  56646. image: {
  56647. source: "./media/characters/ookitsu/back.svg",
  56648. extra: 1030/975,
  56649. bottom: 70/1100
  56650. }
  56651. },
  56652. head: {
  56653. height: math.unit(1.79, "feet"),
  56654. name: "Head",
  56655. image: {
  56656. source: "./media/characters/ookitsu/head.svg"
  56657. }
  56658. },
  56659. hand: {
  56660. height: math.unit(0.92, "feet"),
  56661. name: "Hand",
  56662. image: {
  56663. source: "./media/characters/ookitsu/hand.svg"
  56664. }
  56665. },
  56666. tails: {
  56667. height: math.unit(3.3, "feet"),
  56668. name: "Tails",
  56669. image: {
  56670. source: "./media/characters/ookitsu/tails.svg"
  56671. }
  56672. },
  56673. dick: {
  56674. height: math.unit(1.10833, "feet"),
  56675. name: "Dick",
  56676. image: {
  56677. source: "./media/characters/ookitsu/dick.svg"
  56678. }
  56679. },
  56680. },
  56681. [
  56682. {
  56683. name: "Normal",
  56684. height: math.unit(6 + 4/12, "feet"),
  56685. default: true
  56686. },
  56687. {
  56688. name: "Macro",
  56689. height: math.unit(30, "feet")
  56690. },
  56691. ]
  56692. ))
  56693. characterMakers.push(() => makeCharacter(
  56694. { name: "JHusky", species: ["husky"], tags: ["anthro", "taur"] },
  56695. {
  56696. anthroFront: {
  56697. height: math.unit(6, "feet"),
  56698. weight: math.unit(250, "lb"),
  56699. name: "Front",
  56700. image: {
  56701. source: "./media/characters/jhusky/anthro-front.svg",
  56702. extra: 474/439,
  56703. bottom: 7/481
  56704. },
  56705. form: "anthro",
  56706. default: true
  56707. },
  56708. taurSideSfw: {
  56709. height: math.unit(6 + 4/12, "feet"),
  56710. weight: math.unit(500, "lb"),
  56711. name: "Side (SFW)",
  56712. image: {
  56713. source: "./media/characters/jhusky/taur-side-sfw.svg",
  56714. extra: 1741/1629,
  56715. bottom: 196/1937
  56716. },
  56717. form: "taur",
  56718. default: true
  56719. },
  56720. taurSideNsfw: {
  56721. height: math.unit(6 + 4/12, "feet"),
  56722. weight: math.unit(500, "lb"),
  56723. name: "Taur (NSFW)",
  56724. image: {
  56725. source: "./media/characters/jhusky/taur-side-nsfw.svg",
  56726. extra: 1741/1629,
  56727. bottom: 196/1937
  56728. },
  56729. form: "taur",
  56730. },
  56731. },
  56732. [
  56733. {
  56734. name: "Huge",
  56735. height: math.unit(500, "feet"),
  56736. form: "anthro"
  56737. },
  56738. {
  56739. name: "Macro",
  56740. height: math.unit(1000, "feet"),
  56741. default: true,
  56742. form: "anthro"
  56743. },
  56744. {
  56745. name: "Megamacro",
  56746. height: math.unit(10000, "feet"),
  56747. form: "anthro"
  56748. },
  56749. {
  56750. name: "Huge",
  56751. height: math.unit(528, "feet"),
  56752. form: "taur"
  56753. },
  56754. {
  56755. name: "Macro",
  56756. height: math.unit(1056, "feet"),
  56757. default: true,
  56758. form: "taur"
  56759. },
  56760. {
  56761. name: "Megamacro",
  56762. height: math.unit(10556, "feet"),
  56763. form: "taur"
  56764. },
  56765. ],
  56766. {
  56767. "anthro": {
  56768. name: "Anthro",
  56769. default: true
  56770. },
  56771. "taur": {
  56772. name: "Taur",
  56773. },
  56774. }
  56775. ))
  56776. characterMakers.push(() => makeCharacter(
  56777. { name: "Armail", species: ["obstagoon"], tags: ["anthro"] },
  56778. {
  56779. front: {
  56780. height: math.unit(8, "feet"),
  56781. weight: math.unit(500, "lb"),
  56782. name: "Front",
  56783. image: {
  56784. source: "./media/characters/armail/front.svg",
  56785. extra: 1753/1669,
  56786. bottom: 155/1908
  56787. }
  56788. },
  56789. back: {
  56790. height: math.unit(8, "feet"),
  56791. weight: math.unit(500, "lb"),
  56792. name: "Back",
  56793. image: {
  56794. source: "./media/characters/armail/back.svg",
  56795. extra: 1872/1803,
  56796. bottom: 63/1935
  56797. }
  56798. },
  56799. },
  56800. [
  56801. {
  56802. name: "Micro",
  56803. height: math.unit(0.25, "feet")
  56804. },
  56805. {
  56806. name: "Normal",
  56807. height: math.unit(8, "feet"),
  56808. default: true
  56809. },
  56810. {
  56811. name: "Mini-macro",
  56812. height: math.unit(30, "feet")
  56813. },
  56814. {
  56815. name: "Macro",
  56816. height: math.unit(400, "feet")
  56817. },
  56818. {
  56819. name: "Mega-macro",
  56820. height: math.unit(6000, "feet")
  56821. },
  56822. ]
  56823. ))
  56824. characterMakers.push(() => makeCharacter(
  56825. { name: "Wilfred T. Buxton", species: ["thomsons-gazelle"], tags: ["anthro"] },
  56826. {
  56827. front: {
  56828. height: math.unit(6 + 7/12, "feet"),
  56829. weight: math.unit(210, "lb"),
  56830. name: "Front",
  56831. image: {
  56832. source: "./media/characters/wilfred-t-buxton/front.svg",
  56833. extra: 1068/882,
  56834. bottom: 28/1096
  56835. }
  56836. },
  56837. },
  56838. [
  56839. {
  56840. name: "Normal",
  56841. height: math.unit(6 + 7/12, "feet"),
  56842. default: true
  56843. },
  56844. ]
  56845. ))
  56846. characterMakers.push(() => makeCharacter(
  56847. { name: "Leighton Marrow", species: ["deer"], tags: ["anthro"] },
  56848. {
  56849. front: {
  56850. height: math.unit(5 + 2/12, "feet"),
  56851. weight: math.unit(120, "lb"),
  56852. name: "Front",
  56853. image: {
  56854. source: "./media/characters/leighton-marrow/front.svg",
  56855. extra: 441/409,
  56856. bottom: 37/478
  56857. }
  56858. },
  56859. },
  56860. [
  56861. {
  56862. name: "Normal",
  56863. height: math.unit(5 + 2/12, "feet"),
  56864. default: true
  56865. },
  56866. ]
  56867. ))
  56868. characterMakers.push(() => makeCharacter(
  56869. { name: "Licos", species: ["werewolf"], tags: ["anthro", "taur"] },
  56870. {
  56871. front: {
  56872. height: math.unit(4, "meters"),
  56873. weight: math.unit(1200, "kg"),
  56874. name: "Front",
  56875. image: {
  56876. source: "./media/characters/licos/front.svg",
  56877. extra: 1727/1604,
  56878. bottom: 101/1828
  56879. },
  56880. form: "anthro",
  56881. default: true
  56882. },
  56883. taur_side: {
  56884. height: math.unit(20, "meters"),
  56885. weight: math.unit(1100000, "kg"),
  56886. name: "Side",
  56887. image: {
  56888. source: "./media/characters/licos/taur.svg",
  56889. extra: 1158/1091,
  56890. bottom: 80/1238
  56891. },
  56892. form: "taur",
  56893. default: true
  56894. },
  56895. },
  56896. [
  56897. {
  56898. name: "Normal",
  56899. height: math.unit(4, "meters"),
  56900. default: true,
  56901. form: "anthro"
  56902. },
  56903. {
  56904. name: "Normal",
  56905. height: math.unit(20, "meters"),
  56906. default: true,
  56907. form: "taur"
  56908. },
  56909. ],
  56910. {
  56911. "anthro": {
  56912. name: "Anthro",
  56913. default: true
  56914. },
  56915. "taur": {
  56916. name: "Taur",
  56917. },
  56918. }
  56919. ))
  56920. characterMakers.push(() => makeCharacter(
  56921. { name: "Theo (Monkey)", species: ["monkey"], tags: ["anthro"] },
  56922. {
  56923. front: {
  56924. height: math.unit(10 + 3/12, "feet"),
  56925. name: "Front",
  56926. image: {
  56927. source: "./media/characters/theo-monkey/front.svg",
  56928. extra: 1735/1658,
  56929. bottom: 73/1808
  56930. }
  56931. },
  56932. back: {
  56933. height: math.unit(10 + 3/12, "feet"),
  56934. name: "Back",
  56935. image: {
  56936. source: "./media/characters/theo-monkey/back.svg",
  56937. extra: 1742/1664,
  56938. bottom: 33/1775
  56939. }
  56940. },
  56941. head: {
  56942. height: math.unit(2.29, "feet"),
  56943. name: "Head",
  56944. image: {
  56945. source: "./media/characters/theo-monkey/head.svg"
  56946. }
  56947. },
  56948. handPalm: {
  56949. height: math.unit(1.73, "feet"),
  56950. name: "Hand (Palm)",
  56951. image: {
  56952. source: "./media/characters/theo-monkey/hand-palm.svg"
  56953. }
  56954. },
  56955. handBack: {
  56956. height: math.unit(1.63, "feet"),
  56957. name: "Hand (Back)",
  56958. image: {
  56959. source: "./media/characters/theo-monkey/hand-back.svg"
  56960. }
  56961. },
  56962. footSole: {
  56963. height: math.unit(2.15, "feet"),
  56964. name: "Foot (Sole)",
  56965. image: {
  56966. source: "./media/characters/theo-monkey/foot-sole.svg"
  56967. }
  56968. },
  56969. footSide: {
  56970. height: math.unit(1.6, "feet"),
  56971. name: "Foot (Side)",
  56972. image: {
  56973. source: "./media/characters/theo-monkey/foot-side.svg"
  56974. }
  56975. },
  56976. },
  56977. [
  56978. {
  56979. name: "Normal",
  56980. height: math.unit(10 + 3/12, "feet"),
  56981. default: true
  56982. },
  56983. ]
  56984. ))
  56985. characterMakers.push(() => makeCharacter(
  56986. { name: "Brook", species: ["serval"], tags: ["anthro"] },
  56987. {
  56988. front: {
  56989. height: math.unit(11, "feet"),
  56990. weight: math.unit(3000, "lb"),
  56991. preyCapacity: math.unit(10, "people"),
  56992. name: "Front",
  56993. image: {
  56994. source: "./media/characters/brook/front.svg",
  56995. extra: 909/835,
  56996. bottom: 108/1017
  56997. }
  56998. },
  56999. back: {
  57000. height: math.unit(11, "feet"),
  57001. weight: math.unit(3000, "lb"),
  57002. preyCapacity: math.unit(10, "people"),
  57003. name: "Back",
  57004. image: {
  57005. source: "./media/characters/brook/back.svg",
  57006. extra: 976/916,
  57007. bottom: 34/1010
  57008. }
  57009. },
  57010. backAlt: {
  57011. height: math.unit(11, "feet"),
  57012. weight: math.unit(3000, "lb"),
  57013. preyCapacity: math.unit(10, "people"),
  57014. name: "Back (Alt)",
  57015. image: {
  57016. source: "./media/characters/brook/back-alt.svg",
  57017. extra: 1283/1213,
  57018. bottom: 35/1318
  57019. }
  57020. },
  57021. bust: {
  57022. height: math.unit(9.0859030837, "feet"),
  57023. weight: math.unit(3000, "lb"),
  57024. preyCapacity: math.unit(10, "people"),
  57025. name: "Bust",
  57026. image: {
  57027. source: "./media/characters/brook/bust.svg",
  57028. extra: 2043/1923,
  57029. bottom: 0/2043
  57030. }
  57031. },
  57032. },
  57033. [
  57034. {
  57035. name: "Small",
  57036. height: math.unit(11, "feet"),
  57037. default: true
  57038. },
  57039. {
  57040. name: "Towering",
  57041. height: math.unit(5, "km")
  57042. },
  57043. {
  57044. name: "Enormous",
  57045. height: math.unit(25, "earths")
  57046. },
  57047. ]
  57048. ))
  57049. characterMakers.push(() => makeCharacter(
  57050. { name: "Squishi", species: ["swampert"], tags: ["anthro"] },
  57051. {
  57052. front: {
  57053. height: math.unit(4, "feet"),
  57054. weight: math.unit(150, "lb"),
  57055. name: "Front",
  57056. image: {
  57057. source: "./media/characters/squishi/front.svg",
  57058. extra: 1428/1271,
  57059. bottom: 30/1458
  57060. },
  57061. extraAttributes: {
  57062. "pawSize": {
  57063. name: "Paw Size",
  57064. power: 1,
  57065. type: "length",
  57066. base: math.unit(14, "ShoeSizeMensUS"),
  57067. defaultUnit: "ShoeSizeMensUS"
  57068. },
  57069. }
  57070. },
  57071. side: {
  57072. height: math.unit(4, "feet"),
  57073. weight: math.unit(150, "lb"),
  57074. name: "Side",
  57075. image: {
  57076. source: "./media/characters/squishi/side.svg",
  57077. extra: 1428/1271,
  57078. bottom: 30/1458
  57079. },
  57080. extraAttributes: {
  57081. "pawSize": {
  57082. name: "Paw Size",
  57083. power: 1,
  57084. type: "length",
  57085. base: math.unit(14, "ShoeSizeMensUS"),
  57086. defaultUnit: "ShoeSizeMensUS"
  57087. },
  57088. }
  57089. },
  57090. back: {
  57091. height: math.unit(4, "feet"),
  57092. weight: math.unit(150, "lb"),
  57093. name: "Back",
  57094. image: {
  57095. source: "./media/characters/squishi/back.svg",
  57096. extra: 1428/1271,
  57097. bottom: 30/1458
  57098. },
  57099. extraAttributes: {
  57100. "pawSize": {
  57101. name: "Paw Size",
  57102. power: 1,
  57103. type: "length",
  57104. base: math.unit(14, "ShoeSizeMensUS"),
  57105. defaultUnit: "ShoeSizeMensUS"
  57106. },
  57107. }
  57108. },
  57109. },
  57110. [
  57111. {
  57112. name: "Normal",
  57113. height: math.unit(4, "feet"),
  57114. default: true
  57115. },
  57116. ]
  57117. ))
  57118. characterMakers.push(() => makeCharacter(
  57119. { name: "Vincent Vasroc", species: ["red-fox"], tags: ["anthro"] },
  57120. {
  57121. front: {
  57122. height: math.unit(7 + 8/12, "feet"),
  57123. weight: math.unit(333, "lb"),
  57124. name: "Front",
  57125. image: {
  57126. source: "./media/characters/vincent-vasroc/front.svg",
  57127. extra: 1962/1860,
  57128. bottom: 41/2003
  57129. }
  57130. },
  57131. back: {
  57132. height: math.unit(7 + 8/12, "feet"),
  57133. weight: math.unit(333, "lb"),
  57134. name: "Back",
  57135. image: {
  57136. source: "./media/characters/vincent-vasroc/back.svg",
  57137. extra: 1952/1815,
  57138. bottom: 33/1985
  57139. }
  57140. },
  57141. paw: {
  57142. height: math.unit(1.24, "feet"),
  57143. name: "Paw",
  57144. image: {
  57145. source: "./media/characters/vincent-vasroc/paw.svg"
  57146. }
  57147. },
  57148. ear: {
  57149. height: math.unit(0.75, "feet"),
  57150. name: "Ear",
  57151. image: {
  57152. source: "./media/characters/vincent-vasroc/ear.svg"
  57153. }
  57154. },
  57155. },
  57156. [
  57157. {
  57158. name: "Nano",
  57159. height: math.unit(92, "micrometers")
  57160. },
  57161. {
  57162. name: "Normal",
  57163. height: math.unit(7 + 8/12, "feet"),
  57164. default: true
  57165. },
  57166. ]
  57167. ))
  57168. characterMakers.push(() => makeCharacter(
  57169. { name: "Ru-Kahn", species: ["fennec-fox"], tags: ["anthro"] },
  57170. {
  57171. frontNsfw: {
  57172. height: math.unit(40, "feet"),
  57173. weight: math.unit(58, "tons"),
  57174. name: "Front (NSFW)",
  57175. image: {
  57176. source: "./media/characters/ru-kahn/front-nsfw.svg",
  57177. extra: 1265/965,
  57178. bottom: 155/1420
  57179. }
  57180. },
  57181. frontSfw: {
  57182. height: math.unit(40, "feet"),
  57183. weight: math.unit(58, "tons"),
  57184. name: "Front (SFW)",
  57185. image: {
  57186. source: "./media/characters/ru-kahn/front-sfw.svg",
  57187. extra: 1265/965,
  57188. bottom: 80/1345
  57189. }
  57190. },
  57191. },
  57192. [
  57193. {
  57194. name: "Small",
  57195. height: math.unit(4, "feet")
  57196. },
  57197. {
  57198. name: "Normal",
  57199. height: math.unit(40, "feet"),
  57200. default: true
  57201. },
  57202. {
  57203. name: "Macro",
  57204. height: math.unit(400, "feet")
  57205. },
  57206. ]
  57207. ))
  57208. characterMakers.push(() => makeCharacter(
  57209. { name: "Sylvie LaForge", species: ["alligator"], tags: ["anthro"] },
  57210. {
  57211. frontNude: {
  57212. height: math.unit(6 + 5/12, "feet"),
  57213. name: "Front (Nude)",
  57214. image: {
  57215. source: "./media/characters/sylvie-laforge/front-nude.svg",
  57216. extra: 1369/1366,
  57217. bottom: 68/1437
  57218. }
  57219. },
  57220. frontDressed: {
  57221. height: math.unit(6 + 5/12, "feet"),
  57222. name: "Front (Dressed)",
  57223. image: {
  57224. source: "./media/characters/sylvie-laforge/front-dressed.svg",
  57225. extra: 1369/1366,
  57226. bottom: 68/1437
  57227. }
  57228. },
  57229. },
  57230. [
  57231. {
  57232. name: "Normal",
  57233. height: math.unit(6 + 5/12, "feet"),
  57234. default: true
  57235. },
  57236. {
  57237. name: "Maximum",
  57238. height: math.unit(1930, "feet")
  57239. },
  57240. ]
  57241. ))
  57242. characterMakers.push(() => makeCharacter(
  57243. { name: "Kaja", species: ["zoroark"], tags: ["anthro"] },
  57244. {
  57245. front: {
  57246. height: math.unit(5 + 6/12, "feet"),
  57247. name: "Front",
  57248. image: {
  57249. source: "./media/characters/kaja/front.svg",
  57250. extra: 1874/1514,
  57251. bottom: 117/1991
  57252. }
  57253. },
  57254. },
  57255. [
  57256. {
  57257. name: "Normal",
  57258. height: math.unit(5 + 6/12, "feet"),
  57259. default: true
  57260. },
  57261. ]
  57262. ))
  57263. characterMakers.push(() => makeCharacter(
  57264. { name: "Mark Smith", species: ["husky"], tags: ["anthro"] },
  57265. {
  57266. front: {
  57267. height: math.unit(5 + 9/12, "feet"),
  57268. weight: math.unit(200, "lb"),
  57269. name: "Front",
  57270. image: {
  57271. source: "./media/characters/mark-smith/front.svg",
  57272. extra: 1004/943,
  57273. bottom: 58/1062
  57274. }
  57275. },
  57276. back: {
  57277. height: math.unit(5 + 9/12, "feet"),
  57278. weight: math.unit(200, "lb"),
  57279. name: "Back",
  57280. image: {
  57281. source: "./media/characters/mark-smith/back.svg",
  57282. extra: 1023/953,
  57283. bottom: 24/1047
  57284. }
  57285. },
  57286. head: {
  57287. height: math.unit(1.82, "feet"),
  57288. name: "Head",
  57289. image: {
  57290. source: "./media/characters/mark-smith/head.svg"
  57291. }
  57292. },
  57293. hand: {
  57294. height: math.unit(1.4, "feet"),
  57295. name: "Hand",
  57296. image: {
  57297. source: "./media/characters/mark-smith/hand.svg"
  57298. }
  57299. },
  57300. paw: {
  57301. height: math.unit(1.69, "feet"),
  57302. name: "Paw",
  57303. image: {
  57304. source: "./media/characters/mark-smith/paw.svg"
  57305. }
  57306. },
  57307. },
  57308. [
  57309. {
  57310. name: "Micro",
  57311. height: math.unit(0.25, "inches")
  57312. },
  57313. {
  57314. name: "Normal",
  57315. height: math.unit(5 + 9/12, "feet"),
  57316. default: true
  57317. },
  57318. {
  57319. name: "Macro",
  57320. height: math.unit(500, "feet")
  57321. },
  57322. ]
  57323. ))
  57324. characterMakers.push(() => makeCharacter(
  57325. { name: "Rebecca 'Becky' Houston", species: ["gryphon"], tags: ["anthro"] },
  57326. {
  57327. frontNude: {
  57328. height: math.unit(6, "feet"),
  57329. name: "Front (Nude)",
  57330. image: {
  57331. source: "./media/characters/rebecca-becky-houston/front-nude.svg",
  57332. extra: 1384/1321,
  57333. bottom: 57/1441
  57334. }
  57335. },
  57336. frontDressed: {
  57337. height: math.unit(6, "feet"),
  57338. name: "Front (Dressed)",
  57339. image: {
  57340. source: "./media/characters/rebecca-becky-houston/front-dressed.svg",
  57341. extra: 1384/1321,
  57342. bottom: 57/1441
  57343. }
  57344. },
  57345. },
  57346. [
  57347. {
  57348. name: "Normal",
  57349. height: math.unit(6, "feet"),
  57350. default: true
  57351. },
  57352. {
  57353. name: "Maximum",
  57354. height: math.unit(1776, "feet")
  57355. },
  57356. ]
  57357. ))
  57358. characterMakers.push(() => makeCharacter(
  57359. { name: "Devos", species: ["dragon"], tags: ["feral"] },
  57360. {
  57361. front: {
  57362. height: math.unit(2 + 4/12, "feet"),
  57363. weight: math.unit(350, "lb"),
  57364. name: "Front",
  57365. image: {
  57366. source: "./media/characters/devos/front.svg",
  57367. extra: 958/852,
  57368. bottom: 143/1101
  57369. }
  57370. },
  57371. },
  57372. [
  57373. {
  57374. name: "Base",
  57375. height: math.unit(2 + 4/12, "feet"),
  57376. default: true
  57377. },
  57378. ]
  57379. ))
  57380. characterMakers.push(() => makeCharacter(
  57381. { name: "Hiveheart", species: ["sliver"], tags: ["anthro"] },
  57382. {
  57383. front: {
  57384. height: math.unit(9 + 2/12, "feet"),
  57385. name: "Front",
  57386. image: {
  57387. source: "./media/characters/hiveheart/front.svg",
  57388. extra: 394/364,
  57389. bottom: 65/459
  57390. }
  57391. },
  57392. back: {
  57393. height: math.unit(9 + 2/12, "feet"),
  57394. name: "Back",
  57395. image: {
  57396. source: "./media/characters/hiveheart/back.svg",
  57397. extra: 374/357,
  57398. bottom: 63/437
  57399. }
  57400. },
  57401. },
  57402. [
  57403. {
  57404. name: "Base",
  57405. height: math.unit(9 + 2/12, "feet"),
  57406. default: true
  57407. },
  57408. ]
  57409. ))
  57410. characterMakers.push(() => makeCharacter(
  57411. { name: "Bryn", species: ["moth"], tags: ["anthro"] },
  57412. {
  57413. front: {
  57414. height: math.unit(2.5, "inches"),
  57415. weight: math.unit(0.6, "oz"),
  57416. name: "Front",
  57417. image: {
  57418. source: "./media/characters/bryn/front.svg",
  57419. extra: 1484/1119,
  57420. bottom: 66/1550
  57421. }
  57422. },
  57423. back: {
  57424. height: math.unit(2.5, "inches"),
  57425. weight: math.unit(0.6, "oz"),
  57426. name: "Back",
  57427. image: {
  57428. source: "./media/characters/bryn/back.svg",
  57429. extra: 1472/1170,
  57430. bottom: 32/1504
  57431. }
  57432. },
  57433. wings: {
  57434. height: math.unit(2.5, "inches"),
  57435. weight: math.unit(0.6, "oz"),
  57436. name: "Wings",
  57437. image: {
  57438. source: "./media/characters/bryn/wings.svg",
  57439. extra: 567/448,
  57440. bottom: 10/577
  57441. }
  57442. },
  57443. dressed: {
  57444. height: math.unit(2.5, "inches"),
  57445. weight: math.unit(0.6, "oz"),
  57446. name: "Dressed",
  57447. image: {
  57448. source: "./media/characters/bryn/dressed.svg",
  57449. extra: 719/589,
  57450. bottom: 54/773
  57451. }
  57452. },
  57453. head: {
  57454. height: math.unit(1.75, "inches"),
  57455. name: "Head",
  57456. image: {
  57457. source: "./media/characters/bryn/head.svg"
  57458. }
  57459. },
  57460. foot: {
  57461. height: math.unit(0.4, "inches"),
  57462. name: "Foot",
  57463. image: {
  57464. source: "./media/characters/bryn/foot.svg"
  57465. }
  57466. },
  57467. },
  57468. [
  57469. {
  57470. name: "Normal",
  57471. height: math.unit(2.5, "inches"),
  57472. default: true
  57473. },
  57474. ]
  57475. ))
  57476. characterMakers.push(() => makeCharacter(
  57477. { name: "Delta", species: ["dragon"], tags: ["feral"] },
  57478. {
  57479. side: {
  57480. height: math.unit(7, "feet"),
  57481. weight: math.unit(657, "kg"),
  57482. name: "Side",
  57483. image: {
  57484. source: "./media/characters/delta/side.svg",
  57485. extra: 781/212,
  57486. bottom: 7/788
  57487. },
  57488. extraAttributes: {
  57489. "wingspan": {
  57490. name: "Wingspan",
  57491. power: 1,
  57492. type: "length",
  57493. base: math.unit(48, "feet")
  57494. },
  57495. "length": {
  57496. name: "Length",
  57497. power: 1,
  57498. type: "length",
  57499. base: math.unit(21, "feet")
  57500. },
  57501. "pawSize": {
  57502. name: "Paw Size",
  57503. power: 2,
  57504. type: "area",
  57505. base: math.unit(1.5*1.4, "feet^2")
  57506. },
  57507. }
  57508. },
  57509. },
  57510. [
  57511. {
  57512. name: "Normal",
  57513. height: math.unit(6, "feet"),
  57514. default: true
  57515. },
  57516. ]
  57517. ))
  57518. characterMakers.push(() => makeCharacter(
  57519. { name: "Pyrow", species: ["sergix"], tags: ["anthro"] },
  57520. {
  57521. front: {
  57522. height: math.unit(6, "feet"),
  57523. name: "Front",
  57524. image: {
  57525. source: "./media/characters/pyrow/front.svg",
  57526. extra: 513/486,
  57527. bottom: 14/527
  57528. }
  57529. },
  57530. frontWing: {
  57531. height: math.unit(6, "feet"),
  57532. name: "Front (Wing)",
  57533. image: {
  57534. source: "./media/characters/pyrow/front-wing.svg",
  57535. extra: 539/383,
  57536. bottom: 20/559
  57537. }
  57538. },
  57539. back: {
  57540. height: math.unit(6, "feet"),
  57541. name: "Back",
  57542. image: {
  57543. source: "./media/characters/pyrow/back.svg",
  57544. extra: 500/473,
  57545. bottom: 9/509
  57546. }
  57547. },
  57548. },
  57549. [
  57550. {
  57551. name: "Normal",
  57552. height: math.unit(6, "feet"),
  57553. default: true
  57554. },
  57555. ]
  57556. ))
  57557. characterMakers.push(() => makeCharacter(
  57558. { name: "Velikan", species: ["behemoth"], tags: ["anthro"] },
  57559. {
  57560. front: {
  57561. height: math.unit(5, "meters"),
  57562. weight: math.unit(3, "tonnes"),
  57563. name: "Front",
  57564. image: {
  57565. source: "./media/characters/velikan/front.svg",
  57566. extra: 867/744,
  57567. bottom: 71/938
  57568. },
  57569. extraAttributes: {
  57570. "shoeSize": {
  57571. name: "Shoe Size",
  57572. power: 1,
  57573. type: "length",
  57574. base: math.unit(135, "ShoeSizeUK"),
  57575. defaultUnit: "ShoeSizeUK"
  57576. },
  57577. }
  57578. },
  57579. },
  57580. [
  57581. {
  57582. name: "Normal",
  57583. height: math.unit(5, "meters"),
  57584. default: true
  57585. },
  57586. {
  57587. name: "Macro",
  57588. height: math.unit(1, "km")
  57589. },
  57590. {
  57591. name: "Mega Macro",
  57592. height: math.unit(100, "km")
  57593. },
  57594. {
  57595. name: "Giga Macro",
  57596. height: math.unit(2, "megameters")
  57597. },
  57598. {
  57599. name: "Planetary",
  57600. height: math.unit(22, "megameters")
  57601. },
  57602. {
  57603. name: "Solar",
  57604. height: math.unit(8, "gigameters")
  57605. },
  57606. {
  57607. name: "Cosmic",
  57608. height: math.unit(10, "zettameters")
  57609. },
  57610. {
  57611. name: "Omni",
  57612. height: math.unit(9e260, "multiverses")
  57613. },
  57614. ]
  57615. ))
  57616. characterMakers.push(() => makeCharacter(
  57617. { name: "Sabiki", species: ["werewolf", "fennec-fox"], tags: ["anthro"] },
  57618. {
  57619. front: {
  57620. height: math.unit(4 + 3/12, "feet"),
  57621. weight: math.unit(90, "lb"),
  57622. name: "Front",
  57623. image: {
  57624. source: "./media/characters/sabiki/front.svg",
  57625. extra: 1662/1423,
  57626. bottom: 65/1727
  57627. }
  57628. },
  57629. },
  57630. [
  57631. {
  57632. name: "Normal",
  57633. height: math.unit(4 + 3/12, "feet"),
  57634. default: true
  57635. },
  57636. ]
  57637. ))
  57638. characterMakers.push(() => makeCharacter(
  57639. { name: "Carmel", species: ["ant"], tags: ["anthro"] },
  57640. {
  57641. frontSfw: {
  57642. height: math.unit(2, "mm"),
  57643. name: "Front (SFW)",
  57644. image: {
  57645. source: "./media/characters/carmel/front-sfw.svg",
  57646. extra: 1131/1006,
  57647. bottom: 66/1197
  57648. }
  57649. },
  57650. frontNsfw: {
  57651. height: math.unit(2, "mm"),
  57652. name: "Front (NSFW)",
  57653. image: {
  57654. source: "./media/characters/carmel/front-nsfw.svg",
  57655. extra: 1131/1006,
  57656. bottom: 66/1197
  57657. }
  57658. },
  57659. foot: {
  57660. height: math.unit(0.3, "mm"),
  57661. name: "Foot",
  57662. image: {
  57663. source: "./media/characters/carmel/foot.svg"
  57664. }
  57665. },
  57666. tongue: {
  57667. height: math.unit(0.71, "mm"),
  57668. name: "Tongue",
  57669. image: {
  57670. source: "./media/characters/carmel/tongue.svg"
  57671. }
  57672. },
  57673. dick: {
  57674. height: math.unit(0.085, "mm"),
  57675. name: "Dick",
  57676. image: {
  57677. source: "./media/characters/carmel/dick.svg"
  57678. }
  57679. },
  57680. },
  57681. [
  57682. {
  57683. name: "Micro",
  57684. height: math.unit(2, "mm"),
  57685. default: true
  57686. },
  57687. {
  57688. name: "Normal",
  57689. height: math.unit(4 + 8/12, "feet")
  57690. },
  57691. {
  57692. name: "Mega Macro",
  57693. height: math.unit(250, "feet")
  57694. },
  57695. {
  57696. name: "BIGGER",
  57697. height: math.unit(1000, "feet")
  57698. },
  57699. {
  57700. name: "BIGGEST",
  57701. height: math.unit(2, "miles")
  57702. },
  57703. ]
  57704. ))
  57705. characterMakers.push(() => makeCharacter(
  57706. { name: "Tamani", species: ["lion"], tags: ["anthro", "feral"] },
  57707. {
  57708. front: {
  57709. height: math.unit(6.5, "feet"),
  57710. weight: math.unit(198, "lb"),
  57711. name: "Front",
  57712. image: {
  57713. source: "./media/characters/tamani/anthro.svg",
  57714. extra: 930/890,
  57715. bottom: 34/964
  57716. },
  57717. form: "anthro",
  57718. default: true
  57719. },
  57720. side: {
  57721. height: math.unit(6, "feet"),
  57722. weight: math.unit(198*2, "lb"),
  57723. name: "Side",
  57724. image: {
  57725. source: "./media/characters/tamani/feral.svg",
  57726. extra: 559/519,
  57727. bottom: 43/602
  57728. },
  57729. form: "feral"
  57730. },
  57731. },
  57732. [
  57733. {
  57734. name: "Normal",
  57735. height: math.unit(6.5, "feet"),
  57736. default: true,
  57737. form: "anthro"
  57738. },
  57739. {
  57740. name: "Normal",
  57741. height: math.unit(6, "feet"),
  57742. default: true,
  57743. form: "feral"
  57744. },
  57745. ],
  57746. {
  57747. "anthro": {
  57748. name: "Anthro",
  57749. default: true
  57750. },
  57751. "feral": {
  57752. name: "Feral",
  57753. },
  57754. }
  57755. ))
  57756. characterMakers.push(() => makeCharacter(
  57757. { name: "Dex", species: ["eastern-cottontail-rabbit"], tags: ["anthro"] },
  57758. {
  57759. front: {
  57760. height: math.unit(4 + 1/12, "feet"),
  57761. weight: math.unit(114, "lb"),
  57762. name: "Front",
  57763. image: {
  57764. source: "./media/characters/dex/front.svg",
  57765. extra: 787/680,
  57766. bottom: 18/805
  57767. }
  57768. },
  57769. side: {
  57770. height: math.unit(4 + 1/12, "feet"),
  57771. weight: math.unit(114, "lb"),
  57772. name: "Side",
  57773. image: {
  57774. source: "./media/characters/dex/side.svg",
  57775. extra: 785/680,
  57776. bottom: 12/797
  57777. }
  57778. },
  57779. back: {
  57780. height: math.unit(4 + 1/12, "feet"),
  57781. weight: math.unit(114, "lb"),
  57782. name: "Back",
  57783. image: {
  57784. source: "./media/characters/dex/back.svg",
  57785. extra: 785/681,
  57786. bottom: 17/802
  57787. }
  57788. },
  57789. loungewear: {
  57790. height: math.unit(4 + 1/12, "feet"),
  57791. weight: math.unit(114, "lb"),
  57792. name: "Loungewear",
  57793. image: {
  57794. source: "./media/characters/dex/loungewear.svg",
  57795. extra: 787/680,
  57796. bottom: 18/805
  57797. }
  57798. },
  57799. workout: {
  57800. height: math.unit(4 + 1/12, "feet"),
  57801. weight: math.unit(114, "lb"),
  57802. name: "Workout",
  57803. image: {
  57804. source: "./media/characters/dex/workout.svg",
  57805. extra: 787/680,
  57806. bottom: 18/805
  57807. }
  57808. },
  57809. schoolUniform: {
  57810. height: math.unit(4 + 1/12, "feet"),
  57811. weight: math.unit(114, "lb"),
  57812. name: "School Uniform",
  57813. image: {
  57814. source: "./media/characters/dex/school-uniform.svg",
  57815. extra: 787/680,
  57816. bottom: 18/805
  57817. }
  57818. },
  57819. maw: {
  57820. height: math.unit(0.55, "feet"),
  57821. name: "Maw",
  57822. image: {
  57823. source: "./media/characters/dex/maw.svg"
  57824. }
  57825. },
  57826. paw: {
  57827. height: math.unit(0.87, "feet"),
  57828. name: "Paw",
  57829. image: {
  57830. source: "./media/characters/dex/paw.svg"
  57831. }
  57832. },
  57833. bust: {
  57834. height: math.unit(1.67, "feet"),
  57835. name: "Bust",
  57836. image: {
  57837. source: "./media/characters/dex/bust.svg"
  57838. }
  57839. },
  57840. },
  57841. [
  57842. {
  57843. name: "Normal",
  57844. height: math.unit(4 + 1/12, "feet"),
  57845. default: true
  57846. },
  57847. ]
  57848. ))
  57849. characterMakers.push(() => makeCharacter(
  57850. { name: "Silke", species: ["sylveon"], tags: ["anthro"] },
  57851. {
  57852. front: {
  57853. height: math.unit(4 + 3/12, "feet"),
  57854. weight: math.unit(60, "lb"),
  57855. name: "Front",
  57856. image: {
  57857. source: "./media/characters/silke/front.svg",
  57858. extra: 1334/1122,
  57859. bottom: 21/1355
  57860. }
  57861. },
  57862. back: {
  57863. height: math.unit(4 + 3/12, "feet"),
  57864. weight: math.unit(60, "lb"),
  57865. name: "Back",
  57866. image: {
  57867. source: "./media/characters/silke/back.svg",
  57868. extra: 1328/1092,
  57869. bottom: 16/1344
  57870. }
  57871. },
  57872. dressed: {
  57873. height: math.unit(4 + 3/12, "feet"),
  57874. weight: math.unit(60, "lb"),
  57875. name: "Dressed",
  57876. image: {
  57877. source: "./media/characters/silke/dressed.svg",
  57878. extra: 1334/1122,
  57879. bottom: 43/1377
  57880. }
  57881. },
  57882. },
  57883. [
  57884. {
  57885. name: "Normal",
  57886. height: math.unit(4 + 3/12, "feet"),
  57887. default: true
  57888. },
  57889. ]
  57890. ))
  57891. characterMakers.push(() => makeCharacter(
  57892. { name: "Wireshark", species: ["thresher-shark"], tags: ["anthro"] },
  57893. {
  57894. front: {
  57895. height: math.unit(1.58, "meters"),
  57896. weight: math.unit(47, "kg"),
  57897. name: "Front",
  57898. image: {
  57899. source: "./media/characters/wireshark/front.svg",
  57900. extra: 883/838,
  57901. bottom: 66/949
  57902. }
  57903. },
  57904. },
  57905. [
  57906. {
  57907. name: "Normal",
  57908. height: math.unit(1.58, "meters"),
  57909. default: true
  57910. },
  57911. ]
  57912. ))
  57913. characterMakers.push(() => makeCharacter(
  57914. { name: "Gallagher", species: ["shark", "cyborg", "ai"], tags: ["anthro"] },
  57915. {
  57916. front: {
  57917. height: math.unit(6, "meters"),
  57918. weight: math.unit(15000, "kg"),
  57919. name: "Front",
  57920. image: {
  57921. source: "./media/characters/gallagher/front.svg",
  57922. extra: 532/493,
  57923. bottom: 0/532
  57924. }
  57925. },
  57926. },
  57927. [
  57928. {
  57929. name: "Normal",
  57930. height: math.unit(6, "meters"),
  57931. default: true
  57932. },
  57933. ]
  57934. ))
  57935. characterMakers.push(() => makeCharacter(
  57936. { name: "Alice", species: ["black-tip-reef-shark"], tags: ["anthro"] },
  57937. {
  57938. front: {
  57939. height: math.unit(2.4, "meters"),
  57940. weight: math.unit(270, "kg"),
  57941. name: "Front",
  57942. image: {
  57943. source: "./media/characters/alice/front.svg",
  57944. extra: 950/900,
  57945. bottom: 36/986
  57946. }
  57947. },
  57948. side: {
  57949. height: math.unit(2.4, "meters"),
  57950. weight: math.unit(270, "kg"),
  57951. name: "Side",
  57952. image: {
  57953. source: "./media/characters/alice/side.svg",
  57954. extra: 921/876,
  57955. bottom: 19/940
  57956. }
  57957. },
  57958. dressed: {
  57959. height: math.unit(2.4, "meters"),
  57960. weight: math.unit(270, "kg"),
  57961. name: "Dressed",
  57962. image: {
  57963. source: "./media/characters/alice/dressed.svg",
  57964. extra: 905/850,
  57965. bottom: 81/986
  57966. }
  57967. },
  57968. fishnet: {
  57969. height: math.unit(2.4, "meters"),
  57970. weight: math.unit(270, "kg"),
  57971. name: "Fishnet",
  57972. image: {
  57973. source: "./media/characters/alice/fishnet.svg",
  57974. extra: 905/850,
  57975. bottom: 81/986
  57976. }
  57977. },
  57978. },
  57979. [
  57980. {
  57981. name: "Normal",
  57982. height: math.unit(2.4, "meters"),
  57983. default: true
  57984. },
  57985. ]
  57986. ))
  57987. characterMakers.push(() => makeCharacter(
  57988. { name: "Fio", species: ["deer"], tags: ["anthro"] },
  57989. {
  57990. front: {
  57991. height: math.unit(175.25, "feet"),
  57992. name: "Front",
  57993. image: {
  57994. source: "./media/characters/fio/front.svg",
  57995. extra: 1883/1591,
  57996. bottom: 34/1917
  57997. }
  57998. },
  57999. },
  58000. [
  58001. {
  58002. name: "Normal",
  58003. height: math.unit(175.25, "cm"),
  58004. default: true
  58005. },
  58006. ]
  58007. ))
  58008. characterMakers.push(() => makeCharacter(
  58009. { name: "Hass", species: ["quetzalcoatlus-northropi"], tags: ["feral"] },
  58010. {
  58011. side: {
  58012. height: math.unit(6, "meters"),
  58013. weight: math.unit(3400, "kg"),
  58014. preyCapacity: math.unit(1700, "liters"),
  58015. name: "Side",
  58016. image: {
  58017. source: "./media/characters/hass/side.svg",
  58018. extra: 1058/997,
  58019. bottom: 177/1235
  58020. }
  58021. },
  58022. feeding: {
  58023. height: math.unit(6*0.63, "meters"),
  58024. weight: math.unit(3400, "kg"),
  58025. preyCapacity: math.unit(1700, "liters"),
  58026. name: "Feeding",
  58027. image: {
  58028. source: "./media/characters/hass/feeding.svg",
  58029. extra: 689/579,
  58030. bottom: 146/835
  58031. }
  58032. },
  58033. guts: {
  58034. height: math.unit(6, "meters"),
  58035. weight: math.unit(3400, "kg"),
  58036. name: "Guts",
  58037. image: {
  58038. source: "./media/characters/hass/guts.svg",
  58039. extra: 1223/1198,
  58040. bottom: 182/1405
  58041. }
  58042. },
  58043. dickFront: {
  58044. height: math.unit(1.4, "meters"),
  58045. name: "Dick (Front)",
  58046. image: {
  58047. source: "./media/characters/hass/dick-front.svg"
  58048. }
  58049. },
  58050. dickSide: {
  58051. height: math.unit(1.3, "meters"),
  58052. name: "Dick (Side)",
  58053. image: {
  58054. source: "./media/characters/hass/dick-side.svg"
  58055. }
  58056. },
  58057. dickBack: {
  58058. height: math.unit(1.4, "meters"),
  58059. name: "Dick (Back)",
  58060. image: {
  58061. source: "./media/characters/hass/dick-back.svg"
  58062. }
  58063. },
  58064. },
  58065. [
  58066. {
  58067. name: "Normal",
  58068. height: math.unit(6, "meters"),
  58069. default: true
  58070. },
  58071. ]
  58072. ))
  58073. characterMakers.push(() => makeCharacter(
  58074. { name: "Hickory Finnegan", species: ["fennec-fox"], tags: ["anthro"] },
  58075. {
  58076. front: {
  58077. height: math.unit(4, "feet"),
  58078. weight: math.unit(60, "lb"),
  58079. name: "Front",
  58080. image: {
  58081. source: "./media/characters/hickory-finnegan/front.svg",
  58082. extra: 444/411,
  58083. bottom: 10/454
  58084. }
  58085. },
  58086. side: {
  58087. height: math.unit(4, "feet"),
  58088. weight: math.unit(60, "lb"),
  58089. name: "Side",
  58090. image: {
  58091. source: "./media/characters/hickory-finnegan/side.svg",
  58092. extra: 444/411,
  58093. bottom: 10/454
  58094. }
  58095. },
  58096. back: {
  58097. height: math.unit(4, "feet"),
  58098. weight: math.unit(60, "lb"),
  58099. name: "Back",
  58100. image: {
  58101. source: "./media/characters/hickory-finnegan/back.svg",
  58102. extra: 444/411,
  58103. bottom: 10/454
  58104. }
  58105. },
  58106. },
  58107. [
  58108. {
  58109. name: "Normal",
  58110. height: math.unit(4, "feet"),
  58111. default: true
  58112. },
  58113. ]
  58114. ))
  58115. characterMakers.push(() => makeCharacter(
  58116. { name: "Robin Phox", species: ["snivy", "yoshi", "delphox", "mienshao", "inteleon", "reshiram", "samurott"], tags: ["anthro"] },
  58117. {
  58118. snivy_front: {
  58119. height: math.unit(2, "feet"),
  58120. weight: math.unit(17.9, "lb"),
  58121. name: "Front",
  58122. image: {
  58123. source: "./media/characters/robin-phox/snivy-front.svg",
  58124. extra: 569/504,
  58125. bottom: 33/602
  58126. },
  58127. form: "snivy",
  58128. default: true
  58129. },
  58130. snivy_frontNsfw: {
  58131. height: math.unit(2, "feet"),
  58132. weight: math.unit(17.9, "lb"),
  58133. name: "Front (NSFW)",
  58134. image: {
  58135. source: "./media/characters/robin-phox/snivy-front-nsfw.svg",
  58136. extra: 569/504,
  58137. bottom: 33/602
  58138. },
  58139. form: "snivy",
  58140. },
  58141. snivy_back: {
  58142. height: math.unit(2, "feet"),
  58143. weight: math.unit(17.9, "lb"),
  58144. name: "Back",
  58145. image: {
  58146. source: "./media/characters/robin-phox/snivy-back.svg",
  58147. extra: 577/508,
  58148. bottom: 21/598
  58149. },
  58150. form: "snivy",
  58151. },
  58152. snivy_foot: {
  58153. height: math.unit(0.68, "feet"),
  58154. name: "Foot",
  58155. image: {
  58156. source: "./media/characters/robin-phox/snivy-foot.svg"
  58157. },
  58158. form: "snivy",
  58159. },
  58160. snivy_sole: {
  58161. height: math.unit(0.68, "feet"),
  58162. name: "Sole",
  58163. image: {
  58164. source: "./media/characters/robin-phox/snivy-sole.svg"
  58165. },
  58166. form: "snivy",
  58167. },
  58168. yoshi_front: {
  58169. height: math.unit(6, "feet"),
  58170. weight: math.unit(150, "lb"),
  58171. name: "Front",
  58172. image: {
  58173. source: "./media/characters/robin-phox/yoshi-front.svg",
  58174. extra: 890/792,
  58175. bottom: 29/919
  58176. },
  58177. form: "yoshi",
  58178. default: true
  58179. },
  58180. yoshi_frontNsfw: {
  58181. height: math.unit(6, "feet"),
  58182. weight: math.unit(150, "lb"),
  58183. name: "Front (NSFW)",
  58184. image: {
  58185. source: "./media/characters/robin-phox/yoshi-front-nsfw.svg",
  58186. extra: 890/792,
  58187. bottom: 29/919
  58188. },
  58189. form: "yoshi",
  58190. },
  58191. yoshi_back: {
  58192. height: math.unit(6, "feet"),
  58193. weight: math.unit(150, "lb"),
  58194. name: "Back",
  58195. image: {
  58196. source: "./media/characters/robin-phox/yoshi-back.svg",
  58197. extra: 890/792,
  58198. bottom: 29/919
  58199. },
  58200. form: "yoshi",
  58201. },
  58202. yoshi_foot: {
  58203. height: math.unit(1.5, "feet"),
  58204. name: "Foot",
  58205. image: {
  58206. source: "./media/characters/robin-phox/yoshi-foot.svg"
  58207. },
  58208. form: "yoshi",
  58209. },
  58210. delphox_front: {
  58211. height: math.unit(4 + 11/12, "feet"),
  58212. weight: math.unit(86, "lb"),
  58213. name: "Front",
  58214. image: {
  58215. source: "./media/characters/robin-phox/delphox-front.svg",
  58216. extra: 1266/1069,
  58217. bottom: 32/1298
  58218. },
  58219. form: "delphox",
  58220. default: true
  58221. },
  58222. delphox_frontNsfw: {
  58223. height: math.unit(4 + 11/12, "feet"),
  58224. weight: math.unit(86, "lb"),
  58225. name: "Front (NSFW)",
  58226. image: {
  58227. source: "./media/characters/robin-phox/delphox-front-nsfw.svg",
  58228. extra: 1266/1069,
  58229. bottom: 32/1298
  58230. },
  58231. form: "delphox",
  58232. },
  58233. delphox_back: {
  58234. height: math.unit(4 + 11/12, "feet"),
  58235. weight: math.unit(86, "lb"),
  58236. name: "Back",
  58237. image: {
  58238. source: "./media/characters/robin-phox/delphox-back.svg",
  58239. extra: 1269/1083,
  58240. bottom: 15/1284
  58241. },
  58242. form: "delphox",
  58243. },
  58244. mienshao_front: {
  58245. height: math.unit(4 + 7/12, "feet"),
  58246. weight: math.unit(78.3, "lb"),
  58247. name: "Front",
  58248. image: {
  58249. source: "./media/characters/robin-phox/mienshao-front.svg",
  58250. extra: 1052/970,
  58251. bottom: 108/1160
  58252. },
  58253. form: "mienshao",
  58254. default: true
  58255. },
  58256. mienshao_frontNsfw: {
  58257. height: math.unit(4 + 7/12, "feet"),
  58258. weight: math.unit(78.3, "lb"),
  58259. name: "Front (NSFW)",
  58260. image: {
  58261. source: "./media/characters/robin-phox/mienshao-front-nsfw.svg",
  58262. extra: 1052/970,
  58263. bottom: 108/1160
  58264. },
  58265. form: "mienshao",
  58266. },
  58267. mienshao_back: {
  58268. height: math.unit(4 + 7/12, "feet"),
  58269. weight: math.unit(78.3, "lb"),
  58270. name: "Back",
  58271. image: {
  58272. source: "./media/characters/robin-phox/mienshao-back.svg",
  58273. extra: 1102/982,
  58274. bottom: 32/1134
  58275. },
  58276. form: "mienshao",
  58277. },
  58278. inteleon_front: {
  58279. height: math.unit(6 + 3/12, "feet"),
  58280. weight: math.unit(99.6, "lb"),
  58281. name: "Front",
  58282. image: {
  58283. source: "./media/characters/robin-phox/inteleon-front.svg",
  58284. extra: 910/799,
  58285. bottom: 76/986
  58286. },
  58287. form: "inteleon",
  58288. default: true
  58289. },
  58290. inteleon_frontNsfw: {
  58291. height: math.unit(6 + 3/12, "feet"),
  58292. weight: math.unit(99.6, "lb"),
  58293. name: "Front (NSFW)",
  58294. image: {
  58295. source: "./media/characters/robin-phox/inteleon-front-nsfw.svg",
  58296. extra: 910/799,
  58297. bottom: 76/986
  58298. },
  58299. form: "inteleon",
  58300. },
  58301. inteleon_back: {
  58302. height: math.unit(6 + 3/12, "feet"),
  58303. weight: math.unit(99.6, "lb"),
  58304. name: "Back",
  58305. image: {
  58306. source: "./media/characters/robin-phox/inteleon-back.svg",
  58307. extra: 907/796,
  58308. bottom: 25/932
  58309. },
  58310. form: "inteleon",
  58311. },
  58312. reshiram_front: {
  58313. height: math.unit(10 + 6/12, "feet"),
  58314. weight: math.unit(727.5, "lb"),
  58315. name: "Front",
  58316. image: {
  58317. source: "./media/characters/robin-phox/reshiram-front.svg",
  58318. extra: 1198/940,
  58319. bottom: 123/1321
  58320. },
  58321. form: "reshiram",
  58322. },
  58323. reshiram_frontNsfw: {
  58324. height: math.unit(10 + 6/12, "feet"),
  58325. weight: math.unit(727.5, "lb"),
  58326. name: "Front (NSFW)",
  58327. image: {
  58328. source: "./media/characters/robin-phox/reshiram-front-nsfw.svg",
  58329. extra: 1198/940,
  58330. bottom: 123/1321
  58331. },
  58332. form: "reshiram",
  58333. },
  58334. reshiram_back: {
  58335. height: math.unit(10 + 6/12, "feet"),
  58336. weight: math.unit(727.5, "lb"),
  58337. name: "Back",
  58338. image: {
  58339. source: "./media/characters/robin-phox/reshiram-back.svg",
  58340. extra: 1024/904,
  58341. bottom: 85/1109
  58342. },
  58343. form: "reshiram",
  58344. },
  58345. samurott_front: {
  58346. height: math.unit(8, "feet"),
  58347. weight: math.unit(208.6, "lb"),
  58348. name: "Front",
  58349. image: {
  58350. source: "./media/characters/robin-phox/samurott-front.svg",
  58351. extra: 1048/984,
  58352. bottom: 100/1148
  58353. },
  58354. form: "samurott",
  58355. },
  58356. samurott_frontNsfw: {
  58357. height: math.unit(8, "feet"),
  58358. weight: math.unit(208.6, "lb"),
  58359. name: "Front NSFW",
  58360. image: {
  58361. source: "./media/characters/robin-phox/samurott-front-nsfw.svg",
  58362. extra: 1048/984,
  58363. bottom: 100/1148
  58364. },
  58365. form: "samurott",
  58366. },
  58367. samurott_back: {
  58368. height: math.unit(8, "feet"),
  58369. weight: math.unit(208.6, "lb"),
  58370. name: "Back",
  58371. image: {
  58372. source: "./media/characters/robin-phox/samurott-back.svg",
  58373. extra: 1110/1042,
  58374. bottom: 12/1122
  58375. },
  58376. form: "samurott",
  58377. },
  58378. samurott_feral: {
  58379. height: math.unit(4 + 11/12, "feet"),
  58380. weight: math.unit(208.6, "lb"),
  58381. name: "Feral",
  58382. image: {
  58383. source: "./media/characters/robin-phox/samurott-feral.svg",
  58384. extra: 766/681,
  58385. bottom: 108/874
  58386. },
  58387. form: "samurott",
  58388. },
  58389. },
  58390. [
  58391. {
  58392. name: "Normal",
  58393. height: math.unit(2, "feet"),
  58394. default: true,
  58395. form: "snivy"
  58396. },
  58397. {
  58398. name: "Normal",
  58399. height: math.unit(6, "feet"),
  58400. default: true,
  58401. form: "yoshi"
  58402. },
  58403. {
  58404. name: "Normal",
  58405. height: math.unit(4 + 11/12, "feet"),
  58406. default: true,
  58407. form: "delphox"
  58408. },
  58409. {
  58410. name: "Normal",
  58411. height: math.unit(4 + 7/12, "feet"),
  58412. default: true,
  58413. form: "mienshao"
  58414. },
  58415. {
  58416. name: "Normal",
  58417. height: math.unit(6 + 3/12, "feet"),
  58418. default: true,
  58419. form: "inteleon"
  58420. },
  58421. {
  58422. name: "Normal",
  58423. height: math.unit(10 + 6/12, "feet"),
  58424. default: true,
  58425. form: "reshiram"
  58426. },
  58427. {
  58428. name: "Normal",
  58429. height: math.unit(8, "feet"),
  58430. default: true,
  58431. form: "samurott"
  58432. },
  58433. {
  58434. name: "Macro",
  58435. height: math.unit(500, "feet"),
  58436. allForms: true
  58437. },
  58438. {
  58439. name: "Mega Macro",
  58440. height: math.unit(10, "earths"),
  58441. allForms: true
  58442. },
  58443. {
  58444. name: "Giga Macro",
  58445. height: math.unit(1, "galaxy"),
  58446. allForms: true
  58447. },
  58448. {
  58449. name: "Godly Macro",
  58450. height: math.unit(1e10, "multiverses"),
  58451. allForms: true
  58452. },
  58453. ],
  58454. {
  58455. "snivy": {
  58456. name: "Snivy",
  58457. default: true
  58458. },
  58459. "yoshi": {
  58460. name: "Yoshi",
  58461. },
  58462. "delphox": {
  58463. name: "Delphox",
  58464. },
  58465. "mienshao": {
  58466. name: "Mienshao",
  58467. },
  58468. "inteleon": {
  58469. name: "Inteleon",
  58470. },
  58471. "reshiram": {
  58472. name: "Reshiram",
  58473. },
  58474. "samurott": {
  58475. name: "Samurott",
  58476. },
  58477. }
  58478. ))
  58479. characterMakers.push(() => makeCharacter(
  58480. { name: "Ash Leung", species: ["red-panda"], tags: ["anthro"] },
  58481. {
  58482. front: {
  58483. height: math.unit(4, "feet"),
  58484. name: "Front",
  58485. image: {
  58486. source: "./media/characters/ash-leung/front.svg",
  58487. extra: 1916/1792,
  58488. bottom: 50/1966
  58489. }
  58490. },
  58491. },
  58492. [
  58493. {
  58494. name: "Atomic",
  58495. height: math.unit(1, "angstrom")
  58496. },
  58497. {
  58498. name: "Microscopic",
  58499. height: math.unit(4000, "angstroms")
  58500. },
  58501. {
  58502. name: "Speck",
  58503. height: math.unit(1, "mm")
  58504. },
  58505. {
  58506. name: "Small",
  58507. height: math.unit(1, "inch")
  58508. },
  58509. {
  58510. name: "Normal",
  58511. height: math.unit(4, "feet"),
  58512. default: true
  58513. },
  58514. ]
  58515. ))
  58516. characterMakers.push(() => makeCharacter(
  58517. { name: "Carie", species: ["lucario"], tags: ["anthro"] },
  58518. {
  58519. frontDressed: {
  58520. height: math.unit(2.08, "meters"),
  58521. weight: math.unit(175, "lb"),
  58522. name: "Front (Dressed)",
  58523. image: {
  58524. source: "./media/characters/carie/front-dressed.svg",
  58525. extra: 456/417,
  58526. bottom: 7/463
  58527. }
  58528. },
  58529. backDressed: {
  58530. height: math.unit(2.08, "meters"),
  58531. weight: math.unit(175, "lb"),
  58532. name: "Back (Dressed)",
  58533. image: {
  58534. source: "./media/characters/carie/back-dressed.svg",
  58535. extra: 455/414,
  58536. bottom: 11/466
  58537. }
  58538. },
  58539. front: {
  58540. height: math.unit(2, "meters"),
  58541. weight: math.unit(175, "lb"),
  58542. name: "Front",
  58543. image: {
  58544. source: "./media/characters/carie/front.svg",
  58545. extra: 438/399,
  58546. bottom: 12/450
  58547. }
  58548. },
  58549. back: {
  58550. height: math.unit(2, "meters"),
  58551. weight: math.unit(175, "lb"),
  58552. name: "Back",
  58553. image: {
  58554. source: "./media/characters/carie/back.svg",
  58555. extra: 438/397,
  58556. bottom: 7/445
  58557. }
  58558. },
  58559. },
  58560. [
  58561. {
  58562. name: "Normal",
  58563. height: math.unit(2.08, "meters"),
  58564. default: true
  58565. },
  58566. {
  58567. name: "Macro",
  58568. height: math.unit(2.08e3, "meters")
  58569. },
  58570. {
  58571. name: "Mega Macro",
  58572. height: math.unit(2.08e6, "meters")
  58573. },
  58574. {
  58575. name: "Giga Macro",
  58576. height: math.unit(2.08e9, "meters")
  58577. },
  58578. {
  58579. name: "Tera Macro",
  58580. height: math.unit(2.08e12, "meters")
  58581. },
  58582. {
  58583. name: "Peta Macro",
  58584. height: math.unit(2.08e15, "meters")
  58585. },
  58586. {
  58587. name: "Exa Macro",
  58588. height: math.unit(2.08e18, "meters")
  58589. },
  58590. {
  58591. name: "Zetta Macro",
  58592. height: math.unit(2.08e21, "meters")
  58593. },
  58594. {
  58595. name: "Yotta Macro",
  58596. height: math.unit(2.08e24, "meters")
  58597. },
  58598. ]
  58599. ))
  58600. characterMakers.push(() => makeCharacter(
  58601. { name: "Sai Bree", species: ["sabertooth-tiger"], tags: ["anthro"] },
  58602. {
  58603. front: {
  58604. height: math.unit(5 + 2/12, "feet"),
  58605. weight: math.unit(120, "lb"),
  58606. name: "Front",
  58607. image: {
  58608. source: "./media/characters/sai-bree/front.svg",
  58609. extra: 1843/1702,
  58610. bottom: 91/1934
  58611. }
  58612. },
  58613. back: {
  58614. height: math.unit(5 + 2/12, "feet"),
  58615. weight: math.unit(120, "lb"),
  58616. name: "Back",
  58617. image: {
  58618. source: "./media/characters/sai-bree/back.svg",
  58619. extra: 1809/1637,
  58620. bottom: 56/1865
  58621. }
  58622. },
  58623. },
  58624. [
  58625. {
  58626. name: "Normal",
  58627. height: math.unit(5 + 2/12, "feet"),
  58628. default: true
  58629. },
  58630. {
  58631. name: "Macro",
  58632. height: math.unit(500, "feet")
  58633. },
  58634. ]
  58635. ))
  58636. characterMakers.push(() => makeCharacter(
  58637. { name: "Davwyn", species: ["dragon"], tags: ["feral"] },
  58638. {
  58639. side: {
  58640. height: math.unit(0.77, "meters"),
  58641. weight: math.unit(120, "lb"),
  58642. name: "Side",
  58643. image: {
  58644. source: "./media/characters/davwyn/side.svg",
  58645. extra: 1557/1225,
  58646. bottom: 131/1688
  58647. }
  58648. },
  58649. front: {
  58650. height: math.unit(0.835410, "meters"),
  58651. weight: math.unit(120, "lb"),
  58652. name: "Front",
  58653. image: {
  58654. source: "./media/characters/davwyn/front.svg",
  58655. extra: 870/843,
  58656. bottom: 175/1045
  58657. }
  58658. },
  58659. },
  58660. [
  58661. {
  58662. name: "Minidrake",
  58663. height: math.unit(0.77/4, "meters")
  58664. },
  58665. {
  58666. name: "Normal",
  58667. height: math.unit(0.77, "meters"),
  58668. default: true
  58669. },
  58670. ]
  58671. ))
  58672. characterMakers.push(() => makeCharacter(
  58673. { name: "Balans", species: ["dragon", "kangaroo"], tags: ["anthro"] },
  58674. {
  58675. front: {
  58676. height: math.unit(10 + 3/12, "feet"),
  58677. weight: math.unit(2857, "lb"),
  58678. name: "Front",
  58679. image: {
  58680. source: "./media/characters/balans/front.svg",
  58681. extra: 427/402,
  58682. bottom: 26/453
  58683. }
  58684. },
  58685. side: {
  58686. height: math.unit(10 + 3/12, "feet"),
  58687. weight: math.unit(2857, "lb"),
  58688. name: "Side",
  58689. image: {
  58690. source: "./media/characters/balans/side.svg",
  58691. extra: 397/371,
  58692. bottom: 17/414
  58693. }
  58694. },
  58695. back: {
  58696. height: math.unit(10 + 3/12, "feet"),
  58697. weight: math.unit(2857, "lb"),
  58698. name: "Back",
  58699. image: {
  58700. source: "./media/characters/balans/back.svg",
  58701. extra: 408/381,
  58702. bottom: 14/422
  58703. }
  58704. },
  58705. hand: {
  58706. height: math.unit(1.15, "feet"),
  58707. name: "Hand",
  58708. image: {
  58709. source: "./media/characters/balans/hand.svg"
  58710. }
  58711. },
  58712. footRest: {
  58713. height: math.unit(3.1, "feet"),
  58714. name: "Foot (Rest)",
  58715. image: {
  58716. source: "./media/characters/balans/foot-rest.svg"
  58717. }
  58718. },
  58719. footActive: {
  58720. height: math.unit(3.5, "feet"),
  58721. name: "Foot (Active)",
  58722. image: {
  58723. source: "./media/characters/balans/foot-active.svg"
  58724. }
  58725. },
  58726. },
  58727. [
  58728. {
  58729. name: "Normal",
  58730. height: math.unit(10 + 3/12, "feet"),
  58731. default: true
  58732. },
  58733. ]
  58734. ))
  58735. characterMakers.push(() => makeCharacter(
  58736. { name: "Eldkveikir", species: ["dragon"], tags: ["feral"] },
  58737. {
  58738. side: {
  58739. height: math.unit(9, "meters"),
  58740. weight: math.unit(114, "tonnes"),
  58741. name: "Side",
  58742. image: {
  58743. source: "./media/characters/eldkveikir/side.svg",
  58744. extra: 1927/338,
  58745. bottom: 42/1969
  58746. }
  58747. },
  58748. sitting: {
  58749. height: math.unit(13.4, "meters"),
  58750. weight: math.unit(114, "tonnes"),
  58751. name: "Sitting",
  58752. image: {
  58753. source: "./media/characters/eldkveikir/sitting.svg",
  58754. extra: 1108/963,
  58755. bottom: 610/1718
  58756. }
  58757. },
  58758. maw: {
  58759. height: math.unit(8.36, "meters"),
  58760. name: "Maw",
  58761. image: {
  58762. source: "./media/characters/eldkveikir/maw.svg"
  58763. }
  58764. },
  58765. hand: {
  58766. height: math.unit(4.84, "meters"),
  58767. name: "Hand",
  58768. image: {
  58769. source: "./media/characters/eldkveikir/hand.svg"
  58770. }
  58771. },
  58772. foot: {
  58773. height: math.unit(6.9, "meters"),
  58774. name: "Foot",
  58775. image: {
  58776. source: "./media/characters/eldkveikir/foot.svg"
  58777. }
  58778. },
  58779. genitals: {
  58780. height: math.unit(9.6, "meters"),
  58781. name: "Genitals",
  58782. image: {
  58783. source: "./media/characters/eldkveikir/genitals.svg"
  58784. }
  58785. },
  58786. },
  58787. [
  58788. {
  58789. name: "Normal",
  58790. height: math.unit(9, "meters"),
  58791. default: true
  58792. },
  58793. ]
  58794. ))
  58795. characterMakers.push(() => makeCharacter(
  58796. { name: "Arrow", species: ["wolf"], tags: ["anthro"] },
  58797. {
  58798. front: {
  58799. height: math.unit(14, "feet"),
  58800. weight: math.unit(4100, "lb"),
  58801. name: "Front",
  58802. image: {
  58803. source: "./media/characters/arrow/front.svg",
  58804. extra: 330/318,
  58805. bottom: 56/386
  58806. }
  58807. },
  58808. },
  58809. [
  58810. {
  58811. name: "Normal",
  58812. height: math.unit(14, "feet"),
  58813. default: true
  58814. },
  58815. {
  58816. name: "Minimacro",
  58817. height: math.unit(63, "feet")
  58818. },
  58819. {
  58820. name: "Macro",
  58821. height: math.unit(630, "feet")
  58822. },
  58823. {
  58824. name: "Megamacro",
  58825. height: math.unit(12600, "feet")
  58826. },
  58827. {
  58828. name: "Gigamacro",
  58829. height: math.unit(18000, "miles")
  58830. },
  58831. ]
  58832. ))
  58833. characterMakers.push(() => makeCharacter(
  58834. { name: "3YK-K0 Unit", species: ["synth"], tags: ["anthro"] },
  58835. {
  58836. front: {
  58837. height: math.unit(10, "feet"),
  58838. weight: math.unit(2.4, "tons"),
  58839. name: "Front",
  58840. image: {
  58841. source: "./media/characters/3yk-k0-unit/front.svg",
  58842. extra: 573/561,
  58843. bottom: 33/606
  58844. }
  58845. },
  58846. back: {
  58847. height: math.unit(10, "feet"),
  58848. weight: math.unit(2.4, "tons"),
  58849. name: "Back",
  58850. image: {
  58851. source: "./media/characters/3yk-k0-unit/back.svg",
  58852. extra: 614/573,
  58853. bottom: 32/646
  58854. }
  58855. },
  58856. maw: {
  58857. height: math.unit(2.15, "feet"),
  58858. name: "Maw",
  58859. image: {
  58860. source: "./media/characters/3yk-k0-unit/maw.svg"
  58861. }
  58862. },
  58863. },
  58864. [
  58865. {
  58866. name: "Normal",
  58867. height: math.unit(10, "feet"),
  58868. default: true
  58869. },
  58870. ]
  58871. ))
  58872. characterMakers.push(() => makeCharacter(
  58873. { name: "Nemo", species: ["dragon"], tags: ["anthro"] },
  58874. {
  58875. front: {
  58876. height: math.unit(8 + 8/12, "feet"),
  58877. name: "Front",
  58878. image: {
  58879. source: "./media/characters/nemo/front.svg",
  58880. extra: 1308/1217,
  58881. bottom: 57/1365
  58882. }
  58883. },
  58884. },
  58885. [
  58886. {
  58887. name: "Normal",
  58888. height: math.unit(8 + 8/12, "feet"),
  58889. default: true
  58890. },
  58891. ]
  58892. ))
  58893. characterMakers.push(() => makeCharacter(
  58894. { name: "Rexx", species: ["wolf"], tags: ["anthro"] },
  58895. {
  58896. front: {
  58897. height: math.unit(8, "feet"),
  58898. weight: math.unit(760, "lb"),
  58899. name: "Front",
  58900. image: {
  58901. source: "./media/characters/rexx/front.svg",
  58902. extra: 786/750,
  58903. bottom: 17/803
  58904. },
  58905. extraAttributes: {
  58906. "pawLength": {
  58907. name: "Paw Length",
  58908. power: 1,
  58909. type: "length",
  58910. base: math.unit(27, "inches")
  58911. },
  58912. }
  58913. },
  58914. },
  58915. [
  58916. {
  58917. name: "Micro",
  58918. height: math.unit(2, "inches")
  58919. },
  58920. {
  58921. name: "Normal",
  58922. height: math.unit(8, "feet"),
  58923. default: true
  58924. },
  58925. {
  58926. name: "Macro",
  58927. height: math.unit(150, "feet")
  58928. },
  58929. ]
  58930. ))
  58931. characterMakers.push(() => makeCharacter(
  58932. { name: "Draco", species: ["dragon"], tags: ["anthro"] },
  58933. {
  58934. front: {
  58935. height: math.unit(18, "feet"),
  58936. weight: math.unit(1975, "lb"),
  58937. name: "Front",
  58938. image: {
  58939. source: "./media/characters/draco/front.svg",
  58940. extra: 1325/1241,
  58941. bottom: 83/1408
  58942. }
  58943. },
  58944. back: {
  58945. height: math.unit(18, "feet"),
  58946. weight: math.unit(1975, "lb"),
  58947. name: "Back",
  58948. image: {
  58949. source: "./media/characters/draco/back.svg",
  58950. extra: 1332/1250,
  58951. bottom: 43/1375
  58952. }
  58953. },
  58954. dick: {
  58955. height: math.unit(7.5, "feet"),
  58956. name: "Dick",
  58957. image: {
  58958. source: "./media/characters/draco/dick.svg"
  58959. }
  58960. },
  58961. },
  58962. [
  58963. {
  58964. name: "Normal",
  58965. height: math.unit(18, "feet"),
  58966. default: true
  58967. },
  58968. ]
  58969. ))
  58970. characterMakers.push(() => makeCharacter(
  58971. { name: "Harriett", species: ["nedynvor"], tags: ["anthro"] },
  58972. {
  58973. front: {
  58974. height: math.unit(3.2, "meters"),
  58975. name: "Front",
  58976. image: {
  58977. source: "./media/characters/harriett/front.svg",
  58978. extra: 1966/1915,
  58979. bottom: 9/1975
  58980. }
  58981. },
  58982. },
  58983. [
  58984. {
  58985. name: "Normal",
  58986. height: math.unit(3.2, "meters"),
  58987. default: true
  58988. },
  58989. ]
  58990. ))
  58991. characterMakers.push(() => makeCharacter(
  58992. { name: "Serpentus", species: ["snake"], tags: ["anthro"] },
  58993. {
  58994. standing: {
  58995. height: math.unit(180, "cm"),
  58996. weight: math.unit(185, "lb"),
  58997. name: "Standing",
  58998. image: {
  58999. source: "./media/characters/serpentus/standing.svg",
  59000. extra: 882/878,
  59001. bottom: 16/898
  59002. }
  59003. },
  59004. sitting: {
  59005. height: math.unit(0.8, "meter"),
  59006. weight: math.unit(155, "lb"),
  59007. name: "Sitting",
  59008. image: {
  59009. source: "./media/characters/serpentus/sitting.svg",
  59010. extra: 293/290,
  59011. bottom: 140/433
  59012. }
  59013. },
  59014. },
  59015. [
  59016. {
  59017. name: "Normal",
  59018. height: math.unit(1.8, "meter"),
  59019. default: true
  59020. },
  59021. ]
  59022. ))
  59023. characterMakers.push(() => makeCharacter(
  59024. { name: "Nova (Polecat)", species: ["marbled-polecat"], tags: ["anthro"] },
  59025. {
  59026. front: {
  59027. height: math.unit(5.7174385736, "feet"),
  59028. name: "Front",
  59029. image: {
  59030. source: "./media/characters/nova-polecat/front.svg",
  59031. extra: 1317/1216,
  59032. bottom: 92/1409
  59033. }
  59034. },
  59035. },
  59036. [
  59037. {
  59038. name: "Normal",
  59039. height: math.unit(5.7174385736, "feet"),
  59040. default: true
  59041. },
  59042. ]
  59043. ))
  59044. characterMakers.push(() => makeCharacter(
  59045. { name: "Mook", species: ["monkey", "ape"], tags: ["anthro"] },
  59046. {
  59047. front: {
  59048. height: math.unit(5 + 4/12, "feet"),
  59049. weight: math.unit(250, "lb"),
  59050. name: "Front",
  59051. image: {
  59052. source: "./media/characters/mook/front.svg",
  59053. extra: 1088/1037,
  59054. bottom: 132/1220
  59055. }
  59056. },
  59057. back: {
  59058. height: math.unit(5 + 1/12, "feet"),
  59059. weight: math.unit(250, "lb"),
  59060. name: "Back",
  59061. image: {
  59062. source: "./media/characters/mook/back.svg",
  59063. extra: 1184/905,
  59064. bottom: 96/1280
  59065. }
  59066. },
  59067. head: {
  59068. height: math.unit(1.85, "feet"),
  59069. name: "Head",
  59070. image: {
  59071. source: "./media/characters/mook/head.svg"
  59072. }
  59073. },
  59074. hand: {
  59075. height: math.unit(1.9, "feet"),
  59076. name: "Hand",
  59077. image: {
  59078. source: "./media/characters/mook/hand.svg"
  59079. }
  59080. },
  59081. palm: {
  59082. height: math.unit(1.84, "feet"),
  59083. name: "Palm",
  59084. image: {
  59085. source: "./media/characters/mook/palm.svg"
  59086. }
  59087. },
  59088. foot: {
  59089. height: math.unit(1.44, "feet"),
  59090. name: "Foot",
  59091. image: {
  59092. source: "./media/characters/mook/foot.svg"
  59093. }
  59094. },
  59095. sole: {
  59096. height: math.unit(1.44, "feet"),
  59097. name: "Sole",
  59098. image: {
  59099. source: "./media/characters/mook/sole.svg"
  59100. }
  59101. },
  59102. },
  59103. [
  59104. {
  59105. name: "Normal",
  59106. height: math.unit(5 + 4/12, "feet"),
  59107. default: true
  59108. },
  59109. {
  59110. name: "Big",
  59111. height: math.unit(12, "feet")
  59112. },
  59113. ]
  59114. ))
  59115. characterMakers.push(() => makeCharacter(
  59116. { name: "Kayla", species: ["human"], tags: ["anthro"] },
  59117. {
  59118. front: {
  59119. height: math.unit(6 + 10/12, "feet"),
  59120. weight: math.unit(233, "lb"),
  59121. name: "Front",
  59122. image: {
  59123. source: "./media/characters/kayla/front.svg",
  59124. extra: 1850/1775,
  59125. bottom: 65/1915
  59126. }
  59127. },
  59128. },
  59129. [
  59130. {
  59131. name: "Normal",
  59132. height: math.unit(6 + 10/12, "feet"),
  59133. default: true
  59134. },
  59135. {
  59136. name: "Amazonian",
  59137. height: math.unit(12 + 5/12, "feet")
  59138. },
  59139. {
  59140. name: "Mini Giantess",
  59141. height: math.unit(26, "feet")
  59142. },
  59143. {
  59144. name: "Giantess",
  59145. height: math.unit(200, "feet")
  59146. },
  59147. {
  59148. name: "Mega Giantess",
  59149. height: math.unit(2500, "feet")
  59150. },
  59151. {
  59152. name: "City Sized",
  59153. height: math.unit(50, "miles")
  59154. },
  59155. {
  59156. name: "Country Sized",
  59157. height: math.unit(500, "miles")
  59158. },
  59159. {
  59160. name: "Continent Sized",
  59161. height: math.unit(2500, "miles")
  59162. },
  59163. {
  59164. name: "Planet Sized",
  59165. height: math.unit(10000, "miles")
  59166. },
  59167. {
  59168. name: "Star Sized",
  59169. height: math.unit(5e6, "miles")
  59170. },
  59171. {
  59172. name: "Solar System Sized",
  59173. height: math.unit(125, "AU")
  59174. },
  59175. {
  59176. name: "Galaxy Sized",
  59177. height: math.unit(300e3, "lightyears")
  59178. },
  59179. {
  59180. name: "Universe Sized",
  59181. height: math.unit(200e9, "lightyears")
  59182. },
  59183. {
  59184. name: "Multiverse Sized",
  59185. height: math.unit(20, "exauniverses")
  59186. },
  59187. {
  59188. name: "Mother of Existence",
  59189. height: math.unit(1e6, "yottauniverses")
  59190. },
  59191. ]
  59192. ))
  59193. characterMakers.push(() => makeCharacter(
  59194. { name: "Kulve Ragnarok", species: ["kulve-taroth"], tags: ["taur"] },
  59195. {
  59196. side: {
  59197. height: math.unit(9.5, "meters"),
  59198. name: "Side",
  59199. image: {
  59200. source: "./media/characters/kulve-ragnarok/side.svg",
  59201. extra: 364/326,
  59202. bottom: 50/414
  59203. }
  59204. },
  59205. },
  59206. [
  59207. {
  59208. name: "Normal",
  59209. height: math.unit(9.5, "meters"),
  59210. default: true
  59211. },
  59212. ]
  59213. ))
  59214. characterMakers.push(() => makeCharacter(
  59215. { name: "Atlas (Goat)", species: ["goat"], tags: ["anthro"] },
  59216. {
  59217. front: {
  59218. height: math.unit(8 + 9/12, "feet"),
  59219. name: "Front",
  59220. image: {
  59221. source: "./media/characters/atlas-goat/front.svg",
  59222. extra: 1462/1323,
  59223. bottom: 12/1474
  59224. }
  59225. },
  59226. },
  59227. [
  59228. {
  59229. name: "Normal",
  59230. height: math.unit(8 + 9/12, "feet"),
  59231. default: true
  59232. },
  59233. {
  59234. name: "Skyline",
  59235. height: math.unit(845, "feet")
  59236. },
  59237. {
  59238. name: "Orbital",
  59239. height: math.unit(93000, "miles")
  59240. },
  59241. {
  59242. name: "Constellation",
  59243. height: math.unit(27000, "lightyears")
  59244. },
  59245. ]
  59246. ))
  59247. characterMakers.push(() => makeCharacter(
  59248. { name: "Xie Ling", species: ["irthos"], tags: ["anthro"] },
  59249. {
  59250. side: {
  59251. height: math.unit(1.8, "meters"),
  59252. weight: math.unit(120, "kg"),
  59253. name: "Side",
  59254. image: {
  59255. source: "./media/characters/xie-ling/side.svg",
  59256. extra: 646/574,
  59257. bottom: 44/690
  59258. }
  59259. },
  59260. },
  59261. [
  59262. {
  59263. name: "Tiny",
  59264. height: math.unit(1.80, "meters")
  59265. },
  59266. {
  59267. name: "Small",
  59268. height: math.unit(6, "meters")
  59269. },
  59270. {
  59271. name: "Medium",
  59272. height: math.unit(15, "meters")
  59273. },
  59274. {
  59275. name: "Normal",
  59276. height: math.unit(30, "meters"),
  59277. default: true
  59278. },
  59279. {
  59280. name: "Above Normal",
  59281. height: math.unit(60, "meters")
  59282. },
  59283. {
  59284. name: "Big",
  59285. height: math.unit(220, "meters")
  59286. },
  59287. {
  59288. name: "Giant",
  59289. height: math.unit(2.2, "km")
  59290. },
  59291. {
  59292. name: "Macro",
  59293. height: math.unit(25, "km")
  59294. },
  59295. {
  59296. name: "Mega Macro",
  59297. height: math.unit(350, "km")
  59298. },
  59299. {
  59300. name: "Mega Macro+",
  59301. height: math.unit(5000, "km")
  59302. },
  59303. {
  59304. name: "Goddess",
  59305. height: math.unit(3, "multiverses")
  59306. },
  59307. ]
  59308. ))
  59309. characterMakers.push(() => makeCharacter(
  59310. { name: "Sune Nemeruva", species: ["furred-dragon"], tags: ["anthro"] },
  59311. {
  59312. frontSfw: {
  59313. height: math.unit(5 + 11/12, "feet"),
  59314. weight: math.unit(210, "lb"),
  59315. name: "Front",
  59316. image: {
  59317. source: "./media/characters/sune-nemeruva/front-sfw.svg",
  59318. extra: 1928/1821,
  59319. bottom: 45/1973
  59320. }
  59321. },
  59322. backSfw: {
  59323. height: math.unit(5 + 11/12, "feet"),
  59324. weight: math.unit(210, "lb"),
  59325. name: "Back",
  59326. image: {
  59327. source: "./media/characters/sune-nemeruva/back-sfw.svg",
  59328. extra: 1920/1813,
  59329. bottom: 34/1954
  59330. }
  59331. },
  59332. frontNsfw: {
  59333. height: math.unit(5 + 11/12, "feet"),
  59334. weight: math.unit(210, "lb"),
  59335. name: "Front (NSFW)",
  59336. image: {
  59337. source: "./media/characters/sune-nemeruva/front-nsfw.svg",
  59338. extra: 1928/1821,
  59339. bottom: 45/1973
  59340. }
  59341. },
  59342. backNsfw: {
  59343. height: math.unit(5 + 11/12, "feet"),
  59344. weight: math.unit(210, "lb"),
  59345. name: "Back (NSFW)",
  59346. image: {
  59347. source: "./media/characters/sune-nemeruva/back-nsfw.svg",
  59348. extra: 1920/1813,
  59349. bottom: 34/1954
  59350. }
  59351. },
  59352. },
  59353. [
  59354. {
  59355. name: "Normal",
  59356. height: math.unit(5 + 11/12, "feet"),
  59357. default: true
  59358. },
  59359. {
  59360. name: "Goddess",
  59361. height: math.unit(20 + 3/12, "feet")
  59362. },
  59363. {
  59364. name: "Breaker of Man",
  59365. height: math.unit(329 + 9/12, "feet")
  59366. },
  59367. {
  59368. name: "Solar Justice",
  59369. height: math.unit(0.6, "solarradii")
  59370. },
  59371. {
  59372. name: "She Who Judges",
  59373. height: math.unit(1, "universe")
  59374. },
  59375. ]
  59376. ))
  59377. characterMakers.push(() => makeCharacter(
  59378. { name: "Managarmr", species: ["dragon", "deity"], tags: ["anthro"] },
  59379. {
  59380. casual_front: {
  59381. height: math.unit(6 + 1/12, "feet"),
  59382. weight: math.unit(190, "lb"),
  59383. preyCapacity: math.unit(1, "people"),
  59384. name: "Front",
  59385. image: {
  59386. source: "./media/characters/managarmr/casual-front.svg",
  59387. extra: 411/381,
  59388. bottom: 15/426
  59389. },
  59390. extraAttributes: {
  59391. "pawSize": {
  59392. name: "Paw Size",
  59393. power: 1,
  59394. type: "length",
  59395. base: math.unit(0.2, "meters")
  59396. },
  59397. },
  59398. form: "casual",
  59399. },
  59400. casual_back: {
  59401. height: math.unit(6 + 1/12, "feet"),
  59402. weight: math.unit(190, "lb"),
  59403. preyCapacity: math.unit(1, "people"),
  59404. name: "Back",
  59405. image: {
  59406. source: "./media/characters/managarmr/casual-back.svg",
  59407. extra: 413/383,
  59408. bottom: 13/426
  59409. },
  59410. extraAttributes: {
  59411. "pawSize": {
  59412. name: "Paw Size",
  59413. power: 1,
  59414. type: "length",
  59415. base: math.unit(0.2, "meters")
  59416. },
  59417. },
  59418. form: "casual",
  59419. },
  59420. base_front: {
  59421. height: math.unit(7, "feet"),
  59422. weight: math.unit(210, "lb"),
  59423. preyCapacity: math.unit(2, "people"),
  59424. name: "Front",
  59425. image: {
  59426. source: "./media/characters/managarmr/base-front.svg",
  59427. extra: 580/485,
  59428. bottom: 32/612
  59429. },
  59430. extraAttributes: {
  59431. "wingspan": {
  59432. name: "Wingspan",
  59433. power: 1,
  59434. type: "length",
  59435. base: math.unit(4, "meters")
  59436. },
  59437. "pawSize": {
  59438. name: "Paw Size",
  59439. power: 1,
  59440. type: "length",
  59441. base: math.unit(0.2, "meters")
  59442. },
  59443. },
  59444. form: "base",
  59445. },
  59446. "true-divine_front": {
  59447. height: math.unit(40, "feet"),
  59448. weight: math.unit(39000, "lb"),
  59449. preyCapacity: math.unit(375, "people"),
  59450. name: "Front",
  59451. image: {
  59452. source: "./media/characters/managarmr/true-divine-front.svg",
  59453. extra: 725/573,
  59454. bottom: 120/845
  59455. },
  59456. extraAttributes: {
  59457. "wingspan": {
  59458. name: "Wingspan",
  59459. power: 1,
  59460. type: "length",
  59461. base: math.unit(20, "meters")
  59462. },
  59463. "pawSize": {
  59464. name: "Paw Size",
  59465. power: 1,
  59466. type: "length",
  59467. base: math.unit(1.5, "meters")
  59468. },
  59469. },
  59470. form: "true-divine",
  59471. },
  59472. },
  59473. [
  59474. {
  59475. name: "Normal",
  59476. height: math.unit(6 + 1/12, "feet"),
  59477. form: "casual",
  59478. default: true
  59479. },
  59480. {
  59481. name: "Normal",
  59482. height: math.unit(7, "feet"),
  59483. form: "base",
  59484. default: true
  59485. },
  59486. ],
  59487. {
  59488. "casual": {
  59489. name: "Casual",
  59490. default: true
  59491. },
  59492. "base": {
  59493. name: "Base",
  59494. },
  59495. "true-divine": {
  59496. name: "True Divine",
  59497. },
  59498. }
  59499. ))
  59500. characterMakers.push(() => makeCharacter(
  59501. { name: "Mystra", species: ["sergal", "deity"], tags: ["anthro"] },
  59502. {
  59503. front: {
  59504. height: math.unit(1.8, "meters"),
  59505. weight: math.unit(110, "kg"),
  59506. name: "Front",
  59507. image: {
  59508. source: "./media/characters/mystra/front.svg",
  59509. extra: 529/442,
  59510. bottom: 31/560
  59511. }
  59512. },
  59513. frontLewd: {
  59514. height: math.unit(1.8, "meters"),
  59515. weight: math.unit(110, "kg"),
  59516. name: "Front (Lewd)",
  59517. image: {
  59518. source: "./media/characters/mystra/front-lewd.svg",
  59519. extra: 529/442,
  59520. bottom: 31/560
  59521. }
  59522. },
  59523. head: {
  59524. height: math.unit(1.63, "feet"),
  59525. name: "Head",
  59526. image: {
  59527. source: "./media/characters/mystra/head.svg"
  59528. }
  59529. },
  59530. paw: {
  59531. height: math.unit(1.9, "feet"),
  59532. name: "Paw",
  59533. image: {
  59534. source: "./media/characters/mystra/paw.svg"
  59535. }
  59536. },
  59537. },
  59538. [
  59539. {
  59540. name: "Incognito",
  59541. height: math.unit(2.3, "meters")
  59542. },
  59543. {
  59544. name: "Small Macro",
  59545. height: math.unit(300, "meters")
  59546. },
  59547. {
  59548. name: "Small Mega",
  59549. height: math.unit(2, "km")
  59550. },
  59551. {
  59552. name: "Mega",
  59553. height: math.unit(30, "km")
  59554. },
  59555. {
  59556. name: "Small Giga",
  59557. height: math.unit(100, "km")
  59558. },
  59559. {
  59560. name: "Giga",
  59561. height: math.unit(1000, "km"),
  59562. default: true
  59563. },
  59564. {
  59565. name: "Continental",
  59566. height: math.unit(5000, "km")
  59567. },
  59568. {
  59569. name: "Terra",
  59570. height: math.unit(20000, "km")
  59571. },
  59572. {
  59573. name: "Solar",
  59574. height: math.unit(2e6, "km")
  59575. },
  59576. {
  59577. name: "Galactic",
  59578. height: math.unit(528502, "lightyears")
  59579. },
  59580. {
  59581. name: "Universal",
  59582. height: math.unit(20, "universes")
  59583. },
  59584. ]
  59585. ))
  59586. characterMakers.push(() => makeCharacter(
  59587. { name: "Caleb", species: ["lion", "cobra", "dragon", "chimera", "deity"], tags: ["anthro"] },
  59588. {
  59589. front: {
  59590. height: math.unit(2, "meters"),
  59591. weight: math.unit(140, "kg"),
  59592. name: "Front",
  59593. image: {
  59594. source: "./media/characters/caleb/front.svg",
  59595. extra: 873/817,
  59596. bottom: 47/920
  59597. }
  59598. },
  59599. back: {
  59600. height: math.unit(2, "meters"),
  59601. weight: math.unit(140, "kg"),
  59602. name: "Back",
  59603. image: {
  59604. source: "./media/characters/caleb/back.svg",
  59605. extra: 877/828,
  59606. bottom: 24/901
  59607. }
  59608. },
  59609. snakeTail: {
  59610. height: math.unit(1.44, "feet"),
  59611. name: "Snake Tail",
  59612. image: {
  59613. source: "./media/characters/caleb/snake-tail.svg"
  59614. }
  59615. },
  59616. dick: {
  59617. height: math.unit(2.6, "feet"),
  59618. name: "Dick",
  59619. image: {
  59620. source: "./media/characters/caleb/dick.svg"
  59621. }
  59622. },
  59623. },
  59624. [
  59625. {
  59626. name: "Incognito",
  59627. height: math.unit(3, "meters")
  59628. },
  59629. {
  59630. name: "Home Size",
  59631. height: math.unit(200, "meters"),
  59632. default: true
  59633. },
  59634. {
  59635. name: "Macro",
  59636. height: math.unit(500, "meters")
  59637. },
  59638. {
  59639. name: "Big Macro",
  59640. height: math.unit(5, "km")
  59641. },
  59642. {
  59643. name: "Giga",
  59644. height: math.unit(250, "km")
  59645. },
  59646. {
  59647. name: "Giga+",
  59648. height: math.unit(5000, "km")
  59649. },
  59650. {
  59651. name: "Small Terra",
  59652. height: math.unit(35e3, "km")
  59653. },
  59654. {
  59655. name: "Terra",
  59656. height: math.unit(2e6, "km")
  59657. },
  59658. {
  59659. name: "Terra+",
  59660. height: math.unit(1.5e6, "km")
  59661. },
  59662. ]
  59663. ))
  59664. characterMakers.push(() => makeCharacter(
  59665. { name: "Gilirian", species: ["giraffe", "zebra", "deity"], tags: ["anthro"] },
  59666. {
  59667. front: {
  59668. height: math.unit(2, "meters"),
  59669. weight: math.unit(120, "kg"),
  59670. name: "Front",
  59671. image: {
  59672. source: "./media/characters/gilirian/front.svg",
  59673. extra: 805/737,
  59674. bottom: 13/818
  59675. }
  59676. },
  59677. side: {
  59678. height: math.unit(2, "meters"),
  59679. weight: math.unit(120, "kg"),
  59680. name: "Side",
  59681. image: {
  59682. source: "./media/characters/gilirian/side.svg",
  59683. extra: 810/746,
  59684. bottom: 6/816
  59685. }
  59686. },
  59687. back: {
  59688. height: math.unit(2, "meters"),
  59689. weight: math.unit(120, "kg"),
  59690. name: "Back",
  59691. image: {
  59692. source: "./media/characters/gilirian/back.svg",
  59693. extra: 815/745,
  59694. bottom: 15/830
  59695. }
  59696. },
  59697. frontNsfw: {
  59698. height: math.unit(2, "meters"),
  59699. weight: math.unit(120, "kg"),
  59700. name: "Front (NSFW)",
  59701. image: {
  59702. source: "./media/characters/gilirian/front-nsfw.svg",
  59703. extra: 805/737,
  59704. bottom: 13/818
  59705. }
  59706. },
  59707. sideNsfw: {
  59708. height: math.unit(2, "meters"),
  59709. weight: math.unit(120, "kg"),
  59710. name: "Side (NSFW)",
  59711. image: {
  59712. source: "./media/characters/gilirian/side-nsfw.svg",
  59713. extra: 810/746,
  59714. bottom: 6/816
  59715. }
  59716. },
  59717. },
  59718. [
  59719. {
  59720. name: "Incognito",
  59721. height: math.unit(2, "meters"),
  59722. default: true
  59723. },
  59724. {
  59725. name: "Macro",
  59726. height: math.unit(250, "meters")
  59727. },
  59728. {
  59729. name: "Big Macro",
  59730. height: math.unit(1500, "meters")
  59731. },
  59732. {
  59733. name: "Mega",
  59734. height: math.unit(40, "km")
  59735. },
  59736. {
  59737. name: "Giga",
  59738. height: math.unit(300, "km")
  59739. },
  59740. {
  59741. name: "Extra Giga",
  59742. height: math.unit(5000, "km")
  59743. },
  59744. {
  59745. name: "Small Terra",
  59746. height: math.unit(10e3, "km")
  59747. },
  59748. {
  59749. name: "Terra",
  59750. height: math.unit(3e5, "km")
  59751. },
  59752. {
  59753. name: "Galactic",
  59754. height: math.unit(369950, "lightyears")
  59755. },
  59756. ]
  59757. ))
  59758. characterMakers.push(() => makeCharacter(
  59759. { name: "Tarken", species: ["t-rex", "kaiju", "deity"], tags: ["anthro"] },
  59760. {
  59761. front: {
  59762. height: math.unit(2.5, "meters"),
  59763. weight: math.unit(230, "lb"),
  59764. name: "Front",
  59765. image: {
  59766. source: "./media/characters/tarken/front.svg",
  59767. extra: 764/720,
  59768. bottom: 49/813
  59769. }
  59770. },
  59771. back: {
  59772. height: math.unit(2.5, "meters"),
  59773. weight: math.unit(230, "lb"),
  59774. name: "Back",
  59775. image: {
  59776. source: "./media/characters/tarken/back.svg",
  59777. extra: 756/720,
  59778. bottom: 35/791
  59779. }
  59780. },
  59781. frontNsfw: {
  59782. height: math.unit(2.5, "meters"),
  59783. weight: math.unit(230, "lb"),
  59784. name: "Front (NSFW)",
  59785. image: {
  59786. source: "./media/characters/tarken/front-nsfw.svg",
  59787. extra: 764/720,
  59788. bottom: 49/813
  59789. }
  59790. },
  59791. backNsfw: {
  59792. height: math.unit(2.5, "meters"),
  59793. weight: math.unit(230, "lb"),
  59794. name: "Back (NSFW)",
  59795. image: {
  59796. source: "./media/characters/tarken/back-nsfw.svg",
  59797. extra: 756/720,
  59798. bottom: 35/791
  59799. }
  59800. },
  59801. head: {
  59802. height: math.unit(2.22, "feet"),
  59803. name: "Head",
  59804. image: {
  59805. source: "./media/characters/tarken/head.svg"
  59806. }
  59807. },
  59808. tail: {
  59809. height: math.unit(5.25, "feet"),
  59810. name: "Tail",
  59811. image: {
  59812. source: "./media/characters/tarken/tail.svg"
  59813. }
  59814. },
  59815. dick: {
  59816. height: math.unit(1.95, "feet"),
  59817. name: "Dick",
  59818. image: {
  59819. source: "./media/characters/tarken/dick.svg"
  59820. }
  59821. },
  59822. hand: {
  59823. height: math.unit(1.78, "feet"),
  59824. name: "Hand",
  59825. image: {
  59826. source: "./media/characters/tarken/hand.svg"
  59827. }
  59828. },
  59829. beam: {
  59830. height: math.unit(1.5, "feet"),
  59831. name: "Beam",
  59832. image: {
  59833. source: "./media/characters/tarken/beam.svg"
  59834. }
  59835. },
  59836. },
  59837. [
  59838. {
  59839. name: "Original Size",
  59840. height: math.unit(2.5, "meters")
  59841. },
  59842. {
  59843. name: "Macro",
  59844. height: math.unit(150, "meters"),
  59845. default: true
  59846. },
  59847. {
  59848. name: "Macro+",
  59849. height: math.unit(300, "meters")
  59850. },
  59851. {
  59852. name: "Mega",
  59853. height: math.unit(2, "km")
  59854. },
  59855. {
  59856. name: "Mega+",
  59857. height: math.unit(35, "km")
  59858. },
  59859.  {
  59860. name: "Mega++",
  59861. height: math.unit(60, "km")
  59862. },
  59863. {
  59864. name: "Giga",
  59865. height: math.unit(200, "km")
  59866. },
  59867. {
  59868. name: "Giga+",
  59869. height: math.unit(2500, "km")
  59870. },
  59871. {
  59872. name: "Giga++",
  59873. height: math.unit(6600, "km")
  59874. },
  59875. {
  59876. name: "Terra",
  59877. height: math.unit(20000, "km")
  59878. },
  59879. {
  59880. name: "Terra+",
  59881. height: math.unit(300000, "km")
  59882. },
  59883. ]
  59884. ))
  59885. characterMakers.push(() => makeCharacter(
  59886. { name: "Otreus", species: ["magpie", "hippogriff", "deity"], tags: ["anthro"] },
  59887. {
  59888. magpie_dressed: {
  59889. height: math.unit(1.7, "meters"),
  59890. weight: math.unit(70, "kg"),
  59891. name: "Dressed",
  59892. image: {
  59893. source: "./media/characters/otreus/magpie-dressed.svg",
  59894. extra: 691/672,
  59895. bottom: 116/807
  59896. },
  59897. form: "magpie",
  59898. default: true
  59899. },
  59900. magpie_nude: {
  59901. height: math.unit(1.7, "meters"),
  59902. weight: math.unit(70, "kg"),
  59903. name: "Nude",
  59904. image: {
  59905. source: "./media/characters/otreus/magpie-nude.svg",
  59906. extra: 691/672,
  59907. bottom: 116/807
  59908. },
  59909. form: "magpie",
  59910. },
  59911. magpie_dressedLewd: {
  59912. height: math.unit(1.7, "meters"),
  59913. weight: math.unit(70, "kg"),
  59914. name: "Dressed (Lewd)",
  59915. image: {
  59916. source: "./media/characters/otreus/magpie-dressed-lewd.svg",
  59917. extra: 691/672,
  59918. bottom: 116/807
  59919. },
  59920. form: "magpie",
  59921. },
  59922. magpie_nudeLewd: {
  59923. height: math.unit(1.7, "meters"),
  59924. weight: math.unit(70, "kg"),
  59925. name: "Nude (Lewd)",
  59926. image: {
  59927. source: "./media/characters/otreus/magpie-nude-lewd.svg",
  59928. extra: 691/672,
  59929. bottom: 116/807
  59930. },
  59931. form: "magpie",
  59932. },
  59933. magpie_leftFoot: {
  59934. height: math.unit(1.58, "feet"),
  59935. name: "Left Foot",
  59936. image: {
  59937. source: "./media/characters/otreus/magpie-left-foot.svg"
  59938. },
  59939. form: "magpie",
  59940. },
  59941. magpie_rightFoot: {
  59942. height: math.unit(1.58, "feet"),
  59943. name: "Right Foot",
  59944. image: {
  59945. source: "./media/characters/otreus/magpie-right-foot.svg"
  59946. },
  59947. form: "magpie",
  59948. },
  59949. magpie_wingspan: {
  59950. height: math.unit(2, "meters"),
  59951. weight: math.unit(70, "kg"),
  59952. name: "Wingspan",
  59953. image: {
  59954. source: "./media/characters/otreus/magpie-wingspan.svg"
  59955. },
  59956. extraAttributes: {
  59957. "wingspan": {
  59958. name: "Wingspan",
  59959. power: 1,
  59960. type: "length",
  59961. base: math.unit(3.35, "meters")
  59962. },
  59963. },
  59964. form: "magpie",
  59965. },
  59966. hippogriff_dressed: {
  59967. height: math.unit(1.7, "meters"),
  59968. weight: math.unit(70, "kg"),
  59969. name: "Dressed",
  59970. image: {
  59971. source: "./media/characters/otreus/hippogriff-dressed.svg",
  59972. extra: 710/689,
  59973. bottom: 67/777
  59974. },
  59975. form: "hippogriff",
  59976. default: true
  59977. },
  59978. hippogriff_nude: {
  59979. height: math.unit(1.7, "meters"),
  59980. weight: math.unit(70, "kg"),
  59981. name: "Nude",
  59982. image: {
  59983. source: "./media/characters/otreus/hippogriff-nude.svg",
  59984. extra: 710/689,
  59985. bottom: 67/777
  59986. },
  59987. form: "hippogriff",
  59988. },
  59989. hippogriff_dressedLewd: {
  59990. height: math.unit(1.7, "meters"),
  59991. weight: math.unit(70, "kg"),
  59992. name: "Dressed (Lewd)",
  59993. image: {
  59994. source: "./media/characters/otreus/hippogriff-dressed-lewd.svg",
  59995. extra: 710/689,
  59996. bottom: 67/777
  59997. },
  59998. form: "hippogriff",
  59999. },
  60000. hippogriff_nudeLewd: {
  60001. height: math.unit(1.7, "meters"),
  60002. weight: math.unit(70, "kg"),
  60003. name: "Nude (Lewd)",
  60004. image: {
  60005. source: "./media/characters/otreus/hippogriff-nude-lewd.svg",
  60006. extra: 710/689,
  60007. bottom: 67/777
  60008. },
  60009. form: "hippogriff",
  60010. },
  60011. },
  60012. [
  60013. {
  60014. name: "Original Size",
  60015. height: math.unit(1.7, "meters"),
  60016. allForms: true
  60017. },
  60018. {
  60019. name: "Incognito Size",
  60020. height: math.unit(2, "meters"),
  60021. allForms: true
  60022. },
  60023. {
  60024. name: "Mega",
  60025. height: math.unit(2, "km"),
  60026. allForms: true
  60027. },
  60028. {
  60029. name: "Mega+",
  60030. height: math.unit(40, "km"),
  60031. allForms: true
  60032. },
  60033. {
  60034. name: "Giga",
  60035. height: math.unit(250, "km"),
  60036. allForms: true
  60037. },
  60038. {
  60039. name: "Giga+",
  60040. height: math.unit(3000, "km"),
  60041. allForms: true
  60042. },
  60043. {
  60044. name: "Terra",
  60045. height: math.unit(20000, "km"),
  60046. allForms: true
  60047. },
  60048. {
  60049. name: "Solar (Home Size)",
  60050. height: math.unit(3e6, "km"),
  60051. allForms: true,
  60052. default: true
  60053. },
  60054. ],
  60055. {
  60056. "magpie": {
  60057. name: "Magpie",
  60058. default: true
  60059. },
  60060. "hippogriff": {
  60061. name: "Hippogriff",
  60062. },
  60063. }
  60064. ))
  60065. characterMakers.push(() => makeCharacter(
  60066. { name: "Thalia", species: ["flying-fox", "fox", "deity"], tags: ["anthro"] },
  60067. {
  60068. frontDressed: {
  60069. height: math.unit(1.8, "meters"),
  60070. weight: math.unit(90, "kg"),
  60071. name: "Front (Dressed)",
  60072. image: {
  60073. source: "./media/characters/thalia/front-dressed.svg",
  60074. extra: 478/402,
  60075. bottom: 55/533
  60076. }
  60077. },
  60078. backDressed: {
  60079. height: math.unit(1.8, "meters"),
  60080. weight: math.unit(90, "kg"),
  60081. name: "Back (Dressed)",
  60082. image: {
  60083. source: "./media/characters/thalia/back-dressed.svg",
  60084. extra: 500/424,
  60085. bottom: 15/515
  60086. }
  60087. },
  60088. frontNude: {
  60089. height: math.unit(1.8, "meters"),
  60090. weight: math.unit(90, "kg"),
  60091. name: "Front (Nude)",
  60092. image: {
  60093. source: "./media/characters/thalia/front-nude.svg",
  60094. extra: 478/402,
  60095. bottom: 55/533
  60096. }
  60097. },
  60098. backNude: {
  60099. height: math.unit(1.8, "meters"),
  60100. weight: math.unit(90, "kg"),
  60101. name: "Back (Nude)",
  60102. image: {
  60103. source: "./media/characters/thalia/back-nude.svg",
  60104. extra: 500/424,
  60105. bottom: 15/515
  60106. }
  60107. },
  60108. },
  60109. [
  60110. {
  60111. name: "Incognito",
  60112. height: math.unit(3, "meters")
  60113. },
  60114. {
  60115. name: "Macro",
  60116. height: math.unit(500, "meters")
  60117. },
  60118. {
  60119. name: "Mega",
  60120. height: math.unit(5, "km")
  60121. },
  60122. {
  60123. name: "Mega+",
  60124. height: math.unit(30, "km")
  60125. },
  60126. {
  60127. name: "Giga",
  60128. height: math.unit(350, "km")
  60129. },
  60130. {
  60131. name: "Giga+",
  60132. height: math.unit(4000, "km")
  60133. },
  60134. {
  60135. name: "Terra",
  60136. height: math.unit(35000, "km")
  60137. },
  60138. {
  60139. name: "Original Size",
  60140. height: math.unit(130000, "km")
  60141. },
  60142. {
  60143. name: "Solar (Home Size)",
  60144. height: math.unit(4e6, "km"),
  60145. default: true
  60146. },
  60147. ]
  60148. ))
  60149. characterMakers.push(() => makeCharacter(
  60150. { name: "Shango", species: ["african-wild-dog", "deity"], tags: ["anthro"] },
  60151. {
  60152. front: {
  60153. height: math.unit(1.8, "meters"),
  60154. weight: math.unit(95, "kg"),
  60155. name: "Front",
  60156. image: {
  60157. source: "./media/characters/shango/front.svg",
  60158. extra: 1925/1774,
  60159. bottom: 67/1992
  60160. }
  60161. },
  60162. back: {
  60163. height: math.unit(1.8, "meters"),
  60164. weight: math.unit(95, "kg"),
  60165. name: "Back",
  60166. image: {
  60167. source: "./media/characters/shango/back.svg",
  60168. extra: 1915/1766,
  60169. bottom: 52/1967
  60170. }
  60171. },
  60172. frontLewd: {
  60173. height: math.unit(1.8, "meters"),
  60174. weight: math.unit(95, "kg"),
  60175. name: "Front (Lewd)",
  60176. image: {
  60177. source: "./media/characters/shango/front-lewd.svg",
  60178. extra: 1925/1774,
  60179. bottom: 67/1992
  60180. }
  60181. },
  60182. backLewd: {
  60183. height: math.unit(1.8, "meters"),
  60184. weight: math.unit(95, "kg"),
  60185. name: "Back (Lewd)",
  60186. image: {
  60187. source: "./media/characters/shango/back-lewd.svg",
  60188. extra: 1915/1766,
  60189. bottom: 52/1967
  60190. }
  60191. },
  60192. maw: {
  60193. height: math.unit(1.64, "feet"),
  60194. name: "Maw",
  60195. image: {
  60196. source: "./media/characters/shango/maw.svg"
  60197. }
  60198. },
  60199. dick: {
  60200. height: math.unit(2.14, "feet"),
  60201. name: "Dick",
  60202. image: {
  60203. source: "./media/characters/shango/dick.svg"
  60204. }
  60205. },
  60206. },
  60207. [
  60208. {
  60209. name: "Incognito",
  60210. height: math.unit(1.8, "meters")
  60211. },
  60212. {
  60213. name: "Home Size",
  60214. height: math.unit(60, "meters"),
  60215. default: true
  60216. },
  60217. {
  60218. name: "Macro",
  60219. height: math.unit(450, "meters")
  60220. },
  60221. {
  60222. name: "Mega",
  60223. height: math.unit(6, "km")
  60224. },
  60225. {
  60226. name: "Mega+",
  60227. height: math.unit(35, "km")
  60228. },
  60229. {
  60230. name: "Giga",
  60231. height: math.unit(500, "km")
  60232. },
  60233. {
  60234. name: "Giga+",
  60235. height: math.unit(5000, "km")
  60236. },
  60237. {
  60238. name: "Terra",
  60239. height: math.unit(60000, "km")
  60240. },
  60241. {
  60242. name: "Terra+",
  60243. height: math.unit(400000, "km")
  60244. },
  60245. ]
  60246. ))
  60247. characterMakers.push(() => makeCharacter(
  60248. { name: "Osiris (Gryphon)", species: ["gryphon", "snow-leopard", "peregrine-falcon", "deity"], tags: ["anthro"] },
  60249. {
  60250. front: {
  60251. height: math.unit(2, "meters"),
  60252. weight: math.unit(95, "kg"),
  60253. name: "Front",
  60254. image: {
  60255. source: "./media/characters/osiris-gryphon/front.svg",
  60256. extra: 1508/1313,
  60257. bottom: 87/1595
  60258. }
  60259. },
  60260. back: {
  60261. height: math.unit(2, "meters"),
  60262. weight: math.unit(95, "kg"),
  60263. name: "Back",
  60264. image: {
  60265. source: "./media/characters/osiris-gryphon/back.svg",
  60266. extra: 1436/1309,
  60267. bottom: 64/1500
  60268. }
  60269. },
  60270. frontLewd: {
  60271. height: math.unit(2, "meters"),
  60272. weight: math.unit(95, "kg"),
  60273. name: "Front (Lewd)",
  60274. image: {
  60275. source: "./media/characters/osiris-gryphon/front-lewd.svg",
  60276. extra: 1508/1313,
  60277. bottom: 87/1595
  60278. }
  60279. },
  60280. wing: {
  60281. height: math.unit(6.3333, "feet"),
  60282. name: "Wing",
  60283. image: {
  60284. source: "./media/characters/osiris-gryphon/wing.svg"
  60285. }
  60286. },
  60287. },
  60288. [
  60289. {
  60290. name: "Incognito",
  60291. height: math.unit(2, "meters")
  60292. },
  60293. {
  60294. name: "Home Size",
  60295. height: math.unit(30, "meters"),
  60296. default: true
  60297. },
  60298. {
  60299. name: "Macro",
  60300. height: math.unit(100, "meters")
  60301. },
  60302. {
  60303. name: "Macro+",
  60304. height: math.unit(350, "meters")
  60305. },
  60306. {
  60307. name: "Mega",
  60308. height: math.unit(40, "km")
  60309. },
  60310. {
  60311. name: "Giga",
  60312. height: math.unit(300, "km")
  60313. },
  60314. {
  60315. name: "Giga+",
  60316. height: math.unit(2000, "km")
  60317. },
  60318. {
  60319. name: "Terra",
  60320. height: math.unit(30000, "km")
  60321. },
  60322. ]
  60323. ))
  60324. characterMakers.push(() => makeCharacter(
  60325. { name: "Atlas (Dragon)", species: ["dragon", "deity"], tags: ["anthro"] },
  60326. {
  60327. front: {
  60328. height: math.unit(2.5, "meters"),
  60329. weight: math.unit(200, "kg"),
  60330. name: "Front",
  60331. image: {
  60332. source: "./media/characters/atlas-dragon/front.svg",
  60333. extra: 745/462,
  60334. bottom: 36/781
  60335. }
  60336. },
  60337. back: {
  60338. height: math.unit(2.5, "meters"),
  60339. weight: math.unit(200, "kg"),
  60340. name: "Back",
  60341. image: {
  60342. source: "./media/characters/atlas-dragon/back.svg",
  60343. extra: 848/822,
  60344. bottom: 57/905
  60345. }
  60346. },
  60347. frontLewd: {
  60348. height: math.unit(2.5, "meters"),
  60349. weight: math.unit(200, "kg"),
  60350. name: "Front (Lewd)",
  60351. image: {
  60352. source: "./media/characters/atlas-dragon/front-lewd.svg",
  60353. extra: 745/462,
  60354. bottom: 36/781
  60355. }
  60356. },
  60357. backLewd: {
  60358. height: math.unit(2.5, "meters"),
  60359. weight: math.unit(200, "kg"),
  60360. name: "Back (Lewd)",
  60361. image: {
  60362. source: "./media/characters/atlas-dragon/back-lewd.svg",
  60363. extra: 848/822,
  60364. bottom: 57/905
  60365. }
  60366. },
  60367. },
  60368. [
  60369. {
  60370. name: "Incognito",
  60371. height: math.unit(2.5, "meters")
  60372. },
  60373. {
  60374. name: "Small Macro",
  60375. height: math.unit(50, "meters")
  60376. },
  60377. {
  60378. name: "Macro",
  60379. height: math.unit(350, "meters")
  60380. },
  60381. {
  60382. name: "Mega",
  60383. height: math.unit(5.5, "kilometers")
  60384. },
  60385. {
  60386. name: "Mega+",
  60387. height: math.unit(50, "km")
  60388. },
  60389. {
  60390. name: "Giga",
  60391. height: math.unit(350, "km")
  60392. },
  60393. {
  60394. name: "Giga+",
  60395. height: math.unit(2000, "km")
  60396. },
  60397. {
  60398. name: "Giga++",
  60399. height: math.unit(6500, "km")
  60400. },
  60401. {
  60402. name: "Terra",
  60403. height: math.unit(30000, "km")
  60404. },
  60405. {
  60406. name: "Terra+",
  60407. height: math.unit(250000, "km")
  60408. },
  60409. {
  60410. name: "True Size",
  60411. height: math.unit(100, "multiverses"),
  60412. default: true
  60413. },
  60414. ]
  60415. ))
  60416. characterMakers.push(() => makeCharacter(
  60417. { name: "Chey", species: ["coyote", "deity"], tags: ["anthro"] },
  60418. {
  60419. front: {
  60420. height: math.unit(1.8, "m"),
  60421. weight: math.unit(120, "kg"),
  60422. name: "Front",
  60423. image: {
  60424. source: "./media/characters/chey/front.svg",
  60425. extra: 1359/1270,
  60426. bottom: 18/1377
  60427. }
  60428. },
  60429. arm: {
  60430. height: math.unit(2.05, "feet"),
  60431. name: "Arm",
  60432. image: {
  60433. source: "./media/characters/chey/arm.svg"
  60434. }
  60435. },
  60436. head: {
  60437. height: math.unit(1.89, "feet"),
  60438. name: "Head",
  60439. image: {
  60440. source: "./media/characters/chey/head.svg"
  60441. }
  60442. },
  60443. },
  60444. [
  60445. {
  60446. name: "Original Size",
  60447. height: math.unit(5, "cm")
  60448. },
  60449. {
  60450. name: "Incognito Size",
  60451. height: math.unit(2.4, "m")
  60452. },
  60453. {
  60454. name: "Home Size",
  60455. height: math.unit(200, "meters"),
  60456. default: true
  60457. },
  60458. {
  60459. name: "Mega",
  60460. height: math.unit(2, "km")
  60461. },
  60462. {
  60463. name: "Giga (Preferred Size)",
  60464. height: math.unit(2000, "km")
  60465. },
  60466. {
  60467. name: "Giga+",
  60468. height: math.unit(6000, "km")
  60469. },
  60470. {
  60471. name: "Terra",
  60472. height: math.unit(17000, "km")
  60473. },
  60474. {
  60475. name: "Terra+",
  60476. height: math.unit(75000, "km")
  60477. },
  60478. {
  60479. name: "Terra++",
  60480. height: math.unit(225000, "km")
  60481. },
  60482. ]
  60483. ))
  60484. characterMakers.push(() => makeCharacter(
  60485. { name: "Ragnarok", species: ["suicune"], tags: ["taur"] },
  60486. {
  60487. side: {
  60488. height: math.unit(7.8, "meters"),
  60489. name: "Side",
  60490. image: {
  60491. source: "./media/characters/ragnarok/side.svg",
  60492. extra: 725/621,
  60493. bottom: 72/797
  60494. }
  60495. },
  60496. },
  60497. [
  60498. {
  60499. name: "Normal",
  60500. height: math.unit(7.8, "meters"),
  60501. default: true
  60502. },
  60503. ]
  60504. ))
  60505. characterMakers.push(() => makeCharacter(
  60506. { name: "Nima", species: ["hyena", "shark", "deity"], tags: ["anthro"] },
  60507. {
  60508. hyena_front: {
  60509. height: math.unit(2.1, "meters"),
  60510. weight: math.unit(110, "kg"),
  60511. name: "Front",
  60512. image: {
  60513. source: "./media/characters/nima/hyena-front.svg",
  60514. extra: 1904/1796,
  60515. bottom: 67/1971
  60516. },
  60517. form: "hyena",
  60518. },
  60519. hyena_back: {
  60520. height: math.unit(2.1, "meters"),
  60521. weight: math.unit(110, "kg"),
  60522. name: "Back",
  60523. image: {
  60524. source: "./media/characters/nima/hyena-back.svg",
  60525. extra: 1964/1884,
  60526. bottom: 35/1999
  60527. },
  60528. form: "hyena",
  60529. },
  60530. shark_front: {
  60531. height: math.unit(1.95, "meters"),
  60532. weight: math.unit(110, "kg"),
  60533. name: "Front",
  60534. image: {
  60535. source: "./media/characters/nima/shark-front.svg",
  60536. extra: 2238/2013,
  60537. bottom: 0/223
  60538. },
  60539. form: "shark",
  60540. },
  60541. paw: {
  60542. height: math.unit(1, "feet"),
  60543. name: "Paw",
  60544. image: {
  60545. source: "./media/characters/nima/paw.svg"
  60546. }
  60547. },
  60548. circlet: {
  60549. height: math.unit(0.3, "feet"),
  60550. name: "Circlet",
  60551. image: {
  60552. source: "./media/characters/nima/circlet.svg"
  60553. }
  60554. },
  60555. necklace: {
  60556. height: math.unit(1.2, "feet"),
  60557. name: "Necklace",
  60558. image: {
  60559. source: "./media/characters/nima/necklace.svg"
  60560. }
  60561. },
  60562. bracelet: {
  60563. height: math.unit(0.51, "feet"),
  60564. name: "Bracelet",
  60565. image: {
  60566. source: "./media/characters/nima/bracelet.svg"
  60567. }
  60568. },
  60569. armband: {
  60570. height: math.unit(1.3, "feet"),
  60571. name: "Armband",
  60572. image: {
  60573. source: "./media/characters/nima/armband.svg"
  60574. }
  60575. },
  60576. },
  60577. [
  60578. {
  60579. name: "Incognito",
  60580. height: math.unit(2.1, "meters"),
  60581. allForms: true
  60582. },
  60583. {
  60584. name: "Small Macro",
  60585. height: math.unit(50, "meters"),
  60586. allForms: true
  60587. },
  60588. {
  60589. name: "Macro",
  60590. height: math.unit(200, "meters"),
  60591. allForms: true
  60592. },
  60593. {
  60594. name: "Mega",
  60595. height: math.unit(2.5, "km"),
  60596. allForms: true
  60597. },
  60598. {
  60599. name: "Mega+",
  60600. height: math.unit(30, "km"),
  60601. allForms: true
  60602. },
  60603. {
  60604. name: "Giga (Home Size)",
  60605. height: math.unit(400, "km"),
  60606. allForms: true,
  60607. default: true
  60608. },
  60609. {
  60610. name: "Giga+",
  60611. height: math.unit(2500, "km"),
  60612. allForms: true
  60613. },
  60614. {
  60615. name: "Giga++",
  60616. height: math.unit(8000, "km"),
  60617. allForms: true
  60618. },
  60619. {
  60620. name: "Terra",
  60621. height: math.unit(20000, "km"),
  60622. allForms: true
  60623. },
  60624. {
  60625. name: "Terra+",
  60626. height: math.unit(70000, "km"),
  60627. allForms: true
  60628. },
  60629. {
  60630. name: "Terra++",
  60631. height: math.unit(600000, "km"),
  60632. allForms: true
  60633. },
  60634. {
  60635. name: "Galactic",
  60636. height: math.unit(40, "galaxies"),
  60637. allForms: true
  60638. },
  60639. {
  60640. name: "Universal",
  60641. height: math.unit(40, "universes"),
  60642. allForms: true
  60643. },
  60644. ],
  60645. {
  60646. "hyena": {
  60647. name: "Hyena",
  60648. default: true
  60649. },
  60650. "shark": {
  60651. name: "Shark",
  60652. },
  60653. }
  60654. ))
  60655. characterMakers.push(() => makeCharacter(
  60656. { name: "Adelaide", species: ["deinonychus"], tags: ["anthro", "feral"] },
  60657. {
  60658. anthro_front: {
  60659. height: math.unit(1.5, "meters"),
  60660. name: "Front",
  60661. image: {
  60662. source: "./media/characters/adelaide/anthro-front.svg",
  60663. extra: 860/783,
  60664. bottom: 60/920
  60665. },
  60666. form: "anthro",
  60667. default: true
  60668. },
  60669. hand: {
  60670. height: math.unit(0.65, "feet"),
  60671. name: "Hand",
  60672. image: {
  60673. source: "./media/characters/adelaide/hand.svg"
  60674. },
  60675. form: "anthro"
  60676. },
  60677. foot: {
  60678. height: math.unit(1.38 * 259 / 314, "feet"),
  60679. name: "Foot",
  60680. image: {
  60681. source: "./media/characters/adelaide/foot.svg",
  60682. extra: 259/259,
  60683. bottom: 55/314
  60684. },
  60685. form: "anthro"
  60686. },
  60687. feather: {
  60688. height: math.unit(0.85, "feet"),
  60689. name: "Feather",
  60690. image: {
  60691. source: "./media/characters/adelaide/feather.svg"
  60692. },
  60693. form: "anthro"
  60694. },
  60695. feral_side: {
  60696. height: math.unit(1, "meters"),
  60697. name: "Side",
  60698. image: {
  60699. source: "./media/characters/adelaide/feral-side.svg",
  60700. extra: 550/467,
  60701. bottom: 37/587
  60702. },
  60703. form: "feral",
  60704. default: true
  60705. },
  60706. feral_hand: {
  60707. height: math.unit(0.58, "feet"),
  60708. name: "Hand",
  60709. image: {
  60710. source: "./media/characters/adelaide/hand.svg"
  60711. },
  60712. form: "feral"
  60713. },
  60714. feral_foot: {
  60715. height: math.unit(1.2 * 259 / 314, "feet"),
  60716. name: "Foot",
  60717. image: {
  60718. source: "./media/characters/adelaide/foot.svg",
  60719. extra: 259/259,
  60720. bottom: 55/314
  60721. },
  60722. form: "feral"
  60723. },
  60724. feral_feather: {
  60725. height: math.unit(0.63, "feet"),
  60726. name: "Feather",
  60727. image: {
  60728. source: "./media/characters/adelaide/feather.svg"
  60729. },
  60730. form: "feral"
  60731. },
  60732. },
  60733. [
  60734. {
  60735. name: "Normal",
  60736. height: math.unit(1.5, "meters"),
  60737. form: "anthro",
  60738. default: true
  60739. },
  60740. {
  60741. name: "Normal",
  60742. height: math.unit(1, "meters"),
  60743. form: "feral",
  60744. default: true
  60745. },
  60746. ],
  60747. {
  60748. "anthro": {
  60749. name: "Anthro",
  60750. default: true
  60751. },
  60752. "feral": {
  60753. name: "Feral",
  60754. },
  60755. }
  60756. ))
  60757. characterMakers.push(() => makeCharacter(
  60758. { name: "Goa", species: ["chocobo"], tags: ["taur"] },
  60759. {
  60760. front: {
  60761. height: math.unit(2.5, "meters"),
  60762. name: "Front",
  60763. image: {
  60764. source: "./media/characters/goa/front.svg",
  60765. extra: 1109/1013,
  60766. bottom: 150/1259
  60767. }
  60768. },
  60769. },
  60770. [
  60771. {
  60772. name: "Normal",
  60773. height: math.unit(2.5, "meters"),
  60774. default: true
  60775. },
  60776. ]
  60777. ))
  60778. characterMakers.push(() => makeCharacter(
  60779. { name: "Kiki (Weavile)", species: ["weavile"], tags: ["anthro"] },
  60780. {
  60781. front: {
  60782. height: math.unit(2, "meters"),
  60783. weight: math.unit(100, "kg"),
  60784. name: "Front",
  60785. image: {
  60786. source: "./media/characters/kiki-weavile/front.svg",
  60787. extra: 357/332,
  60788. bottom: 60/417
  60789. }
  60790. },
  60791. },
  60792. [
  60793. {
  60794. name: "Normal",
  60795. height: math.unit(2, "meters"),
  60796. default: true
  60797. },
  60798. ]
  60799. ))
  60800. characterMakers.push(() => makeCharacter(
  60801. { name: "Liza", species: ["stilio"], tags: ["taur"] },
  60802. {
  60803. side: {
  60804. height: math.unit(1.6, "meters"),
  60805. name: "Side",
  60806. image: {
  60807. source: "./media/characters/liza/side.svg",
  60808. extra: 943/915,
  60809. bottom: 72/1015
  60810. }
  60811. },
  60812. },
  60813. [
  60814. {
  60815. name: "Normal",
  60816. height: math.unit(1.6, "meters"),
  60817. default: true
  60818. },
  60819. ]
  60820. ))
  60821. characterMakers.push(() => makeCharacter(
  60822. { name: "Persephone Sweetbreath", species: ["hyena", "gnoll"], tags: ["taur"] },
  60823. {
  60824. side: {
  60825. height: math.unit(2.5, "meters"),
  60826. preyCapacity: math.unit(1, "people"),
  60827. name: "Side",
  60828. image: {
  60829. source: "./media/characters/persephone-sweetbreath/side.svg",
  60830. extra: 796/700,
  60831. bottom: 44/840
  60832. }
  60833. },
  60834. sideVore: {
  60835. height: math.unit(2.5, "meters"),
  60836. preyCapacity: math.unit(1, "people"),
  60837. name: "Side (Full)",
  60838. image: {
  60839. source: "./media/characters/persephone-sweetbreath/side-vore.svg",
  60840. extra: 796/700,
  60841. bottom: 44/840
  60842. }
  60843. },
  60844. },
  60845. [
  60846. {
  60847. name: "Normal",
  60848. height: math.unit(2.5, "meters"),
  60849. default: true
  60850. },
  60851. ]
  60852. ))
  60853. characterMakers.push(() => makeCharacter(
  60854. { name: "Pierce", species: ["dragon"], tags: ["feral"] },
  60855. {
  60856. front: {
  60857. height: math.unit(32, "meters"),
  60858. name: "Front",
  60859. image: {
  60860. source: "./media/characters/pierce/front.svg",
  60861. extra: 1695/1475,
  60862. bottom: 185/1880
  60863. }
  60864. },
  60865. side: {
  60866. height: math.unit(32, "meters"),
  60867. name: "Side",
  60868. image: {
  60869. source: "./media/characters/pierce/side.svg",
  60870. extra: 974/859,
  60871. bottom: 43/1017
  60872. }
  60873. },
  60874. frontWingless: {
  60875. height: math.unit(32, "meters"),
  60876. name: "Front (Wingless)",
  60877. image: {
  60878. source: "./media/characters/pierce/front-wingless.svg",
  60879. extra: 1695/1475,
  60880. bottom: 185/1880
  60881. }
  60882. },
  60883. sideWingless: {
  60884. height: math.unit(32, "meters"),
  60885. name: "Side (Wingless)",
  60886. image: {
  60887. source: "./media/characters/pierce/side-wingless.svg",
  60888. extra: 974/859,
  60889. bottom: 43/1017
  60890. }
  60891. },
  60892. maw: {
  60893. height: math.unit(19.3, "meters"),
  60894. name: "Maw",
  60895. image: {
  60896. source: "./media/characters/pierce/maw.svg"
  60897. }
  60898. },
  60899. },
  60900. [
  60901. {
  60902. name: "Small",
  60903. height: math.unit(8.5, "meters")
  60904. },
  60905. {
  60906. name: "Normal",
  60907. height: math.unit(32, "meters"),
  60908. default: true
  60909. },
  60910. ]
  60911. ))
  60912. characterMakers.push(() => makeCharacter(
  60913. { name: "Shira", species: ["cobra", "deity", "dragon"], tags: ["anthro"] },
  60914. {
  60915. front: {
  60916. height: math.unit(2.3, "meters"),
  60917. weight: math.unit(165, "kg"),
  60918. name: "Front",
  60919. image: {
  60920. source: "./media/characters/shira/front.svg",
  60921. extra: 924/919,
  60922. bottom: 17/941
  60923. },
  60924. form: "cobra",
  60925. default: true
  60926. },
  60927. back: {
  60928. height: math.unit(2.3, "meters"),
  60929. weight: math.unit(165, "kg"),
  60930. name: "Back",
  60931. image: {
  60932. source: "./media/characters/shira/back.svg",
  60933. extra: 928/922,
  60934. bottom: 18/946
  60935. },
  60936. form: "cobra"
  60937. },
  60938. frontLewd: {
  60939. height: math.unit(2.3, "meters"),
  60940. weight: math.unit(165, "kg"),
  60941. name: "Front (Lewd)",
  60942. image: {
  60943. source: "./media/characters/shira/front-lewd.svg",
  60944. extra: 924/919,
  60945. bottom: 17/941
  60946. },
  60947. form: "cobra"
  60948. },
  60949. backLewd: {
  60950. height: math.unit(2.3, "meters"),
  60951. weight: math.unit(165, "kg"),
  60952. name: "Back (Lewd)",
  60953. image: {
  60954. source: "./media/characters/shira/back-lewd.svg",
  60955. extra: 928/922,
  60956. bottom: 18/946
  60957. },
  60958. form: "cobra"
  60959. },
  60960. maw: {
  60961. height: math.unit(1.14, "feet"),
  60962. name: "Maw",
  60963. image: {
  60964. source: "./media/characters/shira/maw.svg"
  60965. },
  60966. form: "cobra"
  60967. },
  60968. magma_front: {
  60969. height: math.unit(2.3, "meters"),
  60970. weight: math.unit(165, "kg"),
  60971. name: "Front",
  60972. image: {
  60973. source: "./media/characters/shira/magma-front.svg",
  60974. extra: 1870/1693,
  60975. bottom: 24/1894
  60976. },
  60977. form: "magma",
  60978. },
  60979. magma_back: {
  60980. height: math.unit(2.3, "meters"),
  60981. weight: math.unit(165, "kg"),
  60982. name: "Back",
  60983. image: {
  60984. source: "./media/characters/shira/magma-back.svg",
  60985. extra: 1918/1756,
  60986. bottom: 46/1964
  60987. },
  60988. form: "magma",
  60989. },
  60990. },
  60991. [
  60992. {
  60993. name: "Incognito",
  60994. height: math.unit(2.3, "meters"),
  60995. allForms: true
  60996. },
  60997. {
  60998. name: "Home Size",
  60999. height: math.unit(150, "meters"),
  61000. default: true,
  61001. allForms: true
  61002. },
  61003. {
  61004. name: "Macro",
  61005. height: math.unit(2, "km"),
  61006. allForms: true
  61007. },
  61008. {
  61009. name: "Mega",
  61010. height: math.unit(30, "km"),
  61011. allForms: true
  61012. },
  61013. {
  61014. name: "Giga",
  61015. height: math.unit(450, "km"),
  61016. allForms: true
  61017. },
  61018. {
  61019. name: "Giga+",
  61020. height: math.unit(3000, "km"),
  61021. allForms: true
  61022. },
  61023. {
  61024. name: "Giga++",
  61025. height: math.unit(6000, "km"),
  61026. allForms: true
  61027. },
  61028. {
  61029. name: "Terra",
  61030. height: math.unit(80000, "km"),
  61031. allForms: true
  61032. },
  61033. {
  61034. name: "Terra+",
  61035. height: math.unit(350000, "km"),
  61036. allForms: true
  61037. },
  61038. {
  61039. name: "Solar",
  61040. height: math.unit(1e6, "km"),
  61041. allForms: true
  61042. },
  61043. ],
  61044. {
  61045. "cobra": {
  61046. name: "Cobra",
  61047. default: true
  61048. },
  61049. "magma": {
  61050. name: "Magma Dragon",
  61051. },
  61052. }
  61053. ))
  61054. characterMakers.push(() => makeCharacter(
  61055. { name: "Daxerios", species: ["wolf", "cerberus", "deity"], tags: ["anthro"] },
  61056. {
  61057. front: {
  61058. height: math.unit(2, "meters"),
  61059. weight: math.unit(160, "kg"),
  61060. name: "Front",
  61061. image: {
  61062. source: "./media/characters/daxerios/front.svg",
  61063. extra: 1334/1277,
  61064. bottom: 45/1379
  61065. }
  61066. },
  61067. frontLewd: {
  61068. height: math.unit(2, "meters"),
  61069. weight: math.unit(160, "kg"),
  61070. name: "Front (Lewd)",
  61071. image: {
  61072. source: "./media/characters/daxerios/front-lewd.svg",
  61073. extra: 1334/1277,
  61074. bottom: 45/1379
  61075. }
  61076. },
  61077. dick: {
  61078. height: math.unit(2.35, "feet"),
  61079. name: "Dick",
  61080. image: {
  61081. source: "./media/characters/daxerios/dick.svg"
  61082. }
  61083. },
  61084. },
  61085. [
  61086. {
  61087. name: "\"Small\"",
  61088. height: math.unit(5, "meters")
  61089. },
  61090. {
  61091. name: "Original Size",
  61092. height: math.unit(500, "meters"),
  61093. default: true
  61094. },
  61095. {
  61096. name: "Mega",
  61097. height: math.unit(2, "km")
  61098. },
  61099. {
  61100. name: "Mega+",
  61101. height: math.unit(35, "km")
  61102. },
  61103. {
  61104. name: "Giga",
  61105. height: math.unit(250, "km")
  61106. },
  61107. {
  61108. name: "Giga+",
  61109. height: math.unit(3000, "km")
  61110. },
  61111. {
  61112. name: "Terra",
  61113. height: math.unit(25000, "km")
  61114. },
  61115. {
  61116. name: "Terra+",
  61117. height: math.unit(300000, "km")
  61118. },
  61119. {
  61120. name: "Solar",
  61121. height: math.unit(1e6, "km")
  61122. },
  61123. ]
  61124. ))
  61125. characterMakers.push(() => makeCharacter(
  61126. { name: "Caveat", species: ["luxray", "plush"], tags: ["anthro"] },
  61127. {
  61128. front: {
  61129. height: math.unit(8 + 4/12, "feet"),
  61130. weight: math.unit(464, "lb"),
  61131. name: "Front",
  61132. image: {
  61133. source: "./media/characters/caveat/front.svg",
  61134. extra: 1861/1678,
  61135. bottom: 40/1901
  61136. }
  61137. },
  61138. },
  61139. [
  61140. {
  61141. name: "Normal",
  61142. height: math.unit(8 + 4/12, "feet"),
  61143. default: true
  61144. },
  61145. ]
  61146. ))
  61147. characterMakers.push(() => makeCharacter(
  61148. { name: "Centbair", species: ["kardox"], tags: ["anthro"] },
  61149. {
  61150. front: {
  61151. height: math.unit(12, "feet"),
  61152. weight: math.unit(1800, "lb"),
  61153. name: "Front",
  61154. image: {
  61155. source: "./media/characters/centbair/front.svg",
  61156. extra: 781/663,
  61157. bottom: 25/806
  61158. }
  61159. },
  61160. frontNsfw: {
  61161. height: math.unit(12, "feet"),
  61162. weight: math.unit(1800, "lb"),
  61163. name: "Front (NSFW)",
  61164. image: {
  61165. source: "./media/characters/centbair/front-nsfw.svg",
  61166. extra: 781/663,
  61167. bottom: 25/806
  61168. }
  61169. },
  61170. back: {
  61171. height: math.unit(12, "feet"),
  61172. weight: math.unit(1800, "lb"),
  61173. name: "Back",
  61174. image: {
  61175. source: "./media/characters/centbair/back.svg",
  61176. extra: 808/761,
  61177. bottom: 19/827
  61178. }
  61179. },
  61180. dick: {
  61181. height: math.unit(6.5, "feet"),
  61182. name: "Dick",
  61183. image: {
  61184. source: "./media/characters/centbair/dick.svg"
  61185. }
  61186. },
  61187. slit: {
  61188. height: math.unit(3.25, "feet"),
  61189. name: "Slit",
  61190. image: {
  61191. source: "./media/characters/centbair/slit.svg"
  61192. }
  61193. },
  61194. },
  61195. [
  61196. {
  61197. name: "Normal",
  61198. height: math.unit(12, "feet"),
  61199. default: true
  61200. },
  61201. ]
  61202. ))
  61203. characterMakers.push(() => makeCharacter(
  61204. { name: "Andy", species: ["tanuki"], tags: ["anthro"] },
  61205. {
  61206. front: {
  61207. height: math.unit(5 + 7/12, "feet"),
  61208. name: "Front",
  61209. image: {
  61210. source: "./media/characters/andy/front.svg",
  61211. extra: 634/588,
  61212. bottom: 36/670
  61213. },
  61214. extraAttributes: {
  61215. "pawLength": {
  61216. name: "Paw Length",
  61217. power: 1,
  61218. type: "length",
  61219. base: math.unit(1, "feet")
  61220. },
  61221. }
  61222. },
  61223. side: {
  61224. height: math.unit(5 + 7/12, "feet"),
  61225. name: "Side",
  61226. image: {
  61227. source: "./media/characters/andy/side.svg",
  61228. extra: 641/596,
  61229. bottom: 34/675
  61230. },
  61231. extraAttributes: {
  61232. "pawLength": {
  61233. name: "Paw Length",
  61234. power: 1,
  61235. type: "length",
  61236. base: math.unit(1, "feet")
  61237. },
  61238. }
  61239. },
  61240. back: {
  61241. height: math.unit(5 + 7/12, "feet"),
  61242. name: "Back",
  61243. image: {
  61244. source: "./media/characters/andy/back.svg",
  61245. extra: 618/583,
  61246. bottom: 39/657
  61247. },
  61248. extraAttributes: {
  61249. "pawLength": {
  61250. name: "Paw Length",
  61251. power: 1,
  61252. type: "length",
  61253. base: math.unit(1, "feet")
  61254. },
  61255. }
  61256. },
  61257. paw: {
  61258. height: math.unit(1.13, "feet"),
  61259. name: "Paw",
  61260. image: {
  61261. source: "./media/characters/andy/paw.svg"
  61262. }
  61263. },
  61264. },
  61265. [
  61266. {
  61267. name: "Micro",
  61268. height: math.unit(4, "inches")
  61269. },
  61270. {
  61271. name: "Normal",
  61272. height: math.unit(5 + 7/12, "feet"),
  61273. default: true
  61274. },
  61275. {
  61276. name: "Macro",
  61277. height: math.unit(390.42, "feet")
  61278. },
  61279. ]
  61280. ))
  61281. characterMakers.push(() => makeCharacter(
  61282. { name: "Vix Titan", species: ["fox", "demon"], tags: ["anthro"] },
  61283. {
  61284. front: {
  61285. height: math.unit(7, "feet"),
  61286. weight: math.unit(250, "lb"),
  61287. name: "Front",
  61288. image: {
  61289. source: "./media/characters/vix-titan/front.svg",
  61290. extra: 460/428,
  61291. bottom: 15/475
  61292. },
  61293. extraAttributes: {
  61294. "pawWidth": {
  61295. name: "Paw Width",
  61296. power: 1,
  61297. type: "length",
  61298. base: math.unit(0.75, "feet")
  61299. },
  61300. }
  61301. },
  61302. },
  61303. [
  61304. {
  61305. name: "Normal",
  61306. height: math.unit(7, "feet"),
  61307. default: true
  61308. },
  61309. {
  61310. name: "Giant",
  61311. height: math.unit(1500, "feet")
  61312. },
  61313. {
  61314. name: "Mega",
  61315. height: math.unit(10, "miles")
  61316. },
  61317. {
  61318. name: "Giga",
  61319. height: math.unit(150, "miles")
  61320. },
  61321. {
  61322. name: "Tera",
  61323. height: math.unit(144000, "miles")
  61324. },
  61325. ]
  61326. ))
  61327. characterMakers.push(() => makeCharacter(
  61328. { name: "Reiku", species: ["dragon"], tags: ["anthro"] },
  61329. {
  61330. front: {
  61331. height: math.unit(6 + 2/12, "feet"),
  61332. name: "Front",
  61333. image: {
  61334. source: "./media/characters/reiku/front.svg",
  61335. extra: 1910/1757,
  61336. bottom: 103/2013
  61337. },
  61338. extraAttributes: {
  61339. "thighThickness": {
  61340. name: "Thigh Thickness",
  61341. power: 1,
  61342. type: "length",
  61343. base: math.unit(1.12, "feet")
  61344. },
  61345. "assThickness": {
  61346. name: "Ass Thickness",
  61347. power: 1,
  61348. type: "length",
  61349. base: math.unit(1.12*2, "feet")
  61350. },
  61351. }
  61352. },
  61353. side: {
  61354. height: math.unit(6 + 2/12, "feet"),
  61355. name: "Side",
  61356. image: {
  61357. source: "./media/characters/reiku/side.svg",
  61358. extra: 1846/1748,
  61359. bottom: 99/1945
  61360. },
  61361. extraAttributes: {
  61362. "thighThickness": {
  61363. name: "Thigh Thickness",
  61364. power: 1,
  61365. type: "length",
  61366. base: math.unit(1.12, "feet")
  61367. },
  61368. "assThickness": {
  61369. name: "Ass Thickness",
  61370. power: 1,
  61371. type: "length",
  61372. base: math.unit(1.12*2, "feet")
  61373. },
  61374. }
  61375. },
  61376. back: {
  61377. height: math.unit(6 + 2/12, "feet"),
  61378. name: "Back",
  61379. image: {
  61380. source: "./media/characters/reiku/back.svg",
  61381. extra: 1941/1786,
  61382. bottom: 34/1975
  61383. },
  61384. extraAttributes: {
  61385. "thighThickness": {
  61386. name: "Thigh Thickness",
  61387. power: 1,
  61388. type: "length",
  61389. base: math.unit(1.12, "feet")
  61390. },
  61391. "assThickness": {
  61392. name: "Ass Thickness",
  61393. power: 1,
  61394. type: "length",
  61395. base: math.unit(1.12*2, "feet")
  61396. },
  61397. }
  61398. },
  61399. head: {
  61400. height: math.unit(1.8, "feet"),
  61401. name: "Head",
  61402. image: {
  61403. source: "./media/characters/reiku/head.svg"
  61404. }
  61405. },
  61406. tailTop: {
  61407. height: math.unit(8.4, "feet"),
  61408. name: "Tail (Top)",
  61409. image: {
  61410. source: "./media/characters/reiku/tail-top.svg"
  61411. }
  61412. },
  61413. tailBottom: {
  61414. height: math.unit(8.4, "feet"),
  61415. name: "Tail (Bottom)",
  61416. image: {
  61417. source: "./media/characters/reiku/tail-bottom.svg"
  61418. }
  61419. },
  61420. foot: {
  61421. height: math.unit(2.6, "feet"),
  61422. name: "Foot",
  61423. image: {
  61424. source: "./media/characters/reiku/foot.svg"
  61425. }
  61426. },
  61427. footCurled: {
  61428. height: math.unit(2.3, "feet"),
  61429. name: "Foot (Curled)",
  61430. image: {
  61431. source: "./media/characters/reiku/foot-curled.svg"
  61432. }
  61433. },
  61434. footSide: {
  61435. height: math.unit(1.26, "feet"),
  61436. name: "Foot (Side)",
  61437. image: {
  61438. source: "./media/characters/reiku/foot-side.svg"
  61439. }
  61440. },
  61441. },
  61442. [
  61443. {
  61444. name: "Normal",
  61445. height: math.unit(6 + 2/12, "feet"),
  61446. default: true
  61447. },
  61448. ]
  61449. ))
  61450. characterMakers.push(() => makeCharacter(
  61451. { name: "Cialda", species: ["zorgoia", "food"], tags: ["feral"] },
  61452. {
  61453. front: {
  61454. height: math.unit(7, "feet"),
  61455. weight: math.unit(500, "kg"),
  61456. name: "Front",
  61457. image: {
  61458. source: "./media/characters/cialda/front.svg",
  61459. extra: 912/745,
  61460. bottom: 55/967
  61461. }
  61462. },
  61463. },
  61464. [
  61465. {
  61466. name: "Normal",
  61467. height: math.unit(7, "feet"),
  61468. default: true
  61469. },
  61470. ]
  61471. ))
  61472. characterMakers.push(() => makeCharacter(
  61473. { name: "Darkkin", species: ["honey-badger", "behemoth"], tags: ["anthro"] },
  61474. {
  61475. side: {
  61476. height: math.unit(6, "feet"),
  61477. weight: math.unit(600, "lb"),
  61478. preyCapacity: math.unit(25, "liters"),
  61479. name: "Side",
  61480. image: {
  61481. source: "./media/characters/darkkin/side.svg",
  61482. extra: 1597/1447,
  61483. bottom: 101/1698
  61484. }
  61485. },
  61486. },
  61487. [
  61488. {
  61489. name: "Canon Height",
  61490. height: math.unit(568, "feet"),
  61491. default: true
  61492. },
  61493. ]
  61494. ))
  61495. characterMakers.push(() => makeCharacter(
  61496. { name: "Livnia", species: ["rattlesnake", "diamondback"], tags: ["naga"] },
  61497. {
  61498. front: {
  61499. height: math.unit(6, "feet"),
  61500. weight: math.unit(1500, "lb"),
  61501. preyCapacity: math.unit(3, "people"),
  61502. name: "Front",
  61503. image: {
  61504. source: "./media/characters/livnia/front.svg",
  61505. extra: 934/932,
  61506. bottom: 83/1017
  61507. }
  61508. },
  61509. back: {
  61510. height: math.unit(6, "feet"),
  61511. weight: math.unit(1500, "lb"),
  61512. preyCapacity: math.unit(3, "people"),
  61513. name: "Back",
  61514. image: {
  61515. source: "./media/characters/livnia/back.svg",
  61516. extra: 916/915,
  61517. bottom: 58/974
  61518. }
  61519. },
  61520. head: {
  61521. height: math.unit(1.53, "feet"),
  61522. name: "Head",
  61523. image: {
  61524. source: "./media/characters/livnia/head.svg"
  61525. }
  61526. },
  61527. maw: {
  61528. height: math.unit(0.78, "feet"),
  61529. name: "Maw",
  61530. image: {
  61531. source: "./media/characters/livnia/maw.svg"
  61532. }
  61533. },
  61534. genitals: {
  61535. height: math.unit(0.35, "feet"),
  61536. name: "Genitals",
  61537. image: {
  61538. source: "./media/characters/livnia/genitals.svg"
  61539. }
  61540. },
  61541. },
  61542. [
  61543. {
  61544. name: "Normal",
  61545. height: math.unit(1000, "feet"),
  61546. default: true
  61547. },
  61548. ]
  61549. ))
  61550. characterMakers.push(() => makeCharacter(
  61551. { name: "Hayaku", species: ["spidox"], tags: ["anthro"] },
  61552. {
  61553. front: {
  61554. height: math.unit(4, "feet"),
  61555. weight: math.unit(73, "lb"),
  61556. name: "Front",
  61557. image: {
  61558. source: "./media/characters/hayaku/front.svg",
  61559. extra: 1011/888,
  61560. bottom: 33/1044
  61561. }
  61562. },
  61563. back: {
  61564. height: math.unit(4, "feet"),
  61565. weight: math.unit(73, "lb"),
  61566. name: "Back",
  61567. image: {
  61568. source: "./media/characters/hayaku/back.svg",
  61569. extra: 1040/930,
  61570. bottom: 20/1060
  61571. }
  61572. },
  61573. },
  61574. [
  61575. {
  61576. name: "Normal",
  61577. height: math.unit(4, "feet"),
  61578. default: true
  61579. },
  61580. ]
  61581. ))
  61582. characterMakers.push(() => makeCharacter(
  61583. { name: "Athena Bryzant", species: ["gryphon"], tags: ["anthro"] },
  61584. {
  61585. front: {
  61586. height: math.unit(6 + 7/12, "feet"),
  61587. weight: math.unit(300, "lb"),
  61588. name: "Front",
  61589. image: {
  61590. source: "./media/characters/athena-bryzant/front.svg",
  61591. extra: 870/835,
  61592. bottom: 33/903
  61593. }
  61594. },
  61595. back: {
  61596. height: math.unit(6 + 7/12, "feet"),
  61597. weight: math.unit(300, "lb"),
  61598. name: "Back",
  61599. image: {
  61600. source: "./media/characters/athena-bryzant/back.svg",
  61601. extra: 858/823,
  61602. bottom: 30/888
  61603. }
  61604. },
  61605. head: {
  61606. height: math.unit(2.38, "feet"),
  61607. name: "Head",
  61608. image: {
  61609. source: "./media/characters/athena-bryzant/head.svg"
  61610. }
  61611. },
  61612. wings: {
  61613. height: math.unit(2.85, "feet"),
  61614. name: "Wings",
  61615. image: {
  61616. source: "./media/characters/athena-bryzant/wings.svg"
  61617. }
  61618. },
  61619. },
  61620. [
  61621. {
  61622. name: "Normal",
  61623. height: math.unit(6 + 7/12, "feet"),
  61624. default: true
  61625. },
  61626. {
  61627. name: "Big",
  61628. height: math.unit(8, "feet")
  61629. },
  61630. {
  61631. name: "Very Big",
  61632. height: math.unit(11, "feet")
  61633. },
  61634. ]
  61635. ))
  61636. characterMakers.push(() => makeCharacter(
  61637. { name: "Zel-Kesh", species: ["zorgoia", "demon"], tags: ["feral"] },
  61638. {
  61639. side: {
  61640. height: math.unit(3, "meters"),
  61641. weight: math.unit(7500, "kg"),
  61642. preyCapacity: math.unit(1e12, "people"),
  61643. name: "Side",
  61644. image: {
  61645. source: "./media/characters/zel-kesh/side.svg",
  61646. extra: 910/407,
  61647. bottom: 147/1057
  61648. }
  61649. },
  61650. },
  61651. [
  61652. {
  61653. name: "Normal",
  61654. height: math.unit(3, "meters"),
  61655. default: true
  61656. },
  61657. ]
  61658. ))
  61659. characterMakers.push(() => makeCharacter(
  61660. { name: "Kane (Fox)", species: ["fox", "deity"], tags: ["anthro"] },
  61661. {
  61662. front: {
  61663. height: math.unit(2, "meters"),
  61664. weight: math.unit(95, "kg"),
  61665. name: "Front",
  61666. image: {
  61667. source: "./media/characters/kane-fox/front.svg",
  61668. extra: 945/888,
  61669. bottom: 27/972
  61670. }
  61671. },
  61672. back: {
  61673. height: math.unit(2, "meters"),
  61674. weight: math.unit(95, "kg"),
  61675. name: "Back",
  61676. image: {
  61677. source: "./media/characters/kane-fox/back.svg",
  61678. extra: 959/914,
  61679. bottom: 15/974
  61680. }
  61681. },
  61682. frontLewd: {
  61683. height: math.unit(2, "meters"),
  61684. weight: math.unit(95, "kg"),
  61685. name: "Front (Lewd)",
  61686. image: {
  61687. source: "./media/characters/kane-fox/front-lewd.svg",
  61688. extra: 945/888,
  61689. bottom: 27/972
  61690. }
  61691. },
  61692. },
  61693. [
  61694. {
  61695. name: "Home Size",
  61696. height: math.unit(2, "meters"),
  61697. default: true
  61698. },
  61699. {
  61700. name: "Macro",
  61701. height: math.unit(200, "meters")
  61702. },
  61703. {
  61704. name: "Small Mega",
  61705. height: math.unit(3, "km")
  61706. },
  61707. {
  61708. name: "Mega",
  61709. height: math.unit(50, "km")
  61710. },
  61711. {
  61712. name: "Giga",
  61713. height: math.unit(200, "km")
  61714. },
  61715. {
  61716. name: "Giga+",
  61717. height: math.unit(2500, "km")
  61718. },
  61719. {
  61720. name: "Terra",
  61721. height: math.unit(70000, "km")
  61722. },
  61723. {
  61724. name: "Terra+",
  61725. height: math.unit(150000, "km")
  61726. },
  61727. {
  61728. name: "Terra++",
  61729. height: math.unit(400000, "km")
  61730. },
  61731. ]
  61732. ))
  61733. characterMakers.push(() => makeCharacter(
  61734. { name: "Ayranus", species: ["otter", "lion", "bat", "deity"], tags: ["anthro"] },
  61735. {
  61736. otter_front: {
  61737. height: math.unit(1.8, "meters"),
  61738. weight: math.unit(90, "kg"),
  61739. name: "Front",
  61740. image: {
  61741. source: "./media/characters/ayranus/otter-front.svg",
  61742. extra: 468/452,
  61743. bottom: 43/511
  61744. },
  61745. form: "otter",
  61746. },
  61747. otter_frontLewd: {
  61748. height: math.unit(1.8, "meters"),
  61749. weight: math.unit(90, "kg"),
  61750. name: "Front (Lewd)",
  61751. image: {
  61752. source: "./media/characters/ayranus/otter-front-lewd.svg",
  61753. extra: 468/452,
  61754. bottom: 43/511
  61755. },
  61756. form: "otter",
  61757. },
  61758. lionbat_front: {
  61759. height: math.unit(1.8, "meters"),
  61760. weight: math.unit(90, "kg"),
  61761. name: "Front (Lewd)",
  61762. image: {
  61763. source: "./media/characters/ayranus/lionbat-front-lewd.svg",
  61764. extra: 797/740,
  61765. bottom: 78/875
  61766. },
  61767. form: "lionbat",
  61768. },
  61769. paw: {
  61770. height: math.unit(1.5, "feet"),
  61771. name: "Paw",
  61772. image: {
  61773. source: "./media/characters/ayranus/paw.svg"
  61774. },
  61775. },
  61776. },
  61777. [
  61778. {
  61779. name: "Incognito",
  61780. height: math.unit(1.8, "meters"),
  61781. allForms: true
  61782. },
  61783. {
  61784. name: "Macro",
  61785. height: math.unit(60, "meters"),
  61786. allForms: true
  61787. },
  61788. {
  61789. name: "Macro+",
  61790. height: math.unit(200, "meters"),
  61791. allForms: true
  61792. },
  61793. {
  61794. name: "Mega",
  61795. height: math.unit(35, "km"),
  61796. allForms: true
  61797. },
  61798. {
  61799. name: "Giga",
  61800. height: math.unit(220, "km"),
  61801. allForms: true
  61802. },
  61803. {
  61804. name: "Giga+",
  61805. height: math.unit(1500, "km"),
  61806. allForms: true
  61807. },
  61808. {
  61809. name: "Terra",
  61810. height: math.unit(13000, "km"),
  61811. allForms: true
  61812. },
  61813. {
  61814. name: "Terra+",
  61815. height: math.unit(500000, "km"),
  61816. allForms: true
  61817. },
  61818. {
  61819. name: "Galactic",
  61820. height: math.unit(486080, "parsecs"),
  61821. default: true,
  61822. allForms: true
  61823. },
  61824. ],
  61825. {
  61826. "otter": {
  61827. name: "Otter",
  61828. default: true
  61829. },
  61830. "lionbat": {
  61831. name: "Lionbat",
  61832. },
  61833. }
  61834. ))
  61835. characterMakers.push(() => makeCharacter(
  61836. { name: "Proxy", species: ["kodiak-bear"], tags: ["anthro"] },
  61837. {
  61838. front: {
  61839. height: math.unit(7 + 4/12, "feet"),
  61840. weight: math.unit(400, "lb"),
  61841. name: "Front",
  61842. image: {
  61843. source: "./media/characters/proxy/front.svg",
  61844. extra: 1605/1542,
  61845. bottom: 55/1660
  61846. }
  61847. },
  61848. side: {
  61849. height: math.unit(7 + 4/12, "feet"),
  61850. weight: math.unit(400, "lb"),
  61851. name: "Side",
  61852. image: {
  61853. source: "./media/characters/proxy/side.svg",
  61854. extra: 794/759,
  61855. bottom: 6/800
  61856. }
  61857. },
  61858. hand: {
  61859. height: math.unit(1.54, "feet"),
  61860. name: "Hand",
  61861. image: {
  61862. source: "./media/characters/proxy/hand.svg"
  61863. }
  61864. },
  61865. paw: {
  61866. height: math.unit(1.53, "feet"),
  61867. name: "Paw",
  61868. image: {
  61869. source: "./media/characters/proxy/paw.svg"
  61870. }
  61871. },
  61872. maw: {
  61873. height: math.unit(1.9, "feet"),
  61874. name: "Maw",
  61875. image: {
  61876. source: "./media/characters/proxy/maw.svg"
  61877. }
  61878. },
  61879. },
  61880. [
  61881. {
  61882. name: "Normal",
  61883. height: math.unit(7 + 4/12, "feet"),
  61884. default: true
  61885. },
  61886. ]
  61887. ))
  61888. characterMakers.push(() => makeCharacter(
  61889. { name: "Crocozilla", species: ["crocodile"], tags: ["anthro"] },
  61890. {
  61891. front: {
  61892. height: math.unit(4, "meters"),
  61893. name: "Front",
  61894. image: {
  61895. source: "./media/characters/crocozilla/front.svg",
  61896. extra: 1790/1742,
  61897. bottom: 78/1868
  61898. }
  61899. },
  61900. },
  61901. [
  61902. {
  61903. name: "Normal",
  61904. height: math.unit(4, "meters"),
  61905. default: true
  61906. },
  61907. ]
  61908. ))
  61909. characterMakers.push(() => makeCharacter(
  61910. { name: "Kurz", species: ["alurean", "deity"], tags: ["anthro"] },
  61911. {
  61912. front: {
  61913. height: math.unit(1.8, "meters"),
  61914. weight: math.unit(120, "kg"),
  61915. name: "Front",
  61916. image: {
  61917. source: "./media/characters/kurz/front.svg",
  61918. extra: 1960/1824,
  61919. bottom: 41/2001
  61920. }
  61921. },
  61922. back: {
  61923. height: math.unit(1.8, "meters"),
  61924. weight: math.unit(120, "kg"),
  61925. name: "Back",
  61926. image: {
  61927. source: "./media/characters/kurz/back.svg",
  61928. extra: 1906/1787,
  61929. bottom: 60/1966
  61930. }
  61931. },
  61932. frontLewd: {
  61933. height: math.unit(1.8, "meters"),
  61934. weight: math.unit(120, "kg"),
  61935. name: "Front (Lewd)",
  61936. image: {
  61937. source: "./media/characters/kurz/front-lewd.svg",
  61938. extra: 1960/1824,
  61939. bottom: 41/2001
  61940. }
  61941. },
  61942. maw: {
  61943. height: math.unit(0.69, "meters"),
  61944. name: "Maw",
  61945. image: {
  61946. source: "./media/characters/kurz/maw.svg"
  61947. }
  61948. },
  61949. },
  61950. [
  61951. {
  61952. name: "Original Size",
  61953. height: math.unit(1.8, "meters")
  61954. },
  61955. {
  61956. name: "Incognito Size",
  61957. height: math.unit(2.4, "meters"),
  61958. default: true
  61959. },
  61960. {
  61961. name: "Macro",
  61962. height: math.unit(30, "meters")
  61963. },
  61964. {
  61965. name: "Macro+",
  61966. height: math.unit(250, "meters")
  61967. },
  61968. {
  61969. name: "Mega",
  61970. height: math.unit(2, "km")
  61971. },
  61972. {
  61973. name: "Mega+",
  61974. height: math.unit(35, "km")
  61975. },
  61976. {
  61977. name: "Mega++",
  61978. height: math.unit(75, "km")
  61979. },
  61980. {
  61981. name: "Giga",
  61982. height: math.unit(250, "km")
  61983. },
  61984. {
  61985. name: "Terra",
  61986. height: math.unit(15000, "km")
  61987. },
  61988. {
  61989. name: "Terra+",
  61990. height: math.unit(2250000, "km")
  61991. },
  61992. ]
  61993. ))
  61994. characterMakers.push(() => makeCharacter(
  61995. { name: "Nikita", species: ["werewolf"], tags: ["anthro"] },
  61996. {
  61997. front: {
  61998. height: math.unit(16 + 3/12, "feet"),
  61999. weight: math.unit(3575, "lb"),
  62000. name: "Front",
  62001. image: {
  62002. source: "./media/characters/nikita/front.svg",
  62003. extra: 1064/955,
  62004. bottom: 47/1111
  62005. }
  62006. },
  62007. },
  62008. [
  62009. {
  62010. name: "Normal",
  62011. height: math.unit(16 + 3/12, "feet"),
  62012. default: true
  62013. },
  62014. {
  62015. name: "Big",
  62016. height: math.unit(21, "feet")
  62017. },
  62018. {
  62019. name: "Biggest",
  62020. height: math.unit(50, "feet")
  62021. },
  62022. ]
  62023. ))
  62024. characterMakers.push(() => makeCharacter(
  62025. { name: "Kyara", species: ["wolf"], tags: ["anthro"] },
  62026. {
  62027. front: {
  62028. height: math.unit(1.92, "m"),
  62029. weight: math.unit(76, "kg"),
  62030. name: "Front",
  62031. image: {
  62032. source: "./media/characters/kyara/front.svg",
  62033. extra: 1550/1438,
  62034. bottom: 139/1689
  62035. }
  62036. },
  62037. back: {
  62038. height: math.unit(1.92, "m"),
  62039. weight: math.unit(76, "kg"),
  62040. name: "Back",
  62041. image: {
  62042. source: "./media/characters/kyara/back.svg",
  62043. extra: 1523/1427,
  62044. bottom: 83/1606
  62045. }
  62046. },
  62047. head: {
  62048. height: math.unit(1.22, "feet"),
  62049. name: "Head",
  62050. image: {
  62051. source: "./media/characters/kyara/head.svg"
  62052. }
  62053. },
  62054. maw: {
  62055. height: math.unit(0.73, "feet"),
  62056. name: "Maw",
  62057. image: {
  62058. source: "./media/characters/kyara/maw.svg"
  62059. }
  62060. },
  62061. paws: {
  62062. height: math.unit(0.95, "feet"),
  62063. name: "Paws",
  62064. image: {
  62065. source: "./media/characters/kyara/paws.svg"
  62066. }
  62067. },
  62068. },
  62069. [
  62070. {
  62071. name: "Normal",
  62072. height: math.unit(1.92, "meters"),
  62073. default: true
  62074. },
  62075. {
  62076. name: "Mini Macro",
  62077. height: math.unit(192, "meters")
  62078. },
  62079. {
  62080. name: "Macro",
  62081. height: math.unit(480, "meters")
  62082. },
  62083. {
  62084. name: "Mega Macro",
  62085. height: math.unit(1440, "meters")
  62086. },
  62087. ]
  62088. ))
  62089. characterMakers.push(() => makeCharacter(
  62090. { name: "Layla Amari", species: ["rabbit"], tags: ["anthro"] },
  62091. {
  62092. front: {
  62093. height: math.unit(6, "feet"),
  62094. weight: math.unit(160, "lbs"),
  62095. preyCapacity: math.unit(0.05, "people"),
  62096. name: "Front",
  62097. image: {
  62098. source: "./media/characters/layla-amari/front.svg",
  62099. extra: 1922/1723,
  62100. bottom: 90/2012
  62101. }
  62102. },
  62103. back: {
  62104. height: math.unit(6, "feet"),
  62105. weight: math.unit(160, "lbs"),
  62106. preyCapacity: math.unit(0.05, "people"),
  62107. name: "Back",
  62108. image: {
  62109. source: "./media/characters/layla-amari/back.svg",
  62110. extra: 1917/1718,
  62111. bottom: 50/1967
  62112. }
  62113. },
  62114. frontDressed: {
  62115. height: math.unit(6, "feet"),
  62116. weight: math.unit(160, "lbs"),
  62117. preyCapacity: math.unit(0.05, "people"),
  62118. name: "Front (Dressed)",
  62119. image: {
  62120. source: "./media/characters/layla-amari/front-dressed.svg",
  62121. extra: 1922/1723,
  62122. bottom: 90/2012
  62123. }
  62124. },
  62125. face: {
  62126. height: math.unit(0.93, "feet"),
  62127. name: "Face",
  62128. image: {
  62129. source: "./media/characters/layla-amari/face.svg"
  62130. }
  62131. },
  62132. hand: {
  62133. height: math.unit(0.66 , "feet"),
  62134. name: "Hand",
  62135. image: {
  62136. source: "./media/characters/layla-amari/hand.svg"
  62137. }
  62138. },
  62139. foot: {
  62140. height: math.unit(1, "feet"),
  62141. name: "Foot",
  62142. image: {
  62143. source: "./media/characters/layla-amari/foot.svg"
  62144. }
  62145. },
  62146. necklace: {
  62147. height: math.unit(0.32, "feet"),
  62148. name: "Necklace",
  62149. image: {
  62150. source: "./media/characters/layla-amari/necklace.svg"
  62151. }
  62152. },
  62153. nipple: {
  62154. height: math.unit(0.2, "feet"),
  62155. name: "Nipple",
  62156. image: {
  62157. source: "./media/characters/layla-amari/nipple.svg"
  62158. }
  62159. },
  62160. slit: {
  62161. height: math.unit(0.26, "feet"),
  62162. name: "Slit",
  62163. image: {
  62164. source: "./media/characters/layla-amari/slit.svg"
  62165. }
  62166. },
  62167. },
  62168. [
  62169. {
  62170. name: "Natural",
  62171. height: math.unit(825, "feet"),
  62172. default: true
  62173. },
  62174. {
  62175. name: "Enhanced",
  62176. height: math.unit(8250, "feet")
  62177. },
  62178. {
  62179. name: "Apparent Size",
  62180. height: math.unit(9.04363e+8, "meters")
  62181. },
  62182. ]
  62183. ))
  62184. characterMakers.push(() => makeCharacter(
  62185. { name: "Percy", species: ["magpie", "leopard", "gryphon"], tags: ["anthro"] },
  62186. {
  62187. front: {
  62188. height: math.unit(1.3, "meters"),
  62189. name: "Front",
  62190. image: {
  62191. source: "./media/characters/percy/front.svg",
  62192. extra: 1444/1289,
  62193. bottom: 54/1498
  62194. }
  62195. },
  62196. },
  62197. [
  62198. {
  62199. name: "Normal",
  62200. height: math.unit(1.3, "meters"),
  62201. default: true
  62202. },
  62203. ]
  62204. ))
  62205. characterMakers.push(() => makeCharacter(
  62206. { name: "Grev", species: ["tigrex"], tags: ["feral"] },
  62207. {
  62208. side: {
  62209. height: math.unit(10, "meters"),
  62210. name: "Side",
  62211. image: {
  62212. source: "./media/characters/grev/side.svg",
  62213. extra: 653/266,
  62214. bottom: 77/730
  62215. }
  62216. },
  62217. head: {
  62218. height: math.unit(16.2, "m"),
  62219. name: "Head",
  62220. image: {
  62221. source: "./media/characters/grev/head.svg"
  62222. }
  62223. },
  62224. dick: {
  62225. height: math.unit(2.8135932034, "m"),
  62226. name: "Dick",
  62227. image: {
  62228. source: "./media/characters/grev/dick.svg"
  62229. }
  62230. },
  62231. },
  62232. [
  62233. {
  62234. name: "Friend-Sized",
  62235. height: math.unit(80, "cm")
  62236. },
  62237. {
  62238. name: "Normal",
  62239. height: math.unit(10, "meters"),
  62240. default: true
  62241. },
  62242. {
  62243. name: "Macro",
  62244. height: math.unit(200, "meters")
  62245. },
  62246. ]
  62247. ))
  62248. characterMakers.push(() => makeCharacter(
  62249. { name: "Azuuca", species: ["catfish"], tags: ["anthro"] },
  62250. {
  62251. front: {
  62252. height: math.unit(19.75, "feet"),
  62253. weight: math.unit(20000, "lb"),
  62254. name: "Front",
  62255. image: {
  62256. source: "./media/characters/azuuca/front.svg",
  62257. extra: 1593/1511,
  62258. bottom: 55/1648
  62259. }
  62260. },
  62261. },
  62262. [
  62263. {
  62264. name: "Normal",
  62265. height: math.unit(19.75, "feet"),
  62266. default: true
  62267. },
  62268. ]
  62269. ))
  62270. characterMakers.push(() => makeCharacter(
  62271. { name: "Valuria", species: ["vesempress"], tags: ["anthro"] },
  62272. {
  62273. front: {
  62274. height: math.unit(15, "feet"),
  62275. weight: math.unit(1500, "lb"),
  62276. name: "Front",
  62277. image: {
  62278. source: "./media/characters/valuria/front.svg",
  62279. extra: 1588/1486,
  62280. bottom: 31/1619
  62281. }
  62282. },
  62283. },
  62284. [
  62285. {
  62286. name: "Normal",
  62287. height: math.unit(15, "feet"),
  62288. default: true
  62289. },
  62290. {
  62291. name: "Small",
  62292. height: math.unit(500, "feet")
  62293. },
  62294. {
  62295. name: "Macro",
  62296. height: math.unit(4000, "feet")
  62297. },
  62298. {
  62299. name: "Mega Macro",
  62300. height: math.unit(2000, "miles")
  62301. },
  62302. {
  62303. name: "Giga Macro",
  62304. height: math.unit(3e6, "miles")
  62305. },
  62306. ]
  62307. ))
  62308. characterMakers.push(() => makeCharacter(
  62309. { name: "Terigaia", species: ["gaelterranian"], tags: ["anthro"] },
  62310. {
  62311. front: {
  62312. height: math.unit(3500, "solarradii"),
  62313. name: "Front",
  62314. image: {
  62315. source: "./media/characters/terigaia/front.svg",
  62316. extra: 1531/1451,
  62317. bottom: 98/1629
  62318. }
  62319. },
  62320. },
  62321. [
  62322. {
  62323. name: "Normal",
  62324. height: math.unit(3500, "solarradii"),
  62325. default: true
  62326. },
  62327. ]
  62328. ))
  62329. characterMakers.push(() => makeCharacter(
  62330. { name: "Blair (Blaziken)", species: ["blaziken"], tags: ["anthro"] },
  62331. {
  62332. front: {
  62333. height: math.unit(9.34, "feet"),
  62334. weight: math.unit(600, "lb"),
  62335. name: "Front",
  62336. image: {
  62337. source: "./media/characters/blair-blaziken/front.svg",
  62338. extra: 1557/1462,
  62339. bottom: 55/1612
  62340. }
  62341. },
  62342. },
  62343. [
  62344. {
  62345. name: "Normal",
  62346. height: math.unit(9.34, "feet"),
  62347. default: true
  62348. },
  62349. ]
  62350. ))
  62351. characterMakers.push(() => makeCharacter(
  62352. { name: "Braxia", species: ["pistrogre", "human"], tags: ["anthro"] },
  62353. {
  62354. pistrogre_front: {
  62355. height: math.unit(10, "feet"),
  62356. weight: math.unit(10, "tons"),
  62357. name: "Front",
  62358. image: {
  62359. source: "./media/characters/braxia/pistrogre-front.svg",
  62360. extra: 1531/1334,
  62361. bottom: 114/1645
  62362. },
  62363. form: "pistrogre",
  62364. default: true
  62365. },
  62366. human_front: {
  62367. height: math.unit(10, "feet"),
  62368. weight: math.unit(10, "tons"),
  62369. name: "Front",
  62370. image: {
  62371. source: "./media/characters/braxia/human-front.svg",
  62372. extra: 1574/1501,
  62373. bottom: 37/1611
  62374. },
  62375. form: "human",
  62376. default: true
  62377. },
  62378. },
  62379. [
  62380. {
  62381. name: "Normal",
  62382. height: math.unit(10, "feet"),
  62383. default: true,
  62384. allForms: true
  62385. },
  62386. {
  62387. name: "Macro",
  62388. height: math.unit(1000, "feet"),
  62389. allForms: true
  62390. },
  62391. {
  62392. name: "Mega Macro",
  62393. height: math.unit(100, "miles"),
  62394. allForms: true
  62395. },
  62396. {
  62397. name: "Cosmic",
  62398. height: math.unit(1000000, "lightyears"),
  62399. allForms: true
  62400. },
  62401. {
  62402. name: "ϐѮԆԬӁꭍϞԢ",
  62403. height: math.unit(1000, "multiverses"),
  62404. allForms: true
  62405. },
  62406. ],
  62407. {
  62408. "pistrogre": {
  62409. name: "Pistrogre",
  62410. default: true
  62411. },
  62412. "human": {
  62413. name: "Human",
  62414. },
  62415. }
  62416. ))
  62417. characterMakers.push(() => makeCharacter(
  62418. { name: "Kiriga Yato", species: ["zorgoia"], tags: ["anthro"] },
  62419. {
  62420. front: {
  62421. height: math.unit(6 + 1/12, "feet"),
  62422. weight: math.unit(280, "lb"),
  62423. name: "Front",
  62424. image: {
  62425. source: "./media/characters/kiriga-yato/front.svg",
  62426. extra: 445/394,
  62427. bottom: 11/456
  62428. }
  62429. },
  62430. },
  62431. [
  62432. {
  62433. name: "Descended",
  62434. height: math.unit(3, "feet")
  62435. },
  62436. {
  62437. name: "Average",
  62438. height: math.unit(6 + 1/12, "feet"),
  62439. default: true
  62440. },
  62441. {
  62442. name: "Ascended",
  62443. height: math.unit(9 + 2/12, "feet")
  62444. },
  62445. ]
  62446. ))
  62447. characterMakers.push(() => makeCharacter(
  62448. { name: "Kylie", species: ["giraffe"], tags: ["anthro"] },
  62449. {
  62450. front: {
  62451. height: math.unit(6, "feet"),
  62452. weight: math.unit(150, "lb"),
  62453. name: "Front",
  62454. image: {
  62455. source: "./media/characters/kylie/front.svg",
  62456. extra: 1114/1046,
  62457. bottom: 65/1179
  62458. },
  62459. extraAttributes: {
  62460. "hoofSize": {
  62461. name: "Hoof Size",
  62462. power: 2,
  62463. type: "area",
  62464. base: math.unit(0.034, "m^2")
  62465. },
  62466. "footSize": {
  62467. name: "Foot Size",
  62468. power: 2,
  62469. type: "area",
  62470. base: math.unit(0.75, "m^2")
  62471. },
  62472. }
  62473. },
  62474. side: {
  62475. height: math.unit(6, "feet"),
  62476. weight: math.unit(150, "lb"),
  62477. name: "Side",
  62478. image: {
  62479. source: "./media/characters/kylie/side.svg",
  62480. extra: 1178/1110,
  62481. bottom: 21/1199
  62482. },
  62483. extraAttributes: {
  62484. "hoofSize": {
  62485. name: "Hoof Size",
  62486. power: 2,
  62487. type: "area",
  62488. base: math.unit(0.034, "m^2")
  62489. },
  62490. "footSize": {
  62491. name: "Foot Size",
  62492. power: 2,
  62493. type: "area",
  62494. base: math.unit(0.75, "m^2")
  62495. },
  62496. }
  62497. },
  62498. back: {
  62499. height: math.unit(6, "feet"),
  62500. weight: math.unit(150, "lb"),
  62501. name: "Back",
  62502. image: {
  62503. source: "./media/characters/kylie/back.svg",
  62504. extra: 1115/1047,
  62505. bottom: 66/1181
  62506. },
  62507. extraAttributes: {
  62508. "hoofSize": {
  62509. name: "Hoof Size",
  62510. power: 2,
  62511. type: "area",
  62512. base: math.unit(0.034, "m^2")
  62513. },
  62514. "footSize": {
  62515. name: "Foot Size",
  62516. power: 2,
  62517. type: "area",
  62518. base: math.unit(0.75, "m^2")
  62519. },
  62520. }
  62521. },
  62522. head: {
  62523. height: math.unit(1.85, "feet"),
  62524. name: "Head",
  62525. image: {
  62526. source: "./media/characters/kylie/head.svg"
  62527. }
  62528. },
  62529. },
  62530. [
  62531. {
  62532. name: "Normal",
  62533. height: math.unit(90, "meters"),
  62534. default: true
  62535. },
  62536. ]
  62537. ))
  62538. characterMakers.push(() => makeCharacter(
  62539. { name: "Sabado", species: ["suicune"], tags: ["anthro"] },
  62540. {
  62541. front: {
  62542. height: math.unit(245, "feet"),
  62543. weight: math.unit(400000, "lb"),
  62544. name: "Front",
  62545. image: {
  62546. source: "./media/characters/sabado/front.svg",
  62547. extra: 1309/1164,
  62548. bottom: 29/1338
  62549. }
  62550. },
  62551. },
  62552. [
  62553. {
  62554. name: "Normal",
  62555. height: math.unit(245, "feet"),
  62556. default: true
  62557. },
  62558. ]
  62559. ))
  62560. characterMakers.push(() => makeCharacter(
  62561. { name: "Zechal", species: ["shark", "dragon", "deity"], tags: ["anthro"] },
  62562. {
  62563. shark_front: {
  62564. height: math.unit(2, "meters"),
  62565. weight: math.unit(200, "kg"),
  62566. name: "Front",
  62567. image: {
  62568. source: "./media/characters/zechal/shark-front.svg",
  62569. extra: 969/925,
  62570. bottom: 74/1043
  62571. },
  62572. form: "shark",
  62573. },
  62574. shark_back: {
  62575. height: math.unit(2, "meters"),
  62576. weight: math.unit(200, "kg"),
  62577. name: "Back",
  62578. image: {
  62579. source: "./media/characters/zechal/shark-back.svg",
  62580. extra: 994/949,
  62581. bottom: 176/1170
  62582. },
  62583. form: "shark",
  62584. },
  62585. shark_frontLewd: {
  62586. height: math.unit(2, "meters"),
  62587. weight: math.unit(200, "kg"),
  62588. name: "Front (Lewd)",
  62589. image: {
  62590. source: "./media/characters/zechal/shark-front-lewd.svg",
  62591. extra: 969/925,
  62592. bottom: 74/1043
  62593. },
  62594. form: "shark",
  62595. },
  62596. shark_side: {
  62597. height: math.unit(1.56, "meters"),
  62598. weight: math.unit(200, "kg"),
  62599. name: "Side",
  62600. image: {
  62601. source: "./media/characters/zechal/shark-side.svg"
  62602. },
  62603. form: "shark",
  62604. },
  62605. dragon_front: {
  62606. height: math.unit(2, "meters"),
  62607. weight: math.unit(200, "kg"),
  62608. name: "Front",
  62609. image: {
  62610. source: "./media/characters/zechal/dragon-front.svg",
  62611. extra: 1041/925,
  62612. bottom: 74/1115
  62613. },
  62614. form: "dragon",
  62615. },
  62616. dragon_back: {
  62617. height: math.unit(2, "meters"),
  62618. weight: math.unit(200, "kg"),
  62619. name: "Back",
  62620. image: {
  62621. source: "./media/characters/zechal/dragon-back.svg",
  62622. extra: 1061/949,
  62623. bottom: 176/1237
  62624. },
  62625. form: "dragon",
  62626. },
  62627. dragon_frontLewd: {
  62628. height: math.unit(2, "meters"),
  62629. weight: math.unit(200, "kg"),
  62630. name: "Front (Lewd)",
  62631. image: {
  62632. source: "./media/characters/zechal/dragon-front-lewd.svg",
  62633. extra: 1041/925,
  62634. bottom: 74/1115
  62635. },
  62636. form: "dragon",
  62637. },
  62638. dragon_side: {
  62639. height: math.unit(1.56, "meters"),
  62640. weight: math.unit(200, "kg"),
  62641. name: "Side",
  62642. image: {
  62643. source: "./media/characters/zechal/dragon-side.svg"
  62644. },
  62645. form: "dragon",
  62646. },
  62647. foot: {
  62648. height: math.unit(0.5, "meters"),
  62649. name: "Foot",
  62650. image: {
  62651. source: "./media/characters/zechal/foot.svg"
  62652. }
  62653. },
  62654. sheathFront: {
  62655. height: math.unit(0.45, "meters"),
  62656. name: "Sheath (Front)",
  62657. image: {
  62658. source: "./media/characters/zechal/sheath-front.svg"
  62659. }
  62660. },
  62661. sheathSide: {
  62662. height: math.unit(0.45, "meters"),
  62663. name: "Sheath (Side)",
  62664. image: {
  62665. source: "./media/characters/zechal/sheath-side.svg"
  62666. }
  62667. },
  62668. },
  62669. [
  62670. {
  62671. name: "Incognito",
  62672. height: math.unit(2, "meters"),
  62673. allForms: true
  62674. },
  62675. {
  62676. name: "Small Rampage",
  62677. height: math.unit(25, "meters"),
  62678. allForms: true
  62679. },
  62680. {
  62681. name: "Home Size",
  62682. height: math.unit(250, "meters"),
  62683. allForms: true,
  62684. default: true
  62685. },
  62686. {
  62687. name: "Macro+",
  62688. height: math.unit(700, "meters"),
  62689. allForms: true
  62690. },
  62691. {
  62692. name: "Small Mega",
  62693. height: math.unit(3, "km"),
  62694. allForms: true
  62695. },
  62696. {
  62697. name: "Mega",
  62698. height: math.unit(15, "km"),
  62699. allForms: true
  62700. },
  62701. {
  62702. name: "Giga",
  62703. height: math.unit(300, "km"),
  62704. allForms: true
  62705. },
  62706. {
  62707. name: "Giga+",
  62708. height: math.unit(1750, "km"),
  62709. allForms: true
  62710. },
  62711. {
  62712. name: "Continental",
  62713. height: math.unit(5000, "km"),
  62714. allForms: true
  62715. },
  62716. {
  62717. name: "Terra",
  62718. height: math.unit(20000, "km"),
  62719. allForms: true
  62720. },
  62721. {
  62722. name: "Terra+",
  62723. height: math.unit(300000, "km"),
  62724. allForms: true
  62725. },
  62726. {
  62727. name: "Solar",
  62728. height: math.unit(40000000, "km"),
  62729. allForms: true
  62730. },
  62731. {
  62732. name: "Galactic",
  62733. height: math.unit(810133, "parsecs"),
  62734. allForms: true
  62735. },
  62736. {
  62737. name: "Universal",
  62738. height: math.unit(25, "universes"),
  62739. allForms: true
  62740. },
  62741. ],
  62742. {
  62743. "shark": {
  62744. name: "Shark",
  62745. default: true
  62746. },
  62747. "dragon": {
  62748. name: "Dragon",
  62749. },
  62750. }
  62751. ))
  62752. characterMakers.push(() => makeCharacter(
  62753. { name: "Sergis", species: ["komodo-dragon", "deity"], tags: ["anthro"] },
  62754. {
  62755. front: {
  62756. height: math.unit(2.2, "meters"),
  62757. weight: math.unit(150, "kg"),
  62758. name: "Front",
  62759. image: {
  62760. source: "./media/characters/sergis/front.svg",
  62761. extra: 1314/1312,
  62762. bottom: 112/1426
  62763. }
  62764. },
  62765. back: {
  62766. height: math.unit(2.2, "meters"),
  62767. weight: math.unit(150, "kg"),
  62768. name: "Back",
  62769. image: {
  62770. source: "./media/characters/sergis/back.svg",
  62771. extra: 1335/1333,
  62772. bottom: 19/1354
  62773. }
  62774. },
  62775. frontLewd: {
  62776. height: math.unit(2.2, "meters"),
  62777. weight: math.unit(150, "kg"),
  62778. name: "Front (Lewd)",
  62779. image: {
  62780. source: "./media/characters/sergis/front-lewd.svg",
  62781. extra: 1314/1312,
  62782. bottom: 112/1426
  62783. }
  62784. },
  62785. frontDressed: {
  62786. height: math.unit(2.2, "meters"),
  62787. weight: math.unit(150, "kg"),
  62788. name: "Front (Dressed)",
  62789. image: {
  62790. source: "./media/characters/sergis/front-dressed.svg",
  62791. extra: 1330/1328,
  62792. bottom: 95/1425
  62793. }
  62794. },
  62795. frontDressedLewd: {
  62796. height: math.unit(2.2, "meters"),
  62797. weight: math.unit(150, "kg"),
  62798. name: "Front (Dressed, Lewd)",
  62799. image: {
  62800. source: "./media/characters/sergis/front-dressed-lewd.svg",
  62801. extra: 1330/1328,
  62802. bottom: 95/1425
  62803. }
  62804. },
  62805. maw: {
  62806. height: math.unit(0.48, "meters"),
  62807. name: "Maw",
  62808. image: {
  62809. source: "./media/characters/sergis/maw.svg"
  62810. }
  62811. },
  62812. sheath: {
  62813. height: math.unit(0.38, "meters"),
  62814. name: "Sheath",
  62815. image: {
  62816. source: "./media/characters/sergis/sheath.svg"
  62817. }
  62818. },
  62819. },
  62820. [
  62821. {
  62822. name: "Incognito Size",
  62823. height: math.unit(2.2, "meters")
  62824. },
  62825. {
  62826. name: "Small Macro",
  62827. height: math.unit(40, "meters")
  62828. },
  62829. {
  62830. name: "Macro",
  62831. height: math.unit(150, "meters")
  62832. },
  62833. {
  62834. name: "Macro+",
  62835. height: math.unit(300, "meters")
  62836. },
  62837. {
  62838. name: "Mega",
  62839. height: math.unit(2.5, "km")
  62840. },
  62841. {
  62842. name: "Mega+",
  62843. height: math.unit(30, "km")
  62844. },
  62845. {
  62846. name: "Home Size",
  62847. height: math.unit(300, "km"),
  62848. default: true
  62849. },
  62850. {
  62851. name: "Giga+",
  62852. height: math.unit(1000, "km")
  62853. },
  62854. {
  62855. name: "Giga++",
  62856. height: math.unit(6000, "km")
  62857. },
  62858. {
  62859. name: "Terra",
  62860. height: math.unit(70000, "km")
  62861. },
  62862. {
  62863. name: "Terra+",
  62864. height: math.unit(200000, "km")
  62865. },
  62866. {
  62867. name: "Galactic",
  62868. height: math.unit(634200, "lightyears")
  62869. },
  62870. ]
  62871. ))
  62872. characterMakers.push(() => makeCharacter(
  62873. { name: "Spade", species: ["demon", "mouse"], tags: ["anthro"] },
  62874. {
  62875. standard: {
  62876. height: math.unit(1 + 5/12, "feet"),
  62877. name: "Standard",
  62878. image: {
  62879. source: "./media/characters/spade/standard.svg",
  62880. extra: 1794/1703,
  62881. bottom: 115/1909
  62882. }
  62883. },
  62884. disguised: {
  62885. height: math.unit(1 + 5/12, "feet"),
  62886. name: "Disguised",
  62887. image: {
  62888. source: "./media/characters/spade/disguised.svg",
  62889. extra: 1794/1700,
  62890. bottom: 98/1892
  62891. }
  62892. },
  62893. },
  62894. [
  62895. {
  62896. name: "Normal",
  62897. height: math.unit(1 + 5/12, "feet"),
  62898. default: true
  62899. },
  62900. ]
  62901. ))
  62902. characterMakers.push(() => makeCharacter(
  62903. { name: "Zeanlain", species: ["harpy-eagle"], tags: ["anthro"] },
  62904. {
  62905. frontNsfw: {
  62906. height: math.unit(5, "meters"),
  62907. weight: math.unit(2000, "kg"),
  62908. preyCapacity: math.unit(5, "people"),
  62909. name: "Front (NSFW)",
  62910. image: {
  62911. source: "./media/characters/zeanlain/front-nsfw.svg",
  62912. extra: 1087/938,
  62913. bottom: 93/1180
  62914. },
  62915. extraAttributes: {
  62916. "wingspan": {
  62917. name: "Wingspan",
  62918. power: 1,
  62919. type: "length",
  62920. base: math.unit(10, "meters")
  62921. },
  62922. "footSize": {
  62923. name: "Foot Size",
  62924. power: 1,
  62925. type: "length",
  62926. base: math.unit(0.68, "meters")
  62927. },
  62928. "cockLength": {
  62929. name: "Cock Length",
  62930. power: 1,
  62931. type: "length",
  62932. base: math.unit(1.69, "meters")
  62933. },
  62934. "ballVolume": {
  62935. name: "Ball Volume",
  62936. power: 3,
  62937. type: "volume",
  62938. base: math.unit(0.028, "m^3")
  62939. },
  62940. }
  62941. },
  62942. front: {
  62943. height: math.unit(5, "meters"),
  62944. weight: math.unit(2000, "kg"),
  62945. preyCapacity: math.unit(3, "people"),
  62946. name: "Front",
  62947. image: {
  62948. source: "./media/characters/zeanlain/front.svg",
  62949. extra: 1087/938,
  62950. bottom: 93/1180
  62951. },
  62952. extraAttributes: {
  62953. "wingspan": {
  62954. name: "Wingspan",
  62955. power: 1,
  62956. type: "length",
  62957. base: math.unit(10, "meters")
  62958. },
  62959. "footSize": {
  62960. name: "Foot Size",
  62961. power: 1,
  62962. type: "length",
  62963. base: math.unit(0.68, "meters")
  62964. },
  62965. }
  62966. },
  62967. dick: {
  62968. height: math.unit(5.15, "feet"),
  62969. name: "Dick",
  62970. image: {
  62971. source: "./media/characters/zeanlain/dick.svg"
  62972. }
  62973. },
  62974. },
  62975. [
  62976. {
  62977. name: "Normal",
  62978. height: math.unit(5, "meters"),
  62979. default: true
  62980. },
  62981. ]
  62982. ))
  62983. characterMakers.push(() => makeCharacter(
  62984. { name: "Airamis", species: ["aeromorph", "dragon"], tags: ["anthro"] },
  62985. {
  62986. front: {
  62987. height: math.unit(10, "meters"),
  62988. weight: math.unit(250000, "kg"),
  62989. name: "Front",
  62990. image: {
  62991. source: "./media/characters/airamis/front.svg",
  62992. extra: 865/835,
  62993. bottom: 13/878
  62994. }
  62995. },
  62996. },
  62997. [
  62998. {
  62999. name: "Normal",
  63000. height: math.unit(10, "meters"),
  63001. default: true
  63002. },
  63003. ]
  63004. ))
  63005. characterMakers.push(() => makeCharacter(
  63006. { name: "Corra Tourmaline", species: ["vaporeon"], tags: ["anthro"] },
  63007. {
  63008. front: {
  63009. height: math.unit(3 + 3/12, "feet"),
  63010. weight: math.unit(75, "lb"),
  63011. name: "Front",
  63012. image: {
  63013. source: "./media/characters/corra-tourmaline/front.svg",
  63014. extra: 1037/864,
  63015. bottom: 39/1076
  63016. }
  63017. },
  63018. back: {
  63019. height: math.unit(3 + 3/12, "feet"),
  63020. weight: math.unit(75, "lb"),
  63021. name: "Back",
  63022. image: {
  63023. source: "./media/characters/corra-tourmaline/back.svg",
  63024. extra: 1022/849,
  63025. bottom: 26/1048
  63026. }
  63027. },
  63028. dressed: {
  63029. height: math.unit(3 + 3/12, "feet"),
  63030. weight: math.unit(75, "lb"),
  63031. name: "Dressed",
  63032. image: {
  63033. source: "./media/characters/corra-tourmaline/dressed.svg",
  63034. extra: 1037/864,
  63035. bottom: 39/1076
  63036. }
  63037. },
  63038. beans: {
  63039. height: math.unit(0.37, "feet"),
  63040. name: "Beans",
  63041. image: {
  63042. source: "./media/characters/corra-tourmaline/beans.svg"
  63043. }
  63044. },
  63045. },
  63046. [
  63047. {
  63048. name: "Normal",
  63049. height: math.unit(3 + 3/12, "feet"),
  63050. default: true
  63051. },
  63052. {
  63053. name: "Macro",
  63054. height: math.unit(32, "feet")
  63055. },
  63056. ]
  63057. ))
  63058. characterMakers.push(() => makeCharacter(
  63059. { name: "Maki Kawa", species: ["sabertooth-tiger", "serval"], tags: ["anthro"] },
  63060. {
  63061. front: {
  63062. height: math.unit(6 + 2/12, "feet"),
  63063. weight: math.unit(203, "lb"),
  63064. name: "Front",
  63065. image: {
  63066. source: "./media/characters/maki-kawa/front.svg",
  63067. extra: 950/890,
  63068. bottom: 62/1012
  63069. }
  63070. },
  63071. back: {
  63072. height: math.unit(6 + 2/12, "feet"),
  63073. weight: math.unit(203, "lb"),
  63074. name: "Back",
  63075. image: {
  63076. source: "./media/characters/maki-kawa/back.svg",
  63077. extra: 953/878,
  63078. bottom: 49/1002
  63079. }
  63080. },
  63081. frontBarista: {
  63082. height: math.unit(6 + 2/12, "feet"),
  63083. weight: math.unit(203, "lb"),
  63084. name: "Front (Barista)",
  63085. image: {
  63086. source: "./media/characters/maki-kawa/front-barista.svg",
  63087. extra: 943/883,
  63088. bottom: 69/1012
  63089. }
  63090. },
  63091. backBarista: {
  63092. height: math.unit(6 + 2/12, "feet"),
  63093. weight: math.unit(203, "lb"),
  63094. name: "Back (Barista)",
  63095. image: {
  63096. source: "./media/characters/maki-kawa/back-barista.svg",
  63097. extra: 953/878,
  63098. bottom: 49/1002
  63099. }
  63100. },
  63101. frontWrestler: {
  63102. height: math.unit(6 + 2/12, "feet"),
  63103. weight: math.unit(203, "lb"),
  63104. name: "Front (Wrestler)",
  63105. image: {
  63106. source: "./media/characters/maki-kawa/front-wrestler.svg",
  63107. extra: 950/890,
  63108. bottom: 62/1012
  63109. }
  63110. },
  63111. backWrestler: {
  63112. height: math.unit(6 + 2/12, "feet"),
  63113. weight: math.unit(203, "lb"),
  63114. name: "Back (Wrestler)",
  63115. image: {
  63116. source: "./media/characters/maki-kawa/back-wrestler.svg",
  63117. extra: 953/878,
  63118. bottom: 49/1002
  63119. }
  63120. },
  63121. headFront: {
  63122. height: math.unit(1.64, "feet"),
  63123. name: "Head (Front)",
  63124. image: {
  63125. source: "./media/characters/maki-kawa/head-front.svg"
  63126. }
  63127. },
  63128. headSide: {
  63129. height: math.unit(1.59, "feet"),
  63130. name: "Head (Side)",
  63131. image: {
  63132. source: "./media/characters/maki-kawa/head-side.svg"
  63133. }
  63134. },
  63135. paw: {
  63136. height: math.unit(0.9, "feet"),
  63137. name: "Paw",
  63138. image: {
  63139. source: "./media/characters/maki-kawa/paw.svg"
  63140. }
  63141. },
  63142. },
  63143. [
  63144. {
  63145. name: "Normal",
  63146. height: math.unit(6 + 2/12, "feet"),
  63147. default: true
  63148. },
  63149. {
  63150. name: "Macro",
  63151. height: math.unit(617, "feet")
  63152. },
  63153. ]
  63154. ))
  63155. characterMakers.push(() => makeCharacter(
  63156. { name: "Lennox", species: ["wolf"], tags: ["anthro"] },
  63157. {
  63158. frontNsfw: {
  63159. height: math.unit(10, "feet"),
  63160. weight: math.unit(1500, "lb"),
  63161. name: "Front (NSFW)",
  63162. image: {
  63163. source: "./media/characters/lennox/front-nsfw.svg",
  63164. extra: 1623/1496,
  63165. bottom: 18/1641
  63166. },
  63167. extraAttributes: {
  63168. "cumVolume": {
  63169. name: "Cum Volume",
  63170. power: 3,
  63171. type: "volume",
  63172. base: math.unit(75, "liters")
  63173. },
  63174. }
  63175. },
  63176. backNsfw: {
  63177. height: math.unit(10, "feet"),
  63178. weight: math.unit(1500, "lb"),
  63179. name: "Back (NSFW)",
  63180. image: {
  63181. source: "./media/characters/lennox/back-nsfw.svg",
  63182. extra: 1641/1481,
  63183. bottom: 13/1654
  63184. },
  63185. extraAttributes: {
  63186. "cumVolume": {
  63187. name: "Cum Volume",
  63188. power: 3,
  63189. type: "volume",
  63190. base: math.unit(75, "liters")
  63191. },
  63192. }
  63193. },
  63194. frontSfw: {
  63195. height: math.unit(10, "feet"),
  63196. weight: math.unit(1500, "lb"),
  63197. name: "Front (SFW)",
  63198. image: {
  63199. source: "./media/characters/lennox/front-sfw.svg",
  63200. extra: 1623/1496,
  63201. bottom: 18/1641
  63202. }
  63203. },
  63204. backSfw: {
  63205. height: math.unit(10, "feet"),
  63206. weight: math.unit(1500, "lb"),
  63207. name: "Back (SFW)",
  63208. image: {
  63209. source: "./media/characters/lennox/back-sfw.svg",
  63210. extra: 1641/1481,
  63211. bottom: 13/1654
  63212. }
  63213. },
  63214. maw: {
  63215. height: math.unit(2.94, "feet"),
  63216. name: "Maw",
  63217. image: {
  63218. source: "./media/characters/lennox/maw.svg"
  63219. }
  63220. },
  63221. dick: {
  63222. height: math.unit(0.8323, "meters"),
  63223. weight: math.unit(0.07315728637*1000, "kg"),
  63224. name: "Dick",
  63225. image: {
  63226. source: "./media/characters/lennox/dick.svg"
  63227. },
  63228. extraAttributes: {
  63229. "thickness": {
  63230. name: "Thickness",
  63231. power: 1,
  63232. type: "length",
  63233. base: math.unit(0.330, "meters")
  63234. },
  63235. "length": {
  63236. name: "Length",
  63237. power: 1,
  63238. type: "length",
  63239. base: math.unit(0.8, "meters")
  63240. },
  63241. "cumVolume": {
  63242. name: "Cum Volume",
  63243. power: 3,
  63244. type: "volume",
  63245. base: math.unit(75, "liters")
  63246. },
  63247. }
  63248. },
  63249. },
  63250. [
  63251. {
  63252. name: "Micro",
  63253. height: math.unit(1, "inch")
  63254. },
  63255. {
  63256. name: "Normal",
  63257. height: math.unit(10, "feet"),
  63258. default: true
  63259. },
  63260. {
  63261. name: "Macro",
  63262. height: math.unit(200, "feet")
  63263. },
  63264. ]
  63265. ))
  63266. characterMakers.push(() => makeCharacter(
  63267. { name: "Vyse Iron-Thunder", species: ["luxray", "shiny"], tags: ["anthro"] },
  63268. {
  63269. frontDressed: {
  63270. height: math.unit(15 + 7/12, "feet"),
  63271. weight: math.unit(5000, "lb"),
  63272. name: "Front (Dressed)",
  63273. image: {
  63274. source: "./media/characters/vyse-iron-thunder/front-dressed.svg",
  63275. extra: 1136/1023,
  63276. bottom: 51/1187
  63277. }
  63278. },
  63279. backDressed: {
  63280. height: math.unit(15 + 7/12, "feet"),
  63281. weight: math.unit(5000, "lb"),
  63282. name: "Back (Dressed)",
  63283. image: {
  63284. source: "./media/characters/vyse-iron-thunder/back-dressed.svg",
  63285. extra: 2359/2143,
  63286. bottom: 103/2462
  63287. }
  63288. },
  63289. front: {
  63290. height: math.unit(15 + 7/12, "feet"),
  63291. weight: math.unit(5000, "lb"),
  63292. name: "Front",
  63293. image: {
  63294. source: "./media/characters/vyse-iron-thunder/front.svg",
  63295. extra: 1136/1023,
  63296. bottom: 51/1187
  63297. }
  63298. },
  63299. hand: {
  63300. height: math.unit(2.36, "feet"),
  63301. name: "Hand",
  63302. image: {
  63303. source: "./media/characters/vyse-iron-thunder/hand.svg"
  63304. }
  63305. },
  63306. foot: {
  63307. height: math.unit(1.72, "feet"),
  63308. name: "Foot",
  63309. image: {
  63310. source: "./media/characters/vyse-iron-thunder/foot.svg"
  63311. }
  63312. },
  63313. mouth: {
  63314. height: math.unit(2, "feet"),
  63315. name: "Mouth",
  63316. image: {
  63317. source: "./media/characters/vyse-iron-thunder/mouth.svg"
  63318. }
  63319. },
  63320. eye: {
  63321. height: math.unit(0.58, "feet"),
  63322. name: "Eye",
  63323. image: {
  63324. source: "./media/characters/vyse-iron-thunder/eye.svg"
  63325. }
  63326. },
  63327. },
  63328. [
  63329. {
  63330. name: "Normal",
  63331. height: math.unit(15 + 7/12, "feet"),
  63332. default: true
  63333. },
  63334. {
  63335. name: "Macro",
  63336. height: math.unit(157, "feet")
  63337. },
  63338. {
  63339. name: "Macro+",
  63340. height: math.unit(1570, "feet")
  63341. },
  63342. {
  63343. name: "Macro++",
  63344. height: math.unit(15700, "feet")
  63345. },
  63346. {
  63347. name: "Macro+++",
  63348. height: math.unit(157000, "feet")
  63349. },
  63350. {
  63351. name: "Macro++++",
  63352. height: math.unit(1570000, "feet")
  63353. },
  63354. ]
  63355. ))
  63356. characterMakers.push(() => makeCharacter(
  63357. { name: "Moonbeam", species: ["latex", "wolf"], tags: ["feral"] },
  63358. {
  63359. side: {
  63360. height: math.unit(6, "feet"),
  63361. weight: math.unit(115, "lb"),
  63362. name: "Side",
  63363. image: {
  63364. source: "./media/characters/moonbeam/side.svg",
  63365. extra: 839/485,
  63366. bottom: 60/899
  63367. }
  63368. },
  63369. },
  63370. [
  63371. {
  63372. name: "Normal",
  63373. height: math.unit(6, "feet"),
  63374. default: true
  63375. },
  63376. ]
  63377. ))
  63378. characterMakers.push(() => makeCharacter(
  63379. { name: "Baltica", species: ["orca"], tags: ["anthro"] },
  63380. {
  63381. front: {
  63382. height: math.unit(3500, "miles"),
  63383. weight: math.unit(1659, "petatonnes"),
  63384. name: "Front",
  63385. image: {
  63386. source: "./media/characters/baltica/front.svg",
  63387. extra: 429/428,
  63388. bottom: 41/470
  63389. }
  63390. },
  63391. back: {
  63392. height: math.unit(3500, "miles"),
  63393. weight: math.unit(1659, "petatonnes"),
  63394. name: "Back",
  63395. image: {
  63396. source: "./media/characters/baltica/back.svg",
  63397. extra: 452/451,
  63398. bottom: 8/460
  63399. }
  63400. },
  63401. },
  63402. [
  63403. {
  63404. name: "Gigamacro",
  63405. height: math.unit(3500, "miles"),
  63406. default: true
  63407. },
  63408. ]
  63409. ))
  63410. characterMakers.push(() => makeCharacter(
  63411. { name: "Shadow (Wolf)", species: ["wolf", "demi"], tags: ["anthro"] },
  63412. {
  63413. front: {
  63414. height: math.unit(6 + 10/12, "feet"),
  63415. weight: math.unit(200, "lb"),
  63416. name: "Front",
  63417. image: {
  63418. source: "./media/characters/shadow-wolf/front.svg",
  63419. extra: 1931/1760,
  63420. bottom: 88/2019
  63421. }
  63422. },
  63423. },
  63424. [
  63425. {
  63426. name: "Normal",
  63427. height: math.unit(6 + 10/12, "feet"),
  63428. default: true
  63429. },
  63430. ]
  63431. ))
  63432. characterMakers.push(() => makeCharacter(
  63433. { name: "Quincy (Praying Mantis)", species: ["praying-mantis"], tags: ["anthro"] },
  63434. {
  63435. front: {
  63436. height: math.unit(5 + 10/12, "feet"),
  63437. name: "Front",
  63438. image: {
  63439. source: "./media/characters/quincy-praying-mantis/front.svg",
  63440. extra: 1055/891,
  63441. bottom: 92/1147
  63442. }
  63443. },
  63444. soles: {
  63445. height: math.unit(0.85, "feet"),
  63446. name: "Soles",
  63447. image: {
  63448. source: "./media/characters/quincy-praying-mantis/soles.svg",
  63449. extra: 429/324,
  63450. bottom: 89/518
  63451. },
  63452. extraAttributes: {
  63453. "shoeSize": {
  63454. name: "Shoe Size",
  63455. power: 1,
  63456. type: "length",
  63457. base: math.unit(23, "ShoeSizeMensUS"),
  63458. defaultUnit: "ShoeSizeMensUS"
  63459. },
  63460. }
  63461. },
  63462. foot: {
  63463. height: math.unit(0.72, "feet"),
  63464. name: "Foot",
  63465. image: {
  63466. source: "./media/characters/quincy-praying-mantis/foot.svg",
  63467. extra: 349/349,
  63468. bottom: 76/425
  63469. }
  63470. },
  63471. },
  63472. [
  63473. {
  63474. name: "Normal",
  63475. height: math.unit(5 + 10/12, "feet"),
  63476. default: true
  63477. },
  63478. ]
  63479. ))
  63480. characterMakers.push(() => makeCharacter(
  63481. { name: "Christopher Redwood", species: ["gray-wolf"], tags: ["anthro"] },
  63482. {
  63483. front: {
  63484. height: math.unit(6, "feet"),
  63485. name: "Front",
  63486. image: {
  63487. source: "./media/characters/christopher-redwood/front.svg",
  63488. extra: 1402/1341,
  63489. bottom: 23/1425
  63490. }
  63491. },
  63492. back: {
  63493. height: math.unit(6, "feet"),
  63494. name: "Back",
  63495. image: {
  63496. source: "./media/characters/christopher-redwood/back.svg",
  63497. extra: 1406/1345,
  63498. bottom: 36/1442
  63499. }
  63500. },
  63501. head: {
  63502. height: math.unit(1.685, "feet"),
  63503. name: "Head",
  63504. image: {
  63505. source: "./media/characters/christopher-redwood/head.svg"
  63506. }
  63507. },
  63508. },
  63509. [
  63510. {
  63511. name: "Normal",
  63512. height: math.unit(6, "feet"),
  63513. default: true
  63514. },
  63515. ]
  63516. ))
  63517. characterMakers.push(() => makeCharacter(
  63518. { name: "Kara (Fox)", species: ["fox"], tags: ["anthro"] },
  63519. {
  63520. front: {
  63521. height: math.unit(1.9, "meters"),
  63522. weight: math.unit(140, "lb"),
  63523. name: "Front",
  63524. image: {
  63525. source: "./media/characters/kara-fox/front.svg",
  63526. extra: 766/711,
  63527. bottom: 41/807
  63528. }
  63529. },
  63530. back: {
  63531. height: math.unit(1.9, "meters"),
  63532. weight: math.unit(140, "lb"),
  63533. name: "Back",
  63534. image: {
  63535. source: "./media/characters/kara-fox/back.svg",
  63536. extra: 766/596,
  63537. bottom: 29/795
  63538. }
  63539. },
  63540. maw: {
  63541. height: math.unit(0.78, "feet"),
  63542. name: "Maw",
  63543. image: {
  63544. source: "./media/characters/kara-fox/maw.svg"
  63545. }
  63546. },
  63547. pawpads: {
  63548. height: math.unit(0.96, "feet"),
  63549. name: "Pawpads",
  63550. image: {
  63551. source: "./media/characters/kara-fox/pawpads.svg"
  63552. }
  63553. },
  63554. },
  63555. [
  63556. {
  63557. name: "Normal",
  63558. height: math.unit(1.9, "meters"),
  63559. default: true
  63560. },
  63561. {
  63562. name: "Giantess",
  63563. height: math.unit(80, "meters")
  63564. },
  63565. ]
  63566. ))
  63567. characterMakers.push(() => makeCharacter(
  63568. { name: "Naomi (Espeon)", species: ["espeon"], tags: ["anthro"] },
  63569. {
  63570. front: {
  63571. height: math.unit(12, "feet"),
  63572. name: "Front",
  63573. image: {
  63574. source: "./media/characters/naomi-espeon/front.svg",
  63575. extra: 892/797,
  63576. bottom: 5/897
  63577. }
  63578. },
  63579. back: {
  63580. height: math.unit(12, "feet"),
  63581. name: "Back",
  63582. image: {
  63583. source: "./media/characters/naomi-espeon/back.svg",
  63584. extra: 890/785,
  63585. bottom: 12/902
  63586. }
  63587. },
  63588. },
  63589. [
  63590. {
  63591. name: "Normal",
  63592. height: math.unit(12, "feet"),
  63593. default: true
  63594. },
  63595. ]
  63596. ))
  63597. characterMakers.push(() => makeCharacter(
  63598. { name: "Asher Heulfyrn", species: ["skullwolf"], tags: ["anthro", "taur"] },
  63599. {
  63600. anthro_front: {
  63601. height: math.unit(8, "feet"),
  63602. weight: math.unit(625, "lb"),
  63603. name: "Front",
  63604. image: {
  63605. source: "./media/characters/asher-heulfyrn/anthro-front.svg",
  63606. extra: 638/574,
  63607. bottom: 73/711
  63608. },
  63609. form: "anthro",
  63610. default: true
  63611. },
  63612. anthro_back: {
  63613. height: math.unit(8, "feet"),
  63614. weight: math.unit(625, "lb"),
  63615. name: "Back",
  63616. image: {
  63617. source: "./media/characters/asher-heulfyrn/anthro-back.svg",
  63618. extra: 674/614,
  63619. bottom: 7/681
  63620. },
  63621. form: "anthro",
  63622. },
  63623. taur_side: {
  63624. height: math.unit(16, "feet"),
  63625. weight: math.unit(4.5, "tons"),
  63626. name: "Side",
  63627. image: {
  63628. source: "./media/characters/asher-heulfyrn/taur-side.svg",
  63629. extra: 704/646,
  63630. bottom: 132/836
  63631. },
  63632. form: "taur",
  63633. default: true
  63634. },
  63635. },
  63636. [
  63637. {
  63638. name: "Normal",
  63639. height: math.unit(8, "feet"),
  63640. default: true,
  63641. form: "anthro"
  63642. },
  63643. {
  63644. name: "Normal",
  63645. height: math.unit(16, "feet"),
  63646. default: true,
  63647. form: "taur"
  63648. },
  63649. ],
  63650. {
  63651. "anthro": {
  63652. name: "Anthro",
  63653. default: true
  63654. },
  63655. "taur": {
  63656. name: "Taur",
  63657. },
  63658. }
  63659. ))
  63660. characterMakers.push(() => makeCharacter(
  63661. { name: "Amelie", species: ["ferrin"], tags: ["anthro"] },
  63662. {
  63663. front: {
  63664. height: math.unit(190, "cm"),
  63665. weight: math.unit(110, "kg"),
  63666. name: "Front",
  63667. image: {
  63668. source: "./media/characters/amelie/front.svg",
  63669. extra: 530/442,
  63670. bottom: 35/565
  63671. }
  63672. },
  63673. },
  63674. [
  63675. {
  63676. name: "Normal",
  63677. height: math.unit(190, "cm"),
  63678. default: true
  63679. },
  63680. ]
  63681. ))
  63682. characterMakers.push(() => makeCharacter(
  63683. { name: "Valence", species: ["skulldragon"], tags: ["anthro"] },
  63684. {
  63685. front: {
  63686. height: math.unit(21, "feet"),
  63687. weight: math.unit(30000, "lb"),
  63688. name: "Front",
  63689. image: {
  63690. source: "./media/characters/valence/front.svg",
  63691. extra: 1430/1306,
  63692. bottom: 51/1481
  63693. }
  63694. },
  63695. },
  63696. [
  63697. {
  63698. name: "Normal",
  63699. height: math.unit(21, "feet"),
  63700. default: true
  63701. },
  63702. ]
  63703. ))
  63704. characterMakers.push(() => makeCharacter(
  63705. { name: "Aurora Adkins", species: ["rusty-spotted-cat"], tags: ["anthro"] },
  63706. {
  63707. front: {
  63708. height: math.unit(5 + 9/12, "feet"),
  63709. weight: math.unit(170, "lb"),
  63710. name: "Front",
  63711. image: {
  63712. source: "./media/characters/aurora-adkins/front.svg",
  63713. extra: 1141/1089,
  63714. bottom: 41/1182
  63715. }
  63716. },
  63717. },
  63718. [
  63719. {
  63720. name: "Tiny",
  63721. height: math.unit(7, "mm")
  63722. },
  63723. {
  63724. name: "Small",
  63725. height: math.unit(3.4, "inches")
  63726. },
  63727. {
  63728. name: "Normal",
  63729. height: math.unit(5 + 9/12, "feet"),
  63730. default: true
  63731. },
  63732. {
  63733. name: "Big",
  63734. height: math.unit(31, "feet")
  63735. },
  63736. {
  63737. name: "Giant",
  63738. height: math.unit(300, "feet")
  63739. },
  63740. ]
  63741. ))
  63742. characterMakers.push(() => makeCharacter(
  63743. { name: "Cyber", species: ["maned-wolf", "lynx", "deity"], tags: ["anthro"] },
  63744. {
  63745. front: {
  63746. height: math.unit(5 + 6/12, "feet"),
  63747. weight: math.unit(210, "lb"),
  63748. name: "Front",
  63749. image: {
  63750. source: "./media/characters/cyber/front.svg",
  63751. extra: 1968/1798,
  63752. bottom: 10/1978
  63753. },
  63754. extraAttributes: {
  63755. "shoeSize": {
  63756. name: "Shoe Size",
  63757. power: 1,
  63758. type: "length",
  63759. base: math.unit(30, "ShoeSizeMensUS")
  63760. },
  63761. }
  63762. },
  63763. },
  63764. [
  63765. {
  63766. name: "Normal",
  63767. height: math.unit(5 + 6/12, "feet"),
  63768. default: true
  63769. },
  63770. ]
  63771. ))
  63772. characterMakers.push(() => makeCharacter(
  63773. { name: "Sapphire Wairimea", species: ["elf"], tags: ["anthro"] },
  63774. {
  63775. front: {
  63776. height: math.unit(6 + 6/12, "feet"),
  63777. weight: math.unit(140, "lb"),
  63778. name: "Front",
  63779. image: {
  63780. source: "./media/characters/sapphire-wairimea/front.svg",
  63781. extra: 475/458,
  63782. bottom: 14/489
  63783. }
  63784. },
  63785. },
  63786. [
  63787. {
  63788. name: "Normal",
  63789. height: math.unit(6 + 6/12, "feet")
  63790. },
  63791. {
  63792. name: "Macro",
  63793. height: math.unit(132, "feet"),
  63794. default: true
  63795. },
  63796. ]
  63797. ))
  63798. characterMakers.push(() => makeCharacter(
  63799. { name: "Cirkazi", species: ["elf"], tags: ["anthro"] },
  63800. {
  63801. front: {
  63802. height: math.unit(1.6, "meters"),
  63803. weight: math.unit(100, "lb"),
  63804. name: "Front",
  63805. image: {
  63806. source: "./media/characters/cirkazi/front.svg",
  63807. extra: 489/477,
  63808. bottom: 0/489
  63809. }
  63810. },
  63811. },
  63812. [
  63813. {
  63814. name: "Normal",
  63815. height: math.unit(1.6, "meters")
  63816. },
  63817. {
  63818. name: "Macro",
  63819. height: math.unit(800, "feet"),
  63820. default: true
  63821. },
  63822. ]
  63823. ))
  63824. characterMakers.push(() => makeCharacter(
  63825. { name: "Corrin Cavelli", species: ["human"], tags: ["anthro"] },
  63826. {
  63827. front: {
  63828. height: math.unit(5 + 10/12, "feet"),
  63829. weight: math.unit(145, "lb"),
  63830. name: "Front",
  63831. image: {
  63832. source: "./media/characters/corrin-cavelli/front.svg",
  63833. extra: 483/464,
  63834. bottom: 6/489
  63835. }
  63836. },
  63837. },
  63838. [
  63839. {
  63840. name: "Human",
  63841. height: math.unit(5 + 10/12, "feet")
  63842. },
  63843. {
  63844. name: "Giant",
  63845. height: math.unit(210, "feet"),
  63846. default: true
  63847. },
  63848. ]
  63849. ))
  63850. characterMakers.push(() => makeCharacter(
  63851. { name: "Lori Lopez", species: ["human"], tags: ["anthro"] },
  63852. {
  63853. back: {
  63854. height: math.unit(5 + 6/12, "feet"),
  63855. weight: math.unit(115, "lb"),
  63856. name: "Back",
  63857. image: {
  63858. source: "./media/characters/lori-lopez/back.svg",
  63859. extra: 483/474,
  63860. bottom: 6/489
  63861. }
  63862. },
  63863. },
  63864. [
  63865. {
  63866. name: "Human",
  63867. height: math.unit(5 + 6/12, "feet")
  63868. },
  63869. {
  63870. name: "Macro",
  63871. height: math.unit(198, "feet"),
  63872. default: true
  63873. },
  63874. ]
  63875. ))
  63876. characterMakers.push(() => makeCharacter(
  63877. { name: "Sylvia Beauregard", species: ["human"], tags: ["anthro"] },
  63878. {
  63879. front: {
  63880. height: math.unit(6, "feet"),
  63881. weight: math.unit(220, "lb"),
  63882. name: "Front",
  63883. image: {
  63884. source: "./media/characters/sylvia-beauregard/front.svg",
  63885. extra: 483/479,
  63886. bottom: 6/489
  63887. }
  63888. },
  63889. },
  63890. [
  63891. {
  63892. name: "Macro",
  63893. height: math.unit(2071, "feet"),
  63894. default: true
  63895. },
  63896. ]
  63897. ))
  63898. characterMakers.push(() => makeCharacter(
  63899. { name: "Akiko Takahashi", species: ["human"], tags: ["anthro"] },
  63900. {
  63901. back: {
  63902. height: math.unit(5 + 6/12, "feet"),
  63903. weight: math.unit(160, "lb"),
  63904. name: "Back",
  63905. image: {
  63906. source: "./media/characters/akiko-takahashi/back.svg",
  63907. extra: 459/454,
  63908. bottom: 27/486
  63909. }
  63910. },
  63911. },
  63912. [
  63913. {
  63914. name: "Human",
  63915. height: math.unit(5 + 6/12, "feet")
  63916. },
  63917. {
  63918. name: "Macro",
  63919. height: math.unit(198, "feet"),
  63920. default: true
  63921. },
  63922. {
  63923. name: "Megamacro",
  63924. height: math.unit(7128, "feet")
  63925. },
  63926. ]
  63927. ))
  63928. characterMakers.push(() => makeCharacter(
  63929. { name: "Velvet Garza", species: ["human"], tags: ["anthro"] },
  63930. {
  63931. front: {
  63932. height: math.unit(6, "feet"),
  63933. weight: math.unit(140, "lb"),
  63934. name: "Front",
  63935. image: {
  63936. source: "./media/characters/velvet-garza/front.svg",
  63937. extra: 480/462,
  63938. bottom: 7/487
  63939. }
  63940. },
  63941. },
  63942. [
  63943. {
  63944. name: "Macro",
  63945. height: math.unit(37, "feet"),
  63946. default: true
  63947. },
  63948. ]
  63949. ))
  63950. characterMakers.push(() => makeCharacter(
  63951. { name: "Gaia", species: ["deity", "human"], tags: ["anthro"] },
  63952. {
  63953. front: {
  63954. height: math.unit(7 + 6/12, "feet"),
  63955. weight: math.unit(400, "lb"),
  63956. name: "Front",
  63957. image: {
  63958. source: "./media/characters/gaia/front.svg",
  63959. extra: 474/463,
  63960. bottom: 13/487
  63961. }
  63962. },
  63963. },
  63964. [
  63965. {
  63966. name: "MiniMacro",
  63967. height: math.unit(7 + 6/12, "feet")
  63968. },
  63969. {
  63970. name: "GigaMacro",
  63971. height: math.unit(14500, "feet"),
  63972. default: true
  63973. },
  63974. ]
  63975. ))
  63976. characterMakers.push(() => makeCharacter(
  63977. { name: "Tim", species: ["rabbit"], tags: ["anthro"] },
  63978. {
  63979. front: {
  63980. height: math.unit(6, "feet"),
  63981. weight: math.unit(150, "lb"),
  63982. name: "Front",
  63983. image: {
  63984. source: "./media/characters/tim/front.svg",
  63985. extra: 1878/1743,
  63986. bottom: 9/1887
  63987. }
  63988. },
  63989. frontDressed: {
  63990. height: math.unit(6, "feet"),
  63991. weight: math.unit(150, "lb"),
  63992. name: "Front (Dressed)",
  63993. image: {
  63994. source: "./media/characters/tim/front-dressed.svg",
  63995. extra: 1765/1485,
  63996. bottom: 48/1813
  63997. }
  63998. },
  63999. backDressed: {
  64000. height: math.unit(6, "feet"),
  64001. weight: math.unit(150, "lb"),
  64002. name: "Back (Dressed)",
  64003. image: {
  64004. source: "./media/characters/tim/back-dressed.svg",
  64005. extra: 1750/1465,
  64006. bottom: 25/1775
  64007. }
  64008. },
  64009. dick: {
  64010. height: math.unit(1.5, "feet"),
  64011. weight: math.unit(6, "lb"),
  64012. name: "Dick",
  64013. image: {
  64014. source: "./media/characters/tim/dick.svg"
  64015. }
  64016. },
  64017. hand: {
  64018. height: math.unit(0.522, "feet"),
  64019. name: "Hand",
  64020. image: {
  64021. source: "./media/characters/tim/hand.svg"
  64022. }
  64023. },
  64024. palm: {
  64025. height: math.unit(0.48, "feet"),
  64026. name: "Palm",
  64027. image: {
  64028. source: "./media/characters/tim/palm.svg"
  64029. }
  64030. },
  64031. paw: {
  64032. height: math.unit(0.9, "feet"),
  64033. name: "Paw",
  64034. image: {
  64035. source: "./media/characters/tim/paw.svg"
  64036. }
  64037. },
  64038. sole: {
  64039. height: math.unit(0.88, "feet"),
  64040. name: "Sole",
  64041. image: {
  64042. source: "./media/characters/tim/sole.svg"
  64043. }
  64044. },
  64045. },
  64046. [
  64047. {
  64048. name: "Macro",
  64049. height: math.unit(1000, "feet")
  64050. },
  64051. {
  64052. name: "Megamacro",
  64053. height: math.unit(10000, "feet"),
  64054. default: true
  64055. },
  64056. {
  64057. name: "Megamacro+",
  64058. height: math.unit(50000, "feet")
  64059. },
  64060. {
  64061. name: "Gigamacro",
  64062. height: math.unit(150000, "km")
  64063. },
  64064. ]
  64065. ))
  64066. characterMakers.push(() => makeCharacter(
  64067. { name: "Abel Delreoux", species: ["maine-coon"], tags: ["anthro"] },
  64068. {
  64069. front: {
  64070. height: math.unit(5 + 8/12, "feet"),
  64071. weight: math.unit(170, "lb"),
  64072. name: "Front",
  64073. image: {
  64074. source: "./media/characters/abel-delreoux/front.svg",
  64075. extra: 1615/1500,
  64076. bottom: 82/1697
  64077. }
  64078. },
  64079. back: {
  64080. height: math.unit(5 + 8/12, "feet"),
  64081. weight: math.unit(170, "lb"),
  64082. name: "Back",
  64083. image: {
  64084. source: "./media/characters/abel-delreoux/back.svg",
  64085. extra: 1644/1534,
  64086. bottom: 24/1668
  64087. }
  64088. },
  64089. casual: {
  64090. height: math.unit(5 + 8/12, "feet"),
  64091. weight: math.unit(170, "lb"),
  64092. name: "Casual",
  64093. image: {
  64094. source: "./media/characters/abel-delreoux/casual.svg",
  64095. extra: 1716/1598,
  64096. bottom: 29/1745
  64097. }
  64098. },
  64099. sleepy: {
  64100. height: math.unit(5 + 8/12, "feet"),
  64101. weight: math.unit(170, "lb"),
  64102. name: "Sleepy",
  64103. image: {
  64104. source: "./media/characters/abel-delreoux/sleepy.svg",
  64105. extra: 1649/1573,
  64106. bottom: 22/1671
  64107. }
  64108. },
  64109. fem: {
  64110. height: math.unit(5 + 8/12, "feet"),
  64111. weight: math.unit(170, "lb"),
  64112. name: "Fem",
  64113. image: {
  64114. source: "./media/characters/abel-delreoux/fem.svg",
  64115. extra: 1680/1564,
  64116. bottom: 17/1697
  64117. }
  64118. },
  64119. hand: {
  64120. height: math.unit(0.78, "feet"),
  64121. name: "Hand",
  64122. image: {
  64123. source: "./media/characters/abel-delreoux/hand.svg"
  64124. }
  64125. },
  64126. paw: {
  64127. height: math.unit(0.78, "feet"),
  64128. name: "Paw",
  64129. image: {
  64130. source: "./media/characters/abel-delreoux/paw.svg"
  64131. }
  64132. },
  64133. },
  64134. [
  64135. {
  64136. name: "Normal",
  64137. height: math.unit(5 + 8/12, "feet"),
  64138. default: true
  64139. },
  64140. ]
  64141. ))
  64142. characterMakers.push(() => makeCharacter(
  64143. { name: "Meus", species: ["phoenix"], tags: ["anthro"] },
  64144. {
  64145. front: {
  64146. height: math.unit(6, "feet"),
  64147. weight: math.unit(159, "lb"),
  64148. name: "Front",
  64149. image: {
  64150. source: "./media/characters/meus/front.svg",
  64151. extra: 938/843,
  64152. bottom: 37/975
  64153. }
  64154. },
  64155. back: {
  64156. height: math.unit(6, "feet"),
  64157. weight: math.unit(159, "lb"),
  64158. name: "Back",
  64159. image: {
  64160. source: "./media/characters/meus/back.svg",
  64161. extra: 967/873,
  64162. bottom: 12/979
  64163. }
  64164. },
  64165. },
  64166. [
  64167. {
  64168. name: "Micro",
  64169. height: math.unit(2, "inches")
  64170. },
  64171. {
  64172. name: "Mini",
  64173. height: math.unit(6, "inches")
  64174. },
  64175. {
  64176. name: "Normal",
  64177. height: math.unit(6, "feet"),
  64178. default: true
  64179. },
  64180. {
  64181. name: "Macro",
  64182. height: math.unit(84, "feet")
  64183. },
  64184. ]
  64185. ))
  64186. characterMakers.push(() => makeCharacter(
  64187. { name: "Yamato", species: ["kobold"], tags: ["anthro"] },
  64188. {
  64189. front: {
  64190. height: math.unit(60, "cm"),
  64191. weight: math.unit(18, "kg"),
  64192. name: "Front",
  64193. image: {
  64194. source: "./media/characters/yamato/front.svg",
  64195. extra: 733/688,
  64196. bottom: 29/762
  64197. }
  64198. },
  64199. },
  64200. [
  64201. {
  64202. name: "Micro",
  64203. height: math.unit(6, "cm")
  64204. },
  64205. {
  64206. name: "Normal",
  64207. height: math.unit(60, "cm"),
  64208. default: true
  64209. },
  64210. ]
  64211. ))
  64212. characterMakers.push(() => makeCharacter(
  64213. { name: "Barus", species: ["deity"], tags: ["anthro"] },
  64214. {
  64215. front: {
  64216. height: math.unit(9, "feet"),
  64217. weight: math.unit(518, "lb"),
  64218. name: "Front",
  64219. image: {
  64220. source: "./media/characters/barus/front.svg",
  64221. extra: 1877/1795,
  64222. bottom: 55/1932
  64223. }
  64224. },
  64225. },
  64226. [
  64227. {
  64228. name: "Base Height",
  64229. height: math.unit(9, "feet"),
  64230. default: true
  64231. },
  64232. {
  64233. name: "Large",
  64234. height: math.unit(18, "feet")
  64235. },
  64236. {
  64237. name: "Giant",
  64238. height: math.unit(100, "feet")
  64239. },
  64240. {
  64241. name: "Huge",
  64242. height: math.unit(500, "feet")
  64243. },
  64244. {
  64245. name: "Enormous",
  64246. height: math.unit(300, "meters")
  64247. },
  64248. {
  64249. name: "Deity Among Man",
  64250. height: math.unit(3000, "meters")
  64251. },
  64252. ]
  64253. ))
  64254. characterMakers.push(() => makeCharacter(
  64255. { name: "Yari", species: ["sergal"], tags: ["anthro"] },
  64256. {
  64257. front: {
  64258. height: math.unit(1.7, "meters"),
  64259. name: "Front",
  64260. image: {
  64261. source: "./media/characters/yari/front.svg",
  64262. extra: 1210/1125,
  64263. bottom: 283/1493
  64264. }
  64265. },
  64266. back: {
  64267. height: math.unit(1.7, "meters"),
  64268. name: "Back",
  64269. image: {
  64270. source: "./media/characters/yari/back.svg",
  64271. extra: 1240/1195,
  64272. bottom: 180/1420
  64273. }
  64274. },
  64275. head: {
  64276. height: math.unit(1.26, "feet"),
  64277. name: "Head",
  64278. image: {
  64279. source: "./media/characters/yari/head.svg"
  64280. }
  64281. },
  64282. },
  64283. [
  64284. {
  64285. name: "Nano",
  64286. height: math.unit(0.5, "mm")
  64287. },
  64288. {
  64289. name: "Micro",
  64290. height: math.unit(3, "inches")
  64291. },
  64292. {
  64293. name: "Short",
  64294. height: math.unit(1.5, "meters")
  64295. },
  64296. {
  64297. name: "Norm",
  64298. height: math.unit(1.7, "meters"),
  64299. default: true
  64300. },
  64301. ]
  64302. ))
  64303. characterMakers.push(() => makeCharacter(
  64304. { name: "Salem", species: ["mouse"], tags: ["anthro"] },
  64305. {
  64306. front: {
  64307. height: math.unit(5 + 2/12, "feet"),
  64308. weight: math.unit(110, "lb"),
  64309. name: "Front",
  64310. image: {
  64311. source: "./media/characters/salem/front.svg",
  64312. extra: 1895/1800,
  64313. bottom: 23/1918
  64314. }
  64315. },
  64316. back: {
  64317. height: math.unit(5 + 2/12, "feet"),
  64318. weight: math.unit(110, "lb"),
  64319. name: "Back",
  64320. image: {
  64321. source: "./media/characters/salem/back.svg",
  64322. extra: 1875/1802,
  64323. bottom: 20/1895
  64324. }
  64325. },
  64326. head: {
  64327. height: math.unit(1, "feet"),
  64328. name: "Head",
  64329. image: {
  64330. source: "./media/characters/salem/head.svg"
  64331. }
  64332. },
  64333. paw: {
  64334. height: math.unit(0.59, "feet"),
  64335. name: "Paw",
  64336. image: {
  64337. source: "./media/characters/salem/paw.svg"
  64338. }
  64339. },
  64340. beans: {
  64341. height: math.unit(0.66, "feet"),
  64342. name: "Beans",
  64343. image: {
  64344. source: "./media/characters/salem/beans.svg"
  64345. }
  64346. },
  64347. eye: {
  64348. height: math.unit(0.224, "feet"),
  64349. name: "Eye",
  64350. image: {
  64351. source: "./media/characters/salem/eye.svg"
  64352. }
  64353. },
  64354. semiferal: {
  64355. height: math.unit(2.3, "feet"),
  64356. name: "Semiferal",
  64357. image: {
  64358. source: "./media/characters/salem/semiferal.svg",
  64359. extra: 914/839,
  64360. bottom: 32/946
  64361. }
  64362. },
  64363. },
  64364. [
  64365. {
  64366. name: "Micro",
  64367. height: math.unit(4, "inches")
  64368. },
  64369. {
  64370. name: "Normal",
  64371. height: math.unit(5 + 2/12, "feet"),
  64372. default: true
  64373. },
  64374. {
  64375. name: "Macro",
  64376. height: math.unit(108, "feet")
  64377. },
  64378. {
  64379. name: "Macro+",
  64380. height: math.unit(1500, "feet")
  64381. },
  64382. ]
  64383. ))
  64384. characterMakers.push(() => makeCharacter(
  64385. { name: "Kii", species: ["dragon", "dog"], tags: ["anthro"] },
  64386. {
  64387. front: {
  64388. height: math.unit(7 + 6/12, "feet"),
  64389. weight: math.unit(600, "kg"),
  64390. preyCapacity: math.unit(10, "people"),
  64391. name: "Front",
  64392. image: {
  64393. source: "./media/characters/kii/front.svg",
  64394. extra: 3296/3087,
  64395. bottom: 130/3426
  64396. }
  64397. },
  64398. },
  64399. [
  64400. {
  64401. name: "Normal",
  64402. height: math.unit(7 + 6/12, "feet"),
  64403. default: true
  64404. },
  64405. ]
  64406. ))
  64407. characterMakers.push(() => makeCharacter(
  64408. { name: "Taffy", species: ["saltwater-crocodile"], tags: ["anthro"] },
  64409. {
  64410. front: {
  64411. height: math.unit(2, "meters"),
  64412. weight: math.unit(200, "lb"),
  64413. name: "Front",
  64414. image: {
  64415. source: "./media/characters/taffy/front.svg",
  64416. extra: 1666/1618,
  64417. bottom: 157/1823
  64418. }
  64419. },
  64420. back: {
  64421. height: math.unit(2, "meters"),
  64422. weight: math.unit(200, "lb"),
  64423. name: "Back",
  64424. image: {
  64425. source: "./media/characters/taffy/back.svg",
  64426. extra: 1635/1583,
  64427. bottom: 153/1788
  64428. }
  64429. },
  64430. },
  64431. [
  64432. {
  64433. name: "Normal",
  64434. height: math.unit(2, "meters"),
  64435. default: true
  64436. },
  64437. ]
  64438. ))
  64439. characterMakers.push(() => makeCharacter(
  64440. { name: "Barley", species: ["eastern-grey-kangaroo"], tags: ["anthro"] },
  64441. {
  64442. front: {
  64443. height: math.unit(1.55, "meters"),
  64444. weight: math.unit(60, "kg"),
  64445. name: "Front",
  64446. image: {
  64447. source: "./media/characters/barley/front.svg",
  64448. extra: 1520/1340,
  64449. bottom: 47/1567
  64450. }
  64451. },
  64452. back: {
  64453. height: math.unit(1.55, "meters"),
  64454. weight: math.unit(60, "kg"),
  64455. name: "Back",
  64456. image: {
  64457. source: "./media/characters/barley/back.svg",
  64458. extra: 1543/1341,
  64459. bottom: 12/1555
  64460. }
  64461. },
  64462. feet: {
  64463. height: math.unit(2.18, "feet"),
  64464. name: "Feet",
  64465. image: {
  64466. source: "./media/characters/barley/feet.svg"
  64467. }
  64468. },
  64469. },
  64470. [
  64471. {
  64472. name: "Normal",
  64473. height: math.unit(1.55, "meters"),
  64474. default: true
  64475. },
  64476. ]
  64477. ))
  64478. characterMakers.push(() => makeCharacter(
  64479. { name: "Lydia Lopez", species: ["shark"], tags: ["anthro"] },
  64480. {
  64481. dressed: {
  64482. height: math.unit(6, "feet"),
  64483. name: "Dressed",
  64484. image: {
  64485. source: "./media/characters/lydia-lopez/dressed.svg",
  64486. extra: 1319/1277,
  64487. bottom: 90/1409
  64488. }
  64489. },
  64490. nude: {
  64491. height: math.unit(6, "feet"),
  64492. name: "Nude",
  64493. image: {
  64494. source: "./media/characters/lydia-lopez/nude.svg",
  64495. extra: 1319/1277,
  64496. bottom: 90/1409
  64497. }
  64498. },
  64499. },
  64500. [
  64501. {
  64502. name: "Normal",
  64503. height: math.unit(6, "feet"),
  64504. default: true
  64505. },
  64506. {
  64507. name: "Maximum",
  64508. height: math.unit(2101, "feet")
  64509. },
  64510. ]
  64511. ))
  64512. characterMakers.push(() => makeCharacter(
  64513. { name: "Kira (Slime)", species: ["slime"], tags: ["goo"] },
  64514. {
  64515. front: {
  64516. height: math.unit(5 + 4/12, "feet"),
  64517. weight: math.unit(250, "lb"),
  64518. volume: math.unit(20, "gallons"),
  64519. name: "Front",
  64520. image: {
  64521. source: "./media/characters/kira-slime/front.svg",
  64522. extra: 442/403,
  64523. bottom: 18/460
  64524. }
  64525. },
  64526. frontNsfw: {
  64527. height: math.unit(5 + 4/12, "feet"),
  64528. weight: math.unit(250, "lb"),
  64529. volume: math.unit(20, "gallons"),
  64530. name: "Front (NSFW)",
  64531. image: {
  64532. source: "./media/characters/kira-slime/front-nsfw.svg",
  64533. extra: 442/403,
  64534. bottom: 18/460
  64535. }
  64536. },
  64537. },
  64538. [
  64539. {
  64540. name: "Droplet",
  64541. height: math.unit(0.0464452, "feet")
  64542. },
  64543. {
  64544. name: "Pint",
  64545. height: math.unit(0.9824, "feet")
  64546. },
  64547. {
  64548. name: "Bucket",
  64549. height: math.unit(2.83, "feet")
  64550. },
  64551. {
  64552. name: "Normal",
  64553. height: math.unit(5 + 4/12, "feet"),
  64554. default: true
  64555. },
  64556. {
  64557. name: "Tub",
  64558. height: math.unit(8.46614, "feet")
  64559. },
  64560. {
  64561. name: "Pool",
  64562. height: math.unit(31.1895, "feet")
  64563. },
  64564. {
  64565. name: "Pond",
  64566. height: math.unit(170.349, "feet")
  64567. },
  64568. {
  64569. name: "Lake",
  64570. height: math.unit(289334, "feet")
  64571. },
  64572. {
  64573. name: "Ocean",
  64574. height: math.unit(1.11940e+7, "feet")
  64575. },
  64576. ]
  64577. ))
  64578. characterMakers.push(() => makeCharacter(
  64579. { name: "Holiday", species: ["fennec-fox", "deer"], tags: ["anthro"] },
  64580. {
  64581. front: {
  64582. height: math.unit(5 + 6/12, "feet"),
  64583. weight: math.unit(120, "lb"),
  64584. name: "Front",
  64585. image: {
  64586. source: "./media/characters/holiday/front.svg",
  64587. extra: 456/403,
  64588. bottom: 4/460
  64589. }
  64590. },
  64591. back: {
  64592. height: math.unit(5 + 6/12, "feet"),
  64593. weight: math.unit(120, "lb"),
  64594. name: "Back",
  64595. image: {
  64596. source: "./media/characters/holiday/back.svg",
  64597. extra: 450/404,
  64598. bottom: 12/462
  64599. }
  64600. },
  64601. head: {
  64602. height: math.unit(2.3, "feet"),
  64603. name: "Head",
  64604. image: {
  64605. source: "./media/characters/holiday/head.svg"
  64606. }
  64607. },
  64608. scifi_front: {
  64609. height: math.unit(145, "km"),
  64610. name: "Front",
  64611. image: {
  64612. source: "./media/characters/holiday/scifi-front.svg"
  64613. },
  64614. form: "scifi",
  64615. },
  64616. },
  64617. [
  64618. {
  64619. name: "Normal",
  64620. height: math.unit(5 + 6/12, "feet"),
  64621. default: true
  64622. },
  64623. {
  64624. name: "Macro",
  64625. height: math.unit(6574.25, "feet")
  64626. },
  64627. ]
  64628. ))
  64629. characterMakers.push(() => makeCharacter(
  64630. { name: "Camina", species: ["latenivenatrix"], tags: ["anthro"] },
  64631. {
  64632. front: {
  64633. height: math.unit(6 + 2/12, "feet"),
  64634. weight: math.unit(200, "lb"),
  64635. name: "Front",
  64636. image: {
  64637. source: "./media/characters/camina/front.svg",
  64638. extra: 1048/985,
  64639. bottom: 30/1078
  64640. }
  64641. },
  64642. },
  64643. [
  64644. {
  64645. name: "Normal",
  64646. height: math.unit(6 + 2/12, "feet"),
  64647. default: true
  64648. },
  64649. ]
  64650. ))
  64651. characterMakers.push(() => makeCharacter(
  64652. { name: "Smuck", species: ["duck"], tags: ["feral"] },
  64653. {
  64654. front: {
  64655. height: math.unit(30, "cm"),
  64656. weight: math.unit(420, "grams"),
  64657. name: "Front",
  64658. image: {
  64659. source: "./media/characters/smuck/front.svg",
  64660. extra: 379/345,
  64661. bottom: 36/415
  64662. }
  64663. },
  64664. },
  64665. [
  64666. {
  64667. name: "Smuck-Sized",
  64668. height: math.unit(30, "cm"),
  64669. default: true
  64670. },
  64671. ]
  64672. ))
  64673. characterMakers.push(() => makeCharacter(
  64674. { name: "Bylur", species: ["monster"], tags: ["anthro"] },
  64675. {
  64676. frontSfw: {
  64677. height: math.unit(10, "feet"),
  64678. weight: math.unit(1000, "kg"),
  64679. preyCapacity: math.unit(2, "people"),
  64680. name: "Front (SFW)",
  64681. image: {
  64682. source: "./media/characters/bylur/front-sfw.svg",
  64683. extra: 419/343,
  64684. bottom: 3/422
  64685. },
  64686. default: true
  64687. },
  64688. frontSheath: {
  64689. height: math.unit(10, "feet"),
  64690. weight: math.unit(1000, "kg"),
  64691. preyCapacity: math.unit(2, "people"),
  64692. name: "Front (Sheath)",
  64693. image: {
  64694. source: "./media/characters/bylur/front-sheath.svg",
  64695. extra: 419/343,
  64696. bottom: 3/422
  64697. }
  64698. },
  64699. frontErect: {
  64700. height: math.unit(10, "feet"),
  64701. weight: math.unit(1000, "kg"),
  64702. preyCapacity: math.unit(2, "people"),
  64703. name: "Front (Erect)",
  64704. image: {
  64705. source: "./media/characters/bylur/front-erect.svg",
  64706. extra: 419/343,
  64707. bottom: 3/422
  64708. }
  64709. },
  64710. back: {
  64711. height: math.unit(10, "feet"),
  64712. weight: math.unit(1000, "kg"),
  64713. preyCapacity: math.unit(2, "people"),
  64714. name: "Back",
  64715. image: {
  64716. source: "./media/characters/bylur/back.svg",
  64717. extra: 392/315,
  64718. bottom: 3/395
  64719. }
  64720. },
  64721. maw: {
  64722. height: math.unit(3.65, "feet"),
  64723. name: "Maw",
  64724. image: {
  64725. source: "./media/characters/bylur/maw.svg"
  64726. }
  64727. },
  64728. },
  64729. [
  64730. {
  64731. name: "Slightly Human Sized",
  64732. height: math.unit(10, "feet")
  64733. },
  64734. {
  64735. name: "Normal",
  64736. height: math.unit(35, "feet"),
  64737. default: true
  64738. },
  64739. {
  64740. name: "Macro",
  64741. height: math.unit(130, "feet")
  64742. },
  64743. ]
  64744. ))
  64745. characterMakers.push(() => makeCharacter(
  64746. { name: "Oarven", species: ["earless-monitor-lizard"], tags: ["anthro"] },
  64747. {
  64748. frontNsfw: {
  64749. height: math.unit(6, "feet"),
  64750. weight: math.unit(250, "lb"),
  64751. preyCapacity: math.unit(0.05, "people"),
  64752. name: "Front (NSFW)",
  64753. image: {
  64754. source: "./media/characters/oarven/front-nsfw.svg",
  64755. extra: 1795/1783,
  64756. bottom: 142/1937
  64757. }
  64758. },
  64759. frontSfw: {
  64760. height: math.unit(6, "feet"),
  64761. weight: math.unit(250, "lb"),
  64762. preyCapacity: math.unit(0.05, "people"),
  64763. name: "Front (SFW)",
  64764. image: {
  64765. source: "./media/characters/oarven/front-sfw.svg",
  64766. extra: 1795/1783,
  64767. bottom: 142/1937
  64768. }
  64769. },
  64770. },
  64771. [
  64772. {
  64773. name: "Megamacro",
  64774. height: math.unit(5, "miles"),
  64775. default: true
  64776. },
  64777. {
  64778. name: "Maximum Height",
  64779. height: math.unit(5, "AUs")
  64780. },
  64781. ]
  64782. ))
  64783. characterMakers.push(() => makeCharacter(
  64784. { name: "Solidarity", species: ["aerosynth"], tags: ["feral"] },
  64785. {
  64786. side: {
  64787. height: math.unit(1065, "meters"),
  64788. weight: math.unit(1e12, "kg"),
  64789. volume: math.unit(3265000000, "m^3"),
  64790. name: "Side",
  64791. image: {
  64792. source: "./media/characters/solidarity/side.svg"
  64793. }
  64794. },
  64795. front: {
  64796. height: math.unit(1065, "meters"),
  64797. weight: math.unit(3265000000000, "kg"),
  64798. volume: math.unit(3265000000, "m^3"),
  64799. name: "Front",
  64800. image: {
  64801. source: "./media/characters/solidarity/front.svg"
  64802. }
  64803. },
  64804. top: {
  64805. height: math.unit(5823, "meters"),
  64806. weight: math.unit(3265000000000, "kg"),
  64807. volume: math.unit(3265000000, "m^3"),
  64808. name: "Top",
  64809. image: {
  64810. source: "./media/characters/solidarity/top.svg"
  64811. }
  64812. },
  64813. },
  64814. [
  64815. {
  64816. name: "Normal",
  64817. height: math.unit(1065, "meters"),
  64818. default: true
  64819. },
  64820. ]
  64821. ))
  64822. characterMakers.push(() => makeCharacter(
  64823. { name: "Ani'szi", species: ["phenx"], tags: ["taur"] },
  64824. {
  64825. side: {
  64826. height: math.unit(18 + 4/12, "feet"),
  64827. weight: math.unit(13000, "kg"),
  64828. name: "Side",
  64829. image: {
  64830. source: "./media/characters/ani'szi/side.svg",
  64831. extra: 468/459,
  64832. bottom: 60/528
  64833. }
  64834. },
  64835. head: {
  64836. height: math.unit(4.8, "feet"),
  64837. name: "Head",
  64838. image: {
  64839. source: "./media/characters/ani'szi/head.svg"
  64840. }
  64841. },
  64842. jaws: {
  64843. height: math.unit(2.25, "feet"),
  64844. name: "Jaws",
  64845. image: {
  64846. source: "./media/characters/ani'szi/jaws.svg"
  64847. }
  64848. },
  64849. bust: {
  64850. height: math.unit(8.9, "feet"),
  64851. name: "Bust",
  64852. image: {
  64853. source: "./media/characters/ani'szi/bust.svg"
  64854. }
  64855. },
  64856. back: {
  64857. height: math.unit(13.53, "feet"),
  64858. name: "Back",
  64859. image: {
  64860. source: "./media/characters/ani'szi/back.svg"
  64861. }
  64862. },
  64863. eye: {
  64864. height: math.unit(0.44, "feet"),
  64865. name: "Eye",
  64866. image: {
  64867. source: "./media/characters/ani'szi/eye.svg"
  64868. }
  64869. },
  64870. },
  64871. [
  64872. {
  64873. name: "Normal",
  64874. height: math.unit(18 + 4/12, "feet"),
  64875. default: true
  64876. },
  64877. ]
  64878. ))
  64879. characterMakers.push(() => makeCharacter(
  64880. { name: "Rain", species: ["driger"], tags: ["anthro"] },
  64881. {
  64882. front: {
  64883. height: math.unit(7 + 6/12, "feet"),
  64884. weight: math.unit(300, "lb"),
  64885. name: "Front",
  64886. image: {
  64887. source: "./media/characters/rain/front.svg",
  64888. extra: 2955/2698,
  64889. bottom: 235/3190
  64890. }
  64891. },
  64892. dressed: {
  64893. height: math.unit(7 + 6/12, "feet"),
  64894. weight: math.unit(300, "lb"),
  64895. name: "Dressed",
  64896. image: {
  64897. source: "./media/characters/rain/dressed.svg",
  64898. extra: 2783/2572,
  64899. bottom: 430/3213
  64900. }
  64901. },
  64902. },
  64903. [
  64904. {
  64905. name: "Normal",
  64906. height: math.unit(7 + 6/12, "feet"),
  64907. default: true
  64908. },
  64909. {
  64910. name: "Macro",
  64911. height: math.unit(200, "feet")
  64912. },
  64913. {
  64914. name: "Macro+",
  64915. height: math.unit(500, "feet")
  64916. },
  64917. {
  64918. name: "Megamacro",
  64919. height: math.unit(5, "miles")
  64920. },
  64921. ]
  64922. ))
  64923. characterMakers.push(() => makeCharacter(
  64924. { name: "Anise", species: ["gryphon"], tags: ["feral", "taur"] },
  64925. {
  64926. taur_side: {
  64927. height: math.unit(3, "meters"),
  64928. name: "Side",
  64929. image: {
  64930. source: "./media/characters/anise/taur-side.svg",
  64931. extra: 1833/926,
  64932. bottom: 134/1967
  64933. },
  64934. form: "taur",
  64935. default: true
  64936. },
  64937. feral_side: {
  64938. height: math.unit(3, "meters"),
  64939. name: "Side",
  64940. image: {
  64941. source: "./media/characters/anise/feral-side.svg",
  64942. extra: 681/349,
  64943. bottom: 26/707
  64944. },
  64945. form: "feral"
  64946. },
  64947. },
  64948. [
  64949. {
  64950. name: "Normal",
  64951. height: math.unit(3, "meters"),
  64952. default: true,
  64953. allForms: true
  64954. },
  64955. ],
  64956. {
  64957. "taur": {
  64958. name: "Taur",
  64959. default: true
  64960. },
  64961. "feral": {
  64962. name: "Feral",
  64963. },
  64964. }
  64965. ))
  64966. characterMakers.push(() => makeCharacter(
  64967. { name: "Sarina", species: ["red-panda"], tags: ["anthro"] },
  64968. {
  64969. front: {
  64970. height: math.unit(1.9, "meters"),
  64971. weight: math.unit(75, "kg"),
  64972. name: "Front",
  64973. image: {
  64974. source: "./media/characters/sarina/front.svg",
  64975. extra: 1275/1200,
  64976. bottom: 49/1324
  64977. }
  64978. },
  64979. back: {
  64980. height: math.unit(1.9, "meters"),
  64981. weight: math.unit(75, "kg"),
  64982. name: "Back",
  64983. image: {
  64984. source: "./media/characters/sarina/back.svg",
  64985. extra: 1279/1209,
  64986. bottom: 14/1293
  64987. }
  64988. },
  64989. dressed: {
  64990. height: math.unit(1.9, "meters"),
  64991. weight: math.unit(75, "kg"),
  64992. name: "Dressed",
  64993. image: {
  64994. source: "./media/characters/sarina/dressed.svg",
  64995. extra: 1256/1187,
  64996. bottom: 56/1312
  64997. }
  64998. },
  64999. paw: {
  65000. height: math.unit(0.57, "feet"),
  65001. name: "Paw",
  65002. image: {
  65003. source: "./media/characters/sarina/paw.svg"
  65004. }
  65005. },
  65006. toering: {
  65007. height: math.unit(0.27, "feet"),
  65008. name: "Toering",
  65009. image: {
  65010. source: "./media/characters/sarina/toering.svg"
  65011. }
  65012. },
  65013. },
  65014. [
  65015. {
  65016. name: "Incognito",
  65017. height: math.unit(1.9, "meters")
  65018. },
  65019. {
  65020. name: "Home Size",
  65021. height: math.unit(160, "meters"),
  65022. default: true
  65023. },
  65024. {
  65025. name: "Mega",
  65026. height: math.unit(50, "km")
  65027. },
  65028. {
  65029. name: "Small Giga",
  65030. height: math.unit(250, "km")
  65031. },
  65032. {
  65033. name: "Giga (Preferred Size)",
  65034. height: math.unit(3000, "km")
  65035. },
  65036. {
  65037. name: "Terra",
  65038. height: math.unit(40000, "km")
  65039. },
  65040. {
  65041. name: "Terra+",
  65042. height: math.unit(400000, "km")
  65043. },
  65044. {
  65045. name: "Solar",
  65046. height: math.unit(35e6, "km")
  65047. },
  65048. {
  65049. name: "Galactic",
  65050. height: math.unit(648106, "parsecs")
  65051. },
  65052. {
  65053. name: "Universal",
  65054. height: math.unit(7, "universes")
  65055. },
  65056. {
  65057. name: "Universal+",
  65058. height: math.unit(30, "universes")
  65059. },
  65060. ]
  65061. ))
  65062. characterMakers.push(() => makeCharacter(
  65063. { name: "Sifray", species: ["homestuck-troll"], tags: ["anthro"] },
  65064. {
  65065. front: {
  65066. height: math.unit(5 + 6/12, "feet"),
  65067. name: "Front",
  65068. image: {
  65069. source: "./media/characters/sifray/front.svg",
  65070. extra: 722/691,
  65071. bottom: 64/786
  65072. }
  65073. },
  65074. },
  65075. [
  65076. {
  65077. name: "Normal",
  65078. height: math.unit(5 + 6/12, "feet"),
  65079. default: true
  65080. },
  65081. ]
  65082. ))
  65083. characterMakers.push(() => makeCharacter(
  65084. { name: "Spots", species: ["dog"], tags: ["feral"] },
  65085. {
  65086. side: {
  65087. height: math.unit(2.64, "feet"),
  65088. weight: math.unit(7, "tons"),
  65089. preyCapacity: math.unit(3, "people"),
  65090. name: "Side",
  65091. image: {
  65092. source: "./media/characters/spots/side.svg",
  65093. extra: 1859/977,
  65094. bottom: 19/1878
  65095. },
  65096. extraAttributes: {
  65097. "preyPerMinute": {
  65098. name: "Prey Per Minute",
  65099. power: 3,
  65100. type: "volume",
  65101. base: math.unit(6, "people"),
  65102. defaultUnit: "people"
  65103. },
  65104. "preyPerDay": {
  65105. name: "Prey Per Day",
  65106. power: 3,
  65107. type: "volume",
  65108. base: math.unit(6 * 60 * 24, "people"),
  65109. defaultUnit: "people"
  65110. },
  65111. }
  65112. },
  65113. },
  65114. [
  65115. {
  65116. name: "Normal",
  65117. height: math.unit(2.64, "feet"),
  65118. default: true
  65119. },
  65120. ]
  65121. ))
  65122. characterMakers.push(() => makeCharacter(
  65123. { name: "Mona", species: ["caudin"], tags: ["anthro"] },
  65124. {
  65125. front: {
  65126. height: math.unit(29 + 11/12, "feet"),
  65127. weight: math.unit(40, "tons"),
  65128. name: "Front",
  65129. image: {
  65130. source: "./media/characters/mona/front.svg",
  65131. extra: 1257/1116,
  65132. bottom: 34/1291
  65133. }
  65134. },
  65135. },
  65136. [
  65137. {
  65138. name: "Normal",
  65139. height: math.unit(29 + 11/12, "feet"),
  65140. default: true
  65141. },
  65142. ]
  65143. ))
  65144. characterMakers.push(() => makeCharacter(
  65145. { name: "FrostFire", species: ["dragon"], tags: ["anthro"] },
  65146. {
  65147. front: {
  65148. height: math.unit(15, "feet"),
  65149. weight: math.unit(3000, "kg"),
  65150. preyCapacity: math.unit(5, "people"),
  65151. name: "Front",
  65152. image: {
  65153. source: "./media/characters/frostfire/front.svg",
  65154. extra: 675/558,
  65155. bottom: 73/748
  65156. }
  65157. },
  65158. side: {
  65159. height: math.unit(15, "feet"),
  65160. weight: math.unit(3000, "kg"),
  65161. preyCapacity: math.unit(5, "people"),
  65162. name: "Side",
  65163. image: {
  65164. source: "./media/characters/frostfire/side.svg",
  65165. extra: 687/585,
  65166. bottom: 50/737
  65167. }
  65168. },
  65169. back: {
  65170. height: math.unit(15, "feet"),
  65171. weight: math.unit(3000, "kg"),
  65172. preyCapacity: math.unit(5, "people"),
  65173. name: "Back",
  65174. image: {
  65175. source: "./media/characters/frostfire/back.svg",
  65176. extra: 707/607,
  65177. bottom: 16/723
  65178. }
  65179. },
  65180. head: {
  65181. height: math.unit(9.35, "feet"),
  65182. name: "Head",
  65183. image: {
  65184. source: "./media/characters/frostfire/head.svg"
  65185. }
  65186. },
  65187. maw: {
  65188. height: math.unit(3.32, "feet"),
  65189. name: "Maw",
  65190. image: {
  65191. source: "./media/characters/frostfire/maw.svg"
  65192. }
  65193. },
  65194. hand: {
  65195. height: math.unit(3.7, "feet"),
  65196. name: "Hand",
  65197. image: {
  65198. source: "./media/characters/frostfire/hand.svg"
  65199. }
  65200. },
  65201. paw: {
  65202. height: math.unit(5.8, "feet"),
  65203. name: "Paw",
  65204. image: {
  65205. source: "./media/characters/frostfire/paw.svg"
  65206. }
  65207. },
  65208. },
  65209. [
  65210. {
  65211. name: "Normal",
  65212. height: math.unit(15, "feet"),
  65213. default: true
  65214. },
  65215. ]
  65216. ))
  65217. characterMakers.push(() => makeCharacter(
  65218. { name: "Valeroo", species: ["kangaroo"], tags: ["anthro"] },
  65219. {
  65220. front: {
  65221. height: math.unit(5 + 2/12, "feet"),
  65222. weight: math.unit(122, "lb"),
  65223. name: "Front",
  65224. image: {
  65225. source: "./media/characters/valeroo/front.svg",
  65226. extra: 1789/1534,
  65227. bottom: 66/1855
  65228. }
  65229. },
  65230. back: {
  65231. height: math.unit(5 + 2/12, "feet"),
  65232. weight: math.unit(122, "lb"),
  65233. name: "Back",
  65234. image: {
  65235. source: "./media/characters/valeroo/back.svg",
  65236. extra: 1848/1588,
  65237. bottom: 68/1916
  65238. }
  65239. },
  65240. head: {
  65241. height: math.unit(1.87, "feet"),
  65242. name: "Head",
  65243. image: {
  65244. source: "./media/characters/valeroo/head.svg"
  65245. }
  65246. },
  65247. hand: {
  65248. height: math.unit(0.82, "feet"),
  65249. name: "Hand",
  65250. image: {
  65251. source: "./media/characters/valeroo/hand.svg"
  65252. }
  65253. },
  65254. foot: {
  65255. height: math.unit(2.42, "feet"),
  65256. name: "Foot",
  65257. image: {
  65258. source: "./media/characters/valeroo/foot.svg"
  65259. }
  65260. },
  65261. },
  65262. [
  65263. {
  65264. name: "Normal",
  65265. height: math.unit(5 + 2/12, "feet"),
  65266. default: true
  65267. },
  65268. ]
  65269. ))
  65270. characterMakers.push(() => makeCharacter(
  65271. { name: "Corrin", species: ["secretary-bird"], tags: ["anthro"] },
  65272. {
  65273. front: {
  65274. height: math.unit(11 + 3/12, "feet"),
  65275. name: "Front",
  65276. image: {
  65277. source: "./media/characters/corrin/front.svg",
  65278. extra: 665/597,
  65279. bottom: 74/739
  65280. }
  65281. },
  65282. },
  65283. [
  65284. {
  65285. name: "Standard",
  65286. height: math.unit(11 + 3/12, "feet"),
  65287. default: true
  65288. },
  65289. {
  65290. name: "The Boss",
  65291. height: math.unit(110, "feet")
  65292. },
  65293. {
  65294. name: "Shipbreaker",
  65295. height: math.unit(38, "km")
  65296. },
  65297. ]
  65298. ))
  65299. characterMakers.push(() => makeCharacter(
  65300. { name: "Kiba Ulrich", species: ["dire-wolf"], tags: ["anthro"] },
  65301. {
  65302. front: {
  65303. height: math.unit(10, "feet"),
  65304. weight: math.unit(1750, "lb"),
  65305. name: "Front",
  65306. image: {
  65307. source: "./media/characters/kiba-ulrich/front.svg",
  65308. extra: 1037/973,
  65309. bottom: 36/1073
  65310. }
  65311. },
  65312. },
  65313. [
  65314. {
  65315. name: "Normal",
  65316. height: math.unit(10, "feet"),
  65317. default: true
  65318. },
  65319. {
  65320. name: "Minimacro",
  65321. height: math.unit(20, "feet")
  65322. },
  65323. {
  65324. name: "Macro",
  65325. height: math.unit(200, "feet")
  65326. },
  65327. {
  65328. name: "Megamacro",
  65329. height: math.unit(22500, "feet")
  65330. },
  65331. {
  65332. name: "Gigamacro",
  65333. height: math.unit(2700, "miles")
  65334. },
  65335. {
  65336. name: "Teramacro",
  65337. height: math.unit(10000, "miles")
  65338. },
  65339. ]
  65340. ))
  65341. characterMakers.push(() => makeCharacter(
  65342. { name: "Ceanoth", species: ["gryphon"], tags: ["anthro"] },
  65343. {
  65344. gryphon_front: {
  65345. height: math.unit(220, "cm"),
  65346. weight: math.unit(160, "kg"),
  65347. name: "Front",
  65348. image: {
  65349. source: "./media/characters/ceanoth/gryphon-front.svg",
  65350. extra: 616/552,
  65351. bottom: 33/649
  65352. },
  65353. form: "gryphon",
  65354. default: true
  65355. },
  65356. },
  65357. [
  65358. {
  65359. name: "Normal",
  65360. height: math.unit(220, "cm"),
  65361. form: "gryphon",
  65362. default: true
  65363. },
  65364. ],
  65365. {
  65366. "gryphon": {
  65367. name: "Grpyhon",
  65368. default: true
  65369. },
  65370. }
  65371. ))
  65372. characterMakers.push(() => makeCharacter(
  65373. { name: "Vanadiya Athelya", species: ["dragon"], tags: ["taur"] },
  65374. {
  65375. dressed: {
  65376. height: math.unit(2.2 * 0.79, "meters"),
  65377. weight: math.unit(0.5, "tonnes"),
  65378. name: "Dressed",
  65379. image: {
  65380. source: "./media/characters/vanadiya-athelya/dressed.svg",
  65381. extra: 665/315,
  65382. bottom: 106/771
  65383. },
  65384. extraAttributes: {
  65385. "bodyLength": {
  65386. name: "Body Length",
  65387. power: 1,
  65388. type: "length",
  65389. base: math.unit(2.5, "meters")
  65390. },
  65391. "tailLength": {
  65392. name: "Tail Length",
  65393. power: 1,
  65394. type: "length",
  65395. base: math.unit(4.5, "meters")
  65396. },
  65397. "wingspan": {
  65398. name: "Wingspan",
  65399. power: 1,
  65400. type: "length",
  65401. base: math.unit(6, "meters")
  65402. },
  65403. "taurStomachCapacity": {
  65404. name: "Taur Stomach Capacity",
  65405. power: 3,
  65406. type: "volume",
  65407. base: math.unit(4, "people"),
  65408. defaultUnit: "people"
  65409. },
  65410. "anthroStomachCapacity": {
  65411. name: "Anthro Stomach Capacity",
  65412. power: 3,
  65413. type: "volume",
  65414. base: math.unit(1, "people"),
  65415. defaultUnit: "people"
  65416. },
  65417. }
  65418. },
  65419. nude: {
  65420. height: math.unit(2.2 * 0.79, "meters"),
  65421. weight: math.unit(0.5, "tonnes"),
  65422. name: "Nude",
  65423. image: {
  65424. source: "./media/characters/vanadiya-athelya/nude.svg",
  65425. extra: 665/315,
  65426. bottom: 106/771
  65427. },
  65428. extraAttributes: {
  65429. "bodyLength": {
  65430. name: "Body Length",
  65431. power: 1,
  65432. type: "length",
  65433. base: math.unit(2.5, "meters")
  65434. },
  65435. "tailLength": {
  65436. name: "Tail Length",
  65437. power: 1,
  65438. type: "length",
  65439. base: math.unit(4.5, "meters")
  65440. },
  65441. "wingspan": {
  65442. name: "Wingspan",
  65443. power: 1,
  65444. type: "length",
  65445. base: math.unit(6, "meters")
  65446. },
  65447. "taurStomachCapacity": {
  65448. name: "Taur Stomach Capacity",
  65449. power: 3,
  65450. type: "volume",
  65451. base: math.unit(4, "people"),
  65452. defaultUnit: "people"
  65453. },
  65454. "anthroStomachCapacity": {
  65455. name: "Anthro Stomach Capacity",
  65456. power: 3,
  65457. type: "volume",
  65458. base: math.unit(1, "people"),
  65459. defaultUnit: "people"
  65460. },
  65461. }
  65462. },
  65463. },
  65464. [
  65465. {
  65466. name: "Handheld",
  65467. height: math.unit(0.79 * 0.06, "meters")
  65468. },
  65469. {
  65470. name: "Mini",
  65471. height: math.unit(0.79 * 0.7, "meters")
  65472. },
  65473. {
  65474. name: "Short",
  65475. height: math.unit(0.79 * 1.4, "meters")
  65476. },
  65477. {
  65478. name: "Imposing",
  65479. height: math.unit(0.79 * 2.2, "meters"),
  65480. default: true
  65481. },
  65482. {
  65483. name: "Big",
  65484. height: math.unit(0.79 * 3.8, "meters")
  65485. },
  65486. {
  65487. name: "Giant",
  65488. height: math.unit(0.79 * 6.7, "meters")
  65489. },
  65490. {
  65491. name: "Airliner",
  65492. height: math.unit(0.79 * 64, "meters")
  65493. },
  65494. {
  65495. name: "Skyscraper",
  65496. height: math.unit(0.79 * 220, "meters")
  65497. },
  65498. {
  65499. name: "Mountain",
  65500. height: math.unit(0.79 * 3.6, "km")
  65501. },
  65502. {
  65503. name: "Spacescraper",
  65504. height: math.unit(0.79 * 70, "km")
  65505. },
  65506. {
  65507. name: "Continental",
  65508. height: math.unit(0.79 * 1290, "km")
  65509. },
  65510. {
  65511. name: "Moon",
  65512. height: math.unit(0.79 * 32200, "km")
  65513. },
  65514. {
  65515. name: "Planetary",
  65516. height: math.unit(0.79 * 145000, "km")
  65517. },
  65518. {
  65519. name: "Stellar",
  65520. height: math.unit(0.79 * 19e6, "km")
  65521. },
  65522. {
  65523. name: "Solar",
  65524. height: math.unit(0.79 * 40, "AU")
  65525. },
  65526. {
  65527. name: "Intersteller",
  65528. height: math.unit(0.79 * 3, "lightyears")
  65529. },
  65530. {
  65531. name: "Star Cluster",
  65532. height: math.unit(0.79 * 80, "lightyears")
  65533. },
  65534. {
  65535. name: "Ecumenical",
  65536. height: math.unit(0.79 * 2e3, "lightyears")
  65537. },
  65538. {
  65539. name: "Galactic",
  65540. height: math.unit(0.79 * 175000, "lightyears")
  65541. },
  65542. {
  65543. name: "Galaxy Cluster",
  65544. height: math.unit(0.79 * 25e6, "lightyears")
  65545. },
  65546. ]
  65547. ))
  65548. characterMakers.push(() => makeCharacter(
  65549. { name: "Yana Amelin", species: ["russian-blue"], tags: ["anthro"] },
  65550. {
  65551. front: {
  65552. height: math.unit(6 + 2/12, "feet"),
  65553. weight: math.unit(160, "lb"),
  65554. name: "Front",
  65555. image: {
  65556. source: "./media/characters/yana-amelin/front.svg",
  65557. extra: 1413/1295,
  65558. bottom: 42/1455
  65559. }
  65560. },
  65561. back: {
  65562. height: math.unit(6 + 2/12, "feet"),
  65563. weight: math.unit(160, "lb"),
  65564. name: "Back",
  65565. image: {
  65566. source: "./media/characters/yana-amelin/back.svg",
  65567. extra: 1424/1310,
  65568. bottom: 24/1448
  65569. }
  65570. },
  65571. paws: {
  65572. height: math.unit(1.48, "feet"),
  65573. name: "Paws",
  65574. image: {
  65575. source: "./media/characters/yana-amelin/paws.svg",
  65576. extra: 304/304,
  65577. bottom: 49/353
  65578. }
  65579. },
  65580. },
  65581. [
  65582. {
  65583. name: "Micro",
  65584. height: math.unit(4, "inches")
  65585. },
  65586. {
  65587. name: "Normal",
  65588. height: math.unit(6 + 2/12, "feet"),
  65589. default: true
  65590. },
  65591. {
  65592. name: "Minimacro",
  65593. height: math.unit(20, "feet")
  65594. },
  65595. {
  65596. name: "Macro",
  65597. height: math.unit(70, "feet")
  65598. },
  65599. ]
  65600. ))
  65601. characterMakers.push(() => makeCharacter(
  65602. { name: "Titania", species: ["horse"], tags: ["anthro"] },
  65603. {
  65604. frontNsfw: {
  65605. height: math.unit(2.48, "meters"),
  65606. weight: math.unit(112, "kg"),
  65607. name: "Front (NSFW)",
  65608. image: {
  65609. source: "./media/characters/titania/front-nsfw.svg",
  65610. extra: 1302/1232,
  65611. bottom: 90/1392
  65612. }
  65613. },
  65614. backNsfw: {
  65615. height: math.unit(2.48, "meters"),
  65616. weight: math.unit(112, "kg"),
  65617. name: "Back (NSFW)",
  65618. image: {
  65619. source: "./media/characters/titania/back-nsfw.svg",
  65620. extra: 1355/1288,
  65621. bottom: 18/1373
  65622. }
  65623. },
  65624. frontSfw: {
  65625. height: math.unit(2.48, "meters"),
  65626. weight: math.unit(112, "kg"),
  65627. name: "Front (SFW)",
  65628. image: {
  65629. source: "./media/characters/titania/front-sfw.svg",
  65630. extra: 1302/1232,
  65631. bottom: 90/1392
  65632. }
  65633. },
  65634. backSfw: {
  65635. height: math.unit(2.48, "meters"),
  65636. weight: math.unit(112, "kg"),
  65637. name: "Back (SFW)",
  65638. image: {
  65639. source: "./media/characters/titania/back-sfw.svg",
  65640. extra: 1355/1288,
  65641. bottom: 18/1373
  65642. }
  65643. },
  65644. head: {
  65645. height: math.unit(2.06, "feet"),
  65646. name: "Head",
  65647. image: {
  65648. source: "./media/characters/titania/head.svg"
  65649. }
  65650. },
  65651. maw: {
  65652. height: math.unit(0.8, "feet"),
  65653. name: "Maw",
  65654. image: {
  65655. source: "./media/characters/titania/maw.svg"
  65656. }
  65657. },
  65658. foot: {
  65659. height: math.unit(1.65, "feet"),
  65660. name: "Foot",
  65661. image: {
  65662. source: "./media/characters/titania/foot.svg"
  65663. }
  65664. },
  65665. nethers: {
  65666. height: math.unit(1.7, "feet"),
  65667. name: "Nethers",
  65668. image: {
  65669. source: "./media/characters/titania/nethers.svg"
  65670. }
  65671. },
  65672. },
  65673. [
  65674. {
  65675. name: "Normal",
  65676. height: math.unit(2.48, "meters"),
  65677. default: true
  65678. },
  65679. {
  65680. name: "Mini Macro",
  65681. height: math.unit(248, "meters")
  65682. },
  65683. {
  65684. name: "Macro",
  65685. height: math.unit(620, "meters")
  65686. },
  65687. {
  65688. name: "Mega Macro",
  65689. height: math.unit(1860, "meters")
  65690. },
  65691. ]
  65692. ))
  65693. characterMakers.push(() => makeCharacter(
  65694. { name: "Tony Gray", species: ["wholphin"], tags: ["anthro"] },
  65695. {
  65696. front: {
  65697. height: math.unit(5 + 9/12, "feet"),
  65698. weight: math.unit(1500, "lb"),
  65699. name: "Front",
  65700. image: {
  65701. source: "./media/characters/tony-gray/front.svg",
  65702. extra: 700/575,
  65703. bottom: 71/771
  65704. }
  65705. },
  65706. },
  65707. [
  65708. {
  65709. name: "Normal",
  65710. height: math.unit(5 + 9/12, "feet"),
  65711. default: true
  65712. },
  65713. ]
  65714. ))
  65715. characterMakers.push(() => makeCharacter(
  65716. { name: "Kelby", species: ["sea-dragon"], tags: ["feral"] },
  65717. {
  65718. side: {
  65719. height: math.unit(8 + 2/12, "feet"),
  65720. name: "Side",
  65721. image: {
  65722. source: "./media/characters/kelby/side.svg",
  65723. extra: 804/578,
  65724. bottom: 70/874
  65725. },
  65726. form: "regular",
  65727. default: true
  65728. },
  65729. lounging: {
  65730. height: math.unit(12.41, "feet"),
  65731. name: "Lounging",
  65732. image: {
  65733. source: "./media/characters/kelby/lounging.svg"
  65734. },
  65735. form: "regular"
  65736. },
  65737. maw: {
  65738. height: math.unit(5, "feet"),
  65739. name: "Maw",
  65740. image: {
  65741. source: "./media/characters/kelby/maw.svg"
  65742. },
  65743. form: "regular"
  65744. },
  65745. dick: {
  65746. height: math.unit(2.4, "feet"),
  65747. name: "Dick",
  65748. image: {
  65749. source: "./media/characters/kelby/dick.svg"
  65750. },
  65751. form: "regular"
  65752. },
  65753. slit: {
  65754. height: math.unit(1.2, "feet"),
  65755. name: "Slit",
  65756. image: {
  65757. source: "./media/characters/kelby/slit.svg"
  65758. },
  65759. form: "regular"
  65760. },
  65761. chibi: {
  65762. height: math.unit(5, "feet"),
  65763. name: "Chibi",
  65764. image: {
  65765. source: "./media/characters/kelby/chibi.svg",
  65766. extra: 245/200,
  65767. bottom: 43/288
  65768. },
  65769. form: "chibi",
  65770. default: true
  65771. },
  65772. },
  65773. [
  65774. {
  65775. name: "Normal",
  65776. height: math.unit(8 + 2/12, "feet"),
  65777. default: true,
  65778. form: "regular"
  65779. },
  65780. {
  65781. name: "Normal",
  65782. height: math.unit(5, "feet"),
  65783. default: true,
  65784. form: "chibi"
  65785. },
  65786. ],
  65787. {
  65788. "regular": {
  65789. name: "Regular",
  65790. default: true
  65791. },
  65792. "chibi": {
  65793. name: "Chibi",
  65794. },
  65795. }
  65796. ))
  65797. characterMakers.push(() => makeCharacter(
  65798. { name: "Elisa Mitchell", species: ["brown-bear", "kaiju"], tags: ["anthro"] },
  65799. {
  65800. front: {
  65801. height: math.unit(7 + 10/12, "feet"),
  65802. weight: math.unit(300, "lb"),
  65803. name: "Front",
  65804. image: {
  65805. source: "./media/characters/elisa-mitchell/front.svg",
  65806. extra: 2562/2355,
  65807. bottom: 62/2624
  65808. }
  65809. },
  65810. maw: {
  65811. height: math.unit(2.37, "feet"),
  65812. name: "Maw",
  65813. image: {
  65814. source: "./media/characters/elisa-mitchell/maw.svg"
  65815. }
  65816. },
  65817. },
  65818. [
  65819. {
  65820. name: "Normal",
  65821. height: math.unit(7 + 10/12, "feet"),
  65822. default: true
  65823. },
  65824. {
  65825. name: "Macro",
  65826. height: math.unit(1490, "feet"),
  65827. default: true
  65828. },
  65829. ]
  65830. ))
  65831. characterMakers.push(() => makeCharacter(
  65832. { name: "Camia \"Vertigo\" Zott", species: ["vampire-bat", "kaiju"], tags: ["anthro"] },
  65833. {
  65834. front: {
  65835. height: math.unit(122, "cm"),
  65836. weight: math.unit(40, "lb"),
  65837. name: "Front",
  65838. image: {
  65839. source: "./media/characters/camia-vertigo-zott/front.svg",
  65840. extra: 2112/1902,
  65841. bottom: 21/2133
  65842. }
  65843. },
  65844. },
  65845. [
  65846. {
  65847. name: "Base Height",
  65848. height: math.unit(122, "cm")
  65849. },
  65850. {
  65851. name: "Macro Height",
  65852. height: math.unit(345, "meters"),
  65853. default: true
  65854. },
  65855. ]
  65856. ))
  65857. characterMakers.push(() => makeCharacter(
  65858. { name: "Dianne Elizabeth Heathers", species: ["saint-bernard"], tags: ["anthro"] },
  65859. {
  65860. front: {
  65861. height: math.unit(6 + 3/12, "feet"),
  65862. weight: math.unit(180, "lb"),
  65863. name: "Front",
  65864. image: {
  65865. source: "./media/characters/dianne-elizabeth-heathers/front.svg",
  65866. extra: 2580/2457,
  65867. bottom: 131/2711
  65868. }
  65869. },
  65870. },
  65871. [
  65872. {
  65873. name: "Normal",
  65874. height: math.unit(6 + 3/12, "feet"),
  65875. default: true
  65876. },
  65877. ]
  65878. ))
  65879. characterMakers.push(() => makeCharacter(
  65880. { name: "Sleeka", species: ["rat"], tags: ["anthro"] },
  65881. {
  65882. front: {
  65883. height: math.unit(165, "cm"),
  65884. weight: math.unit(130, "lb"),
  65885. name: "Front",
  65886. image: {
  65887. source: "./media/characters/sleeka/front.svg",
  65888. extra: 1252/1200,
  65889. bottom: 46/1298
  65890. }
  65891. },
  65892. },
  65893. [
  65894. {
  65895. name: "Normal",
  65896. height: math.unit(165, "cm")
  65897. },
  65898. {
  65899. name: "Galactic",
  65900. height: math.unit(5.8e22, "meters"),
  65901. default: true
  65902. },
  65903. {
  65904. name: "Universal",
  65905. height: math.unit(1.02e29, "meters")
  65906. },
  65907. ]
  65908. ))
  65909. characterMakers.push(() => makeCharacter(
  65910. { name: "Emily Whitetail", species: ["deer"], tags: ["anthro"] },
  65911. {
  65912. front: {
  65913. height: math.unit(5 + 11/12, "feet"),
  65914. weight: math.unit(145, "lb"),
  65915. name: "Front",
  65916. image: {
  65917. source: "./media/characters/emily-whitetail/front.svg",
  65918. extra: 2510/2280,
  65919. bottom: 128/2638
  65920. }
  65921. },
  65922. },
  65923. [
  65924. {
  65925. name: "Normal",
  65926. height: math.unit(5 + 11/12, "feet")
  65927. },
  65928. {
  65929. name: "Galactic",
  65930. height: math.unit(6.3e22, "meters"),
  65931. default: true
  65932. },
  65933. {
  65934. name: "Universal",
  65935. height: math.unit(1.12e29, "meters")
  65936. },
  65937. ]
  65938. ))
  65939. characterMakers.push(() => makeCharacter(
  65940. { name: "Buck Whitetail", species: ["deer"], tags: ["anthro"] },
  65941. {
  65942. front: {
  65943. height: math.unit(5 + 4/12, "feet"),
  65944. weight: math.unit(110, "lb"),
  65945. name: "Front",
  65946. image: {
  65947. source: "./media/characters/buck-whitetail/front.svg",
  65948. extra: 2430/2186,
  65949. bottom: 125/2555
  65950. }
  65951. },
  65952. },
  65953. [
  65954. {
  65955. name: "Normal",
  65956. height: math.unit(5 + 4/12, "feet")
  65957. },
  65958. {
  65959. name: "Galactic",
  65960. height: math.unit(5.4e22, "meters"),
  65961. default: true
  65962. },
  65963. {
  65964. name: "Universal",
  65965. height: math.unit(9.6e28, "meters")
  65966. },
  65967. ]
  65968. ))
  65969. characterMakers.push(() => makeCharacter(
  65970. { name: "Zoey Frisk", species: ["fox"], tags: ["anthro"] },
  65971. {
  65972. front: {
  65973. height: math.unit(5 + 3/12, "feet"),
  65974. name: "Front",
  65975. image: {
  65976. source: "./media/characters/zoey-frisk/front.svg",
  65977. extra: 2825/2646,
  65978. bottom: 57/2882
  65979. }
  65980. },
  65981. },
  65982. [
  65983. {
  65984. name: "Normal",
  65985. height: math.unit(5 + 3/12, "feet"),
  65986. default: true
  65987. },
  65988. {
  65989. name: "Macro",
  65990. height: math.unit(800, "feet")
  65991. },
  65992. ]
  65993. ))
  65994. characterMakers.push(() => makeCharacter(
  65995. { name: "Dhaeleena M'iar", species: ["siamese-cat"], tags: ["anthro"] },
  65996. {
  65997. front: {
  65998. height: math.unit(210, "cm"),
  65999. weight: math.unit(102, "kg"),
  66000. name: "Front",
  66001. image: {
  66002. source: "./media/characters/dhaeleena-m'iar/front.svg",
  66003. extra: 831/790,
  66004. bottom: 19/850
  66005. }
  66006. },
  66007. },
  66008. [
  66009. {
  66010. name: "Micro",
  66011. height: math.unit(1, "mm")
  66012. },
  66013. {
  66014. name: "Small",
  66015. height: math.unit(1, "cm")
  66016. },
  66017. {
  66018. name: "Short",
  66019. height: math.unit(1, "foot")
  66020. },
  66021. {
  66022. name: "Normal",
  66023. height: math.unit(210, "cm"),
  66024. default: true
  66025. },
  66026. {
  66027. name: "Big",
  66028. height: math.unit(15, "feet")
  66029. },
  66030. {
  66031. name: "Macro",
  66032. height: math.unit(50, "feet")
  66033. },
  66034. ]
  66035. ))
  66036. characterMakers.push(() => makeCharacter(
  66037. { name: "Trouble", species: ["wolf"], tags: ["anthro"] },
  66038. {
  66039. front: {
  66040. height: math.unit(80, "feet"),
  66041. weight: math.unit(410000, "lb"),
  66042. name: "Front",
  66043. image: {
  66044. source: "./media/characters/trouble/front.svg",
  66045. extra: 780/723,
  66046. bottom: 11/791
  66047. },
  66048. extraAttributes: {
  66049. "pawArea": {
  66050. name: "Paw Area",
  66051. power: 2,
  66052. type: "area",
  66053. base: math.unit(49, "feet^2")
  66054. },
  66055. }
  66056. },
  66057. },
  66058. [
  66059. {
  66060. name: "Normal",
  66061. height: math.unit(80, "feet"),
  66062. default: true
  66063. },
  66064. ]
  66065. ))
  66066. characterMakers.push(() => makeCharacter(
  66067. { name: "Bastion Aralus", species: ["wolf"], tags: ["anthro"] },
  66068. {
  66069. front: {
  66070. height: math.unit(5 + 7/12, "feet"),
  66071. weight: math.unit(140, "lb"),
  66072. name: "Front",
  66073. image: {
  66074. source: "./media/characters/bastion-aralus/front.svg",
  66075. extra: 1122/1045,
  66076. bottom: 24/1146
  66077. }
  66078. },
  66079. back: {
  66080. height: math.unit(5 + 7/12, "feet"),
  66081. weight: math.unit(140, "lb"),
  66082. name: "Back",
  66083. image: {
  66084. source: "./media/characters/bastion-aralus/back.svg",
  66085. extra: 1158/1078,
  66086. bottom: 39/1197
  66087. }
  66088. },
  66089. dick: {
  66090. height: math.unit(1.16, "feet"),
  66091. name: "Dick",
  66092. image: {
  66093. source: "./media/characters/bastion-aralus/dick.svg"
  66094. }
  66095. },
  66096. },
  66097. [
  66098. {
  66099. name: "Micro",
  66100. height: math.unit(1, "mm")
  66101. },
  66102. {
  66103. name: "Normal",
  66104. height: math.unit(5 + 7/12, "feet"),
  66105. default: true
  66106. },
  66107. {
  66108. name: "Macro",
  66109. height: math.unit(57, "feet")
  66110. },
  66111. ]
  66112. ))
  66113. characterMakers.push(() => makeCharacter(
  66114. { name: "Midnight Yamikidate", species: ["dragon"], tags: ["anthro"] },
  66115. {
  66116. sona_front: {
  66117. height: math.unit(6, "feet"),
  66118. weight: math.unit(350, "lb"),
  66119. name: "Front",
  66120. image: {
  66121. source: "./media/characters/midnight-yamikidate/sona-front.svg",
  66122. extra: 1099/1005,
  66123. bottom: 22/1121
  66124. },
  66125. form: "sona",
  66126. default: true
  66127. },
  66128. sona_side: {
  66129. height: math.unit(6, "feet"),
  66130. weight: math.unit(350, "lb"),
  66131. name: "Side",
  66132. image: {
  66133. source: "./media/characters/midnight-yamikidate/sona-side.svg",
  66134. extra: 1075/1017,
  66135. bottom: 20/1095
  66136. },
  66137. form: "sona",
  66138. },
  66139. character_front: {
  66140. height: math.unit(6, "feet"),
  66141. weight: math.unit(300, "lb"),
  66142. name: "Front",
  66143. image: {
  66144. source: "./media/characters/midnight-yamikidate/character-front.svg",
  66145. extra: 1099/1005,
  66146. bottom: 22/1121
  66147. },
  66148. form: "character",
  66149. default: true
  66150. },
  66151. character_side: {
  66152. height: math.unit(6, "feet"),
  66153. weight: math.unit(300, "lb"),
  66154. name: "Side",
  66155. image: {
  66156. source: "./media/characters/midnight-yamikidate/character-side.svg",
  66157. extra: 1075/1017,
  66158. bottom: 20/1095
  66159. },
  66160. form: "character",
  66161. },
  66162. },
  66163. [
  66164. {
  66165. name: "Normal",
  66166. height: math.unit(500, "feet"),
  66167. default: true,
  66168. form: "sona"
  66169. },
  66170. {
  66171. name: "Normal",
  66172. height: math.unit(50, "feet"),
  66173. default: true,
  66174. form: "character"
  66175. },
  66176. ],
  66177. {
  66178. "sona": {
  66179. name: "Sona",
  66180. default: true
  66181. },
  66182. "character": {
  66183. name: "Character",
  66184. },
  66185. }
  66186. ))
  66187. characterMakers.push(() => makeCharacter(
  66188. { name: "Hood", species: ["raptor"], tags: ["anthro"] },
  66189. {
  66190. front: {
  66191. height: math.unit(5 + 4/12, "feet"),
  66192. weight: math.unit(58, "kg"),
  66193. name: "Front",
  66194. image: {
  66195. source: "./media/characters/hood/front.svg",
  66196. extra: 1474/1309,
  66197. bottom: 0/1474
  66198. }
  66199. },
  66200. },
  66201. [
  66202. {
  66203. name: "Normal",
  66204. height: math.unit(5 + 4/12, "feet"),
  66205. default: true
  66206. },
  66207. ]
  66208. ))
  66209. characterMakers.push(() => makeCharacter(
  66210. { name: "Rena", species: ["wolf"], tags: ["anthro"] },
  66211. {
  66212. front: {
  66213. height: math.unit(8 + 2/12, "feet"),
  66214. name: "Front",
  66215. image: {
  66216. source: "./media/characters/rena/front.svg",
  66217. extra: 1768/1632,
  66218. bottom: 57/1825
  66219. }
  66220. },
  66221. },
  66222. [
  66223. {
  66224. name: "Normal",
  66225. height: math.unit(8 + 2/12, "feet"),
  66226. default: true
  66227. },
  66228. ]
  66229. ))
  66230. characterMakers.push(() => makeCharacter(
  66231. { name: "Taylor (Dilophosaurus)", species: ["dilophosaurus"], tags: ["anthro"] },
  66232. {
  66233. front: {
  66234. height: math.unit(5 + 3/12, "feet"),
  66235. name: "Front",
  66236. image: {
  66237. source: "./media/characters/taylor-dilophosaurus/front.svg",
  66238. extra: 1209/1159,
  66239. bottom: 33/1242
  66240. }
  66241. },
  66242. maw: {
  66243. height: math.unit(1.75, "feet"),
  66244. name: "Maw",
  66245. image: {
  66246. source: "./media/characters/taylor-dilophosaurus/maw.svg"
  66247. }
  66248. },
  66249. },
  66250. [
  66251. {
  66252. name: "Micro",
  66253. height: math.unit(3, "inches")
  66254. },
  66255. {
  66256. name: "Regular",
  66257. height: math.unit(5 + 3/12, "feet"),
  66258. default: true
  66259. },
  66260. {
  66261. name: "Imagined",
  66262. height: math.unit(90, "meters")
  66263. },
  66264. ]
  66265. ))
  66266. characterMakers.push(() => makeCharacter(
  66267. { name: "Suma Roo", species: ["nagainini"], tags: ["naga"] },
  66268. {
  66269. front: {
  66270. height: math.unit(11.75, "feet"),
  66271. weight: math.unit(4346, "lb"),
  66272. preyCapacity: math.unit(20, "people"),
  66273. name: "Front",
  66274. image: {
  66275. source: "./media/characters/suma-roo/front.svg",
  66276. extra: 1370/1365,
  66277. bottom: 164/1534
  66278. }
  66279. },
  66280. },
  66281. [
  66282. {
  66283. name: "Normal",
  66284. height: math.unit(11.75, "feet"),
  66285. default: true
  66286. },
  66287. ]
  66288. ))
  66289. characterMakers.push(() => makeCharacter(
  66290. { name: "Hymmanios", species: ["cat"], tags: ["anthro"] },
  66291. {
  66292. front: {
  66293. height: math.unit(2.35, "meters"),
  66294. weight: math.unit(240, "kg"),
  66295. name: "Front",
  66296. image: {
  66297. source: "./media/characters/hymmanios/front.svg",
  66298. extra: 2032/1994,
  66299. bottom: 194/2226
  66300. }
  66301. },
  66302. },
  66303. [
  66304. {
  66305. name: "Normal",
  66306. height: math.unit(2.35, "meters"),
  66307. default: true
  66308. },
  66309. {
  66310. name: "Macro",
  66311. height: math.unit(75, "meters")
  66312. },
  66313. {
  66314. name: "Mega",
  66315. height: math.unit(1250, "meters")
  66316. },
  66317. {
  66318. name: "Giga",
  66319. height: math.unit(235000, "meters")
  66320. },
  66321. ]
  66322. ))
  66323. characterMakers.push(() => makeCharacter(
  66324. { name: "Azalea", species: ["kaizleon"], tags: ["anthro"] },
  66325. {
  66326. front: {
  66327. height: math.unit(134, "feet"),
  66328. weight: math.unit(932.635, "tons"),
  66329. name: "Front",
  66330. image: {
  66331. source: "./media/characters/azalea/front.svg",
  66332. extra: 703/687,
  66333. bottom: 75/778
  66334. }
  66335. },
  66336. },
  66337. [
  66338. {
  66339. name: "Normal",
  66340. height: math.unit(134, "feet"),
  66341. default: true
  66342. },
  66343. ]
  66344. ))
  66345. characterMakers.push(() => makeCharacter(
  66346. { name: "Lizzy", species: ["otter"], tags: ["anthro"] },
  66347. {
  66348. front: {
  66349. height: math.unit(6.4, "feet"),
  66350. weight: math.unit(167.5, "lb"),
  66351. name: "Front",
  66352. image: {
  66353. source: "./media/characters/lizzy/front.svg",
  66354. extra: 1916/1791,
  66355. bottom: 103/2019
  66356. }
  66357. },
  66358. back: {
  66359. height: math.unit(6.4, "feet"),
  66360. weight: math.unit(167.5, "lb"),
  66361. name: "Back",
  66362. image: {
  66363. source: "./media/characters/lizzy/back.svg",
  66364. extra: 1995/1856,
  66365. bottom: 11/2006
  66366. }
  66367. },
  66368. },
  66369. [
  66370. {
  66371. name: "Normal",
  66372. height: math.unit(6.4, "feet"),
  66373. default: true
  66374. },
  66375. ]
  66376. ))
  66377. characterMakers.push(() => makeCharacter(
  66378. { name: "Sasha", species: ["bat"], tags: ["anthro"] },
  66379. {
  66380. front: {
  66381. height: math.unit(66, "inches"),
  66382. name: "Front",
  66383. image: {
  66384. source: "./media/characters/sasha/front.svg",
  66385. extra: 620/571,
  66386. bottom: 33/653
  66387. }
  66388. },
  66389. back: {
  66390. height: math.unit(66, "inches"),
  66391. name: "Back",
  66392. image: {
  66393. source: "./media/characters/sasha/back.svg",
  66394. extra: 615/564,
  66395. bottom: 38/653
  66396. }
  66397. },
  66398. },
  66399. [
  66400. {
  66401. name: "IRL",
  66402. height: math.unit(2, "inches")
  66403. },
  66404. {
  66405. name: "Normal",
  66406. height: math.unit(66, "inches"),
  66407. default: true
  66408. },
  66409. {
  66410. name: "Macro",
  66411. height: math.unit(400, "feet")
  66412. },
  66413. {
  66414. name: "Mega Macro",
  66415. height: math.unit(500000, "feet")
  66416. },
  66417. {
  66418. name: "Giga Macro",
  66419. height: math.unit(50000, "miles")
  66420. },
  66421. ]
  66422. ))
  66423. characterMakers.push(() => makeCharacter(
  66424. { name: "Autumn (Avali)", species: ["avali"], tags: ["anthro"] },
  66425. {
  66426. front: {
  66427. height: math.unit(52, "inches"),
  66428. name: "Front",
  66429. image: {
  66430. source: "./media/characters/autumn-avali/front.svg",
  66431. extra: 1031/908,
  66432. bottom: 38/1069
  66433. }
  66434. },
  66435. back: {
  66436. height: math.unit(52, "inches"),
  66437. name: "Back",
  66438. image: {
  66439. source: "./media/characters/autumn-avali/back.svg",
  66440. extra: 1047/923,
  66441. bottom: 11/1058
  66442. }
  66443. },
  66444. maw: {
  66445. height: math.unit(0.59, "feet"),
  66446. name: "Maw",
  66447. image: {
  66448. source: "./media/characters/autumn-avali/maw.svg"
  66449. }
  66450. },
  66451. },
  66452. [
  66453. {
  66454. name: "Normal",
  66455. height: math.unit(52, "inches"),
  66456. default: true
  66457. },
  66458. {
  66459. name: "Big'vali",
  66460. height: math.unit(3.5, "meters")
  66461. },
  66462. {
  66463. name: "Macro",
  66464. height: math.unit(35, "meters")
  66465. },
  66466. {
  66467. name: "Macro+",
  66468. height: math.unit(165, "meters")
  66469. },
  66470. {
  66471. name: "Megamacro",
  66472. height: math.unit(8250, "meters")
  66473. },
  66474. {
  66475. name: "Megamacro+",
  66476. height: math.unit(88000, "meters")
  66477. },
  66478. {
  66479. name: "Gigamacro",
  66480. height: math.unit(1.32, "megameters")
  66481. },
  66482. {
  66483. name: "Planet Cracker",
  66484. height: math.unit(77, "megameters")
  66485. },
  66486. ]
  66487. ))
  66488. characterMakers.push(() => makeCharacter(
  66489. { name: "Sophie", species: ["cow"], tags: ["anthro"] },
  66490. {
  66491. front: {
  66492. height: math.unit(200, "feet"),
  66493. name: "Front",
  66494. image: {
  66495. source: "./media/characters/sophie/front.svg",
  66496. extra: 710/680,
  66497. bottom: 3/713
  66498. },
  66499. extraAttributes: {
  66500. "milkProduction": {
  66501. name: "Milk Production",
  66502. power: 3,
  66503. type: "volume",
  66504. base: math.unit(27000, "liters")
  66505. },
  66506. }
  66507. },
  66508. },
  66509. [
  66510. {
  66511. name: "Normal",
  66512. height: math.unit(200, "feet"),
  66513. default: true
  66514. },
  66515. ]
  66516. ))
  66517. characterMakers.push(() => makeCharacter(
  66518. { name: "Adelaide (Spireborn)", species: ["spireborn"], tags: ["anthro"] },
  66519. {
  66520. front: {
  66521. height: math.unit(23, "feet"),
  66522. name: "Front",
  66523. image: {
  66524. source: "./media/characters/adelaide-spireborn/front.svg",
  66525. extra: 671/625,
  66526. bottom: 18/689
  66527. }
  66528. },
  66529. maw: {
  66530. height: math.unit(7.8, "feet"),
  66531. name: "Maw",
  66532. image: {
  66533. source: "./media/characters/adelaide-spireborn/maw.svg"
  66534. }
  66535. },
  66536. sword: {
  66537. height: math.unit(13.4, "feet"),
  66538. name: "Sword",
  66539. image: {
  66540. source: "./media/characters/adelaide-spireborn/sword.svg"
  66541. }
  66542. },
  66543. },
  66544. [
  66545. {
  66546. name: "Magically Induced",
  66547. height: math.unit(8.5, "feet")
  66548. },
  66549. {
  66550. name: "Normal",
  66551. height: math.unit(23, "feet"),
  66552. default: true
  66553. },
  66554. ]
  66555. ))
  66556. characterMakers.push(() => makeCharacter(
  66557. { name: "Artemus", species: ["zorgoia"], tags: ["feral"] },
  66558. {
  66559. side: {
  66560. height: math.unit(8, "feet"),
  66561. name: "Side",
  66562. image: {
  66563. source: "./media/characters/artemus/side.svg",
  66564. extra: 800/397,
  66565. bottom: 83/883
  66566. }
  66567. },
  66568. front: {
  66569. height: math.unit(8, "feet"),
  66570. name: "Front",
  66571. image: {
  66572. source: "./media/characters/artemus/front.svg",
  66573. extra: 763/348,
  66574. bottom: 89/852
  66575. }
  66576. },
  66577. maw: {
  66578. height: math.unit(5.63, "feet"),
  66579. name: "Maw",
  66580. image: {
  66581. source: "./media/characters/artemus/maw.svg"
  66582. }
  66583. },
  66584. forepaw: {
  66585. height: math.unit(3.13, "feet"),
  66586. name: "Forepaw",
  66587. image: {
  66588. source: "./media/characters/artemus/forepaw.svg"
  66589. }
  66590. },
  66591. hindpaw: {
  66592. height: math.unit(4.85, "feet"),
  66593. name: "Hindpaw",
  66594. image: {
  66595. source: "./media/characters/artemus/hindpaw.svg"
  66596. }
  66597. },
  66598. },
  66599. [
  66600. {
  66601. name: "Normal",
  66602. height: math.unit(8, "feet"),
  66603. default: true
  66604. },
  66605. ]
  66606. ))
  66607. characterMakers.push(() => makeCharacter(
  66608. { name: "Flynn", species: ["cross-fox"], tags: ["anthro"] },
  66609. {
  66610. front: {
  66611. height: math.unit(4, "feet"),
  66612. name: "Front",
  66613. image: {
  66614. source: "./media/characters/flynn/front.svg",
  66615. extra: 427/404,
  66616. bottom: 14/441
  66617. },
  66618. extraAttributes: {
  66619. "tailLength": {
  66620. name: "Tail Length",
  66621. power: 1,
  66622. type: "length",
  66623. base: math.unit(2.7, "feet")
  66624. },
  66625. }
  66626. },
  66627. frontNsfw: {
  66628. height: math.unit(4, "feet"),
  66629. name: "Front NSFW",
  66630. image: {
  66631. source: "./media/characters/flynn/front-nsfw.svg",
  66632. extra: 427/404,
  66633. bottom: 14/441
  66634. },
  66635. extraAttributes: {
  66636. "tailLength": {
  66637. name: "Tail Length",
  66638. power: 1,
  66639. type: "length",
  66640. base: math.unit(2.7, "feet")
  66641. },
  66642. "dickLength": {
  66643. name: "Dick Length",
  66644. power: 1,
  66645. type: "length",
  66646. base: math.unit(0.7, "feet")
  66647. },
  66648. }
  66649. },
  66650. back: {
  66651. height: math.unit(4, "feet"),
  66652. name: "Back",
  66653. image: {
  66654. source: "./media/characters/flynn/back.svg",
  66655. extra: 420/400,
  66656. bottom: 12/432
  66657. },
  66658. extraAttributes: {
  66659. "tailLength": {
  66660. name: "Tail Length",
  66661. power: 1,
  66662. type: "length",
  66663. base: math.unit(2.7, "feet")
  66664. },
  66665. }
  66666. },
  66667. },
  66668. [
  66669. {
  66670. name: "Normal",
  66671. height: math.unit(4, "feet"),
  66672. default: true
  66673. },
  66674. ]
  66675. ))
  66676. characterMakers.push(() => makeCharacter(
  66677. { name: "Orun", species: ["sabertooth-tiger"], tags: ["anthro"] },
  66678. {
  66679. frontSfw: {
  66680. height: math.unit(1.9, "meters"),
  66681. name: "Front (SFW)",
  66682. image: {
  66683. source: "./media/characters/orun/front-sfw.svg",
  66684. extra: 1684/1625,
  66685. bottom: 64/1748
  66686. }
  66687. },
  66688. frontNsfw: {
  66689. height: math.unit(1.9, "meters"),
  66690. name: "Front (NSFW)",
  66691. image: {
  66692. source: "./media/characters/orun/front-nsfw.svg",
  66693. extra: 1684/1625,
  66694. bottom: 64/1748
  66695. }
  66696. },
  66697. frontErect: {
  66698. height: math.unit(1.9, "meters"),
  66699. name: "Front (Erect)",
  66700. image: {
  66701. source: "./media/characters/orun/front-erect.svg",
  66702. extra: 1684/1625,
  66703. bottom: 64/1748
  66704. }
  66705. },
  66706. },
  66707. [
  66708. {
  66709. name: "Normal",
  66710. height: math.unit(1.9, "meters"),
  66711. default: true
  66712. },
  66713. {
  66714. name: "Giant",
  66715. height: math.unit(45, "meters")
  66716. },
  66717. {
  66718. name: "Bigger Giant",
  66719. height: math.unit(155, "meters")
  66720. },
  66721. {
  66722. name: "Macro",
  66723. height: math.unit(550, "meters")
  66724. },
  66725. {
  66726. name: "Bigger Macro",
  66727. height: math.unit(1050, "meters")
  66728. },
  66729. {
  66730. name: "Titan",
  66731. height: math.unit(5, "km")
  66732. },
  66733. {
  66734. name: "Bigger Titan",
  66735. height: math.unit(15, "km")
  66736. },
  66737. ]
  66738. ))
  66739. characterMakers.push(() => makeCharacter(
  66740. { name: "Catherine Busch", species: ["arctic-fox"], tags: ["anthro"] },
  66741. {
  66742. clothed: {
  66743. height: math.unit(5 + 6/12, "feet"),
  66744. name: "Clothed",
  66745. image: {
  66746. source: "./media/characters/catherine-busch/clothed.svg",
  66747. extra: 1330/1273,
  66748. bottom: 45/1375
  66749. }
  66750. },
  66751. nude: {
  66752. height: math.unit(5 + 6/12, "feet"),
  66753. name: "Nude",
  66754. image: {
  66755. source: "./media/characters/catherine-busch/nude.svg",
  66756. extra: 1330/1273,
  66757. bottom: 45/1375
  66758. }
  66759. },
  66760. },
  66761. [
  66762. {
  66763. name: "Normal",
  66764. height: math.unit(5 + 6/12, "feet"),
  66765. default: true
  66766. },
  66767. {
  66768. name: "Maximum",
  66769. height: math.unit(1644, "feet")
  66770. },
  66771. ]
  66772. ))
  66773. characterMakers.push(() => makeCharacter(
  66774. { name: "Carter", species: ["cross-fox"], tags: ["anthro"] },
  66775. {
  66776. front: {
  66777. height: math.unit(5 + 4/12, "feet"),
  66778. weight: math.unit(160, "lb"),
  66779. name: "Front",
  66780. image: {
  66781. source: "./media/characters/carter/front.svg",
  66782. extra: 1007/940,
  66783. bottom: 37/1044
  66784. }
  66785. },
  66786. back: {
  66787. height: math.unit(5 + 4/12, "feet"),
  66788. weight: math.unit(160, "lb"),
  66789. name: "Back",
  66790. image: {
  66791. source: "./media/characters/carter/back.svg",
  66792. extra: 1010/941,
  66793. bottom: 25/1035
  66794. }
  66795. },
  66796. frontErect: {
  66797. height: math.unit(5 + 4/12, "feet"),
  66798. weight: math.unit(160, "lb"),
  66799. name: "Front (Erect)",
  66800. image: {
  66801. source: "./media/characters/carter/front-erect.svg",
  66802. extra: 1015/948,
  66803. bottom: 33/1048
  66804. }
  66805. },
  66806. },
  66807. [
  66808. {
  66809. name: "Normal",
  66810. height: math.unit(5 + 4/12, "feet"),
  66811. default: true
  66812. },
  66813. ]
  66814. ))
  66815. characterMakers.push(() => makeCharacter(
  66816. { name: "Yula", species: ["german-shepherd"], tags: ["anthro"] },
  66817. {
  66818. front: {
  66819. height: math.unit(90, "feet"),
  66820. name: "Front",
  66821. image: {
  66822. source: "./media/characters/yula/front.svg",
  66823. extra: 686/641,
  66824. bottom: 5/691
  66825. }
  66826. },
  66827. },
  66828. [
  66829. {
  66830. name: "Normal",
  66831. height: math.unit(90, "feet"),
  66832. default: true
  66833. },
  66834. ]
  66835. ))
  66836. characterMakers.push(() => makeCharacter(
  66837. { name: "Thomas Bakes", species: ["dutch-angel-dragon"], tags: ["anthro"] },
  66838. {
  66839. front: {
  66840. height: math.unit(2.16, "meters"),
  66841. weight: math.unit(275, "kg"),
  66842. name: "Front",
  66843. image: {
  66844. source: "./media/characters/thomas-bakes/front.svg",
  66845. extra: 333/283,
  66846. bottom: 46/379
  66847. },
  66848. extraAttributes: {
  66849. "pawLength": {
  66850. name: "Paw Length",
  66851. power: 1,
  66852. type: "length",
  66853. base: math.unit(35, "cm")
  66854. },
  66855. "pawWidth": {
  66856. name: "Paw Width",
  66857. power: 1,
  66858. type: "length",
  66859. base: math.unit(30, "cm")
  66860. },
  66861. "handLength": {
  66862. name: "Hand Length",
  66863. power: 1,
  66864. type: "length",
  66865. base: math.unit(30, "cm")
  66866. },
  66867. "handWidth": {
  66868. name: "Hand Width",
  66869. power: 1,
  66870. type: "length",
  66871. base: math.unit(25, "cm")
  66872. },
  66873. "preyCapacity": {
  66874. name: "Prey Capacity",
  66875. power: 3,
  66876. type: "volume",
  66877. base: math.unit(40*20*20, "cm^3")
  66878. },
  66879. "swallowSize": {
  66880. name: "Swallow Size",
  66881. power: 1,
  66882. type: "length",
  66883. base: math.unit(13, "cm")
  66884. },
  66885. "energyIntake": {
  66886. name: "Food Intake",
  66887. power: 3,
  66888. type: "energy",
  66889. base: math.unit(3250, "kcal")
  66890. },
  66891. "wingspan": {
  66892. name: "Wingspan",
  66893. power: 1,
  66894. type: "length",
  66895. base: math.unit(3.7, "meters")
  66896. },
  66897. "wingWidth": {
  66898. name: "Wing Width",
  66899. power: 1,
  66900. type: "length",
  66901. base: math.unit(1.7, "meters")
  66902. },
  66903. }
  66904. },
  66905. },
  66906. [
  66907. {
  66908. name: "Normal",
  66909. height: math.unit(2.16, "meters"),
  66910. default: true
  66911. },
  66912. ]
  66913. ))
  66914. characterMakers.push(() => makeCharacter(
  66915. { name: "Rekka", species: ["kaiju", "hyena"], tags: ["anthro"] },
  66916. {
  66917. front: {
  66918. height: math.unit(8 + 6/12, "feet"),
  66919. weight: math.unit(600, "lb"),
  66920. name: "Front",
  66921. image: {
  66922. source: "./media/characters/rekka/front.svg",
  66923. extra: 1814/1672,
  66924. bottom: 92/1906
  66925. }
  66926. },
  66927. back: {
  66928. height: math.unit(8 + 6/12, "feet"),
  66929. weight: math.unit(600, "lb"),
  66930. name: "Back",
  66931. image: {
  66932. source: "./media/characters/rekka/back.svg",
  66933. extra: 1795/1682,
  66934. bottom: 86/1881
  66935. }
  66936. },
  66937. },
  66938. [
  66939. {
  66940. name: "Normal",
  66941. height: math.unit(8 + 6/12, "feet"),
  66942. default: true
  66943. },
  66944. {
  66945. name: "Category 1",
  66946. height: math.unit(30, "feet")
  66947. },
  66948. {
  66949. name: "Category 2",
  66950. height: math.unit(150, "feet")
  66951. },
  66952. {
  66953. name: "Category 3",
  66954. height: math.unit(300, "feet")
  66955. },
  66956. {
  66957. name: "Category 4",
  66958. height: math.unit(550, "feet")
  66959. },
  66960. ]
  66961. ))
  66962. characterMakers.push(() => makeCharacter(
  66963. { name: "Zeke", species: ["german-shepherd"], tags: ["anthro"] },
  66964. {
  66965. front: {
  66966. height: math.unit(5 + 8/12, "feet"),
  66967. weight: math.unit(180, "lb"),
  66968. name: "Front",
  66969. image: {
  66970. source: "./media/characters/zeke/front.svg",
  66971. extra: 452/417,
  66972. bottom: 21/473
  66973. }
  66974. },
  66975. back: {
  66976. height: math.unit(5 + 8/12, "feet"),
  66977. weight: math.unit(180, "lb"),
  66978. name: "Back",
  66979. image: {
  66980. source: "./media/characters/zeke/back.svg",
  66981. extra: 473/444,
  66982. bottom: 8/481
  66983. }
  66984. },
  66985. frontNsfw: {
  66986. height: math.unit(5 + 8/12, "feet"),
  66987. weight: math.unit(180, "lb"),
  66988. name: "Front (NSFW)",
  66989. image: {
  66990. source: "./media/characters/zeke/front-nsfw.svg",
  66991. extra: 452/417,
  66992. bottom: 21/473
  66993. }
  66994. },
  66995. backNsfw: {
  66996. height: math.unit(5 + 8/12, "feet"),
  66997. weight: math.unit(180, "lb"),
  66998. name: "Back (NSFW)",
  66999. image: {
  67000. source: "./media/characters/zeke/back-nsfw.svg",
  67001. extra: 473/444,
  67002. bottom: 8/481
  67003. }
  67004. },
  67005. frontErect: {
  67006. height: math.unit(5 + 8/12, "feet"),
  67007. weight: math.unit(180, "lb"),
  67008. name: "Front (Erect)",
  67009. image: {
  67010. source: "./media/characters/zeke/front-erect.svg",
  67011. extra: 452/417,
  67012. bottom: 21/473
  67013. }
  67014. },
  67015. },
  67016. [
  67017. {
  67018. name: "Normal",
  67019. height: math.unit(5 + 8/12, "feet"),
  67020. default: true
  67021. },
  67022. {
  67023. name: "Kaiju",
  67024. height: math.unit((5 + 8/12) * 54.6087, "feet")
  67025. },
  67026. {
  67027. name: "Pez Humans",
  67028. height: math.unit((5 + 8/12) * 121.92, "feet")
  67029. },
  67030. {
  67031. name: "Pez Buses",
  67032. height: math.unit((5 + 8/12) * 796.67, "feet")
  67033. },
  67034. {
  67035. name: "Pez Planes",
  67036. height: math.unit((5 + 8/12) * 5086.6, "feet")
  67037. },
  67038. {
  67039. name: "Pez Khalifa",
  67040. height: math.unit((5 + 8/12) * 55320, "feet")
  67041. },
  67042. ]
  67043. ))
  67044. characterMakers.push(() => makeCharacter(
  67045. { name: "Adalwen", species: ["german-shepherd"], tags: ["anthro"] },
  67046. {
  67047. frontSfw: {
  67048. height: math.unit(2.2, "meters"),
  67049. name: "Front (SFW)",
  67050. image: {
  67051. source: "./media/characters/adalwen/front-sfw.svg",
  67052. extra: 1654/1574,
  67053. bottom: 107/1761
  67054. }
  67055. },
  67056. frontNsfw: {
  67057. height: math.unit(2.2, "meters"),
  67058. name: "Front (NSFW)",
  67059. image: {
  67060. source: "./media/characters/adalwen/front-nsfw.svg",
  67061. extra: 1654/1574,
  67062. bottom: 107/1761
  67063. }
  67064. },
  67065. frontErect: {
  67066. height: math.unit(2.2, "meters"),
  67067. name: "Front (Erect)",
  67068. image: {
  67069. source: "./media/characters/adalwen/front-erect.svg",
  67070. extra: 1654/1574,
  67071. bottom: 107/1761
  67072. }
  67073. },
  67074. },
  67075. [
  67076. {
  67077. name: "Normal",
  67078. height: math.unit(2.2, "meters"),
  67079. default: true
  67080. },
  67081. {
  67082. name: "Giant",
  67083. height: math.unit(55, "meters")
  67084. },
  67085. {
  67086. name: "Bigger Giant",
  67087. height: math.unit(200, "meters")
  67088. },
  67089. {
  67090. name: "Macro",
  67091. height: math.unit(650, "meters")
  67092. },
  67093. {
  67094. name: "Bigger Macro",
  67095. height: math.unit(1300, "meters")
  67096. },
  67097. {
  67098. name: "Titan",
  67099. height: math.unit(5500, "meters")
  67100. },
  67101. {
  67102. name: "Titan 2",
  67103. height: math.unit(17, "km")
  67104. },
  67105. {
  67106. name: "Titan 3",
  67107. height: math.unit(125, "km")
  67108. },
  67109. {
  67110. name: "Titan 4",
  67111. height: math.unit(1500, "km")
  67112. },
  67113. {
  67114. name: "Titan 5",
  67115. height: math.unit(55000, "km")
  67116. },
  67117. ]
  67118. ))
  67119. characterMakers.push(() => makeCharacter(
  67120. { name: "Alexio", species: ["lemur"], tags: ["anthro"] },
  67121. {
  67122. front: {
  67123. height: math.unit(1.91, "meters"),
  67124. weight: math.unit(76, "kg"),
  67125. name: "Front",
  67126. image: {
  67127. source: "./media/characters/alexio/front.svg",
  67128. extra: 1440/1376,
  67129. bottom: 141/1581
  67130. }
  67131. },
  67132. back: {
  67133. height: math.unit(1.91, "meters"),
  67134. weight: math.unit(76, "kg"),
  67135. name: "Back",
  67136. image: {
  67137. source: "./media/characters/alexio/back.svg",
  67138. extra: 1448/1388,
  67139. bottom: 57/1505
  67140. }
  67141. },
  67142. head: {
  67143. height: math.unit(1.17, "feet"),
  67144. name: "Head",
  67145. image: {
  67146. source: "./media/characters/alexio/head.svg"
  67147. }
  67148. },
  67149. maw: {
  67150. height: math.unit(0.6, "feet"),
  67151. name: "Maw",
  67152. image: {
  67153. source: "./media/characters/alexio/maw.svg"
  67154. }
  67155. },
  67156. feet: {
  67157. height: math.unit(1.34, "feet"),
  67158. name: "Feet",
  67159. image: {
  67160. source: "./media/characters/alexio/feet.svg"
  67161. }
  67162. },
  67163. genitals: {
  67164. height: math.unit(1.03, "feet"),
  67165. name: "Genitals",
  67166. image: {
  67167. source: "./media/characters/alexio/genitals.svg"
  67168. }
  67169. },
  67170. },
  67171. [
  67172. {
  67173. name: "Normal",
  67174. height: math.unit(1.91, "meters"),
  67175. default: true
  67176. },
  67177. {
  67178. name: "Minimacro",
  67179. height: math.unit(191, "meters")
  67180. },
  67181. {
  67182. name: "Macro",
  67183. height: math.unit(477.5, "meters")
  67184. },
  67185. {
  67186. name: "Mega Macro",
  67187. height: math.unit(1432.5, "meters")
  67188. },
  67189. ]
  67190. ))
  67191. characterMakers.push(() => makeCharacter(
  67192. { name: "Quake Lee", species: ["red-fox"], tags: ["anthro"] },
  67193. {
  67194. front: {
  67195. height: math.unit(5 + 2/12, "feet"),
  67196. weight: math.unit(110, "lb"),
  67197. name: "Front",
  67198. image: {
  67199. source: "./media/characters/quake-lee/front.svg",
  67200. extra: 1376/1295,
  67201. bottom: 69/1445
  67202. }
  67203. },
  67204. paw: {
  67205. height: math.unit(0.786, "feet"),
  67206. name: "Paw",
  67207. image: {
  67208. source: "./media/characters/quake-lee/paw.svg"
  67209. }
  67210. },
  67211. },
  67212. [
  67213. {
  67214. name: "Avey",
  67215. height: math.unit(5 + 2/12, "feet"),
  67216. default: true
  67217. },
  67218. {
  67219. name: "Macro",
  67220. height: math.unit(146, "feet")
  67221. },
  67222. {
  67223. name: "Mega",
  67224. height: math.unit(7, "miles")
  67225. },
  67226. {
  67227. name: "Ultra",
  67228. height: math.unit(1.6, "gigameters")
  67229. },
  67230. ]
  67231. ))
  67232. characterMakers.push(() => makeCharacter(
  67233. { name: "Wolf", species: ["wolf"], tags: ["feral"] },
  67234. {
  67235. side: {
  67236. height: math.unit(40, "inches"),
  67237. weight: math.unit(200, "lb"),
  67238. preyCapacity: math.unit(2, "people"),
  67239. name: "Side",
  67240. image: {
  67241. source: "./media/characters/wolf/side.svg",
  67242. extra: 432/345,
  67243. bottom: 15/447
  67244. }
  67245. },
  67246. front: {
  67247. height: math.unit(40, "inches"),
  67248. weight: math.unit(200, "lb"),
  67249. preyCapacity: math.unit(2, "people"),
  67250. name: "Front",
  67251. image: {
  67252. source: "./media/characters/wolf/front.svg",
  67253. extra: 803/467,
  67254. bottom: 97/900
  67255. }
  67256. },
  67257. },
  67258. [
  67259. {
  67260. name: "Small",
  67261. height: math.unit(40, "inches"),
  67262. default: true
  67263. },
  67264. {
  67265. name: "Medium",
  67266. height: math.unit(60, "inches")
  67267. },
  67268. {
  67269. name: "Large",
  67270. height: math.unit(110, "inches")
  67271. },
  67272. ]
  67273. ))
  67274. characterMakers.push(() => makeCharacter(
  67275. { name: "Cherry Spark", species: ["cheetah", "deity"], tags: ["feral"] },
  67276. {
  67277. sphinx_side: {
  67278. height: math.unit(64.7, "feet"),
  67279. weight: math.unit(150265, "lb"),
  67280. name: "Side",
  67281. image: {
  67282. source: "./media/characters/cherry-spark/sphinx-side.svg",
  67283. extra: 410/299,
  67284. bottom: 7/417
  67285. },
  67286. form: "sphinx",
  67287. default: true
  67288. },
  67289. sphinx_cooch: {
  67290. height: math.unit(57, "feet"),
  67291. name: "Cooch",
  67292. image: {
  67293. source: "./media/characters/cherry-spark/sphinx-cooch.svg"
  67294. },
  67295. form: "sphinx",
  67296. },
  67297. },
  67298. [
  67299. {
  67300. name: "Macro",
  67301. height: math.unit(64.7, "feet"),
  67302. default: true,
  67303. form: "sphinx"
  67304. },
  67305. ],
  67306. {
  67307. "sphinx": {
  67308. name: "Sphinx",
  67309. default: true
  67310. },
  67311. }
  67312. ))
  67313. characterMakers.push(() => makeCharacter(
  67314. { name: "Jaanada Palzathan", species: ["dragon"], tags: ["anthro"] },
  67315. {
  67316. front: {
  67317. height: math.unit(100, "meters"),
  67318. weight: math.unit(12700, "tonnes"),
  67319. name: "Front",
  67320. image: {
  67321. source: "./media/characters/jaanada-palzathan/front.svg",
  67322. extra: 691/652,
  67323. bottom: 13/704
  67324. }
  67325. },
  67326. },
  67327. [
  67328. {
  67329. name: "Giant 1",
  67330. height: math.unit(2.62, "meters")
  67331. },
  67332. {
  67333. name: "Giant 2",
  67334. height: math.unit(4.14, "meters")
  67335. },
  67336. {
  67337. name: "Macro 1",
  67338. height: math.unit(38.4, "meters")
  67339. },
  67340. {
  67341. name: "Macro 2",
  67342. height: math.unit(100, "meters"),
  67343. default: true
  67344. },
  67345. {
  67346. name: "Macro 3",
  67347. height: math.unit(1800, "meters")
  67348. },
  67349. ]
  67350. ))
  67351. characterMakers.push(() => makeCharacter(
  67352. { name: "William Tudor", species: ["kitsune"], tags: ["anthro"] },
  67353. {
  67354. front: {
  67355. height: math.unit(6 + 6/12, "feet"),
  67356. weight: math.unit(205, "lb"),
  67357. name: "Front",
  67358. image: {
  67359. source: "./media/characters/william-tudor/front.svg",
  67360. extra: 1865/1701,
  67361. bottom: 91/1956
  67362. },
  67363. extraAttributes: {
  67364. "tailLength": {
  67365. name: "Tail Length",
  67366. power: 1,
  67367. type: "length",
  67368. base: math.unit(3, "feet")
  67369. },
  67370. }
  67371. },
  67372. back: {
  67373. height: math.unit(6 + 6/12, "feet"),
  67374. weight: math.unit(205, "lb"),
  67375. name: "Back",
  67376. image: {
  67377. source: "./media/characters/william-tudor/back.svg",
  67378. extra: 1911/1731,
  67379. bottom: 19/1930
  67380. },
  67381. extraAttributes: {
  67382. "tailLength": {
  67383. name: "Tail Length",
  67384. power: 1,
  67385. type: "length",
  67386. base: math.unit(3, "feet")
  67387. },
  67388. }
  67389. },
  67390. head: {
  67391. height: math.unit(1.9, "feet"),
  67392. name: "Head",
  67393. image: {
  67394. source: "./media/characters/william-tudor/head.svg"
  67395. }
  67396. },
  67397. },
  67398. [
  67399. {
  67400. name: "Tiny",
  67401. height: math.unit(1, "inches")
  67402. },
  67403. {
  67404. name: "Micro",
  67405. height: math.unit(6, "inches")
  67406. },
  67407. {
  67408. name: "Normal",
  67409. height: math.unit(6 + 6/12, "feet"),
  67410. default: true
  67411. },
  67412. {
  67413. name: "Giant",
  67414. height: math.unit(15, "feet")
  67415. },
  67416. {
  67417. name: "Massive",
  67418. height: math.unit(100, "feet")
  67419. },
  67420. {
  67421. name: "Titanic",
  67422. height: math.unit(1, "mile")
  67423. },
  67424. ]
  67425. ))
  67426. characterMakers.push(() => makeCharacter(
  67427. { name: "Bisset", species: ["dragon"], tags: ["feral"] },
  67428. {
  67429. side: {
  67430. height: math.unit(7, "feet"),
  67431. name: "Side",
  67432. image: {
  67433. source: "./media/characters/bisset/side.svg",
  67434. extra: 1047/527,
  67435. bottom: 65/1112
  67436. }
  67437. },
  67438. },
  67439. [
  67440. {
  67441. name: "Normal",
  67442. height: math.unit(7, "feet"),
  67443. default: true
  67444. },
  67445. ]
  67446. ))
  67447. //characters
  67448. function makeCharacters() {
  67449. const results = [];
  67450. characterMakers.forEach(character => {
  67451. results.push(character());
  67452. });
  67453. return results;
  67454. }