less copy protection, more size visualization
Você não pode selecionar mais de 25 tópicos Os tópicos devem começar com uma letra ou um número, podem incluir traços ('-') e podem ter até 35 caracteres.
 
 
 

65213 linhas
1.6 MiB

  1. const characterMakers = [];
  2. function makeCharacter(info, viewInfo, defaultSizes, forms) {
  3. views = {};
  4. Object.entries(viewInfo).forEach(([key, value]) => {
  5. views[key] = {
  6. attributes: {
  7. height: {
  8. name: "Height",
  9. power: 1,
  10. type: "length",
  11. base: value.height
  12. }
  13. },
  14. image: value.image,
  15. form: value.form,
  16. name: value.name,
  17. info: value.info,
  18. rename: value.rename,
  19. default: value.default
  20. }
  21. if (value.weight) {
  22. views[key].attributes.weight = {
  23. name: "Mass",
  24. power: 3,
  25. type: "mass",
  26. base: value.weight
  27. };
  28. }
  29. if (value.volume) {
  30. views[key].attributes.volume = {
  31. name: "Volume",
  32. power: 3,
  33. type: "volume",
  34. base: value.volume
  35. };
  36. }
  37. if (value.capacity) {
  38. views[key].attributes.capacity = {
  39. name: "Capacity",
  40. power: 3,
  41. type: "volume",
  42. base: value.capacity
  43. }
  44. }
  45. if (value.preyCapacity) {
  46. views[key].attributes.preyCapacity = {
  47. name: "Prey Capacity",
  48. power: 3,
  49. type: "volume",
  50. base: value.preyCapacity,
  51. defaultUnit: "people"
  52. }
  53. }
  54. if (value.energyNeed) {
  55. views[key].attributes.capacity = {
  56. name: "Food Intake",
  57. power: 3 * 3 / 4,
  58. type: "energy",
  59. base: value.energyNeed
  60. }
  61. }
  62. if (value.extraAttributes) {
  63. Object.entries(value.extraAttributes).forEach(([attrKey, attrValue]) => {
  64. views[key].attributes[attrKey] = attrValue
  65. })
  66. }
  67. });
  68. return createEntityMaker(info, views, defaultSizes, forms);
  69. }
  70. const speciesData = {
  71. animal: {
  72. name: "Animal"
  73. },
  74. dog: {
  75. name: "Dog",
  76. parents: [
  77. "canine"
  78. ]
  79. },
  80. canine: {
  81. name: "Canine",
  82. parents: [
  83. "mammal"
  84. ]
  85. },
  86. crux: {
  87. name: "Crux",
  88. parents: [
  89. "mammal"
  90. ]
  91. },
  92. mammal: {
  93. name: "Mammal",
  94. parents: [
  95. "animal"
  96. ]
  97. },
  98. "rough-collie": {
  99. name: "Rough Collie",
  100. parents: [
  101. "dog"
  102. ]
  103. },
  104. dragon: {
  105. name: "Dragon",
  106. parents: [
  107. "reptile"
  108. ]
  109. },
  110. reptile: {
  111. name: "Reptile",
  112. parents: [
  113. "animal"
  114. ]
  115. },
  116. woodpecker: {
  117. name: "Woodpecker",
  118. parents: [
  119. "avian"
  120. ]
  121. },
  122. avian: {
  123. name: "Avian",
  124. parents: [
  125. "animal"
  126. ]
  127. },
  128. kitsune: {
  129. name: "Kitsune",
  130. parents: [
  131. "fox"
  132. ]
  133. },
  134. fox: {
  135. name: "Fox",
  136. parents: [
  137. "mammal"
  138. ]
  139. },
  140. pokemon: {
  141. name: "Pokemon",
  142. parents: [
  143. "video-games"
  144. ]
  145. },
  146. tiger: {
  147. name: "Tiger",
  148. parents: [
  149. "cat"
  150. ]
  151. },
  152. cat: {
  153. name: "Cat",
  154. parents: [
  155. "feliform"
  156. ]
  157. },
  158. "blue-jay": {
  159. name: "Blue Jay",
  160. parents: [
  161. "corvid"
  162. ]
  163. },
  164. wolf: {
  165. name: "Wolf",
  166. parents: [
  167. "mammal"
  168. ]
  169. },
  170. coyote: {
  171. name: "Coyote",
  172. parents: [
  173. "mammal"
  174. ]
  175. },
  176. raccoon: {
  177. name: "Raccoon",
  178. parents: [
  179. "mammal"
  180. ]
  181. },
  182. weasel: {
  183. name: "Weasel",
  184. parents: [
  185. "mustelid"
  186. ]
  187. },
  188. "red-panda": {
  189. name: "Red Panda",
  190. parents: [
  191. "mammal"
  192. ]
  193. },
  194. dolphin: {
  195. name: "Dolphin",
  196. parents: [
  197. "mammal"
  198. ]
  199. },
  200. "african-wild-dog": {
  201. name: "African Wild Dog",
  202. parents: [
  203. "canine"
  204. ]
  205. },
  206. "hyena": {
  207. name: "Hyena",
  208. parents: [
  209. "feliform"
  210. ]
  211. },
  212. "carbuncle": {
  213. name: "Carbuncle",
  214. parents: [
  215. "animal"
  216. ]
  217. },
  218. bat: {
  219. name: "Bat",
  220. parents: [
  221. "mammal"
  222. ]
  223. },
  224. "leaf-nosed-bat": {
  225. name: "Leaf-Nosed Bat",
  226. parents: [
  227. "bat"
  228. ]
  229. },
  230. "fish": {
  231. name: "Fish",
  232. parents: [
  233. "animal",
  234. "aquatic"
  235. ]
  236. },
  237. "ram": {
  238. name: "Ram",
  239. parents: [
  240. "mammal"
  241. ]
  242. },
  243. "demon": {
  244. name: "Demon",
  245. parents: [
  246. "supernatural"
  247. ]
  248. },
  249. "cougar": {
  250. name: "Cougar",
  251. parents: [
  252. "cat"
  253. ]
  254. },
  255. "goat": {
  256. name: "Goat",
  257. parents: [
  258. "mammal"
  259. ]
  260. },
  261. "lion": {
  262. name: "Lion",
  263. parents: [
  264. "cat"
  265. ]
  266. },
  267. "harpy-eager": {
  268. name: "Harpy Eagle",
  269. parents: [
  270. "avian"
  271. ]
  272. },
  273. "deer": {
  274. name: "Deer",
  275. parents: [
  276. "mammal"
  277. ]
  278. },
  279. "phoenix": {
  280. name: "Phoenix",
  281. parents: [
  282. "avian"
  283. ]
  284. },
  285. "aeromorph": {
  286. name: "Aeromorph",
  287. parents: [
  288. "machine"
  289. ]
  290. },
  291. "machine": {
  292. name: "Machine",
  293. },
  294. "android": {
  295. name: "Android",
  296. parents: [
  297. "machine"
  298. ]
  299. },
  300. "jackal": {
  301. name: "Jackal",
  302. parents: [
  303. "canine"
  304. ]
  305. },
  306. "corvid": {
  307. name: "Corvid",
  308. parents: [
  309. "passerine"
  310. ]
  311. },
  312. "pharaoh-hound": {
  313. name: "Pharaoh Hound",
  314. parents: [
  315. "dog"
  316. ]
  317. },
  318. "skunk": {
  319. name: "Skunk",
  320. parents: [
  321. "mammal"
  322. ]
  323. },
  324. "shark": {
  325. name: "Shark",
  326. parents: [
  327. "fish"
  328. ]
  329. },
  330. "black-panther": {
  331. name: "Black Panther",
  332. parents: [
  333. "cat"
  334. ]
  335. },
  336. "umbra": {
  337. name: "Umbra",
  338. parents: [
  339. "animal"
  340. ]
  341. },
  342. "raven": {
  343. name: "Raven",
  344. parents: [
  345. "corvid"
  346. ]
  347. },
  348. "snow-leopard": {
  349. name: "Snow Leopard",
  350. parents: [
  351. "cat"
  352. ]
  353. },
  354. "barbary-lion": {
  355. name: "Barbary Lion",
  356. parents: [
  357. "lion"
  358. ]
  359. },
  360. "dra'gal": {
  361. name: "Dra'Gal",
  362. parents: [
  363. "mammal"
  364. ]
  365. },
  366. "german-shepherd": {
  367. name: "German Shepherd",
  368. parents: [
  369. "dog"
  370. ]
  371. },
  372. "bayleef": {
  373. name: "Bayleef",
  374. parents: [
  375. "pokemon",
  376. "plant",
  377. "animal"
  378. ]
  379. },
  380. "mouse": {
  381. name: "Mouse",
  382. parents: [
  383. "rodent"
  384. ]
  385. },
  386. "rat": {
  387. name: "Rat",
  388. parents: [
  389. "mammal"
  390. ]
  391. },
  392. "hoshiko-beast": {
  393. name: "Hoshiko Beast",
  394. parents: ["animal"]
  395. },
  396. "snow-jugani": {
  397. name: "Snow Jugani",
  398. parents: ["cat"]
  399. },
  400. "patamon": {
  401. name: "Patamon",
  402. parents: ["digimon", "guinea-pig"]
  403. },
  404. "digimon": {
  405. name: "Digimon",
  406. parents: [
  407. "video-games"
  408. ]
  409. },
  410. "jugani": {
  411. name: "Jugani",
  412. parents: ["cat"]
  413. },
  414. "luxray": {
  415. name: "Luxray",
  416. parents: ["pokemon", "lion"]
  417. },
  418. "mech": {
  419. name: "Mech",
  420. parents: ["machine"]
  421. },
  422. "zoid": {
  423. name: "Zoid",
  424. parents: ["mech"]
  425. },
  426. "monster": {
  427. name: "Monster",
  428. parents: ["animal"]
  429. },
  430. "foo-dog": {
  431. name: "Foo Dog",
  432. parents: ["mammal"]
  433. },
  434. "elephant": {
  435. name: "Elephant",
  436. parents: ["mammal"]
  437. },
  438. "eagle": {
  439. name: "Eagle",
  440. parents: ["bird-of-prey"]
  441. },
  442. "cow": {
  443. name: "Cow",
  444. parents: ["mammal"]
  445. },
  446. "crocodile": {
  447. name: "Crocodile",
  448. parents: ["reptile"]
  449. },
  450. "borzoi": {
  451. name: "Borzoi",
  452. parents: ["dog"]
  453. },
  454. "snake": {
  455. name: "Snake",
  456. parents: ["reptile"]
  457. },
  458. "horned-bush-viper": {
  459. name: "Horned Bush Viper",
  460. parents: ["viper"]
  461. },
  462. "cobra": {
  463. name: "Cobra",
  464. parents: ["snake"]
  465. },
  466. "harpy-eagle": {
  467. name: "Harpy Eagle",
  468. parents: ["eagle"]
  469. },
  470. "raptor": {
  471. name: "Raptor",
  472. parents: ["dinosaur"]
  473. },
  474. "dinosaur": {
  475. name: "Dinosaur",
  476. parents: ["saurian"]
  477. },
  478. "saurian": {
  479. name: "Saurian",
  480. parents: ["lizard"]
  481. },
  482. "veilhound": {
  483. name: "Veilhound",
  484. parents: ["hellhound"]
  485. },
  486. "hellhound": {
  487. name: "Hellhound",
  488. parents: ["canine", "demon"]
  489. },
  490. "insect": {
  491. name: "Insect",
  492. parents: ["animal"]
  493. },
  494. "beetle": {
  495. name: "Beetle",
  496. parents: ["insect"]
  497. },
  498. "moth": {
  499. name: "Moth",
  500. parents: ["insect"]
  501. },
  502. "eastern-dragon": {
  503. name: "Eastern Dragon",
  504. parents: ["dragon"]
  505. },
  506. "jaguar": {
  507. name: "Jaguar",
  508. parents: ["cat"]
  509. },
  510. "horse": {
  511. name: "Horse",
  512. parents: ["mammal"]
  513. },
  514. "sergal": {
  515. name: "Sergal",
  516. parents: ["mammal", "avian", "vilous"]
  517. },
  518. "gryphon": {
  519. name: "Gryphon",
  520. parents: ["lion", "eagle"]
  521. },
  522. "robot": {
  523. name: "Robot",
  524. parents: ["machine"]
  525. },
  526. "medihound": {
  527. name: "Medihound",
  528. parents: ["robot", "dog"]
  529. },
  530. "sylveon": {
  531. name: "Sylveon",
  532. parents: ["pokemon"]
  533. },
  534. "catgirl": {
  535. name: "Catgirl",
  536. parents: ["mammal"]
  537. },
  538. "cowgirl": {
  539. name: "Cowgirl",
  540. parents: ["mammal"]
  541. },
  542. "pony": {
  543. name: "Pony",
  544. parents: ["horse"]
  545. },
  546. "rabbit": {
  547. name: "Rabbit",
  548. parents: ["leporidae"]
  549. },
  550. "fennec-fox": {
  551. name: "Fennec Fox",
  552. parents: ["fox"]
  553. },
  554. "azodian": {
  555. name: "Azodian",
  556. parents: ["mouse"]
  557. },
  558. "shiba-inu": {
  559. name: "Shiba Inu",
  560. parents: ["dog"]
  561. },
  562. "changeling": {
  563. name: "Changeling",
  564. parents: ["insect"]
  565. },
  566. "cheetah": {
  567. name: "Cheetah",
  568. parents: ["cat"]
  569. },
  570. "golden-jackal": {
  571. name: "Golden Jackal",
  572. parents: ["jackal"]
  573. },
  574. "manectric": {
  575. name: "Manectric",
  576. parents: ["pokemon", "wolf"]
  577. },
  578. "rat": {
  579. name: "Rat",
  580. parents: ["rodent"]
  581. },
  582. "rodent": {
  583. name: "Rodent",
  584. parents: ["mammal"]
  585. },
  586. "octocoon": {
  587. name: "Octocoon",
  588. parents: ["raccoon", "octopus"]
  589. },
  590. "octopus": {
  591. name: "Octopus",
  592. parents: ["fish"]
  593. },
  594. "werewolf": {
  595. name: "Werewolf",
  596. parents: ["wolf", "werebeast"]
  597. },
  598. "werebeast": {
  599. name: "Werebeast",
  600. parents: ["monster"]
  601. },
  602. "meerkat": {
  603. name: "Meerkat",
  604. parents: ["mammal"]
  605. },
  606. "human": {
  607. name: "Human",
  608. parents: ["mammal", "humanoid"]
  609. },
  610. "geth": {
  611. name: "Geth",
  612. parents: ["android"]
  613. },
  614. "husky": {
  615. name: "Husky",
  616. parents: ["dog"]
  617. },
  618. "long-eared-bat": {
  619. name: "Long Eared Bat",
  620. parents: ["bat"]
  621. },
  622. "lizard": {
  623. name: "Lizard",
  624. parents: ["reptile"]
  625. },
  626. "salamander": {
  627. name: "Salamander",
  628. parents: ["lizard"]
  629. },
  630. "chameleon": {
  631. name: "Chameleon",
  632. parents: ["lizard"]
  633. },
  634. "gecko": {
  635. name: "Gecko",
  636. parents: ["lizard"]
  637. },
  638. "kobold": {
  639. name: "Kobold",
  640. parents: ["reptile"]
  641. },
  642. "charizard": {
  643. name: "Charizard",
  644. parents: ["pokemon", "dragon"]
  645. },
  646. "lugia": {
  647. name: "Lugia",
  648. parents: ["pokemon", "avian"]
  649. },
  650. "cerberus": {
  651. name: "Cerberus",
  652. parents: ["dog"]
  653. },
  654. "tyrantrum": {
  655. name: "Tyrantrum",
  656. parents: ["pokemon"]
  657. },
  658. "lemur": {
  659. name: "Lemur",
  660. parents: ["mammal"]
  661. },
  662. "kelpie": {
  663. name: "Kelpie",
  664. parents: ["horse", "monster"]
  665. },
  666. "labrador": {
  667. name: "Labrador",
  668. parents: ["dog"]
  669. },
  670. "sylveon": {
  671. name: "Sylveon",
  672. parents: ["eeveelution"]
  673. },
  674. "eeveelution": {
  675. name: "Eeveelution",
  676. parents: ["pokemon", "cat"]
  677. },
  678. "polar-bear": {
  679. name: "Polar Bear",
  680. parents: ["bear"]
  681. },
  682. "bear": {
  683. name: "Bear",
  684. parents: ["mammal"]
  685. },
  686. "absol": {
  687. name: "Absol",
  688. parents: ["pokemon", "cat"]
  689. },
  690. "wolver": {
  691. name: "Wolver",
  692. parents: ["mammal"]
  693. },
  694. "rottweiler": {
  695. name: "Rottweiler",
  696. parents: ["dog"]
  697. },
  698. "zebra": {
  699. name: "Zebra",
  700. parents: ["horse"]
  701. },
  702. "yoshi": {
  703. name: "Yoshi",
  704. parents: ["dinosaur"]
  705. },
  706. "lynx": {
  707. name: "Lynx",
  708. parents: ["cat"]
  709. },
  710. "unknown": {
  711. name: "Unknown",
  712. parents: []
  713. },
  714. "thylacine": {
  715. name: "Thylacine",
  716. parents: ["mammal"]
  717. },
  718. "gabumon": {
  719. name: "Gabumon",
  720. parents: ["digimon"]
  721. },
  722. "border-collie": {
  723. name: "Border Collie",
  724. parents: ["dog"]
  725. },
  726. "imp": {
  727. name: "Imp",
  728. parents: ["demon"]
  729. },
  730. "kangaroo": {
  731. name: "Kangaroo",
  732. parents: ["marsupial"]
  733. },
  734. "renamon": {
  735. name: "Renamon",
  736. parents: ["digimon", "fox"]
  737. },
  738. "candy-orca-dragon": {
  739. name: "Candy Orca Dragon",
  740. parents: ["fish", "dragon", "candy"]
  741. },
  742. "sabertooth-tiger": {
  743. name: "Sabertooth Tiger",
  744. parents: ["cat"]
  745. },
  746. "espurr": {
  747. name: "Espurr",
  748. parents: ["pokemon", "cat"]
  749. },
  750. "otter": {
  751. name: "Otter",
  752. parents: ["mustelid"]
  753. },
  754. "elemental": {
  755. name: "Elemental",
  756. parents: ["mammal"]
  757. },
  758. "mew": {
  759. name: "Mew",
  760. parents: ["pokemon"]
  761. },
  762. "goodra": {
  763. name: "Goodra",
  764. parents: ["pokemon"]
  765. },
  766. "fairy": {
  767. name: "Fairy",
  768. parents: ["magical"]
  769. },
  770. "typhlosion": {
  771. name: "Typhlosion",
  772. parents: ["pokemon"]
  773. },
  774. "magical": {
  775. name: "Magical",
  776. parents: []
  777. },
  778. "xenomorph": {
  779. name: "Xenomorph",
  780. parents: ["monster", "alien"]
  781. },
  782. "charr": {
  783. name: "Charr",
  784. parents: ["cat"]
  785. },
  786. "siberian-husky": {
  787. name: "Siberian Husky",
  788. parents: ["husky"]
  789. },
  790. "alligator": {
  791. name: "Alligator",
  792. parents: ["reptile"]
  793. },
  794. "bernese-mountain-dog": {
  795. name: "Bernese Mountain Dog",
  796. parents: ["dog"]
  797. },
  798. "reshiram": {
  799. name: "Reshiram",
  800. parents: ["pokemon", "dragon"]
  801. },
  802. "grizzly-bear": {
  803. name: "Grizzly Bear",
  804. parents: ["bear"]
  805. },
  806. "water-monitor": {
  807. name: "Water Monitor",
  808. parents: ["lizard"]
  809. },
  810. "banchofossa": {
  811. name: "Banchofossa",
  812. parents: ["mammal"]
  813. },
  814. "kirin": {
  815. name: "Kirin",
  816. parents: ["monster"]
  817. },
  818. "quilava": {
  819. name: "Quilava",
  820. parents: ["pokemon"]
  821. },
  822. "seviper": {
  823. name: "Seviper",
  824. parents: ["pokemon", "viper"]
  825. },
  826. "flying-fox": {
  827. name: "Flying Fox",
  828. parents: ["bat"]
  829. },
  830. "keynain": {
  831. name: "Keynain",
  832. parents: ["avian"]
  833. },
  834. "lucario": {
  835. name: "Lucario",
  836. parents: ["pokemon", "jackal"]
  837. },
  838. "siamese-cat": {
  839. name: "Siamese Cat",
  840. parents: ["cat"]
  841. },
  842. "spider": {
  843. name: "Spider",
  844. parents: ["insect"]
  845. },
  846. "samurott": {
  847. name: "Samurott",
  848. parents: ["pokemon", "otter"]
  849. },
  850. "megalodon": {
  851. name: "Megalodon",
  852. parents: ["shark"]
  853. },
  854. "unicorn": {
  855. name: "Unicorn",
  856. parents: ["horse"]
  857. },
  858. "greninja": {
  859. name: "Greninja",
  860. parents: ["pokemon", "frog"]
  861. },
  862. "water-dragon": {
  863. name: "Water Dragon",
  864. parents: ["dragon"]
  865. },
  866. "cross-fox": {
  867. name: "Cross Fox",
  868. parents: ["fox"]
  869. },
  870. "synth": {
  871. name: "Synth",
  872. parents: ["machine"]
  873. },
  874. "construct": {
  875. name: "Construct",
  876. parents: []
  877. },
  878. "mexican-wolf": {
  879. name: "Mexican Wolf",
  880. parents: ["wolf"]
  881. },
  882. "leopard": {
  883. name: "Leopard",
  884. parents: ["cat"]
  885. },
  886. "pig": {
  887. name: "Pig",
  888. parents: ["mammal"]
  889. },
  890. "ampharos": {
  891. name: "Ampharos",
  892. parents: ["pokemon", "sheep"]
  893. },
  894. "orca": {
  895. name: "Orca",
  896. parents: ["fish"]
  897. },
  898. "lycanroc": {
  899. name: "Lycanroc",
  900. parents: ["pokemon", "wolf"]
  901. },
  902. "surkanu": {
  903. name: "Surkanu",
  904. parents: ["monster"]
  905. },
  906. "seal": {
  907. name: "Seal",
  908. parents: ["mammal"]
  909. },
  910. "keldeo": {
  911. name: "Keldeo",
  912. parents: ["pokemon"]
  913. },
  914. "great-dane": {
  915. name: "Great Dane",
  916. parents: ["dog"]
  917. },
  918. "black-backed-jackal": {
  919. name: "Black Backed Jackal",
  920. parents: ["jackal"]
  921. },
  922. "sheep": {
  923. name: "Sheep",
  924. parents: ["mammal"]
  925. },
  926. "leopard-seal": {
  927. name: "Leopard Seal",
  928. parents: ["seal"]
  929. },
  930. "zoroark": {
  931. name: "Zoroark",
  932. parents: ["pokemon", "fox"]
  933. },
  934. "maned-wolf": {
  935. name: "Maned Wolf",
  936. parents: ["canine"]
  937. },
  938. "dracha": {
  939. name: "Dracha",
  940. parents: ["dragon"]
  941. },
  942. "wolxi": {
  943. name: "Wolxi",
  944. parents: ["mammal", "alien"]
  945. },
  946. "dratini": {
  947. name: "Dratini",
  948. parents: ["pokemon", "dragon"]
  949. },
  950. "skaven": {
  951. name: "Skaven",
  952. parents: ["rat"]
  953. },
  954. "mongoose": {
  955. name: "Mongoose",
  956. parents: ["mammal"]
  957. },
  958. "lopunny": {
  959. name: "Lopunny",
  960. parents: ["pokemon", "rabbit"]
  961. },
  962. "feraligatr": {
  963. name: "Feraligatr",
  964. parents: ["pokemon", "alligator"]
  965. },
  966. "houndoom": {
  967. name: "Houndoom",
  968. parents: ["pokemon", "dog"]
  969. },
  970. "protogen": {
  971. name: "Protogen",
  972. parents: ["machine"]
  973. },
  974. "saint-bernard": {
  975. name: "Saint Bernard",
  976. parents: ["dog"]
  977. },
  978. "crow": {
  979. name: "Crow",
  980. parents: ["corvid"]
  981. },
  982. "delphox": {
  983. name: "Delphox",
  984. parents: ["pokemon", "fox"]
  985. },
  986. "moose": {
  987. name: "Moose",
  988. parents: ["mammal"]
  989. },
  990. "joraxian": {
  991. name: "Joraxian",
  992. parents: ["monster", "canine", "demon"]
  993. },
  994. "nimbat": {
  995. name: "Nimbat",
  996. parents: ["mammal"]
  997. },
  998. "aardwolf": {
  999. name: "Aardwolf",
  1000. parents: ["canine"]
  1001. },
  1002. "fluudrani": {
  1003. name: "Fluudrani",
  1004. parents: ["animal"]
  1005. },
  1006. "arcanine": {
  1007. name: "Arcanine",
  1008. parents: ["pokemon", "dog"]
  1009. },
  1010. "inteleon": {
  1011. name: "Inteleon",
  1012. parents: ["pokemon", "fish"]
  1013. },
  1014. "ninetales": {
  1015. name: "Ninetales",
  1016. parents: ["pokemon", "kitsune"]
  1017. },
  1018. "tigrex": {
  1019. name: "Tigrex",
  1020. parents: ["wyvern", "monster-hunter"]
  1021. },
  1022. "zorua": {
  1023. name: "Zorua",
  1024. parents: ["pokemon", "fox"]
  1025. },
  1026. "vulpix": {
  1027. name: "Vulpix",
  1028. parents: ["pokemon", "fox"]
  1029. },
  1030. "barghest": {
  1031. name: "Barghest",
  1032. parents: ["monster"]
  1033. },
  1034. "gray-wolf": {
  1035. name: "Gray Wolf",
  1036. parents: ["wolf"]
  1037. },
  1038. "ruppells-fox": {
  1039. name: "Rüppell's Fox",
  1040. parents: ["fox"]
  1041. },
  1042. "bull-terrier": {
  1043. name: "Bull Terrier",
  1044. parents: ["dog"]
  1045. },
  1046. "european-honey-buzzard": {
  1047. name: "European Honey Buzzard",
  1048. parents: ["avian"]
  1049. },
  1050. "t-rex": {
  1051. name: "Tyrannosaurus Rex",
  1052. parents: ["theropod"]
  1053. },
  1054. "mactarian": {
  1055. name: "Mactarian",
  1056. parents: ["shark", "monster"]
  1057. },
  1058. "mewtwo-y": {
  1059. name: "Mewtwo Y",
  1060. parents: ["mewtwo"]
  1061. },
  1062. "mewtwo": {
  1063. name: "Mewtwo",
  1064. parents: ["pokemon"]
  1065. },
  1066. "eevee": {
  1067. name: "Eevee",
  1068. parents: ["eeveelution"]
  1069. },
  1070. "mienshao": {
  1071. name: "Mienshao",
  1072. parents: ["pokemon"]
  1073. },
  1074. "sugar-glider": {
  1075. name: "Sugar Glider",
  1076. parents: ["opossum"]
  1077. },
  1078. "spectral-bat": {
  1079. name: "Spectral Bat",
  1080. parents: ["bat"]
  1081. },
  1082. "scolipede": {
  1083. name: "Scolipede",
  1084. parents: ["pokemon", "insect"]
  1085. },
  1086. "jackalope": {
  1087. name: "Jackalope",
  1088. parents: ["rabbit", "antelope"]
  1089. },
  1090. "caracal": {
  1091. name: "Caracal",
  1092. parents: ["cat"]
  1093. },
  1094. "stoat": {
  1095. name: "Stoat",
  1096. parents: ["mammal"]
  1097. },
  1098. "african-golden-cat": {
  1099. name: "African Golden Cat",
  1100. parents: ["cat"]
  1101. },
  1102. "gigantosaurus": {
  1103. name: "Gigantosaurus",
  1104. parents: ["dinosaur"]
  1105. },
  1106. "zorgoia": {
  1107. name: "Zorgoia",
  1108. parents: ["mammal"]
  1109. },
  1110. "monitor-lizard": {
  1111. name: "Monitor Lizard",
  1112. parents: ["lizard"]
  1113. },
  1114. "ziralkia": {
  1115. name: "Ziralkia",
  1116. parents: ["mammal"]
  1117. },
  1118. "kiiasi": {
  1119. name: "Kiiasi",
  1120. parents: ["animal"]
  1121. },
  1122. "synx": {
  1123. name: "Synx",
  1124. parents: ["monster"]
  1125. },
  1126. "panther": {
  1127. name: "Panther",
  1128. parents: ["cat"]
  1129. },
  1130. "azumarill": {
  1131. name: "Azumarill",
  1132. parents: ["pokemon"]
  1133. },
  1134. "river-snaptail": {
  1135. name: "River Snaptail",
  1136. parents: ["otter", "crocodile"]
  1137. },
  1138. "great-blue-heron": {
  1139. name: "Great Blue Heron",
  1140. parents: ["avian"]
  1141. },
  1142. "smeargle": {
  1143. name: "Smeargle",
  1144. parents: ["pokemon"]
  1145. },
  1146. "vendeilen": {
  1147. name: "Vendeilen",
  1148. parents: ["monster"]
  1149. },
  1150. "ventura": {
  1151. name: "Ventura",
  1152. parents: ["canine"]
  1153. },
  1154. "clouded-leopard": {
  1155. name: "Clouded Leopard",
  1156. parents: ["leopard"]
  1157. },
  1158. "argonian": {
  1159. name: "Argonian",
  1160. parents: ["lizard"]
  1161. },
  1162. "salazzle": {
  1163. name: "Salazzle",
  1164. parents: ["pokemon", "lizard"]
  1165. },
  1166. "je-stoff-drachen": {
  1167. name: "Je-Stoff Drachen",
  1168. parents: ["dragon"]
  1169. },
  1170. "finnish-spitz-dog": {
  1171. name: "Finnish Spitz Dog",
  1172. parents: ["dog"]
  1173. },
  1174. "gray-fox": {
  1175. name: "Gray Fox",
  1176. parents: ["fox"]
  1177. },
  1178. "opossum": {
  1179. name: "Opossum",
  1180. parents: ["mammal"]
  1181. },
  1182. "antelope": {
  1183. name: "Antelope",
  1184. parents: ["mammal"]
  1185. },
  1186. "weavile": {
  1187. name: "Weavile",
  1188. parents: ["pokemon"]
  1189. },
  1190. "pikachu": {
  1191. name: "Pikachu",
  1192. parents: ["pokemon", "mouse"]
  1193. },
  1194. "grovyle": {
  1195. name: "Grovyle",
  1196. parents: ["pokemon", "plant"]
  1197. },
  1198. "sthara": {
  1199. name: "Sthara",
  1200. parents: ["snow-leopard", "reptile"]
  1201. },
  1202. "star-warrior": {
  1203. name: "Star Warrior",
  1204. parents: ["magical"]
  1205. },
  1206. "dragonoid": {
  1207. name: "Dragonoid",
  1208. parents: ["dragon"]
  1209. },
  1210. "suicune": {
  1211. name: "Suicune",
  1212. parents: ["pokemon"]
  1213. },
  1214. "vole": {
  1215. name: "Vole",
  1216. parents: ["mammal"]
  1217. },
  1218. "blaziken": {
  1219. name: "Blaziken",
  1220. parents: ["pokemon", "avian"]
  1221. },
  1222. "buizel": {
  1223. name: "Buizel",
  1224. parents: ["pokemon", "fish"]
  1225. },
  1226. "floatzel": {
  1227. name: "Floatzel",
  1228. parents: ["pokemon", "fish"]
  1229. },
  1230. "umok": {
  1231. name: "Umok",
  1232. parents: ["avian"]
  1233. },
  1234. "sea-monster": {
  1235. name: "Sea Monster",
  1236. parents: ["monster", "fish"]
  1237. },
  1238. "egyptian-vulture": {
  1239. name: "Egyptian Vulture",
  1240. parents: ["avian"]
  1241. },
  1242. "doberman": {
  1243. name: "Doberman",
  1244. parents: ["dog"]
  1245. },
  1246. "zangoose": {
  1247. name: "Zangoose",
  1248. parents: ["pokemon", "mongoose"]
  1249. },
  1250. "mongoose": {
  1251. name: "Mongoose",
  1252. parents: ["mammal"]
  1253. },
  1254. "wickerbeast": {
  1255. name: "Wickerbeast",
  1256. parents: ["monster"]
  1257. },
  1258. "zenari": {
  1259. name: "Zenari",
  1260. parents: ["lizard"]
  1261. },
  1262. "plant": {
  1263. name: "Plant",
  1264. parents: []
  1265. },
  1266. "raskatox": {
  1267. name: "Raskatox",
  1268. parents: ["raccoon", "skunk", "cat", "fox"]
  1269. },
  1270. "mikromare": {
  1271. name: "mikromare",
  1272. parents: ["alien"]
  1273. },
  1274. "alien": {
  1275. name: "Alien",
  1276. parents: ["animal"]
  1277. },
  1278. "deity": {
  1279. name: "Deity",
  1280. parents: []
  1281. },
  1282. "skarlan": {
  1283. name: "Skarlan",
  1284. parents: ["slug", "dragon"]
  1285. },
  1286. "slug": {
  1287. name: "Slug",
  1288. parents: ["mollusk"]
  1289. },
  1290. "mollusk": {
  1291. name: "Mollusk",
  1292. parents: ["animal"]
  1293. },
  1294. "chimera": {
  1295. name: "Chimera",
  1296. parents: ["monster"]
  1297. },
  1298. "gestalt": {
  1299. name: "Gestalt",
  1300. parents: ["construct"]
  1301. },
  1302. "mimic": {
  1303. name: "Mimic",
  1304. parents: ["monster"]
  1305. },
  1306. "calico-rat": {
  1307. name: "Calico Rat",
  1308. parents: ["rat"]
  1309. },
  1310. "panda": {
  1311. name: "Panda",
  1312. parents: ["mammal"]
  1313. },
  1314. "oni": {
  1315. name: "Oni",
  1316. parents: ["monster"]
  1317. },
  1318. "pegasus": {
  1319. name: "Pegasus",
  1320. parents: ["horse"]
  1321. },
  1322. "vulpera": {
  1323. name: "Vulpera",
  1324. parents: ["fennec-fox"]
  1325. },
  1326. "ceratosaurus": {
  1327. name: "Ceratosaurus",
  1328. parents: ["dinosaur"]
  1329. },
  1330. "nykur": {
  1331. name: "Nykur",
  1332. parents: ["horse", "monster"]
  1333. },
  1334. "giraffe": {
  1335. name: "Giraffe",
  1336. parents: ["mammal"]
  1337. },
  1338. "tauren": {
  1339. name: "Tauren",
  1340. parents: ["cow"]
  1341. },
  1342. "draconi": {
  1343. name: "Draconi",
  1344. parents: ["alien", "cat", "cyborg"]
  1345. },
  1346. "dire-wolf": {
  1347. name: "Dire Wolf",
  1348. parents: ["wolf"]
  1349. },
  1350. "ferromorph": {
  1351. name: "Ferromorph",
  1352. parents: ["construct"]
  1353. },
  1354. "meowth": {
  1355. name: "Meowth",
  1356. parents: ["cat", "pokemon"]
  1357. },
  1358. "pavodragon": {
  1359. name: "Pavodragon",
  1360. parents: ["dragon"]
  1361. },
  1362. "aaltranae": {
  1363. name: "Aaltranae",
  1364. parents: ["dragon"]
  1365. },
  1366. "cyborg": {
  1367. name: "Cyborg",
  1368. parents: ["machine"]
  1369. },
  1370. "draptor": {
  1371. name: "Draptor",
  1372. parents: ["dragon"]
  1373. },
  1374. "candy": {
  1375. name: "Candy",
  1376. parents: []
  1377. },
  1378. "drenath": {
  1379. name: "Drenath",
  1380. parents: ["dragon", "snake", "rabbit"]
  1381. },
  1382. "coyju": {
  1383. name: "Coyju",
  1384. parents: ["coyote", "kaiju"]
  1385. },
  1386. "kaiju": {
  1387. name: "Kaiju",
  1388. parents: ["monster"]
  1389. },
  1390. "nickit": {
  1391. name: "Nickit",
  1392. parents: ["pokemon", "cat"]
  1393. },
  1394. "lopunny": {
  1395. name: "Lopunny",
  1396. parents: ["pokemon", "rabbit"]
  1397. },
  1398. "korean-jindo-dog": {
  1399. name: "Korean Jindo Dog",
  1400. parents: ["dog"]
  1401. },
  1402. "naga": {
  1403. name: "Naga",
  1404. parents: ["snake", "monster"]
  1405. },
  1406. "undead": {
  1407. name: "Undead",
  1408. parents: ["monster"]
  1409. },
  1410. "whale": {
  1411. name: "Whale",
  1412. parents: ["fish"]
  1413. },
  1414. "gelato-bee": {
  1415. name: "Gelato Bee",
  1416. parents: ["bee"]
  1417. },
  1418. "bee": {
  1419. name: "Bee",
  1420. parents: ["insect"]
  1421. },
  1422. "gardevoir": {
  1423. name: "Gardevoir",
  1424. parents: ["pokemon"]
  1425. },
  1426. "ant": {
  1427. name: "Ant",
  1428. parents: ["insect"]
  1429. },
  1430. "frog": {
  1431. name: "Frog",
  1432. parents: ["amphibian"]
  1433. },
  1434. "amphibian": {
  1435. name: "Amphibian",
  1436. parents: ["animal", "aquatic"]
  1437. },
  1438. "pangolin": {
  1439. name: "Pangolin",
  1440. parents: ["mammal"]
  1441. },
  1442. "uragi'viidorn": {
  1443. name: "Uragi'viidorn",
  1444. parents: ["avian", "bear"]
  1445. },
  1446. "gryphdelphais": {
  1447. name: "Gryphdelphais",
  1448. parents: ["dolphin", "gryphon"]
  1449. },
  1450. "plush": {
  1451. name: "Plush",
  1452. parents: ["construct"]
  1453. },
  1454. "draiger": {
  1455. name: "Draiger",
  1456. parents: ["dragon","tiger"]
  1457. },
  1458. "foxsky": {
  1459. name: "Foxsky",
  1460. parents: ["fox", "husky"]
  1461. },
  1462. "umbreon": {
  1463. name: "Umbreon",
  1464. parents: ["eeveelution"]
  1465. },
  1466. "slime-dragon": {
  1467. name: "Slime Dragon",
  1468. parents: ["dragon", "goo"]
  1469. },
  1470. "enderman": {
  1471. name: "Enderman",
  1472. parents: ["monster"]
  1473. },
  1474. "gremlin": {
  1475. name: "Gremlin",
  1476. parents: ["monster"]
  1477. },
  1478. "dragonsune": {
  1479. name: "Dragonsune",
  1480. parents: ["dragon", "kitsune"]
  1481. },
  1482. "ghost": {
  1483. name: "Ghost",
  1484. parents: ["supernatural"]
  1485. },
  1486. "false-vampire-bat": {
  1487. name: "False Vampire Bat",
  1488. parents: ["bat"]
  1489. },
  1490. "succubus": {
  1491. name: "Succubus",
  1492. parents: ["demon"]
  1493. },
  1494. "mia": {
  1495. name: "Mia",
  1496. parents: ["canine"]
  1497. },
  1498. "rainbow": {
  1499. name: "Rainbow",
  1500. parents: ["monster"]
  1501. },
  1502. "solgaleo": {
  1503. name: "Solgaleo",
  1504. parents: ["pokemon"]
  1505. },
  1506. "lucent-nargacuga": {
  1507. name: "Lucent Nargacuga",
  1508. parents: ["nargacuga"]
  1509. },
  1510. "monster-hunter": {
  1511. name: "Monster Hunter",
  1512. parents: ["monster", "video-games"]
  1513. },
  1514. "leviathan": {
  1515. "name": "Leviathan",
  1516. "url": "sea-monster"
  1517. },
  1518. "bull": {
  1519. name: "Bull",
  1520. parents: ["mammal"]
  1521. },
  1522. "tanuki": {
  1523. name: "Tanuki",
  1524. parents: ["monster"]
  1525. },
  1526. "chakat": {
  1527. name: "Chakat",
  1528. parents: ["cat"]
  1529. },
  1530. "hydra": {
  1531. name: "Hydra",
  1532. parents: ["monster"]
  1533. },
  1534. "zigzagoon": {
  1535. name: "Zigzagoon",
  1536. parents: ["raccoon", "pokemon"]
  1537. },
  1538. "vulture": {
  1539. name: "Vulture",
  1540. parents: ["avian"]
  1541. },
  1542. "eastern-dragon": {
  1543. name: "Eastern Dragon",
  1544. parents: ["dragon"]
  1545. },
  1546. "gryffon": {
  1547. name: "Gryffon",
  1548. parents: ["phoenix", "red-panda"]
  1549. },
  1550. "amtsvane": {
  1551. name: "Amtsvane",
  1552. parents: ["reptile"]
  1553. },
  1554. "kigavi": {
  1555. name: "Kigavi",
  1556. parents: ["avian"]
  1557. },
  1558. "turian": {
  1559. name: "Turian",
  1560. parents: ["avian"]
  1561. },
  1562. "zeraora": {
  1563. name: "Zeraora",
  1564. parents: ["pokemon", "cat"]
  1565. },
  1566. "sandshrew": {
  1567. name: "Sandshrew",
  1568. parents: ["pokemon", "pangolin"]
  1569. },
  1570. "valais-blacknose-sheep": {
  1571. name: "Valais Blacknose Sheep",
  1572. parents: ["sheep"]
  1573. },
  1574. "novaleit": {
  1575. name: "Novaleit",
  1576. parents: ["mammal"]
  1577. },
  1578. "dunnoh": {
  1579. name: "Dunnoh",
  1580. parents: ["mammal"]
  1581. },
  1582. "lunaral-dragon": {
  1583. name: "Lunaral Dragon",
  1584. parents: ["dragon"]
  1585. },
  1586. "arctic-wolf": {
  1587. name: "Arctic Wolf",
  1588. parents: ["wolf"]
  1589. },
  1590. "donkey": {
  1591. name: "Donkey",
  1592. parents: ["horse"]
  1593. },
  1594. "chinchilla": {
  1595. name: "Chinchilla",
  1596. parents: ["rodent"]
  1597. },
  1598. "felkin": {
  1599. name: "Felkin",
  1600. parents: ["dragon"]
  1601. },
  1602. "tykeriel": {
  1603. name: "Tykeriel",
  1604. parents: ["avian"]
  1605. },
  1606. "folf": {
  1607. name: "Folf",
  1608. parents: ["fox", "wolf"]
  1609. },
  1610. "pooltoy": {
  1611. name: "Pooltoy",
  1612. parents: ["construct"]
  1613. },
  1614. "demi": {
  1615. name: "Demi",
  1616. parents: ["human"]
  1617. },
  1618. "stegosaurus": {
  1619. name: "Stegosaurus",
  1620. parents: ["dinosaur"]
  1621. },
  1622. "computer-virus": {
  1623. name: "Computer Virus",
  1624. parents: ["program"]
  1625. },
  1626. "program": {
  1627. name: "Program",
  1628. parents: ["construct"]
  1629. },
  1630. "space-springhare": {
  1631. name: "Space Springhare",
  1632. parents: ["hare"]
  1633. },
  1634. "river-drake": {
  1635. name: "River Drake",
  1636. parents: ["dragon"]
  1637. },
  1638. "djinn": {
  1639. "name": "Djinn",
  1640. "url": "supernatural"
  1641. },
  1642. "supernatural": {
  1643. name: "Supernatural",
  1644. parents: ["monster"]
  1645. },
  1646. "grasshopper-mouse": {
  1647. name: "Grasshopper Mouse",
  1648. parents: ["mouse"]
  1649. },
  1650. "somali-cat": {
  1651. name: "Somali Cat",
  1652. parents: ["cat"]
  1653. },
  1654. "minccino": {
  1655. name: "Minccino",
  1656. parents: ["pokemon", "chinchilla"]
  1657. },
  1658. "pine-marten": {
  1659. name: "Pine Marten",
  1660. parents: ["marten"]
  1661. },
  1662. "marten": {
  1663. name: "Marten",
  1664. parents: ["mustelid"]
  1665. },
  1666. "mustelid": {
  1667. name: "Mustelid",
  1668. parents: ["mammal"]
  1669. },
  1670. "caribou": {
  1671. name: "Caribou",
  1672. parents: ["deer"]
  1673. },
  1674. "gnoll": {
  1675. name: "Gnoll",
  1676. parents: ["hyena", "monster"]
  1677. },
  1678. "peacekeeper": {
  1679. name: "Peacekeeper",
  1680. parents: ["human"]
  1681. },
  1682. "river-otter": {
  1683. name: "River Otter",
  1684. parents: ["otter"]
  1685. },
  1686. "dhole": {
  1687. name: "Dhole",
  1688. parents: ["canine"]
  1689. },
  1690. "springbok": {
  1691. name: "Springbok",
  1692. parents: ["antelope"]
  1693. },
  1694. "marsupial": {
  1695. name: "Marsupial",
  1696. parents: ["mammal"]
  1697. },
  1698. "townsend-big-eared-bat": {
  1699. name: "Townsend Big-eared Bat",
  1700. parents: ["bat"]
  1701. },
  1702. "squirrel": {
  1703. name: "Squirrel",
  1704. parents: ["rodent"]
  1705. },
  1706. "magpie": {
  1707. name: "Magpie",
  1708. parents: ["corvid"]
  1709. },
  1710. "civet": {
  1711. name: "Civet",
  1712. parents: ["feliform"]
  1713. },
  1714. "feliform": {
  1715. name: "Feliform",
  1716. parents: ["mammal"]
  1717. },
  1718. "tiefling": {
  1719. name: "Tiefling",
  1720. parents: ["devil"]
  1721. },
  1722. "devil": {
  1723. name: "Devil",
  1724. parents: ["supernatural"]
  1725. },
  1726. "sika-deer": {
  1727. name: "Sika Deer",
  1728. parents: ["deer"]
  1729. },
  1730. "vaporeon": {
  1731. name: "Vaporeon",
  1732. parents: ["eeveelution"]
  1733. },
  1734. "leafeon": {
  1735. name: "Leafeon",
  1736. parents: ["eeveelution"]
  1737. },
  1738. "jolteon": {
  1739. name: "Jolteon",
  1740. parents: ["eeveelution"]
  1741. },
  1742. "spireborn": {
  1743. name: "Spireborn",
  1744. parents: ["zorgoia"]
  1745. },
  1746. "vampire": {
  1747. name: "Vampire",
  1748. parents: ["monster"]
  1749. },
  1750. "extraplanar": {
  1751. name: "Extraplanar",
  1752. parents: []
  1753. },
  1754. "goo": {
  1755. name: "Goo",
  1756. parents: []
  1757. },
  1758. "skink": {
  1759. name: "Skink",
  1760. parents: ["lizard"]
  1761. },
  1762. "bat-eared-fox": {
  1763. name: "Bat-eared Fox",
  1764. parents: ["fox"]
  1765. },
  1766. "belted-kingfisher": {
  1767. name: "Belted Kingfisher",
  1768. parents: ["avian"]
  1769. },
  1770. "omnifalcon": {
  1771. name: "Omnifalcon",
  1772. parents: ["gryphon", "falcon", "harpy-eagle"]
  1773. },
  1774. "falcon": {
  1775. name: "Falcon",
  1776. parents: ["bird-of-prey"]
  1777. },
  1778. "avali": {
  1779. name: "Avali",
  1780. parents: ["avian", "alien"]
  1781. },
  1782. "arctic-fox": {
  1783. name: "Arctic Fox",
  1784. parents: ["fox"]
  1785. },
  1786. "snow-tiger": {
  1787. name: "Snow Tiger",
  1788. parents: ["tiger"]
  1789. },
  1790. "marble-fox": {
  1791. name: "Marble Fox",
  1792. parents: ["fox"]
  1793. },
  1794. "king-wickerbeast": {
  1795. name: "King Wickerbeast",
  1796. parents: ["wickerbeast"]
  1797. },
  1798. "wickerbeast": {
  1799. name: "Wickerbeast",
  1800. parents: ["mammal"]
  1801. },
  1802. "european-polecat": {
  1803. name: "European Polecat",
  1804. parents: ["polecat"]
  1805. },
  1806. "polecat": {
  1807. name: "Polecat",
  1808. parents: ["mustelid"]
  1809. },
  1810. "teshari": {
  1811. name: "Teshari",
  1812. parents: ["avian", "raptor"]
  1813. },
  1814. "alicorn": {
  1815. name: "Alicorn",
  1816. parents: ["horse"]
  1817. },
  1818. "atlas-moth": {
  1819. name: "Atlas Moth",
  1820. parents: ["moth"]
  1821. },
  1822. "owlbear": {
  1823. name: "Owlbear",
  1824. parents: ["owl", "bear", "monster"]
  1825. },
  1826. "owl": {
  1827. name: "Owl",
  1828. parents: ["avian"]
  1829. },
  1830. "silvertongue": {
  1831. name: "Silvertongue",
  1832. parents: ["reptile"]
  1833. },
  1834. "ahuizotl": {
  1835. name: "Ahuizotl",
  1836. parents: ["monster"]
  1837. },
  1838. "ender-dragon": {
  1839. name: "Ender Dragon",
  1840. parents: ["dragon"]
  1841. },
  1842. "bruhathkayosaurus": {
  1843. name: "Bruhathkayosaurus",
  1844. parents: ["sauropod"]
  1845. },
  1846. "sauropod": {
  1847. name: "Sauropod",
  1848. parents: ["dinosaur"]
  1849. },
  1850. "black-sable-antelope": {
  1851. name: "Black Sable Antelope",
  1852. parents: ["antelope"]
  1853. },
  1854. "slime": {
  1855. name: "Slime",
  1856. parents: ["goo"]
  1857. },
  1858. "utahraptor": {
  1859. name: "Utahraptor",
  1860. parents: ["raptor"]
  1861. },
  1862. "indian-giant-squirrel": {
  1863. name: "Indian Giant Squirrel",
  1864. parents: ["squirrel"]
  1865. },
  1866. "golden-retriever": {
  1867. name: "Golden Retriever",
  1868. parents: ["dog"]
  1869. },
  1870. "triceratops": {
  1871. name: "Triceratops",
  1872. parents: ["dinosaur"]
  1873. },
  1874. "drake": {
  1875. name: "Drake",
  1876. parents: ["dragon"]
  1877. },
  1878. "okapi": {
  1879. name: "Okapi",
  1880. parents: ["giraffe"]
  1881. },
  1882. "arctic-hare": {
  1883. name: "Arctic Hare",
  1884. parents: ["hare"]
  1885. },
  1886. "hare": {
  1887. name: "Hare",
  1888. parents: ["leporidae"]
  1889. },
  1890. "leporidae": {
  1891. name: "Leporidae",
  1892. parents: ["mammal"]
  1893. },
  1894. "leopard-gecko": {
  1895. name: "Leopard Gecko",
  1896. parents: ["gecko"]
  1897. },
  1898. "dreamspawn": {
  1899. name: "Dreamspawn",
  1900. parents: ["illusion"]
  1901. },
  1902. "illusion": {
  1903. name: "Illusion",
  1904. parents: []
  1905. },
  1906. "purrloin": {
  1907. name: "Purrloin",
  1908. parents: ["cat", "pokemon"]
  1909. },
  1910. "noivern": {
  1911. name: "Noivern",
  1912. parents: ["bat", "dragon", "pokemon"]
  1913. },
  1914. "hedgehog": {
  1915. name: "Hedgehog",
  1916. parents: ["mammal"]
  1917. },
  1918. "liger": {
  1919. name: "Liger",
  1920. parents: ["lion", "tiger", "hybrid"]
  1921. },
  1922. "hybrid": {
  1923. name: "Hybrid",
  1924. parents: []
  1925. },
  1926. "drider": {
  1927. name: "Drider",
  1928. parents: ["spider"]
  1929. },
  1930. "sabresune": {
  1931. name: "Sabresune",
  1932. parents: ["kitsune", "sabertooth-tiger"]
  1933. },
  1934. "ditto": {
  1935. name: "Ditto",
  1936. parents: ["pokemon", "goo"]
  1937. },
  1938. "amogus": {
  1939. name: "Amogus",
  1940. parents: ["deity"]
  1941. },
  1942. "ferret": {
  1943. name: "Ferret",
  1944. parents: ["mustelid"]
  1945. },
  1946. "guinea-pig": {
  1947. name: "Guinea Pig",
  1948. parents: ["rodent"]
  1949. },
  1950. "viper": {
  1951. name: "Viper",
  1952. parents: ["snake"]
  1953. },
  1954. "cinderace": {
  1955. name: "Cinderace",
  1956. parents: ["pokemon", "rabbit"]
  1957. },
  1958. "caudin": {
  1959. name: "Caudin",
  1960. parents: ["dragon"]
  1961. },
  1962. "red-winged-blackbird": {
  1963. name: "Red-Winged Blackbird",
  1964. parents: ["avian"]
  1965. },
  1966. "hooded-wheater": {
  1967. name: "Hooded Wheater",
  1968. parents: ["passerine"]
  1969. },
  1970. "passerine": {
  1971. name: "Passerine",
  1972. parents: ["avian"]
  1973. },
  1974. "gieeg": {
  1975. name: "Gieeg",
  1976. parents: ["alien"]
  1977. },
  1978. "ringtail": {
  1979. name: "Ringtail",
  1980. parents: ["raccoon"]
  1981. },
  1982. "hisuian-zoroark": {
  1983. name: "Hisuian Zoroark",
  1984. parents: ["zoroark", "hisuian"]
  1985. },
  1986. "hisuian": {
  1987. name: "Hisuian",
  1988. parents: ["regional-pokemon"]
  1989. },
  1990. "regional-pokemon": {
  1991. name: "Regional Pokemon",
  1992. parents: ["pokemon"]
  1993. },
  1994. "cybeast": {
  1995. name: "Cybeast",
  1996. parents: ["computer-virus"]
  1997. },
  1998. "javira-dragon": {
  1999. name: "Javira Dragon",
  2000. parents: ["dragon"]
  2001. },
  2002. "koopew": {
  2003. name: "Koopew",
  2004. parents: ["dragon", "alien"]
  2005. },
  2006. "nevrean": {
  2007. name: "Nevrean",
  2008. parents: ["avian", "vilous"]
  2009. },
  2010. "vilous": {
  2011. name: "Vilous Species",
  2012. parents: []
  2013. },
  2014. "titanoboa": {
  2015. name: "Titanoboa",
  2016. parents: ["snake"]
  2017. },
  2018. "raichu": {
  2019. name: "Raichu",
  2020. parents: ["pikachu"]
  2021. },
  2022. "taur": {
  2023. name: "Taur",
  2024. parents: []
  2025. },
  2026. "continental-giant-rabbit": {
  2027. name: "Continental Giant Rabbit",
  2028. parents: ["rabbit"]
  2029. },
  2030. "demigryph": {
  2031. name: "Demigryph",
  2032. parents: ["lion", "eagle"]
  2033. },
  2034. "bald-eagle": {
  2035. name: "Bald Eagle",
  2036. parents: ["eagle"]
  2037. },
  2038. "kestrel": {
  2039. name: "Kestrel",
  2040. parents: ["falcon"]
  2041. },
  2042. "mockingbird": {
  2043. name: "Mockingbird",
  2044. parents: ["songbird"]
  2045. },
  2046. "songbird": {
  2047. name: "Songbird",
  2048. parents: ["avian"]
  2049. },
  2050. "bird-of-prey": {
  2051. name: "Bird of Prey",
  2052. parents: ["avian"]
  2053. },
  2054. "marowak": {
  2055. name: "Marowak",
  2056. parents: ["pokemon", "reptile"]
  2057. },
  2058. "joltik": {
  2059. name: "Joltik",
  2060. parents: ["pokemon", "insect"]
  2061. },
  2062. "mink": {
  2063. name: "Mink",
  2064. parents: ["mustelid"]
  2065. },
  2066. "sandcat": {
  2067. name: "Sandcat",
  2068. parents: ["cat"]
  2069. },
  2070. "hrothgar": {
  2071. name: "Hrothgar",
  2072. parents: ["cat"]
  2073. },
  2074. "garchomp": {
  2075. name: "Garchomp",
  2076. parents: ["dragon", "pokemon"]
  2077. },
  2078. "nargacuga": {
  2079. name: "Nargacuga",
  2080. parents: ["monster-hunter"]
  2081. },
  2082. "sable": {
  2083. name: "Sable",
  2084. parents: ["marten"]
  2085. },
  2086. "deino": {
  2087. name: "Deino",
  2088. parents: ["pokemon", "dinosaur"]
  2089. },
  2090. "housecat": {
  2091. name: "Housecat",
  2092. parents: ["cat"]
  2093. },
  2094. "bombay-cat": {
  2095. name: "Bombay Cat",
  2096. parents: ["housecat"]
  2097. },
  2098. "maine-coon": {
  2099. name: "Maine Coon",
  2100. parents: ["housecat"]
  2101. },
  2102. "coelacanth": {
  2103. name: "Coelacanth",
  2104. parents: ["fish"]
  2105. },
  2106. "silvally": {
  2107. name: "Silvally",
  2108. parents: ["legendary-pokemon"]
  2109. },
  2110. "legendary-pokemon": {
  2111. name: "Legendary Pokemon",
  2112. parents: ["pokemon"]
  2113. },
  2114. "great-maccao": {
  2115. name: "Great Maccao",
  2116. parents: ["monster-hunter", "raptor"]
  2117. },
  2118. "shapeshifter": {
  2119. name: "shapeshifter",
  2120. parents: []
  2121. },
  2122. "obstagoon": {
  2123. name: "Obstagoon",
  2124. parents: ["zigzagoon"]
  2125. },
  2126. "thomsons-gazelle": {
  2127. name: "Thomsons Gazelle",
  2128. parents: ["gazelle"]
  2129. },
  2130. "gazelle": {
  2131. name: "Gazelle",
  2132. parents: ["antelope"]
  2133. },
  2134. "monkey": {
  2135. name: "Monkey",
  2136. parents: ["primate"]
  2137. },
  2138. "serval": {
  2139. name: "Serval",
  2140. parents: ["cat"]
  2141. },
  2142. "swampert": {
  2143. name: "Swampert",
  2144. parents: ["pokemon"]
  2145. },
  2146. "red-fox": {
  2147. name: "Red Fox",
  2148. parents: ["fox"]
  2149. },
  2150. "sliver": {
  2151. name: "Sliver",
  2152. parents: ["alien"]
  2153. },
  2154. "sergix": {
  2155. name: "Sergix",
  2156. parents: ["demon", "sergal", "phoenix"]
  2157. },
  2158. "behemoth": {
  2159. name: "Behemoth",
  2160. parents: ["monster", "dragon", "final-fantasy"]
  2161. },
  2162. "final-fantasy": {
  2163. name: "Final Fantasy",
  2164. parents: ["video-games"]
  2165. },
  2166. "video-games": {
  2167. name: "Video Games",
  2168. parents: []
  2169. },
  2170. "eastern-cottontail-rabbit": {
  2171. name: "Eastern Cottontail Rabbit",
  2172. parents: ["rabbit"]
  2173. },
  2174. "thresher-shark": {
  2175. name: "Thresher Shark",
  2176. parents: ["shark"]
  2177. },
  2178. "ai": {
  2179. name: "AI",
  2180. parents: []
  2181. },
  2182. "black-tip-reef-shark": {
  2183. name: "Black Tip Reef Shark",
  2184. parents: ["shark"]
  2185. },
  2186. "quetzalcoatlus-northropi": {
  2187. name: "Quetzalcoatlus Northropi",
  2188. parents: ["dinosaur"]
  2189. },
  2190. "snivy": {
  2191. name: "Snivy",
  2192. parents: ["pokemon", "snake"]
  2193. },
  2194. "nedynvor": {
  2195. name: "Nedynvor",
  2196. parents: ["avian"]
  2197. },
  2198. "marbled-polecat": {
  2199. name: "Marbled Polecat",
  2200. parents: ["polecat"]
  2201. },
  2202. "ape": {
  2203. name: "Ape",
  2204. parents: ["primate"]
  2205. },
  2206. "primate": {
  2207. name: "Primate",
  2208. parents: ["mammal"]
  2209. },
  2210. "kulve-taroth": {
  2211. name: "Kulve Taroth",
  2212. parents: ["monster-hunter", "dragon"]
  2213. },
  2214. "irthos": {
  2215. name: "Irthos",
  2216. parents: ["dragon"]
  2217. },
  2218. "furred-dragon": {
  2219. name: "Furred Dragon",
  2220. parents: ["dragon"]
  2221. },
  2222. "hippogriff": {
  2223. name: "Hippogriff",
  2224. parents: ["gryphon", "horse"]
  2225. },
  2226. "peregrine-falcon": {
  2227. name: "Peregrine Falcon",
  2228. parents: ["falcon"]
  2229. },
  2230. "deinonychus": {
  2231. name: "Deinonychus",
  2232. parents: ["theropod"]
  2233. },
  2234. "theropod": {
  2235. name: "Theropod",
  2236. parents: ["dinosaur"]
  2237. },
  2238. "chocobo": {
  2239. name: "Chocobo",
  2240. parents: ["avian"]
  2241. },
  2242. "stilio": {
  2243. name: "Stilio",
  2244. parents: ["snake"]
  2245. },
  2246. "kardox": {
  2247. name: "Kardox",
  2248. parents: ["wolf", "dragon", "horse"]
  2249. },
  2250. "food": {
  2251. name: "Food",
  2252. parents: ["object"]
  2253. },
  2254. "object": {
  2255. name: "Object",
  2256. parents: []
  2257. },
  2258. "honey-badger": {
  2259. name: "honey-badger",
  2260. parents: ["badger"]
  2261. },
  2262. "badger": {
  2263. name: "Badger",
  2264. parents: ["mustelid"]
  2265. },
  2266. "rattlesnake": {
  2267. name: "Rattlesnake",
  2268. parents: ["snake"]
  2269. },
  2270. "diamondback": {
  2271. name: "Diamondback",
  2272. parents: ["snake"]
  2273. },
  2274. "spidox": {
  2275. name: "Spidox",
  2276. parents: ["spider", "fox"]
  2277. },
  2278. "kodiak-bear": {
  2279. name: "Kodiak Bear",
  2280. parents: ["bear"]
  2281. },
  2282. "alurean": {
  2283. name: "Alurean",
  2284. parents: ["saurian", "aquatic", "alien"]
  2285. },
  2286. "aquatic": {
  2287. name: "Aquatic",
  2288. parents: []
  2289. },
  2290. "wyvern": {
  2291. name: "Wyvern",
  2292. parents: ["dragon"]
  2293. },
  2294. "catfish": {
  2295. name: "Catfish",
  2296. parents: ["fish"]
  2297. },
  2298. "vesempress": {
  2299. name: "Vesempress",
  2300. parents: ["vespiquen"]
  2301. },
  2302. "vespiquen": {
  2303. name: "Vespiquen",
  2304. parents: ["pokemon", "bee"]
  2305. },
  2306. "gaelterranian": {
  2307. name: "Gaelterranian",
  2308. parents: ["alien"]
  2309. },
  2310. "pistrogre": {
  2311. name: "Pistrogre",
  2312. parents: ["alien", "deity", "insect", "reptile"]
  2313. },
  2314. "komodo-dragon": {
  2315. name: "Komodo Dragon",
  2316. parents: ["lizard"]
  2317. },
  2318. "shiny": {
  2319. name: "Shiny",
  2320. parents: ["pokemon"]
  2321. },
  2322. "latex": {
  2323. name: "Latex",
  2324. parents: []
  2325. },
  2326. "praying-mantis": {
  2327. name: "Praying Mantis",
  2328. parents: ["insect"]
  2329. },
  2330. "espeon": {
  2331. name: "Espeon",
  2332. parents: ["eeveelution"]
  2333. },
  2334. "skullwolf": {
  2335. name: "Skullwolf",
  2336. parents: ["wolf", "skullmonster"]
  2337. },
  2338. "skulldragon": {
  2339. name: "Skulldragon",
  2340. parents: ["dragon", "skullmonster"]
  2341. },
  2342. "skullmonster": {
  2343. name: "Skullmonster",
  2344. parents: ["monster"]
  2345. },
  2346. "ferrin": {
  2347. name: "Ferrin",
  2348. parents: ["dragon"]
  2349. },
  2350. "rusty-spotted-cat": {
  2351. name: "Rusty-Spotted Cat",
  2352. parents: ["cat"]
  2353. },
  2354. "elf": {
  2355. name: "Elf",
  2356. parents: ["humanoid"]
  2357. },
  2358. "humanoid": {
  2359. name: "Humanoid",
  2360. parents: []
  2361. },
  2362. "allusus": {
  2363. name: "Allusus",
  2364. parents: ["humanoid"]
  2365. },
  2366. "saltwater-crocodile": {
  2367. name: "Saltwater Crocodile",
  2368. parents: ["crocodile"]
  2369. },
  2370. "eastern-grey-kangaroo": {
  2371. name: "Eastern Grey Kangaroo",
  2372. parents: ["kangaroo"]
  2373. },
  2374. "latenivenatrix": {
  2375. name: "Latenivenatrix",
  2376. parents: ["troodontidae"]
  2377. },
  2378. "troodontidae": {
  2379. name: "Troodontidae",
  2380. parents: ["theropod", "avian"]
  2381. },
  2382. }
  2383. //species
  2384. function getSpeciesInfo(speciesList) {
  2385. let result = new Set();
  2386. speciesList.flatMap(getSpeciesInfoHelper).forEach(entry => {
  2387. result.add(entry)
  2388. });
  2389. return Array.from(result);
  2390. };
  2391. function getSpeciesInfoHelper(species) {
  2392. if (!speciesData[species]) {
  2393. console.warn(species + " doesn't exist");
  2394. return [];
  2395. }
  2396. if (speciesData[species].parents) {
  2397. return [species].concat(speciesData[species].parents.flatMap(parent => getSpeciesInfoHelper(parent)));
  2398. } else {
  2399. return [species];
  2400. }
  2401. }
  2402. characterMakers.push(() => makeCharacter(
  2403. {
  2404. name: "Fen",
  2405. species: ["crux"],
  2406. description: {
  2407. title: "Bio",
  2408. text: "Very furry. Sheds on everything."
  2409. },
  2410. tags: [
  2411. "anthro",
  2412. "goo"
  2413. ]
  2414. },
  2415. {
  2416. front: {
  2417. height: math.unit(12, "feet"),
  2418. weight: math.unit(2400, "lb"),
  2419. preyCapacity: math.unit(1, "people"),
  2420. name: "Front",
  2421. image: {
  2422. source: "./media/characters/fen/front.svg",
  2423. extra: 1804/1562,
  2424. bottom: 205/2009
  2425. },
  2426. extraAttributes: {
  2427. pawSize: {
  2428. name: "Paw Size",
  2429. power: 2,
  2430. type: "area",
  2431. base: math.unit(0.35, "m^2")
  2432. }
  2433. }
  2434. },
  2435. diving: {
  2436. height: math.unit(4.9, "meters"),
  2437. weight: math.unit(2400, "lb"),
  2438. name: "Diving",
  2439. image: {
  2440. source: "./media/characters/fen/diving.svg"
  2441. }
  2442. },
  2443. sleeby: {
  2444. height: math.unit(3.45, "meters"),
  2445. weight: math.unit(2400, "lb"),
  2446. name: "Sleeby",
  2447. image: {
  2448. source: "./media/characters/fen/sleeby.svg"
  2449. }
  2450. },
  2451. goo: {
  2452. height: math.unit(12, "feet"),
  2453. weight: math.unit(3600, "lb"),
  2454. volume: math.unit(1000, "liters"),
  2455. preyCapacity: math.unit(6, "people"),
  2456. name: "Goo",
  2457. image: {
  2458. source: "./media/characters/fen/goo.svg",
  2459. extra: 1307/1071,
  2460. bottom: 134/1441
  2461. }
  2462. },
  2463. horror: {
  2464. height: math.unit(13.6, "feet"),
  2465. weight: math.unit(2400, "lb"),
  2466. preyCapacity: math.unit(1, "people"),
  2467. name: "Horror",
  2468. image: {
  2469. source: "./media/characters/fen/horror.svg",
  2470. extra: 893/797,
  2471. bottom: 0/893
  2472. }
  2473. },
  2474. gooNsfw: {
  2475. height: math.unit(12, "feet"),
  2476. weight: math.unit(3750, "lb"),
  2477. volume: math.unit(1000, "liters"),
  2478. preyCapacity: math.unit(6, "people"),
  2479. name: "Goo (NSFW)",
  2480. image: {
  2481. source: "./media/characters/fen/goo-nsfw.svg",
  2482. extra: 1875/1734,
  2483. bottom: 122/1997
  2484. }
  2485. },
  2486. maw: {
  2487. height: math.unit(5.03, "feet"),
  2488. name: "Maw",
  2489. image: {
  2490. source: "./media/characters/fen/maw.svg"
  2491. }
  2492. },
  2493. gooCeiling: {
  2494. height: math.unit(6.6, "feet"),
  2495. weight: math.unit(3000, "lb"),
  2496. volume: math.unit(1000, "liters"),
  2497. preyCapacity: math.unit(6, "people"),
  2498. name: "Maw (Goo)",
  2499. image: {
  2500. source: "./media/characters/fen/goo-maw.svg"
  2501. }
  2502. },
  2503. paw: {
  2504. height: math.unit(3.77, "feet"),
  2505. name: "Paw",
  2506. image: {
  2507. source: "./media/characters/fen/paw.svg"
  2508. },
  2509. extraAttributes: {
  2510. "toeSize": {
  2511. name: "Toe Size",
  2512. power: 2,
  2513. type: "area",
  2514. base: math.unit(0.02875, "m^2")
  2515. },
  2516. "pawSize": {
  2517. name: "Paw Size",
  2518. power: 2,
  2519. type: "area",
  2520. base: math.unit(0.378, "m^2")
  2521. },
  2522. }
  2523. },
  2524. tail: {
  2525. height: math.unit(12.1, "feet"),
  2526. name: "Tail",
  2527. image: {
  2528. source: "./media/characters/fen/tail.svg"
  2529. }
  2530. },
  2531. tailFull: {
  2532. height: math.unit(12.1, "feet"),
  2533. name: "Full Tail",
  2534. image: {
  2535. source: "./media/characters/fen/tail-full.svg"
  2536. }
  2537. },
  2538. back: {
  2539. height: math.unit(12, "feet"),
  2540. weight: math.unit(2400, "lb"),
  2541. name: "Back",
  2542. image: {
  2543. source: "./media/characters/fen/back.svg",
  2544. },
  2545. info: {
  2546. description: {
  2547. mode: "append",
  2548. text: "\n\nHe is not currently looking at you."
  2549. }
  2550. }
  2551. },
  2552. full: {
  2553. height: math.unit(1.85, "meter"),
  2554. weight: math.unit(3200, "lb"),
  2555. preyCapacity: math.unit(3, "people"),
  2556. name: "Full",
  2557. image: {
  2558. source: "./media/characters/fen/full.svg",
  2559. extra: 1133/859,
  2560. bottom: 145/1278
  2561. },
  2562. info: {
  2563. description: {
  2564. mode: "append",
  2565. text: "\n\nMunch."
  2566. }
  2567. }
  2568. },
  2569. gooLounging: {
  2570. height: math.unit(4.53, "feet"),
  2571. weight: math.unit(3000, "lb"),
  2572. preyCapacity: math.unit(6, "people"),
  2573. name: "Goo (Lounging)",
  2574. image: {
  2575. source: "./media/characters/fen/goo-lounging.svg",
  2576. bottom: 116 / 613
  2577. }
  2578. },
  2579. lounging: {
  2580. height: math.unit(10.52, "feet"),
  2581. weight: math.unit(2400, "lb"),
  2582. name: "Lounging",
  2583. image: {
  2584. source: "./media/characters/fen/lounging.svg"
  2585. }
  2586. },
  2587. },
  2588. [
  2589. {
  2590. name: "Small",
  2591. height: math.unit(2.2428, "meter")
  2592. },
  2593. {
  2594. name: "Normal",
  2595. height: math.unit(12, "feet"),
  2596. default: true,
  2597. },
  2598. {
  2599. name: "Big",
  2600. height: math.unit(20, "feet")
  2601. },
  2602. {
  2603. name: "Minimacro",
  2604. height: math.unit(40, "feet"),
  2605. info: {
  2606. description: {
  2607. mode: "append",
  2608. text: "\n\nTOO DAMN BIG"
  2609. }
  2610. }
  2611. },
  2612. {
  2613. name: "Macro",
  2614. height: math.unit(100, "feet"),
  2615. info: {
  2616. description: {
  2617. mode: "append",
  2618. text: "\n\nTOO DAMN BIG"
  2619. }
  2620. }
  2621. },
  2622. {
  2623. name: "Megamacro",
  2624. height: math.unit(2, "miles")
  2625. },
  2626. {
  2627. name: "Gigamacro",
  2628. height: math.unit(10, "earths")
  2629. },
  2630. ]
  2631. ))
  2632. characterMakers.push(() => makeCharacter(
  2633. { name: "Sofia Fluttertail", species: ["rough-collie"], tags: ["anthro"] },
  2634. {
  2635. front: {
  2636. height: math.unit(183, "cm"),
  2637. weight: math.unit(80, "kg"),
  2638. name: "Front",
  2639. image: {
  2640. source: "./media/characters/sofia-fluttertail/front.svg",
  2641. bottom: 0.01,
  2642. extra: 2154 / 2081
  2643. }
  2644. },
  2645. frontAlt: {
  2646. height: math.unit(183, "cm"),
  2647. weight: math.unit(80, "kg"),
  2648. name: "Front (alt)",
  2649. image: {
  2650. source: "./media/characters/sofia-fluttertail/front-alt.svg"
  2651. }
  2652. },
  2653. back: {
  2654. height: math.unit(183, "cm"),
  2655. weight: math.unit(80, "kg"),
  2656. name: "Back",
  2657. image: {
  2658. source: "./media/characters/sofia-fluttertail/back.svg"
  2659. }
  2660. },
  2661. kneeling: {
  2662. height: math.unit(125, "cm"),
  2663. weight: math.unit(80, "kg"),
  2664. name: "Kneeling",
  2665. image: {
  2666. source: "./media/characters/sofia-fluttertail/kneeling.svg",
  2667. extra: 1033 / 977,
  2668. bottom: 23.7 / 1057
  2669. }
  2670. },
  2671. maw: {
  2672. height: math.unit(183 / 5, "cm"),
  2673. name: "Maw",
  2674. image: {
  2675. source: "./media/characters/sofia-fluttertail/maw.svg"
  2676. }
  2677. },
  2678. mawcloseup: {
  2679. height: math.unit(183 / 5 * 0.41, "cm"),
  2680. name: "Maw (Closeup)",
  2681. image: {
  2682. source: "./media/characters/sofia-fluttertail/maw-closeup.svg"
  2683. }
  2684. },
  2685. paws: {
  2686. height: math.unit(1.17, "feet"),
  2687. name: "Paws",
  2688. image: {
  2689. source: "./media/characters/sofia-fluttertail/paws.svg",
  2690. extra: 851 / 851,
  2691. bottom: 17 / 868
  2692. }
  2693. },
  2694. },
  2695. [
  2696. {
  2697. name: "Normal",
  2698. height: math.unit(1.83, "meter")
  2699. },
  2700. {
  2701. name: "Size Thief",
  2702. height: math.unit(18, "feet")
  2703. },
  2704. {
  2705. name: "50 Foot Collie",
  2706. height: math.unit(50, "feet")
  2707. },
  2708. {
  2709. name: "Macro",
  2710. height: math.unit(96, "feet"),
  2711. default: true
  2712. },
  2713. {
  2714. name: "Megamerger",
  2715. height: math.unit(650, "feet")
  2716. },
  2717. ]
  2718. ))
  2719. characterMakers.push(() => makeCharacter(
  2720. { name: "March", species: ["dragon"], tags: ["anthro"] },
  2721. {
  2722. front: {
  2723. height: math.unit(7, "feet"),
  2724. weight: math.unit(100, "kg"),
  2725. name: "Front",
  2726. image: {
  2727. source: "./media/characters/march/front.svg",
  2728. extra: 1992/1851,
  2729. bottom: 39/2031
  2730. }
  2731. },
  2732. foot: {
  2733. height: math.unit(0.9, "feet"),
  2734. name: "Foot",
  2735. image: {
  2736. source: "./media/characters/march/foot.svg"
  2737. }
  2738. },
  2739. },
  2740. [
  2741. {
  2742. name: "Normal",
  2743. height: math.unit(7.9, "feet")
  2744. },
  2745. {
  2746. name: "Macro",
  2747. height: math.unit(220, "meters")
  2748. },
  2749. {
  2750. name: "Megamacro",
  2751. height: math.unit(2.98, "km"),
  2752. default: true
  2753. },
  2754. {
  2755. name: "Gigamacro",
  2756. height: math.unit(15963, "km")
  2757. },
  2758. {
  2759. name: "Teramacro",
  2760. height: math.unit(2980000000, "km")
  2761. },
  2762. {
  2763. name: "Examacro",
  2764. height: math.unit(250, "parsecs")
  2765. },
  2766. ]
  2767. ))
  2768. characterMakers.push(() => makeCharacter(
  2769. { name: "Noir", species: ["woodpecker"], tags: ["anthro"] },
  2770. {
  2771. front: {
  2772. height: math.unit(6, "feet"),
  2773. weight: math.unit(60, "kg"),
  2774. name: "Front",
  2775. image: {
  2776. source: "./media/characters/noir/front.svg",
  2777. extra: 1,
  2778. bottom: 0.032
  2779. }
  2780. },
  2781. },
  2782. [
  2783. {
  2784. name: "Normal",
  2785. height: math.unit(6.6, "feet")
  2786. },
  2787. {
  2788. name: "Macro",
  2789. height: math.unit(500, "feet")
  2790. },
  2791. {
  2792. name: "Megamacro",
  2793. height: math.unit(2.5, "km"),
  2794. default: true
  2795. },
  2796. {
  2797. name: "Gigamacro",
  2798. height: math.unit(22500, "km")
  2799. },
  2800. {
  2801. name: "Teramacro",
  2802. height: math.unit(2500000000, "km")
  2803. },
  2804. {
  2805. name: "Examacro",
  2806. height: math.unit(200, "parsecs")
  2807. },
  2808. ]
  2809. ))
  2810. characterMakers.push(() => makeCharacter(
  2811. { name: "Okuri", species: ["sabresune"], tags: ["anthro"] },
  2812. {
  2813. front: {
  2814. height: math.unit(7, "feet"),
  2815. weight: math.unit(100, "kg"),
  2816. name: "Front",
  2817. image: {
  2818. source: "./media/characters/okuri/front.svg",
  2819. extra: 739/665,
  2820. bottom: 39/778
  2821. }
  2822. },
  2823. back: {
  2824. height: math.unit(7, "feet"),
  2825. weight: math.unit(100, "kg"),
  2826. name: "Back",
  2827. image: {
  2828. source: "./media/characters/okuri/back.svg",
  2829. extra: 734/653,
  2830. bottom: 13/747
  2831. }
  2832. },
  2833. sitting: {
  2834. height: math.unit(2.95, "feet"),
  2835. weight: math.unit(100, "kg"),
  2836. name: "Sitting",
  2837. image: {
  2838. source: "./media/characters/okuri/sitting.svg",
  2839. extra: 370/318,
  2840. bottom: 99/469
  2841. }
  2842. },
  2843. },
  2844. [
  2845. {
  2846. name: "Smallest",
  2847. height: math.unit(5 + 2/12, "feet")
  2848. },
  2849. {
  2850. name: "Smaller",
  2851. height: math.unit(300, "feet")
  2852. },
  2853. {
  2854. name: "Small",
  2855. height: math.unit(1000, "feet")
  2856. },
  2857. {
  2858. name: "Macro",
  2859. height: math.unit(1, "mile")
  2860. },
  2861. {
  2862. name: "Mega Macro (Small)",
  2863. height: math.unit(20, "km")
  2864. },
  2865. {
  2866. name: "Mega Macro (Large)",
  2867. height: math.unit(600, "km")
  2868. },
  2869. {
  2870. name: "Giga Macro",
  2871. height: math.unit(10000, "km")
  2872. },
  2873. {
  2874. name: "Normal",
  2875. height: math.unit(577560, "km"),
  2876. default: true
  2877. },
  2878. {
  2879. name: "Large",
  2880. height: math.unit(4, "galaxies")
  2881. },
  2882. {
  2883. name: "Largest",
  2884. height: math.unit(15, "multiverses")
  2885. },
  2886. ]
  2887. ))
  2888. characterMakers.push(() => makeCharacter(
  2889. { name: "Manny", species: ["manectric"], tags: ["anthro"] },
  2890. {
  2891. front: {
  2892. height: math.unit(7, "feet"),
  2893. weight: math.unit(100, "kg"),
  2894. name: "Front",
  2895. image: {
  2896. source: "./media/characters/manny/front.svg",
  2897. extra: 1,
  2898. bottom: 0.06
  2899. }
  2900. },
  2901. back: {
  2902. height: math.unit(7, "feet"),
  2903. weight: math.unit(100, "kg"),
  2904. name: "Back",
  2905. image: {
  2906. source: "./media/characters/manny/back.svg",
  2907. extra: 1,
  2908. bottom: 0.014
  2909. }
  2910. },
  2911. },
  2912. [
  2913. {
  2914. name: "Normal",
  2915. height: math.unit(7, "feet"),
  2916. },
  2917. {
  2918. name: "Macro",
  2919. height: math.unit(78, "feet"),
  2920. default: true
  2921. },
  2922. {
  2923. name: "Macro+",
  2924. height: math.unit(300, "meters")
  2925. },
  2926. {
  2927. name: "Macro++",
  2928. height: math.unit(2400, "meters")
  2929. },
  2930. {
  2931. name: "Megamacro",
  2932. height: math.unit(5167, "meters")
  2933. },
  2934. {
  2935. name: "Gigamacro",
  2936. height: math.unit(41769, "miles")
  2937. },
  2938. ]
  2939. ))
  2940. characterMakers.push(() => makeCharacter(
  2941. { name: "Adake", species: ["tiger"], tags: ["anthro"] },
  2942. {
  2943. front: {
  2944. height: math.unit(7, "feet"),
  2945. weight: math.unit(100, "kg"),
  2946. name: "Front",
  2947. image: {
  2948. source: "./media/characters/adake/front-1.svg"
  2949. }
  2950. },
  2951. frontAlt: {
  2952. height: math.unit(7, "feet"),
  2953. weight: math.unit(100, "kg"),
  2954. name: "Front (Alt)",
  2955. image: {
  2956. source: "./media/characters/adake/front-2.svg",
  2957. extra: 1,
  2958. bottom: 0.01
  2959. }
  2960. },
  2961. back: {
  2962. height: math.unit(7, "feet"),
  2963. weight: math.unit(100, "kg"),
  2964. name: "Back",
  2965. image: {
  2966. source: "./media/characters/adake/back.svg",
  2967. }
  2968. },
  2969. kneel: {
  2970. height: math.unit(5.385, "feet"),
  2971. weight: math.unit(100, "kg"),
  2972. name: "Kneeling",
  2973. image: {
  2974. source: "./media/characters/adake/kneel.svg",
  2975. bottom: 0.052
  2976. }
  2977. },
  2978. },
  2979. [
  2980. {
  2981. name: "Normal",
  2982. height: math.unit(7, "feet"),
  2983. },
  2984. {
  2985. name: "Macro",
  2986. height: math.unit(78, "feet"),
  2987. default: true
  2988. },
  2989. {
  2990. name: "Macro+",
  2991. height: math.unit(300, "meters")
  2992. },
  2993. {
  2994. name: "Macro++",
  2995. height: math.unit(2400, "meters")
  2996. },
  2997. {
  2998. name: "Megamacro",
  2999. height: math.unit(5167, "meters")
  3000. },
  3001. {
  3002. name: "Gigamacro",
  3003. height: math.unit(41769, "miles")
  3004. },
  3005. ]
  3006. ))
  3007. characterMakers.push(() => makeCharacter(
  3008. { name: "Elijah", species: ["blue-jay"], tags: ["anthro"] },
  3009. {
  3010. front: {
  3011. height: math.unit(1.65, "meters"),
  3012. weight: math.unit(50, "kg"),
  3013. name: "Front",
  3014. image: {
  3015. source: "./media/characters/elijah/front.svg",
  3016. extra: 858 / 830,
  3017. bottom: 95.5 / 953.8559
  3018. }
  3019. },
  3020. back: {
  3021. height: math.unit(1.65, "meters"),
  3022. weight: math.unit(50, "kg"),
  3023. name: "Back",
  3024. image: {
  3025. source: "./media/characters/elijah/back.svg",
  3026. extra: 895 / 850,
  3027. bottom: 5.3 / 897.956
  3028. }
  3029. },
  3030. frontNsfw: {
  3031. height: math.unit(1.65, "meters"),
  3032. weight: math.unit(50, "kg"),
  3033. name: "Front (NSFW)",
  3034. image: {
  3035. source: "./media/characters/elijah/front-nsfw.svg",
  3036. extra: 858 / 830,
  3037. bottom: 95.5 / 953.8559
  3038. }
  3039. },
  3040. backNsfw: {
  3041. height: math.unit(1.65, "meters"),
  3042. weight: math.unit(50, "kg"),
  3043. name: "Back (NSFW)",
  3044. image: {
  3045. source: "./media/characters/elijah/back-nsfw.svg",
  3046. extra: 895 / 850,
  3047. bottom: 5.3 / 897.956
  3048. }
  3049. },
  3050. dick: {
  3051. height: math.unit(1, "feet"),
  3052. name: "Dick",
  3053. image: {
  3054. source: "./media/characters/elijah/dick.svg"
  3055. }
  3056. },
  3057. beakOpen: {
  3058. height: math.unit(1.25, "feet"),
  3059. name: "Beak (Open)",
  3060. image: {
  3061. source: "./media/characters/elijah/beak-open.svg"
  3062. }
  3063. },
  3064. beakShut: {
  3065. height: math.unit(1.25, "feet"),
  3066. name: "Beak (Shut)",
  3067. image: {
  3068. source: "./media/characters/elijah/beak-shut.svg"
  3069. }
  3070. },
  3071. footFlexing: {
  3072. height: math.unit(1.61, "feet"),
  3073. name: "Foot (Flexing)",
  3074. image: {
  3075. source: "./media/characters/elijah/foot-flexing.svg"
  3076. }
  3077. },
  3078. footStepping: {
  3079. height: math.unit(1.44, "feet"),
  3080. name: "Foot (Stepping)",
  3081. image: {
  3082. source: "./media/characters/elijah/foot-stepping.svg"
  3083. }
  3084. },
  3085. plantigradeLeg: {
  3086. height: math.unit(2.34, "feet"),
  3087. name: "Plantigrade Leg",
  3088. image: {
  3089. source: "./media/characters/elijah/plantigrade-leg.svg"
  3090. }
  3091. },
  3092. plantigradeFootLeft: {
  3093. height: math.unit(0.9, "feet"),
  3094. name: "Plantigrade Foot (Left)",
  3095. image: {
  3096. source: "./media/characters/elijah/plantigrade-foot-left.svg"
  3097. }
  3098. },
  3099. plantigradeFootRight: {
  3100. height: math.unit(0.9, "feet"),
  3101. name: "Plantigrade Foot (Right)",
  3102. image: {
  3103. source: "./media/characters/elijah/plantigrade-foot-right.svg"
  3104. }
  3105. },
  3106. },
  3107. [
  3108. {
  3109. name: "Normal",
  3110. height: math.unit(1.65, "meters")
  3111. },
  3112. {
  3113. name: "Macro",
  3114. height: math.unit(55, "meters"),
  3115. default: true
  3116. },
  3117. {
  3118. name: "Macro+",
  3119. height: math.unit(105, "meters")
  3120. },
  3121. ]
  3122. ))
  3123. characterMakers.push(() => makeCharacter(
  3124. { name: "Rai", species: ["wolf"], tags: ["anthro"] },
  3125. {
  3126. front: {
  3127. height: math.unit(7 + 2/12, "feet"),
  3128. weight: math.unit(320, "kg"),
  3129. preyCapacity: math.unit(0.276549935, "people"),
  3130. name: "Front",
  3131. image: {
  3132. source: "./media/characters/rai/front.svg",
  3133. extra: 1802/1696,
  3134. bottom: 68/1870
  3135. },
  3136. form: "anthro",
  3137. default: true
  3138. },
  3139. frontDressed: {
  3140. height: math.unit(7 + 2/12, "feet"),
  3141. weight: math.unit(320, "kg"),
  3142. preyCapacity: math.unit(0.276549935, "people"),
  3143. name: "Front (Dressed)",
  3144. image: {
  3145. source: "./media/characters/rai/front-dressed.svg",
  3146. extra: 1802/1696,
  3147. bottom: 68/1870
  3148. },
  3149. form: "anthro"
  3150. },
  3151. side: {
  3152. height: math.unit(7 + 2/12, "feet"),
  3153. weight: math.unit(320, "kg"),
  3154. preyCapacity: math.unit(0.276549935, "people"),
  3155. name: "Side",
  3156. image: {
  3157. source: "./media/characters/rai/side.svg",
  3158. extra: 1789/1710,
  3159. bottom: 115/1904
  3160. },
  3161. form: "anthro"
  3162. },
  3163. back: {
  3164. height: math.unit(7 + 2/12, "feet"),
  3165. weight: math.unit(320, "kg"),
  3166. preyCapacity: math.unit(0.276549935, "people"),
  3167. name: "Back",
  3168. image: {
  3169. source: "./media/characters/rai/back.svg",
  3170. extra: 1770/1707,
  3171. bottom: 28/1798
  3172. },
  3173. form: "anthro"
  3174. },
  3175. feral: {
  3176. height: math.unit(9.5, "feet"),
  3177. weight: math.unit(640, "kg"),
  3178. preyCapacity: math.unit(4, "people"),
  3179. name: "Feral",
  3180. image: {
  3181. source: "./media/characters/rai/feral.svg",
  3182. extra: 945/553,
  3183. bottom: 176/1121
  3184. },
  3185. form: "feral",
  3186. default: true
  3187. },
  3188. dragon: {
  3189. height: math.unit(23, "feet"),
  3190. weight: math.unit(50000, "lb"),
  3191. name: "Dragon",
  3192. image: {
  3193. source: "./media/characters/rai/dragon.svg",
  3194. extra: 2498 / 2030,
  3195. bottom: 85.2 / 2584
  3196. },
  3197. form: "dragon",
  3198. default: true
  3199. },
  3200. maw: {
  3201. height: math.unit(1.69, "feet"),
  3202. name: "Maw",
  3203. image: {
  3204. source: "./media/characters/rai/maw.svg"
  3205. },
  3206. form: "anthro"
  3207. },
  3208. },
  3209. [
  3210. {
  3211. name: "Normal",
  3212. height: math.unit(7 + 2/12, "feet"),
  3213. form: "anthro"
  3214. },
  3215. {
  3216. name: "Big",
  3217. height: math.unit(11, "feet"),
  3218. form: "anthro"
  3219. },
  3220. {
  3221. name: "Minimacro",
  3222. height: math.unit(77, "feet"),
  3223. form: "anthro"
  3224. },
  3225. {
  3226. name: "Macro",
  3227. height: math.unit(302, "feet"),
  3228. default: true,
  3229. form: "anthro"
  3230. },
  3231. {
  3232. name: "Normal",
  3233. height: math.unit(9.5, "feet"),
  3234. form: "feral",
  3235. default: true
  3236. },
  3237. {
  3238. name: "Normal",
  3239. height: math.unit(23, "feet"),
  3240. form: "dragon",
  3241. default: true
  3242. }
  3243. ],
  3244. {
  3245. "anthro": {
  3246. name: "Anthro",
  3247. default: true
  3248. },
  3249. "feral": {
  3250. name: "Feral",
  3251. },
  3252. "dragon": {
  3253. name: "Dragon",
  3254. },
  3255. }
  3256. ))
  3257. characterMakers.push(() => makeCharacter(
  3258. { name: "Jazzy", species: ["coyote", "wolf"], tags: ["anthro"] },
  3259. {
  3260. frontDressed: {
  3261. height: math.unit(216, "feet"),
  3262. weight: math.unit(7000000, "lb"),
  3263. preyCapacity: math.unit(1321, "people"),
  3264. name: "Front (Dressed)",
  3265. image: {
  3266. source: "./media/characters/jazzy/front-dressed.svg",
  3267. extra: 2738 / 2651,
  3268. bottom: 41.8 / 2786
  3269. }
  3270. },
  3271. backDressed: {
  3272. height: math.unit(216, "feet"),
  3273. weight: math.unit(7000000, "lb"),
  3274. preyCapacity: math.unit(1321, "people"),
  3275. name: "Back (Dressed)",
  3276. image: {
  3277. source: "./media/characters/jazzy/back-dressed.svg",
  3278. extra: 2775 / 2673,
  3279. bottom: 36.8 / 2817
  3280. }
  3281. },
  3282. front: {
  3283. height: math.unit(216, "feet"),
  3284. weight: math.unit(7000000, "lb"),
  3285. preyCapacity: math.unit(1321, "people"),
  3286. name: "Front",
  3287. image: {
  3288. source: "./media/characters/jazzy/front.svg",
  3289. extra: 2738 / 2651,
  3290. bottom: 41.8 / 2786
  3291. }
  3292. },
  3293. back: {
  3294. height: math.unit(216, "feet"),
  3295. weight: math.unit(7000000, "lb"),
  3296. preyCapacity: math.unit(1321, "people"),
  3297. name: "Back",
  3298. image: {
  3299. source: "./media/characters/jazzy/back.svg",
  3300. extra: 2775 / 2673,
  3301. bottom: 36.8 / 2817
  3302. }
  3303. },
  3304. maw: {
  3305. height: math.unit(20, "feet"),
  3306. name: "Maw",
  3307. image: {
  3308. source: "./media/characters/jazzy/maw.svg"
  3309. }
  3310. },
  3311. paws: {
  3312. height: math.unit(27.5, "feet"),
  3313. name: "Paws",
  3314. image: {
  3315. source: "./media/characters/jazzy/paws.svg"
  3316. }
  3317. },
  3318. eye: {
  3319. height: math.unit(4.4, "feet"),
  3320. name: "Eye",
  3321. image: {
  3322. source: "./media/characters/jazzy/eye.svg"
  3323. }
  3324. },
  3325. droneOffense: {
  3326. height: math.unit(9.5, "inches"),
  3327. name: "Drone (Offense)",
  3328. image: {
  3329. source: "./media/characters/jazzy/drone-offense.svg"
  3330. }
  3331. },
  3332. droneRecon: {
  3333. height: math.unit(9.5, "inches"),
  3334. name: "Drone (Recon)",
  3335. image: {
  3336. source: "./media/characters/jazzy/drone-recon.svg"
  3337. }
  3338. },
  3339. droneDefense: {
  3340. height: math.unit(9.5, "inches"),
  3341. name: "Drone (Defense)",
  3342. image: {
  3343. source: "./media/characters/jazzy/drone-defense.svg"
  3344. }
  3345. },
  3346. },
  3347. [
  3348. {
  3349. name: "Macro",
  3350. height: math.unit(216, "feet"),
  3351. default: true
  3352. },
  3353. ]
  3354. ))
  3355. characterMakers.push(() => makeCharacter(
  3356. { name: "Flamm", species: ["cat"], tags: ["anthro"] },
  3357. {
  3358. front: {
  3359. height: math.unit(9 + 6/12, "feet"),
  3360. weight: math.unit(700, "lb"),
  3361. name: "Front",
  3362. image: {
  3363. source: "./media/characters/flamm/front.svg",
  3364. extra: 1736/1596,
  3365. bottom: 93/1829
  3366. }
  3367. },
  3368. buff: {
  3369. height: math.unit(9 + 6/12, "feet"),
  3370. weight: math.unit(950, "lb"),
  3371. name: "Buff",
  3372. image: {
  3373. source: "./media/characters/flamm/buff.svg",
  3374. extra: 3018/2874,
  3375. bottom: 221/3239
  3376. }
  3377. },
  3378. },
  3379. [
  3380. {
  3381. name: "Normal",
  3382. height: math.unit(9.5, "feet")
  3383. },
  3384. {
  3385. name: "Macro",
  3386. height: math.unit(200, "feet"),
  3387. default: true
  3388. },
  3389. ]
  3390. ))
  3391. characterMakers.push(() => makeCharacter(
  3392. { name: "Zephiro", species: ["raccoon"], tags: ["anthro"] },
  3393. {
  3394. front: {
  3395. height: math.unit(5 + 3/12, "feet"),
  3396. weight: math.unit(60, "kg"),
  3397. name: "Front",
  3398. image: {
  3399. source: "./media/characters/zephiro/front.svg",
  3400. extra: 1873/1761,
  3401. bottom: 147/2020
  3402. }
  3403. },
  3404. side: {
  3405. height: math.unit(5 + 3/12, "feet"),
  3406. weight: math.unit(60, "kg"),
  3407. name: "Side",
  3408. image: {
  3409. source: "./media/characters/zephiro/side.svg",
  3410. extra: 1929/1827,
  3411. bottom: 65/1994
  3412. }
  3413. },
  3414. back: {
  3415. height: math.unit(5 + 3/12, "feet"),
  3416. weight: math.unit(60, "kg"),
  3417. name: "Back",
  3418. image: {
  3419. source: "./media/characters/zephiro/back.svg",
  3420. extra: 1926/1816,
  3421. bottom: 41/1967
  3422. }
  3423. },
  3424. hand: {
  3425. height: math.unit(0.68, "feet"),
  3426. name: "Hand",
  3427. image: {
  3428. source: "./media/characters/zephiro/hand.svg"
  3429. }
  3430. },
  3431. paw: {
  3432. height: math.unit(1, "feet"),
  3433. name: "Paw",
  3434. image: {
  3435. source: "./media/characters/zephiro/paw.svg"
  3436. }
  3437. },
  3438. beans: {
  3439. height: math.unit(0.93, "feet"),
  3440. name: "Beans",
  3441. image: {
  3442. source: "./media/characters/zephiro/beans.svg"
  3443. }
  3444. },
  3445. },
  3446. [
  3447. {
  3448. name: "Micro",
  3449. height: math.unit(3, "inches")
  3450. },
  3451. {
  3452. name: "Normal",
  3453. height: math.unit(5 + 3 / 12, "feet"),
  3454. default: true
  3455. },
  3456. {
  3457. name: "Macro",
  3458. height: math.unit(118, "feet")
  3459. },
  3460. ]
  3461. ))
  3462. characterMakers.push(() => makeCharacter(
  3463. { name: "Fory", species: ["weasel", "rabbit"], tags: ["anthro"] },
  3464. {
  3465. front: {
  3466. height: math.unit(5, "feet"),
  3467. weight: math.unit(90, "kg"),
  3468. preyCapacity: math.unit(14, "people"),
  3469. name: "Front",
  3470. image: {
  3471. source: "./media/characters/fory/front.svg",
  3472. extra: 2862 / 2674,
  3473. bottom: 180 / 3043.8
  3474. },
  3475. form: "weaselbun",
  3476. default: true,
  3477. extraAttributes: {
  3478. "pawSize": {
  3479. name: "Paw Size",
  3480. power: 2,
  3481. type: "area",
  3482. base: math.unit(0.1596, "m^2")
  3483. },
  3484. "pawLength": {
  3485. name: "Paw Length",
  3486. power: 1,
  3487. type: "length",
  3488. base: math.unit(0.7, "m")
  3489. }
  3490. }
  3491. },
  3492. back: {
  3493. height: math.unit(5, "feet"),
  3494. weight: math.unit(90, "kg"),
  3495. preyCapacity: math.unit(14, "people"),
  3496. name: "Back",
  3497. image: {
  3498. source: "./media/characters/fory/back.svg",
  3499. extra: 1790/1672,
  3500. bottom: 84/1874
  3501. },
  3502. form: "weaselbun",
  3503. extraAttributes: {
  3504. "pawSize": {
  3505. name: "Paw Size",
  3506. power: 2,
  3507. type: "area",
  3508. base: math.unit(0.1596, "m^2")
  3509. },
  3510. "pawLength": {
  3511. name: "Paw Length",
  3512. power: 1,
  3513. type: "length",
  3514. base: math.unit(0.7, "m")
  3515. }
  3516. }
  3517. },
  3518. paw: {
  3519. height: math.unit(2.14, "feet"),
  3520. name: "Paw",
  3521. image: {
  3522. source: "./media/characters/fory/paw.svg"
  3523. },
  3524. form: "weaselbun",
  3525. extraAttributes: {
  3526. "pawSize": {
  3527. name: "Paw Size",
  3528. power: 2,
  3529. type: "area",
  3530. base: math.unit(0.1596, "m^2")
  3531. },
  3532. "pawLength": {
  3533. name: "Paw Length",
  3534. power: 1,
  3535. type: "length",
  3536. base: math.unit(0.48, "m")
  3537. }
  3538. }
  3539. },
  3540. bunBack: {
  3541. height: math.unit(3, "feet"),
  3542. weight: math.unit(20, "kg"),
  3543. preyCapacity: math.unit(3, "people"),
  3544. name: "Back",
  3545. image: {
  3546. source: "./media/characters/fory/bun-back.svg",
  3547. extra: 1749/1564,
  3548. bottom: 246/1995
  3549. },
  3550. form: "bun",
  3551. default: true,
  3552. extraAttributes: {
  3553. "pawSize": {
  3554. name: "Paw Size",
  3555. power: 2,
  3556. type: "area",
  3557. base: math.unit(0.072, "m^2")
  3558. },
  3559. "pawLength": {
  3560. name: "Paw Length",
  3561. power: 1,
  3562. type: "length",
  3563. base: math.unit(0.45, "m")
  3564. }
  3565. }
  3566. },
  3567. },
  3568. [
  3569. {
  3570. name: "Normal",
  3571. height: math.unit(5, "feet"),
  3572. form: "weaselbun"
  3573. },
  3574. {
  3575. name: "Macro",
  3576. height: math.unit(50, "feet"),
  3577. default: true,
  3578. form: "weaselbun"
  3579. },
  3580. {
  3581. name: "Megamacro",
  3582. height: math.unit(10, "miles"),
  3583. form: "weaselbun"
  3584. },
  3585. {
  3586. name: "Gigamacro",
  3587. height: math.unit(5, "earths"),
  3588. form: "weaselbun"
  3589. },
  3590. {
  3591. name: "Normal",
  3592. height: math.unit(3, "feet"),
  3593. default: true,
  3594. form: "bun"
  3595. },
  3596. {
  3597. name: "Fun-Size",
  3598. height: math.unit(12, "feet"),
  3599. form: "bun"
  3600. },
  3601. {
  3602. name: "Macro",
  3603. height: math.unit(100, "feet"),
  3604. form: "bun"
  3605. },
  3606. {
  3607. name: "Planetary",
  3608. height: math.unit(3, "earths"),
  3609. form: "bun"
  3610. },
  3611. ],
  3612. {
  3613. "weaselbun": {
  3614. name: "Weaselbun",
  3615. default: true
  3616. },
  3617. "bun": {
  3618. name: "Bun",
  3619. },
  3620. }
  3621. ))
  3622. characterMakers.push(() => makeCharacter(
  3623. { name: "Kurrikage", species: ["dragon"], tags: ["anthro"] },
  3624. {
  3625. front: {
  3626. height: math.unit(7, "feet"),
  3627. weight: math.unit(90, "kg"),
  3628. name: "Front",
  3629. image: {
  3630. source: "./media/characters/kurrikage/front.svg",
  3631. extra: 1845/1733,
  3632. bottom: 119/1964
  3633. }
  3634. },
  3635. back: {
  3636. height: math.unit(7, "feet"),
  3637. weight: math.unit(90, "kg"),
  3638. name: "Back",
  3639. image: {
  3640. source: "./media/characters/kurrikage/back.svg",
  3641. extra: 1790/1677,
  3642. bottom: 61/1851
  3643. }
  3644. },
  3645. dressed: {
  3646. height: math.unit(7, "feet"),
  3647. weight: math.unit(90, "kg"),
  3648. name: "Dressed",
  3649. image: {
  3650. source: "./media/characters/kurrikage/dressed.svg",
  3651. extra: 1845/1733,
  3652. bottom: 119/1964
  3653. }
  3654. },
  3655. foot: {
  3656. height: math.unit(1.5, "feet"),
  3657. name: "Foot",
  3658. image: {
  3659. source: "./media/characters/kurrikage/foot.svg"
  3660. }
  3661. },
  3662. staff: {
  3663. height: math.unit(6.7, "feet"),
  3664. name: "Staff",
  3665. image: {
  3666. source: "./media/characters/kurrikage/staff.svg"
  3667. }
  3668. },
  3669. peek: {
  3670. height: math.unit(1.05, "feet"),
  3671. name: "Peeking",
  3672. image: {
  3673. source: "./media/characters/kurrikage/peek.svg",
  3674. bottom: 0.08
  3675. }
  3676. },
  3677. },
  3678. [
  3679. {
  3680. name: "Normal",
  3681. height: math.unit(12, "feet"),
  3682. default: true
  3683. },
  3684. {
  3685. name: "Big",
  3686. height: math.unit(20, "feet")
  3687. },
  3688. {
  3689. name: "Macro",
  3690. height: math.unit(500, "feet")
  3691. },
  3692. {
  3693. name: "Megamacro",
  3694. height: math.unit(20, "miles")
  3695. },
  3696. ]
  3697. ))
  3698. characterMakers.push(() => makeCharacter(
  3699. { name: "Shingo", species: ["red-panda"], tags: ["anthro"] },
  3700. {
  3701. front: {
  3702. height: math.unit(6, "feet"),
  3703. weight: math.unit(75, "kg"),
  3704. name: "Front",
  3705. image: {
  3706. source: "./media/characters/shingo/front.svg",
  3707. extra: 1900/1825,
  3708. bottom: 82/1982
  3709. }
  3710. },
  3711. side: {
  3712. height: math.unit(6, "feet"),
  3713. weight: math.unit(75, "kg"),
  3714. name: "Side",
  3715. image: {
  3716. source: "./media/characters/shingo/side.svg",
  3717. extra: 1930/1865,
  3718. bottom: 16/1946
  3719. }
  3720. },
  3721. back: {
  3722. height: math.unit(6, "feet"),
  3723. weight: math.unit(75, "kg"),
  3724. name: "Back",
  3725. image: {
  3726. source: "./media/characters/shingo/back.svg",
  3727. extra: 1922/1852,
  3728. bottom: 16/1938
  3729. }
  3730. },
  3731. frontDressed: {
  3732. height: math.unit(6, "feet"),
  3733. weight: math.unit(150, "lb"),
  3734. name: "Front-dressed",
  3735. image: {
  3736. source: "./media/characters/shingo/front-dressed.svg",
  3737. extra: 1900/1825,
  3738. bottom: 82/1982
  3739. }
  3740. },
  3741. paw: {
  3742. height: math.unit(1.29, "feet"),
  3743. name: "Paw",
  3744. image: {
  3745. source: "./media/characters/shingo/paw.svg"
  3746. }
  3747. },
  3748. hand: {
  3749. height: math.unit(1.07, "feet"),
  3750. name: "Hand",
  3751. image: {
  3752. source: "./media/characters/shingo/hand.svg"
  3753. }
  3754. },
  3755. frontAlt: {
  3756. height: math.unit(6, "feet"),
  3757. weight: math.unit(75, "kg"),
  3758. name: "Front (Alt)",
  3759. image: {
  3760. source: "./media/characters/shingo/front-alt.svg",
  3761. extra: 3511 / 3338,
  3762. bottom: 0.005
  3763. }
  3764. },
  3765. frontAlt2: {
  3766. height: math.unit(6, "feet"),
  3767. weight: math.unit(75, "kg"),
  3768. name: "Front (Alt 2)",
  3769. image: {
  3770. source: "./media/characters/shingo/front-alt-2.svg",
  3771. extra: 706/681,
  3772. bottom: 11/717
  3773. }
  3774. },
  3775. pawAlt: {
  3776. height: math.unit(1, "feet"),
  3777. name: "Paw (Alt)",
  3778. image: {
  3779. source: "./media/characters/shingo/paw-alt.svg"
  3780. }
  3781. },
  3782. },
  3783. [
  3784. {
  3785. name: "Micro",
  3786. height: math.unit(4, "inches")
  3787. },
  3788. {
  3789. name: "Normal",
  3790. height: math.unit(6, "feet"),
  3791. default: true
  3792. },
  3793. {
  3794. name: "Macro",
  3795. height: math.unit(108, "feet")
  3796. },
  3797. {
  3798. name: "Macro+",
  3799. height: math.unit(1500, "feet")
  3800. },
  3801. ]
  3802. ))
  3803. characterMakers.push(() => makeCharacter(
  3804. { name: "Aigey", species: ["wolf", "dolphin"], tags: ["anthro"] },
  3805. {
  3806. side: {
  3807. height: math.unit(6, "feet"),
  3808. weight: math.unit(75, "kg"),
  3809. name: "Side",
  3810. image: {
  3811. source: "./media/characters/aigey/side.svg"
  3812. }
  3813. },
  3814. },
  3815. [
  3816. {
  3817. name: "Macro",
  3818. height: math.unit(200, "feet"),
  3819. default: true
  3820. },
  3821. {
  3822. name: "Megamacro",
  3823. height: math.unit(100, "miles")
  3824. },
  3825. ]
  3826. )
  3827. )
  3828. characterMakers.push(() => makeCharacter(
  3829. { name: "Natasha", species: ["african-wild-dog"], tags: ["anthro"] },
  3830. {
  3831. front: {
  3832. height: math.unit(5 + 5 / 12, "feet"),
  3833. weight: math.unit(75, "kg"),
  3834. name: "Front",
  3835. image: {
  3836. source: "./media/characters/natasha/front.svg",
  3837. extra: 859 / 824,
  3838. bottom: 23 / 879.6
  3839. }
  3840. },
  3841. frontNsfw: {
  3842. height: math.unit(5 + 5 / 12, "feet"),
  3843. weight: math.unit(75, "kg"),
  3844. name: "Front (NSFW)",
  3845. image: {
  3846. source: "./media/characters/natasha/front-nsfw.svg",
  3847. extra: 859 / 824,
  3848. bottom: 23 / 879.6
  3849. }
  3850. },
  3851. frontErect: {
  3852. height: math.unit(5 + 5 / 12, "feet"),
  3853. weight: math.unit(75, "kg"),
  3854. name: "Front (Erect)",
  3855. image: {
  3856. source: "./media/characters/natasha/front-erect.svg",
  3857. extra: 859 / 824,
  3858. bottom: 23 / 879.6
  3859. }
  3860. },
  3861. back: {
  3862. height: math.unit(5 + 5 / 12, "feet"),
  3863. weight: math.unit(75, "kg"),
  3864. name: "Back",
  3865. image: {
  3866. source: "./media/characters/natasha/back.svg",
  3867. extra: 887.9 / 852.6,
  3868. bottom: 9.7 / 896.4
  3869. }
  3870. },
  3871. backAlt: {
  3872. height: math.unit(5 + 5 / 12, "feet"),
  3873. weight: math.unit(75, "kg"),
  3874. name: "Back (Alt)",
  3875. image: {
  3876. source: "./media/characters/natasha/back-alt.svg",
  3877. extra: 1236.7 / 1192,
  3878. bottom: 22.3 / 1258.2
  3879. }
  3880. },
  3881. dick: {
  3882. height: math.unit(1.772, "feet"),
  3883. name: "Dick",
  3884. image: {
  3885. source: "./media/characters/natasha/dick.svg"
  3886. }
  3887. },
  3888. paw: {
  3889. height: math.unit(0.250, "meters"),
  3890. name: "Paw",
  3891. image: {
  3892. source: "./media/characters/natasha/paw.svg"
  3893. },
  3894. extraAttributes: {
  3895. "toeSize": {
  3896. name: "Toe Size",
  3897. power: 2,
  3898. type: "area",
  3899. base: math.unit(0.0024, "m^2")
  3900. },
  3901. "padSize": {
  3902. name: "Pad Size",
  3903. power: 2,
  3904. type: "area",
  3905. base: math.unit(0.00889, "m^2")
  3906. },
  3907. "pawSize": {
  3908. name: "Paw Size",
  3909. power: 2,
  3910. type: "area",
  3911. base: math.unit(0.023667, "m^2")
  3912. },
  3913. }
  3914. },
  3915. },
  3916. [
  3917. {
  3918. name: "Shortstack",
  3919. height: math.unit(3, "feet"),
  3920. default: true
  3921. },
  3922. {
  3923. name: "Normal",
  3924. height: math.unit(5 + 5 / 12, "feet")
  3925. },
  3926. {
  3927. name: "Large",
  3928. height: math.unit(12, "feet")
  3929. },
  3930. {
  3931. name: "Macro",
  3932. height: math.unit(100, "feet")
  3933. },
  3934. {
  3935. name: "Macro+",
  3936. height: math.unit(260, "feet")
  3937. },
  3938. {
  3939. name: "Macro++",
  3940. height: math.unit(1, "mile")
  3941. },
  3942. ]
  3943. ))
  3944. characterMakers.push(() => makeCharacter(
  3945. { name: "Malik", species: ["hyena"], tags: ["anthro"] },
  3946. {
  3947. front: {
  3948. height: math.unit(6, "feet"),
  3949. weight: math.unit(75, "kg"),
  3950. name: "Front",
  3951. image: {
  3952. source: "./media/characters/malik/front.svg",
  3953. extra: 1750/1561,
  3954. bottom: 80/1830
  3955. },
  3956. extraAttributes: {
  3957. "toeSize": {
  3958. name: "Toe Size",
  3959. power: 2,
  3960. type: "area",
  3961. base: math.unit(0.0159, "m^2")
  3962. },
  3963. "pawSize": {
  3964. name: "Paw Size",
  3965. power: 2,
  3966. type: "area",
  3967. base: math.unit(0.09834, "m^2")
  3968. },
  3969. }
  3970. },
  3971. side: {
  3972. height: math.unit(6, "feet"),
  3973. weight: math.unit(75, "kg"),
  3974. name: "Side",
  3975. image: {
  3976. source: "./media/characters/malik/side.svg",
  3977. extra: 1802/1685,
  3978. bottom: 42/1844
  3979. },
  3980. extraAttributes: {
  3981. "toeSize": {
  3982. name: "Toe Size",
  3983. power: 2,
  3984. type: "area",
  3985. base: math.unit(0.0159, "m^2")
  3986. },
  3987. "pawSize": {
  3988. name: "Paw Size",
  3989. power: 2,
  3990. type: "area",
  3991. base: math.unit(0.09834, "m^2")
  3992. },
  3993. }
  3994. },
  3995. back: {
  3996. height: math.unit(6, "feet"),
  3997. weight: math.unit(75, "kg"),
  3998. name: "Back",
  3999. image: {
  4000. source: "./media/characters/malik/back.svg",
  4001. extra: 1803/1607,
  4002. bottom: 33/1836
  4003. },
  4004. extraAttributes: {
  4005. "toeSize": {
  4006. name: "Toe Size",
  4007. power: 2,
  4008. type: "area",
  4009. base: math.unit(0.0159, "m^2")
  4010. },
  4011. "pawSize": {
  4012. name: "Paw Size",
  4013. power: 2,
  4014. type: "area",
  4015. base: math.unit(0.09834, "m^2")
  4016. },
  4017. }
  4018. },
  4019. },
  4020. [
  4021. {
  4022. name: "Macro",
  4023. height: math.unit(156, "feet"),
  4024. default: true
  4025. },
  4026. {
  4027. name: "Macro+",
  4028. height: math.unit(1188, "feet")
  4029. },
  4030. ]
  4031. ))
  4032. characterMakers.push(() => makeCharacter(
  4033. { name: "Sefer", species: ["carbuncle"], tags: ["anthro"] },
  4034. {
  4035. front: {
  4036. height: math.unit(6, "feet"),
  4037. weight: math.unit(75, "kg"),
  4038. name: "Front",
  4039. image: {
  4040. source: "./media/characters/sefer/front.svg",
  4041. extra: 848 / 659,
  4042. bottom: 28.3 / 876.442
  4043. }
  4044. },
  4045. back: {
  4046. height: math.unit(6, "feet"),
  4047. weight: math.unit(75, "kg"),
  4048. name: "Back",
  4049. image: {
  4050. source: "./media/characters/sefer/back.svg",
  4051. extra: 864 / 695,
  4052. bottom: 10 / 871
  4053. }
  4054. },
  4055. frontDressed: {
  4056. height: math.unit(6, "feet"),
  4057. weight: math.unit(75, "kg"),
  4058. name: "Dressed",
  4059. image: {
  4060. source: "./media/characters/sefer/dressed.svg",
  4061. extra: 839 / 653,
  4062. bottom: 37.6 / 878
  4063. }
  4064. },
  4065. },
  4066. [
  4067. {
  4068. name: "Normal",
  4069. height: math.unit(6, "feet"),
  4070. default: true
  4071. },
  4072. {
  4073. name: "Big",
  4074. height: math.unit(8, "meters")
  4075. },
  4076. ]
  4077. ))
  4078. characterMakers.push(() => makeCharacter(
  4079. { name: "North", species: ["leaf-nosed-bat"], tags: ["anthro"] },
  4080. {
  4081. body: {
  4082. height: math.unit(2.2428, "meter"),
  4083. weight: math.unit(124.738, "kg"),
  4084. name: "Body",
  4085. image: {
  4086. extra: 1225 / 1050,
  4087. source: "./media/characters/north/front.svg"
  4088. }
  4089. }
  4090. },
  4091. [
  4092. {
  4093. name: "Micro",
  4094. height: math.unit(4, "inches")
  4095. },
  4096. {
  4097. name: "Macro",
  4098. height: math.unit(63, "meters")
  4099. },
  4100. {
  4101. name: "Megamacro",
  4102. height: math.unit(101, "miles"),
  4103. default: true
  4104. }
  4105. ]
  4106. ))
  4107. characterMakers.push(() => makeCharacter(
  4108. { name: "Talan", species: ["dragon", "fish"], tags: ["anthro"] },
  4109. {
  4110. angled: {
  4111. height: math.unit(4, "meter"),
  4112. weight: math.unit(150, "kg"),
  4113. name: "Angled",
  4114. image: {
  4115. source: "./media/characters/talan/angled-sfw.svg",
  4116. bottom: 29 / 3734
  4117. }
  4118. },
  4119. angledNsfw: {
  4120. height: math.unit(4, "meter"),
  4121. weight: math.unit(150, "kg"),
  4122. name: "Angled (NSFW)",
  4123. image: {
  4124. source: "./media/characters/talan/angled-nsfw.svg",
  4125. bottom: 29 / 3734
  4126. }
  4127. },
  4128. frontNsfw: {
  4129. height: math.unit(4, "meter"),
  4130. weight: math.unit(150, "kg"),
  4131. name: "Front (NSFW)",
  4132. image: {
  4133. source: "./media/characters/talan/front-nsfw.svg",
  4134. bottom: 29 / 3734
  4135. }
  4136. },
  4137. sideNsfw: {
  4138. height: math.unit(4, "meter"),
  4139. weight: math.unit(150, "kg"),
  4140. name: "Side (NSFW)",
  4141. image: {
  4142. source: "./media/characters/talan/side-nsfw.svg",
  4143. bottom: 29 / 3734
  4144. }
  4145. },
  4146. back: {
  4147. height: math.unit(4, "meter"),
  4148. weight: math.unit(150, "kg"),
  4149. name: "Back",
  4150. image: {
  4151. source: "./media/characters/talan/back.svg"
  4152. }
  4153. },
  4154. dickBottom: {
  4155. height: math.unit(0.621, "meter"),
  4156. name: "Dick (Bottom)",
  4157. image: {
  4158. source: "./media/characters/talan/dick-bottom.svg"
  4159. }
  4160. },
  4161. dickTop: {
  4162. height: math.unit(0.621, "meter"),
  4163. name: "Dick (Top)",
  4164. image: {
  4165. source: "./media/characters/talan/dick-top.svg"
  4166. }
  4167. },
  4168. dickSide: {
  4169. height: math.unit(0.305, "meter"),
  4170. name: "Dick (Side)",
  4171. image: {
  4172. source: "./media/characters/talan/dick-side.svg"
  4173. }
  4174. },
  4175. dickFront: {
  4176. height: math.unit(0.305, "meter"),
  4177. name: "Dick (Front)",
  4178. image: {
  4179. source: "./media/characters/talan/dick-front.svg"
  4180. }
  4181. },
  4182. },
  4183. [
  4184. {
  4185. name: "Normal",
  4186. height: math.unit(4, "meters")
  4187. },
  4188. {
  4189. name: "Macro",
  4190. height: math.unit(100, "meters")
  4191. },
  4192. {
  4193. name: "Megamacro",
  4194. height: math.unit(2, "miles"),
  4195. default: true
  4196. },
  4197. {
  4198. name: "Gigamacro",
  4199. height: math.unit(5000, "miles")
  4200. },
  4201. {
  4202. name: "Teramacro",
  4203. height: math.unit(100, "parsecs")
  4204. }
  4205. ]
  4206. ))
  4207. characterMakers.push(() => makeCharacter(
  4208. { name: "Gael'Rathus", species: ["ram", "demon"], tags: ["anthro"] },
  4209. {
  4210. front: {
  4211. height: math.unit(2, "meter"),
  4212. weight: math.unit(90, "kg"),
  4213. name: "Front",
  4214. image: {
  4215. source: "./media/characters/gael'rathus/front.svg"
  4216. }
  4217. },
  4218. frontAlt: {
  4219. height: math.unit(2, "meter"),
  4220. weight: math.unit(90, "kg"),
  4221. name: "Front (alt)",
  4222. image: {
  4223. source: "./media/characters/gael'rathus/front-alt.svg"
  4224. }
  4225. },
  4226. frontAlt2: {
  4227. height: math.unit(2, "meter"),
  4228. weight: math.unit(90, "kg"),
  4229. name: "Front (alt 2)",
  4230. image: {
  4231. source: "./media/characters/gael'rathus/front-alt-2.svg"
  4232. }
  4233. }
  4234. },
  4235. [
  4236. {
  4237. name: "Normal",
  4238. height: math.unit(9, "feet"),
  4239. default: true
  4240. },
  4241. {
  4242. name: "Large",
  4243. height: math.unit(25, "feet")
  4244. },
  4245. {
  4246. name: "Macro",
  4247. height: math.unit(0.25, "miles")
  4248. },
  4249. {
  4250. name: "Megamacro",
  4251. height: math.unit(10, "miles")
  4252. }
  4253. ]
  4254. ))
  4255. characterMakers.push(() => makeCharacter(
  4256. { name: "Sosha", species: ["cougar"], tags: ["feral"] },
  4257. {
  4258. side: {
  4259. height: math.unit(2, "meter"),
  4260. weight: math.unit(140, "kg"),
  4261. name: "Side",
  4262. image: {
  4263. source: "./media/characters/sosha/side.svg",
  4264. extra: 1170/1006,
  4265. bottom: 94/1264
  4266. }
  4267. },
  4268. maw: {
  4269. height: math.unit(2.87, "feet"),
  4270. name: "Maw",
  4271. image: {
  4272. source: "./media/characters/sosha/maw.svg",
  4273. extra: 966/865,
  4274. bottom: 0/966
  4275. }
  4276. },
  4277. cooch: {
  4278. height: math.unit(5.6, "feet"),
  4279. name: "Cooch",
  4280. image: {
  4281. source: "./media/characters/sosha/cooch.svg"
  4282. }
  4283. },
  4284. },
  4285. [
  4286. {
  4287. name: "Normal",
  4288. height: math.unit(12, "feet"),
  4289. default: true
  4290. }
  4291. ]
  4292. ))
  4293. characterMakers.push(() => makeCharacter(
  4294. { name: "RuNNoLa", species: ["wolf"], tags: ["feral"] },
  4295. {
  4296. side: {
  4297. height: math.unit(5 + 5 / 12, "feet"),
  4298. weight: math.unit(170, "kg"),
  4299. name: "Side",
  4300. image: {
  4301. source: "./media/characters/runnola/side.svg",
  4302. extra: 741 / 448,
  4303. bottom: 0.05
  4304. }
  4305. },
  4306. },
  4307. [
  4308. {
  4309. name: "Small",
  4310. height: math.unit(3, "feet")
  4311. },
  4312. {
  4313. name: "Normal",
  4314. height: math.unit(5 + 5 / 12, "feet"),
  4315. default: true
  4316. },
  4317. {
  4318. name: "Big",
  4319. height: math.unit(10, "feet")
  4320. },
  4321. ]
  4322. ))
  4323. characterMakers.push(() => makeCharacter(
  4324. { name: "Kurribird", species: ["avian"], tags: ["anthro"] },
  4325. {
  4326. front: {
  4327. height: math.unit(2, "meter"),
  4328. weight: math.unit(50, "kg"),
  4329. name: "Front",
  4330. image: {
  4331. source: "./media/characters/kurribird/front.svg",
  4332. bottom: 0.015
  4333. }
  4334. },
  4335. frontAlt: {
  4336. height: math.unit(1.5, "meter"),
  4337. weight: math.unit(50, "kg"),
  4338. name: "Front (Alt)",
  4339. image: {
  4340. source: "./media/characters/kurribird/front-alt.svg",
  4341. extra: 1.45
  4342. }
  4343. },
  4344. },
  4345. [
  4346. {
  4347. name: "Normal",
  4348. height: math.unit(7, "feet")
  4349. },
  4350. {
  4351. name: "Big",
  4352. height: math.unit(12, "feet"),
  4353. default: true
  4354. },
  4355. {
  4356. name: "Macro",
  4357. height: math.unit(1500, "feet")
  4358. },
  4359. {
  4360. name: "Megamacro",
  4361. height: math.unit(2, "miles")
  4362. }
  4363. ]
  4364. ))
  4365. characterMakers.push(() => makeCharacter(
  4366. { name: "Elbial", species: ["goat", "lion", "demon", "deity"], tags: ["anthro"] },
  4367. {
  4368. front: {
  4369. height: math.unit(2, "meter"),
  4370. weight: math.unit(80, "kg"),
  4371. name: "Front",
  4372. image: {
  4373. source: "./media/characters/elbial/front.svg",
  4374. extra: 1643 / 1556,
  4375. bottom: 60.2 / 1696
  4376. }
  4377. },
  4378. side: {
  4379. height: math.unit(2, "meter"),
  4380. weight: math.unit(80, "kg"),
  4381. name: "Side",
  4382. image: {
  4383. source: "./media/characters/elbial/side.svg",
  4384. extra: 1601/1528,
  4385. bottom: 97/1698
  4386. }
  4387. },
  4388. back: {
  4389. height: math.unit(2, "meter"),
  4390. weight: math.unit(80, "kg"),
  4391. name: "Back",
  4392. image: {
  4393. source: "./media/characters/elbial/back.svg",
  4394. extra: 1653/1569,
  4395. bottom: 20/1673
  4396. }
  4397. },
  4398. frontDressed: {
  4399. height: math.unit(2, "meter"),
  4400. weight: math.unit(80, "kg"),
  4401. name: "Front (Dressed)",
  4402. image: {
  4403. source: "./media/characters/elbial/front-dressed.svg",
  4404. extra: 1638/1569,
  4405. bottom: 70/1708
  4406. }
  4407. },
  4408. genitals: {
  4409. height: math.unit(2 / 3.367, "meter"),
  4410. name: "Genitals",
  4411. image: {
  4412. source: "./media/characters/elbial/genitals.svg"
  4413. }
  4414. },
  4415. },
  4416. [
  4417. {
  4418. name: "Large",
  4419. height: math.unit(100, "feet")
  4420. },
  4421. {
  4422. name: "Macro",
  4423. height: math.unit(500, "feet"),
  4424. default: true
  4425. },
  4426. {
  4427. name: "Megamacro",
  4428. height: math.unit(10, "miles")
  4429. },
  4430. {
  4431. name: "Gigamacro",
  4432. height: math.unit(25000, "miles")
  4433. },
  4434. {
  4435. name: "Full-Size",
  4436. height: math.unit(8000000, "gigaparsecs")
  4437. }
  4438. ]
  4439. ))
  4440. characterMakers.push(() => makeCharacter(
  4441. { name: "Noah", species: ["harpy-eagle"], tags: ["anthro"] },
  4442. {
  4443. front: {
  4444. height: math.unit(2, "meter"),
  4445. weight: math.unit(60, "kg"),
  4446. name: "Front",
  4447. image: {
  4448. source: "./media/characters/noah/front.svg",
  4449. extra: 1383/1313,
  4450. bottom: 104/1487
  4451. }
  4452. },
  4453. hand: {
  4454. height: math.unit(0.6, "feet"),
  4455. name: "Hand",
  4456. image: {
  4457. source: "./media/characters/noah/hand.svg"
  4458. }
  4459. },
  4460. talons: {
  4461. height: math.unit(1.385, "feet"),
  4462. name: "Talons",
  4463. image: {
  4464. source: "./media/characters/noah/talons.svg"
  4465. }
  4466. },
  4467. beak: {
  4468. height: math.unit(0.43, "feet"),
  4469. name: "Beak",
  4470. image: {
  4471. source: "./media/characters/noah/beak.svg"
  4472. }
  4473. },
  4474. collar: {
  4475. height: math.unit(0.88, "feet"),
  4476. name: "Collar",
  4477. image: {
  4478. source: "./media/characters/noah/collar.svg"
  4479. }
  4480. },
  4481. eyeNarrow: {
  4482. height: math.unit(0.18, "feet"),
  4483. name: "Eye (Narrow)",
  4484. image: {
  4485. source: "./media/characters/noah/eye-narrow.svg"
  4486. }
  4487. },
  4488. eyeNormal: {
  4489. height: math.unit(0.18, "feet"),
  4490. name: "Eye (Normal)",
  4491. image: {
  4492. source: "./media/characters/noah/eye-normal.svg"
  4493. }
  4494. },
  4495. eyeWide: {
  4496. height: math.unit(0.18, "feet"),
  4497. name: "Eye (Wide)",
  4498. image: {
  4499. source: "./media/characters/noah/eye-wide.svg"
  4500. }
  4501. },
  4502. ear: {
  4503. height: math.unit(0.64, "feet"),
  4504. name: "Ear",
  4505. image: {
  4506. source: "./media/characters/noah/ear.svg"
  4507. }
  4508. },
  4509. },
  4510. [
  4511. {
  4512. name: "Large",
  4513. height: math.unit(50, "feet")
  4514. },
  4515. {
  4516. name: "Macro",
  4517. height: math.unit(750, "feet"),
  4518. default: true
  4519. },
  4520. {
  4521. name: "Megamacro",
  4522. height: math.unit(50, "miles")
  4523. },
  4524. {
  4525. name: "Gigamacro",
  4526. height: math.unit(100000, "miles")
  4527. },
  4528. {
  4529. name: "Full-Size",
  4530. height: math.unit(3000000000, "miles")
  4531. }
  4532. ]
  4533. ))
  4534. characterMakers.push(() => makeCharacter(
  4535. { name: "Natalya", species: ["wolf"], tags: ["anthro"] },
  4536. {
  4537. front: {
  4538. height: math.unit(2, "meter"),
  4539. weight: math.unit(80, "kg"),
  4540. name: "Front",
  4541. image: {
  4542. source: "./media/characters/natalya/front.svg"
  4543. }
  4544. },
  4545. back: {
  4546. height: math.unit(2, "meter"),
  4547. weight: math.unit(80, "kg"),
  4548. name: "Back",
  4549. image: {
  4550. source: "./media/characters/natalya/back.svg"
  4551. }
  4552. }
  4553. },
  4554. [
  4555. {
  4556. name: "Normal",
  4557. height: math.unit(150, "feet"),
  4558. default: true
  4559. },
  4560. {
  4561. name: "Megamacro",
  4562. height: math.unit(5, "miles")
  4563. },
  4564. {
  4565. name: "Full-Size",
  4566. height: math.unit(600, "kiloparsecs")
  4567. }
  4568. ]
  4569. ))
  4570. characterMakers.push(() => makeCharacter(
  4571. { name: "Erestrebah", species: ["avian", "deer"], tags: ["anthro"] },
  4572. {
  4573. front: {
  4574. height: math.unit(2, "meter"),
  4575. weight: math.unit(50, "kg"),
  4576. name: "Front",
  4577. image: {
  4578. source: "./media/characters/erestrebah/front.svg",
  4579. extra: 1262/1162,
  4580. bottom: 96/1358
  4581. }
  4582. },
  4583. back: {
  4584. height: math.unit(2, "meter"),
  4585. weight: math.unit(50, "kg"),
  4586. name: "Back",
  4587. image: {
  4588. source: "./media/characters/erestrebah/back.svg",
  4589. extra: 1257/1139,
  4590. bottom: 13/1270
  4591. }
  4592. },
  4593. wing: {
  4594. height: math.unit(2, "meter"),
  4595. weight: math.unit(50, "kg"),
  4596. name: "Wing",
  4597. image: {
  4598. source: "./media/characters/erestrebah/wing.svg",
  4599. extra: 1262/1162,
  4600. bottom: 96/1358
  4601. }
  4602. },
  4603. mouth: {
  4604. height: math.unit(0.39, "feet"),
  4605. name: "Mouth",
  4606. image: {
  4607. source: "./media/characters/erestrebah/mouth.svg"
  4608. }
  4609. }
  4610. },
  4611. [
  4612. {
  4613. name: "Normal",
  4614. height: math.unit(10, "feet")
  4615. },
  4616. {
  4617. name: "Large",
  4618. height: math.unit(50, "feet"),
  4619. default: true
  4620. },
  4621. {
  4622. name: "Macro",
  4623. height: math.unit(300, "feet")
  4624. },
  4625. {
  4626. name: "Macro+",
  4627. height: math.unit(750, "feet")
  4628. },
  4629. {
  4630. name: "Megamacro",
  4631. height: math.unit(3, "miles")
  4632. }
  4633. ]
  4634. ))
  4635. characterMakers.push(() => makeCharacter(
  4636. { name: "Jennifer", species: ["rat", "demon"], tags: ["anthro"] },
  4637. {
  4638. front: {
  4639. height: math.unit(2, "meter"),
  4640. weight: math.unit(80, "kg"),
  4641. name: "Front",
  4642. image: {
  4643. source: "./media/characters/jennifer/front.svg",
  4644. bottom: 0.11,
  4645. extra: 1.16
  4646. }
  4647. },
  4648. frontAlt: {
  4649. height: math.unit(2, "meter"),
  4650. weight: math.unit(80, "kg"),
  4651. name: "Front (Alt)",
  4652. image: {
  4653. source: "./media/characters/jennifer/front-alt.svg"
  4654. }
  4655. }
  4656. },
  4657. [
  4658. {
  4659. name: "Canon Height",
  4660. height: math.unit(120, "feet"),
  4661. default: true
  4662. },
  4663. {
  4664. name: "Macro+",
  4665. height: math.unit(300, "feet")
  4666. },
  4667. {
  4668. name: "Megamacro",
  4669. height: math.unit(20000, "feet")
  4670. }
  4671. ]
  4672. ))
  4673. characterMakers.push(() => makeCharacter(
  4674. { name: "Kalista", species: ["phoenix"], tags: ["anthro"] },
  4675. {
  4676. front: {
  4677. height: math.unit(2, "meter"),
  4678. weight: math.unit(50, "kg"),
  4679. name: "Front",
  4680. image: {
  4681. source: "./media/characters/kalista/front.svg",
  4682. extra: 1314/1145,
  4683. bottom: 101/1415
  4684. }
  4685. },
  4686. back: {
  4687. height: math.unit(2, "meter"),
  4688. weight: math.unit(50, "kg"),
  4689. name: "Back",
  4690. image: {
  4691. source: "./media/characters/kalista/back.svg",
  4692. extra: 1366 / 1156,
  4693. bottom: 33.9 / 1362.78
  4694. }
  4695. }
  4696. },
  4697. [
  4698. {
  4699. name: "Uncomfortably Small",
  4700. height: math.unit(10, "feet")
  4701. },
  4702. {
  4703. name: "Small",
  4704. height: math.unit(30, "feet")
  4705. },
  4706. {
  4707. name: "Macro",
  4708. height: math.unit(100, "feet"),
  4709. default: true
  4710. },
  4711. {
  4712. name: "Macro+",
  4713. height: math.unit(2000, "feet")
  4714. },
  4715. {
  4716. name: "True Form",
  4717. height: math.unit(8924, "miles")
  4718. }
  4719. ]
  4720. ))
  4721. characterMakers.push(() => makeCharacter(
  4722. { name: "GiantGrowingVixen", species: ["fox"], tags: ["anthro"] },
  4723. {
  4724. front: {
  4725. height: math.unit(2, "meter"),
  4726. weight: math.unit(120, "kg"),
  4727. name: "Front",
  4728. image: {
  4729. source: "./media/characters/ggv/front.svg"
  4730. }
  4731. },
  4732. side: {
  4733. height: math.unit(2, "meter"),
  4734. weight: math.unit(120, "kg"),
  4735. name: "Side",
  4736. image: {
  4737. source: "./media/characters/ggv/side.svg"
  4738. }
  4739. }
  4740. },
  4741. [
  4742. {
  4743. name: "Extremely Puny",
  4744. height: math.unit(9 + 5 / 12, "feet")
  4745. },
  4746. {
  4747. name: "Horribly Small",
  4748. height: math.unit(47.7, "miles"),
  4749. default: true
  4750. },
  4751. {
  4752. name: "Reasonably Sized",
  4753. height: math.unit(25000, "parsecs")
  4754. },
  4755. {
  4756. name: "Slightly Uncompressed",
  4757. height: math.unit(7.77e31, "parsecs")
  4758. },
  4759. {
  4760. name: "Omniversal",
  4761. height: math.unit(1e300, "meters")
  4762. },
  4763. ]
  4764. ))
  4765. characterMakers.push(() => makeCharacter(
  4766. { name: "Napalm", species: ["aeromorph"], tags: ["anthro"] },
  4767. {
  4768. front: {
  4769. height: math.unit(2, "meter"),
  4770. weight: math.unit(75, "lb"),
  4771. name: "Front",
  4772. image: {
  4773. source: "./media/characters/napalm/front.svg"
  4774. }
  4775. },
  4776. back: {
  4777. height: math.unit(2, "meter"),
  4778. weight: math.unit(75, "lb"),
  4779. name: "Back",
  4780. image: {
  4781. source: "./media/characters/napalm/back.svg"
  4782. }
  4783. }
  4784. },
  4785. [
  4786. {
  4787. name: "Standard",
  4788. height: math.unit(55, "feet"),
  4789. default: true
  4790. }
  4791. ]
  4792. ))
  4793. characterMakers.push(() => makeCharacter(
  4794. { name: "Asana", species: ["android", "jackal"], tags: ["anthro"] },
  4795. {
  4796. front: {
  4797. height: math.unit(7 + 5 / 6, "feet"),
  4798. weight: math.unit(325, "lb"),
  4799. name: "Front",
  4800. image: {
  4801. source: "./media/characters/asana/front.svg",
  4802. extra: 1133 / 1060,
  4803. bottom: 15.2 / 1148.6
  4804. }
  4805. },
  4806. back: {
  4807. height: math.unit(7 + 5 / 6, "feet"),
  4808. weight: math.unit(325, "lb"),
  4809. name: "Back",
  4810. image: {
  4811. source: "./media/characters/asana/back.svg",
  4812. extra: 1114 / 1043,
  4813. bottom: 5 / 1120
  4814. }
  4815. },
  4816. dressedDark: {
  4817. height: math.unit(7 + 5 / 6, "feet"),
  4818. weight: math.unit(325, "lb"),
  4819. name: "Dressed (Dark)",
  4820. image: {
  4821. source: "./media/characters/asana/dressed-dark.svg",
  4822. extra: 1133 / 1060,
  4823. bottom: 15.2 / 1148.6
  4824. }
  4825. },
  4826. dressedLight: {
  4827. height: math.unit(7 + 5 / 6, "feet"),
  4828. weight: math.unit(325, "lb"),
  4829. name: "Dressed (Light)",
  4830. image: {
  4831. source: "./media/characters/asana/dressed-light.svg",
  4832. extra: 1133 / 1060,
  4833. bottom: 15.2 / 1148.6
  4834. }
  4835. },
  4836. },
  4837. [
  4838. {
  4839. name: "Standard",
  4840. height: math.unit(7 + 5 / 6, "feet"),
  4841. default: true
  4842. },
  4843. {
  4844. name: "Large",
  4845. height: math.unit(10, "meters")
  4846. },
  4847. {
  4848. name: "Macro",
  4849. height: math.unit(2500, "meters")
  4850. },
  4851. {
  4852. name: "Megamacro",
  4853. height: math.unit(5e6, "meters")
  4854. },
  4855. {
  4856. name: "Examacro",
  4857. height: math.unit(5e12, "lightyears")
  4858. },
  4859. {
  4860. name: "Max Size",
  4861. height: math.unit(1e31, "lightyears")
  4862. }
  4863. ]
  4864. ))
  4865. characterMakers.push(() => makeCharacter(
  4866. { name: "Ebony", species: ["hoshiko-beast"], tags: ["anthro"] },
  4867. {
  4868. front: {
  4869. height: math.unit(2, "meter"),
  4870. weight: math.unit(60, "kg"),
  4871. name: "Front",
  4872. image: {
  4873. source: "./media/characters/ebony/front.svg",
  4874. bottom: 0.03,
  4875. extra: 1045 / 810 + 0.03
  4876. }
  4877. },
  4878. side: {
  4879. height: math.unit(2, "meter"),
  4880. weight: math.unit(60, "kg"),
  4881. name: "Side",
  4882. image: {
  4883. source: "./media/characters/ebony/side.svg",
  4884. bottom: 0.03,
  4885. extra: 1045 / 810 + 0.03
  4886. }
  4887. },
  4888. back: {
  4889. height: math.unit(2, "meter"),
  4890. weight: math.unit(60, "kg"),
  4891. name: "Back",
  4892. image: {
  4893. source: "./media/characters/ebony/back.svg",
  4894. bottom: 0.01,
  4895. extra: 1045 / 810 + 0.01
  4896. }
  4897. },
  4898. },
  4899. [
  4900. // TODO check why I did this lol
  4901. {
  4902. name: "Standard",
  4903. height: math.unit(9 / 8 * (7 + 5 / 12), "feet"),
  4904. default: true
  4905. },
  4906. {
  4907. name: "Macro",
  4908. height: math.unit(200, "feet")
  4909. },
  4910. {
  4911. name: "Gigamacro",
  4912. height: math.unit(13000, "km")
  4913. }
  4914. ]
  4915. ))
  4916. characterMakers.push(() => makeCharacter(
  4917. { name: "Mountain", species: ["snow-jugani"], tags: ["anthro"] },
  4918. {
  4919. front: {
  4920. height: math.unit(6, "feet"),
  4921. weight: math.unit(175, "lb"),
  4922. name: "Front",
  4923. image: {
  4924. source: "./media/characters/mountain/front.svg",
  4925. extra: 972 / 955,
  4926. bottom: 64 / 1036.6
  4927. }
  4928. },
  4929. back: {
  4930. height: math.unit(6, "feet"),
  4931. weight: math.unit(175, "lb"),
  4932. name: "Back",
  4933. image: {
  4934. source: "./media/characters/mountain/back.svg",
  4935. extra: 970 / 950,
  4936. bottom: 28.25 / 999
  4937. }
  4938. },
  4939. },
  4940. [
  4941. {
  4942. name: "Large",
  4943. height: math.unit(20, "meters")
  4944. },
  4945. {
  4946. name: "Macro",
  4947. height: math.unit(300, "meters")
  4948. },
  4949. {
  4950. name: "Gigamacro",
  4951. height: math.unit(10000, "km"),
  4952. default: true
  4953. },
  4954. {
  4955. name: "Examacro",
  4956. height: math.unit(10e9, "lightyears")
  4957. }
  4958. ]
  4959. ))
  4960. characterMakers.push(() => makeCharacter(
  4961. { name: "Rick", species: ["lion"], tags: ["anthro"] },
  4962. {
  4963. front: {
  4964. height: math.unit(8, "feet"),
  4965. weight: math.unit(500, "lb"),
  4966. name: "Front",
  4967. image: {
  4968. source: "./media/characters/rick/front.svg"
  4969. }
  4970. }
  4971. },
  4972. [
  4973. {
  4974. name: "Normal",
  4975. height: math.unit(8, "feet"),
  4976. default: true
  4977. },
  4978. {
  4979. name: "Macro",
  4980. height: math.unit(5, "km")
  4981. }
  4982. ]
  4983. ))
  4984. characterMakers.push(() => makeCharacter(
  4985. { name: "Ona", species: ["raven"], tags: ["anthro"] },
  4986. {
  4987. front: {
  4988. height: math.unit(8, "feet"),
  4989. weight: math.unit(120, "lb"),
  4990. name: "Front",
  4991. image: {
  4992. source: "./media/characters/ona/front.svg"
  4993. }
  4994. },
  4995. frontAlt: {
  4996. height: math.unit(8, "feet"),
  4997. weight: math.unit(120, "lb"),
  4998. name: "Front (Alt)",
  4999. image: {
  5000. source: "./media/characters/ona/front-alt.svg"
  5001. }
  5002. },
  5003. back: {
  5004. height: math.unit(8, "feet"),
  5005. weight: math.unit(120, "lb"),
  5006. name: "Back",
  5007. image: {
  5008. source: "./media/characters/ona/back.svg"
  5009. }
  5010. },
  5011. foot: {
  5012. height: math.unit(1.1, "feet"),
  5013. name: "Foot",
  5014. image: {
  5015. source: "./media/characters/ona/foot.svg"
  5016. }
  5017. }
  5018. },
  5019. [
  5020. {
  5021. name: "Megamacro",
  5022. height: math.unit(70, "km"),
  5023. default: true
  5024. },
  5025. {
  5026. name: "Gigamacro",
  5027. height: math.unit(681818, "miles")
  5028. },
  5029. {
  5030. name: "Examacro",
  5031. height: math.unit(3800000, "lightyears")
  5032. },
  5033. ]
  5034. ))
  5035. characterMakers.push(() => makeCharacter(
  5036. { name: "Mech", species: ["dragon"], tags: ["anthro"] },
  5037. {
  5038. front: {
  5039. height: math.unit(12, "feet"),
  5040. weight: math.unit(3000, "lb"),
  5041. name: "Front",
  5042. image: {
  5043. source: "./media/characters/mech/front.svg",
  5044. extra: 2900 / 2770,
  5045. bottom: 110 / 3010
  5046. }
  5047. },
  5048. back: {
  5049. height: math.unit(12, "feet"),
  5050. weight: math.unit(3000, "lb"),
  5051. name: "Back",
  5052. image: {
  5053. source: "./media/characters/mech/back.svg",
  5054. extra: 3011 / 2890,
  5055. bottom: 94 / 3105
  5056. }
  5057. },
  5058. maw: {
  5059. height: math.unit(3.07, "feet"),
  5060. name: "Maw",
  5061. image: {
  5062. source: "./media/characters/mech/maw.svg"
  5063. }
  5064. },
  5065. head: {
  5066. height: math.unit(3.07, "feet"),
  5067. name: "Head",
  5068. image: {
  5069. source: "./media/characters/mech/head.svg"
  5070. }
  5071. },
  5072. dick: {
  5073. height: math.unit(1.43, "feet"),
  5074. name: "Dick",
  5075. image: {
  5076. source: "./media/characters/mech/dick.svg"
  5077. }
  5078. },
  5079. },
  5080. [
  5081. {
  5082. name: "Normal",
  5083. height: math.unit(12, "feet")
  5084. },
  5085. {
  5086. name: "Macro",
  5087. height: math.unit(300, "feet"),
  5088. default: true
  5089. },
  5090. {
  5091. name: "Macro+",
  5092. height: math.unit(1500, "feet")
  5093. },
  5094. ]
  5095. ))
  5096. characterMakers.push(() => makeCharacter(
  5097. { name: "Gregory", species: ["goat"], tags: ["anthro"] },
  5098. {
  5099. front: {
  5100. height: math.unit(1.3, "meter"),
  5101. weight: math.unit(30, "kg"),
  5102. name: "Front",
  5103. image: {
  5104. source: "./media/characters/gregory/front.svg",
  5105. }
  5106. }
  5107. },
  5108. [
  5109. {
  5110. name: "Normal",
  5111. height: math.unit(1.3, "meter"),
  5112. default: true
  5113. },
  5114. {
  5115. name: "Macro",
  5116. height: math.unit(20, "meter")
  5117. }
  5118. ]
  5119. ))
  5120. characterMakers.push(() => makeCharacter(
  5121. { name: "Elory", species: ["goat"], tags: ["anthro"] },
  5122. {
  5123. front: {
  5124. height: math.unit(2.8, "meter"),
  5125. weight: math.unit(200, "kg"),
  5126. name: "Front",
  5127. image: {
  5128. source: "./media/characters/elory/front.svg",
  5129. }
  5130. }
  5131. },
  5132. [
  5133. {
  5134. name: "Normal",
  5135. height: math.unit(2.8, "meter"),
  5136. default: true
  5137. },
  5138. {
  5139. name: "Macro",
  5140. height: math.unit(38, "meter")
  5141. }
  5142. ]
  5143. ))
  5144. characterMakers.push(() => makeCharacter(
  5145. { name: "Angelpatamon", species: ["patamon", "deity"], tags: ["anthro"] },
  5146. {
  5147. front: {
  5148. height: math.unit(470, "feet"),
  5149. weight: math.unit(924, "tons"),
  5150. name: "Front",
  5151. image: {
  5152. source: "./media/characters/angelpatamon/front.svg",
  5153. }
  5154. }
  5155. },
  5156. [
  5157. {
  5158. name: "Normal",
  5159. height: math.unit(470, "feet"),
  5160. default: true
  5161. },
  5162. {
  5163. name: "Deity Size I",
  5164. height: math.unit(28651.2, "km")
  5165. },
  5166. {
  5167. name: "Deity Size II",
  5168. height: math.unit(171907.2, "km")
  5169. }
  5170. ]
  5171. ))
  5172. characterMakers.push(() => makeCharacter(
  5173. { name: "Cryae", species: ["dragon"], tags: ["feral"] },
  5174. {
  5175. side: {
  5176. height: math.unit(7.2, "meter"),
  5177. weight: math.unit(8.2, "tons"),
  5178. name: "Side",
  5179. image: {
  5180. source: "./media/characters/cryae/side.svg",
  5181. extra: 3500 / 1500
  5182. }
  5183. }
  5184. },
  5185. [
  5186. {
  5187. name: "Normal",
  5188. height: math.unit(7.2, "meter"),
  5189. default: true
  5190. }
  5191. ]
  5192. ))
  5193. characterMakers.push(() => makeCharacter(
  5194. { name: "Xera", species: ["jugani"], tags: ["anthro"] },
  5195. {
  5196. front: {
  5197. height: math.unit(6, "feet"),
  5198. weight: math.unit(175, "lb"),
  5199. name: "Front",
  5200. image: {
  5201. source: "./media/characters/xera/front.svg",
  5202. extra: 2377 / 1972,
  5203. bottom: 75.5 / 2452
  5204. }
  5205. },
  5206. side: {
  5207. height: math.unit(6, "feet"),
  5208. weight: math.unit(175, "lb"),
  5209. name: "Side",
  5210. image: {
  5211. source: "./media/characters/xera/side.svg",
  5212. extra: 2345 / 2019,
  5213. bottom: 39.7 / 2384
  5214. }
  5215. },
  5216. back: {
  5217. height: math.unit(6, "feet"),
  5218. weight: math.unit(175, "lb"),
  5219. name: "Back",
  5220. image: {
  5221. source: "./media/characters/xera/back.svg",
  5222. extra: 2095 / 1984,
  5223. bottom: 67 / 2166
  5224. }
  5225. },
  5226. },
  5227. [
  5228. {
  5229. name: "Small",
  5230. height: math.unit(10, "feet")
  5231. },
  5232. {
  5233. name: "Macro",
  5234. height: math.unit(500, "meters"),
  5235. default: true
  5236. },
  5237. {
  5238. name: "Macro+",
  5239. height: math.unit(10, "km")
  5240. },
  5241. {
  5242. name: "Gigamacro",
  5243. height: math.unit(25000, "km")
  5244. },
  5245. {
  5246. name: "Teramacro",
  5247. height: math.unit(3e6, "km")
  5248. }
  5249. ]
  5250. ))
  5251. characterMakers.push(() => makeCharacter(
  5252. { name: "Nebula", species: ["dragon", "wolf"], tags: ["anthro"] },
  5253. {
  5254. front: {
  5255. height: math.unit(6, "feet"),
  5256. weight: math.unit(175, "lb"),
  5257. name: "Front",
  5258. image: {
  5259. source: "./media/characters/nebula/front.svg",
  5260. extra: 2566 / 2362,
  5261. bottom: 81 / 2644
  5262. }
  5263. }
  5264. },
  5265. [
  5266. {
  5267. name: "Small",
  5268. height: math.unit(4.5, "meters")
  5269. },
  5270. {
  5271. name: "Macro",
  5272. height: math.unit(1500, "meters"),
  5273. default: true
  5274. },
  5275. {
  5276. name: "Megamacro",
  5277. height: math.unit(150, "km")
  5278. },
  5279. {
  5280. name: "Gigamacro",
  5281. height: math.unit(27000, "km")
  5282. }
  5283. ]
  5284. ))
  5285. characterMakers.push(() => makeCharacter(
  5286. { name: "Abysgar", species: ["raptor"], tags: ["anthro"] },
  5287. {
  5288. front: {
  5289. height: math.unit(6, "feet"),
  5290. weight: math.unit(225, "lb"),
  5291. name: "Front",
  5292. image: {
  5293. source: "./media/characters/abysgar/front.svg",
  5294. extra: 1739/1614,
  5295. bottom: 71/1810
  5296. }
  5297. },
  5298. frontNsfw: {
  5299. height: math.unit(6, "feet"),
  5300. weight: math.unit(225, "lb"),
  5301. name: "Front (NSFW)",
  5302. image: {
  5303. source: "./media/characters/abysgar/front-nsfw.svg",
  5304. extra: 1739/1614,
  5305. bottom: 71/1810
  5306. }
  5307. },
  5308. back: {
  5309. height: math.unit(4.6, "feet"),
  5310. weight: math.unit(225, "lb"),
  5311. name: "Back",
  5312. image: {
  5313. source: "./media/characters/abysgar/back.svg",
  5314. extra: 1384/1327,
  5315. bottom: 0/1384
  5316. }
  5317. },
  5318. head: {
  5319. height: math.unit(1.25, "feet"),
  5320. name: "Head",
  5321. image: {
  5322. source: "./media/characters/abysgar/head.svg",
  5323. extra: 669/569,
  5324. bottom: 0/669
  5325. }
  5326. },
  5327. },
  5328. [
  5329. {
  5330. name: "Small",
  5331. height: math.unit(4.5, "meters")
  5332. },
  5333. {
  5334. name: "Macro",
  5335. height: math.unit(1250, "meters"),
  5336. default: true
  5337. },
  5338. {
  5339. name: "Megamacro",
  5340. height: math.unit(125, "km")
  5341. },
  5342. {
  5343. name: "Gigamacro",
  5344. height: math.unit(26000, "km")
  5345. }
  5346. ]
  5347. ))
  5348. characterMakers.push(() => makeCharacter(
  5349. { name: "Yakuz", species: ["wolf"], tags: ["anthro"] },
  5350. {
  5351. front: {
  5352. height: math.unit(6, "feet"),
  5353. weight: math.unit(180, "lb"),
  5354. name: "Front",
  5355. image: {
  5356. source: "./media/characters/yakuz/front.svg"
  5357. }
  5358. }
  5359. },
  5360. [
  5361. {
  5362. name: "Small",
  5363. height: math.unit(5, "meters")
  5364. },
  5365. {
  5366. name: "Macro",
  5367. height: math.unit(1500, "meters"),
  5368. default: true
  5369. },
  5370. {
  5371. name: "Megamacro",
  5372. height: math.unit(200, "km")
  5373. },
  5374. {
  5375. name: "Gigamacro",
  5376. height: math.unit(100000, "km")
  5377. }
  5378. ]
  5379. ))
  5380. characterMakers.push(() => makeCharacter(
  5381. { name: "Mirova", species: ["luxray", "shark"], tags: ["anthro"] },
  5382. {
  5383. front: {
  5384. height: math.unit(6, "feet"),
  5385. weight: math.unit(175, "lb"),
  5386. name: "Front",
  5387. image: {
  5388. source: "./media/characters/mirova/front.svg",
  5389. extra: 3334 / 3071,
  5390. bottom: 42 / 3375.6
  5391. }
  5392. }
  5393. },
  5394. [
  5395. {
  5396. name: "Small",
  5397. height: math.unit(5, "meters")
  5398. },
  5399. {
  5400. name: "Macro",
  5401. height: math.unit(900, "meters"),
  5402. default: true
  5403. },
  5404. {
  5405. name: "Megamacro",
  5406. height: math.unit(135, "km")
  5407. },
  5408. {
  5409. name: "Gigamacro",
  5410. height: math.unit(20000, "km")
  5411. }
  5412. ]
  5413. ))
  5414. characterMakers.push(() => makeCharacter(
  5415. { name: "Asana (Mech)", species: ["zoid"], tags: ["feral"] },
  5416. {
  5417. side: {
  5418. height: math.unit(28.35, "feet"),
  5419. weight: math.unit(99.75, "tons"),
  5420. name: "Side",
  5421. image: {
  5422. source: "./media/characters/asana-mech/side.svg",
  5423. extra: 923 / 699,
  5424. bottom: 50 / 975
  5425. }
  5426. },
  5427. chaingun: {
  5428. height: math.unit(7, "feet"),
  5429. weight: math.unit(2400, "lb"),
  5430. name: "Chaingun",
  5431. image: {
  5432. source: "./media/characters/asana-mech/chaingun.svg"
  5433. }
  5434. },
  5435. laser: {
  5436. height: math.unit(7.12, "feet"),
  5437. weight: math.unit(2000, "lb"),
  5438. name: "Laser",
  5439. image: {
  5440. source: "./media/characters/asana-mech/laser.svg"
  5441. }
  5442. },
  5443. },
  5444. [
  5445. {
  5446. name: "Normal",
  5447. height: math.unit(28.35, "feet"),
  5448. default: true
  5449. },
  5450. {
  5451. name: "Macro",
  5452. height: math.unit(2500, "feet")
  5453. },
  5454. {
  5455. name: "Megamacro",
  5456. height: math.unit(25, "miles")
  5457. },
  5458. {
  5459. name: "Examacro",
  5460. height: math.unit(6e8, "lightyears")
  5461. },
  5462. ]
  5463. ))
  5464. characterMakers.push(() => makeCharacter(
  5465. { name: "Asche", species: ["fox", "dragon", "lion"], tags: ["anthro"] },
  5466. {
  5467. front: {
  5468. height: math.unit(5, "meters"),
  5469. weight: math.unit(1000, "kg"),
  5470. name: "Front",
  5471. image: {
  5472. source: "./media/characters/asche/front.svg",
  5473. extra: 1258 / 1190,
  5474. bottom: 47 / 1305
  5475. }
  5476. },
  5477. frontUnderwear: {
  5478. height: math.unit(5, "meters"),
  5479. weight: math.unit(1000, "kg"),
  5480. name: "Front (Underwear)",
  5481. image: {
  5482. source: "./media/characters/asche/front-underwear.svg",
  5483. extra: 1258 / 1190,
  5484. bottom: 47 / 1305
  5485. }
  5486. },
  5487. frontDressed: {
  5488. height: math.unit(5, "meters"),
  5489. weight: math.unit(1000, "kg"),
  5490. name: "Front (Dressed)",
  5491. image: {
  5492. source: "./media/characters/asche/front-dressed.svg",
  5493. extra: 1258 / 1190,
  5494. bottom: 47 / 1305
  5495. }
  5496. },
  5497. frontArmor: {
  5498. height: math.unit(5, "meters"),
  5499. weight: math.unit(1000, "kg"),
  5500. name: "Front (Armored)",
  5501. image: {
  5502. source: "./media/characters/asche/front-armored.svg",
  5503. extra: 1374 / 1308,
  5504. bottom: 23 / 1397
  5505. }
  5506. },
  5507. mp724: {
  5508. height: math.unit(0.96, "meters"),
  5509. weight: math.unit(38, "kg"),
  5510. name: "H&K MP724",
  5511. image: {
  5512. source: "./media/characters/asche/h&k-mp724.svg"
  5513. }
  5514. },
  5515. side: {
  5516. height: math.unit(5, "meters"),
  5517. weight: math.unit(1000, "kg"),
  5518. name: "Side",
  5519. image: {
  5520. source: "./media/characters/asche/side.svg",
  5521. extra: 1717 / 1609,
  5522. bottom: 0.005
  5523. }
  5524. },
  5525. back: {
  5526. height: math.unit(5, "meters"),
  5527. weight: math.unit(1000, "kg"),
  5528. name: "Back",
  5529. image: {
  5530. source: "./media/characters/asche/back.svg",
  5531. extra: 1570 / 1501
  5532. }
  5533. },
  5534. },
  5535. [
  5536. {
  5537. name: "DEFCON 5",
  5538. height: math.unit(5, "meters")
  5539. },
  5540. {
  5541. name: "DEFCON 4",
  5542. height: math.unit(500, "meters"),
  5543. default: true
  5544. },
  5545. {
  5546. name: "DEFCON 3",
  5547. height: math.unit(5, "km")
  5548. },
  5549. {
  5550. name: "DEFCON 2",
  5551. height: math.unit(500, "km")
  5552. },
  5553. {
  5554. name: "DEFCON 1",
  5555. height: math.unit(500000, "km")
  5556. },
  5557. {
  5558. name: "DEFCON 0",
  5559. height: math.unit(3, "gigaparsecs")
  5560. },
  5561. ]
  5562. ))
  5563. characterMakers.push(() => makeCharacter(
  5564. { name: "Gale", species: ["monster"], tags: ["anthro"] },
  5565. {
  5566. front: {
  5567. height: math.unit(7, "feet"),
  5568. weight: math.unit(92.7, "kg"),
  5569. name: "Front",
  5570. image: {
  5571. source: "./media/characters/gale/front.svg",
  5572. extra: 977/919,
  5573. bottom: 105/1082
  5574. }
  5575. },
  5576. side: {
  5577. height: math.unit(6.7, "feet"),
  5578. weight: math.unit(92.7, "kg"),
  5579. name: "Side",
  5580. image: {
  5581. source: "./media/characters/gale/side.svg",
  5582. extra: 978/922,
  5583. bottom: 140/1118
  5584. }
  5585. },
  5586. back: {
  5587. height: math.unit(7, "feet"),
  5588. weight: math.unit(92.7, "kg"),
  5589. name: "Back",
  5590. image: {
  5591. source: "./media/characters/gale/back.svg",
  5592. extra: 966/920,
  5593. bottom: 61/1027
  5594. }
  5595. },
  5596. maw: {
  5597. height: math.unit(2.23, "feet"),
  5598. name: "Maw",
  5599. image: {
  5600. source: "./media/characters/gale/maw.svg"
  5601. }
  5602. },
  5603. foot: {
  5604. height: math.unit(2.1, "feet"),
  5605. name: "Foot",
  5606. image: {
  5607. source: "./media/characters/gale/foot.svg"
  5608. }
  5609. },
  5610. },
  5611. [
  5612. {
  5613. name: "Normal",
  5614. height: math.unit(7, "feet")
  5615. },
  5616. {
  5617. name: "Macro",
  5618. height: math.unit(150, "feet"),
  5619. default: true
  5620. },
  5621. {
  5622. name: "Macro+",
  5623. height: math.unit(300, "feet")
  5624. },
  5625. ]
  5626. ))
  5627. characterMakers.push(() => makeCharacter(
  5628. { name: "Draylen", species: ["coyote"], tags: ["anthro"] },
  5629. {
  5630. front: {
  5631. height: math.unit(5 + 10/12, "feet"),
  5632. weight: math.unit(67, "kg"),
  5633. name: "Front",
  5634. image: {
  5635. source: "./media/characters/draylen/front.svg",
  5636. extra: 832/777,
  5637. bottom: 85/917
  5638. }
  5639. }
  5640. },
  5641. [
  5642. {
  5643. name: "Normal",
  5644. height: math.unit(5 + 10/12, "feet")
  5645. },
  5646. {
  5647. name: "Macro",
  5648. height: math.unit(150, "feet"),
  5649. default: true
  5650. }
  5651. ]
  5652. ))
  5653. characterMakers.push(() => makeCharacter(
  5654. { name: "Chez", species: ["foo-dog"], tags: ["anthro"] },
  5655. {
  5656. front: {
  5657. height: math.unit(7 + 9 / 12, "feet"),
  5658. weight: math.unit(379, "lbs"),
  5659. name: "Front",
  5660. image: {
  5661. source: "./media/characters/chez/front.svg"
  5662. }
  5663. },
  5664. side: {
  5665. height: math.unit(7 + 9 / 12, "feet"),
  5666. weight: math.unit(379, "lbs"),
  5667. name: "Side",
  5668. image: {
  5669. source: "./media/characters/chez/side.svg"
  5670. }
  5671. }
  5672. },
  5673. [
  5674. {
  5675. name: "Normal",
  5676. height: math.unit(7 + 9 / 12, "feet"),
  5677. default: true
  5678. },
  5679. {
  5680. name: "God King",
  5681. height: math.unit(9750000, "meters")
  5682. }
  5683. ]
  5684. ))
  5685. characterMakers.push(() => makeCharacter(
  5686. { name: "Kaylum", species: ["dragon", "shark"], tags: ["anthro"] },
  5687. {
  5688. front: {
  5689. height: math.unit(6, "feet"),
  5690. weight: math.unit(275, "lbs"),
  5691. name: "Front",
  5692. image: {
  5693. source: "./media/characters/kaylum/front.svg",
  5694. bottom: 0.01,
  5695. extra: 1166 / 1031
  5696. }
  5697. },
  5698. frontWingless: {
  5699. height: math.unit(6, "feet"),
  5700. weight: math.unit(275, "lbs"),
  5701. name: "Front (Wingless)",
  5702. image: {
  5703. source: "./media/characters/kaylum/front-wingless.svg",
  5704. bottom: 0.01,
  5705. extra: 1117 / 1031
  5706. }
  5707. }
  5708. },
  5709. [
  5710. {
  5711. name: "Normal",
  5712. height: math.unit(3.05, "meters")
  5713. },
  5714. {
  5715. name: "Master",
  5716. height: math.unit(5.5, "meters")
  5717. },
  5718. {
  5719. name: "Rampage",
  5720. height: math.unit(19, "meters")
  5721. },
  5722. {
  5723. name: "Macro Lite",
  5724. height: math.unit(37, "meters")
  5725. },
  5726. {
  5727. name: "Hyper Predator",
  5728. height: math.unit(61, "meters")
  5729. },
  5730. {
  5731. name: "Macro",
  5732. height: math.unit(138, "meters"),
  5733. default: true
  5734. }
  5735. ]
  5736. ))
  5737. characterMakers.push(() => makeCharacter(
  5738. { name: "Geta", species: ["fox"], tags: ["anthro"] },
  5739. {
  5740. front: {
  5741. height: math.unit(5 + 5 / 12, "feet"),
  5742. weight: math.unit(120, "lbs"),
  5743. name: "Front",
  5744. image: {
  5745. source: "./media/characters/geta/front.svg",
  5746. extra: 1003/933,
  5747. bottom: 21/1024
  5748. }
  5749. },
  5750. paw: {
  5751. height: math.unit(0.35, "feet"),
  5752. name: "Paw",
  5753. image: {
  5754. source: "./media/characters/geta/paw.svg"
  5755. }
  5756. },
  5757. },
  5758. [
  5759. {
  5760. name: "Micro",
  5761. height: math.unit(3, "inches"),
  5762. default: true
  5763. },
  5764. {
  5765. name: "Normal",
  5766. height: math.unit(5 + 5 / 12, "feet")
  5767. }
  5768. ]
  5769. ))
  5770. characterMakers.push(() => makeCharacter(
  5771. { name: "Tyrnn", species: ["dragon"], tags: ["anthro"] },
  5772. {
  5773. front: {
  5774. height: math.unit(6, "feet"),
  5775. weight: math.unit(300, "lbs"),
  5776. name: "Front",
  5777. image: {
  5778. source: "./media/characters/tyrnn/front.svg"
  5779. }
  5780. }
  5781. },
  5782. [
  5783. {
  5784. name: "Main Height",
  5785. height: math.unit(355, "feet"),
  5786. default: true
  5787. },
  5788. {
  5789. name: "Fave. Height",
  5790. height: math.unit(2400, "feet")
  5791. }
  5792. ]
  5793. ))
  5794. characterMakers.push(() => makeCharacter(
  5795. { name: "Apple", species: ["elephant"], tags: ["anthro"] },
  5796. {
  5797. front: {
  5798. height: math.unit(6, "feet"),
  5799. weight: math.unit(300, "lbs"),
  5800. name: "Front",
  5801. image: {
  5802. source: "./media/characters/appledectomy/front.svg"
  5803. }
  5804. }
  5805. },
  5806. [
  5807. {
  5808. name: "Macro",
  5809. height: math.unit(2500, "feet")
  5810. },
  5811. {
  5812. name: "Megamacro",
  5813. height: math.unit(50, "miles"),
  5814. default: true
  5815. },
  5816. {
  5817. name: "Gigamacro",
  5818. height: math.unit(5000, "miles")
  5819. },
  5820. {
  5821. name: "Teramacro",
  5822. height: math.unit(250000, "miles")
  5823. },
  5824. ]
  5825. ))
  5826. characterMakers.push(() => makeCharacter(
  5827. { name: "Vulpes", species: ["fox"], tags: ["anthro"] },
  5828. {
  5829. front: {
  5830. height: math.unit(6, "feet"),
  5831. weight: math.unit(200, "lbs"),
  5832. name: "Front",
  5833. image: {
  5834. source: "./media/characters/vulpes/front.svg",
  5835. extra: 573 / 543,
  5836. bottom: 0.033
  5837. }
  5838. },
  5839. side: {
  5840. height: math.unit(6, "feet"),
  5841. weight: math.unit(200, "lbs"),
  5842. name: "Side",
  5843. image: {
  5844. source: "./media/characters/vulpes/side.svg",
  5845. extra: 577 / 549,
  5846. bottom: 11 / 588
  5847. }
  5848. },
  5849. back: {
  5850. height: math.unit(6, "feet"),
  5851. weight: math.unit(200, "lbs"),
  5852. name: "Back",
  5853. image: {
  5854. source: "./media/characters/vulpes/back.svg",
  5855. extra: 573 / 549,
  5856. bottom: 20 / 593
  5857. }
  5858. },
  5859. feet: {
  5860. height: math.unit(1.276, "feet"),
  5861. name: "Feet",
  5862. image: {
  5863. source: "./media/characters/vulpes/feet.svg"
  5864. }
  5865. },
  5866. maw: {
  5867. height: math.unit(1.18, "feet"),
  5868. name: "Maw",
  5869. image: {
  5870. source: "./media/characters/vulpes/maw.svg"
  5871. }
  5872. },
  5873. },
  5874. [
  5875. {
  5876. name: "Micro",
  5877. height: math.unit(2, "inches")
  5878. },
  5879. {
  5880. name: "Normal",
  5881. height: math.unit(6.3, "feet")
  5882. },
  5883. {
  5884. name: "Macro",
  5885. height: math.unit(850, "feet")
  5886. },
  5887. {
  5888. name: "Megamacro",
  5889. height: math.unit(7500, "feet"),
  5890. default: true
  5891. },
  5892. {
  5893. name: "Gigamacro",
  5894. height: math.unit(570000, "miles")
  5895. }
  5896. ]
  5897. ))
  5898. characterMakers.push(() => makeCharacter(
  5899. { name: "Rain Fallen", species: ["wolf", "demon"], tags: ["anthro", "feral"] },
  5900. {
  5901. front: {
  5902. height: math.unit(6, "feet"),
  5903. weight: math.unit(210, "lbs"),
  5904. name: "Front",
  5905. image: {
  5906. source: "./media/characters/rain-fallen/front.svg"
  5907. }
  5908. },
  5909. side: {
  5910. height: math.unit(6, "feet"),
  5911. weight: math.unit(210, "lbs"),
  5912. name: "Side",
  5913. image: {
  5914. source: "./media/characters/rain-fallen/side.svg"
  5915. }
  5916. },
  5917. back: {
  5918. height: math.unit(6, "feet"),
  5919. weight: math.unit(210, "lbs"),
  5920. name: "Back",
  5921. image: {
  5922. source: "./media/characters/rain-fallen/back.svg"
  5923. }
  5924. },
  5925. feral: {
  5926. height: math.unit(9, "feet"),
  5927. weight: math.unit(700, "lbs"),
  5928. name: "Feral",
  5929. image: {
  5930. source: "./media/characters/rain-fallen/feral.svg"
  5931. }
  5932. },
  5933. },
  5934. [
  5935. {
  5936. name: "Meddling with Mortals",
  5937. height: math.unit(8 + 8/12, "feet")
  5938. },
  5939. {
  5940. name: "Normal",
  5941. height: math.unit(5, "meter")
  5942. },
  5943. {
  5944. name: "Macro",
  5945. height: math.unit(150, "meter"),
  5946. default: true
  5947. },
  5948. {
  5949. name: "Megamacro",
  5950. height: math.unit(278e6, "meter")
  5951. },
  5952. {
  5953. name: "Gigamacro",
  5954. height: math.unit(2e9, "meter")
  5955. },
  5956. {
  5957. name: "Teramacro",
  5958. height: math.unit(8e12, "meter")
  5959. },
  5960. {
  5961. name: "Devourer",
  5962. height: math.unit(14, "zettameters")
  5963. },
  5964. {
  5965. name: "Scarlet King",
  5966. height: math.unit(18, "yottameters")
  5967. },
  5968. {
  5969. name: "Void",
  5970. height: math.unit(1e88, "yottameters")
  5971. }
  5972. ]
  5973. ))
  5974. characterMakers.push(() => makeCharacter(
  5975. { name: "Zaakira", species: ["wolf"], tags: ["anthro"] },
  5976. {
  5977. standing: {
  5978. height: math.unit(6, "feet"),
  5979. weight: math.unit(180, "lbs"),
  5980. name: "Standing",
  5981. image: {
  5982. source: "./media/characters/zaakira/standing.svg",
  5983. extra: 1599/1504,
  5984. bottom: 39/1638
  5985. }
  5986. },
  5987. laying: {
  5988. height: math.unit(3.3, "feet"),
  5989. weight: math.unit(180, "lbs"),
  5990. name: "Laying",
  5991. image: {
  5992. source: "./media/characters/zaakira/laying.svg"
  5993. }
  5994. },
  5995. },
  5996. [
  5997. {
  5998. name: "Normal",
  5999. height: math.unit(12, "feet")
  6000. },
  6001. {
  6002. name: "Macro",
  6003. height: math.unit(279, "feet"),
  6004. default: true
  6005. }
  6006. ]
  6007. ))
  6008. characterMakers.push(() => makeCharacter(
  6009. { name: "Sigvald", species: ["dragon"], tags: ["anthro"] },
  6010. {
  6011. femSfw: {
  6012. height: math.unit(8, "feet"),
  6013. weight: math.unit(350, "lb"),
  6014. name: "Fem",
  6015. image: {
  6016. source: "./media/characters/sigvald/fem-sfw.svg",
  6017. extra: 182 / 164,
  6018. bottom: 8.7 / 190.5
  6019. }
  6020. },
  6021. femNsfw: {
  6022. height: math.unit(8, "feet"),
  6023. weight: math.unit(350, "lb"),
  6024. name: "Fem (NSFW)",
  6025. image: {
  6026. source: "./media/characters/sigvald/fem-nsfw.svg",
  6027. extra: 182 / 164,
  6028. bottom: 8.7 / 190.5
  6029. }
  6030. },
  6031. maleNsfw: {
  6032. height: math.unit(8, "feet"),
  6033. weight: math.unit(350, "lb"),
  6034. name: "Male (NSFW)",
  6035. image: {
  6036. source: "./media/characters/sigvald/male-nsfw.svg",
  6037. extra: 182 / 164,
  6038. bottom: 8.7 / 190.5
  6039. }
  6040. },
  6041. hermNsfw: {
  6042. height: math.unit(8, "feet"),
  6043. weight: math.unit(350, "lb"),
  6044. name: "Herm (NSFW)",
  6045. image: {
  6046. source: "./media/characters/sigvald/herm-nsfw.svg",
  6047. extra: 182 / 164,
  6048. bottom: 8.7 / 190.5
  6049. }
  6050. },
  6051. dick: {
  6052. height: math.unit(2.36, "feet"),
  6053. name: "Dick",
  6054. image: {
  6055. source: "./media/characters/sigvald/dick.svg"
  6056. }
  6057. },
  6058. eye: {
  6059. height: math.unit(0.31, "feet"),
  6060. name: "Eye",
  6061. image: {
  6062. source: "./media/characters/sigvald/eye.svg"
  6063. }
  6064. },
  6065. mouth: {
  6066. height: math.unit(0.92, "feet"),
  6067. name: "Mouth",
  6068. image: {
  6069. source: "./media/characters/sigvald/mouth.svg"
  6070. }
  6071. },
  6072. paws: {
  6073. height: math.unit(2.2, "feet"),
  6074. name: "Paws",
  6075. image: {
  6076. source: "./media/characters/sigvald/paws.svg"
  6077. }
  6078. }
  6079. },
  6080. [
  6081. {
  6082. name: "Normal",
  6083. height: math.unit(8, "feet")
  6084. },
  6085. {
  6086. name: "Large",
  6087. height: math.unit(12, "feet")
  6088. },
  6089. {
  6090. name: "Larger",
  6091. height: math.unit(20, "feet")
  6092. },
  6093. {
  6094. name: "Macro",
  6095. height: math.unit(150, "feet")
  6096. },
  6097. {
  6098. name: "Macro+",
  6099. height: math.unit(200, "feet"),
  6100. default: true
  6101. },
  6102. ]
  6103. ))
  6104. characterMakers.push(() => makeCharacter(
  6105. { name: "Scott", species: ["fox"], tags: ["taur"] },
  6106. {
  6107. side: {
  6108. height: math.unit(12, "feet"),
  6109. weight: math.unit(2000, "kg"),
  6110. name: "Side",
  6111. image: {
  6112. source: "./media/characters/scott/side.svg",
  6113. extra: 754 / 724,
  6114. bottom: 0.069
  6115. }
  6116. },
  6117. upright: {
  6118. height: math.unit(12, "feet"),
  6119. weight: math.unit(2000, "kg"),
  6120. name: "Upright",
  6121. image: {
  6122. source: "./media/characters/scott/upright.svg",
  6123. extra: 3881 / 3722,
  6124. bottom: 0.05
  6125. }
  6126. },
  6127. },
  6128. [
  6129. {
  6130. name: "Normal",
  6131. height: math.unit(12, "feet"),
  6132. default: true
  6133. },
  6134. ]
  6135. ))
  6136. characterMakers.push(() => makeCharacter(
  6137. { name: "Tobias", species: ["dragon"], tags: ["feral"] },
  6138. {
  6139. side: {
  6140. height: math.unit(8, "meters"),
  6141. weight: math.unit(84755, "lbs"),
  6142. name: "Side",
  6143. image: {
  6144. source: "./media/characters/tobias/side.svg",
  6145. extra: 1474 / 1096,
  6146. bottom: 38.9 / 1513.1235
  6147. }
  6148. },
  6149. maw: {
  6150. height: math.unit(2.3, "meters"),
  6151. name: "Maw",
  6152. image: {
  6153. source: "./media/characters/tobias/maw.svg"
  6154. }
  6155. },
  6156. burp: {
  6157. height: math.unit(2.85, "meters"),
  6158. name: "Burp",
  6159. image: {
  6160. source: "./media/characters/tobias/burp.svg"
  6161. }
  6162. },
  6163. },
  6164. [
  6165. {
  6166. name: "Normal",
  6167. height: math.unit(8, "meters"),
  6168. default: true
  6169. },
  6170. ]
  6171. ))
  6172. characterMakers.push(() => makeCharacter(
  6173. { name: "Kieran", species: ["wolf"], tags: ["taur"] },
  6174. {
  6175. front: {
  6176. height: math.unit(5.5, "feet"),
  6177. weight: math.unit(400, "lbs"),
  6178. name: "Front",
  6179. image: {
  6180. source: "./media/characters/kieran/front.svg",
  6181. extra: 2694 / 2364,
  6182. bottom: 217 / 2908
  6183. }
  6184. },
  6185. side: {
  6186. height: math.unit(5.5, "feet"),
  6187. weight: math.unit(400, "lbs"),
  6188. name: "Side",
  6189. image: {
  6190. source: "./media/characters/kieran/side.svg",
  6191. extra: 875 / 777,
  6192. bottom: 84.6 / 959
  6193. }
  6194. },
  6195. },
  6196. [
  6197. {
  6198. name: "Normal",
  6199. height: math.unit(5.5, "feet"),
  6200. default: true
  6201. },
  6202. ]
  6203. ))
  6204. characterMakers.push(() => makeCharacter(
  6205. { name: "Sanya", species: ["eagle"], tags: ["anthro"] },
  6206. {
  6207. side: {
  6208. height: math.unit(2, "meters"),
  6209. weight: math.unit(70, "kg"),
  6210. name: "Side",
  6211. image: {
  6212. source: "./media/characters/sanya/side.svg",
  6213. bottom: 0.02,
  6214. extra: 1.02
  6215. }
  6216. },
  6217. },
  6218. [
  6219. {
  6220. name: "Small",
  6221. height: math.unit(2, "meters")
  6222. },
  6223. {
  6224. name: "Normal",
  6225. height: math.unit(3, "meters")
  6226. },
  6227. {
  6228. name: "Macro",
  6229. height: math.unit(16, "meters"),
  6230. default: true
  6231. },
  6232. ]
  6233. ))
  6234. characterMakers.push(() => makeCharacter(
  6235. { name: "Miranda", species: ["dragon"], tags: ["anthro"] },
  6236. {
  6237. front: {
  6238. height: math.unit(2, "meters"),
  6239. weight: math.unit(120, "kg"),
  6240. name: "Front",
  6241. image: {
  6242. source: "./media/characters/miranda/front.svg",
  6243. extra: 195 / 185,
  6244. bottom: 10.9 / 206.5
  6245. }
  6246. },
  6247. back: {
  6248. height: math.unit(2, "meters"),
  6249. weight: math.unit(120, "kg"),
  6250. name: "Back",
  6251. image: {
  6252. source: "./media/characters/miranda/back.svg",
  6253. extra: 201 / 193,
  6254. bottom: 2.3 / 203.7
  6255. }
  6256. },
  6257. },
  6258. [
  6259. {
  6260. name: "Normal",
  6261. height: math.unit(10, "feet"),
  6262. default: true
  6263. }
  6264. ]
  6265. ))
  6266. characterMakers.push(() => makeCharacter(
  6267. { name: "James", species: ["deer"], tags: ["anthro"] },
  6268. {
  6269. side: {
  6270. height: math.unit(2, "meters"),
  6271. weight: math.unit(100, "kg"),
  6272. name: "Front",
  6273. image: {
  6274. source: "./media/characters/james/front.svg",
  6275. extra: 10 / 8.5
  6276. }
  6277. },
  6278. },
  6279. [
  6280. {
  6281. name: "Normal",
  6282. height: math.unit(8.5, "feet"),
  6283. default: true
  6284. }
  6285. ]
  6286. ))
  6287. characterMakers.push(() => makeCharacter(
  6288. { name: "Heather", species: ["cow"], tags: ["taur"] },
  6289. {
  6290. side: {
  6291. height: math.unit(9.5, "feet"),
  6292. weight: math.unit(2500, "lbs"),
  6293. name: "Side",
  6294. image: {
  6295. source: "./media/characters/heather/side.svg"
  6296. }
  6297. },
  6298. },
  6299. [
  6300. {
  6301. name: "Normal",
  6302. height: math.unit(9.5, "feet"),
  6303. default: true
  6304. }
  6305. ]
  6306. ))
  6307. characterMakers.push(() => makeCharacter(
  6308. { name: "Lukas", species: ["dog"], tags: ["feral"] },
  6309. {
  6310. side: {
  6311. height: math.unit(6.5, "feet"),
  6312. weight: math.unit(400, "lbs"),
  6313. name: "Side",
  6314. image: {
  6315. source: "./media/characters/lukas/side.svg",
  6316. extra: 7.25 / 6.5
  6317. }
  6318. },
  6319. },
  6320. [
  6321. {
  6322. name: "Normal",
  6323. height: math.unit(6.5, "feet"),
  6324. default: true
  6325. }
  6326. ]
  6327. ))
  6328. characterMakers.push(() => makeCharacter(
  6329. { name: "Louise", species: ["crocodile"], tags: ["feral"] },
  6330. {
  6331. side: {
  6332. height: math.unit(5, "feet"),
  6333. weight: math.unit(3000, "lbs"),
  6334. name: "Side",
  6335. image: {
  6336. source: "./media/characters/louise/side.svg"
  6337. }
  6338. },
  6339. },
  6340. [
  6341. {
  6342. name: "Normal",
  6343. height: math.unit(5, "feet"),
  6344. default: true
  6345. }
  6346. ]
  6347. ))
  6348. characterMakers.push(() => makeCharacter(
  6349. { name: "Ramona", species: ["borzoi"], tags: ["anthro"] },
  6350. {
  6351. side: {
  6352. height: math.unit(6, "feet"),
  6353. weight: math.unit(150, "lbs"),
  6354. name: "Side",
  6355. image: {
  6356. source: "./media/characters/ramona/side.svg",
  6357. extra: 871/854,
  6358. bottom: 41/912
  6359. }
  6360. },
  6361. },
  6362. [
  6363. {
  6364. name: "Normal",
  6365. height: math.unit(6 + 4/12, "feet")
  6366. },
  6367. {
  6368. name: "Minimacro",
  6369. height: math.unit(5.3, "meters"),
  6370. default: true
  6371. },
  6372. {
  6373. name: "Macro",
  6374. height: math.unit(20, "stories")
  6375. },
  6376. {
  6377. name: "Macro+",
  6378. height: math.unit(50, "stories")
  6379. },
  6380. ]
  6381. ))
  6382. characterMakers.push(() => makeCharacter(
  6383. { name: "Deerpuff", species: ["deer"], tags: ["anthro"] },
  6384. {
  6385. standing: {
  6386. height: math.unit(5.75, "feet"),
  6387. weight: math.unit(160, "lbs"),
  6388. name: "Standing",
  6389. image: {
  6390. source: "./media/characters/deerpuff/standing.svg",
  6391. extra: 682 / 624
  6392. }
  6393. },
  6394. sitting: {
  6395. height: math.unit(5.75 / 1.79, "feet"),
  6396. weight: math.unit(160, "lbs"),
  6397. name: "Sitting",
  6398. image: {
  6399. source: "./media/characters/deerpuff/sitting.svg",
  6400. bottom: 44 / 400,
  6401. extra: 1
  6402. }
  6403. },
  6404. taurLaying: {
  6405. height: math.unit(6, "feet"),
  6406. weight: math.unit(400, "lbs"),
  6407. name: "Taur (Laying)",
  6408. image: {
  6409. source: "./media/characters/deerpuff/taur-laying.svg"
  6410. }
  6411. },
  6412. },
  6413. [
  6414. {
  6415. name: "Puffball",
  6416. height: math.unit(6, "inches")
  6417. },
  6418. {
  6419. name: "Normalpuff",
  6420. height: math.unit(5.75, "feet")
  6421. },
  6422. {
  6423. name: "Macropuff",
  6424. height: math.unit(1500, "feet"),
  6425. default: true
  6426. },
  6427. {
  6428. name: "Megapuff",
  6429. height: math.unit(500, "miles")
  6430. },
  6431. {
  6432. name: "Gigapuff",
  6433. height: math.unit(250000, "miles")
  6434. },
  6435. {
  6436. name: "Omegapuff",
  6437. height: math.unit(1000, "lightyears")
  6438. },
  6439. ]
  6440. ))
  6441. characterMakers.push(() => makeCharacter(
  6442. { name: "Vivian", species: ["wolf"], tags: ["anthro"] },
  6443. {
  6444. stomping: {
  6445. height: math.unit(6, "feet"),
  6446. weight: math.unit(170, "lbs"),
  6447. name: "Stomping",
  6448. image: {
  6449. source: "./media/characters/vivian/stomping.svg"
  6450. }
  6451. },
  6452. sitting: {
  6453. height: math.unit(6 / 1.75, "feet"),
  6454. weight: math.unit(170, "lbs"),
  6455. name: "Sitting",
  6456. image: {
  6457. source: "./media/characters/vivian/sitting.svg",
  6458. bottom: 1 / 6.4,
  6459. extra: 1,
  6460. }
  6461. },
  6462. },
  6463. [
  6464. {
  6465. name: "Normal",
  6466. height: math.unit(7, "feet"),
  6467. default: true
  6468. },
  6469. {
  6470. name: "Macro",
  6471. height: math.unit(10, "stories")
  6472. },
  6473. {
  6474. name: "Macro+",
  6475. height: math.unit(30, "stories")
  6476. },
  6477. {
  6478. name: "Megamacro",
  6479. height: math.unit(10, "miles")
  6480. },
  6481. {
  6482. name: "Megamacro+",
  6483. height: math.unit(2750000, "meters")
  6484. },
  6485. ]
  6486. ))
  6487. characterMakers.push(() => makeCharacter(
  6488. { name: "Prince", species: ["deer"], tags: ["anthro"] },
  6489. {
  6490. front: {
  6491. height: math.unit(6, "feet"),
  6492. weight: math.unit(160, "lbs"),
  6493. name: "Front",
  6494. image: {
  6495. source: "./media/characters/prince/front.svg",
  6496. extra: 1938/1682,
  6497. bottom: 45/1983
  6498. }
  6499. },
  6500. back: {
  6501. height: math.unit(6, "feet"),
  6502. weight: math.unit(160, "lbs"),
  6503. name: "Back",
  6504. image: {
  6505. source: "./media/characters/prince/back.svg",
  6506. extra: 1955/1726,
  6507. bottom: 6/1961
  6508. }
  6509. },
  6510. },
  6511. [
  6512. {
  6513. name: "Normal",
  6514. height: math.unit(7.75, "feet"),
  6515. default: true
  6516. },
  6517. {
  6518. name: "Not cute",
  6519. height: math.unit(17, "feet")
  6520. },
  6521. {
  6522. name: "I said NOT",
  6523. height: math.unit(91, "feet")
  6524. },
  6525. {
  6526. name: "Please stop",
  6527. height: math.unit(560, "feet")
  6528. },
  6529. {
  6530. name: "What have you done",
  6531. height: math.unit(2200, "feet")
  6532. },
  6533. {
  6534. name: "Deer God",
  6535. height: math.unit(3.6, "miles")
  6536. },
  6537. ]
  6538. ))
  6539. characterMakers.push(() => makeCharacter(
  6540. { name: "Psymon", species: ["horned-bush-viper", "cobra"], tags: ["anthro", "feral"] },
  6541. {
  6542. standing: {
  6543. height: math.unit(6, "feet"),
  6544. weight: math.unit(300, "lbs"),
  6545. name: "Standing",
  6546. image: {
  6547. source: "./media/characters/psymon/standing.svg",
  6548. extra: 1888 / 1810,
  6549. bottom: 0.05
  6550. }
  6551. },
  6552. slithering: {
  6553. height: math.unit(6, "feet"),
  6554. weight: math.unit(300, "lbs"),
  6555. name: "Slithering",
  6556. image: {
  6557. source: "./media/characters/psymon/slithering.svg",
  6558. extra: 1330 / 1224
  6559. }
  6560. },
  6561. slitheringAlt: {
  6562. height: math.unit(6, "feet"),
  6563. weight: math.unit(300, "lbs"),
  6564. name: "Slithering (Alt)",
  6565. image: {
  6566. source: "./media/characters/psymon/slithering-alt.svg",
  6567. extra: 1330 / 1224
  6568. }
  6569. },
  6570. },
  6571. [
  6572. {
  6573. name: "Normal",
  6574. height: math.unit(11.25, "feet"),
  6575. default: true
  6576. },
  6577. {
  6578. name: "Large",
  6579. height: math.unit(27, "feet")
  6580. },
  6581. {
  6582. name: "Giant",
  6583. height: math.unit(87, "feet")
  6584. },
  6585. {
  6586. name: "Macro",
  6587. height: math.unit(365, "feet")
  6588. },
  6589. {
  6590. name: "Megamacro",
  6591. height: math.unit(3, "miles")
  6592. },
  6593. {
  6594. name: "World Serpent",
  6595. height: math.unit(8000, "miles")
  6596. },
  6597. ]
  6598. ))
  6599. characterMakers.push(() => makeCharacter(
  6600. { name: "Daimos", species: ["veilhound"], tags: ["anthro"] },
  6601. {
  6602. front: {
  6603. height: math.unit(6, "feet"),
  6604. weight: math.unit(180, "lbs"),
  6605. name: "Front",
  6606. image: {
  6607. source: "./media/characters/daimos/front.svg",
  6608. extra: 4160 / 3897,
  6609. bottom: 0.021
  6610. }
  6611. }
  6612. },
  6613. [
  6614. {
  6615. name: "Normal",
  6616. height: math.unit(8, "feet"),
  6617. default: true
  6618. },
  6619. {
  6620. name: "Big Dog",
  6621. height: math.unit(22, "feet")
  6622. },
  6623. {
  6624. name: "Macro",
  6625. height: math.unit(127, "feet")
  6626. },
  6627. {
  6628. name: "Megamacro",
  6629. height: math.unit(3600, "feet")
  6630. },
  6631. ]
  6632. ))
  6633. characterMakers.push(() => makeCharacter(
  6634. { name: "Blake", species: ["raptor"], tags: ["feral"] },
  6635. {
  6636. side: {
  6637. height: math.unit(6, "feet"),
  6638. weight: math.unit(180, "lbs"),
  6639. name: "Side",
  6640. image: {
  6641. source: "./media/characters/blake/side.svg",
  6642. extra: 1212 / 1120,
  6643. bottom: 0.05
  6644. }
  6645. },
  6646. crouched: {
  6647. height: math.unit(6 * 0.57, "feet"),
  6648. weight: math.unit(180, "lbs"),
  6649. name: "Crouched",
  6650. image: {
  6651. source: "./media/characters/blake/crouched.svg",
  6652. extra: 840 / 587,
  6653. bottom: 0.04
  6654. }
  6655. },
  6656. bent: {
  6657. height: math.unit(6 * 0.75, "feet"),
  6658. weight: math.unit(180, "lbs"),
  6659. name: "Bent",
  6660. image: {
  6661. source: "./media/characters/blake/bent.svg",
  6662. extra: 592 / 544,
  6663. bottom: 0.035
  6664. }
  6665. },
  6666. },
  6667. [
  6668. {
  6669. name: "Normal",
  6670. height: math.unit(8 + 1 / 6, "feet"),
  6671. default: true
  6672. },
  6673. {
  6674. name: "Big Backside",
  6675. height: math.unit(37, "feet")
  6676. },
  6677. {
  6678. name: "Subway Shredder",
  6679. height: math.unit(72, "feet")
  6680. },
  6681. {
  6682. name: "City Carver",
  6683. height: math.unit(1675, "feet")
  6684. },
  6685. {
  6686. name: "Tectonic Tweaker",
  6687. height: math.unit(2300, "miles")
  6688. },
  6689. ]
  6690. ))
  6691. characterMakers.push(() => makeCharacter(
  6692. { name: "Guisetto", species: ["beetle", "moth"], tags: ["anthro"] },
  6693. {
  6694. front: {
  6695. height: math.unit(6, "feet"),
  6696. weight: math.unit(180, "lbs"),
  6697. name: "Front",
  6698. image: {
  6699. source: "./media/characters/guisetto/front.svg",
  6700. extra: 856 / 817,
  6701. bottom: 0.06
  6702. }
  6703. },
  6704. airborne: {
  6705. height: math.unit(6, "feet"),
  6706. weight: math.unit(180, "lbs"),
  6707. name: "Airborne",
  6708. image: {
  6709. source: "./media/characters/guisetto/airborne.svg",
  6710. extra: 584 / 525
  6711. }
  6712. },
  6713. },
  6714. [
  6715. {
  6716. name: "Normal",
  6717. height: math.unit(10 + 11 / 12, "feet"),
  6718. default: true
  6719. },
  6720. {
  6721. name: "Large",
  6722. height: math.unit(35, "feet")
  6723. },
  6724. {
  6725. name: "Macro",
  6726. height: math.unit(475, "feet")
  6727. },
  6728. ]
  6729. ))
  6730. characterMakers.push(() => makeCharacter(
  6731. { name: "Luxor", species: ["moth"], tags: ["anthro"] },
  6732. {
  6733. front: {
  6734. height: math.unit(6, "feet"),
  6735. weight: math.unit(180, "lbs"),
  6736. name: "Front",
  6737. image: {
  6738. source: "./media/characters/luxor/front.svg",
  6739. extra: 2940 / 2152
  6740. }
  6741. },
  6742. back: {
  6743. height: math.unit(6, "feet"),
  6744. weight: math.unit(180, "lbs"),
  6745. name: "Back",
  6746. image: {
  6747. source: "./media/characters/luxor/back.svg",
  6748. extra: 1083 / 960
  6749. }
  6750. },
  6751. },
  6752. [
  6753. {
  6754. name: "Normal",
  6755. height: math.unit(5 + 5 / 6, "feet"),
  6756. default: true
  6757. },
  6758. {
  6759. name: "Lamp",
  6760. height: math.unit(50, "feet")
  6761. },
  6762. {
  6763. name: "Lämp",
  6764. height: math.unit(300, "feet")
  6765. },
  6766. {
  6767. name: "The sun is a lamp",
  6768. height: math.unit(250000, "miles")
  6769. },
  6770. ]
  6771. ))
  6772. characterMakers.push(() => makeCharacter(
  6773. { name: "Huoyan", species: ["eastern-dragon"], tags: ["feral"] },
  6774. {
  6775. front: {
  6776. height: math.unit(6, "feet"),
  6777. weight: math.unit(50, "lbs"),
  6778. name: "Front",
  6779. image: {
  6780. source: "./media/characters/huoyan/front.svg"
  6781. }
  6782. },
  6783. side: {
  6784. height: math.unit(6, "feet"),
  6785. weight: math.unit(180, "lbs"),
  6786. name: "Side",
  6787. image: {
  6788. source: "./media/characters/huoyan/side.svg"
  6789. }
  6790. },
  6791. },
  6792. [
  6793. {
  6794. name: "Chef",
  6795. height: math.unit(9, "feet")
  6796. },
  6797. {
  6798. name: "Normal",
  6799. height: math.unit(65, "feet"),
  6800. default: true
  6801. },
  6802. {
  6803. name: "Macro",
  6804. height: math.unit(780, "feet")
  6805. },
  6806. {
  6807. name: "Flaming Mountain",
  6808. height: math.unit(4.8, "miles")
  6809. },
  6810. {
  6811. name: "Celestial",
  6812. height: math.unit(765000, "miles")
  6813. },
  6814. ]
  6815. ))
  6816. characterMakers.push(() => makeCharacter(
  6817. { name: "Tails", species: ["coyote"], tags: ["anthro"] },
  6818. {
  6819. front: {
  6820. height: math.unit(5 + 3 / 4, "feet"),
  6821. weight: math.unit(120, "lbs"),
  6822. name: "Front",
  6823. image: {
  6824. source: "./media/characters/tails/front.svg"
  6825. }
  6826. }
  6827. },
  6828. [
  6829. {
  6830. name: "Normal",
  6831. height: math.unit(5 + 3 / 4, "feet"),
  6832. default: true
  6833. }
  6834. ]
  6835. ))
  6836. characterMakers.push(() => makeCharacter(
  6837. { name: "Rainy", species: ["jaguar"], tags: ["anthro"] },
  6838. {
  6839. front: {
  6840. height: math.unit(4, "feet"),
  6841. weight: math.unit(50, "lbs"),
  6842. name: "Front",
  6843. image: {
  6844. source: "./media/characters/rainy/front.svg"
  6845. }
  6846. }
  6847. },
  6848. [
  6849. {
  6850. name: "Macro",
  6851. height: math.unit(800, "feet"),
  6852. default: true
  6853. }
  6854. ]
  6855. ))
  6856. characterMakers.push(() => makeCharacter(
  6857. { name: "Rainier", species: ["snow-leopard"], tags: ["anthro"] },
  6858. {
  6859. front: {
  6860. height: math.unit(6, "feet"),
  6861. weight: math.unit(150, "lbs"),
  6862. name: "Front",
  6863. image: {
  6864. source: "./media/characters/rainier/front.svg"
  6865. }
  6866. }
  6867. },
  6868. [
  6869. {
  6870. name: "Micro",
  6871. height: math.unit(2, "mm"),
  6872. default: true
  6873. }
  6874. ]
  6875. ))
  6876. characterMakers.push(() => makeCharacter(
  6877. { name: "Andy Renard", species: ["fox"], tags: ["anthro"] },
  6878. {
  6879. front: {
  6880. height: math.unit(8 + 4/12, "feet"),
  6881. weight: math.unit(450, "kilograms"),
  6882. name: "Front",
  6883. image: {
  6884. source: "./media/characters/andy-renard/front.svg",
  6885. extra: 862/809,
  6886. bottom: 85/947
  6887. },
  6888. extraAttributes: {
  6889. "pawSize": {
  6890. name: "Paw Size",
  6891. power: 2,
  6892. type: "area",
  6893. base: math.unit(0.45*0.3, "meters^2")
  6894. },
  6895. "handSize": {
  6896. name: "Hand Size",
  6897. power: 2,
  6898. type: "area",
  6899. base: math.unit(0.4 * 0.3, "meters^2")
  6900. },
  6901. "cockSize": {
  6902. name: "Cock Length",
  6903. power: 1,
  6904. type: "length",
  6905. base: math.unit(0.75, "meters")
  6906. },
  6907. "ballDiameter": {
  6908. name: "Ball Diameter",
  6909. power: 1,
  6910. type: "length",
  6911. base: math.unit(0.3, "meters")
  6912. },
  6913. "ballVolume": {
  6914. name: "Ball Volume",
  6915. power: 3,
  6916. type: "volume",
  6917. base: math.unit(0.01413716694, "meters^3")
  6918. },
  6919. }
  6920. },
  6921. back: {
  6922. height: math.unit(8 + 4/12, "feet"),
  6923. weight: math.unit(450, "kilograms"),
  6924. name: "Back",
  6925. image: {
  6926. source: "./media/characters/andy-renard/back.svg",
  6927. extra: 1112/1033,
  6928. bottom: 64/1176
  6929. },
  6930. extraAttributes: {
  6931. "pawSize": {
  6932. name: "Paw Size",
  6933. power: 2,
  6934. type: "area",
  6935. base: math.unit(0.45*0.3, "meters^2")
  6936. },
  6937. "handSize": {
  6938. name: "Hand Size",
  6939. power: 2,
  6940. type: "area",
  6941. base: math.unit(0.4 * 0.3, "meters^2")
  6942. },
  6943. "cockSize": {
  6944. name: "Cock Length",
  6945. power: 1,
  6946. type: "length",
  6947. base: math.unit(0.75, "meters")
  6948. },
  6949. "ballDiameter": {
  6950. name: "Ball Diameter",
  6951. power: 1,
  6952. type: "length",
  6953. base: math.unit(0.3, "meters")
  6954. },
  6955. "ballVolume": {
  6956. name: "Ball Volume",
  6957. power: 3,
  6958. type: "volume",
  6959. base: math.unit(0.01413716694, "meters^3")
  6960. },
  6961. }
  6962. },
  6963. },
  6964. [
  6965. {
  6966. name: "Tall",
  6967. height: math.unit(6 + 8/12, "feet")
  6968. },
  6969. {
  6970. name: "Very Tall",
  6971. height: math.unit(8 + 4/12, "feet")
  6972. },
  6973. {
  6974. name: "Mini Macro",
  6975. height: math.unit(15, "feet"),
  6976. default: true
  6977. },
  6978. {
  6979. name: "Giant",
  6980. height: math.unit(50, "feet")
  6981. },
  6982. {
  6983. name: "Nice",
  6984. height: math.unit(69, "feet")
  6985. },
  6986. {
  6987. name: "Macro",
  6988. height: math.unit(100, "feet")
  6989. },
  6990. {
  6991. name: "Enormous",
  6992. height: math.unit(500, "feet")
  6993. },
  6994. {
  6995. name: "Gargantuan",
  6996. height: math.unit(1000, "feet")
  6997. },
  6998. {
  6999. name: "Mega",
  7000. height: math.unit(1, "mile")
  7001. },
  7002. {
  7003. name: "Giga",
  7004. height: math.unit(50, "miles")
  7005. },
  7006. {
  7007. name: "Tera",
  7008. height: math.unit(1000, "miles")
  7009. },
  7010. {
  7011. name: "Cosmic",
  7012. height: math.unit(1.5, "galaxies")
  7013. },
  7014. {
  7015. name: "God",
  7016. height: math.unit(1.5, "universes")
  7017. },
  7018. {
  7019. name: "Chief Execute God",
  7020. height: math.unit(1.5, "multiverses")
  7021. },
  7022. ]
  7023. ))
  7024. characterMakers.push(() => makeCharacter(
  7025. { name: "Cimmaron", species: ["horse"], tags: ["anthro"] },
  7026. {
  7027. front: {
  7028. height: math.unit(6, "feet"),
  7029. weight: math.unit(210, "lbs"),
  7030. name: "Front",
  7031. image: {
  7032. source: "./media/characters/cimmaron/front-sfw.svg",
  7033. extra: 701 / 676,
  7034. bottom: 0.046
  7035. }
  7036. },
  7037. back: {
  7038. height: math.unit(6, "feet"),
  7039. weight: math.unit(210, "lbs"),
  7040. name: "Back",
  7041. image: {
  7042. source: "./media/characters/cimmaron/back-sfw.svg",
  7043. extra: 701 / 676,
  7044. bottom: 0.046
  7045. }
  7046. },
  7047. frontNsfw: {
  7048. height: math.unit(6, "feet"),
  7049. weight: math.unit(210, "lbs"),
  7050. name: "Front (NSFW)",
  7051. image: {
  7052. source: "./media/characters/cimmaron/front-nsfw.svg",
  7053. extra: 701 / 676,
  7054. bottom: 0.046
  7055. }
  7056. },
  7057. backNsfw: {
  7058. height: math.unit(6, "feet"),
  7059. weight: math.unit(210, "lbs"),
  7060. name: "Back (NSFW)",
  7061. image: {
  7062. source: "./media/characters/cimmaron/back-nsfw.svg",
  7063. extra: 701 / 676,
  7064. bottom: 0.046
  7065. }
  7066. },
  7067. dick: {
  7068. height: math.unit(1.714, "feet"),
  7069. name: "Dick",
  7070. image: {
  7071. source: "./media/characters/cimmaron/dick.svg"
  7072. }
  7073. },
  7074. },
  7075. [
  7076. {
  7077. name: "Normal",
  7078. height: math.unit(6, "feet"),
  7079. default: true
  7080. },
  7081. {
  7082. name: "Macro Mayor",
  7083. height: math.unit(350, "meters")
  7084. },
  7085. ]
  7086. ))
  7087. characterMakers.push(() => makeCharacter(
  7088. { name: "Akari Kaen", species: ["sergal"], tags: ["anthro"] },
  7089. {
  7090. front: {
  7091. height: math.unit(6, "feet"),
  7092. weight: math.unit(200, "lbs"),
  7093. name: "Front",
  7094. image: {
  7095. source: "./media/characters/akari/front.svg",
  7096. extra: 962 / 901,
  7097. bottom: 0.04
  7098. }
  7099. }
  7100. },
  7101. [
  7102. {
  7103. name: "Micro",
  7104. height: math.unit(5, "inches"),
  7105. default: true
  7106. },
  7107. {
  7108. name: "Normal",
  7109. height: math.unit(7, "feet")
  7110. },
  7111. ]
  7112. ))
  7113. characterMakers.push(() => makeCharacter(
  7114. { name: "Cynosura", species: ["gryphon"], tags: ["anthro"] },
  7115. {
  7116. front: {
  7117. height: math.unit(6, "feet"),
  7118. weight: math.unit(140, "lbs"),
  7119. name: "Front",
  7120. image: {
  7121. source: "./media/characters/cynosura/front.svg",
  7122. extra: 437/410,
  7123. bottom: 9/446
  7124. }
  7125. },
  7126. back: {
  7127. height: math.unit(6, "feet"),
  7128. weight: math.unit(140, "lbs"),
  7129. name: "Back",
  7130. image: {
  7131. source: "./media/characters/cynosura/back.svg",
  7132. extra: 1304/1160,
  7133. bottom: 71/1375
  7134. }
  7135. },
  7136. },
  7137. [
  7138. {
  7139. name: "Micro",
  7140. height: math.unit(4, "inches")
  7141. },
  7142. {
  7143. name: "Normal",
  7144. height: math.unit(5.75, "feet"),
  7145. default: true
  7146. },
  7147. {
  7148. name: "Tall",
  7149. height: math.unit(10, "feet")
  7150. },
  7151. {
  7152. name: "Big",
  7153. height: math.unit(20, "feet")
  7154. },
  7155. {
  7156. name: "Macro",
  7157. height: math.unit(50, "feet")
  7158. },
  7159. ]
  7160. ))
  7161. characterMakers.push(() => makeCharacter(
  7162. { name: "Gin", species: ["dragon"], tags: ["anthro"] },
  7163. {
  7164. front: {
  7165. height: math.unit(13 + 2/12, "feet"),
  7166. weight: math.unit(800, "kg"),
  7167. name: "Front",
  7168. image: {
  7169. source: "./media/characters/gin/front.svg",
  7170. extra: 1312/1191,
  7171. bottom: 45/1357
  7172. }
  7173. },
  7174. mouth: {
  7175. height: math.unit(2.39 * 1.8, "feet"),
  7176. name: "Mouth",
  7177. image: {
  7178. source: "./media/characters/gin/mouth.svg"
  7179. }
  7180. },
  7181. hand: {
  7182. height: math.unit(1.57 * 2.19, "feet"),
  7183. name: "Hand",
  7184. image: {
  7185. source: "./media/characters/gin/hand.svg"
  7186. }
  7187. },
  7188. foot: {
  7189. height: math.unit(6 / 4.25 * 2.19, "feet"),
  7190. name: "Foot",
  7191. image: {
  7192. source: "./media/characters/gin/foot.svg"
  7193. }
  7194. },
  7195. sole: {
  7196. height: math.unit(6 / 4.40 * 2.19, "feet"),
  7197. name: "Sole",
  7198. image: {
  7199. source: "./media/characters/gin/sole.svg"
  7200. }
  7201. },
  7202. },
  7203. [
  7204. {
  7205. name: "Very Small",
  7206. height: math.unit(13 + 2 / 12, "feet")
  7207. },
  7208. {
  7209. name: "Micro",
  7210. height: math.unit(600, "miles")
  7211. },
  7212. {
  7213. name: "Regular",
  7214. height: math.unit(20, "earths"),
  7215. default: true
  7216. },
  7217. {
  7218. name: "Macro",
  7219. height: math.unit(2.2, "solarradii")
  7220. },
  7221. {
  7222. name: "Teramacro",
  7223. height: math.unit(1.2, "galaxies")
  7224. },
  7225. {
  7226. name: "Omegamacro",
  7227. height: math.unit(200, "universes")
  7228. },
  7229. ]
  7230. ))
  7231. characterMakers.push(() => makeCharacter(
  7232. { name: "Guy", species: ["bat"], tags: ["anthro"] },
  7233. {
  7234. front: {
  7235. height: math.unit(6 + 1 / 6, "feet"),
  7236. weight: math.unit(178, "lbs"),
  7237. name: "Front",
  7238. image: {
  7239. source: "./media/characters/guy/front.svg"
  7240. }
  7241. }
  7242. },
  7243. [
  7244. {
  7245. name: "Normal",
  7246. height: math.unit(6 + 1 / 6, "feet"),
  7247. default: true
  7248. },
  7249. {
  7250. name: "Large",
  7251. height: math.unit(25 + 7 / 12, "feet")
  7252. },
  7253. {
  7254. name: "Macro",
  7255. height: math.unit(60 + 9 / 12, "feet")
  7256. },
  7257. {
  7258. name: "Macro+",
  7259. height: math.unit(246, "feet")
  7260. },
  7261. {
  7262. name: "Macro++",
  7263. height: math.unit(878, "feet")
  7264. }
  7265. ]
  7266. ))
  7267. characterMakers.push(() => makeCharacter(
  7268. { name: "Tiberius", species: ["jackal", "robot"], tags: ["anthro"] },
  7269. {
  7270. front: {
  7271. height: math.unit(9, "feet"),
  7272. weight: math.unit(800, "lbs"),
  7273. name: "Front",
  7274. image: {
  7275. source: "./media/characters/tiberius/front.svg",
  7276. extra: 2295 / 2071
  7277. }
  7278. },
  7279. back: {
  7280. height: math.unit(9, "feet"),
  7281. weight: math.unit(800, "lbs"),
  7282. name: "Back",
  7283. image: {
  7284. source: "./media/characters/tiberius/back.svg",
  7285. extra: 2373 / 2160
  7286. }
  7287. },
  7288. },
  7289. [
  7290. {
  7291. name: "Normal",
  7292. height: math.unit(9, "feet"),
  7293. default: true
  7294. }
  7295. ]
  7296. ))
  7297. characterMakers.push(() => makeCharacter(
  7298. { name: "Surgo", species: ["medihound"], tags: ["feral"] },
  7299. {
  7300. front: {
  7301. height: math.unit(6, "feet"),
  7302. weight: math.unit(600, "lbs"),
  7303. name: "Front",
  7304. image: {
  7305. source: "./media/characters/surgo/front.svg",
  7306. extra: 3591 / 2227
  7307. }
  7308. },
  7309. back: {
  7310. height: math.unit(6, "feet"),
  7311. weight: math.unit(600, "lbs"),
  7312. name: "Back",
  7313. image: {
  7314. source: "./media/characters/surgo/back.svg",
  7315. extra: 3557 / 2228
  7316. }
  7317. },
  7318. laying: {
  7319. height: math.unit(6 * 0.85, "feet"),
  7320. weight: math.unit(600, "lbs"),
  7321. name: "Laying",
  7322. image: {
  7323. source: "./media/characters/surgo/laying.svg"
  7324. }
  7325. },
  7326. },
  7327. [
  7328. {
  7329. name: "Normal",
  7330. height: math.unit(6, "feet"),
  7331. default: true
  7332. }
  7333. ]
  7334. ))
  7335. characterMakers.push(() => makeCharacter(
  7336. { name: "Cibus", species: ["dragon"], tags: ["feral"] },
  7337. {
  7338. side: {
  7339. height: math.unit(6, "feet"),
  7340. weight: math.unit(150, "lbs"),
  7341. name: "Side",
  7342. image: {
  7343. source: "./media/characters/cibus/side.svg",
  7344. extra: 800 / 400
  7345. }
  7346. },
  7347. },
  7348. [
  7349. {
  7350. name: "Normal",
  7351. height: math.unit(6, "feet"),
  7352. default: true
  7353. }
  7354. ]
  7355. ))
  7356. characterMakers.push(() => makeCharacter(
  7357. { name: "Nibbles", species: ["shark", "android"], tags: ["anthro"] },
  7358. {
  7359. front: {
  7360. height: math.unit(6, "feet"),
  7361. weight: math.unit(240, "lbs"),
  7362. name: "Front",
  7363. image: {
  7364. source: "./media/characters/nibbles/front.svg"
  7365. }
  7366. },
  7367. side: {
  7368. height: math.unit(6, "feet"),
  7369. weight: math.unit(240, "lbs"),
  7370. name: "Side",
  7371. image: {
  7372. source: "./media/characters/nibbles/side.svg"
  7373. }
  7374. },
  7375. },
  7376. [
  7377. {
  7378. name: "Normal",
  7379. height: math.unit(9, "feet"),
  7380. default: true
  7381. }
  7382. ]
  7383. ))
  7384. characterMakers.push(() => makeCharacter(
  7385. { name: "Rikky", species: ["coyote"], tags: ["anthro"] },
  7386. {
  7387. side: {
  7388. height: math.unit(5 + 1 / 6, "feet"),
  7389. weight: math.unit(130, "lbs"),
  7390. name: "Side",
  7391. image: {
  7392. source: "./media/characters/rikky/side.svg",
  7393. extra: 851 / 801
  7394. }
  7395. },
  7396. },
  7397. [
  7398. {
  7399. name: "Normal",
  7400. height: math.unit(5 + 1 / 6, "feet")
  7401. },
  7402. {
  7403. name: "Macro",
  7404. height: math.unit(152, "feet"),
  7405. default: true
  7406. },
  7407. {
  7408. name: "Megamacro",
  7409. height: math.unit(7, "miles")
  7410. }
  7411. ]
  7412. ))
  7413. characterMakers.push(() => makeCharacter(
  7414. { name: "Malfressa", species: ["dragon"], tags: ["anthro", "feral"] },
  7415. {
  7416. side: {
  7417. height: math.unit(370, "cm"),
  7418. weight: math.unit(350, "lbs"),
  7419. name: "Side",
  7420. image: {
  7421. source: "./media/characters/malfressa/side.svg"
  7422. }
  7423. },
  7424. walking: {
  7425. height: math.unit(370, "cm"),
  7426. weight: math.unit(350, "lbs"),
  7427. name: "Walking",
  7428. image: {
  7429. source: "./media/characters/malfressa/walking.svg"
  7430. }
  7431. },
  7432. feral: {
  7433. height: math.unit(2500, "cm"),
  7434. weight: math.unit(100000, "lbs"),
  7435. name: "Feral",
  7436. image: {
  7437. source: "./media/characters/malfressa/feral.svg",
  7438. extra: 2108 / 837,
  7439. bottom: 0.02
  7440. }
  7441. },
  7442. },
  7443. [
  7444. {
  7445. name: "Normal",
  7446. height: math.unit(370, "cm")
  7447. },
  7448. {
  7449. name: "Macro",
  7450. height: math.unit(300, "meters"),
  7451. default: true
  7452. }
  7453. ]
  7454. ))
  7455. characterMakers.push(() => makeCharacter(
  7456. { name: "Jaro", species: ["dragon"], tags: ["anthro"] },
  7457. {
  7458. front: {
  7459. height: math.unit(6, "feet"),
  7460. weight: math.unit(60, "kg"),
  7461. name: "Front",
  7462. image: {
  7463. source: "./media/characters/jaro/front.svg",
  7464. extra: 845/817,
  7465. bottom: 45/890
  7466. }
  7467. },
  7468. back: {
  7469. height: math.unit(6, "feet"),
  7470. weight: math.unit(60, "kg"),
  7471. name: "Back",
  7472. image: {
  7473. source: "./media/characters/jaro/back.svg",
  7474. extra: 847/817,
  7475. bottom: 34/881
  7476. }
  7477. },
  7478. },
  7479. [
  7480. {
  7481. name: "Micro",
  7482. height: math.unit(7, "inches")
  7483. },
  7484. {
  7485. name: "Normal",
  7486. height: math.unit(5.5, "feet"),
  7487. default: true
  7488. },
  7489. {
  7490. name: "Minimacro",
  7491. height: math.unit(20, "feet")
  7492. },
  7493. {
  7494. name: "Macro",
  7495. height: math.unit(200, "meters")
  7496. }
  7497. ]
  7498. ))
  7499. characterMakers.push(() => makeCharacter(
  7500. { name: "Rogue", species: ["wolf"], tags: ["anthro"] },
  7501. {
  7502. front: {
  7503. height: math.unit(6, "feet"),
  7504. weight: math.unit(195, "lb"),
  7505. name: "Front",
  7506. image: {
  7507. source: "./media/characters/rogue/front.svg"
  7508. }
  7509. },
  7510. },
  7511. [
  7512. {
  7513. name: "Macro",
  7514. height: math.unit(90, "feet"),
  7515. default: true
  7516. },
  7517. ]
  7518. ))
  7519. characterMakers.push(() => makeCharacter(
  7520. { name: "Piper", species: ["deer"], tags: ["anthro"] },
  7521. {
  7522. standing: {
  7523. height: math.unit(5 + 8 / 12, "feet"),
  7524. weight: math.unit(140, "lb"),
  7525. name: "Standing",
  7526. image: {
  7527. source: "./media/characters/piper/standing.svg",
  7528. extra: 1440/1284,
  7529. bottom: 66/1506
  7530. }
  7531. },
  7532. running: {
  7533. height: math.unit(5 + 8 / 12, "feet"),
  7534. weight: math.unit(140, "lb"),
  7535. name: "Running",
  7536. image: {
  7537. source: "./media/characters/piper/running.svg",
  7538. extra: 3948/3655,
  7539. bottom: 0/3948
  7540. }
  7541. },
  7542. sole: {
  7543. height: math.unit(0.81, "feet"),
  7544. weight: math.unit(2, "kg"),
  7545. name: "Sole",
  7546. image: {
  7547. source: "./media/characters/piper/sole.svg"
  7548. }
  7549. },
  7550. nipple: {
  7551. height: math.unit(0.25, "feet"),
  7552. weight: math.unit(1.5, "lb"),
  7553. name: "Nipple",
  7554. image: {
  7555. source: "./media/characters/piper/nipple.svg"
  7556. }
  7557. },
  7558. head: {
  7559. height: math.unit(1.1, "feet"),
  7560. name: "Head",
  7561. image: {
  7562. source: "./media/characters/piper/head.svg"
  7563. }
  7564. },
  7565. },
  7566. [
  7567. {
  7568. name: "Micro",
  7569. height: math.unit(2, "inches")
  7570. },
  7571. {
  7572. name: "Normal",
  7573. height: math.unit(5 + 8 / 12, "feet")
  7574. },
  7575. {
  7576. name: "Macro",
  7577. height: math.unit(250, "feet"),
  7578. default: true
  7579. },
  7580. {
  7581. name: "Megamacro",
  7582. height: math.unit(7, "miles")
  7583. },
  7584. ]
  7585. ))
  7586. characterMakers.push(() => makeCharacter(
  7587. { name: "Gemini", species: ["mouse"], tags: ["anthro"] },
  7588. {
  7589. front: {
  7590. height: math.unit(6, "feet"),
  7591. weight: math.unit(220, "lb"),
  7592. name: "Front",
  7593. image: {
  7594. source: "./media/characters/gemini/front.svg"
  7595. }
  7596. },
  7597. back: {
  7598. height: math.unit(6, "feet"),
  7599. weight: math.unit(220, "lb"),
  7600. name: "Back",
  7601. image: {
  7602. source: "./media/characters/gemini/back.svg"
  7603. }
  7604. },
  7605. kneeling: {
  7606. height: math.unit(6 / 1.5, "feet"),
  7607. weight: math.unit(220, "lb"),
  7608. name: "Kneeling",
  7609. image: {
  7610. source: "./media/characters/gemini/kneeling.svg",
  7611. bottom: 0.02
  7612. }
  7613. },
  7614. },
  7615. [
  7616. {
  7617. name: "Macro",
  7618. height: math.unit(300, "meters"),
  7619. default: true
  7620. },
  7621. {
  7622. name: "Megamacro",
  7623. height: math.unit(6900, "meters")
  7624. },
  7625. ]
  7626. ))
  7627. characterMakers.push(() => makeCharacter(
  7628. { name: "Alicia", species: ["dragon", "cat", "canine"], tags: ["anthro"] },
  7629. {
  7630. anthro: {
  7631. height: math.unit(2.35, "meters"),
  7632. weight: math.unit(73, "kg"),
  7633. name: "Anthro",
  7634. image: {
  7635. source: "./media/characters/alicia/anthro.svg",
  7636. extra: 2571 / 2385,
  7637. bottom: 75 / 2648
  7638. }
  7639. },
  7640. paw: {
  7641. height: math.unit(1.32, "feet"),
  7642. name: "Paw",
  7643. image: {
  7644. source: "./media/characters/alicia/paw.svg"
  7645. }
  7646. },
  7647. feral: {
  7648. height: math.unit(1.69, "meters"),
  7649. weight: math.unit(73, "kg"),
  7650. name: "Feral",
  7651. image: {
  7652. source: "./media/characters/alicia/feral.svg",
  7653. extra: 2123 / 1715,
  7654. bottom: 222 / 2349
  7655. }
  7656. },
  7657. },
  7658. [
  7659. {
  7660. name: "Normal",
  7661. height: math.unit(2.35, "meters")
  7662. },
  7663. {
  7664. name: "Macro",
  7665. height: math.unit(60, "meters"),
  7666. default: true
  7667. },
  7668. {
  7669. name: "Megamacro",
  7670. height: math.unit(10000, "kilometers")
  7671. },
  7672. ]
  7673. ))
  7674. characterMakers.push(() => makeCharacter(
  7675. { name: "Archy", species: ["snow-leopard"], tags: ["anthro"] },
  7676. {
  7677. front: {
  7678. height: math.unit(7, "feet"),
  7679. weight: math.unit(250, "lbs"),
  7680. name: "Front",
  7681. image: {
  7682. source: "./media/characters/archy/front.svg"
  7683. }
  7684. }
  7685. },
  7686. [
  7687. {
  7688. name: "Micro",
  7689. height: math.unit(1, "inch")
  7690. },
  7691. {
  7692. name: "Shorty",
  7693. height: math.unit(5, "feet")
  7694. },
  7695. {
  7696. name: "Normal",
  7697. height: math.unit(7, "feet")
  7698. },
  7699. {
  7700. name: "Macro",
  7701. height: math.unit(600, "meters"),
  7702. default: true
  7703. },
  7704. {
  7705. name: "Megamacro",
  7706. height: math.unit(1, "mile")
  7707. },
  7708. ]
  7709. ))
  7710. characterMakers.push(() => makeCharacter(
  7711. { name: "Berri", species: ["rabbit"], tags: ["anthro"] },
  7712. {
  7713. front: {
  7714. height: math.unit(1.65, "meters"),
  7715. weight: math.unit(74, "kg"),
  7716. name: "Front",
  7717. image: {
  7718. source: "./media/characters/berri/front.svg",
  7719. extra: 857 / 837,
  7720. bottom: 18 / 877
  7721. }
  7722. },
  7723. bum: {
  7724. height: math.unit(1.46, "feet"),
  7725. name: "Bum",
  7726. image: {
  7727. source: "./media/characters/berri/bum.svg"
  7728. }
  7729. },
  7730. mouth: {
  7731. height: math.unit(0.44, "feet"),
  7732. name: "Mouth",
  7733. image: {
  7734. source: "./media/characters/berri/mouth.svg"
  7735. }
  7736. },
  7737. paw: {
  7738. height: math.unit(0.826, "feet"),
  7739. name: "Paw",
  7740. image: {
  7741. source: "./media/characters/berri/paw.svg"
  7742. }
  7743. },
  7744. },
  7745. [
  7746. {
  7747. name: "Normal",
  7748. height: math.unit(1.65, "meters")
  7749. },
  7750. {
  7751. name: "Macro",
  7752. height: math.unit(60, "m"),
  7753. default: true
  7754. },
  7755. {
  7756. name: "Megamacro",
  7757. height: math.unit(9.213, "km")
  7758. },
  7759. {
  7760. name: "Planet Eater",
  7761. height: math.unit(489, "megameters")
  7762. },
  7763. {
  7764. name: "Teramacro",
  7765. height: math.unit(2471635000000, "meters")
  7766. },
  7767. {
  7768. name: "Examacro",
  7769. height: math.unit(8.0624e+26, "meters")
  7770. }
  7771. ]
  7772. ))
  7773. characterMakers.push(() => makeCharacter(
  7774. { name: "Lexi", species: ["fennec-fox"], tags: ["anthro"] },
  7775. {
  7776. front: {
  7777. height: math.unit(1.72, "meters"),
  7778. weight: math.unit(68, "kg"),
  7779. name: "Front",
  7780. image: {
  7781. source: "./media/characters/lexi/front.svg"
  7782. }
  7783. }
  7784. },
  7785. [
  7786. {
  7787. name: "Very Smol",
  7788. height: math.unit(10, "mm")
  7789. },
  7790. {
  7791. name: "Micro",
  7792. height: math.unit(6.8, "cm"),
  7793. default: true
  7794. },
  7795. {
  7796. name: "Normal",
  7797. height: math.unit(1.72, "m")
  7798. }
  7799. ]
  7800. ))
  7801. characterMakers.push(() => makeCharacter(
  7802. { name: "Martin", species: ["azodian"], tags: ["anthro"] },
  7803. {
  7804. front: {
  7805. height: math.unit(1.69, "meters"),
  7806. weight: math.unit(68, "kg"),
  7807. name: "Front",
  7808. image: {
  7809. source: "./media/characters/martin/front.svg",
  7810. extra: 596 / 581
  7811. }
  7812. }
  7813. },
  7814. [
  7815. {
  7816. name: "Micro",
  7817. height: math.unit(6.85, "cm"),
  7818. default: true
  7819. },
  7820. {
  7821. name: "Normal",
  7822. height: math.unit(1.69, "m")
  7823. }
  7824. ]
  7825. ))
  7826. characterMakers.push(() => makeCharacter(
  7827. { name: "Juno", species: ["shiba-inu", "deity"], tags: ["anthro"] },
  7828. {
  7829. front: {
  7830. height: math.unit(1.69, "meters"),
  7831. weight: math.unit(68, "kg"),
  7832. name: "Front",
  7833. image: {
  7834. source: "./media/characters/juno/front.svg"
  7835. }
  7836. }
  7837. },
  7838. [
  7839. {
  7840. name: "Micro",
  7841. height: math.unit(7, "cm")
  7842. },
  7843. {
  7844. name: "Normal",
  7845. height: math.unit(1.89, "m")
  7846. },
  7847. {
  7848. name: "Macro",
  7849. height: math.unit(353, "meters"),
  7850. default: true
  7851. }
  7852. ]
  7853. ))
  7854. characterMakers.push(() => makeCharacter(
  7855. { name: "Samantha", species: ["canine", "deity"], tags: ["anthro"] },
  7856. {
  7857. front: {
  7858. height: math.unit(1.93, "meters"),
  7859. weight: math.unit(83, "kg"),
  7860. name: "Front",
  7861. image: {
  7862. source: "./media/characters/samantha/front.svg"
  7863. }
  7864. },
  7865. frontClothed: {
  7866. height: math.unit(1.93, "meters"),
  7867. weight: math.unit(83, "kg"),
  7868. name: "Front (Clothed)",
  7869. image: {
  7870. source: "./media/characters/samantha/front-clothed.svg"
  7871. }
  7872. },
  7873. back: {
  7874. height: math.unit(1.93, "meters"),
  7875. weight: math.unit(83, "kg"),
  7876. name: "Back",
  7877. image: {
  7878. source: "./media/characters/samantha/back.svg"
  7879. }
  7880. },
  7881. },
  7882. [
  7883. {
  7884. name: "Normal",
  7885. height: math.unit(1.93, "m")
  7886. },
  7887. {
  7888. name: "Macro",
  7889. height: math.unit(74, "meters"),
  7890. default: true
  7891. },
  7892. {
  7893. name: "Macro+",
  7894. height: math.unit(223, "meters"),
  7895. },
  7896. {
  7897. name: "Megamacro",
  7898. height: math.unit(8381, "meters"),
  7899. },
  7900. {
  7901. name: "Megamacro+",
  7902. height: math.unit(12000, "kilometers")
  7903. },
  7904. ]
  7905. ))
  7906. characterMakers.push(() => makeCharacter(
  7907. { name: "Dr. Clay", species: ["canine"], tags: ["anthro"] },
  7908. {
  7909. front: {
  7910. height: math.unit(1.92, "meters"),
  7911. weight: math.unit(80, "kg"),
  7912. name: "Front",
  7913. image: {
  7914. source: "./media/characters/dr-clay/front.svg"
  7915. }
  7916. },
  7917. frontClothed: {
  7918. height: math.unit(1.92, "meters"),
  7919. weight: math.unit(80, "kg"),
  7920. name: "Front (Clothed)",
  7921. image: {
  7922. source: "./media/characters/dr-clay/front-clothed.svg"
  7923. }
  7924. }
  7925. },
  7926. [
  7927. {
  7928. name: "Normal",
  7929. height: math.unit(1.92, "m")
  7930. },
  7931. {
  7932. name: "Macro",
  7933. height: math.unit(214, "meters"),
  7934. default: true
  7935. },
  7936. {
  7937. name: "Macro+",
  7938. height: math.unit(12.237, "meters"),
  7939. },
  7940. {
  7941. name: "Megamacro",
  7942. height: math.unit(557, "megameters"),
  7943. },
  7944. {
  7945. name: "Unimaginable",
  7946. height: math.unit(120e9, "lightyears")
  7947. },
  7948. ]
  7949. ))
  7950. characterMakers.push(() => makeCharacter(
  7951. { name: "Wyvrn Ripsnarl", species: ["dragon", "wolf"], tags: ["anthro"] },
  7952. {
  7953. front: {
  7954. height: math.unit(2, "meters"),
  7955. weight: math.unit(80, "kg"),
  7956. name: "Front",
  7957. image: {
  7958. source: "./media/characters/wyvrn-ripsnarl/front.svg"
  7959. }
  7960. }
  7961. },
  7962. [
  7963. {
  7964. name: "Teramacro",
  7965. height: math.unit(500000, "lightyears"),
  7966. default: true
  7967. },
  7968. ]
  7969. ))
  7970. characterMakers.push(() => makeCharacter(
  7971. { name: "Vemus", species: ["crux", "skunk", "tanuki"], tags: ["anthro", "goo"] },
  7972. {
  7973. crux: {
  7974. height: math.unit(2, "meters"),
  7975. weight: math.unit(150, "kg"),
  7976. name: "Crux",
  7977. image: {
  7978. source: "./media/characters/vemus/crux.svg",
  7979. extra: 1074/936,
  7980. bottom: 23/1097
  7981. }
  7982. },
  7983. skunkTanuki: {
  7984. height: math.unit(2, "meters"),
  7985. weight: math.unit(150, "kg"),
  7986. name: "Skunk-Tanuki",
  7987. image: {
  7988. source: "./media/characters/vemus/skunk-tanuki.svg",
  7989. extra: 926/893,
  7990. bottom: 20/946
  7991. }
  7992. },
  7993. },
  7994. [
  7995. {
  7996. name: "Normal",
  7997. height: math.unit(4, "meters"),
  7998. default: true
  7999. },
  8000. {
  8001. name: "Big",
  8002. height: math.unit(8, "meters")
  8003. },
  8004. {
  8005. name: "Macro",
  8006. height: math.unit(100, "meters")
  8007. },
  8008. {
  8009. name: "Macro+",
  8010. height: math.unit(1500, "meters")
  8011. },
  8012. {
  8013. name: "Stellar",
  8014. height: math.unit(14e8, "meters")
  8015. },
  8016. ]
  8017. ))
  8018. characterMakers.push(() => makeCharacter(
  8019. { name: "Beherit", species: ["monster"], tags: ["anthro"] },
  8020. {
  8021. front: {
  8022. height: math.unit(2, "meters"),
  8023. weight: math.unit(70, "kg"),
  8024. name: "Front",
  8025. image: {
  8026. source: "./media/characters/beherit/front.svg",
  8027. extra: 1234/1109,
  8028. bottom: 55/1289
  8029. }
  8030. }
  8031. },
  8032. [
  8033. {
  8034. name: "Normal",
  8035. height: math.unit(6, "feet")
  8036. },
  8037. {
  8038. name: "Lorg",
  8039. height: math.unit(25, "feet"),
  8040. default: true
  8041. },
  8042. {
  8043. name: "Lorger",
  8044. height: math.unit(75, "feet")
  8045. },
  8046. {
  8047. name: "Macro",
  8048. height: math.unit(200, "meters")
  8049. },
  8050. ]
  8051. ))
  8052. characterMakers.push(() => makeCharacter(
  8053. { name: "Everett", species: ["dragon"], tags: ["anthro"] },
  8054. {
  8055. front: {
  8056. height: math.unit(2, "meters"),
  8057. weight: math.unit(150, "kg"),
  8058. name: "Front",
  8059. image: {
  8060. source: "./media/characters/everett/front.svg",
  8061. extra: 1017/866,
  8062. bottom: 86/1103
  8063. }
  8064. },
  8065. paw: {
  8066. height: math.unit(2 / 3.6, "meters"),
  8067. name: "Paw",
  8068. image: {
  8069. source: "./media/characters/everett/paw.svg"
  8070. }
  8071. },
  8072. },
  8073. [
  8074. {
  8075. name: "Normal",
  8076. height: math.unit(15, "feet"),
  8077. default: true
  8078. },
  8079. {
  8080. name: "Lorg",
  8081. height: math.unit(70, "feet"),
  8082. default: true
  8083. },
  8084. {
  8085. name: "Lorger",
  8086. height: math.unit(250, "feet")
  8087. },
  8088. {
  8089. name: "Macro",
  8090. height: math.unit(500, "meters")
  8091. },
  8092. ]
  8093. ))
  8094. characterMakers.push(() => makeCharacter(
  8095. { name: "Rose", species: ["lion", "mouse", "plush"], tags: ["anthro"] },
  8096. {
  8097. front: {
  8098. height: math.unit(2, "meters"),
  8099. weight: math.unit(86, "kg"),
  8100. name: "Front",
  8101. image: {
  8102. source: "./media/characters/rose/front.svg",
  8103. extra: 1785/1636,
  8104. bottom: 30/1815
  8105. },
  8106. form: "liom",
  8107. default: true
  8108. },
  8109. frontSporty: {
  8110. height: math.unit(2, "meters"),
  8111. weight: math.unit(86, "kg"),
  8112. name: "Front (Sporty)",
  8113. image: {
  8114. source: "./media/characters/rose/front-sporty.svg",
  8115. extra: 350/335,
  8116. bottom: 10/360
  8117. },
  8118. form: "liom"
  8119. },
  8120. frontAlt: {
  8121. height: math.unit(1.6, "meters"),
  8122. weight: math.unit(86, "kg"),
  8123. name: "Front (Alt)",
  8124. image: {
  8125. source: "./media/characters/rose/front-alt.svg",
  8126. extra: 299/283,
  8127. bottom: 3/302
  8128. },
  8129. form: "liom"
  8130. },
  8131. plush: {
  8132. height: math.unit(2, "meters"),
  8133. weight: math.unit(86/3, "kg"),
  8134. name: "Plush",
  8135. image: {
  8136. source: "./media/characters/rose/plush.svg",
  8137. extra: 361/337,
  8138. bottom: 11/372
  8139. },
  8140. form: "plush",
  8141. default: true
  8142. },
  8143. faeStanding: {
  8144. height: math.unit(10, "cm"),
  8145. weight: math.unit(10, "grams"),
  8146. name: "Standing",
  8147. image: {
  8148. source: "./media/characters/rose/fae-standing.svg",
  8149. extra: 1189/1060,
  8150. bottom: 27/1216
  8151. },
  8152. form: "fae",
  8153. default: true
  8154. },
  8155. faeSitting: {
  8156. height: math.unit(5, "cm"),
  8157. weight: math.unit(10, "grams"),
  8158. name: "Sitting",
  8159. image: {
  8160. source: "./media/characters/rose/fae-sitting.svg",
  8161. extra: 737/577,
  8162. bottom: 356/1093
  8163. },
  8164. form: "fae"
  8165. },
  8166. faePaw: {
  8167. height: math.unit(1.35, "cm"),
  8168. name: "Paw",
  8169. image: {
  8170. source: "./media/characters/rose/fae-paw.svg"
  8171. },
  8172. form: "fae"
  8173. },
  8174. },
  8175. [
  8176. {
  8177. name: "True Micro",
  8178. height: math.unit(9, "cm"),
  8179. form: "liom"
  8180. },
  8181. {
  8182. name: "Micro",
  8183. height: math.unit(16, "cm"),
  8184. form: "liom"
  8185. },
  8186. {
  8187. name: "Normal",
  8188. height: math.unit(1.85, "meters"),
  8189. default: true,
  8190. form: "liom"
  8191. },
  8192. {
  8193. name: "Mini-Macro",
  8194. height: math.unit(5, "meters"),
  8195. form: "liom"
  8196. },
  8197. {
  8198. name: "Macro",
  8199. height: math.unit(15, "meters"),
  8200. form: "liom"
  8201. },
  8202. {
  8203. name: "True Macro",
  8204. height: math.unit(40, "meters"),
  8205. form: "liom"
  8206. },
  8207. {
  8208. name: "City Scale",
  8209. height: math.unit(1, "km"),
  8210. form: "liom"
  8211. },
  8212. {
  8213. name: "Plushie",
  8214. height: math.unit(9, "cm"),
  8215. form: "plush",
  8216. default: true
  8217. },
  8218. {
  8219. name: "Fae",
  8220. height: math.unit(10, "cm"),
  8221. form: "fae",
  8222. default: true
  8223. },
  8224. ],
  8225. {
  8226. "liom": {
  8227. name: "Liom"
  8228. },
  8229. "plush": {
  8230. name: "Plush"
  8231. },
  8232. "fae": {
  8233. name: "Fae Fox",
  8234. default: true
  8235. }
  8236. }
  8237. ))
  8238. characterMakers.push(() => makeCharacter(
  8239. { name: "Regal", species: ["changeling"], tags: ["anthro"] },
  8240. {
  8241. front: {
  8242. height: math.unit(2, "meters"),
  8243. weight: math.unit(350, "lbs"),
  8244. name: "Front",
  8245. image: {
  8246. source: "./media/characters/regal/front.svg"
  8247. }
  8248. },
  8249. back: {
  8250. height: math.unit(2, "meters"),
  8251. weight: math.unit(350, "lbs"),
  8252. name: "Back",
  8253. image: {
  8254. source: "./media/characters/regal/back.svg"
  8255. }
  8256. },
  8257. },
  8258. [
  8259. {
  8260. name: "Macro",
  8261. height: math.unit(350, "feet"),
  8262. default: true
  8263. }
  8264. ]
  8265. ))
  8266. characterMakers.push(() => makeCharacter(
  8267. { name: "Opal", species: ["rabbit", "deity"], tags: ["anthro"] },
  8268. {
  8269. standing: {
  8270. height: math.unit(4 + 11/12, "feet"),
  8271. weight: math.unit(100, "lb"),
  8272. name: "Standing",
  8273. image: {
  8274. source: "./media/characters/opal/standing.svg",
  8275. extra: 1588/1513,
  8276. bottom: 23/1611
  8277. }
  8278. },
  8279. sitting: {
  8280. height: math.unit(2.3, "feet"),
  8281. weight: math.unit(100, "lb"),
  8282. name: "Sitting",
  8283. image: {
  8284. source: "./media/characters/opal/sitting.svg",
  8285. extra: 1031/892,
  8286. bottom: 142/1173
  8287. }
  8288. },
  8289. hand: {
  8290. height: math.unit(0.59, "feet"),
  8291. name: "Hand",
  8292. image: {
  8293. source: "./media/characters/opal/hand.svg"
  8294. }
  8295. },
  8296. foot: {
  8297. height: math.unit(0.61, "feet"),
  8298. name: "Foot",
  8299. image: {
  8300. source: "./media/characters/opal/foot.svg"
  8301. }
  8302. },
  8303. },
  8304. [
  8305. {
  8306. name: "Small",
  8307. height: math.unit(4 + 11 / 12, "feet")
  8308. },
  8309. {
  8310. name: "Normal",
  8311. height: math.unit(20, "feet"),
  8312. default: true
  8313. },
  8314. {
  8315. name: "Macro",
  8316. height: math.unit(120, "feet")
  8317. },
  8318. {
  8319. name: "Megamacro",
  8320. height: math.unit(80, "miles")
  8321. },
  8322. {
  8323. name: "True Size",
  8324. height: math.unit(100000, "lightyears")
  8325. },
  8326. ]
  8327. ))
  8328. characterMakers.push(() => makeCharacter(
  8329. { name: "Vector Wuff", species: ["wolf"], tags: ["anthro"] },
  8330. {
  8331. front: {
  8332. height: math.unit(6, "feet"),
  8333. weight: math.unit(200, "lbs"),
  8334. name: "Front",
  8335. image: {
  8336. source: "./media/characters/vector-wuff/front.svg"
  8337. }
  8338. }
  8339. },
  8340. [
  8341. {
  8342. name: "Normal",
  8343. height: math.unit(2.8, "meters")
  8344. },
  8345. {
  8346. name: "Macro",
  8347. height: math.unit(450, "meters"),
  8348. default: true
  8349. },
  8350. {
  8351. name: "Megamacro",
  8352. height: math.unit(15, "kilometers")
  8353. }
  8354. ]
  8355. ))
  8356. characterMakers.push(() => makeCharacter(
  8357. { name: "Dannik", species: ["gryphon"], tags: ["anthro"] },
  8358. {
  8359. front: {
  8360. height: math.unit(6, "feet"),
  8361. weight: math.unit(256, "lbs"),
  8362. name: "Front",
  8363. image: {
  8364. source: "./media/characters/dannik/front.svg"
  8365. }
  8366. }
  8367. },
  8368. [
  8369. {
  8370. name: "Macro",
  8371. height: math.unit(69.57, "meters"),
  8372. default: true
  8373. },
  8374. ]
  8375. ))
  8376. characterMakers.push(() => makeCharacter(
  8377. { name: "Azura Saharah", species: ["cheetah"], tags: ["anthro"] },
  8378. {
  8379. front: {
  8380. height: math.unit(6, "feet"),
  8381. weight: math.unit(120, "lbs"),
  8382. name: "Front",
  8383. image: {
  8384. source: "./media/characters/azura-saharah/front.svg"
  8385. }
  8386. },
  8387. back: {
  8388. height: math.unit(6, "feet"),
  8389. weight: math.unit(120, "lbs"),
  8390. name: "Back",
  8391. image: {
  8392. source: "./media/characters/azura-saharah/back.svg"
  8393. }
  8394. },
  8395. },
  8396. [
  8397. {
  8398. name: "Macro",
  8399. height: math.unit(100, "feet"),
  8400. default: true
  8401. },
  8402. ]
  8403. ))
  8404. characterMakers.push(() => makeCharacter(
  8405. { name: "Kennedy", species: ["dog"], tags: ["anthro"] },
  8406. {
  8407. side: {
  8408. height: math.unit(5 + 4 / 12, "feet"),
  8409. weight: math.unit(163, "lbs"),
  8410. name: "Side",
  8411. image: {
  8412. source: "./media/characters/kennedy/side.svg"
  8413. }
  8414. }
  8415. },
  8416. [
  8417. {
  8418. name: "Standard Doggo",
  8419. height: math.unit(5 + 4 / 12, "feet")
  8420. },
  8421. {
  8422. name: "Big Doggo",
  8423. height: math.unit(25 + 3 / 12, "feet"),
  8424. default: true
  8425. },
  8426. ]
  8427. ))
  8428. characterMakers.push(() => makeCharacter(
  8429. { name: "Odios De Lunar", species: ["golden-jackal"], tags: ["anthro"] },
  8430. {
  8431. front: {
  8432. height: math.unit(5 + 5/12, "feet"),
  8433. weight: math.unit(100, "lbs"),
  8434. name: "Front",
  8435. image: {
  8436. source: "./media/characters/odios-de-lunar/front.svg",
  8437. extra: 1468/1323,
  8438. bottom: 22/1490
  8439. }
  8440. }
  8441. },
  8442. [
  8443. {
  8444. name: "Micro",
  8445. height: math.unit(3, "inches")
  8446. },
  8447. {
  8448. name: "Normal",
  8449. height: math.unit(5.5, "feet"),
  8450. default: true
  8451. },
  8452. {
  8453. name: "Macro",
  8454. height: math.unit(100, "feet")
  8455. },
  8456. ]
  8457. ))
  8458. characterMakers.push(() => makeCharacter(
  8459. { name: "Mandake", species: ["manectric", "tiger"], tags: ["anthro"] },
  8460. {
  8461. back: {
  8462. height: math.unit(6, "feet"),
  8463. weight: math.unit(220, "lbs"),
  8464. name: "Back",
  8465. image: {
  8466. source: "./media/characters/mandake/back.svg"
  8467. }
  8468. }
  8469. },
  8470. [
  8471. {
  8472. name: "Normal",
  8473. height: math.unit(7, "feet"),
  8474. default: true
  8475. },
  8476. {
  8477. name: "Macro",
  8478. height: math.unit(78, "feet")
  8479. },
  8480. {
  8481. name: "Macro+",
  8482. height: math.unit(300, "meters")
  8483. },
  8484. {
  8485. name: "Macro++",
  8486. height: math.unit(2400, "feet")
  8487. },
  8488. {
  8489. name: "Megamacro",
  8490. height: math.unit(5167, "meters")
  8491. },
  8492. {
  8493. name: "Gigamacro",
  8494. height: math.unit(41769, "miles")
  8495. },
  8496. ]
  8497. ))
  8498. characterMakers.push(() => makeCharacter(
  8499. { name: "Yozey", species: ["rat"], tags: ["anthro"] },
  8500. {
  8501. front: {
  8502. height: math.unit(6, "feet"),
  8503. weight: math.unit(120, "lbs"),
  8504. name: "Front",
  8505. image: {
  8506. source: "./media/characters/yozey/front.svg"
  8507. }
  8508. },
  8509. frontAlt: {
  8510. height: math.unit(6, "feet"),
  8511. weight: math.unit(120, "lbs"),
  8512. name: "Front (Alt)",
  8513. image: {
  8514. source: "./media/characters/yozey/front-alt.svg"
  8515. }
  8516. },
  8517. side: {
  8518. height: math.unit(6, "feet"),
  8519. weight: math.unit(120, "lbs"),
  8520. name: "Side",
  8521. image: {
  8522. source: "./media/characters/yozey/side.svg"
  8523. }
  8524. },
  8525. },
  8526. [
  8527. {
  8528. name: "Micro",
  8529. height: math.unit(3, "inches"),
  8530. default: true
  8531. },
  8532. {
  8533. name: "Normal",
  8534. height: math.unit(6, "feet")
  8535. }
  8536. ]
  8537. ))
  8538. characterMakers.push(() => makeCharacter(
  8539. { name: "Valeska Voss", species: ["fox"], tags: ["anthro"] },
  8540. {
  8541. front: {
  8542. height: math.unit(6, "feet"),
  8543. weight: math.unit(103, "lbs"),
  8544. name: "Front",
  8545. image: {
  8546. source: "./media/characters/valeska-voss/front.svg"
  8547. }
  8548. }
  8549. },
  8550. [
  8551. {
  8552. name: "Mini-Sized Sub",
  8553. height: math.unit(3.1, "inches")
  8554. },
  8555. {
  8556. name: "Mid-Sized Sub",
  8557. height: math.unit(6.2, "inches")
  8558. },
  8559. {
  8560. name: "Full-Sized Sub",
  8561. height: math.unit(9.3, "inches")
  8562. },
  8563. {
  8564. name: "Normal",
  8565. height: math.unit(5 + 2 / 12, "foot"),
  8566. default: true
  8567. },
  8568. ]
  8569. ))
  8570. characterMakers.push(() => makeCharacter(
  8571. { name: "Gene Zeta", species: ["raptor"], tags: ["anthro"] },
  8572. {
  8573. front: {
  8574. height: math.unit(6, "feet"),
  8575. weight: math.unit(160, "lbs"),
  8576. name: "Front",
  8577. image: {
  8578. source: "./media/characters/gene-zeta/front.svg",
  8579. extra: 3006 / 2826,
  8580. bottom: 182 / 3188
  8581. }
  8582. }
  8583. },
  8584. [
  8585. {
  8586. name: "Micro",
  8587. height: math.unit(6, "inches")
  8588. },
  8589. {
  8590. name: "Normal",
  8591. height: math.unit(5 + 11 / 12, "foot"),
  8592. default: true
  8593. },
  8594. {
  8595. name: "Macro",
  8596. height: math.unit(140, "feet")
  8597. },
  8598. {
  8599. name: "Supercharged",
  8600. height: math.unit(2500, "feet")
  8601. },
  8602. ]
  8603. ))
  8604. characterMakers.push(() => makeCharacter(
  8605. { name: "Razinox", species: ["dragon"], tags: ["anthro"] },
  8606. {
  8607. front: {
  8608. height: math.unit(6, "feet"),
  8609. weight: math.unit(350, "lbs"),
  8610. name: "Front",
  8611. image: {
  8612. source: "./media/characters/razinox/front.svg",
  8613. extra: 1686 / 1548,
  8614. bottom: 28.2 / 1868
  8615. }
  8616. },
  8617. back: {
  8618. height: math.unit(6, "feet"),
  8619. weight: math.unit(350, "lbs"),
  8620. name: "Back",
  8621. image: {
  8622. source: "./media/characters/razinox/back.svg",
  8623. extra: 1660 / 1590,
  8624. bottom: 15 / 1665
  8625. }
  8626. },
  8627. },
  8628. [
  8629. {
  8630. name: "Normal",
  8631. height: math.unit(10 + 8 / 12, "foot")
  8632. },
  8633. {
  8634. name: "Minimacro",
  8635. height: math.unit(15, "foot")
  8636. },
  8637. {
  8638. name: "Macro",
  8639. height: math.unit(60, "foot"),
  8640. default: true
  8641. },
  8642. {
  8643. name: "Megamacro",
  8644. height: math.unit(5, "miles")
  8645. },
  8646. {
  8647. name: "Gigamacro",
  8648. height: math.unit(6000, "miles")
  8649. },
  8650. ]
  8651. ))
  8652. characterMakers.push(() => makeCharacter(
  8653. { name: "Cobalt", species: ["cat", "weasel"], tags: ["anthro"] },
  8654. {
  8655. front: {
  8656. height: math.unit(6, "feet"),
  8657. weight: math.unit(150, "lbs"),
  8658. name: "Front",
  8659. image: {
  8660. source: "./media/characters/cobalt/front.svg"
  8661. }
  8662. }
  8663. },
  8664. [
  8665. {
  8666. name: "Normal",
  8667. height: math.unit(8 + 1 / 12, "foot")
  8668. },
  8669. {
  8670. name: "Macro",
  8671. height: math.unit(111, "foot"),
  8672. default: true
  8673. },
  8674. {
  8675. name: "Supracosmic",
  8676. height: math.unit(1e42, "feet")
  8677. },
  8678. ]
  8679. ))
  8680. characterMakers.push(() => makeCharacter(
  8681. { name: "Amanda", species: ["mouse"], tags: ["anthro"] },
  8682. {
  8683. front: {
  8684. height: math.unit(5, "inches"),
  8685. name: "Front",
  8686. image: {
  8687. source: "./media/characters/amanda/front.svg",
  8688. extra: 926/791,
  8689. bottom: 38/964
  8690. }
  8691. },
  8692. back: {
  8693. height: math.unit(5, "inches"),
  8694. name: "Back",
  8695. image: {
  8696. source: "./media/characters/amanda/back.svg",
  8697. extra: 909/805,
  8698. bottom: 43/952
  8699. }
  8700. },
  8701. },
  8702. [
  8703. {
  8704. name: "Micro",
  8705. height: math.unit(5, "inches"),
  8706. default: true
  8707. },
  8708. ]
  8709. ))
  8710. characterMakers.push(() => makeCharacter(
  8711. { name: "Teal", species: ["octocoon"], tags: ["anthro"] },
  8712. {
  8713. front: {
  8714. height: math.unit(2.75, "meters"),
  8715. weight: math.unit(1200, "lb"),
  8716. name: "Front",
  8717. image: {
  8718. source: "./media/characters/teal/front.svg",
  8719. extra: 2463 / 2320,
  8720. bottom: 166 / 2629
  8721. }
  8722. },
  8723. back: {
  8724. height: math.unit(2.75, "meters"),
  8725. weight: math.unit(1200, "lb"),
  8726. name: "Back",
  8727. image: {
  8728. source: "./media/characters/teal/back.svg",
  8729. extra: 2580 / 2489,
  8730. bottom: 151 / 2731
  8731. }
  8732. },
  8733. sitting: {
  8734. height: math.unit(1.9, "meters"),
  8735. weight: math.unit(1200, "lb"),
  8736. name: "Sitting",
  8737. image: {
  8738. source: "./media/characters/teal/sitting.svg",
  8739. extra: 623 / 590,
  8740. bottom: 121 / 744
  8741. }
  8742. },
  8743. standing: {
  8744. height: math.unit(2.75, "meters"),
  8745. weight: math.unit(1200, "lb"),
  8746. name: "Standing",
  8747. image: {
  8748. source: "./media/characters/teal/standing.svg",
  8749. extra: 923 / 893,
  8750. bottom: 60 / 983
  8751. }
  8752. },
  8753. stretching: {
  8754. height: math.unit(3.65, "meters"),
  8755. weight: math.unit(1200, "lb"),
  8756. name: "Stretching",
  8757. image: {
  8758. source: "./media/characters/teal/stretching.svg",
  8759. extra: 1276 / 1244,
  8760. bottom: 0 / 1276
  8761. }
  8762. },
  8763. legged: {
  8764. height: math.unit(1.3, "meters"),
  8765. weight: math.unit(100, "lb"),
  8766. name: "Legged",
  8767. image: {
  8768. source: "./media/characters/teal/legged.svg",
  8769. extra: 462 / 437,
  8770. bottom: 24 / 486
  8771. }
  8772. },
  8773. naga: {
  8774. height: math.unit(5.4, "meters"),
  8775. weight: math.unit(4000, "lb"),
  8776. name: "Naga",
  8777. image: {
  8778. source: "./media/characters/teal/naga.svg",
  8779. extra: 1902 / 1858,
  8780. bottom: 0 / 1902
  8781. }
  8782. },
  8783. hand: {
  8784. height: math.unit(0.52, "meters"),
  8785. name: "Hand",
  8786. image: {
  8787. source: "./media/characters/teal/hand.svg"
  8788. }
  8789. },
  8790. maw: {
  8791. height: math.unit(0.43, "meters"),
  8792. name: "Maw",
  8793. image: {
  8794. source: "./media/characters/teal/maw.svg"
  8795. }
  8796. },
  8797. slit: {
  8798. height: math.unit(0.25, "meters"),
  8799. name: "Slit",
  8800. image: {
  8801. source: "./media/characters/teal/slit.svg"
  8802. }
  8803. },
  8804. },
  8805. [
  8806. {
  8807. name: "Normal",
  8808. height: math.unit(2.75, "meters"),
  8809. default: true
  8810. },
  8811. {
  8812. name: "Macro",
  8813. height: math.unit(300, "feet")
  8814. },
  8815. {
  8816. name: "Macro+",
  8817. height: math.unit(2000, "feet")
  8818. },
  8819. ]
  8820. ))
  8821. characterMakers.push(() => makeCharacter(
  8822. { name: "Ravin Amulet", species: ["cat", "werewolf"], tags: ["anthro"] },
  8823. {
  8824. frontCat: {
  8825. height: math.unit(6, "feet"),
  8826. weight: math.unit(180, "lbs"),
  8827. name: "Front (Cat)",
  8828. image: {
  8829. source: "./media/characters/ravin-amulet/front-cat.svg"
  8830. }
  8831. },
  8832. frontCatAlt: {
  8833. height: math.unit(6, "feet"),
  8834. weight: math.unit(180, "lbs"),
  8835. name: "Front (Alt, Cat)",
  8836. image: {
  8837. source: "./media/characters/ravin-amulet/front-cat-alt.svg"
  8838. }
  8839. },
  8840. frontWerewolf: {
  8841. height: math.unit(6 * 1.2, "feet"),
  8842. weight: math.unit(225, "lbs"),
  8843. name: "Front (Werewolf)",
  8844. image: {
  8845. source: "./media/characters/ravin-amulet/front-werewolf.svg"
  8846. }
  8847. },
  8848. backWerewolf: {
  8849. height: math.unit(6 * 1.2, "feet"),
  8850. weight: math.unit(225, "lbs"),
  8851. name: "Back (Werewolf)",
  8852. image: {
  8853. source: "./media/characters/ravin-amulet/back-werewolf.svg"
  8854. }
  8855. },
  8856. },
  8857. [
  8858. {
  8859. name: "Nano",
  8860. height: math.unit(1, "micrometer")
  8861. },
  8862. {
  8863. name: "Micro",
  8864. height: math.unit(1, "inch")
  8865. },
  8866. {
  8867. name: "Normal",
  8868. height: math.unit(6, "feet"),
  8869. default: true
  8870. },
  8871. {
  8872. name: "Macro",
  8873. height: math.unit(60, "feet")
  8874. }
  8875. ]
  8876. ))
  8877. characterMakers.push(() => makeCharacter(
  8878. { name: "Fluoresce", species: ["snow-leopard"], tags: ["anthro"] },
  8879. {
  8880. front: {
  8881. height: math.unit(6, "feet"),
  8882. weight: math.unit(165, "lbs"),
  8883. name: "Front",
  8884. image: {
  8885. source: "./media/characters/fluoresce/front.svg"
  8886. }
  8887. }
  8888. },
  8889. [
  8890. {
  8891. name: "Micro",
  8892. height: math.unit(6, "cm")
  8893. },
  8894. {
  8895. name: "Normal",
  8896. height: math.unit(5 + 7 / 12, "feet"),
  8897. default: true
  8898. },
  8899. {
  8900. name: "Macro",
  8901. height: math.unit(56, "feet")
  8902. },
  8903. {
  8904. name: "Megamacro",
  8905. height: math.unit(1.9, "miles")
  8906. },
  8907. ]
  8908. ))
  8909. characterMakers.push(() => makeCharacter(
  8910. { name: "Aurora", species: ["dragon"], tags: ["anthro"] },
  8911. {
  8912. front: {
  8913. height: math.unit(9 + 6 / 12, "feet"),
  8914. weight: math.unit(523, "lbs"),
  8915. name: "Side",
  8916. image: {
  8917. source: "./media/characters/aurora/side.svg",
  8918. extra: 474/393,
  8919. bottom: 5/479
  8920. }
  8921. }
  8922. },
  8923. [
  8924. {
  8925. name: "Normal",
  8926. height: math.unit(9 + 6 / 12, "feet")
  8927. },
  8928. {
  8929. name: "Macro",
  8930. height: math.unit(96, "feet"),
  8931. default: true
  8932. },
  8933. {
  8934. name: "Macro+",
  8935. height: math.unit(243, "feet")
  8936. },
  8937. ]
  8938. ))
  8939. characterMakers.push(() => makeCharacter(
  8940. { name: "Ranek", species: ["meerkat"], tags: ["anthro"] },
  8941. {
  8942. front: {
  8943. height: math.unit(194, "cm"),
  8944. weight: math.unit(90, "kg"),
  8945. name: "Front",
  8946. image: {
  8947. source: "./media/characters/ranek/front.svg",
  8948. extra: 1862/1791,
  8949. bottom: 80/1942
  8950. }
  8951. },
  8952. back: {
  8953. height: math.unit(194, "cm"),
  8954. weight: math.unit(90, "kg"),
  8955. name: "Back",
  8956. image: {
  8957. source: "./media/characters/ranek/back.svg",
  8958. extra: 1853/1787,
  8959. bottom: 74/1927
  8960. }
  8961. },
  8962. feral: {
  8963. height: math.unit(30, "cm"),
  8964. weight: math.unit(1.6, "lbs"),
  8965. name: "Feral",
  8966. image: {
  8967. source: "./media/characters/ranek/feral.svg",
  8968. extra: 990/631,
  8969. bottom: 29/1019
  8970. }
  8971. },
  8972. },
  8973. [
  8974. {
  8975. name: "Normal",
  8976. height: math.unit(194, "cm"),
  8977. default: true
  8978. },
  8979. {
  8980. name: "Macro",
  8981. height: math.unit(100, "meters")
  8982. },
  8983. ]
  8984. ))
  8985. characterMakers.push(() => makeCharacter(
  8986. { name: "Andrew Cooper", species: ["human"], tags: ["anthro"] },
  8987. {
  8988. front: {
  8989. height: math.unit(5 + 6 / 12, "feet"),
  8990. weight: math.unit(153, "lbs"),
  8991. name: "Front",
  8992. image: {
  8993. source: "./media/characters/andrew-cooper/front.svg"
  8994. }
  8995. },
  8996. },
  8997. [
  8998. {
  8999. name: "Nano",
  9000. height: math.unit(1, "mm")
  9001. },
  9002. {
  9003. name: "Micro",
  9004. height: math.unit(2, "inches")
  9005. },
  9006. {
  9007. name: "Normal",
  9008. height: math.unit(5 + 6 / 12, "feet"),
  9009. default: true
  9010. }
  9011. ]
  9012. ))
  9013. characterMakers.push(() => makeCharacter(
  9014. { name: "Akane Sato", species: ["wolf", "dragon"], tags: ["anthro"] },
  9015. {
  9016. front: {
  9017. height: math.unit(6, "feet"),
  9018. weight: math.unit(180, "lbs"),
  9019. name: "Front",
  9020. image: {
  9021. source: "./media/characters/akane-sato/front.svg",
  9022. extra: 1219 / 1140
  9023. }
  9024. },
  9025. back: {
  9026. height: math.unit(6, "feet"),
  9027. weight: math.unit(180, "lbs"),
  9028. name: "Back",
  9029. image: {
  9030. source: "./media/characters/akane-sato/back.svg",
  9031. extra: 1219 / 1170
  9032. }
  9033. },
  9034. },
  9035. [
  9036. {
  9037. name: "Normal",
  9038. height: math.unit(2.5, "meters")
  9039. },
  9040. {
  9041. name: "Macro",
  9042. height: math.unit(250, "meters"),
  9043. default: true
  9044. },
  9045. {
  9046. name: "Megamacro",
  9047. height: math.unit(25, "km")
  9048. },
  9049. ]
  9050. ))
  9051. characterMakers.push(() => makeCharacter(
  9052. { name: "Rook", species: ["corvid"], tags: ["anthro"] },
  9053. {
  9054. front: {
  9055. height: math.unit(6, "feet"),
  9056. weight: math.unit(65, "kg"),
  9057. name: "Front",
  9058. image: {
  9059. source: "./media/characters/rook/front.svg",
  9060. extra: 960 / 950
  9061. }
  9062. }
  9063. },
  9064. [
  9065. {
  9066. name: "Normal",
  9067. height: math.unit(8.8, "feet")
  9068. },
  9069. {
  9070. name: "Macro",
  9071. height: math.unit(88, "feet"),
  9072. default: true
  9073. },
  9074. {
  9075. name: "Megamacro",
  9076. height: math.unit(8, "miles")
  9077. },
  9078. ]
  9079. ))
  9080. characterMakers.push(() => makeCharacter(
  9081. { name: "Prodigy", species: ["geth"], tags: ["anthro"] },
  9082. {
  9083. front: {
  9084. height: math.unit(12 + 2 / 12, "feet"),
  9085. weight: math.unit(808, "lbs"),
  9086. name: "Front",
  9087. image: {
  9088. source: "./media/characters/prodigy/front.svg"
  9089. }
  9090. }
  9091. },
  9092. [
  9093. {
  9094. name: "Normal",
  9095. height: math.unit(12 + 2 / 12, "feet"),
  9096. default: true
  9097. },
  9098. {
  9099. name: "Macro",
  9100. height: math.unit(143, "feet")
  9101. },
  9102. {
  9103. name: "Macro+",
  9104. height: math.unit(400, "feet")
  9105. },
  9106. ]
  9107. ))
  9108. characterMakers.push(() => makeCharacter(
  9109. { name: "Daniel", species: ["husky"], tags: ["anthro"] },
  9110. {
  9111. front: {
  9112. height: math.unit(6, "feet"),
  9113. weight: math.unit(225, "lbs"),
  9114. name: "Front",
  9115. image: {
  9116. source: "./media/characters/daniel/front.svg"
  9117. }
  9118. },
  9119. leaning: {
  9120. height: math.unit(6, "feet"),
  9121. weight: math.unit(225, "lbs"),
  9122. name: "Leaning",
  9123. image: {
  9124. source: "./media/characters/daniel/leaning.svg"
  9125. }
  9126. },
  9127. },
  9128. [
  9129. {
  9130. name: "Macro",
  9131. height: math.unit(1000, "feet"),
  9132. default: true
  9133. },
  9134. ]
  9135. ))
  9136. characterMakers.push(() => makeCharacter(
  9137. { name: "Chiros", species: ["long-eared-bat"], tags: ["anthro"] },
  9138. {
  9139. front: {
  9140. height: math.unit(6, "feet"),
  9141. weight: math.unit(88, "lbs"),
  9142. name: "Front",
  9143. image: {
  9144. source: "./media/characters/chiros/front.svg",
  9145. extra: 306 / 226
  9146. }
  9147. },
  9148. side: {
  9149. height: math.unit(6, "feet"),
  9150. weight: math.unit(88, "lbs"),
  9151. name: "Side",
  9152. image: {
  9153. source: "./media/characters/chiros/side.svg",
  9154. extra: 306 / 226
  9155. }
  9156. },
  9157. },
  9158. [
  9159. {
  9160. name: "Normal",
  9161. height: math.unit(6, "cm"),
  9162. default: true
  9163. },
  9164. ]
  9165. ))
  9166. characterMakers.push(() => makeCharacter(
  9167. { name: "Selka", species: ["snake"], tags: ["naga"] },
  9168. {
  9169. front: {
  9170. height: math.unit(6, "feet"),
  9171. weight: math.unit(100, "lbs"),
  9172. name: "Front",
  9173. image: {
  9174. source: "./media/characters/selka/front.svg",
  9175. extra: 947 / 887
  9176. }
  9177. }
  9178. },
  9179. [
  9180. {
  9181. name: "Normal",
  9182. height: math.unit(5, "cm"),
  9183. default: true
  9184. },
  9185. ]
  9186. ))
  9187. characterMakers.push(() => makeCharacter(
  9188. { name: "Verin", species: ["dragon"], tags: ["anthro"] },
  9189. {
  9190. front: {
  9191. height: math.unit(8 + 3 / 12, "feet"),
  9192. weight: math.unit(424, "lbs"),
  9193. name: "Front",
  9194. image: {
  9195. source: "./media/characters/verin/front.svg",
  9196. extra: 1845 / 1550
  9197. }
  9198. },
  9199. frontArmored: {
  9200. height: math.unit(8 + 3 / 12, "feet"),
  9201. weight: math.unit(424, "lbs"),
  9202. name: "Front (Armored)",
  9203. image: {
  9204. source: "./media/characters/verin/front-armor.svg",
  9205. extra: 1845 / 1550,
  9206. bottom: 0.01
  9207. }
  9208. },
  9209. back: {
  9210. height: math.unit(8 + 3 / 12, "feet"),
  9211. weight: math.unit(424, "lbs"),
  9212. name: "Back",
  9213. image: {
  9214. source: "./media/characters/verin/back.svg",
  9215. bottom: 0.1,
  9216. extra: 1
  9217. }
  9218. },
  9219. foot: {
  9220. height: math.unit((8 + 3 / 12) / 4.7, "feet"),
  9221. name: "Foot",
  9222. image: {
  9223. source: "./media/characters/verin/foot.svg"
  9224. }
  9225. },
  9226. },
  9227. [
  9228. {
  9229. name: "Normal",
  9230. height: math.unit(8 + 3 / 12, "feet")
  9231. },
  9232. {
  9233. name: "Minimacro",
  9234. height: math.unit(21, "feet"),
  9235. default: true
  9236. },
  9237. {
  9238. name: "Macro",
  9239. height: math.unit(626, "feet")
  9240. },
  9241. ]
  9242. ))
  9243. characterMakers.push(() => makeCharacter(
  9244. { name: "Sovrim Terraquian", species: ["salamander", "chameleon"], tags: ["anthro"] },
  9245. {
  9246. front: {
  9247. height: math.unit(2.718, "meters"),
  9248. weight: math.unit(150, "lbs"),
  9249. name: "Front",
  9250. image: {
  9251. source: "./media/characters/sovrim-terraquian/front.svg",
  9252. extra: 1752/1689,
  9253. bottom: 36/1788
  9254. }
  9255. },
  9256. back: {
  9257. height: math.unit(2.718, "meters"),
  9258. weight: math.unit(150, "lbs"),
  9259. name: "Back",
  9260. image: {
  9261. source: "./media/characters/sovrim-terraquian/back.svg",
  9262. extra: 1698/1657,
  9263. bottom: 58/1756
  9264. }
  9265. },
  9266. tongue: {
  9267. height: math.unit(2.865, "feet"),
  9268. name: "Tongue",
  9269. image: {
  9270. source: "./media/characters/sovrim-terraquian/tongue.svg"
  9271. }
  9272. },
  9273. hand: {
  9274. height: math.unit(1.61, "feet"),
  9275. name: "Hand",
  9276. image: {
  9277. source: "./media/characters/sovrim-terraquian/hand.svg"
  9278. }
  9279. },
  9280. foot: {
  9281. height: math.unit(1.05, "feet"),
  9282. name: "Foot",
  9283. image: {
  9284. source: "./media/characters/sovrim-terraquian/foot.svg"
  9285. }
  9286. },
  9287. footAlt: {
  9288. height: math.unit(0.88, "feet"),
  9289. name: "Foot (Alt)",
  9290. image: {
  9291. source: "./media/characters/sovrim-terraquian/foot-alt.svg"
  9292. }
  9293. },
  9294. },
  9295. [
  9296. {
  9297. name: "Micro",
  9298. height: math.unit(2, "inches")
  9299. },
  9300. {
  9301. name: "Small",
  9302. height: math.unit(1, "meter")
  9303. },
  9304. {
  9305. name: "Normal",
  9306. height: math.unit(Math.E, "meters"),
  9307. default: true
  9308. },
  9309. {
  9310. name: "Macro",
  9311. height: math.unit(20, "meters")
  9312. },
  9313. {
  9314. name: "Macro+",
  9315. height: math.unit(400, "meters")
  9316. },
  9317. ]
  9318. ))
  9319. characterMakers.push(() => makeCharacter(
  9320. { name: "Reece Silvermane", species: ["horse"], tags: ["anthro"] },
  9321. {
  9322. front: {
  9323. height: math.unit(7, "feet"),
  9324. weight: math.unit(489, "lbs"),
  9325. name: "Front",
  9326. image: {
  9327. source: "./media/characters/reece-silvermane/front.svg",
  9328. bottom: 0.02,
  9329. extra: 1
  9330. }
  9331. },
  9332. },
  9333. [
  9334. {
  9335. name: "Macro",
  9336. height: math.unit(1.5, "miles"),
  9337. default: true
  9338. },
  9339. ]
  9340. ))
  9341. characterMakers.push(() => makeCharacter(
  9342. { name: "Kane", species: ["demon", "wolf"], tags: ["anthro"] },
  9343. {
  9344. front: {
  9345. height: math.unit(6, "feet"),
  9346. weight: math.unit(78, "kg"),
  9347. name: "Front",
  9348. image: {
  9349. source: "./media/characters/kane/front.svg",
  9350. extra: 978 / 899
  9351. }
  9352. },
  9353. back: {
  9354. height: math.unit(6, "feet"),
  9355. weight: math.unit(78, "kg"),
  9356. name: "Back",
  9357. image: {
  9358. source: "./media/characters/kane/back.svg",
  9359. extra: 1966/1800,
  9360. bottom: 0/1966
  9361. }
  9362. },
  9363. head: {
  9364. height: math.unit(1.4, "feet"),
  9365. name: "Head",
  9366. image: {
  9367. source: "./media/characters/kane/head.svg"
  9368. }
  9369. },
  9370. },
  9371. [
  9372. {
  9373. name: "Normal",
  9374. height: math.unit(2.1, "m"),
  9375. },
  9376. {
  9377. name: "Macro",
  9378. height: math.unit(1, "km"),
  9379. default: true
  9380. },
  9381. ]
  9382. ))
  9383. characterMakers.push(() => makeCharacter(
  9384. { name: "Tegon", species: ["dragon"], tags: ["anthro"] },
  9385. {
  9386. front: {
  9387. height: math.unit(6, "feet"),
  9388. weight: math.unit(200, "kg"),
  9389. name: "Front",
  9390. image: {
  9391. source: "./media/characters/tegon/front.svg",
  9392. bottom: 0.01,
  9393. extra: 1
  9394. }
  9395. },
  9396. },
  9397. [
  9398. {
  9399. name: "Micro",
  9400. height: math.unit(1, "inch")
  9401. },
  9402. {
  9403. name: "Normal",
  9404. height: math.unit(6 + 3 / 12, "feet"),
  9405. default: true
  9406. },
  9407. {
  9408. name: "Macro",
  9409. height: math.unit(300, "feet")
  9410. },
  9411. {
  9412. name: "Megamacro",
  9413. height: math.unit(69, "miles")
  9414. },
  9415. ]
  9416. ))
  9417. characterMakers.push(() => makeCharacter(
  9418. { name: "Arcturax", species: ["bat", "gryphon"], tags: ["anthro"] },
  9419. {
  9420. side: {
  9421. height: math.unit(6, "feet"),
  9422. weight: math.unit(2304, "lbs"),
  9423. name: "Side",
  9424. image: {
  9425. source: "./media/characters/arcturax/side.svg",
  9426. extra: 790 / 376,
  9427. bottom: 0.01
  9428. }
  9429. },
  9430. },
  9431. [
  9432. {
  9433. name: "Micro",
  9434. height: math.unit(2, "inch")
  9435. },
  9436. {
  9437. name: "Normal",
  9438. height: math.unit(6, "feet")
  9439. },
  9440. {
  9441. name: "Macro",
  9442. height: math.unit(39, "feet"),
  9443. default: true
  9444. },
  9445. {
  9446. name: "Megamacro",
  9447. height: math.unit(7, "miles")
  9448. },
  9449. ]
  9450. ))
  9451. characterMakers.push(() => makeCharacter(
  9452. { name: "Sentri", species: ["eagle"], tags: ["anthro"] },
  9453. {
  9454. front: {
  9455. height: math.unit(6, "feet"),
  9456. weight: math.unit(50, "lbs"),
  9457. name: "Front",
  9458. image: {
  9459. source: "./media/characters/sentri/front.svg",
  9460. extra: 1750 / 1570,
  9461. bottom: 0.025
  9462. }
  9463. },
  9464. frontAlt: {
  9465. height: math.unit(6, "feet"),
  9466. weight: math.unit(50, "lbs"),
  9467. name: "Front (Alt)",
  9468. image: {
  9469. source: "./media/characters/sentri/front-alt.svg",
  9470. extra: 1750 / 1570,
  9471. bottom: 0.025
  9472. }
  9473. },
  9474. },
  9475. [
  9476. {
  9477. name: "Normal",
  9478. height: math.unit(15, "feet"),
  9479. default: true
  9480. },
  9481. {
  9482. name: "Macro",
  9483. height: math.unit(2500, "feet")
  9484. }
  9485. ]
  9486. ))
  9487. characterMakers.push(() => makeCharacter(
  9488. { name: "Corvin", species: ["gecko"], tags: ["anthro"] },
  9489. {
  9490. front: {
  9491. height: math.unit(5 + 8 / 12, "feet"),
  9492. weight: math.unit(130, "lbs"),
  9493. name: "Front",
  9494. image: {
  9495. source: "./media/characters/corvin/front.svg",
  9496. extra: 1803 / 1629
  9497. }
  9498. },
  9499. frontShirt: {
  9500. height: math.unit(5 + 8 / 12, "feet"),
  9501. weight: math.unit(130, "lbs"),
  9502. name: "Front (Shirt)",
  9503. image: {
  9504. source: "./media/characters/corvin/front-shirt.svg",
  9505. extra: 1803 / 1629
  9506. }
  9507. },
  9508. frontPoncho: {
  9509. height: math.unit(5 + 8 / 12, "feet"),
  9510. weight: math.unit(130, "lbs"),
  9511. name: "Front (Poncho)",
  9512. image: {
  9513. source: "./media/characters/corvin/front-poncho.svg",
  9514. extra: 1803 / 1629
  9515. }
  9516. },
  9517. side: {
  9518. height: math.unit(5 + 8 / 12, "feet"),
  9519. weight: math.unit(130, "lbs"),
  9520. name: "Side",
  9521. image: {
  9522. source: "./media/characters/corvin/side.svg",
  9523. extra: 1012 / 945
  9524. }
  9525. },
  9526. back: {
  9527. height: math.unit(5 + 8 / 12, "feet"),
  9528. weight: math.unit(130, "lbs"),
  9529. name: "Back",
  9530. image: {
  9531. source: "./media/characters/corvin/back.svg",
  9532. extra: 1803 / 1629
  9533. }
  9534. },
  9535. },
  9536. [
  9537. {
  9538. name: "Micro",
  9539. height: math.unit(3, "inches")
  9540. },
  9541. {
  9542. name: "Normal",
  9543. height: math.unit(5 + 8 / 12, "feet")
  9544. },
  9545. {
  9546. name: "Macro",
  9547. height: math.unit(300, "feet"),
  9548. default: true
  9549. },
  9550. {
  9551. name: "Megamacro",
  9552. height: math.unit(500, "miles")
  9553. }
  9554. ]
  9555. ))
  9556. characterMakers.push(() => makeCharacter(
  9557. { name: "Q", species: ["wolf"], tags: ["anthro"] },
  9558. {
  9559. front: {
  9560. height: math.unit(6, "feet"),
  9561. weight: math.unit(135, "lbs"),
  9562. name: "Front",
  9563. image: {
  9564. source: "./media/characters/q/front.svg",
  9565. extra: 854 / 752,
  9566. bottom: 0.005
  9567. }
  9568. },
  9569. back: {
  9570. height: math.unit(6, "feet"),
  9571. weight: math.unit(130, "lbs"),
  9572. name: "Back",
  9573. image: {
  9574. source: "./media/characters/q/back.svg",
  9575. extra: 854 / 752
  9576. }
  9577. },
  9578. },
  9579. [
  9580. {
  9581. name: "Macro",
  9582. height: math.unit(90, "feet"),
  9583. default: true
  9584. },
  9585. {
  9586. name: "Extra Macro",
  9587. height: math.unit(300, "feet"),
  9588. },
  9589. {
  9590. name: "BIG WALF",
  9591. height: math.unit(750, "feet"),
  9592. },
  9593. ]
  9594. ))
  9595. characterMakers.push(() => makeCharacter(
  9596. { name: "Citrine", species: ["kobold"], tags: ["anthro"] },
  9597. {
  9598. front: {
  9599. height: math.unit(3, "feet"),
  9600. weight: math.unit(28, "lbs"),
  9601. name: "Front",
  9602. image: {
  9603. source: "./media/characters/citrine/front.svg"
  9604. }
  9605. }
  9606. },
  9607. [
  9608. {
  9609. name: "Normal",
  9610. height: math.unit(3, "feet"),
  9611. default: true
  9612. }
  9613. ]
  9614. ))
  9615. characterMakers.push(() => makeCharacter(
  9616. { name: "Aura Starwind", species: ["fox"], tags: ["anthro", "taur"] },
  9617. {
  9618. front: {
  9619. height: math.unit(14, "feet"),
  9620. weight: math.unit(1450, "kg"),
  9621. preyCapacity: math.unit(15, "people"),
  9622. name: "Front",
  9623. image: {
  9624. source: "./media/characters/aura-starwind/front.svg",
  9625. extra: 1440/1327,
  9626. bottom: 11/1451
  9627. }
  9628. },
  9629. side: {
  9630. height: math.unit(14, "feet"),
  9631. weight: math.unit(1450, "kg"),
  9632. preyCapacity: math.unit(15, "people"),
  9633. name: "Side",
  9634. image: {
  9635. source: "./media/characters/aura-starwind/side.svg",
  9636. extra: 1654 / 1497
  9637. }
  9638. },
  9639. taur: {
  9640. height: math.unit(18, "feet"),
  9641. weight: math.unit(5500, "kg"),
  9642. preyCapacity: math.unit(50, "people"),
  9643. name: "Taur",
  9644. image: {
  9645. source: "./media/characters/aura-starwind/taur.svg",
  9646. extra: 1760 / 1650
  9647. }
  9648. },
  9649. feral: {
  9650. height: math.unit(46, "feet"),
  9651. weight: math.unit(25000, "kg"),
  9652. preyCapacity: math.unit(120, "people"),
  9653. name: "Feral",
  9654. image: {
  9655. source: "./media/characters/aura-starwind/feral.svg"
  9656. }
  9657. },
  9658. },
  9659. [
  9660. {
  9661. name: "Normal",
  9662. height: math.unit(14, "feet"),
  9663. default: true
  9664. },
  9665. {
  9666. name: "Macro",
  9667. height: math.unit(50, "meters")
  9668. },
  9669. {
  9670. name: "Megamacro",
  9671. height: math.unit(5000, "meters")
  9672. },
  9673. {
  9674. name: "Gigamacro",
  9675. height: math.unit(100000, "kilometers")
  9676. },
  9677. ]
  9678. ))
  9679. characterMakers.push(() => makeCharacter(
  9680. { name: "Rivet", species: ["kobold"], tags: ["anthro"] },
  9681. {
  9682. front: {
  9683. height: math.unit(2 + 7 / 12, "feet"),
  9684. weight: math.unit(32, "lbs"),
  9685. name: "Front",
  9686. image: {
  9687. source: "./media/characters/rivet/front.svg",
  9688. extra: 1716 / 1658,
  9689. bottom: 0.03
  9690. }
  9691. },
  9692. foot: {
  9693. height: math.unit(0.551, "feet"),
  9694. name: "Rivet's Foot",
  9695. image: {
  9696. source: "./media/characters/rivet/foot.svg"
  9697. },
  9698. rename: true
  9699. }
  9700. },
  9701. [
  9702. {
  9703. name: "Micro",
  9704. height: math.unit(1.5, "inches"),
  9705. },
  9706. {
  9707. name: "Normal",
  9708. height: math.unit(2 + 7 / 12, "feet"),
  9709. default: true
  9710. },
  9711. {
  9712. name: "Macro",
  9713. height: math.unit(85, "feet")
  9714. },
  9715. {
  9716. name: "Megamacro",
  9717. height: math.unit(2.2, "km")
  9718. }
  9719. ]
  9720. ))
  9721. characterMakers.push(() => makeCharacter(
  9722. { name: "Coffee", species: ["dog"], tags: ["anthro"] },
  9723. {
  9724. front: {
  9725. height: math.unit(5 + 9 / 12, "feet"),
  9726. weight: math.unit(150, "lbs"),
  9727. name: "Front",
  9728. image: {
  9729. source: "./media/characters/coffee/front.svg",
  9730. extra: 946/880,
  9731. bottom: 66/1012
  9732. }
  9733. },
  9734. foot: {
  9735. height: math.unit(1.29, "feet"),
  9736. name: "Foot",
  9737. image: {
  9738. source: "./media/characters/coffee/foot.svg"
  9739. }
  9740. },
  9741. },
  9742. [
  9743. {
  9744. name: "Micro",
  9745. height: math.unit(2, "inches"),
  9746. },
  9747. {
  9748. name: "Normal",
  9749. height: math.unit(5 + 9 / 12, "feet"),
  9750. default: true
  9751. },
  9752. {
  9753. name: "Macro",
  9754. height: math.unit(800, "feet")
  9755. },
  9756. {
  9757. name: "Megamacro",
  9758. height: math.unit(25, "miles")
  9759. }
  9760. ]
  9761. ))
  9762. characterMakers.push(() => makeCharacter(
  9763. { name: "Chari-Gal", species: ["charizard"], tags: ["anthro"] },
  9764. {
  9765. front: {
  9766. height: math.unit(6, "feet"),
  9767. weight: math.unit(200, "lbs"),
  9768. name: "Front",
  9769. image: {
  9770. source: "./media/characters/chari-gal/front.svg",
  9771. extra: 735/649,
  9772. bottom: 55/790
  9773. },
  9774. form: "normal",
  9775. default: true
  9776. },
  9777. back: {
  9778. height: math.unit(6, "feet"),
  9779. weight: math.unit(200, "lb"),
  9780. name: "Back",
  9781. image: {
  9782. source: "./media/characters/chari-gal/back.svg",
  9783. extra: 762/666,
  9784. bottom: 31/793
  9785. },
  9786. form: "normal"
  9787. },
  9788. mouth: {
  9789. height: math.unit(1.35, "feet"),
  9790. name: "Mouth",
  9791. image: {
  9792. source: "./media/characters/chari-gal/mouth.svg"
  9793. },
  9794. form: "normal"
  9795. },
  9796. gigantamax: {
  9797. height: math.unit(6 * 16, "feet"),
  9798. weight: math.unit(200 * 16 * 16 * 16, "lbs"),
  9799. name: "Gigantamax",
  9800. image: {
  9801. source: "./media/characters/chari-gal/gigantamax-front.svg",
  9802. extra: 1507/1149,
  9803. bottom: 254/1761
  9804. },
  9805. form: "gigantamax",
  9806. default: true
  9807. },
  9808. },
  9809. [
  9810. {
  9811. name: "Normal",
  9812. height: math.unit(5 + 7 / 12, "feet"),
  9813. form: "normal",
  9814. },
  9815. {
  9816. name: "Macro",
  9817. height: math.unit(200, "feet"),
  9818. default: true,
  9819. form: "normal"
  9820. },
  9821. {
  9822. name: "Normal",
  9823. height: math.unit(16 * (5 + 7 / 12), "feet"),
  9824. form: "gigantamax",
  9825. },
  9826. {
  9827. name: "Macro",
  9828. height: math.unit(16 * 200, "feet"),
  9829. default: true,
  9830. form: "gigantamax"
  9831. },
  9832. ],
  9833. {
  9834. "normal": {
  9835. name: "Normal",
  9836. default: true
  9837. },
  9838. "gigantamax": {
  9839. name: "Gigantamax",
  9840. },
  9841. }
  9842. ))
  9843. characterMakers.push(() => makeCharacter(
  9844. { name: "Nova", species: ["wolf"], tags: ["anthro"] },
  9845. {
  9846. front: {
  9847. height: math.unit(6, "feet"),
  9848. weight: math.unit(150, "lbs"),
  9849. name: "Front",
  9850. image: {
  9851. source: "./media/characters/nova/front.svg",
  9852. extra: 5000 / 4722,
  9853. bottom: 0.02
  9854. }
  9855. }
  9856. },
  9857. [
  9858. {
  9859. name: "Micro-",
  9860. height: math.unit(0.8, "inches")
  9861. },
  9862. {
  9863. name: "Micro",
  9864. height: math.unit(2, "inches"),
  9865. default: true
  9866. },
  9867. ]
  9868. ))
  9869. characterMakers.push(() => makeCharacter(
  9870. { name: "Argent", species: ["kobold"], tags: ["anthro"] },
  9871. {
  9872. koboldFront: {
  9873. height: math.unit(3 + 1 / 12, "feet"),
  9874. weight: math.unit(21.7, "lbs"),
  9875. name: "Front",
  9876. image: {
  9877. source: "./media/characters/argent/kobold-front.svg",
  9878. extra: 1471 / 1331,
  9879. bottom: 100.8 / 1575.5
  9880. },
  9881. form: "kobold",
  9882. default: true
  9883. },
  9884. dragonFront: {
  9885. height: math.unit(75, "inches"),
  9886. name: "Front",
  9887. image: {
  9888. source: "./media/characters/argent/dragon-front.svg",
  9889. extra: 1389/1248,
  9890. bottom: 54/1443
  9891. },
  9892. form: "dragon",
  9893. },
  9894. dragonBack: {
  9895. height: math.unit(75, "inches"),
  9896. name: "Back",
  9897. image: {
  9898. source: "./media/characters/argent/dragon-back.svg",
  9899. extra: 1399/1271,
  9900. bottom: 23/1422
  9901. },
  9902. form: "dragon",
  9903. },
  9904. dragonDressed: {
  9905. height: math.unit(75, "inches"),
  9906. name: "Dressed",
  9907. image: {
  9908. source: "./media/characters/argent/dragon-dressed.svg",
  9909. extra: 1350/1215,
  9910. bottom: 26/1376
  9911. },
  9912. form: "dragon"
  9913. },
  9914. dragonHead: {
  9915. height: math.unit(23.5, "inches"),
  9916. name: "Head",
  9917. image: {
  9918. source: "./media/characters/argent/dragon-head.svg"
  9919. },
  9920. form: "dragon",
  9921. },
  9922. },
  9923. [
  9924. {
  9925. name: "Micro",
  9926. height: math.unit(2, "inches"),
  9927. form: "kobold",
  9928. },
  9929. {
  9930. name: "Normal",
  9931. height: math.unit(3 + 1 / 12, "feet"),
  9932. form: "kobold",
  9933. default: true
  9934. },
  9935. {
  9936. name: "Macro",
  9937. height: math.unit(120, "feet"),
  9938. form: "kobold",
  9939. },
  9940. {
  9941. name: "Speck",
  9942. height: math.unit(1, "mm"),
  9943. form: "dragon",
  9944. },
  9945. {
  9946. name: "Tiny",
  9947. height: math.unit(1, "cm"),
  9948. form: "dragon",
  9949. },
  9950. {
  9951. name: "Micro",
  9952. height: math.unit(5, "cm"),
  9953. form: "dragon",
  9954. },
  9955. {
  9956. name: "Normal",
  9957. height: math.unit(75, "inches"),
  9958. form: "dragon",
  9959. default: true
  9960. },
  9961. {
  9962. name: "Extra Tall",
  9963. height: math.unit(9, "feet"),
  9964. form: "dragon",
  9965. },
  9966. {
  9967. name: "Inconvenient",
  9968. height: math.unit(5, "meters"),
  9969. form: "dragon",
  9970. },
  9971. {
  9972. name: "Macro",
  9973. height: math.unit(70, "meters"),
  9974. form: "dragon",
  9975. },
  9976. {
  9977. name: "Macro+",
  9978. height: math.unit(250, "meters"),
  9979. form: "dragon",
  9980. },
  9981. {
  9982. name: "Megamacro",
  9983. height: math.unit(20, "km"),
  9984. form: "dragon",
  9985. },
  9986. {
  9987. name: "Mountainous",
  9988. height: math.unit(100, "km"),
  9989. form: "dragon",
  9990. },
  9991. {
  9992. name: "Continental",
  9993. height: math.unit(2, "megameters"),
  9994. form: "dragon",
  9995. },
  9996. {
  9997. name: "Too Big",
  9998. height: math.unit(900, "megameters"),
  9999. form: "dragon",
  10000. },
  10001. ],
  10002. {
  10003. "kobold": {
  10004. name: "Kobold",
  10005. default: true
  10006. },
  10007. "dragon": {
  10008. name: "Dragon",
  10009. },
  10010. }
  10011. ))
  10012. characterMakers.push(() => makeCharacter(
  10013. { name: "Mira al-Cul", species: ["snake"], tags: ["naga"] },
  10014. {
  10015. lamp: {
  10016. height: math.unit(7 * 1559 / 989, "feet"),
  10017. name: "Magic Lamp",
  10018. image: {
  10019. source: "./media/characters/mira-al-cul/lamp.svg",
  10020. extra: 1617 / 1559
  10021. }
  10022. },
  10023. front: {
  10024. height: math.unit(7, "feet"),
  10025. name: "Front",
  10026. image: {
  10027. source: "./media/characters/mira-al-cul/front.svg",
  10028. extra: 1044 / 990
  10029. }
  10030. },
  10031. },
  10032. [
  10033. {
  10034. name: "Heavily Restricted",
  10035. height: math.unit(7 * 1559 / 989, "feet")
  10036. },
  10037. {
  10038. name: "Freshly Freed",
  10039. height: math.unit(50 * 1559 / 989, "feet")
  10040. },
  10041. {
  10042. name: "World Encompassing",
  10043. height: math.unit(10000 * 1559 / 989, "miles")
  10044. },
  10045. {
  10046. name: "Galactic",
  10047. height: math.unit(1.433 * 1559 / 989, "zettameters")
  10048. },
  10049. {
  10050. name: "Palmed Universe",
  10051. height: math.unit(6000 * 1559 / 989, "yottameters"),
  10052. default: true
  10053. },
  10054. {
  10055. name: "Multiversal Matriarch",
  10056. height: math.unit(8.87e10, "yottameters")
  10057. },
  10058. {
  10059. name: "Void Mother",
  10060. height: math.unit(3.14e110, "yottaparsecs")
  10061. },
  10062. {
  10063. name: "Toying with Transcendence",
  10064. height: math.unit(1e307, "meters")
  10065. },
  10066. ]
  10067. ))
  10068. characterMakers.push(() => makeCharacter(
  10069. { name: "Kuro-shi Uchū", species: ["lugia"], tags: ["feral"] },
  10070. {
  10071. front: {
  10072. height: math.unit(17 + 1 / 12, "feet"),
  10073. weight: math.unit(476.2 * 5, "lbs"),
  10074. name: "Front",
  10075. image: {
  10076. source: "./media/characters/kuro-shi-uchū/front.svg",
  10077. extra: 2329 / 1835,
  10078. bottom: 0.02
  10079. }
  10080. },
  10081. },
  10082. [
  10083. {
  10084. name: "Micro",
  10085. height: math.unit(2, "inches")
  10086. },
  10087. {
  10088. name: "Normal",
  10089. height: math.unit(12, "meters")
  10090. },
  10091. {
  10092. name: "Planetary",
  10093. height: math.unit(0.00929, "AU"),
  10094. default: true
  10095. },
  10096. {
  10097. name: "Universal",
  10098. height: math.unit(20, "gigaparsecs")
  10099. },
  10100. ]
  10101. ))
  10102. characterMakers.push(() => makeCharacter(
  10103. { name: "Katherine", species: ["fox"], tags: ["anthro"] },
  10104. {
  10105. front: {
  10106. height: math.unit(5 + 2 / 12, "feet"),
  10107. weight: math.unit(120, "lbs"),
  10108. name: "Front",
  10109. image: {
  10110. source: "./media/characters/katherine/front.svg",
  10111. extra: 2075 / 1969
  10112. }
  10113. },
  10114. dress: {
  10115. height: math.unit(5 + 2 / 12, "feet"),
  10116. weight: math.unit(120, "lbs"),
  10117. name: "Dress",
  10118. image: {
  10119. source: "./media/characters/katherine/dress.svg",
  10120. extra: 2258 / 2064
  10121. }
  10122. },
  10123. },
  10124. [
  10125. {
  10126. name: "Micro",
  10127. height: math.unit(1, "inches"),
  10128. default: true
  10129. },
  10130. {
  10131. name: "Normal",
  10132. height: math.unit(5 + 2 / 12, "feet")
  10133. },
  10134. {
  10135. name: "Macro",
  10136. height: math.unit(100, "meters")
  10137. },
  10138. {
  10139. name: "Megamacro",
  10140. height: math.unit(80, "miles")
  10141. },
  10142. ]
  10143. ))
  10144. characterMakers.push(() => makeCharacter(
  10145. { name: "Yevis", species: ["cerberus"], tags: ["anthro"] },
  10146. {
  10147. front: {
  10148. height: math.unit(7 + 8 / 12, "feet"),
  10149. weight: math.unit(250, "lbs"),
  10150. name: "Front",
  10151. image: {
  10152. source: "./media/characters/yevis/front.svg",
  10153. extra: 1938 / 1755
  10154. }
  10155. }
  10156. },
  10157. [
  10158. {
  10159. name: "Mortal",
  10160. height: math.unit(7 + 8 / 12, "feet")
  10161. },
  10162. {
  10163. name: "Battle",
  10164. height: math.unit(25 + 11 / 12, "feet")
  10165. },
  10166. {
  10167. name: "Wrath",
  10168. height: math.unit(1654 + 11 / 12, "feet")
  10169. },
  10170. {
  10171. name: "Planet Destroyer",
  10172. height: math.unit(12000, "miles")
  10173. },
  10174. {
  10175. name: "Galaxy Conqueror",
  10176. height: math.unit(1.45, "zettameters"),
  10177. default: true
  10178. },
  10179. {
  10180. name: "Universal War",
  10181. height: math.unit(184, "gigaparsecs")
  10182. },
  10183. {
  10184. name: "Eternity War",
  10185. height: math.unit(1.98e55, "yottaparsecs")
  10186. },
  10187. ]
  10188. ))
  10189. characterMakers.push(() => makeCharacter(
  10190. { name: "Xavier", species: ["fox"], tags: ["anthro"] },
  10191. {
  10192. front: {
  10193. height: math.unit(5 + 8 / 12, "feet"),
  10194. weight: math.unit(63, "kg"),
  10195. name: "Front",
  10196. image: {
  10197. source: "./media/characters/xavier/front.svg",
  10198. extra: 944 / 883
  10199. }
  10200. },
  10201. frontStretch: {
  10202. height: math.unit(5 + 8 / 12, "feet"),
  10203. weight: math.unit(63, "kg"),
  10204. name: "Stretching",
  10205. image: {
  10206. source: "./media/characters/xavier/front-stretch.svg",
  10207. extra: 962 / 820
  10208. }
  10209. },
  10210. },
  10211. [
  10212. {
  10213. name: "Normal",
  10214. height: math.unit(5 + 8 / 12, "feet")
  10215. },
  10216. {
  10217. name: "Macro",
  10218. height: math.unit(100, "meters"),
  10219. default: true
  10220. },
  10221. {
  10222. name: "McLargeHuge",
  10223. height: math.unit(10, "miles")
  10224. },
  10225. ]
  10226. ))
  10227. characterMakers.push(() => makeCharacter(
  10228. { name: "Joshii", species: ["cat", "rabbit", "demon"], tags: ["anthro"] },
  10229. {
  10230. front: {
  10231. height: math.unit(5 + 5 / 12, "feet"),
  10232. weight: math.unit(150, "lb"),
  10233. name: "Front",
  10234. image: {
  10235. source: "./media/characters/joshii/front.svg",
  10236. extra: 765 / 653,
  10237. bottom: 51 / 816
  10238. }
  10239. },
  10240. foot: {
  10241. height: math.unit((5 + 5 / 12) * 0.1676, "feet"),
  10242. name: "Foot",
  10243. image: {
  10244. source: "./media/characters/joshii/foot.svg"
  10245. }
  10246. },
  10247. },
  10248. [
  10249. {
  10250. name: "Micro",
  10251. height: math.unit(2, "inches")
  10252. },
  10253. {
  10254. name: "Normal",
  10255. height: math.unit(5 + 5 / 12, "feet")
  10256. },
  10257. {
  10258. name: "Macro",
  10259. height: math.unit(785, "feet"),
  10260. default: true
  10261. },
  10262. {
  10263. name: "Megamacro",
  10264. height: math.unit(24.5, "miles")
  10265. },
  10266. ]
  10267. ))
  10268. characterMakers.push(() => makeCharacter(
  10269. { name: "Goddess Elizabeth", species: ["wolf", "deity"], tags: ["anthro"] },
  10270. {
  10271. front: {
  10272. height: math.unit(6, "feet"),
  10273. weight: math.unit(150, "lb"),
  10274. name: "Front",
  10275. image: {
  10276. source: "./media/characters/goddess-elizabeth/front.svg",
  10277. extra: 1800 / 1525,
  10278. bottom: 0.005
  10279. }
  10280. },
  10281. foot: {
  10282. height: math.unit(6 * 0.25436 * 1800 / 1525 / 2, "feet"),
  10283. name: "Foot",
  10284. image: {
  10285. source: "./media/characters/goddess-elizabeth/foot.svg"
  10286. }
  10287. },
  10288. mouth: {
  10289. height: math.unit(6, "feet"),
  10290. name: "Mouth",
  10291. image: {
  10292. source: "./media/characters/goddess-elizabeth/mouth.svg"
  10293. }
  10294. },
  10295. },
  10296. [
  10297. {
  10298. name: "Micro",
  10299. height: math.unit(12, "feet")
  10300. },
  10301. {
  10302. name: "Normal",
  10303. height: math.unit(80, "miles"),
  10304. default: true
  10305. },
  10306. {
  10307. name: "Macro",
  10308. height: math.unit(15000, "parsecs")
  10309. },
  10310. ]
  10311. ))
  10312. characterMakers.push(() => makeCharacter(
  10313. { name: "Kara", species: ["wolf"], tags: ["anthro"] },
  10314. {
  10315. front: {
  10316. height: math.unit(5 + 9 / 12, "feet"),
  10317. weight: math.unit(144, "lb"),
  10318. name: "Front",
  10319. image: {
  10320. source: "./media/characters/kara/front.svg"
  10321. }
  10322. },
  10323. feet: {
  10324. height: math.unit(6 / 6.765, "feet"),
  10325. name: "Kara's Feet",
  10326. rename: true,
  10327. image: {
  10328. source: "./media/characters/kara/feet.svg"
  10329. }
  10330. },
  10331. },
  10332. [
  10333. {
  10334. name: "Normal",
  10335. height: math.unit(5 + 9 / 12, "feet")
  10336. },
  10337. {
  10338. name: "Macro",
  10339. height: math.unit(174, "feet"),
  10340. default: true
  10341. },
  10342. ]
  10343. ))
  10344. characterMakers.push(() => makeCharacter(
  10345. { name: "Tyrone", species: ["tyrantrum"], tags: ["anthro"] },
  10346. {
  10347. front: {
  10348. height: math.unit(18, "feet"),
  10349. weight: math.unit(4050, "lb"),
  10350. name: "Front",
  10351. image: {
  10352. source: "./media/characters/tyrone/front.svg",
  10353. extra: 2405 / 2270,
  10354. bottom: 182 / 2587
  10355. }
  10356. },
  10357. },
  10358. [
  10359. {
  10360. name: "Normal",
  10361. height: math.unit(18, "feet"),
  10362. default: true
  10363. },
  10364. {
  10365. name: "Macro",
  10366. height: math.unit(300, "feet")
  10367. },
  10368. {
  10369. name: "Megamacro",
  10370. height: math.unit(15, "km")
  10371. },
  10372. {
  10373. name: "Gigamacro",
  10374. height: math.unit(500, "km")
  10375. },
  10376. {
  10377. name: "Teramacro",
  10378. height: math.unit(0.5, "gigameters")
  10379. },
  10380. {
  10381. name: "Omnimacro",
  10382. height: math.unit(1e252, "yottauniverse")
  10383. },
  10384. ]
  10385. ))
  10386. characterMakers.push(() => makeCharacter(
  10387. { name: "Danny", species: ["gryphon"], tags: ["anthro"] },
  10388. {
  10389. front: {
  10390. height: math.unit(7 + 8 / 12, "feet"),
  10391. weight: math.unit(120, "lb"),
  10392. name: "Front",
  10393. image: {
  10394. source: "./media/characters/danny/front.svg",
  10395. extra: 1490 / 1350
  10396. }
  10397. },
  10398. back: {
  10399. height: math.unit(7 + 8 / 12, "feet"),
  10400. weight: math.unit(120, "lb"),
  10401. name: "Back",
  10402. image: {
  10403. source: "./media/characters/danny/back.svg",
  10404. extra: 1490 / 1350
  10405. }
  10406. },
  10407. },
  10408. [
  10409. {
  10410. name: "Normal",
  10411. height: math.unit(7 + 8 / 12, "feet"),
  10412. default: true
  10413. },
  10414. ]
  10415. ))
  10416. characterMakers.push(() => makeCharacter(
  10417. { name: "Mallow", species: ["mouse"], tags: ["anthro"] },
  10418. {
  10419. front: {
  10420. height: math.unit(3.5, "inches"),
  10421. weight: math.unit(19, "grams"),
  10422. name: "Front",
  10423. image: {
  10424. source: "./media/characters/mallow/front.svg",
  10425. extra: 471 / 431
  10426. }
  10427. },
  10428. back: {
  10429. height: math.unit(3.5, "inches"),
  10430. weight: math.unit(19, "grams"),
  10431. name: "Back",
  10432. image: {
  10433. source: "./media/characters/mallow/back.svg",
  10434. extra: 471 / 431
  10435. }
  10436. },
  10437. },
  10438. [
  10439. {
  10440. name: "Normal",
  10441. height: math.unit(3.5, "inches"),
  10442. default: true
  10443. },
  10444. ]
  10445. ))
  10446. characterMakers.push(() => makeCharacter(
  10447. { name: "Starry Aqua", species: ["fennec-fox"], tags: ["anthro"] },
  10448. {
  10449. front: {
  10450. height: math.unit(9, "feet"),
  10451. weight: math.unit(230, "kg"),
  10452. name: "Front",
  10453. image: {
  10454. source: "./media/characters/starry-aqua/front.svg"
  10455. }
  10456. },
  10457. back: {
  10458. height: math.unit(9, "feet"),
  10459. weight: math.unit(230, "kg"),
  10460. name: "Back",
  10461. image: {
  10462. source: "./media/characters/starry-aqua/back.svg"
  10463. }
  10464. },
  10465. hand: {
  10466. height: math.unit(9 * 0.1168, "feet"),
  10467. name: "Hand",
  10468. image: {
  10469. source: "./media/characters/starry-aqua/hand.svg"
  10470. }
  10471. },
  10472. foot: {
  10473. height: math.unit(9 * 0.18, "feet"),
  10474. name: "Foot",
  10475. image: {
  10476. source: "./media/characters/starry-aqua/foot.svg"
  10477. }
  10478. }
  10479. },
  10480. [
  10481. {
  10482. name: "Micro",
  10483. height: math.unit(3, "inches")
  10484. },
  10485. {
  10486. name: "Normal",
  10487. height: math.unit(9, "feet")
  10488. },
  10489. {
  10490. name: "Macro",
  10491. height: math.unit(300, "feet"),
  10492. default: true
  10493. },
  10494. {
  10495. name: "Megamacro",
  10496. height: math.unit(3200, "feet")
  10497. }
  10498. ]
  10499. ))
  10500. characterMakers.push(() => makeCharacter(
  10501. { name: "Luka Towers", species: ["kangaroo"], tags: ["anthro"] },
  10502. {
  10503. front: {
  10504. height: math.unit(15, "feet"),
  10505. weight: math.unit(5026, "lb"),
  10506. name: "Front",
  10507. image: {
  10508. source: "./media/characters/luka-towers/front.svg",
  10509. extra: 1269/1133,
  10510. bottom: 51/1320
  10511. }
  10512. },
  10513. },
  10514. [
  10515. {
  10516. name: "Normal",
  10517. height: math.unit(15, "feet"),
  10518. default: true
  10519. },
  10520. {
  10521. name: "Minimacro",
  10522. height: math.unit(25, "feet")
  10523. },
  10524. {
  10525. name: "Macro",
  10526. height: math.unit(320, "feet")
  10527. },
  10528. {
  10529. name: "Megamacro",
  10530. height: math.unit(35000, "feet")
  10531. },
  10532. {
  10533. name: "Gigamacro",
  10534. height: math.unit(4000, "miles")
  10535. },
  10536. {
  10537. name: "Teramacro",
  10538. height: math.unit(15000, "miles")
  10539. },
  10540. ]
  10541. ))
  10542. characterMakers.push(() => makeCharacter(
  10543. { name: "Natalie Nightring", species: ["lemur"], tags: ["anthro"] },
  10544. {
  10545. front: {
  10546. height: math.unit(6, "feet"),
  10547. weight: math.unit(150, "lb"),
  10548. name: "Front",
  10549. image: {
  10550. source: "./media/characters/natalie-nightring/front.svg",
  10551. extra: 1,
  10552. bottom: 0.06
  10553. }
  10554. },
  10555. },
  10556. [
  10557. {
  10558. name: "Uh Oh",
  10559. height: math.unit(0.1, "mm")
  10560. },
  10561. {
  10562. name: "Small",
  10563. height: math.unit(3, "inches")
  10564. },
  10565. {
  10566. name: "Human Scale",
  10567. height: math.unit(6, "feet")
  10568. },
  10569. {
  10570. name: "Librarian",
  10571. height: math.unit(50, "feet"),
  10572. default: true
  10573. },
  10574. {
  10575. name: "Immense",
  10576. height: math.unit(200, "miles")
  10577. },
  10578. ]
  10579. ))
  10580. characterMakers.push(() => makeCharacter(
  10581. { name: "Danni Rosie", species: ["fox"], tags: ["anthro"] },
  10582. {
  10583. front: {
  10584. height: math.unit(6, "feet"),
  10585. weight: math.unit(180, "lbs"),
  10586. name: "Front",
  10587. image: {
  10588. source: "./media/characters/danni-rosie/front.svg",
  10589. extra: 1260 / 1128,
  10590. bottom: 0.022
  10591. }
  10592. },
  10593. },
  10594. [
  10595. {
  10596. name: "Micro",
  10597. height: math.unit(2, "inches"),
  10598. default: true
  10599. },
  10600. ]
  10601. ))
  10602. characterMakers.push(() => makeCharacter(
  10603. { name: "Samantha Kruse", species: ["human"], tags: ["anthro"] },
  10604. {
  10605. front: {
  10606. height: math.unit(5 + 9 / 12, "feet"),
  10607. weight: math.unit(220, "lb"),
  10608. name: "Front",
  10609. image: {
  10610. source: "./media/characters/samantha-kruse/front.svg",
  10611. extra: (985 / 935),
  10612. bottom: 0.03
  10613. }
  10614. },
  10615. frontUndressed: {
  10616. height: math.unit(5 + 9 / 12, "feet"),
  10617. weight: math.unit(220, "lb"),
  10618. name: "Front (Undressed)",
  10619. image: {
  10620. source: "./media/characters/samantha-kruse/front-undressed.svg",
  10621. extra: (973 / 923),
  10622. bottom: 0.025
  10623. }
  10624. },
  10625. fat: {
  10626. height: math.unit(5 + 9 / 12, "feet"),
  10627. weight: math.unit(900, "lb"),
  10628. name: "Front (Fat)",
  10629. image: {
  10630. source: "./media/characters/samantha-kruse/fat.svg",
  10631. extra: 2688 / 2561
  10632. }
  10633. },
  10634. },
  10635. [
  10636. {
  10637. name: "Normal",
  10638. height: math.unit(5 + 9 / 12, "feet"),
  10639. default: true
  10640. }
  10641. ]
  10642. ))
  10643. characterMakers.push(() => makeCharacter(
  10644. { name: "Amelia Rosie", species: ["human"], tags: ["anthro"] },
  10645. {
  10646. back: {
  10647. height: math.unit(5 + 4 / 12, "feet"),
  10648. weight: math.unit(4963, "lb"),
  10649. name: "Back",
  10650. image: {
  10651. source: "./media/characters/amelia-rosie/back.svg",
  10652. extra: 1113 / 963,
  10653. bottom: 0.01
  10654. }
  10655. },
  10656. },
  10657. [
  10658. {
  10659. name: "Level 0",
  10660. height: math.unit(5 + 4 / 12, "feet")
  10661. },
  10662. {
  10663. name: "Level 1",
  10664. height: math.unit(164597, "feet"),
  10665. default: true
  10666. },
  10667. {
  10668. name: "Level 2",
  10669. height: math.unit(956243, "miles")
  10670. },
  10671. {
  10672. name: "Level 3",
  10673. height: math.unit(29421709423, "miles")
  10674. },
  10675. {
  10676. name: "Level 4",
  10677. height: math.unit(154, "lightyears")
  10678. },
  10679. {
  10680. name: "Level 5",
  10681. height: math.unit(4738272, "lightyears")
  10682. },
  10683. {
  10684. name: "Level 6",
  10685. height: math.unit(145787152896, "lightyears")
  10686. },
  10687. ]
  10688. ))
  10689. characterMakers.push(() => makeCharacter(
  10690. { name: "Rook Kitara", species: ["raskatox"], tags: ["anthro"] },
  10691. {
  10692. front: {
  10693. height: math.unit(5 + 11 / 12, "feet"),
  10694. weight: math.unit(65, "kg"),
  10695. name: "Front",
  10696. image: {
  10697. source: "./media/characters/rook-kitara/front.svg",
  10698. extra: 1347 / 1274,
  10699. bottom: 0.005
  10700. }
  10701. },
  10702. },
  10703. [
  10704. {
  10705. name: "Totally Unfair",
  10706. height: math.unit(1.8, "mm")
  10707. },
  10708. {
  10709. name: "Lap Rookie",
  10710. height: math.unit(1.4, "feet")
  10711. },
  10712. {
  10713. name: "Normal",
  10714. height: math.unit(5 + 11 / 12, "feet"),
  10715. default: true
  10716. },
  10717. {
  10718. name: "How Did This Happen",
  10719. height: math.unit(80, "miles")
  10720. }
  10721. ]
  10722. ))
  10723. characterMakers.push(() => makeCharacter(
  10724. { name: "Pisces", species: ["kelpie"], tags: ["anthro"] },
  10725. {
  10726. front: {
  10727. height: math.unit(7, "feet"),
  10728. weight: math.unit(300, "lb"),
  10729. name: "Front",
  10730. image: {
  10731. source: "./media/characters/pisces/front.svg",
  10732. extra: 2255 / 2115,
  10733. bottom: 0.03
  10734. }
  10735. },
  10736. back: {
  10737. height: math.unit(7, "feet"),
  10738. weight: math.unit(300, "lb"),
  10739. name: "Back",
  10740. image: {
  10741. source: "./media/characters/pisces/back.svg",
  10742. extra: 2146 / 2055,
  10743. bottom: 0.04
  10744. }
  10745. },
  10746. },
  10747. [
  10748. {
  10749. name: "Normal",
  10750. height: math.unit(7, "feet"),
  10751. default: true
  10752. },
  10753. {
  10754. name: "Swimming Pool",
  10755. height: math.unit(12.2, "meters")
  10756. },
  10757. {
  10758. name: "Olympic Swimming Pool",
  10759. height: math.unit(56.3, "meters")
  10760. },
  10761. {
  10762. name: "Lake Superior",
  10763. height: math.unit(93900, "meters")
  10764. },
  10765. {
  10766. name: "Mediterranean Sea",
  10767. height: math.unit(644457, "meters")
  10768. },
  10769. {
  10770. name: "World's Oceans",
  10771. height: math.unit(4567491, "meters")
  10772. },
  10773. ]
  10774. ))
  10775. characterMakers.push(() => makeCharacter(
  10776. { name: "Zelas", species: ["rabbit", "demon"], tags: ["anthro"] },
  10777. {
  10778. front: {
  10779. height: math.unit(2.3, "meters"),
  10780. weight: math.unit(120, "kg"),
  10781. name: "Front",
  10782. image: {
  10783. source: "./media/characters/zelas/front.svg"
  10784. }
  10785. },
  10786. side: {
  10787. height: math.unit(2.3, "meters"),
  10788. weight: math.unit(120, "kg"),
  10789. name: "Side",
  10790. image: {
  10791. source: "./media/characters/zelas/side.svg"
  10792. }
  10793. },
  10794. back: {
  10795. height: math.unit(2.3, "meters"),
  10796. weight: math.unit(120, "kg"),
  10797. name: "Back",
  10798. image: {
  10799. source: "./media/characters/zelas/back.svg"
  10800. }
  10801. },
  10802. foot: {
  10803. height: math.unit(1.116, "feet"),
  10804. name: "Foot",
  10805. image: {
  10806. source: "./media/characters/zelas/foot.svg"
  10807. }
  10808. },
  10809. },
  10810. [
  10811. {
  10812. name: "Normal",
  10813. height: math.unit(2.3, "meters")
  10814. },
  10815. {
  10816. name: "Macro",
  10817. height: math.unit(30, "meters"),
  10818. default: true
  10819. },
  10820. ]
  10821. ))
  10822. characterMakers.push(() => makeCharacter(
  10823. { name: "Talbot", species: ["husky", "labrador"], tags: ["anthro"] },
  10824. {
  10825. front: {
  10826. height: math.unit(1, "inch"),
  10827. weight: math.unit(0.21, "grams"),
  10828. name: "Front",
  10829. image: {
  10830. source: "./media/characters/talbot/front.svg",
  10831. extra: 594 / 544
  10832. }
  10833. },
  10834. },
  10835. [
  10836. {
  10837. name: "Micro",
  10838. height: math.unit(1, "inch"),
  10839. default: true
  10840. },
  10841. ]
  10842. ))
  10843. characterMakers.push(() => makeCharacter(
  10844. { name: "Fliss", species: ["sylveon"], tags: ["feral"] },
  10845. {
  10846. front: {
  10847. height: math.unit(3 + 3 / 12, "feet"),
  10848. weight: math.unit(51.8, "lb"),
  10849. name: "Front",
  10850. image: {
  10851. source: "./media/characters/fliss/front.svg",
  10852. extra: 840 / 640
  10853. }
  10854. },
  10855. },
  10856. [
  10857. {
  10858. name: "Teeny Tiny",
  10859. height: math.unit(1, "mm")
  10860. },
  10861. {
  10862. name: "Small",
  10863. height: math.unit(1, "inch"),
  10864. default: true
  10865. },
  10866. {
  10867. name: "Standard Sylveon",
  10868. height: math.unit(3 + 3 / 12, "feet")
  10869. },
  10870. {
  10871. name: "Large Nuisance",
  10872. height: math.unit(33, "feet")
  10873. },
  10874. {
  10875. name: "City Filler",
  10876. height: math.unit(3000, "feet")
  10877. },
  10878. {
  10879. name: "New Horizon",
  10880. height: math.unit(6000, "miles")
  10881. },
  10882. ]
  10883. ))
  10884. characterMakers.push(() => makeCharacter(
  10885. { name: "Fleta", species: ["lion"], tags: ["anthro"] },
  10886. {
  10887. front: {
  10888. height: math.unit(5, "cm"),
  10889. weight: math.unit(1.94, "g"),
  10890. name: "Front",
  10891. image: {
  10892. source: "./media/characters/fleta/front.svg",
  10893. extra: 835 / 803
  10894. }
  10895. },
  10896. back: {
  10897. height: math.unit(5, "cm"),
  10898. weight: math.unit(1.94, "g"),
  10899. name: "Back",
  10900. image: {
  10901. source: "./media/characters/fleta/back.svg",
  10902. extra: 835 / 803
  10903. }
  10904. },
  10905. },
  10906. [
  10907. {
  10908. name: "Micro",
  10909. height: math.unit(5, "cm"),
  10910. default: true
  10911. },
  10912. ]
  10913. ))
  10914. characterMakers.push(() => makeCharacter(
  10915. { name: "Dominic", species: ["dragon"], tags: ["anthro"] },
  10916. {
  10917. front: {
  10918. height: math.unit(6, "feet"),
  10919. weight: math.unit(225, "lb"),
  10920. name: "Front",
  10921. image: {
  10922. source: "./media/characters/dominic/front.svg",
  10923. extra: 1770 / 1620,
  10924. bottom: 0.025
  10925. }
  10926. },
  10927. back: {
  10928. height: math.unit(6, "feet"),
  10929. weight: math.unit(225, "lb"),
  10930. name: "Back",
  10931. image: {
  10932. source: "./media/characters/dominic/back.svg",
  10933. extra: 1745 / 1620,
  10934. bottom: 0.065
  10935. }
  10936. },
  10937. },
  10938. [
  10939. {
  10940. name: "Nano",
  10941. height: math.unit(0.1, "mm")
  10942. },
  10943. {
  10944. name: "Micro-",
  10945. height: math.unit(1, "mm")
  10946. },
  10947. {
  10948. name: "Micro",
  10949. height: math.unit(4, "inches")
  10950. },
  10951. {
  10952. name: "Normal",
  10953. height: math.unit(6 + 4 / 12, "feet"),
  10954. default: true
  10955. },
  10956. {
  10957. name: "Macro",
  10958. height: math.unit(115, "feet")
  10959. },
  10960. {
  10961. name: "Macro+",
  10962. height: math.unit(955, "feet")
  10963. },
  10964. {
  10965. name: "Megamacro",
  10966. height: math.unit(8990, "feet")
  10967. },
  10968. {
  10969. name: "Gigmacro",
  10970. height: math.unit(9310, "miles")
  10971. },
  10972. {
  10973. name: "Teramacro",
  10974. height: math.unit(1567005010, "miles")
  10975. },
  10976. {
  10977. name: "Examacro",
  10978. height: math.unit(1425, "parsecs")
  10979. },
  10980. ]
  10981. ))
  10982. characterMakers.push(() => makeCharacter(
  10983. { name: "Major Colonel", species: ["polar-bear"], tags: ["anthro"] },
  10984. {
  10985. front: {
  10986. height: math.unit(400, "feet"),
  10987. weight: math.unit(44444444, "lb"),
  10988. name: "Front",
  10989. image: {
  10990. source: "./media/characters/major-colonel/front.svg"
  10991. }
  10992. },
  10993. back: {
  10994. height: math.unit(400, "feet"),
  10995. weight: math.unit(44444444, "lb"),
  10996. name: "Back",
  10997. image: {
  10998. source: "./media/characters/major-colonel/back.svg"
  10999. }
  11000. },
  11001. },
  11002. [
  11003. {
  11004. name: "Macro",
  11005. height: math.unit(400, "feet"),
  11006. default: true
  11007. },
  11008. ]
  11009. ))
  11010. characterMakers.push(() => makeCharacter(
  11011. { name: "Axel Lycan", species: ["cat", "wolf"], tags: ["anthro"] },
  11012. {
  11013. catFront: {
  11014. height: math.unit(6, "feet"),
  11015. weight: math.unit(120, "lb"),
  11016. name: "Front (Cat Side)",
  11017. image: {
  11018. source: "./media/characters/axel-lycan/cat-front.svg",
  11019. extra: 430 / 402,
  11020. bottom: 43 / 472.35
  11021. }
  11022. },
  11023. catBack: {
  11024. height: math.unit(6, "feet"),
  11025. weight: math.unit(120, "lb"),
  11026. name: "Back (Cat Side)",
  11027. image: {
  11028. source: "./media/characters/axel-lycan/cat-back.svg",
  11029. extra: 447 / 419,
  11030. bottom: 23.3 / 469
  11031. }
  11032. },
  11033. wolfFront: {
  11034. height: math.unit(6, "feet"),
  11035. weight: math.unit(120, "lb"),
  11036. name: "Front (Wolf Side)",
  11037. image: {
  11038. source: "./media/characters/axel-lycan/wolf-front.svg",
  11039. extra: 485 / 456,
  11040. bottom: 19 / 504
  11041. }
  11042. },
  11043. wolfBack: {
  11044. height: math.unit(6, "feet"),
  11045. weight: math.unit(120, "lb"),
  11046. name: "Back (Wolf Side)",
  11047. image: {
  11048. source: "./media/characters/axel-lycan/wolf-back.svg",
  11049. extra: 475 / 438,
  11050. bottom: 39.2 / 514
  11051. }
  11052. },
  11053. },
  11054. [
  11055. {
  11056. name: "Macro",
  11057. height: math.unit(1, "km"),
  11058. default: true
  11059. },
  11060. ]
  11061. ))
  11062. characterMakers.push(() => makeCharacter(
  11063. { name: "Vanrel (Hyena)", species: ["hyena"], tags: ["anthro"] },
  11064. {
  11065. front: {
  11066. height: math.unit(5 + 9 / 12, "feet"),
  11067. weight: math.unit(175, "lb"),
  11068. name: "Front",
  11069. image: {
  11070. source: "./media/characters/vanrel-hyena/front.svg",
  11071. extra: 1086 / 1010,
  11072. bottom: 0.04
  11073. }
  11074. },
  11075. },
  11076. [
  11077. {
  11078. name: "Normal",
  11079. height: math.unit(5 + 9 / 12, "feet"),
  11080. default: true
  11081. },
  11082. ]
  11083. ))
  11084. characterMakers.push(() => makeCharacter(
  11085. { name: "Abbott Absol", species: ["absol"], tags: ["anthro"] },
  11086. {
  11087. front: {
  11088. height: math.unit(6, "feet"),
  11089. weight: math.unit(103, "lb"),
  11090. name: "Front",
  11091. image: {
  11092. source: "./media/characters/abbott-absol/front.svg",
  11093. extra: 765/694,
  11094. bottom: 47/812
  11095. }
  11096. },
  11097. },
  11098. [
  11099. {
  11100. name: "Megamicro",
  11101. height: math.unit(0.1, "mm")
  11102. },
  11103. {
  11104. name: "Micro",
  11105. height: math.unit(1, "inch")
  11106. },
  11107. {
  11108. name: "Normal",
  11109. height: math.unit(6, "feet"),
  11110. default: true
  11111. },
  11112. ]
  11113. ))
  11114. characterMakers.push(() => makeCharacter(
  11115. { name: "Hector", species: ["werewolf"], tags: ["anthro"] },
  11116. {
  11117. front: {
  11118. height: math.unit(6, "feet"),
  11119. weight: math.unit(264, "lb"),
  11120. name: "Front",
  11121. image: {
  11122. source: "./media/characters/hector/front.svg",
  11123. extra: 2280 / 2130,
  11124. bottom: 0.07
  11125. }
  11126. },
  11127. },
  11128. [
  11129. {
  11130. name: "Normal",
  11131. height: math.unit(12.25, "foot"),
  11132. default: true
  11133. },
  11134. {
  11135. name: "Macro",
  11136. height: math.unit(160, "feet")
  11137. },
  11138. ]
  11139. ))
  11140. characterMakers.push(() => makeCharacter(
  11141. { name: "Sal", species: ["deer"], tags: ["anthro"] },
  11142. {
  11143. front: {
  11144. height: math.unit(6, "feet"),
  11145. weight: math.unit(150, "lb"),
  11146. name: "Front",
  11147. image: {
  11148. source: "./media/characters/sal/front.svg",
  11149. extra: 1846 / 1699,
  11150. bottom: 0.04
  11151. }
  11152. },
  11153. },
  11154. [
  11155. {
  11156. name: "Megamacro",
  11157. height: math.unit(10, "miles"),
  11158. default: true
  11159. },
  11160. ]
  11161. ))
  11162. characterMakers.push(() => makeCharacter(
  11163. { name: "Ranger", species: ["dragon"], tags: ["feral"] },
  11164. {
  11165. front: {
  11166. height: math.unit(3, "meters"),
  11167. weight: math.unit(450, "kg"),
  11168. name: "front",
  11169. image: {
  11170. source: "./media/characters/ranger/front.svg",
  11171. extra: 2401 / 2243,
  11172. bottom: 0.05
  11173. }
  11174. },
  11175. },
  11176. [
  11177. {
  11178. name: "Normal",
  11179. height: math.unit(3, "meters"),
  11180. default: true
  11181. },
  11182. ]
  11183. ))
  11184. characterMakers.push(() => makeCharacter(
  11185. { name: "Theresa", species: ["sergal"], tags: ["anthro"] },
  11186. {
  11187. front: {
  11188. height: math.unit(14, "feet"),
  11189. weight: math.unit(800, "kg"),
  11190. name: "Front",
  11191. image: {
  11192. source: "./media/characters/theresa/front.svg",
  11193. extra: 3575 / 3346,
  11194. bottom: 0.03
  11195. }
  11196. },
  11197. },
  11198. [
  11199. {
  11200. name: "Normal",
  11201. height: math.unit(14, "feet"),
  11202. default: true
  11203. },
  11204. ]
  11205. ))
  11206. characterMakers.push(() => makeCharacter(
  11207. { name: "Ine", species: ["wolver"], tags: ["feral"] },
  11208. {
  11209. front: {
  11210. height: math.unit(6, "feet"),
  11211. weight: math.unit(3, "kg"),
  11212. name: "Front",
  11213. image: {
  11214. source: "./media/characters/ine/front.svg",
  11215. extra: 678 / 539,
  11216. bottom: 0.023
  11217. }
  11218. },
  11219. },
  11220. [
  11221. {
  11222. name: "Normal",
  11223. height: math.unit(2.265, "feet"),
  11224. default: true
  11225. },
  11226. ]
  11227. ))
  11228. characterMakers.push(() => makeCharacter(
  11229. { name: "Vial", species: ["crux"], tags: ["anthro"] },
  11230. {
  11231. front: {
  11232. height: math.unit(5, "feet"),
  11233. weight: math.unit(30, "kg"),
  11234. name: "Front",
  11235. image: {
  11236. source: "./media/characters/vial/front.svg",
  11237. extra: 1365 / 1277,
  11238. bottom: 0.04
  11239. }
  11240. },
  11241. },
  11242. [
  11243. {
  11244. name: "Normal",
  11245. height: math.unit(5, "feet"),
  11246. default: true
  11247. },
  11248. ]
  11249. ))
  11250. characterMakers.push(() => makeCharacter(
  11251. { name: "Rovoska", species: ["gryphon"], tags: ["feral"] },
  11252. {
  11253. side: {
  11254. height: math.unit(3.4, "meters"),
  11255. weight: math.unit(1000, "lb"),
  11256. name: "Side",
  11257. image: {
  11258. source: "./media/characters/rovoska/side.svg",
  11259. extra: 4403 / 1515
  11260. }
  11261. },
  11262. },
  11263. [
  11264. {
  11265. name: "Normal",
  11266. height: math.unit(3.4, "meters"),
  11267. default: true
  11268. },
  11269. ]
  11270. ))
  11271. characterMakers.push(() => makeCharacter(
  11272. { name: "Gunner Rotthbauer", species: ["rottweiler"], tags: ["anthro"] },
  11273. {
  11274. front: {
  11275. height: math.unit(8, "feet"),
  11276. weight: math.unit(315, "lb"),
  11277. name: "Front",
  11278. image: {
  11279. source: "./media/characters/gunner-rotthbauer/front.svg"
  11280. }
  11281. },
  11282. back: {
  11283. height: math.unit(8, "feet"),
  11284. weight: math.unit(315, "lb"),
  11285. name: "Back",
  11286. image: {
  11287. source: "./media/characters/gunner-rotthbauer/back.svg"
  11288. }
  11289. },
  11290. },
  11291. [
  11292. {
  11293. name: "Micro",
  11294. height: math.unit(3.5, "inches")
  11295. },
  11296. {
  11297. name: "Normal",
  11298. height: math.unit(8, "feet"),
  11299. default: true
  11300. },
  11301. {
  11302. name: "Macro",
  11303. height: math.unit(250, "feet")
  11304. },
  11305. {
  11306. name: "Megamacro",
  11307. height: math.unit(1, "AU")
  11308. },
  11309. ]
  11310. ))
  11311. characterMakers.push(() => makeCharacter(
  11312. { name: "Allatia", species: ["tiger"], tags: ["anthro"] },
  11313. {
  11314. front: {
  11315. height: math.unit(5 + 5 / 12, "feet"),
  11316. weight: math.unit(140, "lb"),
  11317. name: "Front",
  11318. image: {
  11319. source: "./media/characters/allatia/front.svg",
  11320. extra: 1227 / 1180,
  11321. bottom: 0.027
  11322. }
  11323. },
  11324. },
  11325. [
  11326. {
  11327. name: "Normal",
  11328. height: math.unit(5 + 5 / 12, "feet")
  11329. },
  11330. {
  11331. name: "Macro",
  11332. height: math.unit(250, "feet"),
  11333. default: true
  11334. },
  11335. {
  11336. name: "Megamacro",
  11337. height: math.unit(8, "miles")
  11338. }
  11339. ]
  11340. ))
  11341. characterMakers.push(() => makeCharacter(
  11342. { name: "Tene", species: ["dragon", "fox"], tags: ["anthro"] },
  11343. {
  11344. front: {
  11345. height: math.unit(6, "feet"),
  11346. weight: math.unit(120, "lb"),
  11347. name: "Front",
  11348. image: {
  11349. source: "./media/characters/tene/front.svg",
  11350. extra: 814/750,
  11351. bottom: 36/850
  11352. }
  11353. },
  11354. stomping: {
  11355. height: math.unit(2.025, "meters"),
  11356. weight: math.unit(120, "lb"),
  11357. name: "Stomping",
  11358. image: {
  11359. source: "./media/characters/tene/stomping.svg",
  11360. extra: 885/821,
  11361. bottom: 15/900
  11362. }
  11363. },
  11364. sitting: {
  11365. height: math.unit(1, "meter"),
  11366. weight: math.unit(120, "lb"),
  11367. name: "Sitting",
  11368. image: {
  11369. source: "./media/characters/tene/sitting.svg",
  11370. extra: 396/366,
  11371. bottom: 79/475
  11372. }
  11373. },
  11374. smiling: {
  11375. height: math.unit(1.2, "feet"),
  11376. name: "Smiling",
  11377. image: {
  11378. source: "./media/characters/tene/smiling.svg",
  11379. extra: 1364/1071,
  11380. bottom: 0/1364
  11381. }
  11382. },
  11383. smug: {
  11384. height: math.unit(1.3, "feet"),
  11385. name: "Smug",
  11386. image: {
  11387. source: "./media/characters/tene/smug.svg",
  11388. extra: 1323/1082,
  11389. bottom: 0/1323
  11390. }
  11391. },
  11392. feral: {
  11393. height: math.unit(3.9, "feet"),
  11394. weight: math.unit(250, "lb"),
  11395. name: "Feral",
  11396. image: {
  11397. source: "./media/characters/tene/feral.svg",
  11398. extra: 717 / 458,
  11399. bottom: 0.179
  11400. }
  11401. },
  11402. },
  11403. [
  11404. {
  11405. name: "Normal",
  11406. height: math.unit(6, "feet")
  11407. },
  11408. {
  11409. name: "Macro",
  11410. height: math.unit(300, "feet"),
  11411. default: true
  11412. },
  11413. {
  11414. name: "Megamacro",
  11415. height: math.unit(5, "miles")
  11416. },
  11417. ]
  11418. ))
  11419. characterMakers.push(() => makeCharacter(
  11420. { name: "Evander", species: ["gryphon"], tags: ["feral"] },
  11421. {
  11422. side: {
  11423. height: math.unit(6, "feet"),
  11424. name: "Side",
  11425. image: {
  11426. source: "./media/characters/evander/side.svg",
  11427. extra: 877 / 477
  11428. }
  11429. },
  11430. },
  11431. [
  11432. {
  11433. name: "Normal",
  11434. height: math.unit(0.83, "meters"),
  11435. default: true
  11436. },
  11437. ]
  11438. ))
  11439. characterMakers.push(() => makeCharacter(
  11440. { name: "Ka'Tamra \"Spaz\" Ci'Karan", species: ["dragon"], tags: ["anthro"] },
  11441. {
  11442. front: {
  11443. height: math.unit(12, "feet"),
  11444. weight: math.unit(1000, "lb"),
  11445. name: "Front",
  11446. image: {
  11447. source: "./media/characters/ka'tamra-spaz-ci'karan/front.svg",
  11448. extra: 1762 / 1611
  11449. }
  11450. },
  11451. back: {
  11452. height: math.unit(12, "feet"),
  11453. weight: math.unit(1000, "lb"),
  11454. name: "Back",
  11455. image: {
  11456. source: "./media/characters/ka'tamra-spaz-ci'karan/back.svg",
  11457. extra: 1762 / 1611
  11458. }
  11459. },
  11460. },
  11461. [
  11462. {
  11463. name: "Normal",
  11464. height: math.unit(12, "feet"),
  11465. default: true
  11466. },
  11467. {
  11468. name: "Kaiju",
  11469. height: math.unit(150, "feet")
  11470. },
  11471. ]
  11472. ))
  11473. characterMakers.push(() => makeCharacter(
  11474. { name: "Zero Alurus", species: ["zebra"], tags: ["anthro"] },
  11475. {
  11476. front: {
  11477. height: math.unit(6, "feet"),
  11478. weight: math.unit(150, "lb"),
  11479. name: "Front",
  11480. image: {
  11481. source: "./media/characters/zero-alurus/front.svg"
  11482. }
  11483. },
  11484. back: {
  11485. height: math.unit(6, "feet"),
  11486. weight: math.unit(150, "lb"),
  11487. name: "Back",
  11488. image: {
  11489. source: "./media/characters/zero-alurus/back.svg"
  11490. }
  11491. },
  11492. },
  11493. [
  11494. {
  11495. name: "Normal",
  11496. height: math.unit(5 + 10 / 12, "feet")
  11497. },
  11498. {
  11499. name: "Macro",
  11500. height: math.unit(60, "feet"),
  11501. default: true
  11502. },
  11503. {
  11504. name: "Macro+",
  11505. height: math.unit(450, "feet")
  11506. },
  11507. ]
  11508. ))
  11509. characterMakers.push(() => makeCharacter(
  11510. { name: "Mega Shi", species: ["yoshi"], tags: ["anthro"] },
  11511. {
  11512. front: {
  11513. height: math.unit(6, "feet"),
  11514. weight: math.unit(200, "lb"),
  11515. name: "Front",
  11516. image: {
  11517. source: "./media/characters/mega-shi/front.svg",
  11518. extra: 1279 / 1250,
  11519. bottom: 0.02
  11520. }
  11521. },
  11522. back: {
  11523. height: math.unit(6, "feet"),
  11524. weight: math.unit(200, "lb"),
  11525. name: "Back",
  11526. image: {
  11527. source: "./media/characters/mega-shi/back.svg",
  11528. extra: 1279 / 1250,
  11529. bottom: 0.02
  11530. }
  11531. },
  11532. },
  11533. [
  11534. {
  11535. name: "Micro",
  11536. height: math.unit(16 + 6 / 12, "feet")
  11537. },
  11538. {
  11539. name: "Third Dimension",
  11540. height: math.unit(40, "meters")
  11541. },
  11542. {
  11543. name: "Normal",
  11544. height: math.unit(660, "feet"),
  11545. default: true
  11546. },
  11547. {
  11548. name: "Megamacro",
  11549. height: math.unit(10, "miles")
  11550. },
  11551. {
  11552. name: "Planetary Launch",
  11553. height: math.unit(500, "miles")
  11554. },
  11555. {
  11556. name: "Interstellar",
  11557. height: math.unit(1e9, "miles")
  11558. },
  11559. {
  11560. name: "Leaving the Universe",
  11561. height: math.unit(1, "gigaparsec")
  11562. },
  11563. {
  11564. name: "Travelling Universes",
  11565. height: math.unit(30e15, "parsecs")
  11566. },
  11567. ]
  11568. ))
  11569. characterMakers.push(() => makeCharacter(
  11570. { name: "Odyssey", species: ["lynx"], tags: ["anthro"] },
  11571. {
  11572. front: {
  11573. height: math.unit(5 + 4/12, "feet"),
  11574. weight: math.unit(120, "lb"),
  11575. name: "Front",
  11576. image: {
  11577. source: "./media/characters/odyssey/front.svg",
  11578. extra: 1747/1571,
  11579. bottom: 47/1794
  11580. }
  11581. },
  11582. side: {
  11583. height: math.unit(5.1, "feet"),
  11584. weight: math.unit(120, "lb"),
  11585. name: "Side",
  11586. image: {
  11587. source: "./media/characters/odyssey/side.svg",
  11588. extra: 1847/1619,
  11589. bottom: 47/1894
  11590. }
  11591. },
  11592. lounging: {
  11593. height: math.unit(1.464, "feet"),
  11594. weight: math.unit(120, "lb"),
  11595. name: "Lounging",
  11596. image: {
  11597. source: "./media/characters/odyssey/lounging.svg",
  11598. extra: 1235/837,
  11599. bottom: 551/1786
  11600. }
  11601. },
  11602. },
  11603. [
  11604. {
  11605. name: "Normal",
  11606. height: math.unit(5 + 4 / 12, "feet")
  11607. },
  11608. {
  11609. name: "Macro",
  11610. height: math.unit(1, "km")
  11611. },
  11612. {
  11613. name: "Megamacro",
  11614. height: math.unit(3000, "km")
  11615. },
  11616. {
  11617. name: "Gigamacro",
  11618. height: math.unit(1, "AU"),
  11619. default: true
  11620. },
  11621. {
  11622. name: "Omniversal",
  11623. height: math.unit(100e14, "lightyears")
  11624. },
  11625. ]
  11626. ))
  11627. characterMakers.push(() => makeCharacter(
  11628. { name: "Mekuto", species: ["red-panda", "kitsune"], tags: ["anthro"] },
  11629. {
  11630. front: {
  11631. height: math.unit(5 + 10/12, "feet"),
  11632. name: "Front",
  11633. image: {
  11634. source: "./media/characters/mekuto/front.svg",
  11635. extra: 875/835,
  11636. bottom: 46/921
  11637. }
  11638. },
  11639. },
  11640. [
  11641. {
  11642. name: "Minimicro",
  11643. height: math.unit(0.2, "inches")
  11644. },
  11645. {
  11646. name: "Micro",
  11647. height: math.unit(1.5, "inches")
  11648. },
  11649. {
  11650. name: "Normal",
  11651. height: math.unit(5 + 10 / 12, "feet"),
  11652. default: true
  11653. },
  11654. {
  11655. name: "Minimacro",
  11656. height: math.unit(17 + 9 / 12, "feet")
  11657. },
  11658. {
  11659. name: "Macro",
  11660. height: math.unit(177.5, "feet")
  11661. },
  11662. {
  11663. name: "Megamacro",
  11664. height: math.unit(152, "miles")
  11665. },
  11666. ]
  11667. ))
  11668. characterMakers.push(() => makeCharacter(
  11669. { name: "Dafydd Tomos", species: ["mikromare"], tags: ["anthro"] },
  11670. {
  11671. front: {
  11672. height: math.unit(6.5, "inches"),
  11673. weight: math.unit(13, "oz"),
  11674. name: "Front",
  11675. image: {
  11676. source: "./media/characters/dafydd-tomos/front.svg",
  11677. extra: 2990 / 2603,
  11678. bottom: 0.03
  11679. }
  11680. },
  11681. },
  11682. [
  11683. {
  11684. name: "Micro",
  11685. height: math.unit(6.5, "inches"),
  11686. default: true
  11687. },
  11688. ]
  11689. ))
  11690. characterMakers.push(() => makeCharacter(
  11691. { name: "Splinter", species: ["thylacine"], tags: ["anthro"] },
  11692. {
  11693. front: {
  11694. height: math.unit(6, "feet"),
  11695. weight: math.unit(150, "lb"),
  11696. name: "Front",
  11697. image: {
  11698. source: "./media/characters/splinter/front.svg",
  11699. extra: 2990 / 2882,
  11700. bottom: 0.04
  11701. }
  11702. },
  11703. back: {
  11704. height: math.unit(6, "feet"),
  11705. weight: math.unit(150, "lb"),
  11706. name: "Back",
  11707. image: {
  11708. source: "./media/characters/splinter/back.svg",
  11709. extra: 2990 / 2882,
  11710. bottom: 0.04
  11711. }
  11712. },
  11713. },
  11714. [
  11715. {
  11716. name: "Normal",
  11717. height: math.unit(6, "feet")
  11718. },
  11719. {
  11720. name: "Macro",
  11721. height: math.unit(230, "meters"),
  11722. default: true
  11723. },
  11724. ]
  11725. ))
  11726. characterMakers.push(() => makeCharacter(
  11727. { name: "SnowGabumon", species: ["gabumon"], tags: ["anthro"] },
  11728. {
  11729. front: {
  11730. height: math.unit(4 + 10 / 12, "feet"),
  11731. weight: math.unit(480, "lb"),
  11732. name: "Front",
  11733. image: {
  11734. source: "./media/characters/snow-gabumon/front.svg",
  11735. extra: 1140 / 963,
  11736. bottom: 0.058
  11737. }
  11738. },
  11739. back: {
  11740. height: math.unit(4 + 10 / 12, "feet"),
  11741. weight: math.unit(480, "lb"),
  11742. name: "Back",
  11743. image: {
  11744. source: "./media/characters/snow-gabumon/back.svg",
  11745. extra: 1115 / 962,
  11746. bottom: 0.041
  11747. }
  11748. },
  11749. frontUndresed: {
  11750. height: math.unit(4 + 10 / 12, "feet"),
  11751. weight: math.unit(480, "lb"),
  11752. name: "Front (Undressed)",
  11753. image: {
  11754. source: "./media/characters/snow-gabumon/front-undressed.svg",
  11755. extra: 1061 / 960,
  11756. bottom: 0.045
  11757. }
  11758. },
  11759. },
  11760. [
  11761. {
  11762. name: "Micro",
  11763. height: math.unit(1, "inch")
  11764. },
  11765. {
  11766. name: "Normal",
  11767. height: math.unit(4 + 10 / 12, "feet"),
  11768. default: true
  11769. },
  11770. {
  11771. name: "Macro",
  11772. height: math.unit(200, "feet")
  11773. },
  11774. {
  11775. name: "Megamacro",
  11776. height: math.unit(120, "miles")
  11777. },
  11778. {
  11779. name: "Gigamacro",
  11780. height: math.unit(9800, "miles")
  11781. },
  11782. ]
  11783. ))
  11784. characterMakers.push(() => makeCharacter(
  11785. { name: "Moody", species: ["dog"], tags: ["anthro"] },
  11786. {
  11787. front: {
  11788. height: math.unit(1.7, "meters"),
  11789. weight: math.unit(140, "lb"),
  11790. name: "Front",
  11791. image: {
  11792. source: "./media/characters/moody/front.svg",
  11793. extra: 3226 / 3007,
  11794. bottom: 0.087
  11795. }
  11796. },
  11797. },
  11798. [
  11799. {
  11800. name: "Micro",
  11801. height: math.unit(1, "mm")
  11802. },
  11803. {
  11804. name: "Normal",
  11805. height: math.unit(1.7, "meters"),
  11806. default: true
  11807. },
  11808. {
  11809. name: "Macro",
  11810. height: math.unit(80, "meters")
  11811. },
  11812. {
  11813. name: "Macro+",
  11814. height: math.unit(500, "meters")
  11815. },
  11816. ]
  11817. ))
  11818. characterMakers.push(() => makeCharacter(
  11819. { name: "Zyas", species: ["lion", "tiger"], tags: ["anthro"] },
  11820. {
  11821. front: {
  11822. height: math.unit(6, "feet"),
  11823. weight: math.unit(150, "lb"),
  11824. name: "Front",
  11825. image: {
  11826. source: "./media/characters/zyas/front.svg",
  11827. extra: 1180 / 1120,
  11828. bottom: 0.045
  11829. }
  11830. },
  11831. },
  11832. [
  11833. {
  11834. name: "Normal",
  11835. height: math.unit(10, "feet"),
  11836. default: true
  11837. },
  11838. {
  11839. name: "Macro",
  11840. height: math.unit(500, "feet")
  11841. },
  11842. {
  11843. name: "Megamacro",
  11844. height: math.unit(5, "miles")
  11845. },
  11846. {
  11847. name: "Teramacro",
  11848. height: math.unit(150000, "miles")
  11849. },
  11850. ]
  11851. ))
  11852. characterMakers.push(() => makeCharacter(
  11853. { name: "Cuon", species: ["border-collie"], tags: ["anthro"] },
  11854. {
  11855. front: {
  11856. height: math.unit(6, "feet"),
  11857. weight: math.unit(150, "lb"),
  11858. name: "Front",
  11859. image: {
  11860. source: "./media/characters/cuon/front.svg",
  11861. extra: 1390 / 1320,
  11862. bottom: 0.008
  11863. }
  11864. },
  11865. },
  11866. [
  11867. {
  11868. name: "Micro",
  11869. height: math.unit(3, "inches")
  11870. },
  11871. {
  11872. name: "Normal",
  11873. height: math.unit(18 + 9 / 12, "feet"),
  11874. default: true
  11875. },
  11876. {
  11877. name: "Macro",
  11878. height: math.unit(360, "feet")
  11879. },
  11880. {
  11881. name: "Megamacro",
  11882. height: math.unit(360, "miles")
  11883. },
  11884. ]
  11885. ))
  11886. characterMakers.push(() => makeCharacter(
  11887. { name: "Nyanuxk", species: ["dragon"], tags: ["anthro"] },
  11888. {
  11889. front: {
  11890. height: math.unit(2.4, "meters"),
  11891. weight: math.unit(70, "kg"),
  11892. name: "Front",
  11893. image: {
  11894. source: "./media/characters/nyanuxk/front.svg",
  11895. extra: 1172 / 1084,
  11896. bottom: 0.065
  11897. }
  11898. },
  11899. side: {
  11900. height: math.unit(2.4, "meters"),
  11901. weight: math.unit(70, "kg"),
  11902. name: "Side",
  11903. image: {
  11904. source: "./media/characters/nyanuxk/side.svg",
  11905. extra: 1190 / 1132,
  11906. bottom: 0.007
  11907. }
  11908. },
  11909. back: {
  11910. height: math.unit(2.4, "meters"),
  11911. weight: math.unit(70, "kg"),
  11912. name: "Back",
  11913. image: {
  11914. source: "./media/characters/nyanuxk/back.svg",
  11915. extra: 1200 / 1141,
  11916. bottom: 0.015
  11917. }
  11918. },
  11919. foot: {
  11920. height: math.unit(0.52, "meters"),
  11921. name: "Foot",
  11922. image: {
  11923. source: "./media/characters/nyanuxk/foot.svg"
  11924. }
  11925. },
  11926. },
  11927. [
  11928. {
  11929. name: "Micro",
  11930. height: math.unit(2, "cm")
  11931. },
  11932. {
  11933. name: "Normal",
  11934. height: math.unit(2.4, "meters"),
  11935. default: true
  11936. },
  11937. {
  11938. name: "Smaller Macro",
  11939. height: math.unit(120, "meters")
  11940. },
  11941. {
  11942. name: "Bigger Macro",
  11943. height: math.unit(1.2, "km")
  11944. },
  11945. {
  11946. name: "Megamacro",
  11947. height: math.unit(15, "kilometers")
  11948. },
  11949. {
  11950. name: "Gigamacro",
  11951. height: math.unit(2000, "km")
  11952. },
  11953. {
  11954. name: "Teramacro",
  11955. height: math.unit(500000, "km")
  11956. },
  11957. ]
  11958. ))
  11959. characterMakers.push(() => makeCharacter(
  11960. { name: "Ailbhe", species: ["gryphon"], tags: ["feral"] },
  11961. {
  11962. side: {
  11963. height: math.unit(6, "feet"),
  11964. name: "Side",
  11965. image: {
  11966. source: "./media/characters/ailbhe/side.svg",
  11967. extra: 757 / 464,
  11968. bottom: 0.041
  11969. }
  11970. },
  11971. },
  11972. [
  11973. {
  11974. name: "Normal",
  11975. height: math.unit(1.07, "meters"),
  11976. default: true
  11977. },
  11978. ]
  11979. ))
  11980. characterMakers.push(() => makeCharacter(
  11981. { name: "Zevulfius", species: ["werewolf"], tags: ["anthro"] },
  11982. {
  11983. front: {
  11984. height: math.unit(6, "feet"),
  11985. weight: math.unit(120, "kg"),
  11986. name: "Front",
  11987. image: {
  11988. source: "./media/characters/zevulfius/front.svg",
  11989. extra: 965 / 903
  11990. }
  11991. },
  11992. side: {
  11993. height: math.unit(6, "feet"),
  11994. weight: math.unit(120, "kg"),
  11995. name: "Side",
  11996. image: {
  11997. source: "./media/characters/zevulfius/side.svg",
  11998. extra: 939 / 900
  11999. }
  12000. },
  12001. back: {
  12002. height: math.unit(6, "feet"),
  12003. weight: math.unit(120, "kg"),
  12004. name: "Back",
  12005. image: {
  12006. source: "./media/characters/zevulfius/back.svg",
  12007. extra: 918 / 854,
  12008. bottom: 0.005
  12009. }
  12010. },
  12011. foot: {
  12012. height: math.unit(6 / 3.72, "feet"),
  12013. name: "Foot",
  12014. image: {
  12015. source: "./media/characters/zevulfius/foot.svg"
  12016. }
  12017. },
  12018. },
  12019. [
  12020. {
  12021. name: "Macro",
  12022. height: math.unit(750, "meters")
  12023. },
  12024. {
  12025. name: "Megamacro",
  12026. height: math.unit(20, "km"),
  12027. default: true
  12028. },
  12029. {
  12030. name: "Gigamacro",
  12031. height: math.unit(2000, "km")
  12032. },
  12033. {
  12034. name: "Teramacro",
  12035. height: math.unit(250000, "km")
  12036. },
  12037. ]
  12038. ))
  12039. characterMakers.push(() => makeCharacter(
  12040. { name: "Rikes", species: ["german-shepherd"], tags: ["anthro"] },
  12041. {
  12042. front: {
  12043. height: math.unit(100, "feet"),
  12044. weight: math.unit(350, "kg"),
  12045. name: "Front",
  12046. image: {
  12047. source: "./media/characters/rikes/front.svg",
  12048. extra: 1565 / 1483,
  12049. bottom: 0.017
  12050. }
  12051. },
  12052. },
  12053. [
  12054. {
  12055. name: "Macro",
  12056. height: math.unit(100, "feet"),
  12057. default: true
  12058. },
  12059. ]
  12060. ))
  12061. characterMakers.push(() => makeCharacter(
  12062. { name: "Adam Silver-Mane", species: ["horse"], tags: ["anthro"] },
  12063. {
  12064. front: {
  12065. height: math.unit(8, "feet"),
  12066. weight: math.unit(356, "lb"),
  12067. name: "Front",
  12068. image: {
  12069. source: "./media/characters/adam-silver-mane/front.svg",
  12070. extra: 1036/937,
  12071. bottom: 63/1099
  12072. }
  12073. },
  12074. side: {
  12075. height: math.unit(8, "feet"),
  12076. weight: math.unit(356, "lb"),
  12077. name: "Side",
  12078. image: {
  12079. source: "./media/characters/adam-silver-mane/side.svg",
  12080. extra: 997/901,
  12081. bottom: 59/1056
  12082. }
  12083. },
  12084. frontNsfw: {
  12085. height: math.unit(8, "feet"),
  12086. weight: math.unit(356, "lb"),
  12087. name: "Front (NSFW)",
  12088. image: {
  12089. source: "./media/characters/adam-silver-mane/front-nsfw.svg",
  12090. extra: 1036/937,
  12091. bottom: 63/1099
  12092. }
  12093. },
  12094. sideNsfw: {
  12095. height: math.unit(8, "feet"),
  12096. weight: math.unit(356, "lb"),
  12097. name: "Side (NSFW)",
  12098. image: {
  12099. source: "./media/characters/adam-silver-mane/side-nsfw.svg",
  12100. extra: 997/901,
  12101. bottom: 59/1056
  12102. }
  12103. },
  12104. dick: {
  12105. height: math.unit(2.1, "feet"),
  12106. name: "Dick",
  12107. image: {
  12108. source: "./media/characters/adam-silver-mane/dick.svg"
  12109. }
  12110. },
  12111. taur: {
  12112. height: math.unit(16, "feet"),
  12113. weight: math.unit(1500, "kg"),
  12114. name: "Taur",
  12115. image: {
  12116. source: "./media/characters/adam-silver-mane/taur.svg",
  12117. extra: 1713 / 1571,
  12118. bottom: 0.01
  12119. }
  12120. },
  12121. },
  12122. [
  12123. {
  12124. name: "Normal",
  12125. height: math.unit(8, "feet")
  12126. },
  12127. {
  12128. name: "Minimacro",
  12129. height: math.unit(80, "feet")
  12130. },
  12131. {
  12132. name: "MDA",
  12133. height: math.unit(80, "meters")
  12134. },
  12135. {
  12136. name: "Macro",
  12137. height: math.unit(800, "feet"),
  12138. default: true
  12139. },
  12140. {
  12141. name: "Megamacro",
  12142. height: math.unit(8000, "feet")
  12143. },
  12144. {
  12145. name: "Gigamacro",
  12146. height: math.unit(800, "miles")
  12147. },
  12148. {
  12149. name: "Teramacro",
  12150. height: math.unit(80000, "miles")
  12151. },
  12152. {
  12153. name: "Celestial",
  12154. height: math.unit(8e6, "miles")
  12155. },
  12156. {
  12157. name: "Star Dragon",
  12158. height: math.unit(800000, "parsecs")
  12159. },
  12160. {
  12161. name: "Godly",
  12162. height: math.unit(800, "teraparsecs")
  12163. },
  12164. ]
  12165. ))
  12166. characterMakers.push(() => makeCharacter(
  12167. { name: "Ky'owin", species: ["dragon", "cat"], tags: ["anthro"] },
  12168. {
  12169. front: {
  12170. height: math.unit(6, "feet"),
  12171. weight: math.unit(150, "lb"),
  12172. name: "Front",
  12173. image: {
  12174. source: "./media/characters/ky'owin/front.svg",
  12175. extra: 3862/3053,
  12176. bottom: 74/3936
  12177. }
  12178. },
  12179. },
  12180. [
  12181. {
  12182. name: "Normal",
  12183. height: math.unit(6 + 8 / 12, "feet")
  12184. },
  12185. {
  12186. name: "Large",
  12187. height: math.unit(68, "feet")
  12188. },
  12189. {
  12190. name: "Macro",
  12191. height: math.unit(132, "feet")
  12192. },
  12193. {
  12194. name: "Macro+",
  12195. height: math.unit(340, "feet")
  12196. },
  12197. {
  12198. name: "Macro++",
  12199. height: math.unit(680, "feet"),
  12200. default: true
  12201. },
  12202. {
  12203. name: "Megamacro",
  12204. height: math.unit(1, "mile")
  12205. },
  12206. {
  12207. name: "Megamacro+",
  12208. height: math.unit(10, "miles")
  12209. },
  12210. ]
  12211. ))
  12212. characterMakers.push(() => makeCharacter(
  12213. { name: "Mal", species: ["imp"], tags: ["anthro"] },
  12214. {
  12215. front: {
  12216. height: math.unit(4, "feet"),
  12217. weight: math.unit(50, "lb"),
  12218. name: "Front",
  12219. image: {
  12220. source: "./media/characters/mal/front.svg",
  12221. extra: 785 / 724,
  12222. bottom: 0.07
  12223. }
  12224. },
  12225. },
  12226. [
  12227. {
  12228. name: "Micro",
  12229. height: math.unit(4, "inches")
  12230. },
  12231. {
  12232. name: "Normal",
  12233. height: math.unit(4, "feet"),
  12234. default: true
  12235. },
  12236. {
  12237. name: "Macro",
  12238. height: math.unit(200, "feet")
  12239. },
  12240. ]
  12241. ))
  12242. characterMakers.push(() => makeCharacter(
  12243. { name: "Jordan Deware", species: ["otter"], tags: ["anthro"] },
  12244. {
  12245. front: {
  12246. height: math.unit(6, "feet"),
  12247. weight: math.unit(150, "lb"),
  12248. name: "Front",
  12249. image: {
  12250. source: "./media/characters/jordan-deware/front.svg",
  12251. extra: 1191 / 1012
  12252. }
  12253. },
  12254. },
  12255. [
  12256. {
  12257. name: "Nano",
  12258. height: math.unit(0.01, "mm")
  12259. },
  12260. {
  12261. name: "Minimicro",
  12262. height: math.unit(1, "mm")
  12263. },
  12264. {
  12265. name: "Micro",
  12266. height: math.unit(0.5, "inches")
  12267. },
  12268. {
  12269. name: "Normal",
  12270. height: math.unit(4, "feet"),
  12271. default: true
  12272. },
  12273. {
  12274. name: "Minimacro",
  12275. height: math.unit(40, "meters")
  12276. },
  12277. {
  12278. name: "Small Macro",
  12279. height: math.unit(400, "meters")
  12280. },
  12281. {
  12282. name: "Macro",
  12283. height: math.unit(4, "miles")
  12284. },
  12285. {
  12286. name: "Megamacro",
  12287. height: math.unit(40, "miles")
  12288. },
  12289. {
  12290. name: "Megamacro+",
  12291. height: math.unit(400, "miles")
  12292. },
  12293. {
  12294. name: "Gigamacro",
  12295. height: math.unit(400000, "miles")
  12296. },
  12297. ]
  12298. ))
  12299. characterMakers.push(() => makeCharacter(
  12300. { name: "Kimiko", species: ["eastern-dragon"], tags: ["anthro"] },
  12301. {
  12302. side: {
  12303. height: math.unit(6, "feet"),
  12304. weight: math.unit(150, "lb"),
  12305. name: "Side",
  12306. image: {
  12307. source: "./media/characters/kimiko/side.svg",
  12308. extra: 600 / 358
  12309. }
  12310. },
  12311. },
  12312. [
  12313. {
  12314. name: "Normal",
  12315. height: math.unit(15, "feet"),
  12316. default: true
  12317. },
  12318. {
  12319. name: "Macro",
  12320. height: math.unit(220, "feet")
  12321. },
  12322. {
  12323. name: "Macro+",
  12324. height: math.unit(1450, "feet")
  12325. },
  12326. {
  12327. name: "Megamacro",
  12328. height: math.unit(11500, "feet")
  12329. },
  12330. {
  12331. name: "Gigamacro",
  12332. height: math.unit(9500, "miles")
  12333. },
  12334. {
  12335. name: "Teramacro",
  12336. height: math.unit(2208005005, "miles")
  12337. },
  12338. {
  12339. name: "Examacro",
  12340. height: math.unit(2750, "parsecs")
  12341. },
  12342. {
  12343. name: "Zettamacro",
  12344. height: math.unit(101500, "parsecs")
  12345. },
  12346. ]
  12347. ))
  12348. characterMakers.push(() => makeCharacter(
  12349. { name: "Andrew Sleepy", species: ["human"], tags: ["anthro"] },
  12350. {
  12351. front: {
  12352. height: math.unit(6, "feet"),
  12353. weight: math.unit(70, "kg"),
  12354. name: "Front",
  12355. image: {
  12356. source: "./media/characters/andrew-sleepy/front.svg"
  12357. }
  12358. },
  12359. side: {
  12360. height: math.unit(6, "feet"),
  12361. weight: math.unit(70, "kg"),
  12362. name: "Side",
  12363. image: {
  12364. source: "./media/characters/andrew-sleepy/side.svg"
  12365. }
  12366. },
  12367. },
  12368. [
  12369. {
  12370. name: "Micro",
  12371. height: math.unit(1, "mm"),
  12372. default: true
  12373. },
  12374. ]
  12375. ))
  12376. characterMakers.push(() => makeCharacter(
  12377. { name: "Judio", species: ["rabbit"], tags: ["anthro"] },
  12378. {
  12379. front: {
  12380. height: math.unit(6, "feet"),
  12381. weight: math.unit(150, "lb"),
  12382. name: "Front",
  12383. image: {
  12384. source: "./media/characters/judio/front.svg",
  12385. extra: 1258 / 1110
  12386. }
  12387. },
  12388. },
  12389. [
  12390. {
  12391. name: "Normal",
  12392. height: math.unit(5 + 6 / 12, "feet")
  12393. },
  12394. {
  12395. name: "Macro",
  12396. height: math.unit(1000, "feet"),
  12397. default: true
  12398. },
  12399. {
  12400. name: "Megamacro",
  12401. height: math.unit(10, "miles")
  12402. },
  12403. ]
  12404. ))
  12405. characterMakers.push(() => makeCharacter(
  12406. { name: "Nomaxice", species: ["lynx", "raccoon"], tags: ["anthro"] },
  12407. {
  12408. frontDressed: {
  12409. height: math.unit(6, "feet"),
  12410. weight: math.unit(68, "kg"),
  12411. name: "Front (Dressed)",
  12412. image: {
  12413. source: "./media/characters/nomaxice/front-dressed.svg",
  12414. extra: 1137/824,
  12415. bottom: 74/1211
  12416. }
  12417. },
  12418. frontShorts: {
  12419. height: math.unit(6, "feet"),
  12420. weight: math.unit(68, "kg"),
  12421. name: "Front (Shorts)",
  12422. image: {
  12423. source: "./media/characters/nomaxice/front-shorts.svg",
  12424. extra: 1137/824,
  12425. bottom: 74/1211
  12426. }
  12427. },
  12428. back: {
  12429. height: math.unit(6, "feet"),
  12430. weight: math.unit(68, "kg"),
  12431. name: "Back",
  12432. image: {
  12433. source: "./media/characters/nomaxice/back.svg",
  12434. extra: 822/786,
  12435. bottom: 39/861
  12436. }
  12437. },
  12438. hand: {
  12439. height: math.unit(0.565, "feet"),
  12440. name: "Hand",
  12441. image: {
  12442. source: "./media/characters/nomaxice/hand.svg"
  12443. }
  12444. },
  12445. foot: {
  12446. height: math.unit(1, "feet"),
  12447. name: "Foot",
  12448. image: {
  12449. source: "./media/characters/nomaxice/foot.svg"
  12450. }
  12451. },
  12452. },
  12453. [
  12454. {
  12455. name: "Micro",
  12456. height: math.unit(8, "cm")
  12457. },
  12458. {
  12459. name: "Norm",
  12460. height: math.unit(1.82, "m")
  12461. },
  12462. {
  12463. name: "Norm+",
  12464. height: math.unit(8.8, "feet"),
  12465. default: true
  12466. },
  12467. {
  12468. name: "Big",
  12469. height: math.unit(8, "meters")
  12470. },
  12471. {
  12472. name: "Macro",
  12473. height: math.unit(18, "meters")
  12474. },
  12475. {
  12476. name: "Macro+",
  12477. height: math.unit(88, "meters")
  12478. },
  12479. ]
  12480. ))
  12481. characterMakers.push(() => makeCharacter(
  12482. { name: "Dydros", species: ["dragon"], tags: ["anthro"] },
  12483. {
  12484. front: {
  12485. height: math.unit(12, "feet"),
  12486. weight: math.unit(1.5, "tons"),
  12487. name: "Front",
  12488. image: {
  12489. source: "./media/characters/dydros/front.svg",
  12490. extra: 863 / 800,
  12491. bottom: 0.015
  12492. }
  12493. },
  12494. back: {
  12495. height: math.unit(12, "feet"),
  12496. weight: math.unit(1.5, "tons"),
  12497. name: "Back",
  12498. image: {
  12499. source: "./media/characters/dydros/back.svg",
  12500. extra: 900 / 843,
  12501. bottom: 0.005
  12502. }
  12503. },
  12504. },
  12505. [
  12506. {
  12507. name: "Normal",
  12508. height: math.unit(12, "feet"),
  12509. default: true
  12510. },
  12511. ]
  12512. ))
  12513. characterMakers.push(() => makeCharacter(
  12514. { name: "Riggi", species: ["tiger", "wolf"], tags: ["anthro"] },
  12515. {
  12516. front: {
  12517. height: math.unit(6, "feet"),
  12518. weight: math.unit(100, "kg"),
  12519. name: "Front",
  12520. image: {
  12521. source: "./media/characters/riggi/front.svg",
  12522. extra: 5787 / 5303
  12523. }
  12524. },
  12525. hyper: {
  12526. height: math.unit(6 * 5 / 3, "feet"),
  12527. weight: math.unit(400 * 5 / 3 * 5 / 3 * 5 / 3, "kg"),
  12528. name: "Hyper",
  12529. image: {
  12530. source: "./media/characters/riggi/hyper.svg",
  12531. extra: 3595 / 3485
  12532. }
  12533. },
  12534. },
  12535. [
  12536. {
  12537. name: "Small Macro",
  12538. height: math.unit(50, "feet")
  12539. },
  12540. {
  12541. name: "Default",
  12542. height: math.unit(200, "feet"),
  12543. default: true
  12544. },
  12545. {
  12546. name: "Loom",
  12547. height: math.unit(10000, "feet")
  12548. },
  12549. {
  12550. name: "Cruising Altitude",
  12551. height: math.unit(30000, "feet")
  12552. },
  12553. {
  12554. name: "Megamacro",
  12555. height: math.unit(100, "miles")
  12556. },
  12557. {
  12558. name: "Continent Sized",
  12559. height: math.unit(2800, "miles")
  12560. },
  12561. {
  12562. name: "Earth Sized",
  12563. height: math.unit(8000, "miles")
  12564. },
  12565. ]
  12566. ))
  12567. characterMakers.push(() => makeCharacter(
  12568. { name: "Alexi", species: ["werewolf"], tags: ["anthro"] },
  12569. {
  12570. front: {
  12571. height: math.unit(6, "feet"),
  12572. weight: math.unit(250, "lb"),
  12573. name: "Front",
  12574. image: {
  12575. source: "./media/characters/alexi/front.svg",
  12576. extra: 3483 / 3291,
  12577. bottom: 0.04
  12578. }
  12579. },
  12580. back: {
  12581. height: math.unit(6, "feet"),
  12582. weight: math.unit(250, "lb"),
  12583. name: "Back",
  12584. image: {
  12585. source: "./media/characters/alexi/back.svg",
  12586. extra: 3533 / 3356,
  12587. bottom: 0.021
  12588. }
  12589. },
  12590. frontTransforming: {
  12591. height: math.unit(8.58, "feet"),
  12592. weight: math.unit(1300, "lb"),
  12593. name: "Transforming",
  12594. image: {
  12595. source: "./media/characters/alexi/front-transforming.svg",
  12596. extra: 437 / 409,
  12597. bottom: 19 / 458.66
  12598. }
  12599. },
  12600. frontTransformed: {
  12601. height: math.unit(12.5, "feet"),
  12602. weight: math.unit(4000, "lb"),
  12603. name: "Transformed",
  12604. image: {
  12605. source: "./media/characters/alexi/front-transformed.svg",
  12606. extra: 639 / 614,
  12607. bottom: 30.55 / 671
  12608. }
  12609. },
  12610. },
  12611. [
  12612. {
  12613. name: "Normal",
  12614. height: math.unit(14, "feet"),
  12615. default: true
  12616. },
  12617. {
  12618. name: "Minimacro",
  12619. height: math.unit(30, "meters")
  12620. },
  12621. {
  12622. name: "Macro",
  12623. height: math.unit(500, "meters")
  12624. },
  12625. {
  12626. name: "Megamacro",
  12627. height: math.unit(9000, "km")
  12628. },
  12629. {
  12630. name: "Teramacro",
  12631. height: math.unit(384000, "km")
  12632. },
  12633. ]
  12634. ))
  12635. characterMakers.push(() => makeCharacter(
  12636. { name: "Kayroo", species: ["kangaroo"], tags: ["anthro"] },
  12637. {
  12638. front: {
  12639. height: math.unit(6, "feet"),
  12640. weight: math.unit(150, "lb"),
  12641. name: "Front",
  12642. image: {
  12643. source: "./media/characters/kayroo/front.svg",
  12644. extra: 1153 / 1038,
  12645. bottom: 0.06
  12646. }
  12647. },
  12648. foot: {
  12649. height: math.unit(6, "feet"),
  12650. weight: math.unit(150, "lb"),
  12651. name: "Foot",
  12652. image: {
  12653. source: "./media/characters/kayroo/foot.svg"
  12654. }
  12655. },
  12656. },
  12657. [
  12658. {
  12659. name: "Normal",
  12660. height: math.unit(8, "feet"),
  12661. default: true
  12662. },
  12663. {
  12664. name: "Minimacro",
  12665. height: math.unit(250, "feet")
  12666. },
  12667. {
  12668. name: "Macro",
  12669. height: math.unit(2800, "feet")
  12670. },
  12671. {
  12672. name: "Megamacro",
  12673. height: math.unit(5200, "feet")
  12674. },
  12675. {
  12676. name: "Gigamacro",
  12677. height: math.unit(27000, "feet")
  12678. },
  12679. {
  12680. name: "Omega",
  12681. height: math.unit(45000, "feet")
  12682. },
  12683. ]
  12684. ))
  12685. characterMakers.push(() => makeCharacter(
  12686. { name: "Rhys", species: ["renamon"], tags: ["anthro"] },
  12687. {
  12688. front: {
  12689. height: math.unit(18, "feet"),
  12690. weight: math.unit(5800, "lb"),
  12691. name: "Front",
  12692. image: {
  12693. source: "./media/characters/rhys/front.svg",
  12694. extra: 3386 / 3090,
  12695. bottom: 0.07
  12696. }
  12697. },
  12698. },
  12699. [
  12700. {
  12701. name: "Normal",
  12702. height: math.unit(18, "feet"),
  12703. default: true
  12704. },
  12705. {
  12706. name: "Working Size",
  12707. height: math.unit(200, "feet")
  12708. },
  12709. {
  12710. name: "Demolition Size",
  12711. height: math.unit(2000, "feet")
  12712. },
  12713. {
  12714. name: "Maximum Licensed Size",
  12715. height: math.unit(5, "miles")
  12716. },
  12717. {
  12718. name: "Maximum Observed Size",
  12719. height: math.unit(10, "yottameters")
  12720. },
  12721. ]
  12722. ))
  12723. characterMakers.push(() => makeCharacter(
  12724. { name: "Toto", species: ["dragon"], tags: ["anthro"] },
  12725. {
  12726. front: {
  12727. height: math.unit(6, "feet"),
  12728. weight: math.unit(250, "lb"),
  12729. name: "Front",
  12730. image: {
  12731. source: "./media/characters/toto/front.svg",
  12732. extra: 527 / 479,
  12733. bottom: 0.05
  12734. }
  12735. },
  12736. },
  12737. [
  12738. {
  12739. name: "Micro",
  12740. height: math.unit(3, "feet")
  12741. },
  12742. {
  12743. name: "Normal",
  12744. height: math.unit(10, "feet")
  12745. },
  12746. {
  12747. name: "Macro",
  12748. height: math.unit(150, "feet"),
  12749. default: true
  12750. },
  12751. {
  12752. name: "Megamacro",
  12753. height: math.unit(1200, "feet")
  12754. },
  12755. ]
  12756. ))
  12757. characterMakers.push(() => makeCharacter(
  12758. { name: "King", species: ["lion"], tags: ["anthro"] },
  12759. {
  12760. back: {
  12761. height: math.unit(6, "feet"),
  12762. weight: math.unit(150, "lb"),
  12763. name: "Back",
  12764. image: {
  12765. source: "./media/characters/king/back.svg"
  12766. }
  12767. },
  12768. },
  12769. [
  12770. {
  12771. name: "Micro",
  12772. height: math.unit(2, "inches")
  12773. },
  12774. {
  12775. name: "Normal",
  12776. height: math.unit(8, "feet")
  12777. },
  12778. {
  12779. name: "Macro",
  12780. height: math.unit(200, "feet"),
  12781. default: true
  12782. },
  12783. {
  12784. name: "Megamacro",
  12785. height: math.unit(50, "miles")
  12786. },
  12787. ]
  12788. ))
  12789. characterMakers.push(() => makeCharacter(
  12790. { name: "Cordite", species: ["candy-orca-dragon"], tags: ["anthro"] },
  12791. {
  12792. front: {
  12793. height: math.unit(11, "feet"),
  12794. weight: math.unit(1400, "lb"),
  12795. name: "Front",
  12796. image: {
  12797. source: "./media/characters/cordite/front.svg",
  12798. extra: 1919/1827,
  12799. bottom: 40/1959
  12800. }
  12801. },
  12802. side: {
  12803. height: math.unit(11, "feet"),
  12804. weight: math.unit(1400, "lb"),
  12805. name: "Side",
  12806. image: {
  12807. source: "./media/characters/cordite/side.svg",
  12808. extra: 1908/1793,
  12809. bottom: 38/1946
  12810. }
  12811. },
  12812. back: {
  12813. height: math.unit(11, "feet"),
  12814. weight: math.unit(1400, "lb"),
  12815. name: "Back",
  12816. image: {
  12817. source: "./media/characters/cordite/back.svg",
  12818. extra: 1938/1837,
  12819. bottom: 10/1948
  12820. }
  12821. },
  12822. feral: {
  12823. height: math.unit(2, "feet"),
  12824. weight: math.unit(90, "lb"),
  12825. name: "Feral",
  12826. image: {
  12827. source: "./media/characters/cordite/feral.svg",
  12828. extra: 1260 / 755,
  12829. bottom: 0.05
  12830. }
  12831. },
  12832. },
  12833. [
  12834. {
  12835. name: "Normal",
  12836. height: math.unit(11, "feet"),
  12837. default: true
  12838. },
  12839. ]
  12840. ))
  12841. characterMakers.push(() => makeCharacter(
  12842. { name: "Pianostrong", species: ["husky"], tags: ["anthro"] },
  12843. {
  12844. front: {
  12845. height: math.unit(6, "feet"),
  12846. weight: math.unit(150, "lb"),
  12847. name: "Front",
  12848. image: {
  12849. source: "./media/characters/pianostrong/front.svg",
  12850. extra: 6577 / 6254,
  12851. bottom: 0.02
  12852. }
  12853. },
  12854. side: {
  12855. height: math.unit(6, "feet"),
  12856. weight: math.unit(150, "lb"),
  12857. name: "Side",
  12858. image: {
  12859. source: "./media/characters/pianostrong/side.svg",
  12860. extra: 6106 / 5730
  12861. }
  12862. },
  12863. back: {
  12864. height: math.unit(6, "feet"),
  12865. weight: math.unit(150, "lb"),
  12866. name: "Back",
  12867. image: {
  12868. source: "./media/characters/pianostrong/back.svg",
  12869. extra: 6085 / 5733,
  12870. bottom: 0.01
  12871. }
  12872. },
  12873. },
  12874. [
  12875. {
  12876. name: "Macro",
  12877. height: math.unit(100, "feet")
  12878. },
  12879. {
  12880. name: "Macro+",
  12881. height: math.unit(300, "feet"),
  12882. default: true
  12883. },
  12884. {
  12885. name: "Macro++",
  12886. height: math.unit(1000, "feet")
  12887. },
  12888. ]
  12889. ))
  12890. characterMakers.push(() => makeCharacter(
  12891. { name: "Kona", species: ["deer"], tags: ["anthro"] },
  12892. {
  12893. front: {
  12894. height: math.unit(6, "feet"),
  12895. weight: math.unit(150, "lb"),
  12896. name: "Front",
  12897. image: {
  12898. source: "./media/characters/kona/front.svg",
  12899. extra: 2960 / 2629,
  12900. bottom: 0.005
  12901. }
  12902. },
  12903. },
  12904. [
  12905. {
  12906. name: "Normal",
  12907. height: math.unit(11 + 8 / 12, "feet")
  12908. },
  12909. {
  12910. name: "Macro",
  12911. height: math.unit(850, "feet"),
  12912. default: true
  12913. },
  12914. {
  12915. name: "Macro+",
  12916. height: math.unit(1.5, "km"),
  12917. default: true
  12918. },
  12919. {
  12920. name: "Megamacro",
  12921. height: math.unit(80, "miles")
  12922. },
  12923. {
  12924. name: "Gigamacro",
  12925. height: math.unit(3500, "miles")
  12926. },
  12927. ]
  12928. ))
  12929. characterMakers.push(() => makeCharacter(
  12930. { name: "Levi", species: ["dragon"], tags: ["anthro"] },
  12931. {
  12932. side: {
  12933. height: math.unit(1.9, "meters"),
  12934. weight: math.unit(326, "kg"),
  12935. name: "Side",
  12936. image: {
  12937. source: "./media/characters/levi/side.svg",
  12938. extra: 1704 / 1334,
  12939. bottom: 0.02
  12940. }
  12941. },
  12942. },
  12943. [
  12944. {
  12945. name: "Normal",
  12946. height: math.unit(1.9, "meters"),
  12947. default: true
  12948. },
  12949. {
  12950. name: "Macro",
  12951. height: math.unit(20, "meters")
  12952. },
  12953. {
  12954. name: "Macro+",
  12955. height: math.unit(200, "meters")
  12956. },
  12957. {
  12958. name: "Megamacro",
  12959. height: math.unit(2, "km")
  12960. },
  12961. {
  12962. name: "Megamacro+",
  12963. height: math.unit(20, "km")
  12964. },
  12965. {
  12966. name: "Gigamacro",
  12967. height: math.unit(2500, "km")
  12968. },
  12969. {
  12970. name: "Gigamacro+",
  12971. height: math.unit(120000, "km")
  12972. },
  12973. {
  12974. name: "Teramacro",
  12975. height: math.unit(7.77e6, "km")
  12976. },
  12977. ]
  12978. ))
  12979. characterMakers.push(() => makeCharacter(
  12980. { name: "BMC", species: ["sabertooth-tiger", "cougar"], tags: ["anthro"] },
  12981. {
  12982. front: {
  12983. height: math.unit(6 + 4/12, "feet"),
  12984. weight: math.unit(190, "lb"),
  12985. name: "Front",
  12986. image: {
  12987. source: "./media/characters/bmc/front.svg",
  12988. extra: 1626/1472,
  12989. bottom: 79/1705
  12990. }
  12991. },
  12992. back: {
  12993. height: math.unit(6 + 4/12, "feet"),
  12994. weight: math.unit(190, "lb"),
  12995. name: "Back",
  12996. image: {
  12997. source: "./media/characters/bmc/back.svg",
  12998. extra: 1640/1479,
  12999. bottom: 45/1685
  13000. }
  13001. },
  13002. frontArmor: {
  13003. height: math.unit(6 + 4/12, "feet"),
  13004. weight: math.unit(190, "lb"),
  13005. name: "Front-armor",
  13006. image: {
  13007. source: "./media/characters/bmc/front-armor.svg",
  13008. extra: 1538/1468,
  13009. bottom: 79/1617
  13010. }
  13011. },
  13012. },
  13013. [
  13014. {
  13015. name: "Human-sized",
  13016. height: math.unit(6 + 4 / 12, "feet")
  13017. },
  13018. {
  13019. name: "Interactive Size",
  13020. height: math.unit(25, "feet")
  13021. },
  13022. {
  13023. name: "Small",
  13024. height: math.unit(250, "feet")
  13025. },
  13026. {
  13027. name: "Normal",
  13028. height: math.unit(1250, "feet"),
  13029. default: true
  13030. },
  13031. {
  13032. name: "Good Day",
  13033. height: math.unit(88, "miles")
  13034. },
  13035. {
  13036. name: "Largest Measured Size",
  13037. height: math.unit(105.960, "galaxies")
  13038. },
  13039. ]
  13040. ))
  13041. characterMakers.push(() => makeCharacter(
  13042. { name: "Sven the Kaiju", species: ["monster", "fairy"], tags: ["anthro"] },
  13043. {
  13044. front: {
  13045. height: math.unit(20, "feet"),
  13046. weight: math.unit(2016, "kg"),
  13047. name: "Front",
  13048. image: {
  13049. source: "./media/characters/sven-the-kaiju/front.svg",
  13050. extra: 1277/1250,
  13051. bottom: 35/1312
  13052. }
  13053. },
  13054. mouth: {
  13055. height: math.unit(1.85, "feet"),
  13056. name: "Mouth",
  13057. image: {
  13058. source: "./media/characters/sven-the-kaiju/mouth.svg"
  13059. }
  13060. },
  13061. },
  13062. [
  13063. {
  13064. name: "Fairy",
  13065. height: math.unit(6, "inches")
  13066. },
  13067. {
  13068. name: "Normal",
  13069. height: math.unit(20, "feet"),
  13070. default: true
  13071. },
  13072. {
  13073. name: "Rampage",
  13074. height: math.unit(200, "feet")
  13075. },
  13076. {
  13077. name: "Archfey Forest Guardian",
  13078. height: math.unit(1, "mile")
  13079. },
  13080. ]
  13081. ))
  13082. characterMakers.push(() => makeCharacter(
  13083. { name: "Marik", species: ["dragon"], tags: ["anthro"] },
  13084. {
  13085. front: {
  13086. height: math.unit(4, "meters"),
  13087. weight: math.unit(2, "tons"),
  13088. name: "Front",
  13089. image: {
  13090. source: "./media/characters/marik/front.svg",
  13091. extra: 1057 / 1003,
  13092. bottom: 0.08
  13093. }
  13094. },
  13095. },
  13096. [
  13097. {
  13098. name: "Normal",
  13099. height: math.unit(4, "meters"),
  13100. default: true
  13101. },
  13102. {
  13103. name: "Macro",
  13104. height: math.unit(20, "meters")
  13105. },
  13106. {
  13107. name: "Megamacro",
  13108. height: math.unit(50, "km")
  13109. },
  13110. {
  13111. name: "Gigamacro",
  13112. height: math.unit(100, "km")
  13113. },
  13114. {
  13115. name: "Alpha Macro",
  13116. height: math.unit(7.88e7, "yottameters")
  13117. },
  13118. ]
  13119. ))
  13120. characterMakers.push(() => makeCharacter(
  13121. { name: "Mel", species: ["human", "moth"], tags: ["anthro"] },
  13122. {
  13123. front: {
  13124. height: math.unit(6, "feet"),
  13125. weight: math.unit(110, "lb"),
  13126. name: "Front",
  13127. image: {
  13128. source: "./media/characters/mel/front.svg",
  13129. extra: 736 / 617,
  13130. bottom: 0.017
  13131. }
  13132. },
  13133. },
  13134. [
  13135. {
  13136. name: "Pico",
  13137. height: math.unit(3, "pm")
  13138. },
  13139. {
  13140. name: "Nano",
  13141. height: math.unit(3, "nm")
  13142. },
  13143. {
  13144. name: "Micro",
  13145. height: math.unit(0.3, "mm"),
  13146. default: true
  13147. },
  13148. {
  13149. name: "Micro+",
  13150. height: math.unit(3, "mm")
  13151. },
  13152. {
  13153. name: "Normal",
  13154. height: math.unit(5 + 10.5 / 12, "feet")
  13155. },
  13156. ]
  13157. ))
  13158. characterMakers.push(() => makeCharacter(
  13159. { name: "Lykonous", species: ["monster"], tags: ["anthro"] },
  13160. {
  13161. kaiju: {
  13162. height: math.unit(1.75, "meters"),
  13163. weight: math.unit(55, "kg"),
  13164. name: "Kaiju",
  13165. image: {
  13166. source: "./media/characters/lykonous/kaiju.svg",
  13167. extra: 1055 / 946,
  13168. bottom: 0.135
  13169. }
  13170. },
  13171. },
  13172. [
  13173. {
  13174. name: "Normal",
  13175. height: math.unit(2.5, "meters"),
  13176. default: true
  13177. },
  13178. {
  13179. name: "Kaiju Dragon",
  13180. height: math.unit(60, "meters")
  13181. },
  13182. {
  13183. name: "Mega Kaiju",
  13184. height: math.unit(120, "km")
  13185. },
  13186. {
  13187. name: "Giga Kaiju",
  13188. height: math.unit(200, "megameters")
  13189. },
  13190. {
  13191. name: "Terra Kaiju",
  13192. height: math.unit(400, "gigameters")
  13193. },
  13194. {
  13195. name: "Kaiju Dragon God",
  13196. height: math.unit(13000, "exaparsecs")
  13197. },
  13198. ]
  13199. ))
  13200. characterMakers.push(() => makeCharacter(
  13201. { name: "Blü", species: ["dragon"], 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/blü/front.svg",
  13209. extra: 1883 / 1564,
  13210. bottom: 0.031
  13211. }
  13212. },
  13213. },
  13214. [
  13215. {
  13216. name: "Normal",
  13217. height: math.unit(13, "feet"),
  13218. default: true
  13219. },
  13220. {
  13221. name: "Big Boi",
  13222. height: math.unit(150, "meters")
  13223. },
  13224. {
  13225. name: "Mini Stomper",
  13226. height: math.unit(300, "meters")
  13227. },
  13228. {
  13229. name: "Macro",
  13230. height: math.unit(1000, "meters")
  13231. },
  13232. {
  13233. name: "Megamacro",
  13234. height: math.unit(11000, "meters")
  13235. },
  13236. {
  13237. name: "Gigamacro",
  13238. height: math.unit(11000, "km")
  13239. },
  13240. {
  13241. name: "Teramacro",
  13242. height: math.unit(420000, "km")
  13243. },
  13244. {
  13245. name: "Examacro",
  13246. height: math.unit(120, "parsecs")
  13247. },
  13248. {
  13249. name: "God Tho",
  13250. height: math.unit(98000000000, "parsecs")
  13251. },
  13252. ]
  13253. ))
  13254. characterMakers.push(() => makeCharacter(
  13255. { name: "Scales", species: ["dragon"], tags: ["taur"] },
  13256. {
  13257. taurFront: {
  13258. height: math.unit(6, "feet"),
  13259. weight: math.unit(200, "lb"),
  13260. name: "Taur (Front)",
  13261. image: {
  13262. source: "./media/characters/scales/taur-front.svg",
  13263. extra: 1,
  13264. bottom: 0.05
  13265. }
  13266. },
  13267. taurBack: {
  13268. height: math.unit(6, "feet"),
  13269. weight: math.unit(200, "lb"),
  13270. name: "Taur (Back)",
  13271. image: {
  13272. source: "./media/characters/scales/taur-back.svg",
  13273. extra: 1,
  13274. bottom: 0.08
  13275. }
  13276. },
  13277. anthro: {
  13278. height: math.unit(6 * 7 / 12, "feet"),
  13279. weight: math.unit(100, "lb"),
  13280. name: "Anthro",
  13281. image: {
  13282. source: "./media/characters/scales/anthro.svg",
  13283. extra: 1,
  13284. bottom: 0.06
  13285. }
  13286. },
  13287. },
  13288. [
  13289. {
  13290. name: "Normal",
  13291. height: math.unit(12, "feet"),
  13292. default: true
  13293. },
  13294. ]
  13295. ))
  13296. characterMakers.push(() => makeCharacter(
  13297. { name: "Koragos", species: ["lizard"], tags: ["anthro"] },
  13298. {
  13299. front: {
  13300. height: math.unit(6, "feet"),
  13301. weight: math.unit(150, "lb"),
  13302. name: "Front",
  13303. image: {
  13304. source: "./media/characters/koragos/front.svg",
  13305. extra: 841 / 794,
  13306. bottom: 0.035
  13307. }
  13308. },
  13309. back: {
  13310. height: math.unit(6, "feet"),
  13311. weight: math.unit(150, "lb"),
  13312. name: "Back",
  13313. image: {
  13314. source: "./media/characters/koragos/back.svg",
  13315. extra: 841 / 810,
  13316. bottom: 0.022
  13317. }
  13318. },
  13319. },
  13320. [
  13321. {
  13322. name: "Normal",
  13323. height: math.unit(6 + 11 / 12, "feet"),
  13324. default: true
  13325. },
  13326. {
  13327. name: "Macro",
  13328. height: math.unit(490, "feet")
  13329. },
  13330. {
  13331. name: "Megamacro",
  13332. height: math.unit(10, "miles")
  13333. },
  13334. {
  13335. name: "Gigamacro",
  13336. height: math.unit(50, "miles")
  13337. },
  13338. ]
  13339. ))
  13340. characterMakers.push(() => makeCharacter(
  13341. { name: "Xylrem", species: ["dragon"], tags: ["anthro"] },
  13342. {
  13343. front: {
  13344. height: math.unit(6, "feet"),
  13345. weight: math.unit(250, "lb"),
  13346. name: "Front",
  13347. image: {
  13348. source: "./media/characters/xylrem/front.svg",
  13349. extra: 3323 / 3050,
  13350. bottom: 0.065
  13351. }
  13352. },
  13353. },
  13354. [
  13355. {
  13356. name: "Micro",
  13357. height: math.unit(4, "feet")
  13358. },
  13359. {
  13360. name: "Normal",
  13361. height: math.unit(16, "feet"),
  13362. default: true
  13363. },
  13364. {
  13365. name: "Macro",
  13366. height: math.unit(2720, "feet")
  13367. },
  13368. {
  13369. name: "Megamacro",
  13370. height: math.unit(25000, "miles")
  13371. },
  13372. ]
  13373. ))
  13374. characterMakers.push(() => makeCharacter(
  13375. { name: "Ikideru", species: ["german-shepherd"], tags: ["anthro"] },
  13376. {
  13377. front: {
  13378. height: math.unit(8, "feet"),
  13379. weight: math.unit(250, "kg"),
  13380. name: "Front",
  13381. image: {
  13382. source: "./media/characters/ikideru/front.svg",
  13383. extra: 930 / 870,
  13384. bottom: 0.087
  13385. }
  13386. },
  13387. back: {
  13388. height: math.unit(8, "feet"),
  13389. weight: math.unit(250, "kg"),
  13390. name: "Back",
  13391. image: {
  13392. source: "./media/characters/ikideru/back.svg",
  13393. extra: 919 / 852,
  13394. bottom: 0.055
  13395. }
  13396. },
  13397. },
  13398. [
  13399. {
  13400. name: "Rare",
  13401. height: math.unit(8, "feet"),
  13402. default: true
  13403. },
  13404. {
  13405. name: "Playful Loom",
  13406. height: math.unit(80, "feet")
  13407. },
  13408. {
  13409. name: "City Leaner",
  13410. height: math.unit(230, "feet")
  13411. },
  13412. {
  13413. name: "Megamacro",
  13414. height: math.unit(2500, "feet")
  13415. },
  13416. {
  13417. name: "Gigamacro",
  13418. height: math.unit(26400, "feet")
  13419. },
  13420. {
  13421. name: "Tectonic Shifter",
  13422. height: math.unit(1.7, "megameters")
  13423. },
  13424. {
  13425. name: "Planet Carer",
  13426. height: math.unit(21, "megameters")
  13427. },
  13428. {
  13429. name: "God",
  13430. height: math.unit(11157.22, "parsecs")
  13431. },
  13432. ]
  13433. ))
  13434. characterMakers.push(() => makeCharacter(
  13435. { name: "Neo", species: ["dragon"], tags: ["anthro"] },
  13436. {
  13437. front: {
  13438. height: math.unit(6, "feet"),
  13439. weight: math.unit(120, "lb"),
  13440. name: "Front",
  13441. image: {
  13442. source: "./media/characters/neo/front.svg"
  13443. }
  13444. },
  13445. },
  13446. [
  13447. {
  13448. name: "Micro",
  13449. height: math.unit(2, "inches"),
  13450. default: true
  13451. },
  13452. {
  13453. name: "Human Size",
  13454. height: math.unit(5 + 8 / 12, "feet")
  13455. },
  13456. ]
  13457. ))
  13458. characterMakers.push(() => makeCharacter(
  13459. { name: "Chauncey (Chantz)", species: ["dragon"], tags: ["anthro"] },
  13460. {
  13461. front: {
  13462. height: math.unit(13 + 10 / 12, "feet"),
  13463. weight: math.unit(5320, "lb"),
  13464. name: "Front",
  13465. image: {
  13466. source: "./media/characters/chauncey-chantz/front.svg",
  13467. extra: 1587 / 1435,
  13468. bottom: 0.02
  13469. }
  13470. },
  13471. },
  13472. [
  13473. {
  13474. name: "Normal",
  13475. height: math.unit(13 + 10 / 12, "feet"),
  13476. default: true
  13477. },
  13478. {
  13479. name: "Macro",
  13480. height: math.unit(45, "feet")
  13481. },
  13482. {
  13483. name: "Megamacro",
  13484. height: math.unit(250, "miles")
  13485. },
  13486. {
  13487. name: "Planetary",
  13488. height: math.unit(10000, "miles")
  13489. },
  13490. {
  13491. name: "Galactic",
  13492. height: math.unit(40000, "parsecs")
  13493. },
  13494. {
  13495. name: "Universal",
  13496. height: math.unit(1, "yottameter")
  13497. },
  13498. ]
  13499. ))
  13500. characterMakers.push(() => makeCharacter(
  13501. { name: "Epifox", species: ["snake", "fox"], tags: ["naga"] },
  13502. {
  13503. front: {
  13504. height: math.unit(6, "feet"),
  13505. weight: math.unit(150, "lb"),
  13506. name: "Front",
  13507. image: {
  13508. source: "./media/characters/epifox/front.svg",
  13509. extra: 1,
  13510. bottom: 0.075
  13511. }
  13512. },
  13513. },
  13514. [
  13515. {
  13516. name: "Micro",
  13517. height: math.unit(6, "inches")
  13518. },
  13519. {
  13520. name: "Normal",
  13521. height: math.unit(12, "feet"),
  13522. default: true
  13523. },
  13524. {
  13525. name: "Macro",
  13526. height: math.unit(3810, "feet")
  13527. },
  13528. {
  13529. name: "Megamacro",
  13530. height: math.unit(500, "miles")
  13531. },
  13532. ]
  13533. ))
  13534. characterMakers.push(() => makeCharacter(
  13535. { name: "Colin T.", species: ["dragon"], tags: ["anthro"] },
  13536. {
  13537. front: {
  13538. height: math.unit(1.8796, "m"),
  13539. weight: math.unit(230, "lb"),
  13540. name: "Front",
  13541. image: {
  13542. source: "./media/characters/colin-t/front.svg",
  13543. extra: 1272 / 1193,
  13544. bottom: 0.07
  13545. }
  13546. },
  13547. },
  13548. [
  13549. {
  13550. name: "Micro",
  13551. height: math.unit(0.571, "meters")
  13552. },
  13553. {
  13554. name: "Normal",
  13555. height: math.unit(1.8796, "meters"),
  13556. default: true
  13557. },
  13558. {
  13559. name: "Tall",
  13560. height: math.unit(4, "meters")
  13561. },
  13562. {
  13563. name: "Macro",
  13564. height: math.unit(67.241, "meters")
  13565. },
  13566. {
  13567. name: "Megamacro",
  13568. height: math.unit(371.856, "meters")
  13569. },
  13570. {
  13571. name: "Planetary",
  13572. height: math.unit(12631.5689, "km")
  13573. },
  13574. ]
  13575. ))
  13576. characterMakers.push(() => makeCharacter(
  13577. { name: "Matvei", species: ["shark"], tags: ["anthro"] },
  13578. {
  13579. front: {
  13580. height: math.unit(1.85, "meters"),
  13581. weight: math.unit(80, "kg"),
  13582. name: "Front",
  13583. image: {
  13584. source: "./media/characters/matvei/front.svg",
  13585. extra: 456/447,
  13586. bottom: 8/464
  13587. }
  13588. },
  13589. back: {
  13590. height: math.unit(1.85, "meters"),
  13591. weight: math.unit(80, "kg"),
  13592. name: "Back",
  13593. image: {
  13594. source: "./media/characters/matvei/back.svg",
  13595. extra: 434/427,
  13596. bottom: 11/445
  13597. }
  13598. },
  13599. },
  13600. [
  13601. {
  13602. name: "Normal",
  13603. height: math.unit(1.85, "meters"),
  13604. default: true
  13605. },
  13606. ]
  13607. ))
  13608. characterMakers.push(() => makeCharacter(
  13609. { name: "Quincy", species: ["phoenix"], tags: ["anthro"] },
  13610. {
  13611. front: {
  13612. height: math.unit(5 + 9 / 12, "feet"),
  13613. weight: math.unit(70, "lb"),
  13614. name: "Front",
  13615. image: {
  13616. source: "./media/characters/quincy/front.svg",
  13617. extra: 3041 / 2751
  13618. }
  13619. },
  13620. back: {
  13621. height: math.unit(5 + 9 / 12, "feet"),
  13622. weight: math.unit(70, "lb"),
  13623. name: "Back",
  13624. image: {
  13625. source: "./media/characters/quincy/back.svg",
  13626. extra: 3041 / 2751
  13627. }
  13628. },
  13629. flying: {
  13630. height: math.unit(5 + 4 / 12, "feet"),
  13631. weight: math.unit(70, "lb"),
  13632. name: "Flying",
  13633. image: {
  13634. source: "./media/characters/quincy/flying.svg",
  13635. extra: 1044 / 930
  13636. }
  13637. },
  13638. },
  13639. [
  13640. {
  13641. name: "Micro",
  13642. height: math.unit(3, "cm")
  13643. },
  13644. {
  13645. name: "Normal",
  13646. height: math.unit(5 + 9 / 12, "feet")
  13647. },
  13648. {
  13649. name: "Macro",
  13650. height: math.unit(200, "meters"),
  13651. default: true
  13652. },
  13653. {
  13654. name: "Megamacro",
  13655. height: math.unit(1000, "meters")
  13656. },
  13657. ]
  13658. ))
  13659. characterMakers.push(() => makeCharacter(
  13660. { name: "Vanrel", species: ["fennec-fox"], tags: ["anthro"] },
  13661. {
  13662. front: {
  13663. height: math.unit(3 + 11/12, "feet"),
  13664. weight: math.unit(50, "lb"),
  13665. name: "Front",
  13666. image: {
  13667. source: "./media/characters/vanrel/front.svg",
  13668. extra: 1104/949,
  13669. bottom: 52/1156
  13670. }
  13671. },
  13672. back: {
  13673. height: math.unit(3 + 11/12, "feet"),
  13674. weight: math.unit(50, "lb"),
  13675. name: "Back",
  13676. image: {
  13677. source: "./media/characters/vanrel/back.svg",
  13678. extra: 1119/976,
  13679. bottom: 37/1156
  13680. }
  13681. },
  13682. tome: {
  13683. height: math.unit(1.35, "feet"),
  13684. weight: math.unit(10, "lb"),
  13685. name: "Vanrel's Tome",
  13686. rename: true,
  13687. image: {
  13688. source: "./media/characters/vanrel/tome.svg"
  13689. }
  13690. },
  13691. beans: {
  13692. height: math.unit(0.89, "feet"),
  13693. name: "Beans",
  13694. image: {
  13695. source: "./media/characters/vanrel/beans.svg"
  13696. }
  13697. },
  13698. },
  13699. [
  13700. {
  13701. name: "Normal",
  13702. height: math.unit(3 + 11/12, "feet"),
  13703. default: true
  13704. },
  13705. ]
  13706. ))
  13707. characterMakers.push(() => makeCharacter(
  13708. { name: "Kuiper Vanrel", species: ["elemental", "meerkat"], tags: ["anthro"] },
  13709. {
  13710. front: {
  13711. height: math.unit(7 + 5 / 12, "feet"),
  13712. name: "Front",
  13713. image: {
  13714. source: "./media/characters/kuiper-vanrel/front.svg",
  13715. extra: 1219/1169,
  13716. bottom: 69/1288
  13717. }
  13718. },
  13719. back: {
  13720. height: math.unit(7 + 5 / 12, "feet"),
  13721. name: "Back",
  13722. image: {
  13723. source: "./media/characters/kuiper-vanrel/back.svg",
  13724. extra: 1236/1193,
  13725. bottom: 27/1263
  13726. }
  13727. },
  13728. foot: {
  13729. height: math.unit(0.55, "meters"),
  13730. name: "Foot",
  13731. image: {
  13732. source: "./media/characters/kuiper-vanrel/foot.svg",
  13733. }
  13734. },
  13735. battle: {
  13736. height: math.unit(6.824, "feet"),
  13737. name: "Battle",
  13738. image: {
  13739. source: "./media/characters/kuiper-vanrel/battle.svg",
  13740. extra: 1466 / 1327,
  13741. bottom: 29 / 1492.5
  13742. }
  13743. },
  13744. meerkui: {
  13745. height: math.unit(18, "inches"),
  13746. name: "Meerkui",
  13747. image: {
  13748. source: "./media/characters/kuiper-vanrel/meerkui.svg",
  13749. extra: 1354/1289,
  13750. bottom: 69/1423
  13751. }
  13752. },
  13753. },
  13754. [
  13755. {
  13756. name: "Normal",
  13757. height: math.unit(7 + 5 / 12, "feet"),
  13758. default: true
  13759. },
  13760. ]
  13761. ))
  13762. characterMakers.push(() => makeCharacter(
  13763. { name: "Keset Vanrel", species: ["elemental", "hyena"], tags: ["anthro"] },
  13764. {
  13765. front: {
  13766. height: math.unit(8 + 5 / 12, "feet"),
  13767. name: "Front",
  13768. image: {
  13769. source: "./media/characters/keset-vanrel/front.svg",
  13770. extra: 1231/1148,
  13771. bottom: 82/1313
  13772. }
  13773. },
  13774. back: {
  13775. height: math.unit(8 + 5 / 12, "feet"),
  13776. name: "Back",
  13777. image: {
  13778. source: "./media/characters/keset-vanrel/back.svg",
  13779. extra: 1240/1174,
  13780. bottom: 33/1273
  13781. }
  13782. },
  13783. hand: {
  13784. height: math.unit(0.6, "meters"),
  13785. name: "Hand",
  13786. image: {
  13787. source: "./media/characters/keset-vanrel/hand.svg"
  13788. }
  13789. },
  13790. foot: {
  13791. height: math.unit(0.94978, "meters"),
  13792. name: "Foot",
  13793. image: {
  13794. source: "./media/characters/keset-vanrel/foot.svg"
  13795. }
  13796. },
  13797. battle: {
  13798. height: math.unit(7.408, "feet"),
  13799. name: "Battle",
  13800. image: {
  13801. source: "./media/characters/keset-vanrel/battle.svg",
  13802. extra: 1890 / 1386,
  13803. bottom: 73.28 / 1970
  13804. }
  13805. },
  13806. },
  13807. [
  13808. {
  13809. name: "Normal",
  13810. height: math.unit(8 + 5 / 12, "feet"),
  13811. default: true
  13812. },
  13813. ]
  13814. ))
  13815. characterMakers.push(() => makeCharacter(
  13816. { name: "Neos", species: ["mew"], tags: ["anthro"] },
  13817. {
  13818. front: {
  13819. height: math.unit(6, "feet"),
  13820. weight: math.unit(150, "lb"),
  13821. name: "Front",
  13822. image: {
  13823. source: "./media/characters/neos/front.svg",
  13824. extra: 1696 / 992,
  13825. bottom: 0.14
  13826. }
  13827. },
  13828. },
  13829. [
  13830. {
  13831. name: "Normal",
  13832. height: math.unit(54, "cm"),
  13833. default: true
  13834. },
  13835. {
  13836. name: "Macro",
  13837. height: math.unit(100, "m")
  13838. },
  13839. {
  13840. name: "Megamacro",
  13841. height: math.unit(10, "km")
  13842. },
  13843. {
  13844. name: "Megamacro+",
  13845. height: math.unit(100, "km")
  13846. },
  13847. {
  13848. name: "Gigamacro",
  13849. height: math.unit(100, "Mm")
  13850. },
  13851. {
  13852. name: "Teramacro",
  13853. height: math.unit(100, "Gm")
  13854. },
  13855. {
  13856. name: "Examacro",
  13857. height: math.unit(100, "Em")
  13858. },
  13859. {
  13860. name: "Godly",
  13861. height: math.unit(10000, "Ym")
  13862. },
  13863. {
  13864. name: "Beyond Godly",
  13865. height: math.unit(25, "multiverses")
  13866. },
  13867. ]
  13868. ))
  13869. characterMakers.push(() => makeCharacter(
  13870. { name: "Sammy Mouse", species: ["mouse"], tags: ["anthro"] },
  13871. {
  13872. fluide_tame: {
  13873. height: math.unit(5, "feet"),
  13874. name: "Tame",
  13875. image: {
  13876. source: "./media/characters/sammy-mouse/fluide-tame.svg",
  13877. extra: 1655/1574,
  13878. bottom: 231/1886
  13879. },
  13880. form: "fluide",
  13881. default: true
  13882. },
  13883. fluide_nude: {
  13884. height: math.unit(5, "feet"),
  13885. name: "Nude",
  13886. image: {
  13887. source: "./media/characters/sammy-mouse/fluide-nude.svg",
  13888. extra: 1655/1574,
  13889. bottom: 231/1886
  13890. },
  13891. form: "fluide",
  13892. },
  13893. male_tame: {
  13894. height: math.unit(5, "feet"),
  13895. name: "Tame",
  13896. image: {
  13897. source: "./media/characters/sammy-mouse/male-tame.svg",
  13898. extra: 1655/1574,
  13899. bottom: 231/1886
  13900. },
  13901. form: "male",
  13902. default: true
  13903. },
  13904. male_nude: {
  13905. height: math.unit(5, "feet"),
  13906. name: "Nude",
  13907. image: {
  13908. source: "./media/characters/sammy-mouse/male-nude.svg",
  13909. extra: 1655/1574,
  13910. bottom: 231/1886
  13911. },
  13912. form: "male",
  13913. },
  13914. female_nude: {
  13915. height: math.unit(5, "feet"),
  13916. name: "Nude",
  13917. image: {
  13918. source: "./media/characters/sammy-mouse/female-nude.svg",
  13919. extra: 1655/1574,
  13920. bottom: 231/1886
  13921. },
  13922. form: "female",
  13923. default: true
  13924. },
  13925. mouth: {
  13926. height: math.unit(0.32, "feet"),
  13927. name: "Mouth",
  13928. image: {
  13929. source: "./media/characters/sammy-mouse/mouth.svg"
  13930. },
  13931. allForms: true
  13932. },
  13933. paw: {
  13934. height: math.unit(0.42, "feet"),
  13935. name: "Paw",
  13936. image: {
  13937. source: "./media/characters/sammy-mouse/paw.svg"
  13938. },
  13939. allForms: true
  13940. },
  13941. },
  13942. [
  13943. {
  13944. name: "Micro",
  13945. height: math.unit(5, "inches"),
  13946. allForms: true
  13947. },
  13948. {
  13949. name: "Normal",
  13950. height: math.unit(5, "feet"),
  13951. default: true,
  13952. allForms: true
  13953. },
  13954. {
  13955. name: "Macro",
  13956. height: math.unit(60, "feet"),
  13957. allForms: true
  13958. },
  13959. ],
  13960. {
  13961. "fluide": {
  13962. name: "Fluide",
  13963. default: true
  13964. },
  13965. "male": {
  13966. name: "Male",
  13967. },
  13968. "female": {
  13969. name: "Female",
  13970. },
  13971. }
  13972. ))
  13973. characterMakers.push(() => makeCharacter(
  13974. { name: "Kole", species: ["kobold"], tags: ["anthro"] },
  13975. {
  13976. front: {
  13977. height: math.unit(4, "feet"),
  13978. weight: math.unit(50, "lb"),
  13979. name: "Front",
  13980. image: {
  13981. source: "./media/characters/kole/front.svg",
  13982. extra: 1423 / 1303,
  13983. bottom: 0.025
  13984. }
  13985. },
  13986. back: {
  13987. height: math.unit(4, "feet"),
  13988. weight: math.unit(50, "lb"),
  13989. name: "Back",
  13990. image: {
  13991. source: "./media/characters/kole/back.svg",
  13992. extra: 1426 / 1280,
  13993. bottom: 0.02
  13994. }
  13995. },
  13996. },
  13997. [
  13998. {
  13999. name: "Normal",
  14000. height: math.unit(4, "feet"),
  14001. default: true
  14002. },
  14003. ]
  14004. ))
  14005. characterMakers.push(() => makeCharacter(
  14006. { name: "Rufran", species: ["moth", "avian", "kobold"], tags: ["anthro"] },
  14007. {
  14008. front: {
  14009. height: math.unit(2.5, "feet"),
  14010. weight: math.unit(32, "lb"),
  14011. name: "Front",
  14012. image: {
  14013. source: "./media/characters/rufran/front.svg",
  14014. extra: 1313/885,
  14015. bottom: 94/1407
  14016. }
  14017. },
  14018. side: {
  14019. height: math.unit(2.5, "feet"),
  14020. weight: math.unit(32, "lb"),
  14021. name: "Side",
  14022. image: {
  14023. source: "./media/characters/rufran/side.svg",
  14024. extra: 1109/852,
  14025. bottom: 118/1227
  14026. }
  14027. },
  14028. back: {
  14029. height: math.unit(2.5, "feet"),
  14030. weight: math.unit(32, "lb"),
  14031. name: "Back",
  14032. image: {
  14033. source: "./media/characters/rufran/back.svg",
  14034. extra: 1280/878,
  14035. bottom: 131/1411
  14036. }
  14037. },
  14038. mouth: {
  14039. height: math.unit(1.13, "feet"),
  14040. name: "Mouth",
  14041. image: {
  14042. source: "./media/characters/rufran/mouth.svg"
  14043. }
  14044. },
  14045. foot: {
  14046. height: math.unit(1.33, "feet"),
  14047. name: "Foot",
  14048. image: {
  14049. source: "./media/characters/rufran/foot.svg"
  14050. }
  14051. },
  14052. koboldFront: {
  14053. height: math.unit(2 + 6 / 12, "feet"),
  14054. weight: math.unit(20, "lb"),
  14055. name: "Front (Kobold)",
  14056. image: {
  14057. source: "./media/characters/rufran/kobold-front.svg",
  14058. extra: 2041 / 1839,
  14059. bottom: 0.055
  14060. }
  14061. },
  14062. koboldBack: {
  14063. height: math.unit(2 + 6 / 12, "feet"),
  14064. weight: math.unit(20, "lb"),
  14065. name: "Back (Kobold)",
  14066. image: {
  14067. source: "./media/characters/rufran/kobold-back.svg",
  14068. extra: 2054 / 1839,
  14069. bottom: 0.01
  14070. }
  14071. },
  14072. koboldHand: {
  14073. height: math.unit(0.2166, "meters"),
  14074. name: "Hand (Kobold)",
  14075. image: {
  14076. source: "./media/characters/rufran/kobold-hand.svg"
  14077. }
  14078. },
  14079. koboldFoot: {
  14080. height: math.unit(0.185, "meters"),
  14081. name: "Foot (Kobold)",
  14082. image: {
  14083. source: "./media/characters/rufran/kobold-foot.svg"
  14084. }
  14085. },
  14086. },
  14087. [
  14088. {
  14089. name: "Micro",
  14090. height: math.unit(1, "inch")
  14091. },
  14092. {
  14093. name: "Normal",
  14094. height: math.unit(2 + 6 / 12, "feet"),
  14095. default: true
  14096. },
  14097. {
  14098. name: "Big",
  14099. height: math.unit(60, "feet")
  14100. },
  14101. {
  14102. name: "Macro",
  14103. height: math.unit(325, "feet")
  14104. },
  14105. ]
  14106. ))
  14107. characterMakers.push(() => makeCharacter(
  14108. { name: "Chip", species: ["espurr"], tags: ["anthro"] },
  14109. {
  14110. front: {
  14111. height: math.unit(0.3, "meters"),
  14112. weight: math.unit(3.5, "kg"),
  14113. name: "Front",
  14114. image: {
  14115. source: "./media/characters/chip/front.svg",
  14116. extra: 748 / 674
  14117. }
  14118. },
  14119. },
  14120. [
  14121. {
  14122. name: "Micro",
  14123. height: math.unit(1, "inch"),
  14124. default: true
  14125. },
  14126. ]
  14127. ))
  14128. characterMakers.push(() => makeCharacter(
  14129. { name: "Torvid", species: ["gryphon"], tags: ["feral"] },
  14130. {
  14131. side: {
  14132. height: math.unit(2.3, "meters"),
  14133. weight: math.unit(3500, "lb"),
  14134. name: "Side",
  14135. image: {
  14136. source: "./media/characters/torvid/side.svg",
  14137. extra: 1972 / 722,
  14138. bottom: 0.035
  14139. }
  14140. },
  14141. },
  14142. [
  14143. {
  14144. name: "Normal",
  14145. height: math.unit(2.3, "meters"),
  14146. default: true
  14147. },
  14148. ]
  14149. ))
  14150. characterMakers.push(() => makeCharacter(
  14151. { name: "Susan", species: ["goodra"], tags: ["anthro"] },
  14152. {
  14153. front: {
  14154. height: math.unit(2, "meters"),
  14155. weight: math.unit(150.5, "kg"),
  14156. name: "Front",
  14157. image: {
  14158. source: "./media/characters/susan/front.svg",
  14159. extra: 693 / 635,
  14160. bottom: 0.05
  14161. }
  14162. },
  14163. },
  14164. [
  14165. {
  14166. name: "Megamacro",
  14167. height: math.unit(505, "miles"),
  14168. default: true
  14169. },
  14170. ]
  14171. ))
  14172. characterMakers.push(() => makeCharacter(
  14173. { name: "Raindrops", species: ["fox"], tags: ["anthro"] },
  14174. {
  14175. front: {
  14176. height: math.unit(6, "feet"),
  14177. weight: math.unit(150, "lb"),
  14178. name: "Front",
  14179. image: {
  14180. source: "./media/characters/raindrops/front.svg",
  14181. extra: 2655 / 2461,
  14182. bottom: 49 / 2705
  14183. }
  14184. },
  14185. back: {
  14186. height: math.unit(6, "feet"),
  14187. weight: math.unit(150, "lb"),
  14188. name: "Back",
  14189. image: {
  14190. source: "./media/characters/raindrops/back.svg",
  14191. extra: 2574 / 2400,
  14192. bottom: 65 / 2634
  14193. }
  14194. },
  14195. },
  14196. [
  14197. {
  14198. name: "Micro",
  14199. height: math.unit(6, "inches")
  14200. },
  14201. {
  14202. name: "Normal",
  14203. height: math.unit(6 + 2 / 12, "feet")
  14204. },
  14205. {
  14206. name: "Macro",
  14207. height: math.unit(131, "feet"),
  14208. default: true
  14209. },
  14210. {
  14211. name: "Megamacro",
  14212. height: math.unit(15, "miles")
  14213. },
  14214. {
  14215. name: "Gigamacro",
  14216. height: math.unit(4000, "miles")
  14217. },
  14218. {
  14219. name: "Teramacro",
  14220. height: math.unit(315000, "miles")
  14221. },
  14222. ]
  14223. ))
  14224. characterMakers.push(() => makeCharacter(
  14225. { name: "Tezwa", species: ["lion"], tags: ["anthro"] },
  14226. {
  14227. front: {
  14228. height: math.unit(2.794, "meters"),
  14229. weight: math.unit(325, "kg"),
  14230. name: "Front",
  14231. image: {
  14232. source: "./media/characters/tezwa/front.svg",
  14233. extra: 2083 / 1906,
  14234. bottom: 0.031
  14235. }
  14236. },
  14237. foot: {
  14238. height: math.unit(0.687, "meters"),
  14239. name: "Foot",
  14240. image: {
  14241. source: "./media/characters/tezwa/foot.svg"
  14242. }
  14243. },
  14244. },
  14245. [
  14246. {
  14247. name: "Normal",
  14248. height: math.unit(9 + 2 / 12, "feet"),
  14249. default: true
  14250. },
  14251. ]
  14252. ))
  14253. characterMakers.push(() => makeCharacter(
  14254. { name: "Typhus", species: ["typhlosion", "demon"], tags: ["anthro"] },
  14255. {
  14256. front: {
  14257. height: math.unit(58, "feet"),
  14258. weight: math.unit(89000, "lb"),
  14259. name: "Front",
  14260. image: {
  14261. source: "./media/characters/typhus/front.svg",
  14262. extra: 816 / 800,
  14263. bottom: 0.065
  14264. }
  14265. },
  14266. },
  14267. [
  14268. {
  14269. name: "Macro",
  14270. height: math.unit(58, "feet"),
  14271. default: true
  14272. },
  14273. ]
  14274. ))
  14275. characterMakers.push(() => makeCharacter(
  14276. { name: "Lyra Von Wulf", species: ["snake"], tags: ["anthro"] },
  14277. {
  14278. front: {
  14279. height: math.unit(12, "feet"),
  14280. weight: math.unit(6, "tonnes"),
  14281. name: "Front",
  14282. image: {
  14283. source: "./media/characters/lyra-von-wulf/front.svg",
  14284. extra: 1,
  14285. bottom: 0.10
  14286. }
  14287. },
  14288. frontMecha: {
  14289. height: math.unit(12, "feet"),
  14290. weight: math.unit(12, "tonnes"),
  14291. name: "Front (Mecha)",
  14292. image: {
  14293. source: "./media/characters/lyra-von-wulf/front-mecha.svg",
  14294. extra: 1,
  14295. bottom: 0.042
  14296. }
  14297. },
  14298. maw: {
  14299. height: math.unit(2.2, "feet"),
  14300. name: "Maw",
  14301. image: {
  14302. source: "./media/characters/lyra-von-wulf/maw.svg"
  14303. }
  14304. },
  14305. },
  14306. [
  14307. {
  14308. name: "Normal",
  14309. height: math.unit(12, "feet"),
  14310. default: true
  14311. },
  14312. {
  14313. name: "Classic",
  14314. height: math.unit(50, "feet")
  14315. },
  14316. {
  14317. name: "Macro",
  14318. height: math.unit(500, "feet")
  14319. },
  14320. {
  14321. name: "Megamacro",
  14322. height: math.unit(1, "mile")
  14323. },
  14324. {
  14325. name: "Gigamacro",
  14326. height: math.unit(400, "miles")
  14327. },
  14328. {
  14329. name: "Teramacro",
  14330. height: math.unit(22000, "miles")
  14331. },
  14332. {
  14333. name: "Solarmacro",
  14334. height: math.unit(8600000, "miles")
  14335. },
  14336. {
  14337. name: "Galactic",
  14338. height: math.unit(1057000, "lightyears")
  14339. },
  14340. ]
  14341. ))
  14342. characterMakers.push(() => makeCharacter(
  14343. { name: "Dixon", species: ["canine"], tags: ["anthro"] },
  14344. {
  14345. front: {
  14346. height: math.unit(6 + 10 / 12, "feet"),
  14347. weight: math.unit(150, "lb"),
  14348. name: "Front",
  14349. image: {
  14350. source: "./media/characters/dixon/front.svg",
  14351. extra: 3361 / 3209,
  14352. bottom: 0.01
  14353. }
  14354. },
  14355. },
  14356. [
  14357. {
  14358. name: "Normal",
  14359. height: math.unit(6 + 10 / 12, "feet"),
  14360. default: true
  14361. },
  14362. {
  14363. name: "Big",
  14364. height: math.unit(12, "meters")
  14365. },
  14366. {
  14367. name: "Macro",
  14368. height: math.unit(500, "meters")
  14369. },
  14370. {
  14371. name: "Megamacro",
  14372. height: math.unit(2, "km")
  14373. },
  14374. ]
  14375. ))
  14376. characterMakers.push(() => makeCharacter(
  14377. { name: "Kauko", species: ["cheetah"], tags: ["anthro"] },
  14378. {
  14379. front: {
  14380. height: math.unit(185, "cm"),
  14381. weight: math.unit(68, "kg"),
  14382. name: "Front",
  14383. image: {
  14384. source: "./media/characters/kauko/front.svg",
  14385. extra: 1455 / 1421,
  14386. bottom: 0.03
  14387. }
  14388. },
  14389. back: {
  14390. height: math.unit(185, "cm"),
  14391. weight: math.unit(68, "kg"),
  14392. name: "Back",
  14393. image: {
  14394. source: "./media/characters/kauko/back.svg",
  14395. extra: 1455 / 1421,
  14396. bottom: 0.004
  14397. }
  14398. },
  14399. },
  14400. [
  14401. {
  14402. name: "Normal",
  14403. height: math.unit(185, "cm"),
  14404. default: true
  14405. },
  14406. ]
  14407. ))
  14408. characterMakers.push(() => makeCharacter(
  14409. { name: "Varg", species: ["dragon"], tags: ["anthro"] },
  14410. {
  14411. frontSfw: {
  14412. height: math.unit(5, "meters"),
  14413. weight: math.unit(4250, "lb"),
  14414. name: "Front",
  14415. image: {
  14416. source: "./media/characters/varg/front-sfw.svg",
  14417. extra: 1103/1010,
  14418. bottom: 50/1153
  14419. },
  14420. form: "anthro",
  14421. default: true
  14422. },
  14423. backSfw: {
  14424. height: math.unit(5, "meters"),
  14425. weight: math.unit(4250, "lb"),
  14426. name: "Back",
  14427. image: {
  14428. source: "./media/characters/varg/back-sfw.svg",
  14429. extra: 1038/1022,
  14430. bottom: 36/1074
  14431. },
  14432. form: "anthro"
  14433. },
  14434. frontNsfw: {
  14435. height: math.unit(5, "meters"),
  14436. weight: math.unit(4250, "lb"),
  14437. name: "Front (NSFW)",
  14438. image: {
  14439. source: "./media/characters/varg/front-nsfw.svg",
  14440. extra: 1103/1010,
  14441. bottom: 50/1153
  14442. },
  14443. form: "anthro"
  14444. },
  14445. sheath: {
  14446. height: math.unit(3.8, "feet"),
  14447. weight: math.unit(90, "kilograms"),
  14448. name: "Sheath",
  14449. image: {
  14450. source: "./media/characters/varg/sheath.svg"
  14451. },
  14452. form: "anthro"
  14453. },
  14454. dick: {
  14455. height: math.unit(4.6, "feet"),
  14456. weight: math.unit(451, "kilograms"),
  14457. name: "Dick",
  14458. image: {
  14459. source: "./media/characters/varg/dick.svg"
  14460. },
  14461. form: "anthro"
  14462. },
  14463. feralSfw: {
  14464. height: math.unit(5, "meters"),
  14465. weight: math.unit(100000, "lb"),
  14466. name: "Side",
  14467. image: {
  14468. source: "./media/characters/varg/feral-sfw.svg",
  14469. extra: 1065/511,
  14470. bottom: 211/1276
  14471. },
  14472. form: "feral",
  14473. default: true
  14474. },
  14475. feralNsfw: {
  14476. height: math.unit(5, "meters"),
  14477. weight: math.unit(100000, "lb"),
  14478. name: "Side (NSFW)",
  14479. image: {
  14480. source: "./media/characters/varg/feral-nsfw.svg",
  14481. extra: 1065/511,
  14482. bottom: 211/1276
  14483. },
  14484. form: "feral",
  14485. },
  14486. feralSheath: {
  14487. height: math.unit(9.8, "feet"),
  14488. weight: math.unit(2000, "kilograms"),
  14489. name: "Sheath",
  14490. image: {
  14491. source: "./media/characters/varg/sheath.svg"
  14492. },
  14493. form: "feral"
  14494. },
  14495. feralDick: {
  14496. height: math.unit(13.11, "feet"),
  14497. weight: math.unit(10440, "kilograms"),
  14498. name: "Dick",
  14499. image: {
  14500. source: "./media/characters/varg/dick.svg"
  14501. },
  14502. form: "feral"
  14503. },
  14504. },
  14505. [
  14506. {
  14507. name: "Normal",
  14508. height: math.unit(5, "meters"),
  14509. form: "anthro"
  14510. },
  14511. {
  14512. name: "Macro",
  14513. height: math.unit(200, "meters"),
  14514. form: "anthro"
  14515. },
  14516. {
  14517. name: "Megamacro",
  14518. height: math.unit(20, "kilometers"),
  14519. form: "anthro"
  14520. },
  14521. {
  14522. name: "True Size",
  14523. height: math.unit(211, "km"),
  14524. form: "anthro",
  14525. default: true
  14526. },
  14527. {
  14528. name: "Gigamacro",
  14529. height: math.unit(1000, "km"),
  14530. form: "anthro"
  14531. },
  14532. {
  14533. name: "Gigamacro+",
  14534. height: math.unit(8000, "km"),
  14535. form: "anthro"
  14536. },
  14537. {
  14538. name: "Teramacro",
  14539. height: math.unit(1000000, "km"),
  14540. form: "anthro"
  14541. },
  14542. {
  14543. name: "Normal",
  14544. height: math.unit(5, "meters"),
  14545. form: "feral"
  14546. },
  14547. {
  14548. name: "Macro",
  14549. height: math.unit(200, "meters"),
  14550. form: "feral"
  14551. },
  14552. {
  14553. name: "Megamacro",
  14554. height: math.unit(20, "kilometers"),
  14555. form: "feral"
  14556. },
  14557. {
  14558. name: "True Size",
  14559. height: math.unit(211, "km"),
  14560. form: "feral",
  14561. default: true
  14562. },
  14563. {
  14564. name: "Gigamacro",
  14565. height: math.unit(1000, "km"),
  14566. form: "feral"
  14567. },
  14568. {
  14569. name: "Gigamacro+",
  14570. height: math.unit(8000, "km"),
  14571. form: "feral"
  14572. },
  14573. {
  14574. name: "Teramacro",
  14575. height: math.unit(1000000, "km"),
  14576. form: "feral"
  14577. },
  14578. ],
  14579. {
  14580. "anthro": {
  14581. name: "Anthro",
  14582. default: true
  14583. },
  14584. "feral": {
  14585. name: "Feral",
  14586. },
  14587. }
  14588. ))
  14589. characterMakers.push(() => makeCharacter(
  14590. { name: "Dayza", species: ["sergal"], tags: ["anthro"] },
  14591. {
  14592. front: {
  14593. height: math.unit(7 + 7 / 12, "feet"),
  14594. weight: math.unit(267, "lb"),
  14595. name: "Front",
  14596. image: {
  14597. source: "./media/characters/dayza/front.svg",
  14598. extra: 1262 / 1200,
  14599. bottom: 0.035
  14600. }
  14601. },
  14602. side: {
  14603. height: math.unit(7 + 7 / 12, "feet"),
  14604. weight: math.unit(267, "lb"),
  14605. name: "Side",
  14606. image: {
  14607. source: "./media/characters/dayza/side.svg",
  14608. extra: 1295 / 1245,
  14609. bottom: 0.05
  14610. }
  14611. },
  14612. back: {
  14613. height: math.unit(7 + 7 / 12, "feet"),
  14614. weight: math.unit(267, "lb"),
  14615. name: "Back",
  14616. image: {
  14617. source: "./media/characters/dayza/back.svg",
  14618. extra: 1241 / 1170
  14619. }
  14620. },
  14621. },
  14622. [
  14623. {
  14624. name: "Normal",
  14625. height: math.unit(7 + 7 / 12, "feet"),
  14626. default: true
  14627. },
  14628. {
  14629. name: "Macro",
  14630. height: math.unit(155, "feet")
  14631. },
  14632. ]
  14633. ))
  14634. characterMakers.push(() => makeCharacter(
  14635. { name: "Xanthos", species: ["xenomorph"], tags: ["anthro"] },
  14636. {
  14637. front: {
  14638. height: math.unit(6 + 5 / 12, "feet"),
  14639. weight: math.unit(160, "lb"),
  14640. name: "Front",
  14641. image: {
  14642. source: "./media/characters/xanthos/front.svg",
  14643. extra: 1,
  14644. bottom: 0.04
  14645. }
  14646. },
  14647. back: {
  14648. height: math.unit(6 + 5 / 12, "feet"),
  14649. weight: math.unit(160, "lb"),
  14650. name: "Back",
  14651. image: {
  14652. source: "./media/characters/xanthos/back.svg",
  14653. extra: 1,
  14654. bottom: 0.03
  14655. }
  14656. },
  14657. hand: {
  14658. height: math.unit(0.928, "feet"),
  14659. name: "Hand",
  14660. image: {
  14661. source: "./media/characters/xanthos/hand.svg"
  14662. }
  14663. },
  14664. foot: {
  14665. height: math.unit(1.286, "feet"),
  14666. name: "Foot",
  14667. image: {
  14668. source: "./media/characters/xanthos/foot.svg"
  14669. }
  14670. },
  14671. },
  14672. [
  14673. {
  14674. name: "Normal",
  14675. height: math.unit(6 + 5 / 12, "feet"),
  14676. default: true
  14677. },
  14678. {
  14679. name: "Normal+",
  14680. height: math.unit(6, "meters")
  14681. },
  14682. {
  14683. name: "Macro",
  14684. height: math.unit(40, "feet")
  14685. },
  14686. {
  14687. name: "Macro+",
  14688. height: math.unit(200, "meters")
  14689. },
  14690. {
  14691. name: "Megamacro",
  14692. height: math.unit(20, "km")
  14693. },
  14694. {
  14695. name: "Megamacro+",
  14696. height: math.unit(100, "km")
  14697. },
  14698. {
  14699. name: "Gigamacro",
  14700. height: math.unit(200, "megameters")
  14701. },
  14702. {
  14703. name: "Gigamacro+",
  14704. height: math.unit(1.5, "gigameters")
  14705. },
  14706. ]
  14707. ))
  14708. characterMakers.push(() => makeCharacter(
  14709. { name: "Grynn", species: ["charr"], tags: ["anthro"] },
  14710. {
  14711. front: {
  14712. height: math.unit(6 + 3 / 12, "feet"),
  14713. weight: math.unit(215, "lb"),
  14714. name: "Front",
  14715. image: {
  14716. source: "./media/characters/grynn/front.svg",
  14717. extra: 4627 / 4209,
  14718. bottom: 0.047
  14719. }
  14720. },
  14721. },
  14722. [
  14723. {
  14724. name: "Micro",
  14725. height: math.unit(6, "inches")
  14726. },
  14727. {
  14728. name: "Normal",
  14729. height: math.unit(6 + 3 / 12, "feet"),
  14730. default: true
  14731. },
  14732. {
  14733. name: "Big",
  14734. height: math.unit(104, "feet")
  14735. },
  14736. {
  14737. name: "Macro",
  14738. height: math.unit(944, "feet")
  14739. },
  14740. {
  14741. name: "Macro+",
  14742. height: math.unit(9480, "feet")
  14743. },
  14744. {
  14745. name: "Megamacro",
  14746. height: math.unit(78752, "feet")
  14747. },
  14748. {
  14749. name: "Megamacro+",
  14750. height: math.unit(630128, "feet")
  14751. },
  14752. {
  14753. name: "Megamacro++",
  14754. height: math.unit(3150695, "feet")
  14755. },
  14756. ]
  14757. ))
  14758. characterMakers.push(() => makeCharacter(
  14759. { name: "Mocha Aura", species: ["siberian-husky"], tags: ["anthro"] },
  14760. {
  14761. front: {
  14762. height: math.unit(7 + 5 / 12, "feet"),
  14763. weight: math.unit(450, "lb"),
  14764. name: "Front",
  14765. image: {
  14766. source: "./media/characters/mocha-aura/front.svg",
  14767. extra: 1907 / 1817,
  14768. bottom: 0.04
  14769. }
  14770. },
  14771. back: {
  14772. height: math.unit(7 + 5 / 12, "feet"),
  14773. weight: math.unit(450, "lb"),
  14774. name: "Back",
  14775. image: {
  14776. source: "./media/characters/mocha-aura/back.svg",
  14777. extra: 1900 / 1825,
  14778. bottom: 0.045
  14779. }
  14780. },
  14781. },
  14782. [
  14783. {
  14784. name: "Nano",
  14785. height: math.unit(1, "nm")
  14786. },
  14787. {
  14788. name: "Megamicro",
  14789. height: math.unit(1, "mm")
  14790. },
  14791. {
  14792. name: "Micro",
  14793. height: math.unit(3, "inches")
  14794. },
  14795. {
  14796. name: "Normal",
  14797. height: math.unit(7 + 5 / 12, "feet"),
  14798. default: true
  14799. },
  14800. {
  14801. name: "Macro",
  14802. height: math.unit(30, "feet")
  14803. },
  14804. {
  14805. name: "Megamacro",
  14806. height: math.unit(3500, "feet")
  14807. },
  14808. {
  14809. name: "Teramacro",
  14810. height: math.unit(500000, "miles")
  14811. },
  14812. {
  14813. name: "Petamacro",
  14814. height: math.unit(50000000000000000, "parsecs")
  14815. },
  14816. ]
  14817. ))
  14818. characterMakers.push(() => makeCharacter(
  14819. { name: "Ilisha Devya", species: ["alligator", "cobra", "deity"], tags: ["anthro"] },
  14820. {
  14821. front: {
  14822. height: math.unit(6, "feet"),
  14823. weight: math.unit(150, "lb"),
  14824. name: "Front",
  14825. image: {
  14826. source: "./media/characters/ilisha-devya/front.svg",
  14827. extra: 1053/1049,
  14828. bottom: 270/1323
  14829. }
  14830. },
  14831. back: {
  14832. height: math.unit(6, "feet"),
  14833. weight: math.unit(150, "lb"),
  14834. name: "Back",
  14835. image: {
  14836. source: "./media/characters/ilisha-devya/back.svg",
  14837. extra: 1131/1128,
  14838. bottom: 39/1170
  14839. }
  14840. },
  14841. },
  14842. [
  14843. {
  14844. name: "Macro",
  14845. height: math.unit(500, "feet"),
  14846. default: true
  14847. },
  14848. {
  14849. name: "Megamacro",
  14850. height: math.unit(10, "miles")
  14851. },
  14852. {
  14853. name: "Gigamacro",
  14854. height: math.unit(100000, "miles")
  14855. },
  14856. {
  14857. name: "Examacro",
  14858. height: math.unit(1e9, "lightyears")
  14859. },
  14860. {
  14861. name: "Omniversal",
  14862. height: math.unit(1e33, "lightyears")
  14863. },
  14864. {
  14865. name: "Beyond Infinite",
  14866. height: math.unit(1e100, "lightyears")
  14867. },
  14868. ]
  14869. ))
  14870. characterMakers.push(() => makeCharacter(
  14871. { name: "Mira", species: ["dragon"], tags: ["anthro"] },
  14872. {
  14873. Side: {
  14874. height: math.unit(6, "feet"),
  14875. weight: math.unit(150, "lb"),
  14876. name: "Side",
  14877. image: {
  14878. source: "./media/characters/mira/side.svg",
  14879. extra: 900 / 799,
  14880. bottom: 0.02
  14881. }
  14882. },
  14883. },
  14884. [
  14885. {
  14886. name: "Human Size",
  14887. height: math.unit(6, "feet")
  14888. },
  14889. {
  14890. name: "Macro",
  14891. height: math.unit(100, "feet"),
  14892. default: true
  14893. },
  14894. {
  14895. name: "Megamacro",
  14896. height: math.unit(10, "miles")
  14897. },
  14898. {
  14899. name: "Gigamacro",
  14900. height: math.unit(25000, "miles")
  14901. },
  14902. {
  14903. name: "Teramacro",
  14904. height: math.unit(300, "AU")
  14905. },
  14906. {
  14907. name: "Full Size",
  14908. height: math.unit(4.5e10, "lightyears")
  14909. },
  14910. ]
  14911. ))
  14912. characterMakers.push(() => makeCharacter(
  14913. { name: "Holly", species: ["hyena"], tags: ["anthro"] },
  14914. {
  14915. front: {
  14916. height: math.unit(6, "feet"),
  14917. weight: math.unit(150, "lb"),
  14918. name: "Front",
  14919. image: {
  14920. source: "./media/characters/holly/front.svg",
  14921. extra: 639 / 606
  14922. }
  14923. },
  14924. back: {
  14925. height: math.unit(6, "feet"),
  14926. weight: math.unit(150, "lb"),
  14927. name: "Back",
  14928. image: {
  14929. source: "./media/characters/holly/back.svg",
  14930. extra: 623 / 598
  14931. }
  14932. },
  14933. frontWorking: {
  14934. height: math.unit(6, "feet"),
  14935. weight: math.unit(150, "lb"),
  14936. name: "Front (Working)",
  14937. image: {
  14938. source: "./media/characters/holly/front-working.svg",
  14939. extra: 607 / 577,
  14940. bottom: 0.048
  14941. }
  14942. },
  14943. },
  14944. [
  14945. {
  14946. name: "Normal",
  14947. height: math.unit(12 + 3 / 12, "feet"),
  14948. default: true
  14949. },
  14950. ]
  14951. ))
  14952. characterMakers.push(() => makeCharacter(
  14953. { name: "Porter", species: ["bernese-mountain-dog"], tags: ["anthro"] },
  14954. {
  14955. front: {
  14956. height: math.unit(6, "feet"),
  14957. weight: math.unit(150, "lb"),
  14958. name: "Front",
  14959. image: {
  14960. source: "./media/characters/porter/front.svg",
  14961. extra: 1,
  14962. bottom: 0.01
  14963. }
  14964. },
  14965. frontRobes: {
  14966. height: math.unit(6, "feet"),
  14967. weight: math.unit(150, "lb"),
  14968. name: "Front (Robes)",
  14969. image: {
  14970. source: "./media/characters/porter/front-robes.svg",
  14971. extra: 1.01,
  14972. bottom: 0.01
  14973. }
  14974. },
  14975. },
  14976. [
  14977. {
  14978. name: "Normal",
  14979. height: math.unit(11 + 9 / 12, "feet"),
  14980. default: true
  14981. },
  14982. ]
  14983. ))
  14984. characterMakers.push(() => makeCharacter(
  14985. { name: "Lucy", species: ["reshiram"], tags: ["anthro"] },
  14986. {
  14987. legendary: {
  14988. height: math.unit(6, "feet"),
  14989. weight: math.unit(150, "lb"),
  14990. name: "Legendary",
  14991. image: {
  14992. source: "./media/characters/lucy/legendary.svg",
  14993. extra: 1355 / 1100,
  14994. bottom: 0.045
  14995. }
  14996. },
  14997. },
  14998. [
  14999. {
  15000. name: "Legendary",
  15001. height: math.unit(86882 * 2, "miles"),
  15002. default: true
  15003. },
  15004. ]
  15005. ))
  15006. characterMakers.push(() => makeCharacter(
  15007. { name: "Drusilla", species: ["grizzly-bear", "fox"], tags: ["anthro"] },
  15008. {
  15009. front: {
  15010. height: math.unit(6, "feet"),
  15011. weight: math.unit(150, "lb"),
  15012. name: "Front",
  15013. image: {
  15014. source: "./media/characters/drusilla/front.svg",
  15015. extra: 678 / 635,
  15016. bottom: 0.03
  15017. }
  15018. },
  15019. back: {
  15020. height: math.unit(6, "feet"),
  15021. weight: math.unit(150, "lb"),
  15022. name: "Back",
  15023. image: {
  15024. source: "./media/characters/drusilla/back.svg",
  15025. extra: 678 / 635,
  15026. bottom: 0.005
  15027. }
  15028. },
  15029. },
  15030. [
  15031. {
  15032. name: "Macro",
  15033. height: math.unit(100, "feet")
  15034. },
  15035. {
  15036. name: "Canon Height",
  15037. height: math.unit(2000, "feet"),
  15038. default: true
  15039. },
  15040. ]
  15041. ))
  15042. characterMakers.push(() => makeCharacter(
  15043. { name: "Renard Thatch", species: ["fox"], tags: ["anthro"] },
  15044. {
  15045. front: {
  15046. height: math.unit(6, "feet"),
  15047. weight: math.unit(180, "lb"),
  15048. name: "Front",
  15049. image: {
  15050. source: "./media/characters/renard-thatch/front.svg",
  15051. extra: 2411 / 2275,
  15052. bottom: 0.01
  15053. }
  15054. },
  15055. frontPosing: {
  15056. height: math.unit(6, "feet"),
  15057. weight: math.unit(180, "lb"),
  15058. name: "Front (Posing)",
  15059. image: {
  15060. source: "./media/characters/renard-thatch/front-posing.svg",
  15061. extra: 2381 / 2261,
  15062. bottom: 0.01
  15063. }
  15064. },
  15065. back: {
  15066. height: math.unit(6, "feet"),
  15067. weight: math.unit(180, "lb"),
  15068. name: "Back",
  15069. image: {
  15070. source: "./media/characters/renard-thatch/back.svg",
  15071. extra: 2428 / 2288
  15072. }
  15073. },
  15074. },
  15075. [
  15076. {
  15077. name: "Micro",
  15078. height: math.unit(3, "inches")
  15079. },
  15080. {
  15081. name: "Default",
  15082. height: math.unit(6, "feet"),
  15083. default: true
  15084. },
  15085. {
  15086. name: "Macro",
  15087. height: math.unit(75, "feet")
  15088. },
  15089. ]
  15090. ))
  15091. characterMakers.push(() => makeCharacter(
  15092. { name: "Sekvra", species: ["water-monitor"], tags: ["anthro"] },
  15093. {
  15094. front: {
  15095. height: math.unit(1450, "feet"),
  15096. weight: math.unit(1.21e6, "tons"),
  15097. name: "Front",
  15098. image: {
  15099. source: "./media/characters/sekvra/front.svg",
  15100. extra: 1193/1190,
  15101. bottom: 78/1271
  15102. }
  15103. },
  15104. side: {
  15105. height: math.unit(1450, "feet"),
  15106. weight: math.unit(1.21e6, "tons"),
  15107. name: "Side",
  15108. image: {
  15109. source: "./media/characters/sekvra/side.svg",
  15110. extra: 1193/1190,
  15111. bottom: 52/1245
  15112. }
  15113. },
  15114. back: {
  15115. height: math.unit(1450, "feet"),
  15116. weight: math.unit(1.21e6, "tons"),
  15117. name: "Back",
  15118. image: {
  15119. source: "./media/characters/sekvra/back.svg",
  15120. extra: 1219/1216,
  15121. bottom: 21/1240
  15122. }
  15123. },
  15124. frontClothed: {
  15125. height: math.unit(1450, "feet"),
  15126. weight: math.unit(1.21e6, "tons"),
  15127. name: "Front (Clothed)",
  15128. image: {
  15129. source: "./media/characters/sekvra/front-clothed.svg",
  15130. extra: 1192/1189,
  15131. bottom: 79/1271
  15132. }
  15133. },
  15134. },
  15135. [
  15136. {
  15137. name: "Macro",
  15138. height: math.unit(1450, "feet"),
  15139. default: true
  15140. },
  15141. {
  15142. name: "Megamacro",
  15143. height: math.unit(15000, "feet")
  15144. },
  15145. ]
  15146. ))
  15147. characterMakers.push(() => makeCharacter(
  15148. { name: "Carmine", species: ["otter"], tags: ["anthro"] },
  15149. {
  15150. front: {
  15151. height: math.unit(6, "feet"),
  15152. weight: math.unit(150, "lb"),
  15153. name: "Front",
  15154. image: {
  15155. source: "./media/characters/carmine/front.svg",
  15156. extra: 1557/1538,
  15157. bottom: 68/1625
  15158. }
  15159. },
  15160. frontArmor: {
  15161. height: math.unit(6, "feet"),
  15162. weight: math.unit(150, "lb"),
  15163. name: "Front (Armor)",
  15164. image: {
  15165. source: "./media/characters/carmine/front-armor.svg",
  15166. extra: 1549/1530,
  15167. bottom: 82/1631
  15168. }
  15169. },
  15170. mouth: {
  15171. height: math.unit(0.55, "feet"),
  15172. name: "Mouth",
  15173. image: {
  15174. source: "./media/characters/carmine/mouth.svg"
  15175. }
  15176. },
  15177. hand: {
  15178. height: math.unit(1.05, "feet"),
  15179. name: "Hand",
  15180. image: {
  15181. source: "./media/characters/carmine/hand.svg"
  15182. }
  15183. },
  15184. foot: {
  15185. height: math.unit(0.6, "feet"),
  15186. name: "Foot",
  15187. image: {
  15188. source: "./media/characters/carmine/foot.svg"
  15189. }
  15190. },
  15191. },
  15192. [
  15193. {
  15194. name: "Large",
  15195. height: math.unit(1, "mile")
  15196. },
  15197. {
  15198. name: "Huge",
  15199. height: math.unit(40, "miles"),
  15200. default: true
  15201. },
  15202. {
  15203. name: "Colossal",
  15204. height: math.unit(2500, "miles")
  15205. },
  15206. ]
  15207. ))
  15208. characterMakers.push(() => makeCharacter(
  15209. { name: "Elyssia", species: ["banchofossa"], tags: ["anthro"] },
  15210. {
  15211. front: {
  15212. height: math.unit(6, "feet"),
  15213. weight: math.unit(150, "lb"),
  15214. name: "Front",
  15215. image: {
  15216. source: "./media/characters/elyssia/front.svg",
  15217. extra: 2201 / 2035,
  15218. bottom: 0.05
  15219. }
  15220. },
  15221. frontClothed: {
  15222. height: math.unit(6, "feet"),
  15223. weight: math.unit(150, "lb"),
  15224. name: "Front (Clothed)",
  15225. image: {
  15226. source: "./media/characters/elyssia/front-clothed.svg",
  15227. extra: 2201 / 2035,
  15228. bottom: 0.05
  15229. }
  15230. },
  15231. back: {
  15232. height: math.unit(6, "feet"),
  15233. weight: math.unit(150, "lb"),
  15234. name: "Back",
  15235. image: {
  15236. source: "./media/characters/elyssia/back.svg",
  15237. extra: 2201 / 2035,
  15238. bottom: 0.013
  15239. }
  15240. },
  15241. },
  15242. [
  15243. {
  15244. name: "Smaller",
  15245. height: math.unit(150, "feet")
  15246. },
  15247. {
  15248. name: "Standard",
  15249. height: math.unit(1400, "feet"),
  15250. default: true
  15251. },
  15252. {
  15253. name: "Distracted",
  15254. height: math.unit(15000, "feet")
  15255. },
  15256. ]
  15257. ))
  15258. characterMakers.push(() => makeCharacter(
  15259. { name: "Geno Maxwell", species: ["kirin"], tags: ["anthro"] },
  15260. {
  15261. front: {
  15262. height: math.unit(7 + 4/12, "feet"),
  15263. weight: math.unit(690, "lb"),
  15264. name: "Front",
  15265. image: {
  15266. source: "./media/characters/geno-maxwell/front.svg",
  15267. extra: 984/856,
  15268. bottom: 87/1071
  15269. }
  15270. },
  15271. back: {
  15272. height: math.unit(7 + 4/12, "feet"),
  15273. weight: math.unit(690, "lb"),
  15274. name: "Back",
  15275. image: {
  15276. source: "./media/characters/geno-maxwell/back.svg",
  15277. extra: 981/854,
  15278. bottom: 57/1038
  15279. }
  15280. },
  15281. frontCostume: {
  15282. height: math.unit(7 + 4/12, "feet"),
  15283. weight: math.unit(690, "lb"),
  15284. name: "Front (Costume)",
  15285. image: {
  15286. source: "./media/characters/geno-maxwell/front-costume.svg",
  15287. extra: 984/856,
  15288. bottom: 87/1071
  15289. }
  15290. },
  15291. backcostume: {
  15292. height: math.unit(7 + 4/12, "feet"),
  15293. weight: math.unit(690, "lb"),
  15294. name: "Back (Costume)",
  15295. image: {
  15296. source: "./media/characters/geno-maxwell/back-costume.svg",
  15297. extra: 981/854,
  15298. bottom: 57/1038
  15299. }
  15300. },
  15301. },
  15302. [
  15303. {
  15304. name: "Micro",
  15305. height: math.unit(3, "inches")
  15306. },
  15307. {
  15308. name: "Normal",
  15309. height: math.unit(7 + 4 / 12, "feet"),
  15310. default: true
  15311. },
  15312. {
  15313. name: "Macro",
  15314. height: math.unit(220, "feet")
  15315. },
  15316. {
  15317. name: "Megamacro",
  15318. height: math.unit(11, "miles")
  15319. },
  15320. ]
  15321. ))
  15322. characterMakers.push(() => makeCharacter(
  15323. { name: "Regena Maxwell", species: ["kirin"], tags: ["anthro"] },
  15324. {
  15325. front: {
  15326. height: math.unit(7 + 4/12, "feet"),
  15327. weight: math.unit(750, "lb"),
  15328. name: "Front",
  15329. image: {
  15330. source: "./media/characters/regena-maxwell/front.svg",
  15331. extra: 984/856,
  15332. bottom: 87/1071
  15333. }
  15334. },
  15335. back: {
  15336. height: math.unit(7 + 4/12, "feet"),
  15337. weight: math.unit(750, "lb"),
  15338. name: "Back",
  15339. image: {
  15340. source: "./media/characters/regena-maxwell/back.svg",
  15341. extra: 981/854,
  15342. bottom: 57/1038
  15343. }
  15344. },
  15345. frontCostume: {
  15346. height: math.unit(7 + 4/12, "feet"),
  15347. weight: math.unit(750, "lb"),
  15348. name: "Front (Costume)",
  15349. image: {
  15350. source: "./media/characters/regena-maxwell/front-costume.svg",
  15351. extra: 984/856,
  15352. bottom: 87/1071
  15353. }
  15354. },
  15355. backcostume: {
  15356. height: math.unit(7 + 4/12, "feet"),
  15357. weight: math.unit(750, "lb"),
  15358. name: "Back (Costume)",
  15359. image: {
  15360. source: "./media/characters/regena-maxwell/back-costume.svg",
  15361. extra: 981/854,
  15362. bottom: 57/1038
  15363. }
  15364. },
  15365. },
  15366. [
  15367. {
  15368. name: "Normal",
  15369. height: math.unit(7 + 4 / 12, "feet"),
  15370. default: true
  15371. },
  15372. {
  15373. name: "Macro",
  15374. height: math.unit(220, "feet")
  15375. },
  15376. {
  15377. name: "Megamacro",
  15378. height: math.unit(11, "miles")
  15379. },
  15380. ]
  15381. ))
  15382. characterMakers.push(() => makeCharacter(
  15383. { name: "XGlidingDragonX", species: ["arcanine", "dragon", "phoenix"], tags: ["anthro"] },
  15384. {
  15385. front: {
  15386. height: math.unit(6, "feet"),
  15387. weight: math.unit(150, "lb"),
  15388. name: "Front",
  15389. image: {
  15390. source: "./media/characters/x-gliding-dragon-x/front.svg",
  15391. extra: 860 / 690,
  15392. bottom: 0.03
  15393. }
  15394. },
  15395. },
  15396. [
  15397. {
  15398. name: "Normal",
  15399. height: math.unit(1.7, "meters"),
  15400. default: true
  15401. },
  15402. ]
  15403. ))
  15404. characterMakers.push(() => makeCharacter(
  15405. { name: "Quilly", species: ["quilava"], tags: ["anthro"] },
  15406. {
  15407. front: {
  15408. height: math.unit(6, "feet"),
  15409. weight: math.unit(150, "lb"),
  15410. name: "Front",
  15411. image: {
  15412. source: "./media/characters/quilly/front.svg",
  15413. extra: 890 / 776
  15414. }
  15415. },
  15416. },
  15417. [
  15418. {
  15419. name: "Gigamacro",
  15420. height: math.unit(404090, "miles"),
  15421. default: true
  15422. },
  15423. ]
  15424. ))
  15425. characterMakers.push(() => makeCharacter(
  15426. { name: "Tempest", species: ["lugia"], tags: ["anthro"] },
  15427. {
  15428. front: {
  15429. height: math.unit(7 + 8 / 12, "feet"),
  15430. weight: math.unit(350, "lb"),
  15431. name: "Front",
  15432. image: {
  15433. source: "./media/characters/tempest/front.svg",
  15434. extra: 1175 / 1086,
  15435. bottom: 0.02
  15436. }
  15437. },
  15438. },
  15439. [
  15440. {
  15441. name: "Normal",
  15442. height: math.unit(7 + 8 / 12, "feet"),
  15443. default: true
  15444. },
  15445. ]
  15446. ))
  15447. characterMakers.push(() => makeCharacter(
  15448. { name: "Rodger", species: ["mouse"], tags: ["anthro"] },
  15449. {
  15450. side: {
  15451. height: math.unit(4 + 5 / 12, "feet"),
  15452. weight: math.unit(80, "lb"),
  15453. name: "Side",
  15454. image: {
  15455. source: "./media/characters/rodger/side.svg",
  15456. extra: 1235 / 1118
  15457. }
  15458. },
  15459. },
  15460. [
  15461. {
  15462. name: "Micro",
  15463. height: math.unit(1, "inch")
  15464. },
  15465. {
  15466. name: "Normal",
  15467. height: math.unit(4 + 5 / 12, "feet"),
  15468. default: true
  15469. },
  15470. {
  15471. name: "Macro",
  15472. height: math.unit(120, "feet")
  15473. },
  15474. ]
  15475. ))
  15476. characterMakers.push(() => makeCharacter(
  15477. { name: "Danyel", species: ["dragon"], tags: ["anthro"] },
  15478. {
  15479. front: {
  15480. height: math.unit(6, "feet"),
  15481. weight: math.unit(150, "lb"),
  15482. name: "Front",
  15483. image: {
  15484. source: "./media/characters/danyel/front.svg",
  15485. extra: 1185 / 1123,
  15486. bottom: 0.05
  15487. }
  15488. },
  15489. },
  15490. [
  15491. {
  15492. name: "Shrunken",
  15493. height: math.unit(0.5, "mm")
  15494. },
  15495. {
  15496. name: "Micro",
  15497. height: math.unit(1, "mm"),
  15498. default: true
  15499. },
  15500. {
  15501. name: "Upsized",
  15502. height: math.unit(5 + 5 / 12, "feet")
  15503. },
  15504. ]
  15505. ))
  15506. characterMakers.push(() => makeCharacter(
  15507. { name: "Vivian Bijoux", species: ["seviper"], tags: ["anthro"] },
  15508. {
  15509. front: {
  15510. height: math.unit(5 + 6 / 12, "feet"),
  15511. weight: math.unit(200, "lb"),
  15512. name: "Front",
  15513. image: {
  15514. source: "./media/characters/vivian-bijoux/front.svg",
  15515. extra: 1217/1209,
  15516. bottom: 76/1293
  15517. }
  15518. },
  15519. back: {
  15520. height: math.unit(5 + 6 / 12, "feet"),
  15521. weight: math.unit(200, "lb"),
  15522. name: "Back",
  15523. image: {
  15524. source: "./media/characters/vivian-bijoux/back.svg",
  15525. extra: 1214/1208,
  15526. bottom: 51/1265
  15527. }
  15528. },
  15529. dressed: {
  15530. height: math.unit(5 + 6 / 12, "feet"),
  15531. weight: math.unit(200, "lb"),
  15532. name: "Dressed",
  15533. image: {
  15534. source: "./media/characters/vivian-bijoux/dressed.svg",
  15535. extra: 1217/1209,
  15536. bottom: 76/1293
  15537. }
  15538. },
  15539. },
  15540. [
  15541. {
  15542. name: "Normal",
  15543. height: math.unit(5 + 6 / 12, "feet"),
  15544. default: true
  15545. },
  15546. {
  15547. name: "Bad Dream",
  15548. height: math.unit(500, "feet")
  15549. },
  15550. {
  15551. name: "Nightmare",
  15552. height: math.unit(500, "miles")
  15553. },
  15554. ]
  15555. ))
  15556. characterMakers.push(() => makeCharacter(
  15557. { name: "Zeta", species: ["bear", "otter"], tags: ["anthro"] },
  15558. {
  15559. front: {
  15560. height: math.unit(6 + 1 / 12, "feet"),
  15561. weight: math.unit(260, "lb"),
  15562. name: "Front",
  15563. image: {
  15564. source: "./media/characters/zeta/front.svg",
  15565. extra: 1968 / 1889,
  15566. bottom: 0.06
  15567. }
  15568. },
  15569. back: {
  15570. height: math.unit(6 + 1 / 12, "feet"),
  15571. weight: math.unit(260, "lb"),
  15572. name: "Back",
  15573. image: {
  15574. source: "./media/characters/zeta/back.svg",
  15575. extra: 1944 / 1858,
  15576. bottom: 0.03
  15577. }
  15578. },
  15579. hand: {
  15580. height: math.unit(1.112, "feet"),
  15581. name: "Hand",
  15582. image: {
  15583. source: "./media/characters/zeta/hand.svg"
  15584. }
  15585. },
  15586. foot: {
  15587. height: math.unit(1.48, "feet"),
  15588. name: "Foot",
  15589. image: {
  15590. source: "./media/characters/zeta/foot.svg"
  15591. }
  15592. },
  15593. },
  15594. [
  15595. {
  15596. name: "Micro",
  15597. height: math.unit(6, "inches")
  15598. },
  15599. {
  15600. name: "Normal",
  15601. height: math.unit(6 + 1 / 12, "feet"),
  15602. default: true
  15603. },
  15604. {
  15605. name: "Macro",
  15606. height: math.unit(20, "feet")
  15607. },
  15608. ]
  15609. ))
  15610. characterMakers.push(() => makeCharacter(
  15611. { name: "Jamie Larsen", species: ["rabbit"], tags: ["anthro"] },
  15612. {
  15613. front: {
  15614. height: math.unit(6, "feet"),
  15615. weight: math.unit(150, "lb"),
  15616. name: "Front",
  15617. image: {
  15618. source: "./media/characters/jamie-larsen/front.svg",
  15619. extra: 962 / 933,
  15620. bottom: 0.02
  15621. }
  15622. },
  15623. back: {
  15624. height: math.unit(6, "feet"),
  15625. weight: math.unit(150, "lb"),
  15626. name: "Back",
  15627. image: {
  15628. source: "./media/characters/jamie-larsen/back.svg",
  15629. extra: 997 / 946
  15630. }
  15631. },
  15632. },
  15633. [
  15634. {
  15635. name: "Macro",
  15636. height: math.unit(28 + 7 / 12, "feet"),
  15637. default: true
  15638. },
  15639. {
  15640. name: "Macro+",
  15641. height: math.unit(180, "feet")
  15642. },
  15643. {
  15644. name: "Megamacro",
  15645. height: math.unit(10, "miles")
  15646. },
  15647. {
  15648. name: "Gigamacro",
  15649. height: math.unit(200000, "miles")
  15650. },
  15651. ]
  15652. ))
  15653. characterMakers.push(() => makeCharacter(
  15654. { name: "Vance", species: ["flying-fox"], tags: ["anthro"] },
  15655. {
  15656. front: {
  15657. height: math.unit(6, "feet"),
  15658. weight: math.unit(120, "lb"),
  15659. name: "Front",
  15660. image: {
  15661. source: "./media/characters/vance/front.svg",
  15662. extra: 1980 / 1890,
  15663. bottom: 0.09
  15664. }
  15665. },
  15666. back: {
  15667. height: math.unit(6, "feet"),
  15668. weight: math.unit(120, "lb"),
  15669. name: "Back",
  15670. image: {
  15671. source: "./media/characters/vance/back.svg",
  15672. extra: 2081 / 1994,
  15673. bottom: 0.014
  15674. }
  15675. },
  15676. hand: {
  15677. height: math.unit(0.88, "feet"),
  15678. name: "Hand",
  15679. image: {
  15680. source: "./media/characters/vance/hand.svg"
  15681. }
  15682. },
  15683. foot: {
  15684. height: math.unit(0.64, "feet"),
  15685. name: "Foot",
  15686. image: {
  15687. source: "./media/characters/vance/foot.svg"
  15688. }
  15689. },
  15690. },
  15691. [
  15692. {
  15693. name: "Small",
  15694. height: math.unit(90, "feet"),
  15695. default: true
  15696. },
  15697. {
  15698. name: "Macro",
  15699. height: math.unit(100, "meters")
  15700. },
  15701. {
  15702. name: "Megamacro",
  15703. height: math.unit(15, "miles")
  15704. },
  15705. ]
  15706. ))
  15707. characterMakers.push(() => makeCharacter(
  15708. { name: "Xochitl", species: ["jaguar"], tags: ["anthro"] },
  15709. {
  15710. front: {
  15711. height: math.unit(6, "feet"),
  15712. weight: math.unit(180, "lb"),
  15713. name: "Front",
  15714. image: {
  15715. source: "./media/characters/xochitl/front.svg",
  15716. extra: 2297 / 2261,
  15717. bottom: 0.065
  15718. }
  15719. },
  15720. back: {
  15721. height: math.unit(6, "feet"),
  15722. weight: math.unit(180, "lb"),
  15723. name: "Back",
  15724. image: {
  15725. source: "./media/characters/xochitl/back.svg",
  15726. extra: 2386 / 2354,
  15727. bottom: 0.01
  15728. }
  15729. },
  15730. foot: {
  15731. height: math.unit(6 / 5 * 1.15, "feet"),
  15732. weight: math.unit(150, "lb"),
  15733. name: "Foot",
  15734. image: {
  15735. source: "./media/characters/xochitl/foot.svg"
  15736. }
  15737. },
  15738. },
  15739. [
  15740. {
  15741. name: "Macro",
  15742. height: math.unit(80, "feet")
  15743. },
  15744. {
  15745. name: "Macro+",
  15746. height: math.unit(400, "feet"),
  15747. default: true
  15748. },
  15749. {
  15750. name: "Gigamacro",
  15751. height: math.unit(80000, "miles")
  15752. },
  15753. {
  15754. name: "Gigamacro+",
  15755. height: math.unit(400000, "miles")
  15756. },
  15757. {
  15758. name: "Teramacro",
  15759. height: math.unit(300, "AU")
  15760. },
  15761. ]
  15762. ))
  15763. characterMakers.push(() => makeCharacter(
  15764. { name: "Vincent", species: ["egyptian-vulture"], tags: ["anthro"] },
  15765. {
  15766. front: {
  15767. height: math.unit(6, "feet"),
  15768. weight: math.unit(150, "lb"),
  15769. name: "Front",
  15770. image: {
  15771. source: "./media/characters/vincent/front.svg",
  15772. extra: 1130 / 1080,
  15773. bottom: 0.055
  15774. }
  15775. },
  15776. beak: {
  15777. height: math.unit(6 * 0.1, "feet"),
  15778. name: "Beak",
  15779. image: {
  15780. source: "./media/characters/vincent/beak.svg"
  15781. }
  15782. },
  15783. hand: {
  15784. height: math.unit(6 * 0.85, "feet"),
  15785. weight: math.unit(150, "lb"),
  15786. name: "Hand",
  15787. image: {
  15788. source: "./media/characters/vincent/hand.svg"
  15789. }
  15790. },
  15791. foot: {
  15792. height: math.unit(6 * 0.19, "feet"),
  15793. weight: math.unit(150, "lb"),
  15794. name: "Foot",
  15795. image: {
  15796. source: "./media/characters/vincent/foot.svg"
  15797. }
  15798. },
  15799. },
  15800. [
  15801. {
  15802. name: "Base",
  15803. height: math.unit(6 + 5 / 12, "feet"),
  15804. default: true
  15805. },
  15806. {
  15807. name: "Macro",
  15808. height: math.unit(300, "feet")
  15809. },
  15810. {
  15811. name: "Megamacro",
  15812. height: math.unit(2, "miles")
  15813. },
  15814. {
  15815. name: "Gigamacro",
  15816. height: math.unit(1000, "miles")
  15817. },
  15818. ]
  15819. ))
  15820. characterMakers.push(() => makeCharacter(
  15821. { name: "Coatl", species: ["dragon"], tags: ["anthro"] },
  15822. {
  15823. front: {
  15824. height: math.unit(2, "meters"),
  15825. weight: math.unit(500, "kg"),
  15826. name: "Front",
  15827. image: {
  15828. source: "./media/characters/coatl/front.svg",
  15829. extra: 3948 / 3500,
  15830. bottom: 0.082
  15831. }
  15832. },
  15833. },
  15834. [
  15835. {
  15836. name: "Normal",
  15837. height: math.unit(4, "meters")
  15838. },
  15839. {
  15840. name: "Macro",
  15841. height: math.unit(100, "meters"),
  15842. default: true
  15843. },
  15844. {
  15845. name: "Macro+",
  15846. height: math.unit(300, "meters")
  15847. },
  15848. {
  15849. name: "Megamacro",
  15850. height: math.unit(3, "gigameters")
  15851. },
  15852. {
  15853. name: "Megamacro+",
  15854. height: math.unit(300, "terameters")
  15855. },
  15856. {
  15857. name: "Megamacro++",
  15858. height: math.unit(3, "lightyears")
  15859. },
  15860. ]
  15861. ))
  15862. characterMakers.push(() => makeCharacter(
  15863. { name: "Shiroryu", species: ["dragon", "deity"], tags: ["anthro"] },
  15864. {
  15865. front: {
  15866. height: math.unit(6, "feet"),
  15867. weight: math.unit(50, "kg"),
  15868. name: "front",
  15869. image: {
  15870. source: "./media/characters/shiroryu/front.svg",
  15871. extra: 1990 / 1935
  15872. }
  15873. },
  15874. },
  15875. [
  15876. {
  15877. name: "Mortal Mingling",
  15878. height: math.unit(3, "meters")
  15879. },
  15880. {
  15881. name: "Kaiju-ish",
  15882. height: math.unit(250, "meters")
  15883. },
  15884. {
  15885. name: "Somewhat Godly",
  15886. height: math.unit(400, "km"),
  15887. default: true
  15888. },
  15889. {
  15890. name: "Planetary",
  15891. height: math.unit(300, "megameters")
  15892. },
  15893. {
  15894. name: "Galaxy-dwarfing",
  15895. height: math.unit(450, "kiloparsecs")
  15896. },
  15897. {
  15898. name: "Universe Eater",
  15899. height: math.unit(150, "gigaparsecs")
  15900. },
  15901. {
  15902. name: "Almost Immeasurable",
  15903. height: math.unit(1.3e266, "yottaparsecs")
  15904. },
  15905. ]
  15906. ))
  15907. characterMakers.push(() => makeCharacter(
  15908. { name: "Umeko", species: ["eastern-dragon"], tags: ["anthro"] },
  15909. {
  15910. front: {
  15911. height: math.unit(6, "feet"),
  15912. weight: math.unit(150, "lb"),
  15913. name: "Front",
  15914. image: {
  15915. source: "./media/characters/umeko/front.svg",
  15916. extra: 1,
  15917. bottom: 0.019
  15918. }
  15919. },
  15920. frontArmored: {
  15921. height: math.unit(6, "feet"),
  15922. weight: math.unit(150, "lb"),
  15923. name: "Front (Armored)",
  15924. image: {
  15925. source: "./media/characters/umeko/front-armored.svg",
  15926. extra: 1,
  15927. bottom: 0.021
  15928. }
  15929. },
  15930. },
  15931. [
  15932. {
  15933. name: "Macro",
  15934. height: math.unit(220, "feet"),
  15935. default: true
  15936. },
  15937. {
  15938. name: "Guardian Dragon",
  15939. height: math.unit(50, "miles")
  15940. },
  15941. {
  15942. name: "Cosmic",
  15943. height: math.unit(800000, "miles")
  15944. },
  15945. ]
  15946. ))
  15947. characterMakers.push(() => makeCharacter(
  15948. { name: "Cassidy", species: ["leopard-seal"], tags: ["anthro"] },
  15949. {
  15950. front: {
  15951. height: math.unit(6, "feet"),
  15952. weight: math.unit(150, "lb"),
  15953. name: "Front",
  15954. image: {
  15955. source: "./media/characters/cassidy/front.svg",
  15956. extra: 810/808,
  15957. bottom: 41/851
  15958. }
  15959. },
  15960. },
  15961. [
  15962. {
  15963. name: "Canon Height",
  15964. height: math.unit(120, "feet"),
  15965. default: true
  15966. },
  15967. {
  15968. name: "Macro+",
  15969. height: math.unit(400, "feet")
  15970. },
  15971. {
  15972. name: "Macro++",
  15973. height: math.unit(4000, "feet")
  15974. },
  15975. {
  15976. name: "Megamacro",
  15977. height: math.unit(3, "miles")
  15978. },
  15979. ]
  15980. ))
  15981. characterMakers.push(() => makeCharacter(
  15982. { name: "Isaac", species: ["moose"], tags: ["anthro"] },
  15983. {
  15984. front: {
  15985. height: math.unit(6, "feet"),
  15986. weight: math.unit(150, "lb"),
  15987. name: "Front",
  15988. image: {
  15989. source: "./media/characters/isaac/front.svg",
  15990. extra: 896 / 815,
  15991. bottom: 0.11
  15992. }
  15993. },
  15994. },
  15995. [
  15996. {
  15997. name: "Human Size",
  15998. height: math.unit(8, "feet"),
  15999. default: true
  16000. },
  16001. {
  16002. name: "Macro",
  16003. height: math.unit(400, "feet")
  16004. },
  16005. {
  16006. name: "Megamacro",
  16007. height: math.unit(50, "miles")
  16008. },
  16009. {
  16010. name: "Canon Height",
  16011. height: math.unit(200, "AU")
  16012. },
  16013. ]
  16014. ))
  16015. characterMakers.push(() => makeCharacter(
  16016. { name: "Sleekit", species: ["rat"], tags: ["anthro"] },
  16017. {
  16018. front: {
  16019. height: math.unit(6, "feet"),
  16020. weight: math.unit(72, "kg"),
  16021. name: "Front",
  16022. image: {
  16023. source: "./media/characters/sleekit/front.svg",
  16024. extra: 4693 / 4487,
  16025. bottom: 0.012
  16026. }
  16027. },
  16028. },
  16029. [
  16030. {
  16031. name: "Minimum Height",
  16032. height: math.unit(10, "meters")
  16033. },
  16034. {
  16035. name: "Smaller",
  16036. height: math.unit(25, "meters")
  16037. },
  16038. {
  16039. name: "Larger",
  16040. height: math.unit(38, "meters"),
  16041. default: true
  16042. },
  16043. {
  16044. name: "Maximum height",
  16045. height: math.unit(100, "meters")
  16046. },
  16047. ]
  16048. ))
  16049. characterMakers.push(() => makeCharacter(
  16050. { name: "Nillia", species: ["caracal"], tags: ["anthro"] },
  16051. {
  16052. front: {
  16053. height: math.unit(6, "feet"),
  16054. weight: math.unit(150, "lb"),
  16055. name: "Front",
  16056. image: {
  16057. source: "./media/characters/nillia/front.svg",
  16058. extra: 719/665,
  16059. bottom: 6/725
  16060. }
  16061. },
  16062. back: {
  16063. height: math.unit(6, "feet"),
  16064. weight: math.unit(150, "lb"),
  16065. name: "Back",
  16066. image: {
  16067. source: "./media/characters/nillia/back.svg",
  16068. extra: 705/651,
  16069. bottom: 5/710
  16070. }
  16071. },
  16072. },
  16073. [
  16074. {
  16075. name: "Canon Height",
  16076. height: math.unit(489, "feet"),
  16077. default: true
  16078. }
  16079. ]
  16080. ))
  16081. characterMakers.push(() => makeCharacter(
  16082. { name: "Mesmyriza", species: ["shark", "dragon", "robot", "deity"], tags: ["anthro"] },
  16083. {
  16084. front: {
  16085. height: math.unit(6, "feet"),
  16086. weight: math.unit(150, "lb"),
  16087. name: "Front",
  16088. image: {
  16089. source: "./media/characters/mesmyriza/front.svg",
  16090. extra: 1541/1291,
  16091. bottom: 87/1628
  16092. }
  16093. },
  16094. foot: {
  16095. height: math.unit(6 / (250 / 35), "feet"),
  16096. name: "Foot",
  16097. image: {
  16098. source: "./media/characters/mesmyriza/foot.svg"
  16099. }
  16100. },
  16101. },
  16102. [
  16103. {
  16104. name: "Macro",
  16105. height: math.unit(457, "meters"),
  16106. default: true
  16107. },
  16108. {
  16109. name: "Megamacro",
  16110. height: math.unit(8, "megameters")
  16111. },
  16112. ]
  16113. ))
  16114. characterMakers.push(() => makeCharacter(
  16115. { name: "Saudade", species: ["goat"], tags: ["anthro"] },
  16116. {
  16117. front: {
  16118. height: math.unit(6, "feet"),
  16119. weight: math.unit(250, "lb"),
  16120. name: "Front",
  16121. image: {
  16122. source: "./media/characters/saudade/front.svg",
  16123. extra: 1172 / 1139,
  16124. bottom: 0.035
  16125. }
  16126. },
  16127. },
  16128. [
  16129. {
  16130. name: "Micro",
  16131. height: math.unit(3, "inches")
  16132. },
  16133. {
  16134. name: "Normal",
  16135. height: math.unit(6, "feet"),
  16136. default: true
  16137. },
  16138. {
  16139. name: "Macro",
  16140. height: math.unit(50, "feet")
  16141. },
  16142. {
  16143. name: "Megamacro",
  16144. height: math.unit(2800, "feet")
  16145. },
  16146. ]
  16147. ))
  16148. characterMakers.push(() => makeCharacter(
  16149. { name: "Keireer", species: ["keynain"], tags: ["anthro"] },
  16150. {
  16151. front: {
  16152. height: math.unit(5 + 4 / 12, "feet"),
  16153. weight: math.unit(100, "lb"),
  16154. name: "Front",
  16155. image: {
  16156. source: "./media/characters/keireer/front.svg",
  16157. extra: 716 / 666,
  16158. bottom: 0.05
  16159. }
  16160. },
  16161. },
  16162. [
  16163. {
  16164. name: "Normal",
  16165. height: math.unit(5 + 4 / 12, "feet"),
  16166. default: true
  16167. },
  16168. ]
  16169. ))
  16170. characterMakers.push(() => makeCharacter(
  16171. { name: "Mirja", species: ["dragon"], tags: ["anthro"] },
  16172. {
  16173. front: {
  16174. height: math.unit(5.5, "feet"),
  16175. weight: math.unit(90, "kg"),
  16176. name: "Front",
  16177. image: {
  16178. source: "./media/characters/mirja/front.svg",
  16179. extra: 1452/1262,
  16180. bottom: 67/1519
  16181. }
  16182. },
  16183. frontDressed: {
  16184. height: math.unit(5.5, "feet"),
  16185. weight: math.unit(90, "lb"),
  16186. name: "Front (Dressed)",
  16187. image: {
  16188. source: "./media/characters/mirja/dressed.svg",
  16189. extra: 1452/1262,
  16190. bottom: 67/1519
  16191. }
  16192. },
  16193. back: {
  16194. height: math.unit(6, "feet"),
  16195. weight: math.unit(90, "lb"),
  16196. name: "Back",
  16197. image: {
  16198. source: "./media/characters/mirja/back.svg",
  16199. extra: 1892/1795,
  16200. bottom: 48/1940
  16201. }
  16202. },
  16203. maw: {
  16204. height: math.unit(1.312, "feet"),
  16205. name: "Maw",
  16206. image: {
  16207. source: "./media/characters/mirja/maw.svg"
  16208. }
  16209. },
  16210. paw: {
  16211. height: math.unit(1.15, "feet"),
  16212. name: "Paw",
  16213. image: {
  16214. source: "./media/characters/mirja/paw.svg"
  16215. }
  16216. },
  16217. },
  16218. [
  16219. {
  16220. name: "\"Incognito\"",
  16221. height: math.unit(3, "meters")
  16222. },
  16223. {
  16224. name: "Strolling Size",
  16225. height: math.unit(15, "km")
  16226. },
  16227. {
  16228. name: "Larger Strolling Size",
  16229. height: math.unit(400, "km")
  16230. },
  16231. {
  16232. name: "Preferred Size",
  16233. height: math.unit(5000, "km"),
  16234. default: true
  16235. },
  16236. {
  16237. name: "True Size",
  16238. height: math.unit(30657809462086840000000000000000, "parsecs"),
  16239. },
  16240. ]
  16241. ))
  16242. characterMakers.push(() => makeCharacter(
  16243. { name: "Nightraver", species: ["dragon"], tags: ["anthro"] },
  16244. {
  16245. front: {
  16246. height: math.unit(15, "feet"),
  16247. weight: math.unit(880, "kg"),
  16248. name: "Front",
  16249. image: {
  16250. source: "./media/characters/nightraver/front.svg",
  16251. extra: 2444 / 2160,
  16252. bottom: 0.027
  16253. }
  16254. },
  16255. back: {
  16256. height: math.unit(15, "feet"),
  16257. weight: math.unit(880, "kg"),
  16258. name: "Back",
  16259. image: {
  16260. source: "./media/characters/nightraver/back.svg",
  16261. extra: 2309 / 2180,
  16262. bottom: 0.005
  16263. }
  16264. },
  16265. sole: {
  16266. height: math.unit(2.878, "feet"),
  16267. name: "Sole",
  16268. image: {
  16269. source: "./media/characters/nightraver/sole.svg"
  16270. }
  16271. },
  16272. foot: {
  16273. height: math.unit(2.285, "feet"),
  16274. name: "Foot",
  16275. image: {
  16276. source: "./media/characters/nightraver/foot.svg"
  16277. }
  16278. },
  16279. maw: {
  16280. height: math.unit(2.67, "feet"),
  16281. name: "Maw",
  16282. image: {
  16283. source: "./media/characters/nightraver/maw.svg"
  16284. }
  16285. },
  16286. },
  16287. [
  16288. {
  16289. name: "Micro",
  16290. height: math.unit(1, "cm")
  16291. },
  16292. {
  16293. name: "Normal",
  16294. height: math.unit(15, "feet"),
  16295. default: true
  16296. },
  16297. {
  16298. name: "Macro",
  16299. height: math.unit(300, "feet")
  16300. },
  16301. {
  16302. name: "Megamacro",
  16303. height: math.unit(300, "miles")
  16304. },
  16305. {
  16306. name: "Gigamacro",
  16307. height: math.unit(10000, "miles")
  16308. },
  16309. ]
  16310. ))
  16311. characterMakers.push(() => makeCharacter(
  16312. { name: "Arc", species: ["raptor"], tags: ["anthro"] },
  16313. {
  16314. side: {
  16315. height: math.unit(2, "inches"),
  16316. weight: math.unit(5, "grams"),
  16317. name: "Side",
  16318. image: {
  16319. source: "./media/characters/arc/side.svg"
  16320. }
  16321. },
  16322. },
  16323. [
  16324. {
  16325. name: "Micro",
  16326. height: math.unit(2, "inches"),
  16327. default: true
  16328. },
  16329. ]
  16330. ))
  16331. characterMakers.push(() => makeCharacter(
  16332. { name: "Nebula Shahar", species: ["lucario"], tags: ["anthro"] },
  16333. {
  16334. front: {
  16335. height: math.unit(1.1938, "meters"),
  16336. weight: math.unit(54, "kg"),
  16337. name: "Front",
  16338. image: {
  16339. source: "./media/characters/nebula-shahar/front.svg",
  16340. extra: 1642 / 1436,
  16341. bottom: 0.06
  16342. }
  16343. },
  16344. },
  16345. [
  16346. {
  16347. name: "Megamicro",
  16348. height: math.unit(0.3, "mm")
  16349. },
  16350. {
  16351. name: "Micro",
  16352. height: math.unit(3, "cm")
  16353. },
  16354. {
  16355. name: "Normal",
  16356. height: math.unit(138, "cm"),
  16357. default: true
  16358. },
  16359. {
  16360. name: "Macro",
  16361. height: math.unit(30, "m")
  16362. },
  16363. ]
  16364. ))
  16365. characterMakers.push(() => makeCharacter(
  16366. { name: "Shayla", species: ["otter"], tags: ["anthro"] },
  16367. {
  16368. front: {
  16369. height: math.unit(5.24, "feet"),
  16370. weight: math.unit(150, "lb"),
  16371. name: "Front",
  16372. image: {
  16373. source: "./media/characters/shayla/front.svg",
  16374. extra: 1512 / 1414,
  16375. bottom: 0.01
  16376. }
  16377. },
  16378. back: {
  16379. height: math.unit(5.24, "feet"),
  16380. weight: math.unit(150, "lb"),
  16381. name: "Back",
  16382. image: {
  16383. source: "./media/characters/shayla/back.svg",
  16384. extra: 1512 / 1414
  16385. }
  16386. },
  16387. hand: {
  16388. height: math.unit(0.7781496062992126, "feet"),
  16389. name: "Hand",
  16390. image: {
  16391. source: "./media/characters/shayla/hand.svg"
  16392. }
  16393. },
  16394. foot: {
  16395. height: math.unit(1.4206036745406823, "feet"),
  16396. name: "Foot",
  16397. image: {
  16398. source: "./media/characters/shayla/foot.svg"
  16399. }
  16400. },
  16401. },
  16402. [
  16403. {
  16404. name: "Micro",
  16405. height: math.unit(0.32, "feet")
  16406. },
  16407. {
  16408. name: "Normal",
  16409. height: math.unit(5.24, "feet"),
  16410. default: true
  16411. },
  16412. {
  16413. name: "Macro",
  16414. height: math.unit(492.12, "feet")
  16415. },
  16416. {
  16417. name: "Megamacro",
  16418. height: math.unit(186.41, "miles")
  16419. },
  16420. ]
  16421. ))
  16422. characterMakers.push(() => makeCharacter(
  16423. { name: "Pia Jr.", species: ["ziralkia"], tags: ["anthro"] },
  16424. {
  16425. front: {
  16426. height: math.unit(2.2, "m"),
  16427. weight: math.unit(120, "kg"),
  16428. name: "Front",
  16429. image: {
  16430. source: "./media/characters/pia-jr/front.svg",
  16431. extra: 1000 / 970,
  16432. bottom: 0.035
  16433. }
  16434. },
  16435. hand: {
  16436. height: math.unit(0.759 * 7.21 / 6, "feet"),
  16437. name: "Hand",
  16438. image: {
  16439. source: "./media/characters/pia-jr/hand.svg"
  16440. }
  16441. },
  16442. paw: {
  16443. height: math.unit(1.185 * 7.21 / 6, "feet"),
  16444. name: "Paw",
  16445. image: {
  16446. source: "./media/characters/pia-jr/paw.svg"
  16447. }
  16448. },
  16449. },
  16450. [
  16451. {
  16452. name: "Micro",
  16453. height: math.unit(1.2, "cm")
  16454. },
  16455. {
  16456. name: "Normal",
  16457. height: math.unit(2.2, "m"),
  16458. default: true
  16459. },
  16460. {
  16461. name: "Macro",
  16462. height: math.unit(180, "m")
  16463. },
  16464. {
  16465. name: "Megamacro",
  16466. height: math.unit(420, "km")
  16467. },
  16468. ]
  16469. ))
  16470. characterMakers.push(() => makeCharacter(
  16471. { name: "Pia Sr.", species: ["ziralkia"], tags: ["anthro"] },
  16472. {
  16473. front: {
  16474. height: math.unit(2, "m"),
  16475. weight: math.unit(115, "kg"),
  16476. name: "Front",
  16477. image: {
  16478. source: "./media/characters/pia-sr/front.svg",
  16479. extra: 760 / 730,
  16480. bottom: 0.015
  16481. }
  16482. },
  16483. back: {
  16484. height: math.unit(2, "m"),
  16485. weight: math.unit(115, "kg"),
  16486. name: "Back",
  16487. image: {
  16488. source: "./media/characters/pia-sr/back.svg",
  16489. extra: 760 / 730,
  16490. bottom: 0.01
  16491. }
  16492. },
  16493. hand: {
  16494. height: math.unit(0.89 * 6.56 / 6, "feet"),
  16495. name: "Hand",
  16496. image: {
  16497. source: "./media/characters/pia-sr/hand.svg"
  16498. }
  16499. },
  16500. foot: {
  16501. height: math.unit(1.83, "feet"),
  16502. name: "Foot",
  16503. image: {
  16504. source: "./media/characters/pia-sr/foot.svg"
  16505. }
  16506. },
  16507. },
  16508. [
  16509. {
  16510. name: "Micro",
  16511. height: math.unit(88, "mm")
  16512. },
  16513. {
  16514. name: "Normal",
  16515. height: math.unit(2, "m"),
  16516. default: true
  16517. },
  16518. {
  16519. name: "Macro",
  16520. height: math.unit(200, "m")
  16521. },
  16522. {
  16523. name: "Megamacro",
  16524. height: math.unit(420, "km")
  16525. },
  16526. ]
  16527. ))
  16528. characterMakers.push(() => makeCharacter(
  16529. { name: "KIBIBYTE", species: ["bat", "demon"], tags: ["anthro"] },
  16530. {
  16531. front: {
  16532. height: math.unit(8 + 2 / 12, "feet"),
  16533. weight: math.unit(300, "lb"),
  16534. name: "Front",
  16535. image: {
  16536. source: "./media/characters/kibibyte/front.svg",
  16537. extra: 2221 / 2098,
  16538. bottom: 0.04
  16539. }
  16540. },
  16541. },
  16542. [
  16543. {
  16544. name: "Normal",
  16545. height: math.unit(8 + 2 / 12, "feet"),
  16546. default: true
  16547. },
  16548. {
  16549. name: "Socialable Macro",
  16550. height: math.unit(50, "feet")
  16551. },
  16552. {
  16553. name: "Macro",
  16554. height: math.unit(300, "feet")
  16555. },
  16556. {
  16557. name: "Megamacro",
  16558. height: math.unit(500, "miles")
  16559. },
  16560. ]
  16561. ))
  16562. characterMakers.push(() => makeCharacter(
  16563. { name: "Felix", species: ["siamese-cat"], tags: ["anthro"] },
  16564. {
  16565. front: {
  16566. height: math.unit(6, "feet"),
  16567. weight: math.unit(150, "lb"),
  16568. name: "Front",
  16569. image: {
  16570. source: "./media/characters/felix/front.svg",
  16571. extra: 762 / 722,
  16572. bottom: 0.02
  16573. }
  16574. },
  16575. frontClothed: {
  16576. height: math.unit(6, "feet"),
  16577. weight: math.unit(150, "lb"),
  16578. name: "Front (Clothed)",
  16579. image: {
  16580. source: "./media/characters/felix/front-clothed.svg",
  16581. extra: 762 / 722,
  16582. bottom: 0.02
  16583. }
  16584. },
  16585. },
  16586. [
  16587. {
  16588. name: "Normal",
  16589. height: math.unit(6 + 8 / 12, "feet"),
  16590. default: true
  16591. },
  16592. {
  16593. name: "Macro",
  16594. height: math.unit(2600, "feet")
  16595. },
  16596. {
  16597. name: "Megamacro",
  16598. height: math.unit(450, "miles")
  16599. },
  16600. ]
  16601. ))
  16602. characterMakers.push(() => makeCharacter(
  16603. { name: "Tobo", species: ["mouse"], tags: ["anthro"] },
  16604. {
  16605. front: {
  16606. height: math.unit(6 + 1 / 12, "feet"),
  16607. weight: math.unit(250, "lb"),
  16608. name: "Front",
  16609. image: {
  16610. source: "./media/characters/tobo/front.svg",
  16611. extra: 608 / 586,
  16612. bottom: 0.023
  16613. }
  16614. },
  16615. back: {
  16616. height: math.unit(6 + 1 / 12, "feet"),
  16617. weight: math.unit(250, "lb"),
  16618. name: "Back",
  16619. image: {
  16620. source: "./media/characters/tobo/back.svg",
  16621. extra: 608 / 586
  16622. }
  16623. },
  16624. },
  16625. [
  16626. {
  16627. name: "Nano",
  16628. height: math.unit(2, "nm")
  16629. },
  16630. {
  16631. name: "Megamicro",
  16632. height: math.unit(0.1, "mm")
  16633. },
  16634. {
  16635. name: "Micro",
  16636. height: math.unit(1, "inch"),
  16637. default: true
  16638. },
  16639. {
  16640. name: "Human-sized",
  16641. height: math.unit(6 + 1 / 12, "feet")
  16642. },
  16643. {
  16644. name: "Macro",
  16645. height: math.unit(250, "feet")
  16646. },
  16647. {
  16648. name: "Megamacro",
  16649. height: math.unit(75, "miles")
  16650. },
  16651. {
  16652. name: "Texas-sized",
  16653. height: math.unit(750, "miles")
  16654. },
  16655. {
  16656. name: "Teramacro",
  16657. height: math.unit(50000, "miles")
  16658. },
  16659. ]
  16660. ))
  16661. characterMakers.push(() => makeCharacter(
  16662. { name: "Danny Kapowsky", species: ["husky"], tags: ["anthro"] },
  16663. {
  16664. front: {
  16665. height: math.unit(6, "feet"),
  16666. weight: math.unit(269, "lb"),
  16667. name: "Front",
  16668. image: {
  16669. source: "./media/characters/danny-kapowsky/front.svg",
  16670. extra: 766 / 736,
  16671. bottom: 0.044
  16672. }
  16673. },
  16674. back: {
  16675. height: math.unit(6, "feet"),
  16676. weight: math.unit(269, "lb"),
  16677. name: "Back",
  16678. image: {
  16679. source: "./media/characters/danny-kapowsky/back.svg",
  16680. extra: 797 / 760,
  16681. bottom: 0.025
  16682. }
  16683. },
  16684. },
  16685. [
  16686. {
  16687. name: "Macro",
  16688. height: math.unit(150, "feet"),
  16689. default: true
  16690. },
  16691. {
  16692. name: "Macro+",
  16693. height: math.unit(200, "feet")
  16694. },
  16695. {
  16696. name: "Macro++",
  16697. height: math.unit(300, "feet")
  16698. },
  16699. {
  16700. name: "Macro+++",
  16701. height: math.unit(400, "feet")
  16702. },
  16703. ]
  16704. ))
  16705. characterMakers.push(() => makeCharacter(
  16706. { name: "Finn", species: ["fennec-fox"], tags: ["anthro"] },
  16707. {
  16708. side: {
  16709. height: math.unit(6, "feet"),
  16710. weight: math.unit(170, "lb"),
  16711. name: "Side",
  16712. image: {
  16713. source: "./media/characters/finn/side.svg",
  16714. extra: 1953 / 1807,
  16715. bottom: 0.057
  16716. }
  16717. },
  16718. },
  16719. [
  16720. {
  16721. name: "Megamacro",
  16722. height: math.unit(14445, "feet"),
  16723. default: true
  16724. },
  16725. ]
  16726. ))
  16727. characterMakers.push(() => makeCharacter(
  16728. { name: "Roy", species: ["chameleon"], tags: ["anthro"] },
  16729. {
  16730. front: {
  16731. height: math.unit(5 + 6 / 12, "feet"),
  16732. weight: math.unit(125, "lb"),
  16733. name: "Front",
  16734. image: {
  16735. source: "./media/characters/roy/front.svg",
  16736. extra: 1,
  16737. bottom: 0.11
  16738. }
  16739. },
  16740. },
  16741. [
  16742. {
  16743. name: "Micro",
  16744. height: math.unit(3, "inches"),
  16745. default: true
  16746. },
  16747. {
  16748. name: "Normal",
  16749. height: math.unit(5 + 6 / 12, "feet")
  16750. },
  16751. {
  16752. name: "Lesser Macro",
  16753. height: math.unit(60, "feet")
  16754. },
  16755. {
  16756. name: "Greater Macro",
  16757. height: math.unit(120, "feet")
  16758. },
  16759. ]
  16760. ))
  16761. characterMakers.push(() => makeCharacter(
  16762. { name: "Aevsivs", species: ["spider"], tags: ["anthro"] },
  16763. {
  16764. front: {
  16765. height: math.unit(6, "feet"),
  16766. weight: math.unit(100, "lb"),
  16767. name: "Front",
  16768. image: {
  16769. source: "./media/characters/aevsivs/front.svg",
  16770. extra: 1,
  16771. bottom: 0.03
  16772. }
  16773. },
  16774. back: {
  16775. height: math.unit(6, "feet"),
  16776. weight: math.unit(100, "lb"),
  16777. name: "Back",
  16778. image: {
  16779. source: "./media/characters/aevsivs/back.svg"
  16780. }
  16781. },
  16782. },
  16783. [
  16784. {
  16785. name: "Micro",
  16786. height: math.unit(2, "inches"),
  16787. default: true
  16788. },
  16789. {
  16790. name: "Normal",
  16791. height: math.unit(5, "feet")
  16792. },
  16793. ]
  16794. ))
  16795. characterMakers.push(() => makeCharacter(
  16796. { name: "Hildegard", species: ["lucario"], tags: ["anthro"] },
  16797. {
  16798. front: {
  16799. height: math.unit(5 + 7 / 12, "feet"),
  16800. weight: math.unit(159, "lb"),
  16801. name: "Front",
  16802. image: {
  16803. source: "./media/characters/hildegard/front.svg",
  16804. extra: 289 / 269,
  16805. bottom: 7.63 / 297.8
  16806. }
  16807. },
  16808. back: {
  16809. height: math.unit(5 + 7 / 12, "feet"),
  16810. weight: math.unit(159, "lb"),
  16811. name: "Back",
  16812. image: {
  16813. source: "./media/characters/hildegard/back.svg",
  16814. extra: 280 / 260,
  16815. bottom: 2.3 / 282
  16816. }
  16817. },
  16818. },
  16819. [
  16820. {
  16821. name: "Normal",
  16822. height: math.unit(5 + 7 / 12, "feet"),
  16823. default: true
  16824. },
  16825. ]
  16826. ))
  16827. characterMakers.push(() => makeCharacter(
  16828. { name: "Bernard & Wilder", species: ["lycanroc"], tags: ["anthro", "feral"] },
  16829. {
  16830. bernard: {
  16831. height: math.unit(2 + 7 / 12, "feet"),
  16832. weight: math.unit(66, "lb"),
  16833. name: "Bernard",
  16834. rename: true,
  16835. image: {
  16836. source: "./media/characters/bernard-wilder/bernard.svg",
  16837. extra: 192 / 128,
  16838. bottom: 0.05
  16839. }
  16840. },
  16841. wilder: {
  16842. height: math.unit(5 + 8 / 12, "feet"),
  16843. weight: math.unit(143, "lb"),
  16844. name: "Wilder",
  16845. rename: true,
  16846. image: {
  16847. source: "./media/characters/bernard-wilder/wilder.svg",
  16848. extra: 361 / 312,
  16849. bottom: 0.02
  16850. }
  16851. },
  16852. },
  16853. [
  16854. {
  16855. name: "Normal",
  16856. height: math.unit(2 + 7 / 12, "feet"),
  16857. default: true
  16858. },
  16859. ]
  16860. ))
  16861. characterMakers.push(() => makeCharacter(
  16862. { name: "Hearth", species: ["houndoom"], tags: ["anthro"] },
  16863. {
  16864. anthro: {
  16865. height: math.unit(6 + 1 / 12, "feet"),
  16866. weight: math.unit(155, "lb"),
  16867. name: "Anthro",
  16868. image: {
  16869. source: "./media/characters/hearth/anthro.svg",
  16870. extra: 1178/1136,
  16871. bottom: 28/1206
  16872. }
  16873. },
  16874. feral: {
  16875. height: math.unit(3.78, "feet"),
  16876. weight: math.unit(35, "kg"),
  16877. name: "Feral",
  16878. image: {
  16879. source: "./media/characters/hearth/feral.svg",
  16880. extra: 153 / 135,
  16881. bottom: 0.03
  16882. }
  16883. },
  16884. },
  16885. [
  16886. {
  16887. name: "Normal",
  16888. height: math.unit(6 + 1 / 12, "feet"),
  16889. default: true
  16890. },
  16891. ]
  16892. ))
  16893. characterMakers.push(() => makeCharacter(
  16894. { name: "Ingrid", species: ["delphox"], tags: ["anthro"] },
  16895. {
  16896. front: {
  16897. height: math.unit(6, "feet"),
  16898. weight: math.unit(182, "lb"),
  16899. name: "Front",
  16900. image: {
  16901. source: "./media/characters/ingrid/front.svg",
  16902. extra: 294 / 268,
  16903. bottom: 0.027
  16904. }
  16905. },
  16906. },
  16907. [
  16908. {
  16909. name: "Normal",
  16910. height: math.unit(6, "feet"),
  16911. default: true
  16912. },
  16913. ]
  16914. ))
  16915. characterMakers.push(() => makeCharacter(
  16916. { name: "Malgam", species: ["eevee"], tags: ["anthro"] },
  16917. {
  16918. eevee: {
  16919. height: math.unit(2 + 10 / 12, "feet"),
  16920. weight: math.unit(86, "lb"),
  16921. name: "Malgam",
  16922. image: {
  16923. source: "./media/characters/malgam/eevee.svg",
  16924. extra: 952/784,
  16925. bottom: 38/990
  16926. }
  16927. },
  16928. sylveon: {
  16929. height: math.unit(4, "feet"),
  16930. weight: math.unit(101, "lb"),
  16931. name: "Future Malgam",
  16932. rename: true,
  16933. image: {
  16934. source: "./media/characters/malgam/sylveon.svg",
  16935. extra: 371 / 325,
  16936. bottom: 0.015
  16937. }
  16938. },
  16939. gigantamax: {
  16940. height: math.unit(50, "feet"),
  16941. name: "Gigantamax Malgam",
  16942. rename: true,
  16943. image: {
  16944. source: "./media/characters/malgam/gigantamax.svg"
  16945. }
  16946. },
  16947. },
  16948. [
  16949. {
  16950. name: "Normal",
  16951. height: math.unit(2 + 10 / 12, "feet"),
  16952. default: true
  16953. },
  16954. ]
  16955. ))
  16956. characterMakers.push(() => makeCharacter(
  16957. { name: "Fleur", species: ["lopunny"], tags: ["anthro"] },
  16958. {
  16959. front: {
  16960. height: math.unit(5 + 11 / 12, "feet"),
  16961. weight: math.unit(188, "lb"),
  16962. name: "Front",
  16963. image: {
  16964. source: "./media/characters/fleur/front.svg",
  16965. extra: 309 / 283,
  16966. bottom: 0.007
  16967. }
  16968. },
  16969. },
  16970. [
  16971. {
  16972. name: "Normal",
  16973. height: math.unit(5 + 11 / 12, "feet"),
  16974. default: true
  16975. },
  16976. ]
  16977. ))
  16978. characterMakers.push(() => makeCharacter(
  16979. { name: "Jude", species: ["absol"], tags: ["anthro"] },
  16980. {
  16981. front: {
  16982. height: math.unit(5 + 4 / 12, "feet"),
  16983. weight: math.unit(122, "lb"),
  16984. name: "Front",
  16985. image: {
  16986. source: "./media/characters/jude/front.svg",
  16987. extra: 288 / 273,
  16988. bottom: 0.03
  16989. }
  16990. },
  16991. },
  16992. [
  16993. {
  16994. name: "Normal",
  16995. height: math.unit(5 + 4 / 12, "feet"),
  16996. default: true
  16997. },
  16998. ]
  16999. ))
  17000. characterMakers.push(() => makeCharacter(
  17001. { name: "Seara", species: ["salazzle"], tags: ["anthro"] },
  17002. {
  17003. front: {
  17004. height: math.unit(5 + 11 / 12, "feet"),
  17005. weight: math.unit(190, "lb"),
  17006. name: "Front",
  17007. image: {
  17008. source: "./media/characters/seara/front.svg",
  17009. extra: 1,
  17010. bottom: 0.05
  17011. }
  17012. },
  17013. },
  17014. [
  17015. {
  17016. name: "Normal",
  17017. height: math.unit(5 + 11 / 12, "feet"),
  17018. default: true
  17019. },
  17020. ]
  17021. ))
  17022. characterMakers.push(() => makeCharacter(
  17023. { name: "Caspian (Lugia)", species: ["lugia"], tags: ["anthro"] },
  17024. {
  17025. front: {
  17026. height: math.unit(16 + 5 / 12, "feet"),
  17027. weight: math.unit(524, "lb"),
  17028. name: "Front",
  17029. image: {
  17030. source: "./media/characters/caspian-lugia/front.svg",
  17031. extra: 1,
  17032. bottom: 0.04
  17033. }
  17034. },
  17035. },
  17036. [
  17037. {
  17038. name: "Normal",
  17039. height: math.unit(16 + 5 / 12, "feet"),
  17040. default: true
  17041. },
  17042. ]
  17043. ))
  17044. characterMakers.push(() => makeCharacter(
  17045. { name: "Mika", species: ["rabbit"], tags: ["anthro"] },
  17046. {
  17047. front: {
  17048. height: math.unit(5 + 7 / 12, "feet"),
  17049. weight: math.unit(170, "lb"),
  17050. name: "Front",
  17051. image: {
  17052. source: "./media/characters/mika/front.svg",
  17053. extra: 1,
  17054. bottom: 0.016
  17055. }
  17056. },
  17057. },
  17058. [
  17059. {
  17060. name: "Normal",
  17061. height: math.unit(5 + 7 / 12, "feet"),
  17062. default: true
  17063. },
  17064. ]
  17065. ))
  17066. characterMakers.push(() => makeCharacter(
  17067. { name: "Sol", species: ["grovyle"], tags: ["anthro"] },
  17068. {
  17069. front: {
  17070. height: math.unit(6 + 2 / 12, "feet"),
  17071. weight: math.unit(268, "lb"),
  17072. name: "Front",
  17073. image: {
  17074. source: "./media/characters/sol/front.svg",
  17075. extra: 247 / 231,
  17076. bottom: 0.05
  17077. }
  17078. },
  17079. },
  17080. [
  17081. {
  17082. name: "Normal",
  17083. height: math.unit(6 + 2 / 12, "feet"),
  17084. default: true
  17085. },
  17086. ]
  17087. ))
  17088. characterMakers.push(() => makeCharacter(
  17089. { name: "Umiko", species: ["buizel", "floatzel"], tags: ["anthro"] },
  17090. {
  17091. buizel: {
  17092. height: math.unit(2 + 5 / 12, "feet"),
  17093. weight: math.unit(87, "lb"),
  17094. name: "Front",
  17095. image: {
  17096. source: "./media/characters/umiko/buizel.svg",
  17097. extra: 172 / 157,
  17098. bottom: 0.01
  17099. },
  17100. form: "buizel",
  17101. default: true
  17102. },
  17103. floatzel: {
  17104. height: math.unit(5 + 9 / 12, "feet"),
  17105. weight: math.unit(250, "lb"),
  17106. name: "Front",
  17107. image: {
  17108. source: "./media/characters/umiko/floatzel.svg",
  17109. extra: 1076/1006,
  17110. bottom: 15/1091
  17111. },
  17112. form: "floatzel",
  17113. default: true
  17114. },
  17115. },
  17116. [
  17117. {
  17118. name: "Normal",
  17119. height: math.unit(2 + 5 / 12, "feet"),
  17120. form: "buizel",
  17121. default: true
  17122. },
  17123. {
  17124. name: "Normal",
  17125. height: math.unit(5 + 9 / 12, "feet"),
  17126. form: "floatzel",
  17127. default: true
  17128. },
  17129. ],
  17130. {
  17131. "buizel": {
  17132. name: "Buizel"
  17133. },
  17134. "floatzel": {
  17135. name: "Floatzel",
  17136. default: true
  17137. }
  17138. }
  17139. ))
  17140. characterMakers.push(() => makeCharacter(
  17141. { name: "Iliac", species: ["inteleon"], tags: ["anthro"] },
  17142. {
  17143. front: {
  17144. height: math.unit(6 + 2 / 12, "feet"),
  17145. weight: math.unit(146, "lb"),
  17146. name: "Front",
  17147. image: {
  17148. source: "./media/characters/iliac/front.svg",
  17149. extra: 389 / 365,
  17150. bottom: 0.035
  17151. }
  17152. },
  17153. },
  17154. [
  17155. {
  17156. name: "Normal",
  17157. height: math.unit(6 + 2 / 12, "feet"),
  17158. default: true
  17159. },
  17160. ]
  17161. ))
  17162. characterMakers.push(() => makeCharacter(
  17163. { name: "Topaz", species: ["blaziken"], tags: ["anthro"] },
  17164. {
  17165. front: {
  17166. height: math.unit(6, "feet"),
  17167. weight: math.unit(170, "lb"),
  17168. name: "Front",
  17169. image: {
  17170. source: "./media/characters/topaz/front.svg",
  17171. extra: 317 / 303,
  17172. bottom: 0.055
  17173. }
  17174. },
  17175. },
  17176. [
  17177. {
  17178. name: "Normal",
  17179. height: math.unit(6, "feet"),
  17180. default: true
  17181. },
  17182. ]
  17183. ))
  17184. characterMakers.push(() => makeCharacter(
  17185. { name: "Gabriel", species: ["lucario"], tags: ["anthro"] },
  17186. {
  17187. front: {
  17188. height: math.unit(5 + 11 / 12, "feet"),
  17189. weight: math.unit(144, "lb"),
  17190. name: "Front",
  17191. image: {
  17192. source: "./media/characters/gabriel/front.svg",
  17193. extra: 285 / 262,
  17194. bottom: 0.004
  17195. }
  17196. },
  17197. },
  17198. [
  17199. {
  17200. name: "Normal",
  17201. height: math.unit(5 + 11 / 12, "feet"),
  17202. default: true
  17203. },
  17204. ]
  17205. ))
  17206. characterMakers.push(() => makeCharacter(
  17207. { name: "Tempest (Suicune)", species: ["suicune"], tags: ["anthro"] },
  17208. {
  17209. side: {
  17210. height: math.unit(6 + 5 / 12, "feet"),
  17211. weight: math.unit(300, "lb"),
  17212. name: "Side",
  17213. image: {
  17214. source: "./media/characters/tempest-suicune/side.svg",
  17215. extra: 195 / 154,
  17216. bottom: 0.04
  17217. }
  17218. },
  17219. },
  17220. [
  17221. {
  17222. name: "Normal",
  17223. height: math.unit(6 + 5 / 12, "feet"),
  17224. default: true
  17225. },
  17226. ]
  17227. ))
  17228. characterMakers.push(() => makeCharacter(
  17229. { name: "Vulcan", species: ["charizard"], tags: ["anthro"] },
  17230. {
  17231. front: {
  17232. height: math.unit(7 + 2 / 12, "feet"),
  17233. weight: math.unit(322, "lb"),
  17234. name: "Front",
  17235. image: {
  17236. source: "./media/characters/vulcan/front.svg",
  17237. extra: 154 / 147,
  17238. bottom: 0.04
  17239. }
  17240. },
  17241. },
  17242. [
  17243. {
  17244. name: "Normal",
  17245. height: math.unit(7 + 2 / 12, "feet"),
  17246. default: true
  17247. },
  17248. ]
  17249. ))
  17250. characterMakers.push(() => makeCharacter(
  17251. { name: "Gault", species: ["feraligatr"], tags: ["anthro"] },
  17252. {
  17253. front: {
  17254. height: math.unit(5 + 10 / 12, "feet"),
  17255. weight: math.unit(264, "lb"),
  17256. name: "Front",
  17257. image: {
  17258. source: "./media/characters/gault/front.svg",
  17259. extra: 161 / 140,
  17260. bottom: 0.028
  17261. }
  17262. },
  17263. },
  17264. [
  17265. {
  17266. name: "Normal",
  17267. height: math.unit(5 + 10 / 12, "feet"),
  17268. default: true
  17269. },
  17270. ]
  17271. ))
  17272. characterMakers.push(() => makeCharacter(
  17273. { name: "Shard", species: ["weavile"], tags: ["anthro"] },
  17274. {
  17275. front: {
  17276. height: math.unit(6, "feet"),
  17277. weight: math.unit(150, "lb"),
  17278. name: "Front",
  17279. image: {
  17280. source: "./media/characters/shard/front.svg",
  17281. extra: 273 / 238,
  17282. bottom: 0.02
  17283. }
  17284. },
  17285. },
  17286. [
  17287. {
  17288. name: "Normal",
  17289. height: math.unit(3 + 6 / 12, "feet"),
  17290. default: true
  17291. },
  17292. ]
  17293. ))
  17294. characterMakers.push(() => makeCharacter(
  17295. { name: "Ashe", species: ["cat"], tags: ["anthro"] },
  17296. {
  17297. front: {
  17298. height: math.unit(5 + 11 / 12, "feet"),
  17299. weight: math.unit(146, "lb"),
  17300. name: "Front",
  17301. image: {
  17302. source: "./media/characters/ashe/front.svg",
  17303. extra: 400 / 373,
  17304. bottom: 0.01
  17305. }
  17306. },
  17307. },
  17308. [
  17309. {
  17310. name: "Normal",
  17311. height: math.unit(5 + 11 / 12, "feet"),
  17312. default: true
  17313. },
  17314. ]
  17315. ))
  17316. characterMakers.push(() => makeCharacter(
  17317. { name: "Beatrix", species: ["coyote"], tags: ["anthro"] },
  17318. {
  17319. front: {
  17320. height: math.unit(5 + 5 / 12, "feet"),
  17321. weight: math.unit(135, "lb"),
  17322. name: "Front",
  17323. image: {
  17324. source: "./media/characters/beatrix/front.svg",
  17325. extra: 392 / 379,
  17326. bottom: 0.01
  17327. }
  17328. },
  17329. },
  17330. [
  17331. {
  17332. name: "Normal",
  17333. height: math.unit(6, "feet"),
  17334. default: true
  17335. },
  17336. ]
  17337. ))
  17338. characterMakers.push(() => makeCharacter(
  17339. { name: "Ignatius", species: ["delphox"], tags: ["anthro"] },
  17340. {
  17341. front: {
  17342. height: math.unit(6 + 2/12, "feet"),
  17343. weight: math.unit(135, "lb"),
  17344. name: "Front",
  17345. image: {
  17346. source: "./media/characters/ignatius/front.svg",
  17347. extra: 1380/1259,
  17348. bottom: 27/1407
  17349. }
  17350. },
  17351. },
  17352. [
  17353. {
  17354. name: "Normal",
  17355. height: math.unit(6 + 2/12, "feet"),
  17356. default: true
  17357. },
  17358. ]
  17359. ))
  17360. characterMakers.push(() => makeCharacter(
  17361. { name: "Mei Li", species: ["mienshao"], tags: ["anthro"] },
  17362. {
  17363. front: {
  17364. height: math.unit(6 + 2 / 12, "feet"),
  17365. weight: math.unit(138, "lb"),
  17366. name: "Front",
  17367. image: {
  17368. source: "./media/characters/mei-li/front.svg",
  17369. extra: 237 / 229,
  17370. bottom: 0.03
  17371. }
  17372. },
  17373. },
  17374. [
  17375. {
  17376. name: "Normal",
  17377. height: math.unit(6 + 2 / 12, "feet"),
  17378. default: true
  17379. },
  17380. ]
  17381. ))
  17382. characterMakers.push(() => makeCharacter(
  17383. { name: "Puru", species: ["azumarill"], tags: ["anthro"] },
  17384. {
  17385. front: {
  17386. height: math.unit(2 + 4 / 12, "feet"),
  17387. weight: math.unit(62, "lb"),
  17388. name: "Front",
  17389. image: {
  17390. source: "./media/characters/puru/front.svg",
  17391. extra: 206 / 149,
  17392. bottom: 0.06
  17393. }
  17394. },
  17395. },
  17396. [
  17397. {
  17398. name: "Normal",
  17399. height: math.unit(2 + 4 / 12, "feet"),
  17400. default: true
  17401. },
  17402. ]
  17403. ))
  17404. characterMakers.push(() => makeCharacter(
  17405. { name: "Kee", species: ["aardwolf"], tags: ["anthro", "taur"] },
  17406. {
  17407. anthro: {
  17408. height: math.unit(5 + 8/12, "feet"),
  17409. weight: math.unit(200, "lb"),
  17410. energyNeed: math.unit(2000, "kcal"),
  17411. name: "Anthro",
  17412. image: {
  17413. source: "./media/characters/kee/anthro.svg",
  17414. extra: 3251/3184,
  17415. bottom: 250/3501
  17416. }
  17417. },
  17418. taur: {
  17419. height: math.unit(11, "feet"),
  17420. weight: math.unit(500, "lb"),
  17421. energyNeed: math.unit(5000, "kcal"),
  17422. name: "Taur",
  17423. image: {
  17424. source: "./media/characters/kee/taur.svg",
  17425. extra: 1362/1320,
  17426. bottom: 83/1445
  17427. }
  17428. },
  17429. },
  17430. [
  17431. {
  17432. name: "Normal",
  17433. height: math.unit(5 + 8/12, "feet"),
  17434. default: true
  17435. },
  17436. {
  17437. name: "Macro",
  17438. height: math.unit(35, "feet")
  17439. },
  17440. ]
  17441. ))
  17442. characterMakers.push(() => makeCharacter(
  17443. { name: "Cobalt (Dracha)", species: ["dracha"], tags: ["anthro"] },
  17444. {
  17445. anthro: {
  17446. height: math.unit(7, "feet"),
  17447. weight: math.unit(190, "lb"),
  17448. name: "Anthro",
  17449. image: {
  17450. source: "./media/characters/cobalt-dracha/anthro.svg",
  17451. extra: 231 / 225,
  17452. bottom: 0.04
  17453. }
  17454. },
  17455. feral: {
  17456. height: math.unit(9 + 7 / 12, "feet"),
  17457. weight: math.unit(294, "lb"),
  17458. name: "Feral",
  17459. image: {
  17460. source: "./media/characters/cobalt-dracha/feral.svg",
  17461. extra: 692 / 633,
  17462. bottom: 0.05
  17463. }
  17464. },
  17465. },
  17466. [
  17467. {
  17468. name: "Normal",
  17469. height: math.unit(7, "feet"),
  17470. default: true
  17471. },
  17472. ]
  17473. ))
  17474. characterMakers.push(() => makeCharacter(
  17475. { name: "Java", species: ["snake", "deity"], tags: ["naga"] },
  17476. {
  17477. fallen: {
  17478. height: math.unit(11 + 8 / 12, "feet"),
  17479. weight: math.unit(485, "lb"),
  17480. name: "Java (Fallen)",
  17481. rename: true,
  17482. image: {
  17483. source: "./media/characters/java/fallen.svg",
  17484. extra: 226 / 208,
  17485. bottom: 0.005
  17486. }
  17487. },
  17488. godkin: {
  17489. height: math.unit(10 + 6 / 12, "feet"),
  17490. weight: math.unit(328, "lb"),
  17491. name: "Java (Godkin)",
  17492. rename: true,
  17493. image: {
  17494. source: "./media/characters/java/godkin.svg",
  17495. extra: 1104/1068,
  17496. bottom: 36/1140
  17497. }
  17498. },
  17499. },
  17500. [
  17501. {
  17502. name: "Normal",
  17503. height: math.unit(11 + 8 / 12, "feet"),
  17504. default: true
  17505. },
  17506. ]
  17507. ))
  17508. characterMakers.push(() => makeCharacter(
  17509. { name: "Purna", species: ["panther"], tags: ["anthro"] },
  17510. {
  17511. front: {
  17512. height: math.unit(5 + 9 / 12, "feet"),
  17513. weight: math.unit(170, "lb"),
  17514. name: "Front",
  17515. image: {
  17516. source: "./media/characters/purna/front.svg",
  17517. extra: 239 / 229,
  17518. bottom: 0.01
  17519. }
  17520. },
  17521. },
  17522. [
  17523. {
  17524. name: "Normal",
  17525. height: math.unit(5 + 9 / 12, "feet"),
  17526. default: true
  17527. },
  17528. ]
  17529. ))
  17530. characterMakers.push(() => makeCharacter(
  17531. { name: "Kuva", species: ["cheetah"], tags: ["anthro"] },
  17532. {
  17533. front: {
  17534. height: math.unit(5 + 9 / 12, "feet"),
  17535. weight: math.unit(142, "lb"),
  17536. name: "Front",
  17537. image: {
  17538. source: "./media/characters/kuva/front.svg",
  17539. extra: 281 / 271,
  17540. bottom: 0.006
  17541. }
  17542. },
  17543. },
  17544. [
  17545. {
  17546. name: "Normal",
  17547. height: math.unit(5 + 9 / 12, "feet"),
  17548. default: true
  17549. },
  17550. ]
  17551. ))
  17552. characterMakers.push(() => makeCharacter(
  17553. { name: "Embra", species: ["dracha"], tags: ["anthro"] },
  17554. {
  17555. anthro: {
  17556. height: math.unit(9 + 2 / 12, "feet"),
  17557. weight: math.unit(270, "lb"),
  17558. name: "Anthro",
  17559. image: {
  17560. source: "./media/characters/embra/anthro.svg",
  17561. extra: 200 / 187,
  17562. bottom: 0.02
  17563. }
  17564. },
  17565. feral: {
  17566. height: math.unit(18 + 8 / 12, "feet"),
  17567. weight: math.unit(576, "lb"),
  17568. name: "Feral",
  17569. image: {
  17570. source: "./media/characters/embra/feral.svg",
  17571. extra: 152 / 137,
  17572. bottom: 0.037
  17573. }
  17574. },
  17575. },
  17576. [
  17577. {
  17578. name: "Normal",
  17579. height: math.unit(9 + 2 / 12, "feet"),
  17580. default: true
  17581. },
  17582. ]
  17583. ))
  17584. characterMakers.push(() => makeCharacter(
  17585. { name: "Grottos", species: ["dracha"], tags: ["anthro"] },
  17586. {
  17587. anthro: {
  17588. height: math.unit(10 + 9 / 12, "feet"),
  17589. weight: math.unit(224, "lb"),
  17590. name: "Anthro",
  17591. image: {
  17592. source: "./media/characters/grottos/anthro.svg",
  17593. extra: 350 / 332,
  17594. bottom: 0.045
  17595. }
  17596. },
  17597. feral: {
  17598. height: math.unit(20 + 7 / 12, "feet"),
  17599. weight: math.unit(629, "lb"),
  17600. name: "Feral",
  17601. image: {
  17602. source: "./media/characters/grottos/feral.svg",
  17603. extra: 207 / 190,
  17604. bottom: 0.05
  17605. }
  17606. },
  17607. },
  17608. [
  17609. {
  17610. name: "Normal",
  17611. height: math.unit(10 + 9 / 12, "feet"),
  17612. default: true
  17613. },
  17614. ]
  17615. ))
  17616. characterMakers.push(() => makeCharacter(
  17617. { name: "Frifna", species: ["dracha"], tags: ["anthro"] },
  17618. {
  17619. anthro: {
  17620. height: math.unit(9 + 6 / 12, "feet"),
  17621. weight: math.unit(298, "lb"),
  17622. name: "Anthro",
  17623. image: {
  17624. source: "./media/characters/frifna/anthro.svg",
  17625. extra: 282 / 269,
  17626. bottom: 0.015
  17627. }
  17628. },
  17629. feral: {
  17630. height: math.unit(16 + 2 / 12, "feet"),
  17631. weight: math.unit(624, "lb"),
  17632. name: "Feral",
  17633. image: {
  17634. source: "./media/characters/frifna/feral.svg"
  17635. }
  17636. },
  17637. },
  17638. [
  17639. {
  17640. name: "Normal",
  17641. height: math.unit(9 + 6 / 12, "feet"),
  17642. default: true
  17643. },
  17644. ]
  17645. ))
  17646. characterMakers.push(() => makeCharacter(
  17647. { name: "Elise", species: ["mongoose"], tags: ["anthro"] },
  17648. {
  17649. front: {
  17650. height: math.unit(6 + 2 / 12, "feet"),
  17651. weight: math.unit(168, "lb"),
  17652. name: "Front",
  17653. image: {
  17654. source: "./media/characters/elise/front.svg",
  17655. extra: 276 / 271
  17656. }
  17657. },
  17658. },
  17659. [
  17660. {
  17661. name: "Normal",
  17662. height: math.unit(6 + 2 / 12, "feet"),
  17663. default: true
  17664. },
  17665. ]
  17666. ))
  17667. characterMakers.push(() => makeCharacter(
  17668. { name: "Glade", species: ["wolf"], tags: ["anthro"] },
  17669. {
  17670. front: {
  17671. height: math.unit(5 + 10 / 12, "feet"),
  17672. weight: math.unit(210, "lb"),
  17673. name: "Front",
  17674. image: {
  17675. source: "./media/characters/glade/front.svg",
  17676. extra: 258 / 247,
  17677. bottom: 0.008
  17678. }
  17679. },
  17680. },
  17681. [
  17682. {
  17683. name: "Normal",
  17684. height: math.unit(5 + 10 / 12, "feet"),
  17685. default: true
  17686. },
  17687. ]
  17688. ))
  17689. characterMakers.push(() => makeCharacter(
  17690. { name: "Rina", species: ["fox"], tags: ["anthro"] },
  17691. {
  17692. front: {
  17693. height: math.unit(5 + 10 / 12, "feet"),
  17694. weight: math.unit(129, "lb"),
  17695. name: "Front",
  17696. image: {
  17697. source: "./media/characters/rina/front.svg",
  17698. extra: 266 / 255,
  17699. bottom: 0.005
  17700. }
  17701. },
  17702. },
  17703. [
  17704. {
  17705. name: "Normal",
  17706. height: math.unit(5 + 10 / 12, "feet"),
  17707. default: true
  17708. },
  17709. ]
  17710. ))
  17711. characterMakers.push(() => makeCharacter(
  17712. { name: "Veronica", species: ["fox", "synth"], tags: ["anthro"] },
  17713. {
  17714. front: {
  17715. height: math.unit(6 + 1 / 12, "feet"),
  17716. weight: math.unit(192, "lb"),
  17717. name: "Front",
  17718. image: {
  17719. source: "./media/characters/veronica/front.svg",
  17720. extra: 319 / 309,
  17721. bottom: 0.005
  17722. }
  17723. },
  17724. },
  17725. [
  17726. {
  17727. name: "Normal",
  17728. height: math.unit(6 + 1 / 12, "feet"),
  17729. default: true
  17730. },
  17731. ]
  17732. ))
  17733. characterMakers.push(() => makeCharacter(
  17734. { name: "Braxton", species: ["great-dane"], tags: ["anthro"] },
  17735. {
  17736. front: {
  17737. height: math.unit(9 + 3 / 12, "feet"),
  17738. weight: math.unit(1100, "lb"),
  17739. name: "Front",
  17740. image: {
  17741. source: "./media/characters/braxton/front.svg",
  17742. extra: 1057 / 984,
  17743. bottom: 0.05
  17744. }
  17745. },
  17746. },
  17747. [
  17748. {
  17749. name: "Normal",
  17750. height: math.unit(9 + 3 / 12, "feet")
  17751. },
  17752. {
  17753. name: "Giant",
  17754. height: math.unit(300, "feet"),
  17755. default: true
  17756. },
  17757. {
  17758. name: "Macro",
  17759. height: math.unit(700, "feet")
  17760. },
  17761. {
  17762. name: "Megamacro",
  17763. height: math.unit(6000, "feet")
  17764. },
  17765. ]
  17766. ))
  17767. characterMakers.push(() => makeCharacter(
  17768. { name: "Blue Feyonics", species: ["phoenix"], tags: ["anthro"] },
  17769. {
  17770. front: {
  17771. height: math.unit(6 + 7 / 12, "feet"),
  17772. weight: math.unit(150, "lb"),
  17773. name: "Front",
  17774. image: {
  17775. source: "./media/characters/blue-feyonics/front.svg",
  17776. extra: 1403 / 1306,
  17777. bottom: 0.047
  17778. }
  17779. },
  17780. },
  17781. [
  17782. {
  17783. name: "Normal",
  17784. height: math.unit(6 + 7 / 12, "feet"),
  17785. default: true
  17786. },
  17787. ]
  17788. ))
  17789. characterMakers.push(() => makeCharacter(
  17790. { name: "Maxwell", species: ["shiba-inu", "wolf"], tags: ["anthro"] },
  17791. {
  17792. front: {
  17793. height: math.unit(1.8, "meters"),
  17794. weight: math.unit(60, "kg"),
  17795. name: "Front",
  17796. image: {
  17797. source: "./media/characters/maxwell/front.svg",
  17798. extra: 2060 / 1873
  17799. }
  17800. },
  17801. },
  17802. [
  17803. {
  17804. name: "Micro",
  17805. height: math.unit(1, "mm")
  17806. },
  17807. {
  17808. name: "Normal",
  17809. height: math.unit(1.8, "meter"),
  17810. default: true
  17811. },
  17812. {
  17813. name: "Macro",
  17814. height: math.unit(30, "meters")
  17815. },
  17816. {
  17817. name: "Megamacro",
  17818. height: math.unit(10, "km")
  17819. },
  17820. ]
  17821. ))
  17822. characterMakers.push(() => makeCharacter(
  17823. { name: "Jack", species: ["wolf", "dragon"], tags: ["anthro"] },
  17824. {
  17825. front: {
  17826. height: math.unit(6, "feet"),
  17827. weight: math.unit(150, "lb"),
  17828. name: "Front",
  17829. image: {
  17830. source: "./media/characters/jack/front.svg",
  17831. extra: 1754 / 1640,
  17832. bottom: 0.01
  17833. }
  17834. },
  17835. },
  17836. [
  17837. {
  17838. name: "Normal",
  17839. height: math.unit(80000, "feet"),
  17840. default: true
  17841. },
  17842. {
  17843. name: "Max size",
  17844. height: math.unit(10, "lightyears")
  17845. },
  17846. ]
  17847. ))
  17848. characterMakers.push(() => makeCharacter(
  17849. { name: "Cafat", species: ["husky"], tags: ["taur"] },
  17850. {
  17851. urban: {
  17852. height: math.unit(5, "feet"),
  17853. weight: math.unit(240, "lb"),
  17854. name: "Urban",
  17855. image: {
  17856. source: "./media/characters/cafat/urban.svg",
  17857. extra: 1223/1126,
  17858. bottom: 205/1428
  17859. }
  17860. },
  17861. summer: {
  17862. height: math.unit(5, "feet"),
  17863. weight: math.unit(240, "lb"),
  17864. name: "Summer",
  17865. image: {
  17866. source: "./media/characters/cafat/summer.svg",
  17867. extra: 1223/1126,
  17868. bottom: 205/1428
  17869. }
  17870. },
  17871. winter: {
  17872. height: math.unit(5, "feet"),
  17873. weight: math.unit(240, "lb"),
  17874. name: "Winter",
  17875. image: {
  17876. source: "./media/characters/cafat/winter.svg",
  17877. extra: 1223/1126,
  17878. bottom: 205/1428
  17879. }
  17880. },
  17881. lingerie: {
  17882. height: math.unit(5, "feet"),
  17883. weight: math.unit(240, "lb"),
  17884. name: "Lingerie",
  17885. image: {
  17886. source: "./media/characters/cafat/lingerie.svg",
  17887. extra: 1223/1126,
  17888. bottom: 205/1428
  17889. }
  17890. },
  17891. upright: {
  17892. height: math.unit(6.3, "feet"),
  17893. weight: math.unit(240, "lb"),
  17894. name: "Upright",
  17895. image: {
  17896. source: "./media/characters/cafat/upright.svg",
  17897. bottom: 0.01
  17898. }
  17899. },
  17900. uprightFull: {
  17901. height: math.unit(6.3, "feet"),
  17902. weight: math.unit(240, "lb"),
  17903. name: "Upright (Full)",
  17904. image: {
  17905. source: "./media/characters/cafat/upright-full.svg",
  17906. bottom: 0.01
  17907. }
  17908. },
  17909. },
  17910. [
  17911. {
  17912. name: "Small",
  17913. height: math.unit(5, "feet"),
  17914. default: true
  17915. },
  17916. {
  17917. name: "Large",
  17918. height: math.unit(13, "feet")
  17919. },
  17920. ]
  17921. ))
  17922. characterMakers.push(() => makeCharacter(
  17923. { name: "Verin Raharra", species: ["sergal"], tags: ["anthro"] },
  17924. {
  17925. front: {
  17926. height: math.unit(6, "feet"),
  17927. weight: math.unit(150, "lb"),
  17928. name: "Front",
  17929. image: {
  17930. source: "./media/characters/verin-raharra/front.svg",
  17931. extra: 5019 / 4835,
  17932. bottom: 0.023
  17933. }
  17934. },
  17935. },
  17936. [
  17937. {
  17938. name: "Normal",
  17939. height: math.unit(7 + 5 / 12, "feet"),
  17940. default: true
  17941. },
  17942. {
  17943. name: "Upsized",
  17944. height: math.unit(20, "feet")
  17945. },
  17946. ]
  17947. ))
  17948. characterMakers.push(() => makeCharacter(
  17949. { name: "Nakata", species: ["hyena"], tags: ["anthro"] },
  17950. {
  17951. front: {
  17952. height: math.unit(7, "feet"),
  17953. weight: math.unit(230, "lb"),
  17954. name: "Front",
  17955. image: {
  17956. source: "./media/characters/nakata/front.svg",
  17957. extra: 1.005,
  17958. bottom: 0.01
  17959. }
  17960. },
  17961. },
  17962. [
  17963. {
  17964. name: "Normal",
  17965. height: math.unit(7, "feet"),
  17966. default: true
  17967. },
  17968. {
  17969. name: "Big",
  17970. height: math.unit(14, "feet")
  17971. },
  17972. {
  17973. name: "Macro",
  17974. height: math.unit(400, "feet")
  17975. },
  17976. ]
  17977. ))
  17978. characterMakers.push(() => makeCharacter(
  17979. { name: "Lily", species: ["ruppells-fox"], tags: ["anthro"] },
  17980. {
  17981. front: {
  17982. height: math.unit(4.91, "feet"),
  17983. weight: math.unit(100, "lb"),
  17984. name: "Front",
  17985. image: {
  17986. source: "./media/characters/lily/front.svg",
  17987. extra: 1585 / 1415,
  17988. bottom: 0.02
  17989. }
  17990. },
  17991. },
  17992. [
  17993. {
  17994. name: "Normal",
  17995. height: math.unit(4.91, "feet"),
  17996. default: true
  17997. },
  17998. ]
  17999. ))
  18000. characterMakers.push(() => makeCharacter(
  18001. { name: "Sheila", species: ["leopard-seal"], tags: ["anthro"] },
  18002. {
  18003. laying: {
  18004. height: math.unit(4 + 4 / 12, "feet"),
  18005. weight: math.unit(600, "lb"),
  18006. name: "Laying",
  18007. image: {
  18008. source: "./media/characters/sheila/laying.svg",
  18009. extra: 1333 / 1265,
  18010. bottom: 0.16
  18011. }
  18012. },
  18013. },
  18014. [
  18015. {
  18016. name: "Normal",
  18017. height: math.unit(4 + 4 / 12, "feet"),
  18018. default: true
  18019. },
  18020. ]
  18021. ))
  18022. characterMakers.push(() => makeCharacter(
  18023. { name: "Sax", species: ["argonian"], tags: ["anthro"] },
  18024. {
  18025. front: {
  18026. height: math.unit(6, "feet"),
  18027. weight: math.unit(190, "lb"),
  18028. name: "Front",
  18029. image: {
  18030. source: "./media/characters/sax/front.svg",
  18031. extra: 1187 / 973,
  18032. bottom: 0.042
  18033. }
  18034. },
  18035. },
  18036. [
  18037. {
  18038. name: "Micro",
  18039. height: math.unit(4, "inches"),
  18040. default: true
  18041. },
  18042. ]
  18043. ))
  18044. characterMakers.push(() => makeCharacter(
  18045. { name: "Pandora", species: ["fox"], tags: ["anthro"] },
  18046. {
  18047. front: {
  18048. height: math.unit(6, "feet"),
  18049. weight: math.unit(150, "lb"),
  18050. name: "Front",
  18051. image: {
  18052. source: "./media/characters/pandora/front.svg",
  18053. extra: 2720 / 2556,
  18054. bottom: 0.015
  18055. }
  18056. },
  18057. back: {
  18058. height: math.unit(6, "feet"),
  18059. weight: math.unit(150, "lb"),
  18060. name: "Back",
  18061. image: {
  18062. source: "./media/characters/pandora/back.svg",
  18063. extra: 2720 / 2556,
  18064. bottom: 0.01
  18065. }
  18066. },
  18067. beans: {
  18068. height: math.unit(6 / 8, "feet"),
  18069. name: "Beans",
  18070. image: {
  18071. source: "./media/characters/pandora/beans.svg"
  18072. }
  18073. },
  18074. collar: {
  18075. height: math.unit(0.31, "feet"),
  18076. name: "Collar",
  18077. image: {
  18078. source: "./media/characters/pandora/collar.svg"
  18079. }
  18080. },
  18081. skirt: {
  18082. height: math.unit(6, "feet"),
  18083. weight: math.unit(150, "lb"),
  18084. name: "Skirt",
  18085. image: {
  18086. source: "./media/characters/pandora/skirt.svg",
  18087. extra: 1622 / 1525,
  18088. bottom: 0.015
  18089. }
  18090. },
  18091. hoodie: {
  18092. height: math.unit(6, "feet"),
  18093. weight: math.unit(150, "lb"),
  18094. name: "Hoodie",
  18095. image: {
  18096. source: "./media/characters/pandora/hoodie.svg",
  18097. extra: 1622 / 1525,
  18098. bottom: 0.015
  18099. }
  18100. },
  18101. casual: {
  18102. height: math.unit(6, "feet"),
  18103. weight: math.unit(150, "lb"),
  18104. name: "Casual",
  18105. image: {
  18106. source: "./media/characters/pandora/casual.svg",
  18107. extra: 1622 / 1525,
  18108. bottom: 0.015
  18109. }
  18110. },
  18111. },
  18112. [
  18113. {
  18114. name: "Normal",
  18115. height: math.unit(6, "feet")
  18116. },
  18117. {
  18118. name: "Big Steppy",
  18119. height: math.unit(1, "km"),
  18120. default: true
  18121. },
  18122. {
  18123. name: "Galactic Steppy",
  18124. height: math.unit(2, "gigameters")
  18125. },
  18126. ]
  18127. ))
  18128. characterMakers.push(() => makeCharacter(
  18129. { name: "Venio Darcony", species: ["hyena"], tags: ["anthro"] },
  18130. {
  18131. side: {
  18132. height: math.unit(10, "feet"),
  18133. weight: math.unit(800, "kg"),
  18134. name: "Side",
  18135. image: {
  18136. source: "./media/characters/venio-darcony/side.svg",
  18137. extra: 1373 / 1003,
  18138. bottom: 0.037
  18139. }
  18140. },
  18141. front: {
  18142. height: math.unit(19, "feet"),
  18143. weight: math.unit(800, "kg"),
  18144. name: "Front",
  18145. image: {
  18146. source: "./media/characters/venio-darcony/front.svg"
  18147. }
  18148. },
  18149. back: {
  18150. height: math.unit(19, "feet"),
  18151. weight: math.unit(800, "kg"),
  18152. name: "Back",
  18153. image: {
  18154. source: "./media/characters/venio-darcony/back.svg"
  18155. }
  18156. },
  18157. sideNsfw: {
  18158. height: math.unit(10, "feet"),
  18159. weight: math.unit(800, "kg"),
  18160. name: "Side (NSFW)",
  18161. image: {
  18162. source: "./media/characters/venio-darcony/side-nsfw.svg",
  18163. extra: 1373 / 1003,
  18164. bottom: 0.037
  18165. }
  18166. },
  18167. frontNsfw: {
  18168. height: math.unit(19, "feet"),
  18169. weight: math.unit(800, "kg"),
  18170. name: "Front (NSFW)",
  18171. image: {
  18172. source: "./media/characters/venio-darcony/front-nsfw.svg"
  18173. }
  18174. },
  18175. backNsfw: {
  18176. height: math.unit(19, "feet"),
  18177. weight: math.unit(800, "kg"),
  18178. name: "Back (NSFW)",
  18179. image: {
  18180. source: "./media/characters/venio-darcony/back-nsfw.svg"
  18181. }
  18182. },
  18183. sideArmored: {
  18184. height: math.unit(10, "feet"),
  18185. weight: math.unit(800, "kg"),
  18186. name: "Side (Armored)",
  18187. image: {
  18188. source: "./media/characters/venio-darcony/side-armored.svg",
  18189. extra: 1373 / 1003,
  18190. bottom: 0.037
  18191. }
  18192. },
  18193. frontArmored: {
  18194. height: math.unit(19, "feet"),
  18195. weight: math.unit(900, "kg"),
  18196. name: "Front (Armored)",
  18197. image: {
  18198. source: "./media/characters/venio-darcony/front-armored.svg"
  18199. }
  18200. },
  18201. backArmored: {
  18202. height: math.unit(19, "feet"),
  18203. weight: math.unit(900, "kg"),
  18204. name: "Back (Armored)",
  18205. image: {
  18206. source: "./media/characters/venio-darcony/back-armored.svg"
  18207. }
  18208. },
  18209. sword: {
  18210. height: math.unit(10, "feet"),
  18211. weight: math.unit(50, "lb"),
  18212. name: "Sword",
  18213. image: {
  18214. source: "./media/characters/venio-darcony/sword.svg"
  18215. }
  18216. },
  18217. },
  18218. [
  18219. {
  18220. name: "Normal",
  18221. height: math.unit(10, "feet")
  18222. },
  18223. {
  18224. name: "Macro",
  18225. height: math.unit(130, "feet"),
  18226. default: true
  18227. },
  18228. {
  18229. name: "Macro+",
  18230. height: math.unit(240, "feet")
  18231. },
  18232. ]
  18233. ))
  18234. characterMakers.push(() => makeCharacter(
  18235. { name: "Veski", species: ["shark"], tags: ["anthro"] },
  18236. {
  18237. front: {
  18238. height: math.unit(6, "feet"),
  18239. weight: math.unit(150, "lb"),
  18240. name: "Front",
  18241. image: {
  18242. source: "./media/characters/veski/front.svg",
  18243. extra: 1299 / 1225,
  18244. bottom: 0.04
  18245. }
  18246. },
  18247. back: {
  18248. height: math.unit(6, "feet"),
  18249. weight: math.unit(150, "lb"),
  18250. name: "Back",
  18251. image: {
  18252. source: "./media/characters/veski/back.svg",
  18253. extra: 1299 / 1225,
  18254. bottom: 0.008
  18255. }
  18256. },
  18257. maw: {
  18258. height: math.unit(1.5 * 1.21, "feet"),
  18259. name: "Maw",
  18260. image: {
  18261. source: "./media/characters/veski/maw.svg"
  18262. }
  18263. },
  18264. },
  18265. [
  18266. {
  18267. name: "Macro",
  18268. height: math.unit(2, "km"),
  18269. default: true
  18270. },
  18271. ]
  18272. ))
  18273. characterMakers.push(() => makeCharacter(
  18274. { name: "Isabelle", species: ["wolf"], tags: ["anthro"] },
  18275. {
  18276. front: {
  18277. height: math.unit(5 + 7 / 12, "feet"),
  18278. name: "Front",
  18279. image: {
  18280. source: "./media/characters/isabelle/front.svg",
  18281. extra: 2130 / 1976,
  18282. bottom: 0.05
  18283. }
  18284. },
  18285. },
  18286. [
  18287. {
  18288. name: "Supermicro",
  18289. height: math.unit(10, "micrometers")
  18290. },
  18291. {
  18292. name: "Micro",
  18293. height: math.unit(1, "inch")
  18294. },
  18295. {
  18296. name: "Tiny",
  18297. height: math.unit(5, "inches")
  18298. },
  18299. {
  18300. name: "Standard",
  18301. height: math.unit(5 + 7 / 12, "inches")
  18302. },
  18303. {
  18304. name: "Macro",
  18305. height: math.unit(80, "meters"),
  18306. default: true
  18307. },
  18308. {
  18309. name: "Megamacro",
  18310. height: math.unit(250, "meters")
  18311. },
  18312. {
  18313. name: "Gigamacro",
  18314. height: math.unit(5, "km")
  18315. },
  18316. {
  18317. name: "Cosmic",
  18318. height: math.unit(2.5e6, "miles")
  18319. },
  18320. ]
  18321. ))
  18322. characterMakers.push(() => makeCharacter(
  18323. { name: "Hanzo", species: ["greninja"], tags: ["anthro"] },
  18324. {
  18325. front: {
  18326. height: math.unit(6, "feet"),
  18327. weight: math.unit(150, "lb"),
  18328. name: "Front",
  18329. image: {
  18330. source: "./media/characters/hanzo/front.svg",
  18331. extra: 374 / 344,
  18332. bottom: 0.02
  18333. }
  18334. },
  18335. },
  18336. [
  18337. {
  18338. name: "Normal",
  18339. height: math.unit(8, "feet"),
  18340. default: true
  18341. },
  18342. ]
  18343. ))
  18344. characterMakers.push(() => makeCharacter(
  18345. { name: "Anna", species: ["greninja"], tags: ["anthro"] },
  18346. {
  18347. front: {
  18348. height: math.unit(7, "feet"),
  18349. weight: math.unit(130, "lb"),
  18350. name: "Front",
  18351. image: {
  18352. source: "./media/characters/anna/front.svg",
  18353. extra: 169 / 145,
  18354. bottom: 0.06
  18355. }
  18356. },
  18357. full: {
  18358. height: math.unit(4.96, "feet"),
  18359. weight: math.unit(220, "lb"),
  18360. name: "Full",
  18361. image: {
  18362. source: "./media/characters/anna/full.svg",
  18363. extra: 138 / 114,
  18364. bottom: 0.15
  18365. }
  18366. },
  18367. tongue: {
  18368. height: math.unit(2.53, "feet"),
  18369. name: "Tongue",
  18370. image: {
  18371. source: "./media/characters/anna/tongue.svg"
  18372. }
  18373. },
  18374. },
  18375. [
  18376. {
  18377. name: "Normal",
  18378. height: math.unit(7, "feet"),
  18379. default: true
  18380. },
  18381. ]
  18382. ))
  18383. characterMakers.push(() => makeCharacter(
  18384. { name: "Ian Corvid", species: ["crow"], tags: ["anthro"] },
  18385. {
  18386. front: {
  18387. height: math.unit(7, "feet"),
  18388. weight: math.unit(150, "lb"),
  18389. name: "Front",
  18390. image: {
  18391. source: "./media/characters/ian-corvid/front.svg",
  18392. extra: 150 / 142,
  18393. bottom: 0.02
  18394. }
  18395. },
  18396. back: {
  18397. height: math.unit(7, "feet"),
  18398. weight: math.unit(150, "lb"),
  18399. name: "Back",
  18400. image: {
  18401. source: "./media/characters/ian-corvid/back.svg",
  18402. extra: 150 / 143,
  18403. bottom: 0.01
  18404. }
  18405. },
  18406. stomping: {
  18407. height: math.unit(7, "feet"),
  18408. weight: math.unit(150, "lb"),
  18409. name: "Stomping",
  18410. image: {
  18411. source: "./media/characters/ian-corvid/stomping.svg",
  18412. extra: 76 / 72
  18413. }
  18414. },
  18415. sitting: {
  18416. height: math.unit(7 / 1.8, "feet"),
  18417. weight: math.unit(150, "lb"),
  18418. name: "Sitting",
  18419. image: {
  18420. source: "./media/characters/ian-corvid/sitting.svg",
  18421. extra: 1400 / 1269,
  18422. bottom: 0.15
  18423. }
  18424. },
  18425. },
  18426. [
  18427. {
  18428. name: "Tiny Microw",
  18429. height: math.unit(1, "inch")
  18430. },
  18431. {
  18432. name: "Microw",
  18433. height: math.unit(6, "inches")
  18434. },
  18435. {
  18436. name: "Crow",
  18437. height: math.unit(7 + 1 / 12, "feet"),
  18438. default: true
  18439. },
  18440. {
  18441. name: "Macrow",
  18442. height: math.unit(176, "feet")
  18443. },
  18444. ]
  18445. ))
  18446. characterMakers.push(() => makeCharacter(
  18447. { name: "Natalie Kellon", species: ["fox"], tags: ["anthro"] },
  18448. {
  18449. front: {
  18450. height: math.unit(5 + 7 / 12, "feet"),
  18451. weight: math.unit(147, "lb"),
  18452. name: "Front",
  18453. image: {
  18454. source: "./media/characters/natalie-kellon/front.svg",
  18455. extra: 1214 / 1141,
  18456. bottom: 0.02
  18457. }
  18458. },
  18459. },
  18460. [
  18461. {
  18462. name: "Micro",
  18463. height: math.unit(1 / 16, "inch")
  18464. },
  18465. {
  18466. name: "Tiny",
  18467. height: math.unit(4, "inches")
  18468. },
  18469. {
  18470. name: "Normal",
  18471. height: math.unit(5 + 7 / 12, "feet"),
  18472. default: true
  18473. },
  18474. {
  18475. name: "Amazon",
  18476. height: math.unit(12, "feet")
  18477. },
  18478. {
  18479. name: "Giantess",
  18480. height: math.unit(160, "meters")
  18481. },
  18482. {
  18483. name: "Titaness",
  18484. height: math.unit(800, "meters")
  18485. },
  18486. ]
  18487. ))
  18488. characterMakers.push(() => makeCharacter(
  18489. { name: "Alluria", species: ["megalodon"], tags: ["anthro"] },
  18490. {
  18491. front: {
  18492. height: math.unit(6, "feet"),
  18493. weight: math.unit(150, "lb"),
  18494. name: "Front",
  18495. image: {
  18496. source: "./media/characters/alluria/front.svg",
  18497. extra: 806 / 738,
  18498. bottom: 0.01
  18499. }
  18500. },
  18501. side: {
  18502. height: math.unit(6, "feet"),
  18503. weight: math.unit(150, "lb"),
  18504. name: "Side",
  18505. image: {
  18506. source: "./media/characters/alluria/side.svg",
  18507. extra: 800 / 750,
  18508. }
  18509. },
  18510. back: {
  18511. height: math.unit(6, "feet"),
  18512. weight: math.unit(150, "lb"),
  18513. name: "Back",
  18514. image: {
  18515. source: "./media/characters/alluria/back.svg",
  18516. extra: 806 / 738,
  18517. }
  18518. },
  18519. frontMaid: {
  18520. height: math.unit(6, "feet"),
  18521. weight: math.unit(150, "lb"),
  18522. name: "Front (Maid)",
  18523. image: {
  18524. source: "./media/characters/alluria/front-maid.svg",
  18525. extra: 806 / 738,
  18526. bottom: 0.01
  18527. }
  18528. },
  18529. sideMaid: {
  18530. height: math.unit(6, "feet"),
  18531. weight: math.unit(150, "lb"),
  18532. name: "Side (Maid)",
  18533. image: {
  18534. source: "./media/characters/alluria/side-maid.svg",
  18535. extra: 800 / 750,
  18536. bottom: 0.005
  18537. }
  18538. },
  18539. backMaid: {
  18540. height: math.unit(6, "feet"),
  18541. weight: math.unit(150, "lb"),
  18542. name: "Back (Maid)",
  18543. image: {
  18544. source: "./media/characters/alluria/back-maid.svg",
  18545. extra: 806 / 738,
  18546. }
  18547. },
  18548. },
  18549. [
  18550. {
  18551. name: "Micro",
  18552. height: math.unit(6, "inches"),
  18553. default: true
  18554. },
  18555. ]
  18556. ))
  18557. characterMakers.push(() => makeCharacter(
  18558. { name: "Kyle", species: ["deer"], tags: ["anthro"] },
  18559. {
  18560. front: {
  18561. height: math.unit(6, "feet"),
  18562. weight: math.unit(150, "lb"),
  18563. name: "Front",
  18564. image: {
  18565. source: "./media/characters/kyle/front.svg",
  18566. extra: 1069 / 962,
  18567. bottom: 77.228 / 1727.45
  18568. }
  18569. },
  18570. },
  18571. [
  18572. {
  18573. name: "Macro",
  18574. height: math.unit(150, "feet"),
  18575. default: true
  18576. },
  18577. ]
  18578. ))
  18579. characterMakers.push(() => makeCharacter(
  18580. { name: "Duncan", species: ["kangaroo"], tags: ["anthro"] },
  18581. {
  18582. front: {
  18583. height: math.unit(6, "feet"),
  18584. weight: math.unit(300, "lb"),
  18585. name: "Front",
  18586. image: {
  18587. source: "./media/characters/duncan/front.svg",
  18588. extra: 1650 / 1482,
  18589. bottom: 0.05
  18590. }
  18591. },
  18592. },
  18593. [
  18594. {
  18595. name: "Macro",
  18596. height: math.unit(100, "feet"),
  18597. default: true
  18598. },
  18599. ]
  18600. ))
  18601. characterMakers.push(() => makeCharacter(
  18602. { name: "Memory", species: ["sugar-glider"], tags: ["anthro"] },
  18603. {
  18604. front: {
  18605. height: math.unit(5 + 4 / 12, "feet"),
  18606. weight: math.unit(220, "lb"),
  18607. name: "Front",
  18608. image: {
  18609. source: "./media/characters/memory/front.svg",
  18610. extra: 3641 / 3545,
  18611. bottom: 0.03
  18612. }
  18613. },
  18614. back: {
  18615. height: math.unit(5 + 4 / 12, "feet"),
  18616. weight: math.unit(220, "lb"),
  18617. name: "Back",
  18618. image: {
  18619. source: "./media/characters/memory/back.svg",
  18620. extra: 3641 / 3545,
  18621. bottom: 0.025
  18622. }
  18623. },
  18624. frontSkirt: {
  18625. height: math.unit(5 + 4 / 12, "feet"),
  18626. weight: math.unit(220, "lb"),
  18627. name: "Front (Skirt)",
  18628. image: {
  18629. source: "./media/characters/memory/front-skirt.svg",
  18630. extra: 3641 / 3545,
  18631. bottom: 0.03
  18632. }
  18633. },
  18634. frontDress: {
  18635. height: math.unit(5 + 4 / 12, "feet"),
  18636. weight: math.unit(220, "lb"),
  18637. name: "Front (Dress)",
  18638. image: {
  18639. source: "./media/characters/memory/front-dress.svg",
  18640. extra: 3641 / 3545,
  18641. bottom: 0.03
  18642. }
  18643. },
  18644. },
  18645. [
  18646. {
  18647. name: "Micro",
  18648. height: math.unit(6, "inches"),
  18649. default: true
  18650. },
  18651. {
  18652. name: "Normal",
  18653. height: math.unit(5 + 4 / 12, "feet")
  18654. },
  18655. ]
  18656. ))
  18657. characterMakers.push(() => makeCharacter(
  18658. { name: "Luno", species: ["rabbit"], tags: ["anthro"] },
  18659. {
  18660. front: {
  18661. height: math.unit(4 + 11 / 12, "feet"),
  18662. weight: math.unit(100, "lb"),
  18663. name: "Front",
  18664. image: {
  18665. source: "./media/characters/luno/front.svg",
  18666. extra: 1535 / 1487,
  18667. bottom: 0.03
  18668. }
  18669. },
  18670. },
  18671. [
  18672. {
  18673. name: "Micro",
  18674. height: math.unit(3, "inches")
  18675. },
  18676. {
  18677. name: "Normal",
  18678. height: math.unit(4 + 11 / 12, "feet"),
  18679. default: true
  18680. },
  18681. {
  18682. name: "Macro",
  18683. height: math.unit(300, "feet")
  18684. },
  18685. {
  18686. name: "Megamacro",
  18687. height: math.unit(700, "miles")
  18688. },
  18689. ]
  18690. ))
  18691. characterMakers.push(() => makeCharacter(
  18692. { name: "Jamesy", species: ["deer"], tags: ["anthro"] },
  18693. {
  18694. front: {
  18695. height: math.unit(6 + 2 / 12, "feet"),
  18696. weight: math.unit(170, "lb"),
  18697. name: "Front",
  18698. image: {
  18699. source: "./media/characters/jamesy/front.svg",
  18700. extra: 440 / 382,
  18701. bottom: 0.005
  18702. }
  18703. },
  18704. },
  18705. [
  18706. {
  18707. name: "Micro",
  18708. height: math.unit(3, "inches")
  18709. },
  18710. {
  18711. name: "Normal",
  18712. height: math.unit(6 + 2 / 12, "feet"),
  18713. default: true
  18714. },
  18715. {
  18716. name: "Macro",
  18717. height: math.unit(300, "feet")
  18718. },
  18719. {
  18720. name: "Megamacro",
  18721. height: math.unit(700, "miles")
  18722. },
  18723. ]
  18724. ))
  18725. characterMakers.push(() => makeCharacter(
  18726. { name: "Mark", species: ["fox"], tags: ["anthro"] },
  18727. {
  18728. front: {
  18729. height: math.unit(6, "feet"),
  18730. weight: math.unit(160, "lb"),
  18731. name: "Front",
  18732. image: {
  18733. source: "./media/characters/mark/front.svg",
  18734. extra: 3300 / 3100,
  18735. bottom: 136.42 / 3440.47
  18736. }
  18737. },
  18738. },
  18739. [
  18740. {
  18741. name: "Macro",
  18742. height: math.unit(120, "meters")
  18743. },
  18744. {
  18745. name: "Bigger Macro",
  18746. height: math.unit(350, "meters")
  18747. },
  18748. {
  18749. name: "Megamacro",
  18750. height: math.unit(8, "km"),
  18751. default: true
  18752. },
  18753. {
  18754. name: "Continental",
  18755. height: math.unit(4550, "km")
  18756. },
  18757. {
  18758. name: "Planetary",
  18759. height: math.unit(65000, "km")
  18760. },
  18761. ]
  18762. ))
  18763. characterMakers.push(() => makeCharacter(
  18764. { name: "Mac", species: ["t-rex"], tags: ["anthro"] },
  18765. {
  18766. front: {
  18767. height: math.unit(6, "feet"),
  18768. weight: math.unit(400, "lb"),
  18769. name: "Front",
  18770. image: {
  18771. source: "./media/characters/mac/front.svg",
  18772. extra: 1048 / 987.7,
  18773. bottom: 60 / 1107.6,
  18774. }
  18775. },
  18776. },
  18777. [
  18778. {
  18779. name: "Macro",
  18780. height: math.unit(500, "feet"),
  18781. default: true
  18782. },
  18783. ]
  18784. ))
  18785. characterMakers.push(() => makeCharacter(
  18786. { name: "Bari", species: ["ampharos"], tags: ["anthro"] },
  18787. {
  18788. front: {
  18789. height: math.unit(5 + 2 / 12, "feet"),
  18790. weight: math.unit(190, "lb"),
  18791. name: "Front",
  18792. image: {
  18793. source: "./media/characters/bari/front.svg",
  18794. extra: 3156 / 2880,
  18795. bottom: 0.03
  18796. }
  18797. },
  18798. back: {
  18799. height: math.unit(5 + 2 / 12, "feet"),
  18800. weight: math.unit(190, "lb"),
  18801. name: "Back",
  18802. image: {
  18803. source: "./media/characters/bari/back.svg",
  18804. extra: 3260 / 2834,
  18805. bottom: 0.025
  18806. }
  18807. },
  18808. frontPlush: {
  18809. height: math.unit(5 + 2 / 12, "feet"),
  18810. weight: math.unit(190, "lb"),
  18811. name: "Front (Plush)",
  18812. image: {
  18813. source: "./media/characters/bari/front-plush.svg",
  18814. extra: 1112 / 1061,
  18815. bottom: 0.002
  18816. }
  18817. },
  18818. },
  18819. [
  18820. {
  18821. name: "Micro",
  18822. height: math.unit(3, "inches")
  18823. },
  18824. {
  18825. name: "Normal",
  18826. height: math.unit(5 + 2 / 12, "feet"),
  18827. default: true
  18828. },
  18829. {
  18830. name: "Macro",
  18831. height: math.unit(20, "feet")
  18832. },
  18833. ]
  18834. ))
  18835. characterMakers.push(() => makeCharacter(
  18836. { name: "Hunter Misha Raven", species: ["saint-bernard"], tags: ["anthro"] },
  18837. {
  18838. front: {
  18839. height: math.unit(6 + 1 / 12, "feet"),
  18840. weight: math.unit(275, "lb"),
  18841. name: "Front",
  18842. image: {
  18843. source: "./media/characters/hunter-misha-raven/front.svg"
  18844. }
  18845. },
  18846. },
  18847. [
  18848. {
  18849. name: "Mortal",
  18850. height: math.unit(6 + 1 / 12, "feet")
  18851. },
  18852. {
  18853. name: "Divine",
  18854. height: math.unit(1.12134e34, "parsecs"),
  18855. default: true
  18856. },
  18857. ]
  18858. ))
  18859. characterMakers.push(() => makeCharacter(
  18860. { name: "Max Calore", species: ["typhlosion"], tags: ["anthro"] },
  18861. {
  18862. front: {
  18863. height: math.unit(6 + 3 / 12, "feet"),
  18864. weight: math.unit(220, "lb"),
  18865. name: "Front",
  18866. image: {
  18867. source: "./media/characters/max-calore/front.svg",
  18868. extra: 1700 / 1648,
  18869. bottom: 0.01
  18870. }
  18871. },
  18872. back: {
  18873. height: math.unit(6 + 3 / 12, "feet"),
  18874. weight: math.unit(220, "lb"),
  18875. name: "Back",
  18876. image: {
  18877. source: "./media/characters/max-calore/back.svg",
  18878. extra: 1700 / 1648,
  18879. bottom: 0.01
  18880. }
  18881. },
  18882. },
  18883. [
  18884. {
  18885. name: "Normal",
  18886. height: math.unit(6 + 3 / 12, "feet"),
  18887. default: true
  18888. },
  18889. ]
  18890. ))
  18891. characterMakers.push(() => makeCharacter(
  18892. { name: "Aspen", species: ["mexican-wolf"], tags: ["feral"] },
  18893. {
  18894. side: {
  18895. height: math.unit(2 + 8 / 12, "feet"),
  18896. weight: math.unit(99, "lb"),
  18897. name: "Side",
  18898. image: {
  18899. source: "./media/characters/aspen/side.svg",
  18900. extra: 152 / 138,
  18901. bottom: 0.032
  18902. }
  18903. },
  18904. },
  18905. [
  18906. {
  18907. name: "Normal",
  18908. height: math.unit(2 + 8 / 12, "feet"),
  18909. default: true
  18910. },
  18911. ]
  18912. ))
  18913. characterMakers.push(() => makeCharacter(
  18914. { name: "Sheila (Feral Wolf)", species: ["wolf"], tags: ["feral"] },
  18915. {
  18916. side: {
  18917. height: math.unit(3 + 2 / 12, "feet"),
  18918. weight: math.unit(224, "lb"),
  18919. name: "Side",
  18920. image: {
  18921. source: "./media/characters/sheila-feral-wolf/side.svg",
  18922. extra: 179 / 166,
  18923. bottom: 0.03
  18924. }
  18925. },
  18926. },
  18927. [
  18928. {
  18929. name: "Normal",
  18930. height: math.unit(3 + 2 / 12, "feet"),
  18931. default: true
  18932. },
  18933. ]
  18934. ))
  18935. characterMakers.push(() => makeCharacter(
  18936. { name: "Michelle", species: ["fox"], tags: ["feral"] },
  18937. {
  18938. side: {
  18939. height: math.unit(1 + 9 / 12, "feet"),
  18940. weight: math.unit(38, "lb"),
  18941. name: "Side",
  18942. image: {
  18943. source: "./media/characters/michelle/side.svg",
  18944. extra: 147 / 136.7,
  18945. bottom: 0.03
  18946. }
  18947. },
  18948. },
  18949. [
  18950. {
  18951. name: "Normal",
  18952. height: math.unit(1 + 9 / 12, "feet"),
  18953. default: true
  18954. },
  18955. ]
  18956. ))
  18957. characterMakers.push(() => makeCharacter(
  18958. { name: "Nino", species: ["stoat"], tags: ["anthro"] },
  18959. {
  18960. front: {
  18961. height: math.unit(1.54, "feet"),
  18962. weight: math.unit(50, "lb"),
  18963. name: "Front",
  18964. image: {
  18965. source: "./media/characters/nino/front.svg"
  18966. }
  18967. },
  18968. },
  18969. [
  18970. {
  18971. name: "Normal",
  18972. height: math.unit(1.54, "feet"),
  18973. default: true
  18974. },
  18975. ]
  18976. ))
  18977. characterMakers.push(() => makeCharacter(
  18978. { name: "Viola", species: ["stoat"], tags: ["anthro"] },
  18979. {
  18980. front: {
  18981. height: math.unit(1.49, "feet"),
  18982. weight: math.unit(45, "lb"),
  18983. name: "Front",
  18984. image: {
  18985. source: "./media/characters/viola/front.svg"
  18986. }
  18987. },
  18988. },
  18989. [
  18990. {
  18991. name: "Normal",
  18992. height: math.unit(1.49, "feet"),
  18993. default: true
  18994. },
  18995. ]
  18996. ))
  18997. characterMakers.push(() => makeCharacter(
  18998. { name: "Atlas", species: ["grizzly-bear"], tags: ["anthro"] },
  18999. {
  19000. front: {
  19001. height: math.unit(6 + 5 / 12, "feet"),
  19002. weight: math.unit(580, "lb"),
  19003. name: "Front",
  19004. image: {
  19005. source: "./media/characters/atlas/front.svg",
  19006. extra: 298.5 / 290,
  19007. bottom: 0.015
  19008. }
  19009. },
  19010. },
  19011. [
  19012. {
  19013. name: "Normal",
  19014. height: math.unit(6 + 5 / 12, "feet"),
  19015. default: true
  19016. },
  19017. ]
  19018. ))
  19019. characterMakers.push(() => makeCharacter(
  19020. { name: "Davy", species: ["cat"], tags: ["feral"] },
  19021. {
  19022. side: {
  19023. height: math.unit(15.6, "inches"),
  19024. weight: math.unit(10, "lb"),
  19025. name: "Side",
  19026. image: {
  19027. source: "./media/characters/davy/side.svg",
  19028. extra: 200 / 170,
  19029. bottom: 0.01
  19030. }
  19031. },
  19032. },
  19033. [
  19034. {
  19035. name: "Normal",
  19036. height: math.unit(15.6, "inches"),
  19037. default: true
  19038. },
  19039. ]
  19040. ))
  19041. characterMakers.push(() => makeCharacter(
  19042. { name: "Fiona", species: ["deer"], tags: ["feral"] },
  19043. {
  19044. side: {
  19045. height: math.unit(4 + 8 / 12, "feet"),
  19046. weight: math.unit(166, "lb"),
  19047. name: "Side",
  19048. image: {
  19049. source: "./media/characters/fiona/side.svg",
  19050. extra: 232 / 220,
  19051. bottom: 0.03
  19052. }
  19053. },
  19054. },
  19055. [
  19056. {
  19057. name: "Normal",
  19058. height: math.unit(4 + 8 / 12, "feet"),
  19059. default: true
  19060. },
  19061. ]
  19062. ))
  19063. characterMakers.push(() => makeCharacter(
  19064. { name: "Lyla", species: ["european-honey-buzzard"], tags: ["feral"] },
  19065. {
  19066. front: {
  19067. height: math.unit(26, "inches"),
  19068. weight: math.unit(35, "lb"),
  19069. name: "Front",
  19070. image: {
  19071. source: "./media/characters/lyla/front.svg",
  19072. bottom: 0.1
  19073. }
  19074. },
  19075. },
  19076. [
  19077. {
  19078. name: "Normal",
  19079. height: math.unit(3, "feet"),
  19080. default: true
  19081. },
  19082. ]
  19083. ))
  19084. characterMakers.push(() => makeCharacter(
  19085. { name: "Perseus", species: ["monitor-lizard"], tags: ["feral"] },
  19086. {
  19087. side: {
  19088. height: math.unit(1.8, "feet"),
  19089. weight: math.unit(44, "lb"),
  19090. name: "Side",
  19091. image: {
  19092. source: "./media/characters/perseus/side.svg",
  19093. bottom: 0.21
  19094. }
  19095. },
  19096. },
  19097. [
  19098. {
  19099. name: "Normal",
  19100. height: math.unit(1.8, "feet"),
  19101. default: true
  19102. },
  19103. ]
  19104. ))
  19105. characterMakers.push(() => makeCharacter(
  19106. { name: "Remus", species: ["great-blue-heron"], tags: ["feral"] },
  19107. {
  19108. side: {
  19109. height: math.unit(4 + 2 / 12, "feet"),
  19110. weight: math.unit(20, "lb"),
  19111. name: "Side",
  19112. image: {
  19113. source: "./media/characters/remus/side.svg"
  19114. }
  19115. },
  19116. },
  19117. [
  19118. {
  19119. name: "Normal",
  19120. height: math.unit(4 + 2 / 12, "feet"),
  19121. default: true
  19122. },
  19123. ]
  19124. ))
  19125. characterMakers.push(() => makeCharacter(
  19126. { name: "Raf", species: ["maned-wolf"], tags: ["anthro"] },
  19127. {
  19128. front: {
  19129. height: math.unit(4 + 11 / 12, "feet"),
  19130. weight: math.unit(114, "lb"),
  19131. name: "Front",
  19132. image: {
  19133. source: "./media/characters/raf/front.svg",
  19134. extra: 1504/1339,
  19135. bottom: 26/1530
  19136. }
  19137. },
  19138. side: {
  19139. height: math.unit(4 + 11 / 12, "feet"),
  19140. weight: math.unit(114, "lb"),
  19141. name: "Side",
  19142. image: {
  19143. source: "./media/characters/raf/side.svg",
  19144. extra: 1466/1316,
  19145. bottom: 29/1495
  19146. }
  19147. },
  19148. paw: {
  19149. height: math.unit(1.45, "feet"),
  19150. name: "Paw",
  19151. image: {
  19152. source: "./media/characters/raf/paw.svg"
  19153. },
  19154. extraAttributes: {
  19155. "toeSize": {
  19156. name: "Toe Size",
  19157. power: 2,
  19158. type: "area",
  19159. base: math.unit(0.004, "m^2")
  19160. },
  19161. "padSize": {
  19162. name: "Pad Size",
  19163. power: 2,
  19164. type: "area",
  19165. base: math.unit(0.04, "m^2")
  19166. },
  19167. "footSize": {
  19168. name: "Foot Size",
  19169. power: 2,
  19170. type: "area",
  19171. base: math.unit(0.08, "m^2")
  19172. },
  19173. }
  19174. },
  19175. },
  19176. [
  19177. {
  19178. name: "Micro",
  19179. height: math.unit(2, "inches")
  19180. },
  19181. {
  19182. name: "Normal",
  19183. height: math.unit(4 + 11 / 12, "feet"),
  19184. default: true
  19185. },
  19186. {
  19187. name: "Macro",
  19188. height: math.unit(70, "feet")
  19189. },
  19190. ]
  19191. ))
  19192. characterMakers.push(() => makeCharacter(
  19193. { name: "Liam Einarr", species: ["gray-wolf"], tags: ["anthro"] },
  19194. {
  19195. front: {
  19196. height: math.unit(1.5, "meters"),
  19197. weight: math.unit(68, "kg"),
  19198. name: "Front",
  19199. image: {
  19200. source: "./media/characters/liam-einarr/front.svg",
  19201. extra: 2822 / 2666
  19202. }
  19203. },
  19204. back: {
  19205. height: math.unit(1.5, "meters"),
  19206. weight: math.unit(68, "kg"),
  19207. name: "Back",
  19208. image: {
  19209. source: "./media/characters/liam-einarr/back.svg",
  19210. extra: 2822 / 2666,
  19211. bottom: 0.015
  19212. }
  19213. },
  19214. },
  19215. [
  19216. {
  19217. name: "Normal",
  19218. height: math.unit(1.5, "meters"),
  19219. default: true
  19220. },
  19221. {
  19222. name: "Macro",
  19223. height: math.unit(150, "meters")
  19224. },
  19225. {
  19226. name: "Megamacro",
  19227. height: math.unit(35, "km")
  19228. },
  19229. ]
  19230. ))
  19231. characterMakers.push(() => makeCharacter(
  19232. { name: "Linda", species: ["bull-terrier"], tags: ["anthro"] },
  19233. {
  19234. front: {
  19235. height: math.unit(6, "feet"),
  19236. weight: math.unit(75, "kg"),
  19237. name: "Front",
  19238. image: {
  19239. source: "./media/characters/linda/front.svg",
  19240. extra: 930 / 874,
  19241. bottom: 0.004
  19242. }
  19243. },
  19244. },
  19245. [
  19246. {
  19247. name: "Normal",
  19248. height: math.unit(6, "feet"),
  19249. default: true
  19250. },
  19251. ]
  19252. ))
  19253. characterMakers.push(() => makeCharacter(
  19254. { name: "Caylex", species: ["sergal"], tags: ["anthro"] },
  19255. {
  19256. front: {
  19257. height: math.unit(6 + 8 / 12, "feet"),
  19258. weight: math.unit(220, "lb"),
  19259. name: "Front",
  19260. image: {
  19261. source: "./media/characters/caylex/front.svg",
  19262. extra: 821 / 772,
  19263. bottom: 0.07
  19264. }
  19265. },
  19266. back: {
  19267. height: math.unit(6 + 8 / 12, "feet"),
  19268. weight: math.unit(220, "lb"),
  19269. name: "Back",
  19270. image: {
  19271. source: "./media/characters/caylex/back.svg",
  19272. extra: 821 / 772,
  19273. bottom: 0.022
  19274. }
  19275. },
  19276. hand: {
  19277. height: math.unit(1.25, "feet"),
  19278. name: "Hand",
  19279. image: {
  19280. source: "./media/characters/caylex/hand.svg"
  19281. }
  19282. },
  19283. foot: {
  19284. height: math.unit(1.6, "feet"),
  19285. name: "Foot",
  19286. image: {
  19287. source: "./media/characters/caylex/foot.svg"
  19288. }
  19289. },
  19290. armored: {
  19291. height: math.unit(6 + 8 / 12, "feet"),
  19292. weight: math.unit(250, "lb"),
  19293. name: "Armored",
  19294. image: {
  19295. source: "./media/characters/caylex/armored.svg",
  19296. extra: 1420 / 1310,
  19297. bottom: 0.045
  19298. }
  19299. },
  19300. },
  19301. [
  19302. {
  19303. name: "Normal",
  19304. height: math.unit(6 + 8 / 12, "feet"),
  19305. default: true
  19306. },
  19307. {
  19308. name: "Normal+",
  19309. height: math.unit(12, "feet")
  19310. },
  19311. ]
  19312. ))
  19313. characterMakers.push(() => makeCharacter(
  19314. { name: "Alana", species: ["wolf"], tags: ["anthro"] },
  19315. {
  19316. front: {
  19317. height: math.unit(7 + 6 / 12, "feet"),
  19318. weight: math.unit(288, "lb"),
  19319. name: "Front",
  19320. image: {
  19321. source: "./media/characters/alana/front.svg",
  19322. extra: 679 / 653,
  19323. bottom: 22.5 / 701
  19324. }
  19325. },
  19326. },
  19327. [
  19328. {
  19329. name: "Normal",
  19330. height: math.unit(7 + 6 / 12, "feet")
  19331. },
  19332. {
  19333. name: "Large",
  19334. height: math.unit(50, "feet")
  19335. },
  19336. {
  19337. name: "Macro",
  19338. height: math.unit(100, "feet"),
  19339. default: true
  19340. },
  19341. {
  19342. name: "Macro+",
  19343. height: math.unit(200, "feet")
  19344. },
  19345. ]
  19346. ))
  19347. characterMakers.push(() => makeCharacter(
  19348. { name: "Hasani", species: ["hyena"], tags: ["anthro"] },
  19349. {
  19350. front: {
  19351. height: math.unit(6 + 1 / 12, "feet"),
  19352. weight: math.unit(210, "lb"),
  19353. name: "Front",
  19354. image: {
  19355. source: "./media/characters/hasani/front.svg",
  19356. extra: 244 / 232,
  19357. bottom: 0.01
  19358. }
  19359. },
  19360. back: {
  19361. height: math.unit(6 + 1 / 12, "feet"),
  19362. weight: math.unit(210, "lb"),
  19363. name: "Back",
  19364. image: {
  19365. source: "./media/characters/hasani/back.svg",
  19366. extra: 244 / 232,
  19367. bottom: 0.01
  19368. }
  19369. },
  19370. },
  19371. [
  19372. {
  19373. name: "Normal",
  19374. height: math.unit(6 + 1 / 12, "feet")
  19375. },
  19376. {
  19377. name: "Macro",
  19378. height: math.unit(175, "feet"),
  19379. default: true
  19380. },
  19381. ]
  19382. ))
  19383. characterMakers.push(() => makeCharacter(
  19384. { name: "Nita", species: ["african-golden-cat"], tags: ["anthro"] },
  19385. {
  19386. front: {
  19387. height: math.unit(1.82, "meters"),
  19388. weight: math.unit(140, "lb"),
  19389. name: "Front",
  19390. image: {
  19391. source: "./media/characters/nita/front.svg",
  19392. extra: 2473 / 2363,
  19393. bottom: 0.01
  19394. }
  19395. },
  19396. },
  19397. [
  19398. {
  19399. name: "Normal",
  19400. height: math.unit(1.82, "m")
  19401. },
  19402. {
  19403. name: "Macro",
  19404. height: math.unit(300, "m")
  19405. },
  19406. {
  19407. name: "Mistake Canon",
  19408. height: math.unit(0.5, "miles"),
  19409. default: true
  19410. },
  19411. {
  19412. name: "Big Mistake",
  19413. height: math.unit(13, "miles")
  19414. },
  19415. {
  19416. name: "Playing God",
  19417. height: math.unit(2450, "miles")
  19418. },
  19419. ]
  19420. ))
  19421. characterMakers.push(() => makeCharacter(
  19422. { name: "Shiriko", species: ["kobold"], tags: ["anthro"] },
  19423. {
  19424. front: {
  19425. height: math.unit(4, "feet"),
  19426. weight: math.unit(120, "lb"),
  19427. name: "Front",
  19428. image: {
  19429. source: "./media/characters/shiriko/front.svg",
  19430. extra: 970/934,
  19431. bottom: 5/975
  19432. }
  19433. },
  19434. },
  19435. [
  19436. {
  19437. name: "Normal",
  19438. height: math.unit(4, "feet"),
  19439. default: true
  19440. },
  19441. ]
  19442. ))
  19443. characterMakers.push(() => makeCharacter(
  19444. { name: "Deja", species: ["kangaroo"], tags: ["anthro"] },
  19445. {
  19446. front: {
  19447. height: math.unit(6, "feet"),
  19448. name: "front",
  19449. image: {
  19450. source: "./media/characters/deja/front.svg",
  19451. extra: 926 / 840,
  19452. bottom: 0.07
  19453. }
  19454. },
  19455. },
  19456. [
  19457. {
  19458. name: "Planck Length",
  19459. height: math.unit(1.6e-35, "meters")
  19460. },
  19461. {
  19462. name: "Normal",
  19463. height: math.unit(30.48, "meters"),
  19464. default: true
  19465. },
  19466. {
  19467. name: "Universal",
  19468. height: math.unit(8.8e26, "meters")
  19469. },
  19470. ]
  19471. ))
  19472. characterMakers.push(() => makeCharacter(
  19473. { name: "Anima", species: ["black-panther"], tags: ["anthro"] },
  19474. {
  19475. side: {
  19476. height: math.unit(8, "feet"),
  19477. weight: math.unit(6300, "lb"),
  19478. name: "Side",
  19479. image: {
  19480. source: "./media/characters/anima/side.svg",
  19481. bottom: 0.035
  19482. }
  19483. },
  19484. },
  19485. [
  19486. {
  19487. name: "Normal",
  19488. height: math.unit(8, "feet"),
  19489. default: true
  19490. },
  19491. ]
  19492. ))
  19493. characterMakers.push(() => makeCharacter(
  19494. { name: "Bianca", species: ["cat", "rabbit"], tags: ["anthro"] },
  19495. {
  19496. front: {
  19497. height: math.unit(8, "feet"),
  19498. weight: math.unit(350, "lb"),
  19499. name: "Front",
  19500. image: {
  19501. source: "./media/characters/bianca/front.svg",
  19502. extra: 234 / 225,
  19503. bottom: 0.03
  19504. }
  19505. },
  19506. },
  19507. [
  19508. {
  19509. name: "Normal",
  19510. height: math.unit(8, "feet"),
  19511. default: true
  19512. },
  19513. ]
  19514. ))
  19515. characterMakers.push(() => makeCharacter(
  19516. { name: "Adinia", species: ["kelpie", "nykur"], tags: ["anthro"] },
  19517. {
  19518. front: {
  19519. height: math.unit(11 + 5/12, "feet"),
  19520. weight: math.unit(1200, "lb"),
  19521. name: "Front",
  19522. image: {
  19523. source: "./media/characters/adinia/front.svg",
  19524. extra: 1767/1641,
  19525. bottom: 44/1811
  19526. },
  19527. extraAttributes: {
  19528. "energyIntake": {
  19529. name: "Energy Intake",
  19530. power: 3,
  19531. type: "energy",
  19532. base: math.unit(2000 * 5 * 1200 / 150, "kcal")
  19533. },
  19534. }
  19535. },
  19536. back: {
  19537. height: math.unit(11 + 5/12, "feet"),
  19538. weight: math.unit(1200, "lb"),
  19539. name: "Back",
  19540. image: {
  19541. source: "./media/characters/adinia/back.svg",
  19542. extra: 1834/1684,
  19543. bottom: 14/1848
  19544. },
  19545. extraAttributes: {
  19546. "energyIntake": {
  19547. name: "Energy Intake",
  19548. power: 3,
  19549. type: "energy",
  19550. base: math.unit(2000 * 5 * 1200 / 150, "kcal")
  19551. },
  19552. }
  19553. },
  19554. maw: {
  19555. height: math.unit(3.79, "feet"),
  19556. name: "Maw",
  19557. image: {
  19558. source: "./media/characters/adinia/maw.svg"
  19559. }
  19560. },
  19561. rump: {
  19562. height: math.unit(4.6, "feet"),
  19563. name: "Rump",
  19564. image: {
  19565. source: "./media/characters/adinia/rump.svg"
  19566. }
  19567. },
  19568. },
  19569. [
  19570. {
  19571. name: "Normal",
  19572. height: math.unit(11 + 5 / 12, "feet"),
  19573. default: true
  19574. },
  19575. ]
  19576. ))
  19577. characterMakers.push(() => makeCharacter(
  19578. { name: "Lykasa", species: ["monster"], tags: ["anthro"] },
  19579. {
  19580. front: {
  19581. height: math.unit(3, "meters"),
  19582. weight: math.unit(200, "kg"),
  19583. name: "Front",
  19584. image: {
  19585. source: "./media/characters/lykasa/front.svg",
  19586. extra: 1076 / 976,
  19587. bottom: 0.06
  19588. }
  19589. },
  19590. },
  19591. [
  19592. {
  19593. name: "Normal",
  19594. height: math.unit(3, "meters")
  19595. },
  19596. {
  19597. name: "Kaiju",
  19598. height: math.unit(120, "meters"),
  19599. default: true
  19600. },
  19601. {
  19602. name: "Mega Kaiju",
  19603. height: math.unit(240, "km")
  19604. },
  19605. {
  19606. name: "Giga Kaiju",
  19607. height: math.unit(400, "megameters")
  19608. },
  19609. {
  19610. name: "Tera Kaiju",
  19611. height: math.unit(800, "gigameters")
  19612. },
  19613. {
  19614. name: "Kaiju Dragon Goddess",
  19615. height: math.unit(26, "zettaparsecs")
  19616. },
  19617. ]
  19618. ))
  19619. characterMakers.push(() => makeCharacter(
  19620. { name: "Malfaren", species: ["dragon"], tags: ["feral"] },
  19621. {
  19622. side: {
  19623. height: math.unit(283 / 124 * 6, "feet"),
  19624. weight: math.unit(35000, "lb"),
  19625. name: "Side",
  19626. image: {
  19627. source: "./media/characters/malfaren/side.svg",
  19628. extra: 1310/529,
  19629. bottom: 24/1334
  19630. }
  19631. },
  19632. front: {
  19633. height: math.unit(22.36, "feet"),
  19634. weight: math.unit(35000, "lb"),
  19635. name: "Front",
  19636. image: {
  19637. source: "./media/characters/malfaren/front.svg",
  19638. extra: 1237/1115,
  19639. bottom: 32/1269
  19640. }
  19641. },
  19642. maw: {
  19643. height: math.unit(6.9, "feet"),
  19644. name: "Maw",
  19645. image: {
  19646. source: "./media/characters/malfaren/maw.svg"
  19647. }
  19648. },
  19649. dick: {
  19650. height: math.unit(6.19, "feet"),
  19651. name: "Dick",
  19652. image: {
  19653. source: "./media/characters/malfaren/dick.svg"
  19654. }
  19655. },
  19656. eye: {
  19657. height: math.unit(0.69, "feet"),
  19658. name: "Eye",
  19659. image: {
  19660. source: "./media/characters/malfaren/eye.svg"
  19661. }
  19662. },
  19663. },
  19664. [
  19665. {
  19666. name: "Big",
  19667. height: math.unit(283 / 162 * 6, "feet"),
  19668. },
  19669. {
  19670. name: "Bigger",
  19671. height: math.unit(283 / 124 * 6, "feet")
  19672. },
  19673. {
  19674. name: "Massive",
  19675. height: math.unit(283 / 92 * 6, "feet"),
  19676. default: true
  19677. },
  19678. {
  19679. name: "👀💦",
  19680. height: math.unit(283 / 73 * 6, "feet"),
  19681. },
  19682. ]
  19683. ))
  19684. characterMakers.push(() => makeCharacter(
  19685. { name: "Kernel", species: ["wolf"], tags: ["anthro"] },
  19686. {
  19687. front: {
  19688. height: math.unit(1.7, "m"),
  19689. weight: math.unit(70, "kg"),
  19690. name: "Front",
  19691. image: {
  19692. source: "./media/characters/kernel/front.svg",
  19693. extra: 222 / 210,
  19694. bottom: 0.007
  19695. }
  19696. },
  19697. },
  19698. [
  19699. {
  19700. name: "Nano",
  19701. height: math.unit(17, "micrometers")
  19702. },
  19703. {
  19704. name: "Micro",
  19705. height: math.unit(1.7, "mm")
  19706. },
  19707. {
  19708. name: "Small",
  19709. height: math.unit(1.7, "cm")
  19710. },
  19711. {
  19712. name: "Normal",
  19713. height: math.unit(1.7, "m"),
  19714. default: true
  19715. },
  19716. ]
  19717. ))
  19718. characterMakers.push(() => makeCharacter(
  19719. { name: "Jayne Folest", species: ["fox"], tags: ["anthro"] },
  19720. {
  19721. front: {
  19722. height: math.unit(1.75, "meters"),
  19723. weight: math.unit(65, "kg"),
  19724. name: "Front",
  19725. image: {
  19726. source: "./media/characters/jayne-folest/front.svg",
  19727. extra: 2115 / 2007,
  19728. bottom: 0.02
  19729. }
  19730. },
  19731. back: {
  19732. height: math.unit(1.75, "meters"),
  19733. weight: math.unit(65, "kg"),
  19734. name: "Back",
  19735. image: {
  19736. source: "./media/characters/jayne-folest/back.svg",
  19737. extra: 2115 / 2007,
  19738. bottom: 0.005
  19739. }
  19740. },
  19741. frontClothed: {
  19742. height: math.unit(1.75, "meters"),
  19743. weight: math.unit(65, "kg"),
  19744. name: "Front (Clothed)",
  19745. image: {
  19746. source: "./media/characters/jayne-folest/front-clothed.svg",
  19747. extra: 2115 / 2007,
  19748. bottom: 0.035
  19749. }
  19750. },
  19751. hand: {
  19752. height: math.unit(1 / 1.260, "feet"),
  19753. name: "Hand",
  19754. image: {
  19755. source: "./media/characters/jayne-folest/hand.svg"
  19756. }
  19757. },
  19758. foot: {
  19759. height: math.unit(1 / 0.918, "feet"),
  19760. name: "Foot",
  19761. image: {
  19762. source: "./media/characters/jayne-folest/foot.svg"
  19763. }
  19764. },
  19765. },
  19766. [
  19767. {
  19768. name: "Micro",
  19769. height: math.unit(4, "cm")
  19770. },
  19771. {
  19772. name: "Normal",
  19773. height: math.unit(1.75, "meters")
  19774. },
  19775. {
  19776. name: "Macro",
  19777. height: math.unit(47.5, "meters"),
  19778. default: true
  19779. },
  19780. ]
  19781. ))
  19782. characterMakers.push(() => makeCharacter(
  19783. { name: "Algier", species: ["mouse"], tags: ["anthro"] },
  19784. {
  19785. front: {
  19786. height: math.unit(180, "cm"),
  19787. weight: math.unit(70, "kg"),
  19788. name: "Front",
  19789. image: {
  19790. source: "./media/characters/algier/front.svg",
  19791. extra: 596 / 572,
  19792. bottom: 0.04
  19793. }
  19794. },
  19795. back: {
  19796. height: math.unit(180, "cm"),
  19797. weight: math.unit(70, "kg"),
  19798. name: "Back",
  19799. image: {
  19800. source: "./media/characters/algier/back.svg",
  19801. extra: 596 / 572,
  19802. bottom: 0.025
  19803. }
  19804. },
  19805. frontdressed: {
  19806. height: math.unit(180, "cm"),
  19807. weight: math.unit(150, "kg"),
  19808. name: "Front-dressed",
  19809. image: {
  19810. source: "./media/characters/algier/front-dressed.svg",
  19811. extra: 596 / 572,
  19812. bottom: 0.038
  19813. }
  19814. },
  19815. },
  19816. [
  19817. {
  19818. name: "Micro",
  19819. height: math.unit(5, "cm")
  19820. },
  19821. {
  19822. name: "Normal",
  19823. height: math.unit(180, "cm"),
  19824. default: true
  19825. },
  19826. {
  19827. name: "Macro",
  19828. height: math.unit(64, "m")
  19829. },
  19830. ]
  19831. ))
  19832. characterMakers.push(() => makeCharacter(
  19833. { name: "Pretzel", species: ["synx"], tags: ["anthro"] },
  19834. {
  19835. upright: {
  19836. height: math.unit(7, "feet"),
  19837. weight: math.unit(300, "lb"),
  19838. name: "Upright",
  19839. image: {
  19840. source: "./media/characters/pretzel/upright.svg",
  19841. extra: 534 / 522,
  19842. bottom: 0.065
  19843. }
  19844. },
  19845. sprawling: {
  19846. height: math.unit(3.75, "feet"),
  19847. weight: math.unit(300, "lb"),
  19848. name: "Sprawling",
  19849. image: {
  19850. source: "./media/characters/pretzel/sprawling.svg",
  19851. extra: 314 / 281,
  19852. bottom: 0.1
  19853. }
  19854. },
  19855. tongue: {
  19856. height: math.unit(2, "feet"),
  19857. name: "Tongue",
  19858. image: {
  19859. source: "./media/characters/pretzel/tongue.svg"
  19860. }
  19861. },
  19862. },
  19863. [
  19864. {
  19865. name: "Normal",
  19866. height: math.unit(7, "feet"),
  19867. default: true
  19868. },
  19869. {
  19870. name: "Oversized",
  19871. height: math.unit(15, "feet")
  19872. },
  19873. {
  19874. name: "Huge",
  19875. height: math.unit(30, "feet")
  19876. },
  19877. {
  19878. name: "Macro",
  19879. height: math.unit(250, "feet")
  19880. },
  19881. ]
  19882. ))
  19883. characterMakers.push(() => makeCharacter(
  19884. { name: "Roxi", species: ["fox"], tags: ["anthro", "feral"] },
  19885. {
  19886. sideFront: {
  19887. height: math.unit(5 + 2 / 12, "feet"),
  19888. weight: math.unit(120, "lb"),
  19889. name: "Front Side",
  19890. image: {
  19891. source: "./media/characters/roxi/side-front.svg",
  19892. extra: 2924 / 2717,
  19893. bottom: 0.08
  19894. }
  19895. },
  19896. sideBack: {
  19897. height: math.unit(5 + 2 / 12, "feet"),
  19898. weight: math.unit(120, "lb"),
  19899. name: "Back Side",
  19900. image: {
  19901. source: "./media/characters/roxi/side-back.svg",
  19902. extra: 2904 / 2693,
  19903. bottom: 0.06
  19904. }
  19905. },
  19906. front: {
  19907. height: math.unit(5 + 2 / 12, "feet"),
  19908. weight: math.unit(120, "lb"),
  19909. name: "Front",
  19910. image: {
  19911. source: "./media/characters/roxi/front.svg",
  19912. extra: 2028 / 1907,
  19913. bottom: 0.01
  19914. }
  19915. },
  19916. frontAlt: {
  19917. height: math.unit(5 + 2 / 12, "feet"),
  19918. weight: math.unit(120, "lb"),
  19919. name: "Front (Alt)",
  19920. image: {
  19921. source: "./media/characters/roxi/front-alt.svg",
  19922. extra: 1828 / 1798,
  19923. bottom: 0.01
  19924. }
  19925. },
  19926. sitting: {
  19927. height: math.unit(2.8, "feet"),
  19928. weight: math.unit(120, "lb"),
  19929. name: "Sitting",
  19930. image: {
  19931. source: "./media/characters/roxi/sitting.svg",
  19932. extra: 2660 / 2462,
  19933. bottom: 0.1
  19934. }
  19935. },
  19936. },
  19937. [
  19938. {
  19939. name: "Normal",
  19940. height: math.unit(5 + 2 / 12, "feet"),
  19941. default: true
  19942. },
  19943. ]
  19944. ))
  19945. characterMakers.push(() => makeCharacter(
  19946. { name: "Shadow", species: ["dragon"], tags: ["feral"] },
  19947. {
  19948. side: {
  19949. height: math.unit(55, "feet"),
  19950. weight: math.unit(153, "tons"),
  19951. name: "Side",
  19952. image: {
  19953. source: "./media/characters/shadow/side.svg",
  19954. extra: 701 / 628,
  19955. bottom: 0.02
  19956. }
  19957. },
  19958. flying: {
  19959. height: math.unit(145, "feet"),
  19960. weight: math.unit(153, "tons"),
  19961. name: "Flying",
  19962. image: {
  19963. source: "./media/characters/shadow/flying.svg"
  19964. }
  19965. },
  19966. },
  19967. [
  19968. {
  19969. name: "Normal",
  19970. height: math.unit(55, "feet"),
  19971. default: true
  19972. },
  19973. ]
  19974. ))
  19975. characterMakers.push(() => makeCharacter(
  19976. { name: "Marcie", species: ["kangaroo"], tags: ["anthro"] },
  19977. {
  19978. front: {
  19979. height: math.unit(6, "feet"),
  19980. weight: math.unit(200, "lb"),
  19981. name: "Front",
  19982. image: {
  19983. source: "./media/characters/marcie/front.svg",
  19984. extra: 960 / 876,
  19985. bottom: 58 / 1017.87
  19986. }
  19987. },
  19988. },
  19989. [
  19990. {
  19991. name: "Macro",
  19992. height: math.unit(1, "mile"),
  19993. default: true
  19994. },
  19995. ]
  19996. ))
  19997. characterMakers.push(() => makeCharacter(
  19998. { name: "Kachina", species: ["wolf"], tags: ["anthro"] },
  19999. {
  20000. front: {
  20001. height: math.unit(7, "feet"),
  20002. weight: math.unit(200, "lb"),
  20003. name: "Front",
  20004. image: {
  20005. source: "./media/characters/kachina/front.svg",
  20006. extra: 1290.68 / 1119,
  20007. bottom: 36.5 / 1327.18
  20008. }
  20009. },
  20010. },
  20011. [
  20012. {
  20013. name: "Normal",
  20014. height: math.unit(7, "feet"),
  20015. default: true
  20016. },
  20017. ]
  20018. ))
  20019. characterMakers.push(() => makeCharacter(
  20020. { name: "Kash", species: ["canine"], tags: ["feral"] },
  20021. {
  20022. looking: {
  20023. height: math.unit(2, "meters"),
  20024. weight: math.unit(300, "kg"),
  20025. name: "Looking",
  20026. image: {
  20027. source: "./media/characters/kash/looking.svg",
  20028. extra: 474 / 344,
  20029. bottom: 0.03
  20030. }
  20031. },
  20032. side: {
  20033. height: math.unit(2, "meters"),
  20034. weight: math.unit(300, "kg"),
  20035. name: "Side",
  20036. image: {
  20037. source: "./media/characters/kash/side.svg",
  20038. extra: 302 / 251,
  20039. bottom: 0.03
  20040. }
  20041. },
  20042. front: {
  20043. height: math.unit(2, "meters"),
  20044. weight: math.unit(300, "kg"),
  20045. name: "Front",
  20046. image: {
  20047. source: "./media/characters/kash/front.svg",
  20048. extra: 495 / 360,
  20049. bottom: 0.015
  20050. }
  20051. },
  20052. },
  20053. [
  20054. {
  20055. name: "Normal",
  20056. height: math.unit(2, "meters"),
  20057. default: true
  20058. },
  20059. {
  20060. name: "Big",
  20061. height: math.unit(3, "meters")
  20062. },
  20063. {
  20064. name: "Large",
  20065. height: math.unit(5, "meters")
  20066. },
  20067. ]
  20068. ))
  20069. characterMakers.push(() => makeCharacter(
  20070. { name: "Lalim", species: ["dragon"], tags: ["feral"] },
  20071. {
  20072. feeding: {
  20073. height: math.unit(6.7, "feet"),
  20074. weight: math.unit(350, "lb"),
  20075. name: "Feeding",
  20076. image: {
  20077. source: "./media/characters/lalim/feeding.svg",
  20078. }
  20079. },
  20080. },
  20081. [
  20082. {
  20083. name: "Normal",
  20084. height: math.unit(6.7, "feet"),
  20085. default: true
  20086. },
  20087. ]
  20088. ))
  20089. characterMakers.push(() => makeCharacter(
  20090. { name: "De'Vout", species: ["dragon"], tags: ["anthro"] },
  20091. {
  20092. front: {
  20093. height: math.unit(9.5, "feet"),
  20094. weight: math.unit(600, "lb"),
  20095. name: "Front",
  20096. image: {
  20097. source: "./media/characters/de'vout/front.svg",
  20098. extra: 1443 / 1328,
  20099. bottom: 0.025
  20100. }
  20101. },
  20102. back: {
  20103. height: math.unit(9.5, "feet"),
  20104. weight: math.unit(600, "lb"),
  20105. name: "Back",
  20106. image: {
  20107. source: "./media/characters/de'vout/back.svg",
  20108. extra: 1443 / 1328
  20109. }
  20110. },
  20111. frontDressed: {
  20112. height: math.unit(9.5, "feet"),
  20113. weight: math.unit(600, "lb"),
  20114. name: "Front (Dressed",
  20115. image: {
  20116. source: "./media/characters/de'vout/front-dressed.svg",
  20117. extra: 1443 / 1328,
  20118. bottom: 0.025
  20119. }
  20120. },
  20121. backDressed: {
  20122. height: math.unit(9.5, "feet"),
  20123. weight: math.unit(600, "lb"),
  20124. name: "Back (Dressed",
  20125. image: {
  20126. source: "./media/characters/de'vout/back-dressed.svg",
  20127. extra: 1443 / 1328
  20128. }
  20129. },
  20130. },
  20131. [
  20132. {
  20133. name: "Normal",
  20134. height: math.unit(9.5, "feet"),
  20135. default: true
  20136. },
  20137. ]
  20138. ))
  20139. characterMakers.push(() => makeCharacter(
  20140. { name: "Talana", species: ["dragon"], tags: ["anthro"] },
  20141. {
  20142. front: {
  20143. height: math.unit(8, "feet"),
  20144. weight: math.unit(225, "lb"),
  20145. name: "Front",
  20146. image: {
  20147. source: "./media/characters/talana/front.svg",
  20148. extra: 1410 / 1300,
  20149. bottom: 0.015
  20150. }
  20151. },
  20152. frontDressed: {
  20153. height: math.unit(8, "feet"),
  20154. weight: math.unit(225, "lb"),
  20155. name: "Front (Dressed",
  20156. image: {
  20157. source: "./media/characters/talana/front-dressed.svg",
  20158. extra: 1410 / 1300,
  20159. bottom: 0.015
  20160. }
  20161. },
  20162. },
  20163. [
  20164. {
  20165. name: "Normal",
  20166. height: math.unit(8, "feet"),
  20167. default: true
  20168. },
  20169. ]
  20170. ))
  20171. characterMakers.push(() => makeCharacter(
  20172. { name: "Xeauvok", species: ["monster"], tags: ["anthro"] },
  20173. {
  20174. side: {
  20175. height: math.unit(7.2, "feet"),
  20176. weight: math.unit(150, "lb"),
  20177. name: "Side",
  20178. image: {
  20179. source: "./media/characters/xeauvok/side.svg",
  20180. extra: 1975 / 1523,
  20181. bottom: 0.07
  20182. }
  20183. },
  20184. },
  20185. [
  20186. {
  20187. name: "Normal",
  20188. height: math.unit(7.2, "feet"),
  20189. default: true
  20190. },
  20191. ]
  20192. ))
  20193. characterMakers.push(() => makeCharacter(
  20194. { name: "Zara", species: ["human", "horse"], tags: ["taur"] },
  20195. {
  20196. side: {
  20197. height: math.unit(4, "meters"),
  20198. weight: math.unit(2200, "kg"),
  20199. name: "Side",
  20200. image: {
  20201. source: "./media/characters/zara/side.svg",
  20202. extra: 765/744,
  20203. bottom: 156/921
  20204. }
  20205. },
  20206. },
  20207. [
  20208. {
  20209. name: "Normal",
  20210. height: math.unit(4, "meters"),
  20211. default: true
  20212. },
  20213. ]
  20214. ))
  20215. characterMakers.push(() => makeCharacter(
  20216. { name: "Richard (Dragon)", species: ["dragon"], tags: ["feral"] },
  20217. {
  20218. side: {
  20219. height: math.unit(6, "feet"),
  20220. weight: math.unit(150, "lb"),
  20221. name: "Side",
  20222. image: {
  20223. source: "./media/characters/richard-dragon/side.svg",
  20224. extra: 845 / 340,
  20225. bottom: 0.017
  20226. }
  20227. },
  20228. maw: {
  20229. height: math.unit(2.97, "feet"),
  20230. name: "Maw",
  20231. image: {
  20232. source: "./media/characters/richard-dragon/maw.svg"
  20233. }
  20234. },
  20235. },
  20236. [
  20237. ]
  20238. ))
  20239. characterMakers.push(() => makeCharacter(
  20240. { name: "Richard (Smeargle)", species: ["smeargle"], tags: ["anthro"] },
  20241. {
  20242. front: {
  20243. height: math.unit(4, "feet"),
  20244. weight: math.unit(100, "lb"),
  20245. name: "Front",
  20246. image: {
  20247. source: "./media/characters/richard-smeargle/front.svg",
  20248. extra: 2952 / 2820,
  20249. bottom: 0.028
  20250. }
  20251. },
  20252. },
  20253. [
  20254. {
  20255. name: "Normal",
  20256. height: math.unit(4, "feet"),
  20257. default: true
  20258. },
  20259. {
  20260. name: "Dynamax",
  20261. height: math.unit(20, "meters")
  20262. },
  20263. ]
  20264. ))
  20265. characterMakers.push(() => makeCharacter(
  20266. { name: "Klay", species: ["flying-fox"], tags: ["anthro"] },
  20267. {
  20268. front: {
  20269. height: math.unit(6, "feet"),
  20270. weight: math.unit(110, "lb"),
  20271. name: "Front",
  20272. image: {
  20273. source: "./media/characters/klay/front.svg",
  20274. extra: 962 / 883,
  20275. bottom: 0.04
  20276. }
  20277. },
  20278. back: {
  20279. height: math.unit(6, "feet"),
  20280. weight: math.unit(110, "lb"),
  20281. name: "Back",
  20282. image: {
  20283. source: "./media/characters/klay/back.svg",
  20284. extra: 962 / 883
  20285. }
  20286. },
  20287. beans: {
  20288. height: math.unit(1.15, "feet"),
  20289. name: "Beans",
  20290. image: {
  20291. source: "./media/characters/klay/beans.svg"
  20292. }
  20293. },
  20294. },
  20295. [
  20296. {
  20297. name: "Micro",
  20298. height: math.unit(6, "inches")
  20299. },
  20300. {
  20301. name: "Mini",
  20302. height: math.unit(3, "feet")
  20303. },
  20304. {
  20305. name: "Normal",
  20306. height: math.unit(6, "feet"),
  20307. default: true
  20308. },
  20309. {
  20310. name: "Big",
  20311. height: math.unit(25, "feet")
  20312. },
  20313. {
  20314. name: "Macro",
  20315. height: math.unit(100, "feet")
  20316. },
  20317. {
  20318. name: "Megamacro",
  20319. height: math.unit(400, "feet")
  20320. },
  20321. ]
  20322. ))
  20323. characterMakers.push(() => makeCharacter(
  20324. { name: "Marcus", species: ["skunk"], tags: ["anthro"] },
  20325. {
  20326. front: {
  20327. height: math.unit(6, "feet"),
  20328. weight: math.unit(160, "lb"),
  20329. name: "Front",
  20330. image: {
  20331. source: "./media/characters/marcus/front.svg",
  20332. extra: 734 / 676,
  20333. bottom: 0.03
  20334. }
  20335. },
  20336. },
  20337. [
  20338. {
  20339. name: "Little",
  20340. height: math.unit(6, "feet")
  20341. },
  20342. {
  20343. name: "Normal",
  20344. height: math.unit(110, "feet"),
  20345. default: true
  20346. },
  20347. {
  20348. name: "Macro",
  20349. height: math.unit(250, "feet")
  20350. },
  20351. {
  20352. name: "Megamacro",
  20353. height: math.unit(1000, "feet")
  20354. },
  20355. ]
  20356. ))
  20357. characterMakers.push(() => makeCharacter(
  20358. { name: "Claude DelRoute", species: ["goat"], tags: ["anthro"] },
  20359. {
  20360. front: {
  20361. height: math.unit(7, "feet"),
  20362. weight: math.unit(275, "lb"),
  20363. name: "Front",
  20364. image: {
  20365. source: "./media/characters/claude-delroute/front.svg",
  20366. extra: 902/827,
  20367. bottom: 26/928
  20368. }
  20369. },
  20370. side: {
  20371. height: math.unit(7, "feet"),
  20372. weight: math.unit(275, "lb"),
  20373. name: "Side",
  20374. image: {
  20375. source: "./media/characters/claude-delroute/side.svg",
  20376. extra: 908/853,
  20377. bottom: 16/924
  20378. }
  20379. },
  20380. back: {
  20381. height: math.unit(7, "feet"),
  20382. weight: math.unit(275, "lb"),
  20383. name: "Back",
  20384. image: {
  20385. source: "./media/characters/claude-delroute/back.svg",
  20386. extra: 911/829,
  20387. bottom: 18/929
  20388. }
  20389. },
  20390. maw: {
  20391. height: math.unit(0.6407, "meters"),
  20392. name: "Maw",
  20393. image: {
  20394. source: "./media/characters/claude-delroute/maw.svg"
  20395. }
  20396. },
  20397. },
  20398. [
  20399. {
  20400. name: "Normal",
  20401. height: math.unit(7, "feet"),
  20402. default: true
  20403. },
  20404. {
  20405. name: "Lorge",
  20406. height: math.unit(20, "feet")
  20407. },
  20408. ]
  20409. ))
  20410. characterMakers.push(() => makeCharacter(
  20411. { name: "Dragonien", species: ["dragon"], tags: ["anthro"] },
  20412. {
  20413. front: {
  20414. height: math.unit(8 + 4 / 12, "feet"),
  20415. weight: math.unit(600, "lb"),
  20416. name: "Front",
  20417. image: {
  20418. source: "./media/characters/dragonien/front.svg",
  20419. extra: 100 / 94,
  20420. bottom: 3.3 / 103.3445
  20421. }
  20422. },
  20423. back: {
  20424. height: math.unit(8 + 4 / 12, "feet"),
  20425. weight: math.unit(600, "lb"),
  20426. name: "Back",
  20427. image: {
  20428. source: "./media/characters/dragonien/back.svg",
  20429. extra: 776 / 746,
  20430. bottom: 6.4 / 782.0616
  20431. }
  20432. },
  20433. foot: {
  20434. height: math.unit(1.54, "feet"),
  20435. name: "Foot",
  20436. image: {
  20437. source: "./media/characters/dragonien/foot.svg",
  20438. }
  20439. },
  20440. },
  20441. [
  20442. {
  20443. name: "Normal",
  20444. height: math.unit(8 + 4 / 12, "feet"),
  20445. default: true
  20446. },
  20447. {
  20448. name: "Macro",
  20449. height: math.unit(200, "feet")
  20450. },
  20451. {
  20452. name: "Megamacro",
  20453. height: math.unit(1, "mile")
  20454. },
  20455. {
  20456. name: "Gigamacro",
  20457. height: math.unit(1000, "miles")
  20458. },
  20459. ]
  20460. ))
  20461. characterMakers.push(() => makeCharacter(
  20462. { name: "Desta", species: ["dratini"], tags: ["anthro"] },
  20463. {
  20464. front: {
  20465. height: math.unit(5 + 2 / 12, "feet"),
  20466. weight: math.unit(110, "lb"),
  20467. name: "Front",
  20468. image: {
  20469. source: "./media/characters/desta/front.svg",
  20470. extra: 767 / 726,
  20471. bottom: 11.7 / 779
  20472. }
  20473. },
  20474. back: {
  20475. height: math.unit(5 + 2 / 12, "feet"),
  20476. weight: math.unit(110, "lb"),
  20477. name: "Back",
  20478. image: {
  20479. source: "./media/characters/desta/back.svg",
  20480. extra: 777 / 728,
  20481. bottom: 6 / 784
  20482. }
  20483. },
  20484. frontAlt: {
  20485. height: math.unit(5 + 2 / 12, "feet"),
  20486. weight: math.unit(110, "lb"),
  20487. name: "Front",
  20488. image: {
  20489. source: "./media/characters/desta/front-alt.svg",
  20490. extra: 1482 / 1417
  20491. }
  20492. },
  20493. side: {
  20494. height: math.unit(5 + 2 / 12, "feet"),
  20495. weight: math.unit(110, "lb"),
  20496. name: "Side",
  20497. image: {
  20498. source: "./media/characters/desta/side.svg",
  20499. extra: 2579 / 2491,
  20500. bottom: 0.053
  20501. }
  20502. },
  20503. },
  20504. [
  20505. {
  20506. name: "Micro",
  20507. height: math.unit(6, "inches")
  20508. },
  20509. {
  20510. name: "Normal",
  20511. height: math.unit(5 + 2 / 12, "feet"),
  20512. default: true
  20513. },
  20514. {
  20515. name: "Macro",
  20516. height: math.unit(62, "feet")
  20517. },
  20518. {
  20519. name: "Megamacro",
  20520. height: math.unit(1800, "feet")
  20521. },
  20522. ]
  20523. ))
  20524. characterMakers.push(() => makeCharacter(
  20525. { name: "Storm Alystar", species: ["demon"], tags: ["anthro"] },
  20526. {
  20527. front: {
  20528. height: math.unit(10, "feet"),
  20529. weight: math.unit(700, "lb"),
  20530. name: "Front",
  20531. image: {
  20532. source: "./media/characters/storm-alystar/front.svg",
  20533. extra: 2112 / 1898,
  20534. bottom: 0.034
  20535. }
  20536. },
  20537. },
  20538. [
  20539. {
  20540. name: "Micro",
  20541. height: math.unit(3.5, "inches")
  20542. },
  20543. {
  20544. name: "Normal",
  20545. height: math.unit(10, "feet"),
  20546. default: true
  20547. },
  20548. {
  20549. name: "Macro",
  20550. height: math.unit(400, "feet")
  20551. },
  20552. {
  20553. name: "Deific",
  20554. height: math.unit(60, "miles")
  20555. },
  20556. ]
  20557. ))
  20558. characterMakers.push(() => makeCharacter(
  20559. { name: "Ilia", species: ["fox"], tags: ["anthro"] },
  20560. {
  20561. front: {
  20562. height: math.unit(2.35, "meters"),
  20563. weight: math.unit(119, "kg"),
  20564. name: "Front",
  20565. image: {
  20566. source: "./media/characters/ilia/front.svg",
  20567. extra: 1285 / 1255,
  20568. bottom: 0.06
  20569. }
  20570. },
  20571. },
  20572. [
  20573. {
  20574. name: "Normal",
  20575. height: math.unit(2.35, "meters")
  20576. },
  20577. {
  20578. name: "Macro",
  20579. height: math.unit(140, "meters"),
  20580. default: true
  20581. },
  20582. {
  20583. name: "Megamacro",
  20584. height: math.unit(100, "miles")
  20585. },
  20586. ]
  20587. ))
  20588. characterMakers.push(() => makeCharacter(
  20589. { name: "KingDead", species: ["wolf"], tags: ["anthro"] },
  20590. {
  20591. front: {
  20592. height: math.unit(6 + 5 / 12, "feet"),
  20593. weight: math.unit(190, "lb"),
  20594. name: "Front",
  20595. image: {
  20596. source: "./media/characters/kingdead/front.svg",
  20597. extra: 1228 / 1177
  20598. }
  20599. },
  20600. },
  20601. [
  20602. {
  20603. name: "Micro",
  20604. height: math.unit(7, "inches")
  20605. },
  20606. {
  20607. name: "Normal",
  20608. height: math.unit(6 + 5 / 12, "feet")
  20609. },
  20610. {
  20611. name: "Macro",
  20612. height: math.unit(150, "feet"),
  20613. default: true
  20614. },
  20615. {
  20616. name: "Megamacro",
  20617. height: math.unit(200, "miles")
  20618. },
  20619. ]
  20620. ))
  20621. characterMakers.push(() => makeCharacter(
  20622. { name: "Kyrehx", species: ["tigrex"], tags: ["anthro"] },
  20623. {
  20624. front: {
  20625. height: math.unit(8, "feet"),
  20626. weight: math.unit(600, "lb"),
  20627. name: "Front",
  20628. image: {
  20629. source: "./media/characters/kyrehx/front.svg",
  20630. extra: 1195 / 1095,
  20631. bottom: 0.034
  20632. }
  20633. },
  20634. },
  20635. [
  20636. {
  20637. name: "Micro",
  20638. height: math.unit(2, "inches")
  20639. },
  20640. {
  20641. name: "Normal",
  20642. height: math.unit(8, "feet"),
  20643. default: true
  20644. },
  20645. {
  20646. name: "Macro",
  20647. height: math.unit(255, "feet")
  20648. },
  20649. ]
  20650. ))
  20651. characterMakers.push(() => makeCharacter(
  20652. { name: "Xang", species: ["zangoose"], tags: ["anthro"] },
  20653. {
  20654. front: {
  20655. height: math.unit(0.935 * (6 + 8 / 12), "feet"),
  20656. weight: math.unit(184, "lb"),
  20657. name: "Front",
  20658. image: {
  20659. source: "./media/characters/xang/front.svg",
  20660. extra: 845 / 755
  20661. }
  20662. },
  20663. },
  20664. [
  20665. {
  20666. name: "Normal",
  20667. height: math.unit(0.935 * (6 + 8 / 12), "feet"),
  20668. default: true
  20669. },
  20670. {
  20671. name: "Macro",
  20672. height: math.unit(0.935 * 146, "feet")
  20673. },
  20674. {
  20675. name: "Megamacro",
  20676. height: math.unit(0.935 * 3, "miles")
  20677. },
  20678. ]
  20679. ))
  20680. characterMakers.push(() => makeCharacter(
  20681. { name: "Doc Weardno", species: ["fennec-fox"], tags: ["anthro"] },
  20682. {
  20683. frontDressed: {
  20684. height: math.unit(5 + 7 / 12, "feet"),
  20685. weight: math.unit(140, "lb"),
  20686. name: "Front (Dressed)",
  20687. image: {
  20688. source: "./media/characters/doc-weardno/front-dressed.svg",
  20689. extra: 263 / 234
  20690. }
  20691. },
  20692. backDressed: {
  20693. height: math.unit(5 + 7 / 12, "feet"),
  20694. weight: math.unit(140, "lb"),
  20695. name: "Back (Dressed)",
  20696. image: {
  20697. source: "./media/characters/doc-weardno/back-dressed.svg",
  20698. extra: 266 / 238
  20699. }
  20700. },
  20701. front: {
  20702. height: math.unit(5 + 7 / 12, "feet"),
  20703. weight: math.unit(140, "lb"),
  20704. name: "Front",
  20705. image: {
  20706. source: "./media/characters/doc-weardno/front.svg",
  20707. extra: 254 / 233
  20708. }
  20709. },
  20710. },
  20711. [
  20712. {
  20713. name: "Micro",
  20714. height: math.unit(3, "inches")
  20715. },
  20716. {
  20717. name: "Normal",
  20718. height: math.unit(5 + 7 / 12, "feet"),
  20719. default: true
  20720. },
  20721. {
  20722. name: "Macro",
  20723. height: math.unit(25, "feet")
  20724. },
  20725. {
  20726. name: "Megamacro",
  20727. height: math.unit(2, "miles")
  20728. },
  20729. ]
  20730. ))
  20731. characterMakers.push(() => makeCharacter(
  20732. { name: "Seth Whilst", species: ["snake"], tags: ["anthro"] },
  20733. {
  20734. front: {
  20735. height: math.unit(6 + 2 / 12, "feet"),
  20736. weight: math.unit(153, "lb"),
  20737. name: "Front",
  20738. image: {
  20739. source: "./media/characters/seth-whilst/front.svg",
  20740. bottom: 0.07
  20741. }
  20742. },
  20743. },
  20744. [
  20745. {
  20746. name: "Micro",
  20747. height: math.unit(5, "inches")
  20748. },
  20749. {
  20750. name: "Normal",
  20751. height: math.unit(6 + 2 / 12, "feet"),
  20752. default: true
  20753. },
  20754. ]
  20755. ))
  20756. characterMakers.push(() => makeCharacter(
  20757. { name: "Pocket Jabari", species: ["mouse"], tags: ["anthro"] },
  20758. {
  20759. front: {
  20760. height: math.unit(3, "inches"),
  20761. weight: math.unit(8, "grams"),
  20762. name: "Front",
  20763. image: {
  20764. source: "./media/characters/pocket-jabari/front.svg",
  20765. extra: 1024 / 974,
  20766. bottom: 0.039
  20767. }
  20768. },
  20769. },
  20770. [
  20771. {
  20772. name: "Minimicro",
  20773. height: math.unit(8, "mm")
  20774. },
  20775. {
  20776. name: "Micro",
  20777. height: math.unit(3, "inches"),
  20778. default: true
  20779. },
  20780. {
  20781. name: "Normal",
  20782. height: math.unit(3, "feet")
  20783. },
  20784. ]
  20785. ))
  20786. characterMakers.push(() => makeCharacter(
  20787. { name: "Sapphy", species: ["dragon"], tags: ["anthro"] },
  20788. {
  20789. frontDressed: {
  20790. height: math.unit(15, "feet"),
  20791. weight: math.unit(3280, "lb"),
  20792. name: "Front (Dressed)",
  20793. image: {
  20794. source: "./media/characters/sapphy/front-dressed.svg",
  20795. extra: 1951/1654,
  20796. bottom: 194/2145
  20797. },
  20798. form: "anthro",
  20799. default: true
  20800. },
  20801. backDressed: {
  20802. height: math.unit(15, "feet"),
  20803. weight: math.unit(3280, "lb"),
  20804. name: "Back (Dressed)",
  20805. image: {
  20806. source: "./media/characters/sapphy/back-dressed.svg",
  20807. extra: 2058/1918,
  20808. bottom: 125/2183
  20809. },
  20810. form: "anthro"
  20811. },
  20812. frontNude: {
  20813. height: math.unit(15, "feet"),
  20814. weight: math.unit(3280, "lb"),
  20815. name: "Front (Nude)",
  20816. image: {
  20817. source: "./media/characters/sapphy/front-nude.svg",
  20818. extra: 1951/1654,
  20819. bottom: 194/2145
  20820. },
  20821. form: "anthro"
  20822. },
  20823. backNude: {
  20824. height: math.unit(15, "feet"),
  20825. weight: math.unit(3280, "lb"),
  20826. name: "Back (Nude)",
  20827. image: {
  20828. source: "./media/characters/sapphy/back-nude.svg",
  20829. extra: 2058/1918,
  20830. bottom: 125/2183
  20831. },
  20832. form: "anthro"
  20833. },
  20834. full: {
  20835. height: math.unit(15, "feet"),
  20836. weight: math.unit(3280, "lb"),
  20837. name: "Full",
  20838. image: {
  20839. source: "./media/characters/sapphy/full.svg",
  20840. extra: 1396/1317,
  20841. bottom: 44/1440
  20842. },
  20843. form: "anthro"
  20844. },
  20845. dick: {
  20846. height: math.unit(3.8, "feet"),
  20847. name: "Dick",
  20848. image: {
  20849. source: "./media/characters/sapphy/dick.svg"
  20850. },
  20851. form: "anthro"
  20852. },
  20853. feral: {
  20854. height: math.unit(35, "feet"),
  20855. weight: math.unit(160, "tons"),
  20856. name: "Feral",
  20857. image: {
  20858. source: "./media/characters/sapphy/feral.svg",
  20859. extra: 1050/573,
  20860. bottom: 60/1110
  20861. },
  20862. form: "feral",
  20863. default: true
  20864. },
  20865. },
  20866. [
  20867. {
  20868. name: "Normal",
  20869. height: math.unit(15, "feet"),
  20870. form: "anthro"
  20871. },
  20872. {
  20873. name: "Casual Macro",
  20874. height: math.unit(120, "feet"),
  20875. form: "anthro"
  20876. },
  20877. {
  20878. name: "Macro",
  20879. height: math.unit(2150, "feet"),
  20880. default: true,
  20881. form: "anthro"
  20882. },
  20883. {
  20884. name: "Megamacro",
  20885. height: math.unit(8, "miles"),
  20886. form: "anthro"
  20887. },
  20888. {
  20889. name: "Galaxy Mom",
  20890. height: math.unit(6, "megalightyears"),
  20891. form: "anthro"
  20892. },
  20893. {
  20894. name: "Normal",
  20895. height: math.unit(35, "feet"),
  20896. form: "feral",
  20897. default: true
  20898. },
  20899. {
  20900. name: "Macro",
  20901. height: math.unit(300, "feet"),
  20902. form: "feral"
  20903. },
  20904. {
  20905. name: "Galaxy Mom",
  20906. height: math.unit(10, "megalightyears"),
  20907. form: "feral"
  20908. },
  20909. ],
  20910. {
  20911. "anthro": {
  20912. name: "Anthro",
  20913. default: true
  20914. },
  20915. "feral": {
  20916. name: "Feral"
  20917. }
  20918. }
  20919. ))
  20920. characterMakers.push(() => makeCharacter(
  20921. { name: "Kiro", species: ["folf", "hyena"], tags: ["anthro"] },
  20922. {
  20923. hyenaFront: {
  20924. height: math.unit(6, "feet"),
  20925. weight: math.unit(190, "lb"),
  20926. name: "Front",
  20927. image: {
  20928. source: "./media/characters/kiro/hyena-front.svg",
  20929. extra: 927/839,
  20930. bottom: 91/1018
  20931. },
  20932. form: "hyena",
  20933. default: true
  20934. },
  20935. front: {
  20936. height: math.unit(6, "feet"),
  20937. weight: math.unit(170, "lb"),
  20938. name: "Front",
  20939. image: {
  20940. source: "./media/characters/kiro/front.svg",
  20941. extra: 1064 / 1012,
  20942. bottom: 0.052
  20943. },
  20944. form: "folf",
  20945. default: true
  20946. },
  20947. },
  20948. [
  20949. {
  20950. name: "Micro",
  20951. height: math.unit(6, "inches"),
  20952. form: "folf"
  20953. },
  20954. {
  20955. name: "Normal",
  20956. height: math.unit(6, "feet"),
  20957. form: "folf",
  20958. default: true
  20959. },
  20960. {
  20961. name: "Macro",
  20962. height: math.unit(72, "feet"),
  20963. form: "folf"
  20964. },
  20965. {
  20966. name: "Micro",
  20967. height: math.unit(6, "inches"),
  20968. form: "hyena"
  20969. },
  20970. {
  20971. name: "Normal",
  20972. height: math.unit(6, "feet"),
  20973. form: "hyena",
  20974. default: true
  20975. },
  20976. {
  20977. name: "Macro",
  20978. height: math.unit(72, "feet"),
  20979. form: "hyena"
  20980. },
  20981. ],
  20982. {
  20983. "hyena": {
  20984. name: "Hyena",
  20985. default: true
  20986. },
  20987. "folf": {
  20988. name: "Folf",
  20989. },
  20990. }
  20991. ))
  20992. characterMakers.push(() => makeCharacter(
  20993. { name: "Irishfox", species: ["fox"], tags: ["anthro"] },
  20994. {
  20995. front: {
  20996. height: math.unit(5 + 9 / 12, "feet"),
  20997. weight: math.unit(175, "lb"),
  20998. name: "Front",
  20999. image: {
  21000. source: "./media/characters/irishfox/front.svg",
  21001. extra: 1912 / 1680,
  21002. bottom: 0.02
  21003. }
  21004. },
  21005. },
  21006. [
  21007. {
  21008. name: "Nano",
  21009. height: math.unit(1, "mm")
  21010. },
  21011. {
  21012. name: "Micro",
  21013. height: math.unit(2, "inches")
  21014. },
  21015. {
  21016. name: "Normal",
  21017. height: math.unit(5 + 9 / 12, "feet"),
  21018. default: true
  21019. },
  21020. {
  21021. name: "Macro",
  21022. height: math.unit(45, "feet")
  21023. },
  21024. ]
  21025. ))
  21026. characterMakers.push(() => makeCharacter(
  21027. { name: "Aronai Sieyes", species: ["cross-fox", "synth"], tags: ["anthro"] },
  21028. {
  21029. front: {
  21030. height: math.unit(6 + 1 / 12, "feet"),
  21031. weight: math.unit(75, "lb"),
  21032. name: "Front",
  21033. image: {
  21034. source: "./media/characters/aronai-sieyes/front.svg",
  21035. extra: 1532/1450,
  21036. bottom: 42/1574
  21037. }
  21038. },
  21039. side: {
  21040. height: math.unit(6 + 1 / 12, "feet"),
  21041. weight: math.unit(75, "lb"),
  21042. name: "Side",
  21043. image: {
  21044. source: "./media/characters/aronai-sieyes/side.svg",
  21045. extra: 1422/1365,
  21046. bottom: 148/1570
  21047. }
  21048. },
  21049. back: {
  21050. height: math.unit(6 + 1 / 12, "feet"),
  21051. weight: math.unit(75, "lb"),
  21052. name: "Back",
  21053. image: {
  21054. source: "./media/characters/aronai-sieyes/back.svg",
  21055. extra: 1526/1464,
  21056. bottom: 51/1577
  21057. }
  21058. },
  21059. dressed: {
  21060. height: math.unit(6 + 1 / 12, "feet"),
  21061. weight: math.unit(75, "lb"),
  21062. name: "Dressed",
  21063. image: {
  21064. source: "./media/characters/aronai-sieyes/dressed.svg",
  21065. extra: 1559/1483,
  21066. bottom: 39/1598
  21067. }
  21068. },
  21069. slit: {
  21070. height: math.unit(1.3, "feet"),
  21071. name: "Slit",
  21072. image: {
  21073. source: "./media/characters/aronai-sieyes/slit.svg"
  21074. }
  21075. },
  21076. slitSpread: {
  21077. height: math.unit(0.9, "feet"),
  21078. name: "Slit (Spread)",
  21079. image: {
  21080. source: "./media/characters/aronai-sieyes/slit-spread.svg"
  21081. }
  21082. },
  21083. rump: {
  21084. height: math.unit(1.3, "feet"),
  21085. name: "Rump",
  21086. image: {
  21087. source: "./media/characters/aronai-sieyes/rump.svg"
  21088. }
  21089. },
  21090. maw: {
  21091. height: math.unit(1.25, "feet"),
  21092. name: "Maw",
  21093. image: {
  21094. source: "./media/characters/aronai-sieyes/maw.svg"
  21095. }
  21096. },
  21097. feral: {
  21098. height: math.unit(18, "feet"),
  21099. weight: math.unit(75 * 3 * 3 * 3, "lb"),
  21100. name: "Feral",
  21101. image: {
  21102. source: "./media/characters/aronai-sieyes/feral.svg",
  21103. extra: 1530 / 1240,
  21104. bottom: 0.035
  21105. }
  21106. },
  21107. },
  21108. [
  21109. {
  21110. name: "Micro",
  21111. height: math.unit(2, "inches")
  21112. },
  21113. {
  21114. name: "Normal",
  21115. height: math.unit(6 + 1 / 12, "feet"),
  21116. default: true
  21117. }
  21118. ]
  21119. ))
  21120. characterMakers.push(() => makeCharacter(
  21121. { name: "Xuna", species: ["wickerbeast"], tags: ["anthro"] },
  21122. {
  21123. front: {
  21124. height: math.unit(12, "feet"),
  21125. weight: math.unit(410, "kg"),
  21126. name: "Front",
  21127. image: {
  21128. source: "./media/characters/xuna/front.svg",
  21129. extra: 2184 / 1980
  21130. }
  21131. },
  21132. side: {
  21133. height: math.unit(12, "feet"),
  21134. weight: math.unit(410, "kg"),
  21135. name: "Side",
  21136. image: {
  21137. source: "./media/characters/xuna/side.svg",
  21138. extra: 2184 / 1980
  21139. }
  21140. },
  21141. back: {
  21142. height: math.unit(12, "feet"),
  21143. weight: math.unit(410, "kg"),
  21144. name: "Back",
  21145. image: {
  21146. source: "./media/characters/xuna/back.svg",
  21147. extra: 2184 / 1980
  21148. }
  21149. },
  21150. },
  21151. [
  21152. {
  21153. name: "Nano glow",
  21154. height: math.unit(10, "nm")
  21155. },
  21156. {
  21157. name: "Micro floof",
  21158. height: math.unit(0.3, "m")
  21159. },
  21160. {
  21161. name: "Huggable softy boi",
  21162. height: math.unit(3.6576, "m"),
  21163. default: true
  21164. },
  21165. {
  21166. name: "Admirable floof",
  21167. height: math.unit(80, "meters")
  21168. },
  21169. {
  21170. name: "Gentle macro",
  21171. height: math.unit(300, "meters")
  21172. },
  21173. {
  21174. name: "Very careful floof",
  21175. height: math.unit(3200, "meters")
  21176. },
  21177. {
  21178. name: "The mega floof",
  21179. height: math.unit(36000, "meters")
  21180. },
  21181. {
  21182. name: "Giga-fur-Wicker",
  21183. height: math.unit(4800000, "meters")
  21184. },
  21185. {
  21186. name: "Licky world",
  21187. height: math.unit(20000000, "meters")
  21188. },
  21189. {
  21190. name: "Floofy cyan sun",
  21191. height: math.unit(1500000000, "meters")
  21192. },
  21193. {
  21194. name: "Milky Wicker",
  21195. height: math.unit(1000000000000000000000, "meters")
  21196. },
  21197. {
  21198. name: "The observing Wicker",
  21199. height: math.unit(999999999999999999999999999, "meters")
  21200. },
  21201. ]
  21202. ))
  21203. characterMakers.push(() => makeCharacter(
  21204. { name: "Arokha Sieyes", species: ["kitsune"], tags: ["anthro"] },
  21205. {
  21206. front: {
  21207. height: math.unit(5 + 9 / 12, "feet"),
  21208. weight: math.unit(150, "lb"),
  21209. name: "Front",
  21210. image: {
  21211. source: "./media/characters/arokha-sieyes/front.svg",
  21212. extra: 1425 / 1284,
  21213. bottom: 0.05
  21214. }
  21215. },
  21216. },
  21217. [
  21218. {
  21219. name: "Normal",
  21220. height: math.unit(5 + 9 / 12, "feet")
  21221. },
  21222. {
  21223. name: "Macro",
  21224. height: math.unit(30, "meters"),
  21225. default: true
  21226. },
  21227. ]
  21228. ))
  21229. characterMakers.push(() => makeCharacter(
  21230. { name: "Arokh Sieyes", species: ["kitsune"], tags: ["anthro"] },
  21231. {
  21232. front: {
  21233. height: math.unit(6, "feet"),
  21234. weight: math.unit(180, "lb"),
  21235. name: "Front",
  21236. image: {
  21237. source: "./media/characters/arokh-sieyes/front.svg",
  21238. extra: 1830 / 1769,
  21239. bottom: 0.01
  21240. }
  21241. },
  21242. },
  21243. [
  21244. {
  21245. name: "Normal",
  21246. height: math.unit(6, "feet")
  21247. },
  21248. {
  21249. name: "Macro",
  21250. height: math.unit(30, "meters"),
  21251. default: true
  21252. },
  21253. ]
  21254. ))
  21255. characterMakers.push(() => makeCharacter(
  21256. { name: "Goldeneye", species: ["gryphon"], tags: ["feral"] },
  21257. {
  21258. side: {
  21259. height: math.unit(13 + 1 / 12, "feet"),
  21260. weight: math.unit(8.5, "tonnes"),
  21261. preyCapacity: math.unit(36, "people"),
  21262. name: "Side",
  21263. image: {
  21264. source: "./media/characters/goldeneye/side.svg",
  21265. extra: 1139/741,
  21266. bottom: 98/1237
  21267. }
  21268. },
  21269. front: {
  21270. height: math.unit(5.1, "feet"),
  21271. weight: math.unit(8.5, "tonnes"),
  21272. preyCapacity: math.unit(36, "people"),
  21273. name: "Front",
  21274. image: {
  21275. source: "./media/characters/goldeneye/front.svg",
  21276. extra: 635/365,
  21277. bottom: 598/1233
  21278. }
  21279. },
  21280. maw: {
  21281. height: math.unit(6.6, "feet"),
  21282. name: "Maw",
  21283. image: {
  21284. source: "./media/characters/goldeneye/maw.svg"
  21285. }
  21286. },
  21287. headFront: {
  21288. height: math.unit(8, "feet"),
  21289. name: "Head (Front)",
  21290. image: {
  21291. source: "./media/characters/goldeneye/head-front.svg"
  21292. }
  21293. },
  21294. headSide: {
  21295. height: math.unit(6, "feet"),
  21296. name: "Head (Side)",
  21297. image: {
  21298. source: "./media/characters/goldeneye/head-side.svg"
  21299. }
  21300. },
  21301. headBack: {
  21302. height: math.unit(8, "feet"),
  21303. name: "Head (Back)",
  21304. image: {
  21305. source: "./media/characters/goldeneye/head-back.svg"
  21306. }
  21307. },
  21308. paw: {
  21309. height: math.unit(3.4, "feet"),
  21310. name: "Paw",
  21311. image: {
  21312. source: "./media/characters/goldeneye/paw.svg"
  21313. }
  21314. },
  21315. toering: {
  21316. height: math.unit(0.45, "feet"),
  21317. name: "Toering",
  21318. image: {
  21319. source: "./media/characters/goldeneye/toering.svg"
  21320. }
  21321. },
  21322. eyes: {
  21323. height: math.unit(0.5, "feet"),
  21324. name: "Eyes",
  21325. image: {
  21326. source: "./media/characters/goldeneye/eyes.svg"
  21327. }
  21328. },
  21329. },
  21330. [
  21331. {
  21332. name: "Normal",
  21333. height: math.unit(13 + 1 / 12, "feet"),
  21334. default: true
  21335. },
  21336. ]
  21337. ))
  21338. characterMakers.push(() => makeCharacter(
  21339. { name: "Leonardo Lycheborne", species: ["wolf", "dog", "barghest", "werebeast"], tags: ["anthro", "feral", "taur"] },
  21340. {
  21341. front: {
  21342. height: math.unit(6 + 1 / 12, "feet"),
  21343. weight: math.unit(210, "lb"),
  21344. name: "Front",
  21345. image: {
  21346. source: "./media/characters/leonardo-lycheborne/front.svg",
  21347. extra: 776/723,
  21348. bottom: 34/810
  21349. }
  21350. },
  21351. side: {
  21352. height: math.unit(6 + 1 / 12, "feet"),
  21353. weight: math.unit(210, "lb"),
  21354. name: "Side",
  21355. image: {
  21356. source: "./media/characters/leonardo-lycheborne/side.svg",
  21357. extra: 780/728,
  21358. bottom: 12/792
  21359. }
  21360. },
  21361. back: {
  21362. height: math.unit(6 + 1 / 12, "feet"),
  21363. weight: math.unit(210, "lb"),
  21364. name: "Back",
  21365. image: {
  21366. source: "./media/characters/leonardo-lycheborne/back.svg",
  21367. extra: 775/721,
  21368. bottom: 17/792
  21369. }
  21370. },
  21371. hand: {
  21372. height: math.unit(1.08, "feet"),
  21373. name: "Hand",
  21374. image: {
  21375. source: "./media/characters/leonardo-lycheborne/hand.svg"
  21376. }
  21377. },
  21378. foot: {
  21379. height: math.unit(1.32, "feet"),
  21380. name: "Foot",
  21381. image: {
  21382. source: "./media/characters/leonardo-lycheborne/foot.svg"
  21383. }
  21384. },
  21385. maw: {
  21386. height: math.unit(1, "feet"),
  21387. name: "Maw",
  21388. image: {
  21389. source: "./media/characters/leonardo-lycheborne/maw.svg"
  21390. }
  21391. },
  21392. were: {
  21393. height: math.unit(20, "feet"),
  21394. weight: math.unit(7800, "lb"),
  21395. name: "Were",
  21396. image: {
  21397. source: "./media/characters/leonardo-lycheborne/were.svg",
  21398. extra: 1224/1165,
  21399. bottom: 72/1296
  21400. }
  21401. },
  21402. feral: {
  21403. height: math.unit(7.5, "feet"),
  21404. weight: math.unit(600, "lb"),
  21405. name: "Feral",
  21406. image: {
  21407. source: "./media/characters/leonardo-lycheborne/feral.svg",
  21408. extra: 797/702,
  21409. bottom: 139/936
  21410. }
  21411. },
  21412. taur: {
  21413. height: math.unit(11, "feet"),
  21414. weight: math.unit(3300, "lb"),
  21415. name: "Taur",
  21416. image: {
  21417. source: "./media/characters/leonardo-lycheborne/taur.svg",
  21418. extra: 1271/1197,
  21419. bottom: 47/1318
  21420. }
  21421. },
  21422. barghest: {
  21423. height: math.unit(11, "feet"),
  21424. weight: math.unit(1300, "lb"),
  21425. name: "Barghest",
  21426. image: {
  21427. source: "./media/characters/leonardo-lycheborne/barghest.svg",
  21428. extra: 1291/1204,
  21429. bottom: 37/1328
  21430. }
  21431. },
  21432. dick: {
  21433. height: math.unit((6 + 1 / 12) / 4.09, "feet"),
  21434. name: "Dick",
  21435. image: {
  21436. source: "./media/characters/leonardo-lycheborne/dick.svg"
  21437. }
  21438. },
  21439. dickWere: {
  21440. height: math.unit((20) / 3.8, "feet"),
  21441. name: "Dick (Were)",
  21442. image: {
  21443. source: "./media/characters/leonardo-lycheborne/dick-were.svg"
  21444. }
  21445. },
  21446. },
  21447. [
  21448. {
  21449. name: "Normal",
  21450. height: math.unit(6 + 1 / 12, "feet"),
  21451. default: true
  21452. },
  21453. ]
  21454. ))
  21455. characterMakers.push(() => makeCharacter(
  21456. { name: "Jet", species: ["hyena"], tags: ["anthro"] },
  21457. {
  21458. front: {
  21459. height: math.unit(10, "feet"),
  21460. weight: math.unit(350, "lb"),
  21461. name: "Front",
  21462. image: {
  21463. source: "./media/characters/jet/front.svg",
  21464. extra: 2050 / 1980,
  21465. bottom: 0.013
  21466. }
  21467. },
  21468. back: {
  21469. height: math.unit(10, "feet"),
  21470. weight: math.unit(350, "lb"),
  21471. name: "Back",
  21472. image: {
  21473. source: "./media/characters/jet/back.svg",
  21474. extra: 2050 / 1980,
  21475. bottom: 0.013
  21476. }
  21477. },
  21478. },
  21479. [
  21480. {
  21481. name: "Micro",
  21482. height: math.unit(6, "inches")
  21483. },
  21484. {
  21485. name: "Normal",
  21486. height: math.unit(10, "feet"),
  21487. default: true
  21488. },
  21489. {
  21490. name: "Macro",
  21491. height: math.unit(100, "feet")
  21492. },
  21493. ]
  21494. ))
  21495. characterMakers.push(() => makeCharacter(
  21496. { name: "Tanarath", species: ["dragonoid"], tags: ["anthro"] },
  21497. {
  21498. front: {
  21499. height: math.unit(15, "feet"),
  21500. weight: math.unit(2800, "lb"),
  21501. name: "Front",
  21502. image: {
  21503. source: "./media/characters/tanarath/front.svg",
  21504. extra: 2392 / 2220,
  21505. bottom: 0.03
  21506. }
  21507. },
  21508. back: {
  21509. height: math.unit(15, "feet"),
  21510. weight: math.unit(2800, "lb"),
  21511. name: "Back",
  21512. image: {
  21513. source: "./media/characters/tanarath/back.svg",
  21514. extra: 2392 / 2220,
  21515. bottom: 0.03
  21516. }
  21517. },
  21518. },
  21519. [
  21520. {
  21521. name: "Normal",
  21522. height: math.unit(15, "feet"),
  21523. default: true
  21524. },
  21525. ]
  21526. ))
  21527. characterMakers.push(() => makeCharacter(
  21528. { name: "Patty CattyBatty", species: ["cat", "bat"], tags: ["anthro"] },
  21529. {
  21530. front: {
  21531. height: math.unit(7 + 1 / 12, "feet"),
  21532. weight: math.unit(175, "lb"),
  21533. name: "Front",
  21534. image: {
  21535. source: "./media/characters/patty-cattybatty/front.svg",
  21536. extra: 908 / 874,
  21537. bottom: 0.025
  21538. }
  21539. },
  21540. },
  21541. [
  21542. {
  21543. name: "Micro",
  21544. height: math.unit(1, "inch")
  21545. },
  21546. {
  21547. name: "Normal",
  21548. height: math.unit(7 + 1 / 12, "feet")
  21549. },
  21550. {
  21551. name: "Mini Macro",
  21552. height: math.unit(155, "feet")
  21553. },
  21554. {
  21555. name: "Macro",
  21556. height: math.unit(1077, "feet")
  21557. },
  21558. {
  21559. name: "Mega Macro",
  21560. height: math.unit(47650, "feet"),
  21561. default: true
  21562. },
  21563. {
  21564. name: "Giga Macro",
  21565. height: math.unit(440, "miles")
  21566. },
  21567. {
  21568. name: "Tera Macro",
  21569. height: math.unit(8700, "miles")
  21570. },
  21571. {
  21572. name: "Planetary Macro",
  21573. height: math.unit(32700, "miles")
  21574. },
  21575. {
  21576. name: "Solar Macro",
  21577. height: math.unit(550000, "miles")
  21578. },
  21579. {
  21580. name: "Celestial Macro",
  21581. height: math.unit(2.5, "AU")
  21582. },
  21583. ]
  21584. ))
  21585. characterMakers.push(() => makeCharacter(
  21586. { name: "Cappu", species: ["sheep"], tags: ["anthro"] },
  21587. {
  21588. front: {
  21589. height: math.unit(4 + 5 / 12, "feet"),
  21590. weight: math.unit(90, "lb"),
  21591. name: "Front",
  21592. image: {
  21593. source: "./media/characters/cappu/front.svg",
  21594. extra: 1247 / 1152,
  21595. bottom: 0.012
  21596. }
  21597. },
  21598. },
  21599. [
  21600. {
  21601. name: "Normal",
  21602. height: math.unit(4 + 5 / 12, "feet"),
  21603. default: true
  21604. },
  21605. ]
  21606. ))
  21607. characterMakers.push(() => makeCharacter(
  21608. { name: "Sebi", species: ["cat", "demon", "wolf"], tags: ["anthro"] },
  21609. {
  21610. frontDressed: {
  21611. height: math.unit(70, "cm"),
  21612. weight: math.unit(6, "kg"),
  21613. name: "Front (Dressed)",
  21614. image: {
  21615. source: "./media/characters/sebi/front-dressed.svg",
  21616. extra: 713.5 / 686.5,
  21617. bottom: 0.003
  21618. }
  21619. },
  21620. front: {
  21621. height: math.unit(70, "cm"),
  21622. weight: math.unit(5, "kg"),
  21623. name: "Front",
  21624. image: {
  21625. source: "./media/characters/sebi/front.svg",
  21626. extra: 713.5 / 686.5,
  21627. bottom: 0.003
  21628. }
  21629. }
  21630. },
  21631. [
  21632. {
  21633. name: "Normal",
  21634. height: math.unit(70, "cm"),
  21635. default: true
  21636. },
  21637. {
  21638. name: "Macro",
  21639. height: math.unit(8, "meters")
  21640. },
  21641. ]
  21642. ))
  21643. characterMakers.push(() => makeCharacter(
  21644. { name: "Typhek", species: ["t-rex"], tags: ["anthro"] },
  21645. {
  21646. front: {
  21647. height: math.unit(6, "feet"),
  21648. weight: math.unit(150, "lb"),
  21649. name: "Front",
  21650. image: {
  21651. source: "./media/characters/typhek/front.svg",
  21652. extra: 1948 / 1929,
  21653. bottom: 0.025
  21654. }
  21655. },
  21656. side: {
  21657. height: math.unit(6, "feet"),
  21658. weight: math.unit(150, "lb"),
  21659. name: "Side",
  21660. image: {
  21661. source: "./media/characters/typhek/side.svg",
  21662. extra: 2034 / 2010,
  21663. bottom: 0.003
  21664. }
  21665. },
  21666. back: {
  21667. height: math.unit(6, "feet"),
  21668. weight: math.unit(150, "lb"),
  21669. name: "Back",
  21670. image: {
  21671. source: "./media/characters/typhek/back.svg",
  21672. extra: 2005 / 1978,
  21673. bottom: 0.004
  21674. }
  21675. },
  21676. palm: {
  21677. height: math.unit(1.2, "feet"),
  21678. name: "Palm",
  21679. image: {
  21680. source: "./media/characters/typhek/palm.svg"
  21681. }
  21682. },
  21683. fist: {
  21684. height: math.unit(1.1, "feet"),
  21685. name: "Fist",
  21686. image: {
  21687. source: "./media/characters/typhek/fist.svg"
  21688. }
  21689. },
  21690. foot: {
  21691. height: math.unit(1.57, "feet"),
  21692. name: "Foot",
  21693. image: {
  21694. source: "./media/characters/typhek/foot.svg"
  21695. }
  21696. },
  21697. sole: {
  21698. height: math.unit(2.05, "feet"),
  21699. name: "Sole",
  21700. image: {
  21701. source: "./media/characters/typhek/sole.svg"
  21702. }
  21703. },
  21704. },
  21705. [
  21706. {
  21707. name: "Macro",
  21708. height: math.unit(40, "stories"),
  21709. default: true
  21710. },
  21711. {
  21712. name: "Megamacro",
  21713. height: math.unit(1, "mile")
  21714. },
  21715. {
  21716. name: "Gigamacro",
  21717. height: math.unit(4000, "solarradii")
  21718. },
  21719. {
  21720. name: "Universal",
  21721. height: math.unit(1.1, "universes")
  21722. }
  21723. ]
  21724. ))
  21725. characterMakers.push(() => makeCharacter(
  21726. { name: "Kassy", species: ["sheep"], tags: ["anthro"] },
  21727. {
  21728. side: {
  21729. height: math.unit(5 + 7 / 12, "feet"),
  21730. weight: math.unit(150, "lb"),
  21731. name: "Side",
  21732. image: {
  21733. source: "./media/characters/kassy/side.svg",
  21734. extra: 1280 / 1225,
  21735. bottom: 0.002
  21736. }
  21737. },
  21738. front: {
  21739. height: math.unit(5 + 7 / 12, "feet"),
  21740. weight: math.unit(150, "lb"),
  21741. name: "Front",
  21742. image: {
  21743. source: "./media/characters/kassy/front.svg",
  21744. extra: 1280 / 1225,
  21745. bottom: 0.025
  21746. }
  21747. },
  21748. back: {
  21749. height: math.unit(5 + 7 / 12, "feet"),
  21750. weight: math.unit(150, "lb"),
  21751. name: "Back",
  21752. image: {
  21753. source: "./media/characters/kassy/back.svg",
  21754. extra: 1280 / 1225,
  21755. bottom: 0.002
  21756. }
  21757. },
  21758. foot: {
  21759. height: math.unit(1.266, "feet"),
  21760. name: "Foot",
  21761. image: {
  21762. source: "./media/characters/kassy/foot.svg"
  21763. }
  21764. },
  21765. },
  21766. [
  21767. {
  21768. name: "Normal",
  21769. height: math.unit(5 + 7 / 12, "feet")
  21770. },
  21771. {
  21772. name: "Macro",
  21773. height: math.unit(137, "feet"),
  21774. default: true
  21775. },
  21776. {
  21777. name: "Megamacro",
  21778. height: math.unit(1, "mile")
  21779. },
  21780. ]
  21781. ))
  21782. characterMakers.push(() => makeCharacter(
  21783. { name: "Neil", species: ["deer"], tags: ["anthro"] },
  21784. {
  21785. front: {
  21786. height: math.unit(6 + 1 / 12, "feet"),
  21787. weight: math.unit(200, "lb"),
  21788. name: "Front",
  21789. image: {
  21790. source: "./media/characters/neil/front.svg",
  21791. extra: 1326 / 1250,
  21792. bottom: 0.023
  21793. }
  21794. },
  21795. },
  21796. [
  21797. {
  21798. name: "Normal",
  21799. height: math.unit(6 + 1 / 12, "feet"),
  21800. default: true
  21801. },
  21802. {
  21803. name: "Macro",
  21804. height: math.unit(200, "feet")
  21805. },
  21806. ]
  21807. ))
  21808. characterMakers.push(() => makeCharacter(
  21809. { name: "Atticus", species: ["pig"], tags: ["anthro"] },
  21810. {
  21811. front: {
  21812. height: math.unit(5 + 9 / 12, "feet"),
  21813. weight: math.unit(190, "lb"),
  21814. name: "Front",
  21815. image: {
  21816. source: "./media/characters/atticus/front.svg",
  21817. extra: 2934 / 2785,
  21818. bottom: 0.025
  21819. }
  21820. },
  21821. },
  21822. [
  21823. {
  21824. name: "Normal",
  21825. height: math.unit(5 + 9 / 12, "feet"),
  21826. default: true
  21827. },
  21828. {
  21829. name: "Macro",
  21830. height: math.unit(180, "feet")
  21831. },
  21832. ]
  21833. ))
  21834. characterMakers.push(() => makeCharacter(
  21835. { name: "Milo", species: ["scolipede"], tags: ["feral"] },
  21836. {
  21837. side: {
  21838. height: math.unit(9, "feet"),
  21839. weight: math.unit(650, "lb"),
  21840. name: "Side",
  21841. image: {
  21842. source: "./media/characters/milo/side.svg",
  21843. extra: 2644 / 2310,
  21844. bottom: 0.032
  21845. }
  21846. },
  21847. },
  21848. [
  21849. {
  21850. name: "Normal",
  21851. height: math.unit(9, "feet"),
  21852. default: true
  21853. },
  21854. {
  21855. name: "Macro",
  21856. height: math.unit(300, "feet")
  21857. },
  21858. ]
  21859. ))
  21860. characterMakers.push(() => makeCharacter(
  21861. { name: "Ijzer", species: ["dragon"], tags: ["anthro"] },
  21862. {
  21863. side: {
  21864. height: math.unit(8, "meters"),
  21865. weight: math.unit(90000, "kg"),
  21866. name: "Side",
  21867. image: {
  21868. source: "./media/characters/ijzer/side.svg",
  21869. extra: 2756 / 1600,
  21870. bottom: 0.01
  21871. }
  21872. },
  21873. },
  21874. [
  21875. {
  21876. name: "Small",
  21877. height: math.unit(3, "meters")
  21878. },
  21879. {
  21880. name: "Normal",
  21881. height: math.unit(8, "meters"),
  21882. default: true
  21883. },
  21884. {
  21885. name: "Normal+",
  21886. height: math.unit(10, "meters")
  21887. },
  21888. {
  21889. name: "Bigger",
  21890. height: math.unit(24, "meters")
  21891. },
  21892. {
  21893. name: "Huge",
  21894. height: math.unit(80, "meters")
  21895. },
  21896. ]
  21897. ))
  21898. characterMakers.push(() => makeCharacter(
  21899. { name: "Luca Cervicum", species: ["deer"], tags: ["anthro"] },
  21900. {
  21901. front: {
  21902. height: math.unit(6 + 2 / 12, "feet"),
  21903. weight: math.unit(153, "lb"),
  21904. name: "Front",
  21905. image: {
  21906. source: "./media/characters/luca-cervicum/front.svg",
  21907. extra: 370 / 327,
  21908. bottom: 0.015
  21909. }
  21910. },
  21911. back: {
  21912. height: math.unit(6 + 2 / 12, "feet"),
  21913. weight: math.unit(153, "lb"),
  21914. name: "Back",
  21915. image: {
  21916. source: "./media/characters/luca-cervicum/back.svg",
  21917. extra: 367 / 333,
  21918. bottom: 0.005
  21919. }
  21920. },
  21921. frontGear: {
  21922. height: math.unit(6 + 2 / 12, "feet"),
  21923. weight: math.unit(173, "lb"),
  21924. name: "Front (Gear)",
  21925. image: {
  21926. source: "./media/characters/luca-cervicum/front-gear.svg",
  21927. extra: 377 / 333,
  21928. bottom: 0.006
  21929. }
  21930. },
  21931. },
  21932. [
  21933. {
  21934. name: "Normal",
  21935. height: math.unit(6 + 2 / 12, "feet"),
  21936. default: true
  21937. },
  21938. ]
  21939. ))
  21940. characterMakers.push(() => makeCharacter(
  21941. { name: "Oliver", species: ["goodra"], tags: ["anthro"] },
  21942. {
  21943. front: {
  21944. height: math.unit(6 + 1 / 12, "feet"),
  21945. weight: math.unit(304, "lb"),
  21946. name: "Front",
  21947. image: {
  21948. source: "./media/characters/oliver/front.svg",
  21949. extra: 157 / 143,
  21950. bottom: 0.08
  21951. }
  21952. },
  21953. },
  21954. [
  21955. {
  21956. name: "Normal",
  21957. height: math.unit(6 + 1 / 12, "feet"),
  21958. default: true
  21959. },
  21960. ]
  21961. ))
  21962. characterMakers.push(() => makeCharacter(
  21963. { name: "Shane", species: ["gray-fox"], tags: ["anthro"] },
  21964. {
  21965. front: {
  21966. height: math.unit(5 + 7 / 12, "feet"),
  21967. weight: math.unit(140, "lb"),
  21968. name: "Front",
  21969. image: {
  21970. source: "./media/characters/shane/front.svg",
  21971. extra: 304 / 289,
  21972. bottom: 0.005
  21973. }
  21974. },
  21975. },
  21976. [
  21977. {
  21978. name: "Normal",
  21979. height: math.unit(5 + 7 / 12, "feet"),
  21980. default: true
  21981. },
  21982. ]
  21983. ))
  21984. characterMakers.push(() => makeCharacter(
  21985. { name: "Shin", species: ["rat"], tags: ["anthro"] },
  21986. {
  21987. front: {
  21988. height: math.unit(5 + 9 / 12, "feet"),
  21989. weight: math.unit(178, "lb"),
  21990. name: "Front",
  21991. image: {
  21992. source: "./media/characters/shin/front.svg",
  21993. extra: 159 / 151,
  21994. bottom: 0.015
  21995. }
  21996. },
  21997. },
  21998. [
  21999. {
  22000. name: "Normal",
  22001. height: math.unit(5 + 9 / 12, "feet"),
  22002. default: true
  22003. },
  22004. ]
  22005. ))
  22006. characterMakers.push(() => makeCharacter(
  22007. { name: "Xerxes", species: ["zoroark"], tags: ["anthro"] },
  22008. {
  22009. front: {
  22010. height: math.unit(5 + 10 / 12, "feet"),
  22011. weight: math.unit(168, "lb"),
  22012. name: "Front",
  22013. image: {
  22014. source: "./media/characters/xerxes/front.svg",
  22015. extra: 282 / 260,
  22016. bottom: 0.045
  22017. }
  22018. },
  22019. },
  22020. [
  22021. {
  22022. name: "Normal",
  22023. height: math.unit(5 + 10 / 12, "feet"),
  22024. default: true
  22025. },
  22026. ]
  22027. ))
  22028. characterMakers.push(() => makeCharacter(
  22029. { name: "Chaska", species: ["maned-wolf"], tags: ["anthro"] },
  22030. {
  22031. front: {
  22032. height: math.unit(6 + 7 / 12, "feet"),
  22033. weight: math.unit(208, "lb"),
  22034. name: "Front",
  22035. image: {
  22036. source: "./media/characters/chaska/front.svg",
  22037. extra: 332 / 319,
  22038. bottom: 0.015
  22039. }
  22040. },
  22041. },
  22042. [
  22043. {
  22044. name: "Normal",
  22045. height: math.unit(6 + 7 / 12, "feet"),
  22046. default: true
  22047. },
  22048. ]
  22049. ))
  22050. characterMakers.push(() => makeCharacter(
  22051. { name: "Enuk", species: ["black-backed-jackal"], tags: ["anthro"] },
  22052. {
  22053. front: {
  22054. height: math.unit(5 + 8 / 12, "feet"),
  22055. weight: math.unit(208, "lb"),
  22056. name: "Front",
  22057. image: {
  22058. source: "./media/characters/enuk/front.svg",
  22059. extra: 437 / 406,
  22060. bottom: 0.02
  22061. }
  22062. },
  22063. },
  22064. [
  22065. {
  22066. name: "Normal",
  22067. height: math.unit(5 + 8 / 12, "feet"),
  22068. default: true
  22069. },
  22070. ]
  22071. ))
  22072. characterMakers.push(() => makeCharacter(
  22073. { name: "Bruun", species: ["black-backed-jackal"], tags: ["anthro"] },
  22074. {
  22075. front: {
  22076. height: math.unit(5 + 10 / 12, "feet"),
  22077. weight: math.unit(252, "lb"),
  22078. name: "Front",
  22079. image: {
  22080. source: "./media/characters/bruun/front.svg",
  22081. extra: 197 / 187,
  22082. bottom: 0.012
  22083. }
  22084. },
  22085. },
  22086. [
  22087. {
  22088. name: "Normal",
  22089. height: math.unit(5 + 10 / 12, "feet"),
  22090. default: true
  22091. },
  22092. ]
  22093. ))
  22094. characterMakers.push(() => makeCharacter(
  22095. { name: "Alexeev", species: ["samurott"], tags: ["anthro"] },
  22096. {
  22097. front: {
  22098. height: math.unit(6 + 10 / 12, "feet"),
  22099. weight: math.unit(255, "lb"),
  22100. name: "Front",
  22101. image: {
  22102. source: "./media/characters/alexeev/front.svg",
  22103. extra: 213 / 200,
  22104. bottom: 0.05
  22105. }
  22106. },
  22107. },
  22108. [
  22109. {
  22110. name: "Normal",
  22111. height: math.unit(6 + 10 / 12, "feet"),
  22112. default: true
  22113. },
  22114. ]
  22115. ))
  22116. characterMakers.push(() => makeCharacter(
  22117. { name: "Evelyn", species: ["thylacine"], tags: ["anthro"] },
  22118. {
  22119. front: {
  22120. height: math.unit(2 + 8 / 12, "feet"),
  22121. weight: math.unit(22, "lb"),
  22122. name: "Front",
  22123. image: {
  22124. source: "./media/characters/evelyn/front.svg",
  22125. extra: 208 / 180
  22126. }
  22127. },
  22128. },
  22129. [
  22130. {
  22131. name: "Normal",
  22132. height: math.unit(2 + 8 / 12, "feet"),
  22133. default: true
  22134. },
  22135. ]
  22136. ))
  22137. characterMakers.push(() => makeCharacter(
  22138. { name: "Inca", species: ["gecko"], tags: ["anthro"] },
  22139. {
  22140. front: {
  22141. height: math.unit(5 + 9 / 12, "feet"),
  22142. weight: math.unit(139, "lb"),
  22143. name: "Front",
  22144. image: {
  22145. source: "./media/characters/inca/front.svg",
  22146. extra: 294 / 291,
  22147. bottom: 0.03
  22148. }
  22149. },
  22150. },
  22151. [
  22152. {
  22153. name: "Normal",
  22154. height: math.unit(5 + 9 / 12, "feet"),
  22155. default: true
  22156. },
  22157. ]
  22158. ))
  22159. characterMakers.push(() => makeCharacter(
  22160. { name: "Mera", species: ["flying-fox", "spectral-bat"], tags: ["anthro"] },
  22161. {
  22162. front: {
  22163. height: math.unit(6 + 3 / 12, "feet"),
  22164. weight: math.unit(185, "lb"),
  22165. name: "Front",
  22166. image: {
  22167. source: "./media/characters/mera/front.svg",
  22168. extra: 291 / 277,
  22169. bottom: 0.03
  22170. }
  22171. },
  22172. },
  22173. [
  22174. {
  22175. name: "Normal",
  22176. height: math.unit(6 + 3 / 12, "feet"),
  22177. default: true
  22178. },
  22179. ]
  22180. ))
  22181. characterMakers.push(() => makeCharacter(
  22182. { name: "Ceres", species: ["zoroark"], tags: ["anthro"] },
  22183. {
  22184. front: {
  22185. height: math.unit(6 + 7 / 12, "feet"),
  22186. weight: math.unit(160, "lb"),
  22187. name: "Front",
  22188. image: {
  22189. source: "./media/characters/ceres/front.svg",
  22190. extra: 1023 / 950,
  22191. bottom: 0.027
  22192. }
  22193. },
  22194. back: {
  22195. height: math.unit(6 + 7 / 12, "feet"),
  22196. weight: math.unit(160, "lb"),
  22197. name: "Back",
  22198. image: {
  22199. source: "./media/characters/ceres/back.svg",
  22200. extra: 1023 / 950
  22201. }
  22202. },
  22203. },
  22204. [
  22205. {
  22206. name: "Normal",
  22207. height: math.unit(6 + 7 / 12, "feet"),
  22208. default: true
  22209. },
  22210. ]
  22211. ))
  22212. characterMakers.push(() => makeCharacter(
  22213. { name: "Kris", species: ["ninetales"], tags: ["anthro"] },
  22214. {
  22215. front: {
  22216. height: math.unit(5 + 10 / 12, "feet"),
  22217. weight: math.unit(150, "lb"),
  22218. name: "Front",
  22219. image: {
  22220. source: "./media/characters/kris/front.svg",
  22221. extra: 885 / 803,
  22222. bottom: 0.03
  22223. }
  22224. },
  22225. },
  22226. [
  22227. {
  22228. name: "Normal",
  22229. height: math.unit(5 + 10 / 12, "feet"),
  22230. default: true
  22231. },
  22232. ]
  22233. ))
  22234. characterMakers.push(() => makeCharacter(
  22235. { name: "Taluthus", species: ["kitsune"], tags: ["anthro"] },
  22236. {
  22237. dragon_front: {
  22238. height: math.unit(5, "feet"),
  22239. name: "Front",
  22240. image: {
  22241. source: "./media/characters/taluthus/dragon-front.svg",
  22242. extra: 1203/1098,
  22243. bottom: 46/1249
  22244. },
  22245. form: "dragon",
  22246. default: true
  22247. },
  22248. dragon_maw: {
  22249. height: math.unit(2.35, "feet"),
  22250. name: "Maw",
  22251. image: {
  22252. source: "./media/characters/taluthus/dragon-maw.svg"
  22253. },
  22254. form: "dragon",
  22255. },
  22256. kitsune_front: {
  22257. height: math.unit(7, "feet"),
  22258. name: "Front",
  22259. image: {
  22260. source: "./media/characters/taluthus/kitsune-front.svg",
  22261. extra: 900/841,
  22262. bottom: 65/965
  22263. },
  22264. form: "kitsune",
  22265. default: true
  22266. },
  22267. },
  22268. [
  22269. {
  22270. name: "Normal",
  22271. height: math.unit(5, "feet"),
  22272. form: "dragon",
  22273. default: true,
  22274. },
  22275. {
  22276. name: "Normal",
  22277. height: math.unit(7, "feet"),
  22278. form: "kitsune",
  22279. default: true
  22280. },
  22281. {
  22282. name: "Macro",
  22283. height: math.unit(300, "feet"),
  22284. allForms: true
  22285. },
  22286. ],
  22287. {
  22288. "dragon": {
  22289. name: "Dragon",
  22290. default: true
  22291. },
  22292. "kitsune": {
  22293. name: "Kitsune",
  22294. },
  22295. }
  22296. ))
  22297. characterMakers.push(() => makeCharacter(
  22298. { name: "Dawn", species: ["luxray"], tags: ["anthro"] },
  22299. {
  22300. front: {
  22301. height: math.unit(5 + 9 / 12, "feet"),
  22302. weight: math.unit(145, "lb"),
  22303. name: "Front",
  22304. image: {
  22305. source: "./media/characters/dawn/front.svg",
  22306. extra: 2094 / 2016,
  22307. bottom: 0.025
  22308. }
  22309. },
  22310. back: {
  22311. height: math.unit(5 + 9 / 12, "feet"),
  22312. weight: math.unit(160, "lb"),
  22313. name: "Back",
  22314. image: {
  22315. source: "./media/characters/dawn/back.svg",
  22316. extra: 2112 / 2080,
  22317. bottom: 0.005
  22318. }
  22319. },
  22320. },
  22321. [
  22322. {
  22323. name: "Normal",
  22324. height: math.unit(6 + 7 / 12, "feet"),
  22325. default: true
  22326. },
  22327. ]
  22328. ))
  22329. characterMakers.push(() => makeCharacter(
  22330. { name: "Arador", species: ["water-dragon"], tags: ["anthro"] },
  22331. {
  22332. anthro: {
  22333. height: math.unit(8 + 3 / 12, "feet"),
  22334. weight: math.unit(450, "lb"),
  22335. name: "Anthro",
  22336. image: {
  22337. source: "./media/characters/arador/anthro.svg",
  22338. extra: 1835 / 1718,
  22339. bottom: 0.025
  22340. }
  22341. },
  22342. feral: {
  22343. height: math.unit(4, "feet"),
  22344. weight: math.unit(200, "lb"),
  22345. name: "Feral",
  22346. image: {
  22347. source: "./media/characters/arador/feral.svg",
  22348. extra: 1683 / 1514,
  22349. bottom: 0.07
  22350. }
  22351. },
  22352. },
  22353. [
  22354. {
  22355. name: "Normal",
  22356. height: math.unit(8 + 3 / 12, "feet")
  22357. },
  22358. {
  22359. name: "Macro",
  22360. height: math.unit(82.5, "feet"),
  22361. default: true
  22362. },
  22363. ]
  22364. ))
  22365. characterMakers.push(() => makeCharacter(
  22366. { name: "Dharsi", species: ["dragon"], tags: ["anthro"] },
  22367. {
  22368. front: {
  22369. height: math.unit(5 + 10 / 12, "feet"),
  22370. weight: math.unit(125, "lb"),
  22371. name: "Front",
  22372. image: {
  22373. source: "./media/characters/dharsi/front.svg",
  22374. extra: 716 / 630,
  22375. bottom: 0.035
  22376. }
  22377. },
  22378. },
  22379. [
  22380. {
  22381. name: "Nano",
  22382. height: math.unit(100, "nm")
  22383. },
  22384. {
  22385. name: "Micro",
  22386. height: math.unit(2, "inches")
  22387. },
  22388. {
  22389. name: "Normal",
  22390. height: math.unit(5 + 10 / 12, "feet"),
  22391. default: true
  22392. },
  22393. {
  22394. name: "Macro",
  22395. height: math.unit(1000, "feet")
  22396. },
  22397. {
  22398. name: "Megamacro",
  22399. height: math.unit(10, "miles")
  22400. },
  22401. {
  22402. name: "Gigamacro",
  22403. height: math.unit(3000, "miles")
  22404. },
  22405. {
  22406. name: "Teramacro",
  22407. height: math.unit(500000, "miles")
  22408. },
  22409. {
  22410. name: "Teramacro+",
  22411. height: math.unit(30, "galaxies")
  22412. },
  22413. ]
  22414. ))
  22415. characterMakers.push(() => makeCharacter(
  22416. { name: "Deathy", species: ["wolf"], tags: ["anthro"] },
  22417. {
  22418. front: {
  22419. height: math.unit(6, "feet"),
  22420. weight: math.unit(150, "lb"),
  22421. name: "Front",
  22422. image: {
  22423. source: "./media/characters/deathy/front.svg",
  22424. extra: 1552 / 1463,
  22425. bottom: 0.025
  22426. }
  22427. },
  22428. side: {
  22429. height: math.unit(6, "feet"),
  22430. weight: math.unit(150, "lb"),
  22431. name: "Side",
  22432. image: {
  22433. source: "./media/characters/deathy/side.svg",
  22434. extra: 1604 / 1455,
  22435. bottom: 0.025
  22436. }
  22437. },
  22438. back: {
  22439. height: math.unit(6, "feet"),
  22440. weight: math.unit(150, "lb"),
  22441. name: "Back",
  22442. image: {
  22443. source: "./media/characters/deathy/back.svg",
  22444. extra: 1580 / 1463,
  22445. bottom: 0.005
  22446. }
  22447. },
  22448. },
  22449. [
  22450. {
  22451. name: "Micro",
  22452. height: math.unit(5, "millimeters")
  22453. },
  22454. {
  22455. name: "Normal",
  22456. height: math.unit(6 + 5 / 12, "feet"),
  22457. default: true
  22458. },
  22459. ]
  22460. ))
  22461. characterMakers.push(() => makeCharacter(
  22462. { name: "Juniper", species: ["snake"], tags: ["naga", "goo"] },
  22463. {
  22464. front: {
  22465. height: math.unit(16, "feet"),
  22466. weight: math.unit(4000, "lb"),
  22467. name: "Front",
  22468. image: {
  22469. source: "./media/characters/juniper/front.svg",
  22470. bottom: 0.04
  22471. }
  22472. },
  22473. },
  22474. [
  22475. {
  22476. name: "Normal",
  22477. height: math.unit(16, "feet"),
  22478. default: true
  22479. },
  22480. ]
  22481. ))
  22482. characterMakers.push(() => makeCharacter(
  22483. { name: "Hipster", species: ["fox"], tags: ["anthro"] },
  22484. {
  22485. front: {
  22486. height: math.unit(6, "feet"),
  22487. weight: math.unit(150, "lb"),
  22488. name: "Front",
  22489. image: {
  22490. source: "./media/characters/hipster/front.svg",
  22491. extra: 1312 / 1209,
  22492. bottom: 0.025
  22493. }
  22494. },
  22495. back: {
  22496. height: math.unit(6, "feet"),
  22497. weight: math.unit(150, "lb"),
  22498. name: "Back",
  22499. image: {
  22500. source: "./media/characters/hipster/back.svg",
  22501. extra: 1281 / 1196,
  22502. bottom: 0.01
  22503. }
  22504. },
  22505. },
  22506. [
  22507. {
  22508. name: "Micro",
  22509. height: math.unit(1, "mm")
  22510. },
  22511. {
  22512. name: "Normal",
  22513. height: math.unit(4, "inches"),
  22514. default: true
  22515. },
  22516. {
  22517. name: "Macro",
  22518. height: math.unit(500, "feet")
  22519. },
  22520. {
  22521. name: "Megamacro",
  22522. height: math.unit(1000, "miles")
  22523. },
  22524. ]
  22525. ))
  22526. characterMakers.push(() => makeCharacter(
  22527. { name: "Tendirmuldr", species: ["cow"], tags: ["anthro"] },
  22528. {
  22529. front: {
  22530. height: math.unit(6, "feet"),
  22531. weight: math.unit(150, "lb"),
  22532. name: "Front",
  22533. image: {
  22534. source: "./media/characters/tendirmuldr/front.svg",
  22535. extra: 1878 / 1772,
  22536. bottom: 0.015
  22537. }
  22538. },
  22539. },
  22540. [
  22541. {
  22542. name: "Megamacro",
  22543. height: math.unit(1500, "miles"),
  22544. default: true
  22545. },
  22546. ]
  22547. ))
  22548. characterMakers.push(() => makeCharacter(
  22549. { name: "Mort", species: ["demon"], tags: ["feral"] },
  22550. {
  22551. front: {
  22552. height: math.unit(14, "feet"),
  22553. weight: math.unit(12000, "lb"),
  22554. name: "Front",
  22555. image: {
  22556. source: "./media/characters/mort/front.svg",
  22557. extra: 365 / 318,
  22558. bottom: 0.01
  22559. }
  22560. },
  22561. side: {
  22562. height: math.unit(14, "feet"),
  22563. weight: math.unit(12000, "lb"),
  22564. name: "Side",
  22565. image: {
  22566. source: "./media/characters/mort/side.svg",
  22567. extra: 365 / 318,
  22568. bottom: 0.052
  22569. },
  22570. default: true
  22571. },
  22572. back: {
  22573. height: math.unit(14, "feet"),
  22574. weight: math.unit(12000, "lb"),
  22575. name: "Back",
  22576. image: {
  22577. source: "./media/characters/mort/back.svg",
  22578. extra: 371 / 332,
  22579. bottom: 0.18
  22580. }
  22581. },
  22582. },
  22583. [
  22584. {
  22585. name: "Normal",
  22586. height: math.unit(14, "feet"),
  22587. default: true
  22588. },
  22589. ]
  22590. ))
  22591. characterMakers.push(() => makeCharacter(
  22592. { name: "Lycoa", species: ["sergal"], tags: ["anthro", "goo"] },
  22593. {
  22594. front: {
  22595. height: math.unit(8, "feet"),
  22596. weight: math.unit(1, "ton"),
  22597. name: "Front",
  22598. image: {
  22599. source: "./media/characters/lycoa/front.svg",
  22600. extra: 1836/1728,
  22601. bottom: 81/1917
  22602. }
  22603. },
  22604. back: {
  22605. height: math.unit(8, "feet"),
  22606. weight: math.unit(1, "ton"),
  22607. name: "Back",
  22608. image: {
  22609. source: "./media/characters/lycoa/back.svg",
  22610. extra: 1785/1720,
  22611. bottom: 91/1876
  22612. }
  22613. },
  22614. head: {
  22615. height: math.unit(1.6243, "feet"),
  22616. name: "Head",
  22617. image: {
  22618. source: "./media/characters/lycoa/head.svg",
  22619. extra: 1011/782,
  22620. bottom: 0/1011
  22621. }
  22622. },
  22623. tailmaw: {
  22624. height: math.unit(1.9, "feet"),
  22625. name: "Tailmaw",
  22626. image: {
  22627. source: "./media/characters/lycoa/tailmaw.svg"
  22628. }
  22629. },
  22630. tentacles: {
  22631. height: math.unit(2.1, "feet"),
  22632. name: "Tentacles",
  22633. image: {
  22634. source: "./media/characters/lycoa/tentacles.svg"
  22635. }
  22636. },
  22637. dick: {
  22638. height: math.unit(1.73, "feet"),
  22639. name: "Dick",
  22640. image: {
  22641. source: "./media/characters/lycoa/dick.svg"
  22642. }
  22643. },
  22644. },
  22645. [
  22646. {
  22647. name: "Normal",
  22648. height: math.unit(8, "feet"),
  22649. default: true
  22650. },
  22651. {
  22652. name: "Macro",
  22653. height: math.unit(30, "feet")
  22654. },
  22655. ]
  22656. ))
  22657. characterMakers.push(() => makeCharacter(
  22658. { name: "Naldara", species: ["jackalope"], tags: ["anthro", "naga"] },
  22659. {
  22660. front: {
  22661. height: math.unit(4 + 2 / 12, "feet"),
  22662. weight: math.unit(70, "lb"),
  22663. name: "Front",
  22664. image: {
  22665. source: "./media/characters/naldara/front.svg",
  22666. extra: 1664/1387,
  22667. bottom: 81/1745
  22668. },
  22669. form: "anthro",
  22670. default: true
  22671. },
  22672. naga: {
  22673. height: math.unit(20, "feet"),
  22674. weight: math.unit(15000, "kg"),
  22675. name: "Front",
  22676. image: {
  22677. source: "./media/characters/naldara/naga.svg",
  22678. extra: 1590/1396,
  22679. bottom: 285/1875
  22680. },
  22681. form: "naga",
  22682. default: true
  22683. },
  22684. },
  22685. [
  22686. {
  22687. name: "Normal",
  22688. height: math.unit(4 + 2 / 12, "feet"),
  22689. form: "anthro",
  22690. default: true
  22691. },
  22692. {
  22693. name: "Normal",
  22694. height: math.unit(20, "feet"),
  22695. form: "naga",
  22696. default: true
  22697. },
  22698. ],
  22699. {
  22700. "anthro": {
  22701. name: "Anthro",
  22702. default: true
  22703. },
  22704. "naga": {
  22705. name: "Naga"
  22706. }
  22707. }
  22708. ))
  22709. characterMakers.push(() => makeCharacter(
  22710. { name: "Briar", species: ["hyena"], tags: ["anthro"] },
  22711. {
  22712. front: {
  22713. height: math.unit(13 + 7 / 12, "feet"),
  22714. weight: math.unit(1500, "lb"),
  22715. name: "Front",
  22716. image: {
  22717. source: "./media/characters/briar/front.svg",
  22718. extra: 1223/1157,
  22719. bottom: 123/1346
  22720. }
  22721. },
  22722. },
  22723. [
  22724. {
  22725. name: "Normal",
  22726. height: math.unit(13 + 7 / 12, "feet"),
  22727. default: true
  22728. },
  22729. ]
  22730. ))
  22731. characterMakers.push(() => makeCharacter(
  22732. { name: "Vanguard", species: ["otter", "alligator"], tags: ["anthro"] },
  22733. {
  22734. side: {
  22735. height: math.unit(16, "feet"),
  22736. weight: math.unit(500, "lb"),
  22737. name: "Side",
  22738. image: {
  22739. source: "./media/characters/vanguard/side.svg",
  22740. extra: 1022/914,
  22741. bottom: 30/1052
  22742. }
  22743. },
  22744. sideAlt: {
  22745. height: math.unit(10, "feet"),
  22746. weight: math.unit(500, "lb"),
  22747. name: "Side (Alt)",
  22748. image: {
  22749. source: "./media/characters/vanguard/side-alt.svg",
  22750. extra: 502 / 425,
  22751. bottom: 0.087
  22752. }
  22753. },
  22754. },
  22755. [
  22756. {
  22757. name: "Normal",
  22758. height: math.unit(17.71, "feet"),
  22759. default: true
  22760. },
  22761. ]
  22762. ))
  22763. characterMakers.push(() => makeCharacter(
  22764. { name: "Artemis", species: ["renamon", "construct"], tags: ["anthro"] },
  22765. {
  22766. front: {
  22767. height: math.unit(7.5, "feet"),
  22768. weight: math.unit(2, "lb"),
  22769. name: "Front",
  22770. image: {
  22771. source: "./media/characters/artemis/work-safe-front.svg",
  22772. extra: 1192 / 1075,
  22773. bottom: 0.07
  22774. },
  22775. form: "work-safe",
  22776. default: true
  22777. },
  22778. frontNsfw: {
  22779. height: math.unit(7.5, "feet"),
  22780. weight: math.unit(2, "lb"),
  22781. name: "Front",
  22782. image: {
  22783. source: "./media/characters/artemis/calibrating-front.svg",
  22784. extra: 1192 / 1075,
  22785. bottom: 0.07
  22786. },
  22787. form: "calibrating",
  22788. default: true
  22789. },
  22790. frontNsfwer: {
  22791. height: math.unit(7.5, "feet"),
  22792. weight: math.unit(2, "lb"),
  22793. name: "Front",
  22794. image: {
  22795. source: "./media/characters/artemis/oversize-load-front.svg",
  22796. extra: 1192 / 1075,
  22797. bottom: 0.07
  22798. },
  22799. form: "oversize-load",
  22800. default: true
  22801. },
  22802. side: {
  22803. height: math.unit(7.5, "feet"),
  22804. weight: math.unit(2, "lb"),
  22805. name: "Side",
  22806. image: {
  22807. source: "./media/characters/artemis/work-safe-side.svg",
  22808. extra: 1192 / 1075,
  22809. bottom: 0.07
  22810. },
  22811. form: "work-safe"
  22812. },
  22813. sideNsfw: {
  22814. height: math.unit(7.5, "feet"),
  22815. weight: math.unit(2, "lb"),
  22816. name: "Side",
  22817. image: {
  22818. source: "./media/characters/artemis/calibrating-side.svg",
  22819. extra: 1192 / 1075,
  22820. bottom: 0.07
  22821. },
  22822. form: "calibrating"
  22823. },
  22824. sideNsfwer: {
  22825. height: math.unit(7.5, "feet"),
  22826. weight: math.unit(2, "lb"),
  22827. name: "Side",
  22828. image: {
  22829. source: "./media/characters/artemis/oversize-load-side.svg",
  22830. extra: 1192 / 1075,
  22831. bottom: 0.07
  22832. },
  22833. form: "oversize-load"
  22834. },
  22835. maw: {
  22836. height: math.unit(1.1, "feet"),
  22837. name: "Maw",
  22838. image: {
  22839. source: "./media/characters/artemis/maw.svg"
  22840. },
  22841. form: "work-safe"
  22842. },
  22843. stomach: {
  22844. height: math.unit(0.95, "feet"),
  22845. name: "Stomach",
  22846. image: {
  22847. source: "./media/characters/artemis/stomach.svg"
  22848. },
  22849. form: "work-safe"
  22850. },
  22851. dickCanine: {
  22852. height: math.unit(1, "feet"),
  22853. name: "Dick (Canine)",
  22854. image: {
  22855. source: "./media/characters/artemis/dick-canine.svg"
  22856. },
  22857. form: "calibrating"
  22858. },
  22859. dickEquine: {
  22860. height: math.unit(0.85, "feet"),
  22861. name: "Dick (Equine)",
  22862. image: {
  22863. source: "./media/characters/artemis/dick-equine.svg"
  22864. },
  22865. form: "calibrating"
  22866. },
  22867. dickExotic: {
  22868. height: math.unit(0.85, "feet"),
  22869. name: "Dick (Exotic)",
  22870. image: {
  22871. source: "./media/characters/artemis/dick-exotic.svg"
  22872. },
  22873. form: "calibrating"
  22874. },
  22875. dickCanineBigger: {
  22876. height: math.unit(1 * 1.33, "feet"),
  22877. name: "Dick (Canine)",
  22878. image: {
  22879. source: "./media/characters/artemis/dick-canine.svg"
  22880. },
  22881. form: "oversize-load"
  22882. },
  22883. dickEquineBigger: {
  22884. height: math.unit(0.85 * 1.33, "feet"),
  22885. name: "Dick (Equine)",
  22886. image: {
  22887. source: "./media/characters/artemis/dick-equine.svg"
  22888. },
  22889. form: "oversize-load"
  22890. },
  22891. dickExoticBigger: {
  22892. height: math.unit(0.85 * 1.33, "feet"),
  22893. name: "Dick (Exotic)",
  22894. image: {
  22895. source: "./media/characters/artemis/dick-exotic.svg"
  22896. },
  22897. form: "oversize-load"
  22898. },
  22899. },
  22900. [
  22901. {
  22902. name: "Normal",
  22903. height: math.unit(7.5, "feet"),
  22904. form: "work-safe",
  22905. default: true
  22906. },
  22907. {
  22908. name: "Normal",
  22909. height: math.unit(7.5, "feet"),
  22910. form: "calibrating",
  22911. default: true
  22912. },
  22913. {
  22914. name: "Normal",
  22915. height: math.unit(7.5, "feet"),
  22916. form: "oversize-load",
  22917. default: true
  22918. },
  22919. {
  22920. name: "Enlarged",
  22921. height: math.unit(12, "feet"),
  22922. form: "work-safe",
  22923. },
  22924. {
  22925. name: "Enlarged",
  22926. height: math.unit(12, "feet"),
  22927. form: "calibrating",
  22928. },
  22929. {
  22930. name: "Enlarged",
  22931. height: math.unit(12, "feet"),
  22932. form: "oversize-load",
  22933. },
  22934. ],
  22935. {
  22936. "work-safe": {
  22937. name: "Work-Safe",
  22938. default: true
  22939. },
  22940. "calibrating": {
  22941. name: "Calibrating"
  22942. },
  22943. "oversize-load": {
  22944. name: "Oversize Load"
  22945. }
  22946. }
  22947. ))
  22948. characterMakers.push(() => makeCharacter(
  22949. { name: "Kira", species: ["fluudrani"], tags: ["anthro"] },
  22950. {
  22951. front: {
  22952. height: math.unit(5 + 3 / 12, "feet"),
  22953. weight: math.unit(160, "lb"),
  22954. name: "Front",
  22955. image: {
  22956. source: "./media/characters/kira/front.svg",
  22957. extra: 906 / 786,
  22958. bottom: 0.01
  22959. }
  22960. },
  22961. back: {
  22962. height: math.unit(5 + 3 / 12, "feet"),
  22963. weight: math.unit(160, "lb"),
  22964. name: "Back",
  22965. image: {
  22966. source: "./media/characters/kira/back.svg",
  22967. extra: 882 / 757,
  22968. bottom: 0.005
  22969. }
  22970. },
  22971. frontDressed: {
  22972. height: math.unit(5 + 3 / 12, "feet"),
  22973. weight: math.unit(160, "lb"),
  22974. name: "Front (Dressed)",
  22975. image: {
  22976. source: "./media/characters/kira/front-dressed.svg",
  22977. extra: 906 / 786,
  22978. bottom: 0.01
  22979. }
  22980. },
  22981. beans: {
  22982. height: math.unit(0.92, "feet"),
  22983. name: "Beans",
  22984. image: {
  22985. source: "./media/characters/kira/beans.svg"
  22986. }
  22987. },
  22988. },
  22989. [
  22990. {
  22991. name: "Normal",
  22992. height: math.unit(5 + 3 / 12, "feet"),
  22993. default: true
  22994. },
  22995. ]
  22996. ))
  22997. characterMakers.push(() => makeCharacter(
  22998. { name: "Scramble", species: ["surkanu"], tags: ["anthro"] },
  22999. {
  23000. front: {
  23001. height: math.unit(5 + 4 / 12, "feet"),
  23002. weight: math.unit(145, "lb"),
  23003. name: "Front",
  23004. image: {
  23005. source: "./media/characters/scramble/front.svg",
  23006. extra: 763 / 727,
  23007. bottom: 0.05
  23008. }
  23009. },
  23010. back: {
  23011. height: math.unit(5 + 4 / 12, "feet"),
  23012. weight: math.unit(145, "lb"),
  23013. name: "Back",
  23014. image: {
  23015. source: "./media/characters/scramble/back.svg",
  23016. extra: 826 / 737,
  23017. bottom: 0.002
  23018. }
  23019. },
  23020. },
  23021. [
  23022. {
  23023. name: "Normal",
  23024. height: math.unit(5 + 4 / 12, "feet"),
  23025. default: true
  23026. },
  23027. ]
  23028. ))
  23029. characterMakers.push(() => makeCharacter(
  23030. { name: "Biscuit", species: ["surkanu"], tags: ["anthro"] },
  23031. {
  23032. side: {
  23033. height: math.unit(6 + 2 / 12, "feet"),
  23034. weight: math.unit(190, "lb"),
  23035. name: "Side",
  23036. image: {
  23037. source: "./media/characters/biscuit/side.svg",
  23038. extra: 858 / 791,
  23039. bottom: 0.044
  23040. }
  23041. },
  23042. },
  23043. [
  23044. {
  23045. name: "Normal",
  23046. height: math.unit(6 + 2 / 12, "feet"),
  23047. default: true
  23048. },
  23049. ]
  23050. ))
  23051. characterMakers.push(() => makeCharacter(
  23052. { name: "Poffin", species: ["kiiasi"], tags: ["anthro"] },
  23053. {
  23054. front: {
  23055. height: math.unit(5 + 2 / 12, "feet"),
  23056. weight: math.unit(120, "lb"),
  23057. name: "Front",
  23058. image: {
  23059. source: "./media/characters/poffin/front.svg",
  23060. extra: 786 / 680,
  23061. bottom: 0.005
  23062. }
  23063. },
  23064. },
  23065. [
  23066. {
  23067. name: "Normal",
  23068. height: math.unit(5 + 2 / 12, "feet"),
  23069. default: true
  23070. },
  23071. ]
  23072. ))
  23073. characterMakers.push(() => makeCharacter(
  23074. { name: "Dhari", species: ["werewolf", "fennec-fox"], tags: ["anthro"] },
  23075. {
  23076. front: {
  23077. height: math.unit(6 + 3 / 12, "feet"),
  23078. weight: math.unit(519, "lb"),
  23079. name: "Front",
  23080. image: {
  23081. source: "./media/characters/dhari/front.svg",
  23082. extra: 1048 / 946,
  23083. bottom: 0.015
  23084. }
  23085. },
  23086. back: {
  23087. height: math.unit(6 + 3 / 12, "feet"),
  23088. weight: math.unit(519, "lb"),
  23089. name: "Back",
  23090. image: {
  23091. source: "./media/characters/dhari/back.svg",
  23092. extra: 1048 / 931,
  23093. bottom: 0.005
  23094. }
  23095. },
  23096. frontDressed: {
  23097. height: math.unit(6 + 3 / 12, "feet"),
  23098. weight: math.unit(519, "lb"),
  23099. name: "Front (Dressed)",
  23100. image: {
  23101. source: "./media/characters/dhari/front-dressed.svg",
  23102. extra: 1713 / 1546,
  23103. bottom: 0.02
  23104. }
  23105. },
  23106. backDressed: {
  23107. height: math.unit(6 + 3 / 12, "feet"),
  23108. weight: math.unit(519, "lb"),
  23109. name: "Back (Dressed)",
  23110. image: {
  23111. source: "./media/characters/dhari/back-dressed.svg",
  23112. extra: 1699 / 1537,
  23113. bottom: 0.01
  23114. }
  23115. },
  23116. maw: {
  23117. height: math.unit(0.95, "feet"),
  23118. name: "Maw",
  23119. image: {
  23120. source: "./media/characters/dhari/maw.svg"
  23121. }
  23122. },
  23123. wereFront: {
  23124. height: math.unit(12 + 8 / 12, "feet"),
  23125. weight: math.unit(4000, "lb"),
  23126. name: "Front (Were)",
  23127. image: {
  23128. source: "./media/characters/dhari/were-front.svg",
  23129. extra: 1065 / 969,
  23130. bottom: 0.015
  23131. }
  23132. },
  23133. wereBack: {
  23134. height: math.unit(12 + 8 / 12, "feet"),
  23135. weight: math.unit(4000, "lb"),
  23136. name: "Back (Were)",
  23137. image: {
  23138. source: "./media/characters/dhari/were-back.svg",
  23139. extra: 1065 / 969,
  23140. bottom: 0.012
  23141. }
  23142. },
  23143. wereMaw: {
  23144. height: math.unit(0.625, "meters"),
  23145. name: "Maw (Were)",
  23146. image: {
  23147. source: "./media/characters/dhari/were-maw.svg"
  23148. }
  23149. },
  23150. },
  23151. [
  23152. {
  23153. name: "Normal",
  23154. height: math.unit(6 + 3 / 12, "feet"),
  23155. default: true
  23156. },
  23157. ]
  23158. ))
  23159. characterMakers.push(() => makeCharacter(
  23160. { name: "Rena Dyne", species: ["sabertooth-tiger"], tags: ["anthro"] },
  23161. {
  23162. anthro: {
  23163. height: math.unit(5 + 7 / 12, "feet"),
  23164. weight: math.unit(175, "lb"),
  23165. name: "Anthro",
  23166. image: {
  23167. source: "./media/characters/rena-dyne/anthro.svg",
  23168. extra: 1849 / 1785,
  23169. bottom: 0.005
  23170. }
  23171. },
  23172. taur: {
  23173. height: math.unit(15 + 6 / 12, "feet"),
  23174. weight: math.unit(8000, "lb"),
  23175. name: "Taur",
  23176. image: {
  23177. source: "./media/characters/rena-dyne/taur.svg",
  23178. extra: 2315 / 2234,
  23179. bottom: 0.033
  23180. }
  23181. },
  23182. },
  23183. [
  23184. {
  23185. name: "Normal",
  23186. height: math.unit(5 + 7 / 12, "feet"),
  23187. default: true
  23188. },
  23189. ]
  23190. ))
  23191. characterMakers.push(() => makeCharacter(
  23192. { name: "Weremeep", species: ["monster"], tags: ["anthro"] },
  23193. {
  23194. front: {
  23195. height: math.unit(8, "feet"),
  23196. weight: math.unit(600, "lb"),
  23197. name: "Front",
  23198. image: {
  23199. source: "./media/characters/weremeep/front.svg",
  23200. extra: 970/849,
  23201. bottom: 7/977
  23202. }
  23203. },
  23204. },
  23205. [
  23206. {
  23207. name: "Normal",
  23208. height: math.unit(8, "feet"),
  23209. default: true
  23210. },
  23211. {
  23212. name: "Lorg",
  23213. height: math.unit(12, "feet")
  23214. },
  23215. {
  23216. name: "Oh Lawd She Comin'",
  23217. height: math.unit(20, "feet")
  23218. },
  23219. ]
  23220. ))
  23221. characterMakers.push(() => makeCharacter(
  23222. { name: "Reza", species: ["cat", "dragon"], tags: ["anthro", "feral"] },
  23223. {
  23224. front: {
  23225. height: math.unit(4, "feet"),
  23226. weight: math.unit(90, "lb"),
  23227. name: "Front",
  23228. image: {
  23229. source: "./media/characters/reza/front.svg",
  23230. extra: 1183 / 1111,
  23231. bottom: 0.017
  23232. }
  23233. },
  23234. back: {
  23235. height: math.unit(4, "feet"),
  23236. weight: math.unit(90, "lb"),
  23237. name: "Back",
  23238. image: {
  23239. source: "./media/characters/reza/back.svg",
  23240. extra: 1183 / 1111,
  23241. bottom: 0.01
  23242. }
  23243. },
  23244. drake: {
  23245. height: math.unit(30, "feet"),
  23246. weight: math.unit(246960, "lb"),
  23247. name: "Drake",
  23248. image: {
  23249. source: "./media/characters/reza/drake.svg",
  23250. extra: 2350 / 2024,
  23251. bottom: 60.7 / 2403
  23252. }
  23253. },
  23254. },
  23255. [
  23256. {
  23257. name: "Normal",
  23258. height: math.unit(4, "feet"),
  23259. default: true
  23260. },
  23261. ]
  23262. ))
  23263. characterMakers.push(() => makeCharacter(
  23264. { name: "Athea", species: ["leopard"], tags: ["taur"] },
  23265. {
  23266. side: {
  23267. height: math.unit(15, "feet"),
  23268. weight: math.unit(14, "tons"),
  23269. name: "Side",
  23270. image: {
  23271. source: "./media/characters/athea/side.svg",
  23272. extra: 960 / 540,
  23273. bottom: 0.003
  23274. }
  23275. },
  23276. sitting: {
  23277. height: math.unit(6 * 2.85, "feet"),
  23278. weight: math.unit(14, "tons"),
  23279. name: "Sitting",
  23280. image: {
  23281. source: "./media/characters/athea/sitting.svg",
  23282. extra: 621 / 581,
  23283. bottom: 0.075
  23284. }
  23285. },
  23286. maw: {
  23287. height: math.unit(7.59498031496063, "feet"),
  23288. name: "Maw",
  23289. image: {
  23290. source: "./media/characters/athea/maw.svg"
  23291. }
  23292. },
  23293. },
  23294. [
  23295. {
  23296. name: "Lap Cat",
  23297. height: math.unit(2.5, "feet")
  23298. },
  23299. {
  23300. name: "Minimacro",
  23301. height: math.unit(15, "feet"),
  23302. default: true
  23303. },
  23304. {
  23305. name: "Macro",
  23306. height: math.unit(120, "feet")
  23307. },
  23308. {
  23309. name: "Macro+",
  23310. height: math.unit(640, "feet")
  23311. },
  23312. {
  23313. name: "Colossus",
  23314. height: math.unit(2.2, "miles")
  23315. },
  23316. ]
  23317. ))
  23318. characterMakers.push(() => makeCharacter(
  23319. { name: "Seroko", species: ["je-stoff-drachen"], tags: ["anthro"] },
  23320. {
  23321. front: {
  23322. height: math.unit(8 + 8 / 12, "feet"),
  23323. weight: math.unit(130, "kg"),
  23324. name: "Front",
  23325. image: {
  23326. source: "./media/characters/seroko/front.svg",
  23327. extra: 1385 / 1280,
  23328. bottom: 0.025
  23329. }
  23330. },
  23331. back: {
  23332. height: math.unit(8 + 8 / 12, "feet"),
  23333. weight: math.unit(130, "kg"),
  23334. name: "Back",
  23335. image: {
  23336. source: "./media/characters/seroko/back.svg",
  23337. extra: 1369 / 1238,
  23338. bottom: 0.018
  23339. }
  23340. },
  23341. frontDressed: {
  23342. height: math.unit(8 + 8 / 12, "feet"),
  23343. weight: math.unit(130, "kg"),
  23344. name: "Front (Dressed)",
  23345. image: {
  23346. source: "./media/characters/seroko/front-dressed.svg",
  23347. extra: 1366 / 1275,
  23348. bottom: 0.03
  23349. }
  23350. },
  23351. },
  23352. [
  23353. {
  23354. name: "Normal",
  23355. height: math.unit(8 + 8 / 12, "feet"),
  23356. default: true
  23357. },
  23358. ]
  23359. ))
  23360. characterMakers.push(() => makeCharacter(
  23361. { name: "Quatzi", species: ["river-snaptail"], tags: ["anthro"] },
  23362. {
  23363. front: {
  23364. height: math.unit(5.5, "feet"),
  23365. weight: math.unit(160, "lb"),
  23366. name: "Front",
  23367. image: {
  23368. source: "./media/characters/quatzi/front.svg",
  23369. extra: 2346 / 2242,
  23370. bottom: 0.015
  23371. }
  23372. },
  23373. },
  23374. [
  23375. {
  23376. name: "Normal",
  23377. height: math.unit(5.5, "feet"),
  23378. default: true
  23379. },
  23380. {
  23381. name: "Big",
  23382. height: math.unit(7.7, "feet")
  23383. },
  23384. ]
  23385. ))
  23386. characterMakers.push(() => makeCharacter(
  23387. { name: "Sen", species: ["red-panda"], tags: ["anthro"] },
  23388. {
  23389. front: {
  23390. height: math.unit(5 + 11 / 12, "feet"),
  23391. weight: math.unit(180, "lb"),
  23392. name: "Front",
  23393. image: {
  23394. source: "./media/characters/sen/front.svg",
  23395. extra: 1321 / 1254,
  23396. bottom: 0.015
  23397. }
  23398. },
  23399. side: {
  23400. height: math.unit(5 + 11 / 12, "feet"),
  23401. weight: math.unit(180, "lb"),
  23402. name: "Side",
  23403. image: {
  23404. source: "./media/characters/sen/side.svg",
  23405. extra: 1321 / 1254,
  23406. bottom: 0.007
  23407. }
  23408. },
  23409. back: {
  23410. height: math.unit(5 + 11 / 12, "feet"),
  23411. weight: math.unit(180, "lb"),
  23412. name: "Back",
  23413. image: {
  23414. source: "./media/characters/sen/back.svg",
  23415. extra: 1321 / 1254
  23416. }
  23417. },
  23418. },
  23419. [
  23420. {
  23421. name: "Normal",
  23422. height: math.unit(5 + 11 / 12, "feet"),
  23423. default: true
  23424. },
  23425. ]
  23426. ))
  23427. characterMakers.push(() => makeCharacter(
  23428. { name: "Fruity", species: ["sylveon"], tags: ["anthro"] },
  23429. {
  23430. front: {
  23431. height: math.unit(166.6, "cm"),
  23432. weight: math.unit(66.6, "kg"),
  23433. name: "Front",
  23434. image: {
  23435. source: "./media/characters/fruity/front.svg",
  23436. extra: 1510 / 1386,
  23437. bottom: 0.04
  23438. }
  23439. },
  23440. back: {
  23441. height: math.unit(166.6, "cm"),
  23442. weight: math.unit(66.6, "lb"),
  23443. name: "Back",
  23444. image: {
  23445. source: "./media/characters/fruity/back.svg",
  23446. extra: 1563 / 1435,
  23447. bottom: 0.005
  23448. }
  23449. },
  23450. },
  23451. [
  23452. {
  23453. name: "Normal",
  23454. height: math.unit(166.6, "cm"),
  23455. default: true
  23456. },
  23457. {
  23458. name: "Demonic",
  23459. height: math.unit(166.6, "feet")
  23460. },
  23461. ]
  23462. ))
  23463. characterMakers.push(() => makeCharacter(
  23464. { name: "Zost", species: ["monster"], tags: ["anthro"] },
  23465. {
  23466. side: {
  23467. height: math.unit(10, "feet"),
  23468. weight: math.unit(500, "lb"),
  23469. name: "Side",
  23470. image: {
  23471. source: "./media/characters/zost/side.svg",
  23472. extra: 2870/2533,
  23473. bottom: 252/3122
  23474. }
  23475. },
  23476. mawFront: {
  23477. height: math.unit(1.08, "meters"),
  23478. name: "Maw (Front)",
  23479. image: {
  23480. source: "./media/characters/zost/maw-front.svg"
  23481. }
  23482. },
  23483. mawSide: {
  23484. height: math.unit(2.66, "feet"),
  23485. name: "Maw (Side)",
  23486. image: {
  23487. source: "./media/characters/zost/maw-side.svg"
  23488. }
  23489. },
  23490. wingspan: {
  23491. height: math.unit(7.4, "feet"),
  23492. name: "Wingspan",
  23493. image: {
  23494. source: "./media/characters/zost/wingspan.svg"
  23495. }
  23496. },
  23497. },
  23498. [
  23499. {
  23500. name: "Normal",
  23501. height: math.unit(10, "feet"),
  23502. default: true
  23503. },
  23504. ]
  23505. ))
  23506. characterMakers.push(() => makeCharacter(
  23507. { name: "Luci", species: ["hellhound"], tags: ["anthro"] },
  23508. {
  23509. front: {
  23510. height: math.unit(5 + 4 / 12, "feet"),
  23511. weight: math.unit(120, "lb"),
  23512. name: "Front",
  23513. image: {
  23514. source: "./media/characters/luci/front.svg",
  23515. extra: 1985 / 1884,
  23516. bottom: 0.04
  23517. }
  23518. },
  23519. back: {
  23520. height: math.unit(5 + 4 / 12, "feet"),
  23521. weight: math.unit(120, "lb"),
  23522. name: "Back",
  23523. image: {
  23524. source: "./media/characters/luci/back.svg",
  23525. extra: 1892 / 1791,
  23526. bottom: 0.002
  23527. }
  23528. },
  23529. },
  23530. [
  23531. {
  23532. name: "Normal",
  23533. height: math.unit(5 + 4 / 12, "feet"),
  23534. default: true
  23535. },
  23536. ]
  23537. ))
  23538. characterMakers.push(() => makeCharacter(
  23539. { name: "2th", species: ["monster"], tags: ["anthro"] },
  23540. {
  23541. front: {
  23542. height: math.unit(1500, "feet"),
  23543. weight: math.unit(3.8e6, "tons"),
  23544. name: "Front",
  23545. image: {
  23546. source: "./media/characters/2th/front.svg",
  23547. extra: 3489 / 3350,
  23548. bottom: 0.1
  23549. }
  23550. },
  23551. foot: {
  23552. height: math.unit(461, "feet"),
  23553. name: "Foot",
  23554. image: {
  23555. source: "./media/characters/2th/foot.svg"
  23556. }
  23557. },
  23558. },
  23559. [
  23560. {
  23561. name: "\"Micro\"",
  23562. height: math.unit(15 + 7 / 12, "feet")
  23563. },
  23564. {
  23565. name: "Normal",
  23566. height: math.unit(1500, "feet"),
  23567. default: true
  23568. },
  23569. {
  23570. name: "Macro",
  23571. height: math.unit(5000, "feet")
  23572. },
  23573. {
  23574. name: "Megamacro",
  23575. height: math.unit(15, "miles")
  23576. },
  23577. {
  23578. name: "Gigamacro",
  23579. height: math.unit(4000, "miles")
  23580. },
  23581. {
  23582. name: "Galactic",
  23583. height: math.unit(50, "AU")
  23584. },
  23585. ]
  23586. ))
  23587. characterMakers.push(() => makeCharacter(
  23588. { name: "Amethyst", species: ["snow-leopard"], tags: ["anthro"] },
  23589. {
  23590. front: {
  23591. height: math.unit(5 + 6 / 12, "feet"),
  23592. weight: math.unit(220, "lb"),
  23593. name: "Front",
  23594. image: {
  23595. source: "./media/characters/amethyst/front.svg",
  23596. extra: 2078 / 2040,
  23597. bottom: 0.045
  23598. }
  23599. },
  23600. back: {
  23601. height: math.unit(5 + 6 / 12, "feet"),
  23602. weight: math.unit(220, "lb"),
  23603. name: "Back",
  23604. image: {
  23605. source: "./media/characters/amethyst/back.svg",
  23606. extra: 2021 / 1989,
  23607. bottom: 0.02
  23608. }
  23609. },
  23610. },
  23611. [
  23612. {
  23613. name: "Normal",
  23614. height: math.unit(5 + 6 / 12, "feet"),
  23615. default: true
  23616. },
  23617. ]
  23618. ))
  23619. characterMakers.push(() => makeCharacter(
  23620. { name: "Yumi Akiyama", species: ["border-collie"], tags: ["anthro"] },
  23621. {
  23622. front: {
  23623. height: math.unit(4 + 11 / 12, "feet"),
  23624. weight: math.unit(120, "lb"),
  23625. name: "Front",
  23626. image: {
  23627. source: "./media/characters/yumi-akiyama/front.svg",
  23628. extra: 1327 / 1235,
  23629. bottom: 0.02
  23630. }
  23631. },
  23632. back: {
  23633. height: math.unit(4 + 11 / 12, "feet"),
  23634. weight: math.unit(120, "lb"),
  23635. name: "Back",
  23636. image: {
  23637. source: "./media/characters/yumi-akiyama/back.svg",
  23638. extra: 1287 / 1245,
  23639. bottom: 0.002
  23640. }
  23641. },
  23642. },
  23643. [
  23644. {
  23645. name: "Galactic",
  23646. height: math.unit(50, "galaxies"),
  23647. default: true
  23648. },
  23649. {
  23650. name: "Universal",
  23651. height: math.unit(100, "universes")
  23652. },
  23653. ]
  23654. ))
  23655. characterMakers.push(() => makeCharacter(
  23656. { name: "Rifter Yrmori", species: ["vendeilen"], tags: ["anthro"] },
  23657. {
  23658. front: {
  23659. height: math.unit(8, "feet"),
  23660. weight: math.unit(500, "lb"),
  23661. name: "Front",
  23662. image: {
  23663. source: "./media/characters/rifter-yrmori/front.svg",
  23664. extra: 1180 / 1125,
  23665. bottom: 0.02
  23666. }
  23667. },
  23668. back: {
  23669. height: math.unit(8, "feet"),
  23670. weight: math.unit(500, "lb"),
  23671. name: "Back",
  23672. image: {
  23673. source: "./media/characters/rifter-yrmori/back.svg",
  23674. extra: 1190 / 1145,
  23675. bottom: 0.001
  23676. }
  23677. },
  23678. wings: {
  23679. height: math.unit(7.75, "feet"),
  23680. weight: math.unit(500, "lb"),
  23681. name: "Wings",
  23682. image: {
  23683. source: "./media/characters/rifter-yrmori/wings.svg",
  23684. extra: 1357 / 1285
  23685. }
  23686. },
  23687. maw: {
  23688. height: math.unit(0.8, "feet"),
  23689. name: "Maw",
  23690. image: {
  23691. source: "./media/characters/rifter-yrmori/maw.svg"
  23692. }
  23693. },
  23694. mawfront: {
  23695. height: math.unit(1.45, "feet"),
  23696. name: "Maw (Front)",
  23697. image: {
  23698. source: "./media/characters/rifter-yrmori/maw-front.svg"
  23699. }
  23700. },
  23701. },
  23702. [
  23703. {
  23704. name: "Normal",
  23705. height: math.unit(8, "feet"),
  23706. default: true
  23707. },
  23708. {
  23709. name: "Macro",
  23710. height: math.unit(42, "meters")
  23711. },
  23712. ]
  23713. ))
  23714. characterMakers.push(() => makeCharacter(
  23715. { name: "Tahajin", species: ["werebeast", "monster", "star-warrior", "fluudrani", "fish", "snake", "construct", "demi"], tags: ["anthro", "naga"] },
  23716. {
  23717. were: {
  23718. height: math.unit(25 + 6 / 12, "feet"),
  23719. weight: math.unit(10000, "lb"),
  23720. name: "Were",
  23721. image: {
  23722. source: "./media/characters/tahajin/were.svg",
  23723. extra: 801 / 770,
  23724. bottom: 0.042
  23725. }
  23726. },
  23727. aquatic: {
  23728. height: math.unit(6 + 4 / 12, "feet"),
  23729. weight: math.unit(160, "lb"),
  23730. name: "Aquatic",
  23731. image: {
  23732. source: "./media/characters/tahajin/aquatic.svg",
  23733. extra: 572 / 542,
  23734. bottom: 0.04
  23735. }
  23736. },
  23737. chow: {
  23738. height: math.unit(8 + 11 / 12, "feet"),
  23739. weight: math.unit(450, "lb"),
  23740. name: "Chow",
  23741. image: {
  23742. source: "./media/characters/tahajin/chow.svg",
  23743. extra: 660 / 640,
  23744. bottom: 0.015
  23745. }
  23746. },
  23747. demiNaga: {
  23748. height: math.unit(6 + 8 / 12, "feet"),
  23749. weight: math.unit(300, "lb"),
  23750. name: "Demi Naga",
  23751. image: {
  23752. source: "./media/characters/tahajin/demi-naga.svg",
  23753. extra: 643 / 615,
  23754. bottom: 0.1
  23755. }
  23756. },
  23757. data: {
  23758. height: math.unit(5, "inches"),
  23759. weight: math.unit(0.1, "lb"),
  23760. name: "Data",
  23761. image: {
  23762. source: "./media/characters/tahajin/data.svg"
  23763. }
  23764. },
  23765. fluu: {
  23766. height: math.unit(5 + 7 / 12, "feet"),
  23767. weight: math.unit(140, "lb"),
  23768. name: "Fluu",
  23769. image: {
  23770. source: "./media/characters/tahajin/fluu.svg",
  23771. extra: 628 / 592,
  23772. bottom: 0.02
  23773. }
  23774. },
  23775. starWarrior: {
  23776. height: math.unit(4 + 5 / 12, "feet"),
  23777. weight: math.unit(50, "lb"),
  23778. name: "Star Warrior",
  23779. image: {
  23780. source: "./media/characters/tahajin/star-warrior.svg"
  23781. }
  23782. },
  23783. },
  23784. [
  23785. {
  23786. name: "Normal",
  23787. height: math.unit(25 + 6 / 12, "feet"),
  23788. default: true
  23789. },
  23790. ]
  23791. ))
  23792. characterMakers.push(() => makeCharacter(
  23793. { name: "Gabira", species: ["weasel", "monster"], tags: ["anthro"] },
  23794. {
  23795. front: {
  23796. height: math.unit(8, "feet"),
  23797. weight: math.unit(350, "lb"),
  23798. name: "Front",
  23799. image: {
  23800. source: "./media/characters/gabira/front.svg",
  23801. extra: 1261/1154,
  23802. bottom: 51/1312
  23803. }
  23804. },
  23805. back: {
  23806. height: math.unit(8, "feet"),
  23807. weight: math.unit(350, "lb"),
  23808. name: "Back",
  23809. image: {
  23810. source: "./media/characters/gabira/back.svg",
  23811. extra: 1265/1163,
  23812. bottom: 46/1311
  23813. }
  23814. },
  23815. head: {
  23816. height: math.unit(2.85, "feet"),
  23817. name: "Head",
  23818. image: {
  23819. source: "./media/characters/gabira/head.svg"
  23820. }
  23821. },
  23822. },
  23823. [
  23824. {
  23825. name: "Normal",
  23826. height: math.unit(8, "feet"),
  23827. default: true
  23828. },
  23829. ]
  23830. ))
  23831. characterMakers.push(() => makeCharacter(
  23832. { name: "Sasha Katraine", species: ["clouded-leopard"], tags: ["anthro"] },
  23833. {
  23834. front: {
  23835. height: math.unit(5 + 3 / 12, "feet"),
  23836. weight: math.unit(137, "lb"),
  23837. name: "Front",
  23838. image: {
  23839. source: "./media/characters/sasha-katraine/front.svg",
  23840. extra: 1745/1694,
  23841. bottom: 37/1782
  23842. }
  23843. },
  23844. back: {
  23845. height: math.unit(5 + 3 / 12, "feet"),
  23846. weight: math.unit(137, "lb"),
  23847. name: "Back",
  23848. image: {
  23849. source: "./media/characters/sasha-katraine/back.svg",
  23850. extra: 1776/1699,
  23851. bottom: 26/1802
  23852. }
  23853. },
  23854. },
  23855. [
  23856. {
  23857. name: "Micro",
  23858. height: math.unit(5, "inches")
  23859. },
  23860. {
  23861. name: "Normal",
  23862. height: math.unit(5 + 3 / 12, "feet"),
  23863. default: true
  23864. },
  23865. ]
  23866. ))
  23867. characterMakers.push(() => makeCharacter(
  23868. { name: "Der", species: ["gryphon"], tags: ["anthro"] },
  23869. {
  23870. side: {
  23871. height: math.unit(4, "inches"),
  23872. weight: math.unit(200, "grams"),
  23873. name: "Side",
  23874. image: {
  23875. source: "./media/characters/der/side.svg",
  23876. extra: 719 / 400,
  23877. bottom: 30.6 / 749.9187
  23878. }
  23879. },
  23880. },
  23881. [
  23882. {
  23883. name: "Micro",
  23884. height: math.unit(4, "inches"),
  23885. default: true
  23886. },
  23887. ]
  23888. ))
  23889. characterMakers.push(() => makeCharacter(
  23890. { name: "Fixerdragon", species: ["dragon"], tags: ["feral"] },
  23891. {
  23892. side: {
  23893. height: math.unit(30, "meters"),
  23894. weight: math.unit(700, "tonnes"),
  23895. name: "Side",
  23896. image: {
  23897. source: "./media/characters/fixerdragon/side.svg",
  23898. extra: (1293.0514 - 116.03) / 1106.86,
  23899. bottom: 116.03 / 1293.0514
  23900. }
  23901. },
  23902. },
  23903. [
  23904. {
  23905. name: "Planck",
  23906. height: math.unit(1.6e-35, "meters")
  23907. },
  23908. {
  23909. name: "Micro",
  23910. height: math.unit(0.4, "meters")
  23911. },
  23912. {
  23913. name: "Normal",
  23914. height: math.unit(30, "meters"),
  23915. default: true
  23916. },
  23917. {
  23918. name: "Megamacro",
  23919. height: math.unit(1.2, "megameters")
  23920. },
  23921. {
  23922. name: "Teramacro",
  23923. height: math.unit(130, "terameters")
  23924. },
  23925. {
  23926. name: "Yottamacro",
  23927. height: math.unit(6200, "yottameters")
  23928. },
  23929. ]
  23930. ));
  23931. characterMakers.push(() => makeCharacter(
  23932. { name: "Kite", species: ["sergal"], tags: ["anthro"] },
  23933. {
  23934. front: {
  23935. height: math.unit(8, "feet"),
  23936. weight: math.unit(250, "lb"),
  23937. name: "Front",
  23938. image: {
  23939. source: "./media/characters/kite/front.svg",
  23940. extra: 2796 / 2659,
  23941. bottom: 0.002
  23942. }
  23943. },
  23944. },
  23945. [
  23946. {
  23947. name: "Normal",
  23948. height: math.unit(8, "feet"),
  23949. default: true
  23950. },
  23951. {
  23952. name: "Macro",
  23953. height: math.unit(360, "feet")
  23954. },
  23955. {
  23956. name: "Megamacro",
  23957. height: math.unit(1500, "feet")
  23958. },
  23959. ]
  23960. ))
  23961. characterMakers.push(() => makeCharacter(
  23962. { name: "Poojawa Vynar", species: ["sabresune"], tags: ["anthro"] },
  23963. {
  23964. anthro_front: {
  23965. height: math.unit(5 + 11/12, "feet"),
  23966. weight: math.unit(170, "lb"),
  23967. name: "Front",
  23968. image: {
  23969. source: "./media/characters/poojawa-vynar/anthro-front.svg",
  23970. extra: 1735/1585,
  23971. bottom: 96/1831
  23972. },
  23973. form: "anthro",
  23974. default: true
  23975. },
  23976. anthro_back: {
  23977. height: math.unit(5 + 11/12, "feet"),
  23978. weight: math.unit(170, "lb"),
  23979. name: "Back",
  23980. image: {
  23981. source: "./media/characters/poojawa-vynar/anthro-back.svg",
  23982. extra: 1749/1607,
  23983. bottom: 28/1777
  23984. },
  23985. form: "anthro"
  23986. },
  23987. anthro_male: {
  23988. height: math.unit(5 + 11/12, "feet"),
  23989. weight: math.unit(170, "lb"),
  23990. name: "Male",
  23991. image: {
  23992. source: "./media/characters/poojawa-vynar/anthro-front-male.svg",
  23993. extra: 1855/1713,
  23994. bottom: 63/1918
  23995. },
  23996. form: "anthro"
  23997. },
  23998. taur_front: {
  23999. height: math.unit(5 + 7/12, "feet"),
  24000. weight: math.unit(170, "lb"),
  24001. name: "Front",
  24002. image: {
  24003. source: "./media/characters/poojawa-vynar/taur-front.svg",
  24004. extra: 1151/1059,
  24005. bottom: 356/1507
  24006. },
  24007. form: "taur",
  24008. default: true
  24009. },
  24010. anthro_frontDressed: {
  24011. height: math.unit(5 + 11/12, "feet"),
  24012. weight: math.unit(170, "lb"),
  24013. name: "Front (Dressed)",
  24014. image: {
  24015. source: "./media/characters/poojawa-vynar/anthro-front-dressed.svg",
  24016. extra: 1735/1585,
  24017. bottom: 96/1831
  24018. },
  24019. form: "anthro"
  24020. },
  24021. anthro_backDressed: {
  24022. height: math.unit(5 + 11/12, "feet"),
  24023. weight: math.unit(170, "lb"),
  24024. name: "Back (Dressed)",
  24025. image: {
  24026. source: "./media/characters/poojawa-vynar/anthro-back-dressed.svg",
  24027. extra: 1749/1607,
  24028. bottom: 28/1777
  24029. },
  24030. form: "anthro"
  24031. },
  24032. anthro_maleDressed: {
  24033. height: math.unit(5 + 11/12, "feet"),
  24034. weight: math.unit(170, "lb"),
  24035. name: "Male (Dressed)",
  24036. image: {
  24037. source: "./media/characters/poojawa-vynar/anthro-front-male-dressed.svg",
  24038. extra: 1855/1713,
  24039. bottom: 63/1918
  24040. },
  24041. form: "anthro"
  24042. },
  24043. taur_frontDressed: {
  24044. height: math.unit(5 + 7/12, "feet"),
  24045. weight: math.unit(170, "lb"),
  24046. name: "Front (Dressed)",
  24047. image: {
  24048. source: "./media/characters/poojawa-vynar/taur-front-dressed.svg",
  24049. extra: 1151/1059,
  24050. bottom: 356/1507
  24051. },
  24052. form: "taur"
  24053. },
  24054. maw: {
  24055. height: math.unit(1.46, "feet"),
  24056. name: "Maw",
  24057. image: {
  24058. source: "./media/characters/poojawa-vynar/maw.svg"
  24059. },
  24060. allForms: true
  24061. },
  24062. head: {
  24063. height: math.unit(2.34, "feet"),
  24064. name: "Head",
  24065. image: {
  24066. source: "./media/characters/poojawa-vynar/head.svg"
  24067. },
  24068. allForms: true
  24069. },
  24070. leftPaw: {
  24071. height: math.unit(1.72, "feet"),
  24072. name: "Left Paw",
  24073. image: {
  24074. source: "./media/characters/poojawa-vynar/paw-left.svg"
  24075. },
  24076. allForms: true
  24077. },
  24078. rightPaw: {
  24079. height: math.unit(1.61, "feet"),
  24080. name: "Right Paw",
  24081. image: {
  24082. source: "./media/characters/poojawa-vynar/paw-right.svg"
  24083. },
  24084. allForms: true
  24085. },
  24086. toering: {
  24087. height: math.unit(2.9, "inches"),
  24088. name: "Toering",
  24089. image: {
  24090. source: "./media/characters/poojawa-vynar/toering.svg"
  24091. },
  24092. allForms: true
  24093. },
  24094. shaft: {
  24095. height: math.unit(0.625, "feet"),
  24096. name: "Shaft",
  24097. image: {
  24098. source: "./media/characters/poojawa-vynar/shaft.svg"
  24099. },
  24100. allForms: true
  24101. },
  24102. spade: {
  24103. height: math.unit(0.42, "feet"),
  24104. name: "Spade",
  24105. image: {
  24106. source: "./media/characters/poojawa-vynar/spade.svg"
  24107. },
  24108. allForms: true
  24109. },
  24110. },
  24111. [
  24112. {
  24113. name: "Shortstack",
  24114. height: math.unit(4, "feet"),
  24115. form: "anthro"
  24116. },
  24117. {
  24118. name: "Normal",
  24119. height: math.unit(5 + 11 / 12, "feet"),
  24120. form: "anthro",
  24121. default: true
  24122. },
  24123. {
  24124. name: "Tauric",
  24125. height: math.unit(4, "meters"),
  24126. form: "taur",
  24127. default: true
  24128. },
  24129. ],
  24130. {
  24131. "anthro": {
  24132. name: "Anthro",
  24133. default: true
  24134. },
  24135. "taur": {
  24136. name: "Taur",
  24137. },
  24138. }
  24139. ))
  24140. characterMakers.push(() => makeCharacter(
  24141. { name: "Violette", species: ["doberman"], tags: ["anthro"] },
  24142. {
  24143. front: {
  24144. height: math.unit(293, "meters"),
  24145. weight: math.unit(70400, "tons"),
  24146. name: "Front",
  24147. image: {
  24148. source: "./media/characters/violette/front.svg",
  24149. extra: 1227 / 1180,
  24150. bottom: 0.005
  24151. }
  24152. },
  24153. back: {
  24154. height: math.unit(293, "meters"),
  24155. weight: math.unit(70400, "tons"),
  24156. name: "Back",
  24157. image: {
  24158. source: "./media/characters/violette/back.svg",
  24159. extra: 1227 / 1180,
  24160. bottom: 0.005
  24161. }
  24162. },
  24163. },
  24164. [
  24165. {
  24166. name: "Macro",
  24167. height: math.unit(293, "meters"),
  24168. default: true
  24169. },
  24170. ]
  24171. ))
  24172. characterMakers.push(() => makeCharacter(
  24173. { name: "Alessandra", species: ["fox"], tags: ["anthro"] },
  24174. {
  24175. front: {
  24176. height: math.unit(1050, "feet"),
  24177. weight: math.unit(200000, "tons"),
  24178. name: "Front",
  24179. image: {
  24180. source: "./media/characters/alessandra/front.svg",
  24181. extra: 960 / 912,
  24182. bottom: 0.06
  24183. }
  24184. },
  24185. },
  24186. [
  24187. {
  24188. name: "Macro",
  24189. height: math.unit(1050, "feet")
  24190. },
  24191. {
  24192. name: "Macro+",
  24193. height: math.unit(900, "meters"),
  24194. default: true
  24195. },
  24196. ]
  24197. ))
  24198. characterMakers.push(() => makeCharacter(
  24199. { name: "Person", species: ["cat", "dragon"], tags: ["anthro"] },
  24200. {
  24201. front: {
  24202. height: math.unit(5, "feet"),
  24203. weight: math.unit(187, "lb"),
  24204. name: "Front",
  24205. image: {
  24206. source: "./media/characters/person/front.svg",
  24207. extra: 3087 / 2945,
  24208. bottom: 91 / 3181
  24209. }
  24210. },
  24211. },
  24212. [
  24213. {
  24214. name: "Micro",
  24215. height: math.unit(3, "inches")
  24216. },
  24217. {
  24218. name: "Normal",
  24219. height: math.unit(5, "feet"),
  24220. default: true
  24221. },
  24222. {
  24223. name: "Macro",
  24224. height: math.unit(90, "feet")
  24225. },
  24226. {
  24227. name: "Max Size",
  24228. height: math.unit(280, "feet")
  24229. },
  24230. ]
  24231. ))
  24232. characterMakers.push(() => makeCharacter(
  24233. { name: "Ty", species: ["fox"], tags: ["anthro"] },
  24234. {
  24235. front: {
  24236. height: math.unit(4.5, "meters"),
  24237. weight: math.unit(3200, "lb"),
  24238. name: "Front",
  24239. image: {
  24240. source: "./media/characters/ty/front.svg",
  24241. extra: 1038 / 960,
  24242. bottom: 31.156 / 1068
  24243. }
  24244. },
  24245. back: {
  24246. height: math.unit(4.5, "meters"),
  24247. weight: math.unit(3200, "lb"),
  24248. name: "Back",
  24249. image: {
  24250. source: "./media/characters/ty/back.svg",
  24251. extra: 1044 / 966,
  24252. bottom: 7.48 / 1049
  24253. }
  24254. },
  24255. },
  24256. [
  24257. {
  24258. name: "Normal",
  24259. height: math.unit(4.5, "meters"),
  24260. default: true
  24261. },
  24262. ]
  24263. ))
  24264. characterMakers.push(() => makeCharacter(
  24265. { name: "Rocky", species: ["kobold"], tags: ["anthro"] },
  24266. {
  24267. front: {
  24268. height: math.unit(5 + 4 / 12, "feet"),
  24269. weight: math.unit(115, "lb"),
  24270. name: "Front",
  24271. image: {
  24272. source: "./media/characters/rocky/front.svg",
  24273. extra: 1012 / 975,
  24274. bottom: 54 / 1066
  24275. }
  24276. },
  24277. },
  24278. [
  24279. {
  24280. name: "Normal",
  24281. height: math.unit(5 + 4 / 12, "feet"),
  24282. default: true
  24283. },
  24284. ]
  24285. ))
  24286. characterMakers.push(() => makeCharacter(
  24287. { name: "Ruin", species: ["sergal"], tags: ["anthro", "feral"] },
  24288. {
  24289. upright: {
  24290. height: math.unit(6, "meters"),
  24291. weight: math.unit(4000, "kg"),
  24292. name: "Upright",
  24293. image: {
  24294. source: "./media/characters/ruin/upright.svg",
  24295. extra: 668 / 661,
  24296. bottom: 42 / 799.8396
  24297. }
  24298. },
  24299. },
  24300. [
  24301. {
  24302. name: "Normal",
  24303. height: math.unit(6, "meters"),
  24304. default: true
  24305. },
  24306. ]
  24307. ))
  24308. characterMakers.push(() => makeCharacter(
  24309. { name: "Robin", species: ["coyote"], tags: ["anthro"] },
  24310. {
  24311. front: {
  24312. height: math.unit(5, "feet"),
  24313. weight: math.unit(106, "lb"),
  24314. name: "Front",
  24315. image: {
  24316. source: "./media/characters/robin/front.svg",
  24317. extra: 862 / 799,
  24318. bottom: 42.4 / 914.8856
  24319. }
  24320. },
  24321. },
  24322. [
  24323. {
  24324. name: "Normal",
  24325. height: math.unit(5, "feet"),
  24326. default: true
  24327. },
  24328. ]
  24329. ))
  24330. characterMakers.push(() => makeCharacter(
  24331. { name: "Saian", species: ["ventura"], tags: ["feral"] },
  24332. {
  24333. side: {
  24334. height: math.unit(3, "feet"),
  24335. weight: math.unit(225, "lb"),
  24336. name: "Side",
  24337. image: {
  24338. source: "./media/characters/saian/side.svg",
  24339. extra: 566 / 356,
  24340. bottom: 79.7 / 643
  24341. }
  24342. },
  24343. maw: {
  24344. height: math.unit(2.85, "feet"),
  24345. name: "Maw",
  24346. image: {
  24347. source: "./media/characters/saian/maw.svg"
  24348. }
  24349. },
  24350. },
  24351. [
  24352. {
  24353. name: "Normal",
  24354. height: math.unit(3, "feet"),
  24355. default: true
  24356. },
  24357. ]
  24358. ))
  24359. characterMakers.push(() => makeCharacter(
  24360. { name: "Equus Silvermane", species: ["horse"], tags: ["anthro"] },
  24361. {
  24362. side: {
  24363. height: math.unit(8, "feet"),
  24364. weight: math.unit(300, "lb"),
  24365. name: "Side",
  24366. image: {
  24367. source: "./media/characters/equus-silvermane/side.svg",
  24368. extra: 2176 / 2050,
  24369. bottom: 65.7 / 2245
  24370. }
  24371. },
  24372. front: {
  24373. height: math.unit(8, "feet"),
  24374. weight: math.unit(300, "lb"),
  24375. name: "Front",
  24376. image: {
  24377. source: "./media/characters/equus-silvermane/front.svg",
  24378. extra: 4633 / 4400,
  24379. bottom: 71.3 / 4706.915
  24380. }
  24381. },
  24382. sideStepping: {
  24383. height: math.unit(8, "feet"),
  24384. weight: math.unit(300, "lb"),
  24385. name: "Side (Stepping)",
  24386. image: {
  24387. source: "./media/characters/equus-silvermane/side-stepping.svg",
  24388. extra: 1968 / 1860,
  24389. bottom: 16.4 / 1989
  24390. }
  24391. },
  24392. },
  24393. [
  24394. {
  24395. name: "Normal",
  24396. height: math.unit(8, "feet")
  24397. },
  24398. {
  24399. name: "Minimacro",
  24400. height: math.unit(75, "feet"),
  24401. default: true
  24402. },
  24403. {
  24404. name: "Macro",
  24405. height: math.unit(150, "feet")
  24406. },
  24407. {
  24408. name: "Macro+",
  24409. height: math.unit(1000, "feet")
  24410. },
  24411. {
  24412. name: "Megamacro",
  24413. height: math.unit(1, "mile")
  24414. },
  24415. ]
  24416. ))
  24417. characterMakers.push(() => makeCharacter(
  24418. { name: "Windar", species: ["dragon"], tags: ["feral"] },
  24419. {
  24420. side: {
  24421. height: math.unit(20, "feet"),
  24422. weight: math.unit(30000, "kg"),
  24423. name: "Side",
  24424. image: {
  24425. source: "./media/characters/windar/side.svg",
  24426. extra: 1491 / 1248,
  24427. bottom: 82.56 / 1568
  24428. }
  24429. },
  24430. },
  24431. [
  24432. {
  24433. name: "Normal",
  24434. height: math.unit(20, "feet"),
  24435. default: true
  24436. },
  24437. ]
  24438. ))
  24439. characterMakers.push(() => makeCharacter(
  24440. { name: "Melody", species: ["dragon"], tags: ["feral"] },
  24441. {
  24442. side: {
  24443. height: math.unit(15.66, "feet"),
  24444. weight: math.unit(150, "lb"),
  24445. name: "Side",
  24446. image: {
  24447. source: "./media/characters/melody/side.svg",
  24448. extra: 1097 / 944,
  24449. bottom: 11.8 / 1109
  24450. }
  24451. },
  24452. sideOutfit: {
  24453. height: math.unit(15.66, "feet"),
  24454. weight: math.unit(150, "lb"),
  24455. name: "Side (Outfit)",
  24456. image: {
  24457. source: "./media/characters/melody/side-outfit.svg",
  24458. extra: 1097 / 944,
  24459. bottom: 11.8 / 1109
  24460. }
  24461. },
  24462. },
  24463. [
  24464. {
  24465. name: "Normal",
  24466. height: math.unit(15.66, "feet"),
  24467. default: true
  24468. },
  24469. ]
  24470. ))
  24471. characterMakers.push(() => makeCharacter(
  24472. { name: "Windera", species: ["dragon"], tags: ["anthro"] },
  24473. {
  24474. armoredFront: {
  24475. height: math.unit(8, "feet"),
  24476. weight: math.unit(325, "lb"),
  24477. name: "Front",
  24478. image: {
  24479. source: "./media/characters/windera/armored-front.svg",
  24480. extra: 1830/1598,
  24481. bottom: 151/1981
  24482. },
  24483. form: "armored",
  24484. default: true
  24485. },
  24486. macroFront: {
  24487. height: math.unit(70, "feet"),
  24488. weight: math.unit(315453, "lb"),
  24489. name: "Front",
  24490. image: {
  24491. source: "./media/characters/windera/macro-front.svg",
  24492. extra: 963/883,
  24493. bottom: 23/986
  24494. },
  24495. form: "macro",
  24496. default: true
  24497. },
  24498. },
  24499. [
  24500. {
  24501. name: "Normal",
  24502. height: math.unit(8, "feet"),
  24503. default: true,
  24504. form: "armored"
  24505. },
  24506. {
  24507. name: "Normal",
  24508. height: math.unit(70, "feet"),
  24509. default: true,
  24510. form: "macro"
  24511. },
  24512. ],
  24513. {
  24514. "armored": {
  24515. name: "Armored",
  24516. default: true
  24517. },
  24518. "macro": {
  24519. name: "Macro",
  24520. },
  24521. }
  24522. ))
  24523. characterMakers.push(() => makeCharacter(
  24524. { name: "Sonear", species: ["lugia"], tags: ["feral"] },
  24525. {
  24526. front: {
  24527. height: math.unit(28.75, "feet"),
  24528. weight: math.unit(2000, "kg"),
  24529. name: "Front",
  24530. image: {
  24531. source: "./media/characters/sonear/front.svg",
  24532. extra: 1041.1 / 964.9,
  24533. bottom: 53.7 / 1096.6
  24534. }
  24535. },
  24536. },
  24537. [
  24538. {
  24539. name: "Normal",
  24540. height: math.unit(28.75, "feet"),
  24541. default: true
  24542. },
  24543. ]
  24544. ))
  24545. characterMakers.push(() => makeCharacter(
  24546. { name: "Kanara", species: ["dinosaur"], tags: ["feral"] },
  24547. {
  24548. side: {
  24549. height: math.unit(25.5, "feet"),
  24550. weight: math.unit(23000, "kg"),
  24551. name: "Side",
  24552. image: {
  24553. source: "./media/characters/kanara/side.svg"
  24554. }
  24555. },
  24556. },
  24557. [
  24558. {
  24559. name: "Normal",
  24560. height: math.unit(25.5, "feet"),
  24561. default: true
  24562. },
  24563. ]
  24564. ))
  24565. characterMakers.push(() => makeCharacter(
  24566. { name: "Ereus", species: ["gryphon"], tags: ["feral"] },
  24567. {
  24568. side: {
  24569. height: math.unit(10, "feet"),
  24570. weight: math.unit(1000, "kg"),
  24571. name: "Side",
  24572. image: {
  24573. source: "./media/characters/ereus/side.svg",
  24574. extra: 1157 / 959,
  24575. bottom: 153 / 1312.5
  24576. }
  24577. },
  24578. },
  24579. [
  24580. {
  24581. name: "Normal",
  24582. height: math.unit(10, "feet"),
  24583. default: true
  24584. },
  24585. ]
  24586. ))
  24587. characterMakers.push(() => makeCharacter(
  24588. { name: "E-ter", species: ["wolf", "robot"], tags: ["feral"] },
  24589. {
  24590. side: {
  24591. height: math.unit(4.5, "feet"),
  24592. weight: math.unit(500, "lb"),
  24593. name: "Side",
  24594. image: {
  24595. source: "./media/characters/e-ter/side.svg",
  24596. extra: 1550 / 1248,
  24597. bottom: 146 / 1694
  24598. }
  24599. },
  24600. },
  24601. [
  24602. {
  24603. name: "Normal",
  24604. height: math.unit(4.5, "feet"),
  24605. default: true
  24606. },
  24607. ]
  24608. ))
  24609. characterMakers.push(() => makeCharacter(
  24610. { name: "Yamie", species: ["orca"], tags: ["feral"] },
  24611. {
  24612. side: {
  24613. height: math.unit(9.7, "feet"),
  24614. weight: math.unit(4000, "kg"),
  24615. name: "Side",
  24616. image: {
  24617. source: "./media/characters/yamie/side.svg"
  24618. }
  24619. },
  24620. },
  24621. [
  24622. {
  24623. name: "Normal",
  24624. height: math.unit(9.7, "feet"),
  24625. default: true
  24626. },
  24627. ]
  24628. ))
  24629. characterMakers.push(() => makeCharacter(
  24630. { name: "Anders", species: ["unicorn", "deity"], tags: ["anthro"] },
  24631. {
  24632. front: {
  24633. height: math.unit(50, "feet"),
  24634. weight: math.unit(50000, "kg"),
  24635. name: "Front",
  24636. image: {
  24637. source: "./media/characters/anders/front.svg",
  24638. extra: 570 / 539,
  24639. bottom: 14.7 / 586.7
  24640. }
  24641. },
  24642. },
  24643. [
  24644. {
  24645. name: "Large",
  24646. height: math.unit(50, "feet")
  24647. },
  24648. {
  24649. name: "Macro",
  24650. height: math.unit(2000, "feet"),
  24651. default: true
  24652. },
  24653. {
  24654. name: "Megamacro",
  24655. height: math.unit(12, "miles")
  24656. },
  24657. ]
  24658. ))
  24659. characterMakers.push(() => makeCharacter(
  24660. { name: "Reban", species: ["dragon"], tags: ["anthro"] },
  24661. {
  24662. front: {
  24663. height: math.unit(7 + 2 / 12, "feet"),
  24664. weight: math.unit(300, "lb"),
  24665. name: "Front",
  24666. image: {
  24667. source: "./media/characters/reban/front.svg",
  24668. extra: 1287/1212,
  24669. bottom: 148/1435
  24670. }
  24671. },
  24672. head: {
  24673. height: math.unit(1.95, "feet"),
  24674. name: "Head",
  24675. image: {
  24676. source: "./media/characters/reban/head.svg"
  24677. }
  24678. },
  24679. maw: {
  24680. height: math.unit(0.95, "feet"),
  24681. name: "Maw",
  24682. image: {
  24683. source: "./media/characters/reban/maw.svg"
  24684. }
  24685. },
  24686. foot: {
  24687. height: math.unit(1.65, "feet"),
  24688. name: "Foot",
  24689. image: {
  24690. source: "./media/characters/reban/foot.svg"
  24691. }
  24692. },
  24693. dick: {
  24694. height: math.unit(7 / 5, "feet"),
  24695. name: "Dick",
  24696. image: {
  24697. source: "./media/characters/reban/dick.svg"
  24698. }
  24699. },
  24700. },
  24701. [
  24702. {
  24703. name: "Natural Height",
  24704. height: math.unit(7 + 2 / 12, "feet")
  24705. },
  24706. {
  24707. name: "Macro",
  24708. height: math.unit(500, "feet"),
  24709. default: true
  24710. },
  24711. {
  24712. name: "Canon Height",
  24713. height: math.unit(50, "AU")
  24714. },
  24715. ]
  24716. ))
  24717. characterMakers.push(() => makeCharacter(
  24718. { name: "Terrance Keayes", species: ["vole"], tags: ["anthro"] },
  24719. {
  24720. front: {
  24721. height: math.unit(6, "feet"),
  24722. weight: math.unit(150, "lb"),
  24723. name: "Front",
  24724. image: {
  24725. source: "./media/characters/terrance-keayes/front.svg",
  24726. extra: 1.005,
  24727. bottom: 151 / 1615
  24728. }
  24729. },
  24730. side: {
  24731. height: math.unit(6, "feet"),
  24732. weight: math.unit(150, "lb"),
  24733. name: "Side",
  24734. image: {
  24735. source: "./media/characters/terrance-keayes/side.svg",
  24736. extra: 1.005,
  24737. bottom: 129.4 / 1544
  24738. }
  24739. },
  24740. back: {
  24741. height: math.unit(6, "feet"),
  24742. weight: math.unit(150, "lb"),
  24743. name: "Back",
  24744. image: {
  24745. source: "./media/characters/terrance-keayes/back.svg",
  24746. extra: 1.005,
  24747. bottom: 58.4 / 1557.3
  24748. }
  24749. },
  24750. dick: {
  24751. height: math.unit(6 * 0.208, "feet"),
  24752. name: "Dick",
  24753. image: {
  24754. source: "./media/characters/terrance-keayes/dick.svg"
  24755. }
  24756. },
  24757. },
  24758. [
  24759. {
  24760. name: "Canon Height",
  24761. height: math.unit(35, "miles"),
  24762. default: true
  24763. },
  24764. ]
  24765. ))
  24766. characterMakers.push(() => makeCharacter(
  24767. { name: "Ofelia", species: ["gigantosaurus"], tags: ["anthro"] },
  24768. {
  24769. front: {
  24770. height: math.unit(6, "feet"),
  24771. weight: math.unit(150, "lb"),
  24772. name: "Front",
  24773. image: {
  24774. source: "./media/characters/ofelia/front.svg",
  24775. extra: 1130/1117,
  24776. bottom: 91/1221
  24777. }
  24778. },
  24779. back: {
  24780. height: math.unit(6, "feet"),
  24781. weight: math.unit(150, "lb"),
  24782. name: "Back",
  24783. image: {
  24784. source: "./media/characters/ofelia/back.svg",
  24785. extra: 1172/1159,
  24786. bottom: 28/1200
  24787. }
  24788. },
  24789. maw: {
  24790. height: math.unit(1, "feet"),
  24791. name: "Maw",
  24792. image: {
  24793. source: "./media/characters/ofelia/maw.svg"
  24794. }
  24795. },
  24796. foot: {
  24797. height: math.unit(1.949, "feet"),
  24798. name: "Foot",
  24799. image: {
  24800. source: "./media/characters/ofelia/foot.svg"
  24801. }
  24802. },
  24803. },
  24804. [
  24805. {
  24806. name: "Canon Height",
  24807. height: math.unit(2000, "miles"),
  24808. default: true
  24809. },
  24810. ]
  24811. ))
  24812. characterMakers.push(() => makeCharacter(
  24813. { name: "Samuel", species: ["snow-leopard"], tags: ["anthro"] },
  24814. {
  24815. front: {
  24816. height: math.unit(6, "feet"),
  24817. weight: math.unit(150, "lb"),
  24818. name: "Front",
  24819. image: {
  24820. source: "./media/characters/samuel/front.svg",
  24821. extra: 265 / 258,
  24822. bottom: 2 / 266.1566
  24823. }
  24824. },
  24825. },
  24826. [
  24827. {
  24828. name: "Macro",
  24829. height: math.unit(100, "feet"),
  24830. default: true
  24831. },
  24832. {
  24833. name: "Full Size",
  24834. height: math.unit(1000, "miles")
  24835. },
  24836. ]
  24837. ))
  24838. characterMakers.push(() => makeCharacter(
  24839. { name: "Beishir Kiel", species: ["orca", "monster"], tags: ["anthro"] },
  24840. {
  24841. front: {
  24842. height: math.unit(6, "feet"),
  24843. weight: math.unit(300, "lb"),
  24844. name: "Front",
  24845. image: {
  24846. source: "./media/characters/beishir-kiel/front.svg",
  24847. extra: 569 / 547,
  24848. bottom: 41.9 / 609
  24849. }
  24850. },
  24851. maw: {
  24852. height: math.unit(6 * 0.202, "feet"),
  24853. name: "Maw",
  24854. image: {
  24855. source: "./media/characters/beishir-kiel/maw.svg"
  24856. }
  24857. },
  24858. },
  24859. [
  24860. {
  24861. name: "Macro",
  24862. height: math.unit(300, "feet"),
  24863. default: true
  24864. },
  24865. ]
  24866. ))
  24867. characterMakers.push(() => makeCharacter(
  24868. { name: "Logan Grey", species: ["fox"], tags: ["anthro"] },
  24869. {
  24870. front: {
  24871. height: math.unit(5 + 7/12, "feet"),
  24872. weight: math.unit(120, "lb"),
  24873. name: "Front",
  24874. image: {
  24875. source: "./media/characters/logan-grey/front.svg",
  24876. extra: 1836/1738,
  24877. bottom: 108/1944
  24878. }
  24879. },
  24880. back: {
  24881. height: math.unit(5 + 7/12, "feet"),
  24882. weight: math.unit(120, "lb"),
  24883. name: "Back",
  24884. image: {
  24885. source: "./media/characters/logan-grey/back.svg",
  24886. extra: 1880/1794,
  24887. bottom: 24/1904
  24888. }
  24889. },
  24890. frontSfw: {
  24891. height: math.unit(5 + 7/12, "feet"),
  24892. weight: math.unit(120, "lb"),
  24893. name: "Front (SFW)",
  24894. image: {
  24895. source: "./media/characters/logan-grey/front-sfw.svg",
  24896. extra: 1836/1738,
  24897. bottom: 108/1944
  24898. }
  24899. },
  24900. backSfw: {
  24901. height: math.unit(5 + 7/12, "feet"),
  24902. weight: math.unit(120, "lb"),
  24903. name: "Back (SFW)",
  24904. image: {
  24905. source: "./media/characters/logan-grey/back-sfw.svg",
  24906. extra: 1880/1794,
  24907. bottom: 24/1904
  24908. }
  24909. },
  24910. hands: {
  24911. height: math.unit(0.84, "feet"),
  24912. name: "Hands",
  24913. image: {
  24914. source: "./media/characters/logan-grey/hands.svg"
  24915. }
  24916. },
  24917. paws: {
  24918. height: math.unit(0.72, "feet"),
  24919. name: "Paws",
  24920. image: {
  24921. source: "./media/characters/logan-grey/paws.svg"
  24922. }
  24923. },
  24924. cock: {
  24925. height: math.unit(1.45, "feet"),
  24926. name: "Cock",
  24927. image: {
  24928. source: "./media/characters/logan-grey/cock.svg"
  24929. }
  24930. },
  24931. cockAlt: {
  24932. height: math.unit(1.437, "feet"),
  24933. name: "Cock (alt)",
  24934. image: {
  24935. source: "./media/characters/logan-grey/cock-alt.svg"
  24936. }
  24937. },
  24938. },
  24939. [
  24940. {
  24941. name: "Normal",
  24942. height: math.unit(5 + 8 / 12, "feet")
  24943. },
  24944. {
  24945. name: "The 500 Foot Femboy",
  24946. height: math.unit(500, "feet"),
  24947. default: true
  24948. },
  24949. {
  24950. name: "Megmacro",
  24951. height: math.unit(20, "miles")
  24952. },
  24953. ]
  24954. ))
  24955. characterMakers.push(() => makeCharacter(
  24956. { name: "Draganta", species: ["dragon"], tags: ["anthro"] },
  24957. {
  24958. front: {
  24959. height: math.unit(8 + 2 / 12, "feet"),
  24960. weight: math.unit(275, "lb"),
  24961. name: "Front",
  24962. image: {
  24963. source: "./media/characters/draganta/front.svg",
  24964. extra: 1177 / 1135,
  24965. bottom: 33.46 / 1212.1
  24966. }
  24967. },
  24968. },
  24969. [
  24970. {
  24971. name: "Normal",
  24972. height: math.unit(8 + 6 / 12, "feet"),
  24973. default: true
  24974. },
  24975. {
  24976. name: "Macro",
  24977. height: math.unit(150, "feet")
  24978. },
  24979. {
  24980. name: "Megamacro",
  24981. height: math.unit(1000, "miles")
  24982. },
  24983. ]
  24984. ))
  24985. characterMakers.push(() => makeCharacter(
  24986. { name: "Voski", species: ["corvid"], tags: ["anthro"] },
  24987. {
  24988. front: {
  24989. height: math.unit(1.72, "m"),
  24990. weight: math.unit(80, "lb"),
  24991. name: "Front",
  24992. image: {
  24993. source: "./media/characters/voski/front.svg",
  24994. extra: 2076.22 / 2022.4,
  24995. bottom: 102.7 / 2177.3866
  24996. }
  24997. },
  24998. frontFlaccid: {
  24999. height: math.unit(1.72, "m"),
  25000. weight: math.unit(80, "lb"),
  25001. name: "Front (Flaccid)",
  25002. image: {
  25003. source: "./media/characters/voski/front-flaccid.svg",
  25004. extra: 2076.22 / 2022.4,
  25005. bottom: 102.7 / 2177.3866
  25006. }
  25007. },
  25008. frontErect: {
  25009. height: math.unit(1.72, "m"),
  25010. weight: math.unit(80, "lb"),
  25011. name: "Front (Erect)",
  25012. image: {
  25013. source: "./media/characters/voski/front-erect.svg",
  25014. extra: 2076.22 / 2022.4,
  25015. bottom: 102.7 / 2177.3866
  25016. }
  25017. },
  25018. back: {
  25019. height: math.unit(1.72, "m"),
  25020. weight: math.unit(80, "lb"),
  25021. name: "Back",
  25022. image: {
  25023. source: "./media/characters/voski/back.svg",
  25024. extra: 2104 / 2051,
  25025. bottom: 10.45 / 2113.63
  25026. }
  25027. },
  25028. },
  25029. [
  25030. {
  25031. name: "Normal",
  25032. height: math.unit(1.72, "m")
  25033. },
  25034. {
  25035. name: "Macro",
  25036. height: math.unit(55, "m"),
  25037. default: true
  25038. },
  25039. {
  25040. name: "Macro+",
  25041. height: math.unit(300, "m")
  25042. },
  25043. {
  25044. name: "Macro++",
  25045. height: math.unit(700, "m")
  25046. },
  25047. {
  25048. name: "Macro+++",
  25049. height: math.unit(4500, "m")
  25050. },
  25051. {
  25052. name: "Macro++++",
  25053. height: math.unit(45, "km")
  25054. },
  25055. {
  25056. name: "Macro+++++",
  25057. height: math.unit(1220, "km")
  25058. },
  25059. ]
  25060. ))
  25061. characterMakers.push(() => makeCharacter(
  25062. { name: "Icowom Lee", species: ["wolf"], tags: ["anthro"] },
  25063. {
  25064. front: {
  25065. height: math.unit(2.3, "m"),
  25066. weight: math.unit(304, "kg"),
  25067. name: "Front",
  25068. image: {
  25069. source: "./media/characters/icowom-lee/front.svg",
  25070. extra: 985 / 955,
  25071. bottom: 25.4 / 1012
  25072. }
  25073. },
  25074. fronttentacles: {
  25075. height: math.unit(2.3, "m"),
  25076. weight: math.unit(304, "kg"),
  25077. name: "Front-tentacles",
  25078. image: {
  25079. source: "./media/characters/icowom-lee/front-tentacles.svg",
  25080. extra: 985 / 955,
  25081. bottom: 25.4 / 1012
  25082. }
  25083. },
  25084. back: {
  25085. height: math.unit(2.3, "m"),
  25086. weight: math.unit(304, "kg"),
  25087. name: "Back",
  25088. image: {
  25089. source: "./media/characters/icowom-lee/back.svg",
  25090. extra: 975 / 954,
  25091. bottom: 9.5 / 985
  25092. }
  25093. },
  25094. backtentacles: {
  25095. height: math.unit(2.3, "m"),
  25096. weight: math.unit(304, "kg"),
  25097. name: "Back-tentacles",
  25098. image: {
  25099. source: "./media/characters/icowom-lee/back-tentacles.svg",
  25100. extra: 975 / 954,
  25101. bottom: 9.5 / 985
  25102. }
  25103. },
  25104. frontDressed: {
  25105. height: math.unit(2.3, "m"),
  25106. weight: math.unit(304, "kg"),
  25107. name: "Front (Dressed)",
  25108. image: {
  25109. source: "./media/characters/icowom-lee/front-dressed.svg",
  25110. extra: 3076 / 2933,
  25111. bottom: 51.4 / 3125.1889
  25112. }
  25113. },
  25114. rump: {
  25115. height: math.unit(0.776, "meters"),
  25116. name: "Rump",
  25117. image: {
  25118. source: "./media/characters/icowom-lee/rump.svg"
  25119. }
  25120. },
  25121. genitals: {
  25122. height: math.unit(0.78, "meters"),
  25123. name: "Genitals",
  25124. image: {
  25125. source: "./media/characters/icowom-lee/genitals.svg"
  25126. }
  25127. },
  25128. },
  25129. [
  25130. {
  25131. name: "Normal",
  25132. height: math.unit(2.3, "meters"),
  25133. default: true
  25134. },
  25135. {
  25136. name: "Macro",
  25137. height: math.unit(94, "meters"),
  25138. default: true
  25139. },
  25140. ]
  25141. ))
  25142. characterMakers.push(() => makeCharacter(
  25143. { name: "Shock Diamond", species: ["pharaoh-hound", "aeromorph"], tags: ["anthro"] },
  25144. {
  25145. front: {
  25146. height: math.unit(22, "meters"),
  25147. weight: math.unit(21000, "kg"),
  25148. name: "Front",
  25149. image: {
  25150. source: "./media/characters/shock-diamond/front.svg",
  25151. extra: 2204 / 2053,
  25152. bottom: 65 / 2239.47
  25153. }
  25154. },
  25155. frontNude: {
  25156. height: math.unit(22, "meters"),
  25157. weight: math.unit(21000, "kg"),
  25158. name: "Front (Nude)",
  25159. image: {
  25160. source: "./media/characters/shock-diamond/front-nude.svg",
  25161. extra: 2514 / 2285,
  25162. bottom: 13 / 2527.56
  25163. }
  25164. },
  25165. },
  25166. [
  25167. {
  25168. name: "Normal",
  25169. height: math.unit(3, "meters")
  25170. },
  25171. {
  25172. name: "Macro",
  25173. height: math.unit(22, "meters"),
  25174. default: true
  25175. },
  25176. ]
  25177. ))
  25178. characterMakers.push(() => makeCharacter(
  25179. { name: "Rory", species: ["dog", "magical"], tags: ["anthro"] },
  25180. {
  25181. front: {
  25182. height: math.unit(5 + 4/12, "feet"),
  25183. weight: math.unit(125, "lb"),
  25184. name: "Front",
  25185. image: {
  25186. source: "./media/characters/rory/front.svg",
  25187. extra: 1790/1681,
  25188. bottom: 66/1856
  25189. },
  25190. form: "normal",
  25191. default: true
  25192. },
  25193. back: {
  25194. height: math.unit(5 + 4/12, "feet"),
  25195. weight: math.unit(125, "lb"),
  25196. name: "Back",
  25197. image: {
  25198. source: "./media/characters/rory/back.svg",
  25199. extra: 1805/1690,
  25200. bottom: 56/1861
  25201. },
  25202. form: "normal"
  25203. },
  25204. frontDressed: {
  25205. height: math.unit(5 + 4/12, "feet"),
  25206. weight: math.unit(125, "lb"),
  25207. name: "Front (Dressed)",
  25208. image: {
  25209. source: "./media/characters/rory/front-dressed.svg",
  25210. extra: 1790/1681,
  25211. bottom: 66/1856
  25212. },
  25213. form: "normal"
  25214. },
  25215. backDressed: {
  25216. height: math.unit(5 + 4/12, "feet"),
  25217. weight: math.unit(125, "lb"),
  25218. name: "Back (Dressed)",
  25219. image: {
  25220. source: "./media/characters/rory/back-dressed.svg",
  25221. extra: 1805/1690,
  25222. bottom: 56/1861
  25223. },
  25224. form: "normal"
  25225. },
  25226. frontNsfw: {
  25227. height: math.unit(5 + 4/12, "feet"),
  25228. weight: math.unit(125, "lb"),
  25229. name: "Front (NSFW)",
  25230. image: {
  25231. source: "./media/characters/rory/front-nsfw.svg",
  25232. extra: 1790/1681,
  25233. bottom: 66/1856
  25234. },
  25235. form: "normal"
  25236. },
  25237. backNsfw: {
  25238. height: math.unit(5 + 4/12, "feet"),
  25239. weight: math.unit(125, "lb"),
  25240. name: "Back (NSFW)",
  25241. image: {
  25242. source: "./media/characters/rory/back-nsfw.svg",
  25243. extra: 1805/1690,
  25244. bottom: 56/1861
  25245. },
  25246. form: "normal"
  25247. },
  25248. dick: {
  25249. height: math.unit(0.8, "feet"),
  25250. name: "Dick",
  25251. image: {
  25252. source: "./media/characters/rory/dick.svg"
  25253. },
  25254. form: "normal"
  25255. },
  25256. thicc_front: {
  25257. height: math.unit(5 + 4/12, "feet"),
  25258. weight: math.unit(195, "lb"),
  25259. name: "Front",
  25260. image: {
  25261. source: "./media/characters/rory/thicc-front.svg",
  25262. extra: 1220/1100,
  25263. bottom: 103/1323
  25264. },
  25265. form: "thicc",
  25266. default: true
  25267. },
  25268. thicc_back: {
  25269. height: math.unit(5 + 4/12, "feet"),
  25270. weight: math.unit(195, "lb"),
  25271. name: "Back",
  25272. image: {
  25273. source: "./media/characters/rory/thicc-back.svg",
  25274. extra: 1166/1086,
  25275. bottom: 35/1201
  25276. },
  25277. form: "thicc"
  25278. },
  25279. },
  25280. [
  25281. {
  25282. name: "Micro",
  25283. height: math.unit(3, "inches"),
  25284. allForms: true
  25285. },
  25286. {
  25287. name: "Normal",
  25288. height: math.unit(5 + 4/12, "feet"),
  25289. allForms: true,
  25290. default: true
  25291. },
  25292. {
  25293. name: "Macro",
  25294. height: math.unit(90, "feet"),
  25295. allForms: true
  25296. },
  25297. {
  25298. name: "Supercharged",
  25299. height: math.unit(270, "feet"),
  25300. allForms: true
  25301. },
  25302. ],
  25303. {
  25304. "normal": {
  25305. name: "Normal",
  25306. default: true
  25307. },
  25308. "thicc": {
  25309. name: "Thicc",
  25310. },
  25311. }
  25312. ))
  25313. characterMakers.push(() => makeCharacter(
  25314. { name: "Sprisk", species: ["dragon"], tags: ["anthro"] },
  25315. {
  25316. front: {
  25317. height: math.unit(5 + 9 / 12, "feet"),
  25318. weight: math.unit(190, "lb"),
  25319. name: "Front",
  25320. image: {
  25321. source: "./media/characters/sprisk/front.svg",
  25322. extra: 1225 / 1180,
  25323. bottom: 42.7 / 1266.4
  25324. }
  25325. },
  25326. frontNsfw: {
  25327. height: math.unit(5 + 9 / 12, "feet"),
  25328. weight: math.unit(190, "lb"),
  25329. name: "Front (NSFW)",
  25330. image: {
  25331. source: "./media/characters/sprisk/front-nsfw.svg",
  25332. extra: 1225 / 1180,
  25333. bottom: 42.7 / 1266.4
  25334. }
  25335. },
  25336. back: {
  25337. height: math.unit(5 + 9 / 12, "feet"),
  25338. weight: math.unit(190, "lb"),
  25339. name: "Back",
  25340. image: {
  25341. source: "./media/characters/sprisk/back.svg",
  25342. extra: 1247 / 1200,
  25343. bottom: 5.6 / 1253.04
  25344. }
  25345. },
  25346. },
  25347. [
  25348. {
  25349. name: "Tiny",
  25350. height: math.unit(2, "inches")
  25351. },
  25352. {
  25353. name: "Normal",
  25354. height: math.unit(5 + 9 / 12, "feet"),
  25355. default: true
  25356. },
  25357. {
  25358. name: "Mini Macro",
  25359. height: math.unit(18, "feet")
  25360. },
  25361. {
  25362. name: "Macro",
  25363. height: math.unit(100, "feet")
  25364. },
  25365. {
  25366. name: "MACRO",
  25367. height: math.unit(50, "miles")
  25368. },
  25369. {
  25370. name: "M A C R O",
  25371. height: math.unit(300, "miles")
  25372. },
  25373. ]
  25374. ))
  25375. characterMakers.push(() => makeCharacter(
  25376. { name: "Bunsen", species: ["dragon"], tags: ["feral"] },
  25377. {
  25378. side: {
  25379. height: math.unit(15.6, "meters"),
  25380. weight: math.unit(700000, "kg"),
  25381. name: "Side",
  25382. image: {
  25383. source: "./media/characters/bunsen/side.svg",
  25384. extra: 1644 / 358
  25385. }
  25386. },
  25387. foot: {
  25388. height: math.unit(1.611 * 1644 / 358, "meter"),
  25389. name: "Foot",
  25390. image: {
  25391. source: "./media/characters/bunsen/foot.svg"
  25392. }
  25393. },
  25394. },
  25395. [
  25396. {
  25397. name: "Small",
  25398. height: math.unit(10, "feet")
  25399. },
  25400. {
  25401. name: "Normal",
  25402. height: math.unit(15.6, "meters"),
  25403. default: true
  25404. },
  25405. ]
  25406. ))
  25407. characterMakers.push(() => makeCharacter(
  25408. { name: "Sesh", species: ["finnish-spitz-dog"], tags: ["anthro"] },
  25409. {
  25410. front: {
  25411. height: math.unit(4 + 11 / 12, "feet"),
  25412. weight: math.unit(140, "lb"),
  25413. name: "Front",
  25414. image: {
  25415. source: "./media/characters/sesh/front.svg",
  25416. extra: 3420 / 3231,
  25417. bottom: 72 / 3949.5
  25418. }
  25419. },
  25420. },
  25421. [
  25422. {
  25423. name: "Normal",
  25424. height: math.unit(4 + 11 / 12, "feet")
  25425. },
  25426. {
  25427. name: "Grown",
  25428. height: math.unit(15, "feet"),
  25429. default: true
  25430. },
  25431. {
  25432. name: "Macro",
  25433. height: math.unit(1500, "feet")
  25434. },
  25435. {
  25436. name: "Megamacro",
  25437. height: math.unit(30, "miles")
  25438. },
  25439. {
  25440. name: "Continental",
  25441. height: math.unit(3000, "miles")
  25442. },
  25443. {
  25444. name: "Gravity Mass",
  25445. height: math.unit(300000, "miles")
  25446. },
  25447. {
  25448. name: "Planet Buster",
  25449. height: math.unit(30000000, "miles")
  25450. },
  25451. {
  25452. name: "Big",
  25453. height: math.unit(3000000000, "miles")
  25454. },
  25455. ]
  25456. ))
  25457. characterMakers.push(() => makeCharacter(
  25458. { name: "Pepper", species: ["zorgoia"], tags: ["anthro"] },
  25459. {
  25460. front: {
  25461. height: math.unit(9, "feet"),
  25462. weight: math.unit(350, "lb"),
  25463. name: "Front",
  25464. image: {
  25465. source: "./media/characters/pepper/front.svg",
  25466. extra: 1448 / 1312,
  25467. bottom: 9.4 / 1457.88
  25468. }
  25469. },
  25470. back: {
  25471. height: math.unit(9, "feet"),
  25472. weight: math.unit(350, "lb"),
  25473. name: "Back",
  25474. image: {
  25475. source: "./media/characters/pepper/back.svg",
  25476. extra: 1423 / 1300,
  25477. bottom: 4.6 / 1429
  25478. }
  25479. },
  25480. maw: {
  25481. height: math.unit(0.932, "feet"),
  25482. name: "Maw",
  25483. image: {
  25484. source: "./media/characters/pepper/maw.svg"
  25485. }
  25486. },
  25487. },
  25488. [
  25489. {
  25490. name: "Normal",
  25491. height: math.unit(9, "feet"),
  25492. default: true
  25493. },
  25494. ]
  25495. ))
  25496. characterMakers.push(() => makeCharacter(
  25497. { name: "Maelstrom", species: ["monster"], tags: ["anthro"] },
  25498. {
  25499. front: {
  25500. height: math.unit(6, "feet"),
  25501. weight: math.unit(150, "lb"),
  25502. name: "Front",
  25503. image: {
  25504. source: "./media/characters/maelstrom/front.svg",
  25505. extra: 2100 / 1883,
  25506. bottom: 94 / 2196.7
  25507. }
  25508. },
  25509. },
  25510. [
  25511. {
  25512. name: "Less Kaiju",
  25513. height: math.unit(200, "feet")
  25514. },
  25515. {
  25516. name: "Kaiju",
  25517. height: math.unit(400, "feet"),
  25518. default: true
  25519. },
  25520. {
  25521. name: "Kaiju-er",
  25522. height: math.unit(600, "feet")
  25523. },
  25524. ]
  25525. ))
  25526. characterMakers.push(() => makeCharacter(
  25527. { name: "Lexir", species: ["sergal"], tags: ["anthro"] },
  25528. {
  25529. front: {
  25530. height: math.unit(6 + 5 / 12, "feet"),
  25531. weight: math.unit(180, "lb"),
  25532. name: "Front",
  25533. image: {
  25534. source: "./media/characters/lexir/front.svg",
  25535. extra: 180 / 172,
  25536. bottom: 12 / 192
  25537. }
  25538. },
  25539. back: {
  25540. height: math.unit(6 + 5 / 12, "feet"),
  25541. weight: math.unit(180, "lb"),
  25542. name: "Back",
  25543. image: {
  25544. source: "./media/characters/lexir/back.svg",
  25545. extra: 1273/1201,
  25546. bottom: 39/1312
  25547. }
  25548. },
  25549. },
  25550. [
  25551. {
  25552. name: "Very Smal",
  25553. height: math.unit(1, "nm")
  25554. },
  25555. {
  25556. name: "Normal",
  25557. height: math.unit(6 + 5 / 12, "feet"),
  25558. default: true
  25559. },
  25560. {
  25561. name: "Macro",
  25562. height: math.unit(1, "mile")
  25563. },
  25564. {
  25565. name: "Megamacro",
  25566. height: math.unit(50, "miles")
  25567. },
  25568. ]
  25569. ))
  25570. characterMakers.push(() => makeCharacter(
  25571. { name: "Maksio", species: ["lizard"], tags: ["anthro"] },
  25572. {
  25573. front: {
  25574. height: math.unit(1.5, "meters"),
  25575. weight: math.unit(100, "lb"),
  25576. name: "Front",
  25577. image: {
  25578. source: "./media/characters/maksio/front.svg",
  25579. extra: 1549 / 1531,
  25580. bottom: 123.7 / 1674.5429
  25581. }
  25582. },
  25583. back: {
  25584. height: math.unit(1.5, "meters"),
  25585. weight: math.unit(100, "lb"),
  25586. name: "Back",
  25587. image: {
  25588. source: "./media/characters/maksio/back.svg",
  25589. extra: 1541 / 1509,
  25590. bottom: 97 / 1639
  25591. }
  25592. },
  25593. hand: {
  25594. height: math.unit(0.621, "feet"),
  25595. name: "Hand",
  25596. image: {
  25597. source: "./media/characters/maksio/hand.svg"
  25598. }
  25599. },
  25600. foot: {
  25601. height: math.unit(1.611, "feet"),
  25602. name: "Foot",
  25603. image: {
  25604. source: "./media/characters/maksio/foot.svg"
  25605. }
  25606. },
  25607. },
  25608. [
  25609. {
  25610. name: "Shrunken",
  25611. height: math.unit(10, "cm")
  25612. },
  25613. {
  25614. name: "Normal",
  25615. height: math.unit(150, "cm"),
  25616. default: true
  25617. },
  25618. ]
  25619. ))
  25620. characterMakers.push(() => makeCharacter(
  25621. { name: "Erza Bear", species: ["human", "dragon"], tags: ["anthro"] },
  25622. {
  25623. front: {
  25624. height: math.unit(100, "feet"),
  25625. name: "Front",
  25626. image: {
  25627. source: "./media/characters/erza-bear/front.svg",
  25628. extra: 2449 / 2390,
  25629. bottom: 46 / 2494
  25630. }
  25631. },
  25632. back: {
  25633. height: math.unit(100, "feet"),
  25634. name: "Back",
  25635. image: {
  25636. source: "./media/characters/erza-bear/back.svg",
  25637. extra: 2489 / 2430,
  25638. bottom: 85.4 / 2480
  25639. }
  25640. },
  25641. tail: {
  25642. height: math.unit(42, "feet"),
  25643. name: "Tail",
  25644. image: {
  25645. source: "./media/characters/erza-bear/tail.svg"
  25646. }
  25647. },
  25648. tongue: {
  25649. height: math.unit(8, "feet"),
  25650. name: "Tongue",
  25651. image: {
  25652. source: "./media/characters/erza-bear/tongue.svg"
  25653. }
  25654. },
  25655. dick: {
  25656. height: math.unit(10.5, "feet"),
  25657. name: "Dick",
  25658. image: {
  25659. source: "./media/characters/erza-bear/dick.svg"
  25660. }
  25661. },
  25662. dickVertical: {
  25663. height: math.unit(16.9, "feet"),
  25664. name: "Dick (Vertical)",
  25665. image: {
  25666. source: "./media/characters/erza-bear/dick-vertical.svg"
  25667. }
  25668. },
  25669. },
  25670. [
  25671. {
  25672. name: "Macro",
  25673. height: math.unit(100, "feet"),
  25674. default: true
  25675. },
  25676. ]
  25677. ))
  25678. characterMakers.push(() => makeCharacter(
  25679. { name: "Violet Flor", species: ["skunk"], tags: ["anthro"] },
  25680. {
  25681. front: {
  25682. height: math.unit(172, "cm"),
  25683. weight: math.unit(73, "kg"),
  25684. name: "Front",
  25685. image: {
  25686. source: "./media/characters/violet-flor/front.svg",
  25687. extra: 1530 / 1442,
  25688. bottom: 61.9 / 1588.8
  25689. }
  25690. },
  25691. back: {
  25692. height: math.unit(180, "cm"),
  25693. weight: math.unit(73, "kg"),
  25694. name: "Back",
  25695. image: {
  25696. source: "./media/characters/violet-flor/back.svg",
  25697. extra: 1692 / 1630,
  25698. bottom: 20 / 1712
  25699. }
  25700. },
  25701. },
  25702. [
  25703. {
  25704. name: "Normal",
  25705. height: math.unit(172, "cm"),
  25706. default: true
  25707. },
  25708. ]
  25709. ))
  25710. characterMakers.push(() => makeCharacter(
  25711. { name: "Lynn Rhea", species: ["shark"], tags: ["anthro"] },
  25712. {
  25713. front: {
  25714. height: math.unit(6, "feet"),
  25715. weight: math.unit(220, "lb"),
  25716. name: "Front",
  25717. image: {
  25718. source: "./media/characters/lynn-rhea/front.svg",
  25719. extra: 310 / 273
  25720. }
  25721. },
  25722. back: {
  25723. height: math.unit(6, "feet"),
  25724. weight: math.unit(220, "lb"),
  25725. name: "Back",
  25726. image: {
  25727. source: "./media/characters/lynn-rhea/back.svg",
  25728. extra: 310 / 273
  25729. }
  25730. },
  25731. dicks: {
  25732. height: math.unit(0.9, "feet"),
  25733. name: "Dicks",
  25734. image: {
  25735. source: "./media/characters/lynn-rhea/dicks.svg"
  25736. }
  25737. },
  25738. slit: {
  25739. height: math.unit(0.4, "feet"),
  25740. name: "Slit",
  25741. image: {
  25742. source: "./media/characters/lynn-rhea/slit.svg"
  25743. }
  25744. },
  25745. },
  25746. [
  25747. {
  25748. name: "Micro",
  25749. height: math.unit(1, "inch")
  25750. },
  25751. {
  25752. name: "Macro",
  25753. height: math.unit(60, "feet"),
  25754. default: true
  25755. },
  25756. {
  25757. name: "Megamacro",
  25758. height: math.unit(2, "miles")
  25759. },
  25760. {
  25761. name: "Gigamacro",
  25762. height: math.unit(3, "earths")
  25763. },
  25764. {
  25765. name: "Galactic",
  25766. height: math.unit(0.8, "galaxies")
  25767. },
  25768. ]
  25769. ))
  25770. characterMakers.push(() => makeCharacter(
  25771. { name: "Valathos", species: ["sea-monster"], tags: ["naga"] },
  25772. {
  25773. front: {
  25774. height: math.unit(1600, "feet"),
  25775. weight: math.unit(85758785169, "kg"),
  25776. name: "Front",
  25777. image: {
  25778. source: "./media/characters/valathos/front.svg",
  25779. extra: 1451 / 1339
  25780. }
  25781. },
  25782. },
  25783. [
  25784. {
  25785. name: "Macro",
  25786. height: math.unit(1600, "feet"),
  25787. default: true
  25788. },
  25789. ]
  25790. ))
  25791. characterMakers.push(() => makeCharacter(
  25792. { name: "Azula", species: ["demon"], tags: ["anthro"] },
  25793. {
  25794. front: {
  25795. height: math.unit(7 + 5 / 12, "feet"),
  25796. weight: math.unit(300, "lb"),
  25797. name: "Front",
  25798. image: {
  25799. source: "./media/characters/azula/front.svg",
  25800. extra: 3208 / 2880,
  25801. bottom: 80.2 / 3277
  25802. }
  25803. },
  25804. back: {
  25805. height: math.unit(7 + 5 / 12, "feet"),
  25806. weight: math.unit(300, "lb"),
  25807. name: "Back",
  25808. image: {
  25809. source: "./media/characters/azula/back.svg",
  25810. extra: 3169 / 2822,
  25811. bottom: 150.6 / 3321
  25812. }
  25813. },
  25814. },
  25815. [
  25816. {
  25817. name: "Normal",
  25818. height: math.unit(7 + 5 / 12, "feet"),
  25819. default: true
  25820. },
  25821. {
  25822. name: "Big",
  25823. height: math.unit(20, "feet")
  25824. },
  25825. ]
  25826. ))
  25827. characterMakers.push(() => makeCharacter(
  25828. { name: "Rupert", species: ["shark"], tags: ["anthro"] },
  25829. {
  25830. front: {
  25831. height: math.unit(5 + 1 / 12, "feet"),
  25832. weight: math.unit(110, "lb"),
  25833. name: "Front",
  25834. image: {
  25835. source: "./media/characters/rupert/front.svg",
  25836. extra: 1549 / 1495,
  25837. bottom: 54.2 / 1604.4
  25838. }
  25839. },
  25840. },
  25841. [
  25842. {
  25843. name: "Normal",
  25844. height: math.unit(5 + 1 / 12, "feet"),
  25845. default: true
  25846. },
  25847. ]
  25848. ))
  25849. characterMakers.push(() => makeCharacter(
  25850. { name: "Sheera Castellar", species: ["dragon"], tags: ["anthro", "taur"] },
  25851. {
  25852. front: {
  25853. height: math.unit(8 + 4 / 12, "feet"),
  25854. weight: math.unit(350, "lb"),
  25855. name: "Front",
  25856. image: {
  25857. source: "./media/characters/sheera-castellar/front.svg",
  25858. extra: 1957 / 1894,
  25859. bottom: 26.97 / 1975.017
  25860. }
  25861. },
  25862. side: {
  25863. height: math.unit(8 + 4 / 12, "feet"),
  25864. weight: math.unit(350, "lb"),
  25865. name: "Side",
  25866. image: {
  25867. source: "./media/characters/sheera-castellar/side.svg",
  25868. extra: 1957 / 1894
  25869. }
  25870. },
  25871. back: {
  25872. height: math.unit(8 + 4 / 12, "feet"),
  25873. weight: math.unit(350, "lb"),
  25874. name: "Back",
  25875. image: {
  25876. source: "./media/characters/sheera-castellar/back.svg",
  25877. extra: 1957 / 1894
  25878. }
  25879. },
  25880. angled: {
  25881. height: math.unit((8 + 4 / 12) * (1 - 68 / 1875), "feet"),
  25882. weight: math.unit(350, "lb"),
  25883. name: "Angled",
  25884. image: {
  25885. source: "./media/characters/sheera-castellar/angled.svg",
  25886. extra: 1807 / 1707,
  25887. bottom: 68 / 1875
  25888. }
  25889. },
  25890. genitals: {
  25891. height: math.unit(2.2, "feet"),
  25892. name: "Genitals",
  25893. image: {
  25894. source: "./media/characters/sheera-castellar/genitals.svg"
  25895. }
  25896. },
  25897. taur: {
  25898. height: math.unit(10 + 6/12, "feet"),
  25899. name: "Taur",
  25900. image: {
  25901. source: "./media/characters/sheera-castellar/taur.svg",
  25902. extra: 2017/1909,
  25903. bottom: 185/2202
  25904. }
  25905. },
  25906. },
  25907. [
  25908. {
  25909. name: "Normal",
  25910. height: math.unit(8 + 4 / 12, "feet")
  25911. },
  25912. {
  25913. name: "Macro",
  25914. height: math.unit(150, "feet"),
  25915. default: true
  25916. },
  25917. {
  25918. name: "Macro+",
  25919. height: math.unit(800, "feet")
  25920. },
  25921. ]
  25922. ))
  25923. characterMakers.push(() => makeCharacter(
  25924. { name: "Jaipur", species: ["black-panther"], tags: ["anthro"] },
  25925. {
  25926. front: {
  25927. height: math.unit(6, "feet"),
  25928. weight: math.unit(150, "lb"),
  25929. name: "Front",
  25930. image: {
  25931. source: "./media/characters/jaipur/front.svg",
  25932. extra: 3860 / 3731,
  25933. bottom: 287 / 4140
  25934. }
  25935. },
  25936. back: {
  25937. height: math.unit(6, "feet"),
  25938. weight: math.unit(150, "lb"),
  25939. name: "Back",
  25940. image: {
  25941. source: "./media/characters/jaipur/back.svg",
  25942. extra: 1637/1561,
  25943. bottom: 154/1791
  25944. }
  25945. },
  25946. },
  25947. [
  25948. {
  25949. name: "Normal",
  25950. height: math.unit(1.85, "meters"),
  25951. default: true
  25952. },
  25953. {
  25954. name: "Macro",
  25955. height: math.unit(150, "meters")
  25956. },
  25957. {
  25958. name: "Macro+",
  25959. height: math.unit(0.5, "miles")
  25960. },
  25961. {
  25962. name: "Macro++",
  25963. height: math.unit(2.5, "miles")
  25964. },
  25965. {
  25966. name: "Macro+++",
  25967. height: math.unit(12, "miles")
  25968. },
  25969. {
  25970. name: "Macro++++",
  25971. height: math.unit(120, "miles")
  25972. },
  25973. {
  25974. name: "Macro+++++",
  25975. height: math.unit(1200, "miles")
  25976. },
  25977. ]
  25978. ))
  25979. characterMakers.push(() => makeCharacter(
  25980. { name: "Sheila (Wolf)", species: ["wolf"], tags: ["anthro"] },
  25981. {
  25982. front: {
  25983. height: math.unit(6, "feet"),
  25984. weight: math.unit(150, "lb"),
  25985. name: "Front",
  25986. image: {
  25987. source: "./media/characters/sheila-wolf/front.svg",
  25988. extra: 1931 / 1808,
  25989. bottom: 29.5 / 1960
  25990. }
  25991. },
  25992. dick: {
  25993. height: math.unit(1.464, "feet"),
  25994. name: "Dick",
  25995. image: {
  25996. source: "./media/characters/sheila-wolf/dick.svg"
  25997. }
  25998. },
  25999. muzzle: {
  26000. height: math.unit(0.513, "feet"),
  26001. name: "Muzzle",
  26002. image: {
  26003. source: "./media/characters/sheila-wolf/muzzle.svg"
  26004. }
  26005. },
  26006. },
  26007. [
  26008. {
  26009. name: "Macro",
  26010. height: math.unit(70, "feet"),
  26011. default: true
  26012. },
  26013. ]
  26014. ))
  26015. characterMakers.push(() => makeCharacter(
  26016. { name: "Almor", species: ["dragon"], tags: ["anthro"] },
  26017. {
  26018. front: {
  26019. height: math.unit(32, "meters"),
  26020. weight: math.unit(300000, "kg"),
  26021. name: "Front",
  26022. image: {
  26023. source: "./media/characters/almor/front.svg",
  26024. extra: 1408 / 1322,
  26025. bottom: 94.6 / 1506.5
  26026. }
  26027. },
  26028. },
  26029. [
  26030. {
  26031. name: "Macro",
  26032. height: math.unit(32, "meters"),
  26033. default: true
  26034. },
  26035. ]
  26036. ))
  26037. characterMakers.push(() => makeCharacter(
  26038. { name: "Silver", species: ["shark"], tags: ["anthro"] },
  26039. {
  26040. front: {
  26041. height: math.unit(7, "feet"),
  26042. weight: math.unit(200, "lb"),
  26043. name: "Front",
  26044. image: {
  26045. source: "./media/characters/silver/front.svg",
  26046. extra: 472.1 / 450.5,
  26047. bottom: 26.5 / 499.424
  26048. }
  26049. },
  26050. },
  26051. [
  26052. {
  26053. name: "Normal",
  26054. height: math.unit(7, "feet"),
  26055. default: true
  26056. },
  26057. {
  26058. name: "Macro",
  26059. height: math.unit(800, "feet")
  26060. },
  26061. {
  26062. name: "Megamacro",
  26063. height: math.unit(250, "miles")
  26064. },
  26065. ]
  26066. ))
  26067. characterMakers.push(() => makeCharacter(
  26068. { name: "Pliskin", species: ["cat"], tags: ["anthro"] },
  26069. {
  26070. front: {
  26071. height: math.unit(6, "feet"),
  26072. weight: math.unit(150, "lb"),
  26073. name: "Front",
  26074. image: {
  26075. source: "./media/characters/pliskin/front.svg",
  26076. extra: 1469 / 1359,
  26077. bottom: 70 / 1540
  26078. }
  26079. },
  26080. },
  26081. [
  26082. {
  26083. name: "Micro",
  26084. height: math.unit(3, "inches")
  26085. },
  26086. {
  26087. name: "Normal",
  26088. height: math.unit(5 + 11 / 12, "feet"),
  26089. default: true
  26090. },
  26091. {
  26092. name: "Macro",
  26093. height: math.unit(120, "feet")
  26094. },
  26095. ]
  26096. ))
  26097. characterMakers.push(() => makeCharacter(
  26098. { name: "Sammy", species: ["samurott"], tags: ["anthro"] },
  26099. {
  26100. front: {
  26101. height: math.unit(6, "feet"),
  26102. weight: math.unit(150, "lb"),
  26103. name: "Front",
  26104. image: {
  26105. source: "./media/characters/sammy/front.svg",
  26106. extra: 1193 / 1089,
  26107. bottom: 30.5 / 1226
  26108. }
  26109. },
  26110. },
  26111. [
  26112. {
  26113. name: "Macro",
  26114. height: math.unit(1700, "feet"),
  26115. default: true
  26116. },
  26117. {
  26118. name: "Examacro",
  26119. height: math.unit(2.5e9, "lightyears")
  26120. },
  26121. ]
  26122. ))
  26123. characterMakers.push(() => makeCharacter(
  26124. { name: "Kuru", species: ["umbra"], tags: ["anthro"] },
  26125. {
  26126. front: {
  26127. height: math.unit(21, "meters"),
  26128. weight: math.unit(12, "tonnes"),
  26129. name: "Front",
  26130. image: {
  26131. source: "./media/characters/kuru/front.svg",
  26132. extra: 4301 / 3785,
  26133. bottom: 371.3 / 4691
  26134. }
  26135. },
  26136. },
  26137. [
  26138. {
  26139. name: "Macro",
  26140. height: math.unit(21, "meters"),
  26141. default: true
  26142. },
  26143. ]
  26144. ))
  26145. characterMakers.push(() => makeCharacter(
  26146. { name: "Rakka", species: ["umbra"], tags: ["anthro"] },
  26147. {
  26148. front: {
  26149. height: math.unit(23, "meters"),
  26150. weight: math.unit(12.2, "tonnes"),
  26151. name: "Front",
  26152. image: {
  26153. source: "./media/characters/rakka/front.svg",
  26154. extra: 4670 / 4169,
  26155. bottom: 301 / 4968.7
  26156. }
  26157. },
  26158. },
  26159. [
  26160. {
  26161. name: "Macro",
  26162. height: math.unit(23, "meters"),
  26163. default: true
  26164. },
  26165. ]
  26166. ))
  26167. characterMakers.push(() => makeCharacter(
  26168. { name: "Rhys (Feline)", species: ["cat"], tags: ["anthro"] },
  26169. {
  26170. front: {
  26171. height: math.unit(6, "feet"),
  26172. weight: math.unit(150, "lb"),
  26173. name: "Front",
  26174. image: {
  26175. source: "./media/characters/rhys-feline/front.svg",
  26176. extra: 2488 / 2308,
  26177. bottom: 35.67 / 2519.19
  26178. }
  26179. },
  26180. },
  26181. [
  26182. {
  26183. name: "Really Small",
  26184. height: math.unit(1, "nm")
  26185. },
  26186. {
  26187. name: "Micro",
  26188. height: math.unit(4, "inches")
  26189. },
  26190. {
  26191. name: "Normal",
  26192. height: math.unit(4 + 10 / 12, "feet"),
  26193. default: true
  26194. },
  26195. {
  26196. name: "Macro",
  26197. height: math.unit(100, "feet")
  26198. },
  26199. {
  26200. name: "Megamacto",
  26201. height: math.unit(50, "miles")
  26202. },
  26203. ]
  26204. ))
  26205. characterMakers.push(() => makeCharacter(
  26206. { name: "Alydar", species: ["raven", "snow-leopard"], tags: ["feral"] },
  26207. {
  26208. side: {
  26209. height: math.unit(30, "feet"),
  26210. weight: math.unit(35000, "kg"),
  26211. name: "Side",
  26212. image: {
  26213. source: "./media/characters/alydar/side.svg",
  26214. extra: 234 / 222,
  26215. bottom: 6.5 / 241
  26216. }
  26217. },
  26218. front: {
  26219. height: math.unit(30, "feet"),
  26220. weight: math.unit(35000, "kg"),
  26221. name: "Front",
  26222. image: {
  26223. source: "./media/characters/alydar/front.svg",
  26224. extra: 223.37 / 210.2,
  26225. bottom: 22.3 / 246.76
  26226. }
  26227. },
  26228. top: {
  26229. height: math.unit(64.54, "feet"),
  26230. weight: math.unit(35000, "kg"),
  26231. name: "Top",
  26232. image: {
  26233. source: "./media/characters/alydar/top.svg"
  26234. }
  26235. },
  26236. anthro: {
  26237. height: math.unit(30, "feet"),
  26238. weight: math.unit(9000, "kg"),
  26239. name: "Anthro",
  26240. image: {
  26241. source: "./media/characters/alydar/anthro.svg",
  26242. extra: 432 / 421,
  26243. bottom: 7.18 / 440
  26244. }
  26245. },
  26246. maw: {
  26247. height: math.unit(11.693, "feet"),
  26248. name: "Maw",
  26249. image: {
  26250. source: "./media/characters/alydar/maw.svg"
  26251. }
  26252. },
  26253. head: {
  26254. height: math.unit(11.693, "feet"),
  26255. name: "Head",
  26256. image: {
  26257. source: "./media/characters/alydar/head.svg"
  26258. }
  26259. },
  26260. headAlt: {
  26261. height: math.unit(12.861, "feet"),
  26262. name: "Head (Alt)",
  26263. image: {
  26264. source: "./media/characters/alydar/head-alt.svg"
  26265. }
  26266. },
  26267. wing: {
  26268. height: math.unit(20.712, "feet"),
  26269. name: "Wing",
  26270. image: {
  26271. source: "./media/characters/alydar/wing.svg"
  26272. }
  26273. },
  26274. wingFeather: {
  26275. height: math.unit(9.662, "feet"),
  26276. name: "Wing Feather",
  26277. image: {
  26278. source: "./media/characters/alydar/wing-feather.svg"
  26279. }
  26280. },
  26281. countourFeather: {
  26282. height: math.unit(4.154, "feet"),
  26283. name: "Contour Feather",
  26284. image: {
  26285. source: "./media/characters/alydar/contour-feather.svg"
  26286. }
  26287. },
  26288. },
  26289. [
  26290. {
  26291. name: "Diplomatic",
  26292. height: math.unit(13, "feet"),
  26293. default: true
  26294. },
  26295. {
  26296. name: "Small",
  26297. height: math.unit(30, "feet")
  26298. },
  26299. {
  26300. name: "Normal",
  26301. height: math.unit(95, "feet"),
  26302. default: true
  26303. },
  26304. {
  26305. name: "Large",
  26306. height: math.unit(285, "feet")
  26307. },
  26308. {
  26309. name: "Incomprehensible",
  26310. height: math.unit(450, "megameters")
  26311. },
  26312. ]
  26313. ))
  26314. characterMakers.push(() => makeCharacter(
  26315. { name: "Selicia", species: ["dragon"], tags: ["feral"] },
  26316. {
  26317. side: {
  26318. height: math.unit(11, "feet"),
  26319. weight: math.unit(1750, "kg"),
  26320. name: "Side",
  26321. image: {
  26322. source: "./media/characters/selicia/side.svg",
  26323. extra: 440 / 396,
  26324. bottom: 24.8 / 465.979
  26325. }
  26326. },
  26327. maw: {
  26328. height: math.unit(4.665, "feet"),
  26329. name: "Maw",
  26330. image: {
  26331. source: "./media/characters/selicia/maw.svg"
  26332. }
  26333. },
  26334. },
  26335. [
  26336. {
  26337. name: "Normal",
  26338. height: math.unit(11, "feet"),
  26339. default: true
  26340. },
  26341. ]
  26342. ))
  26343. characterMakers.push(() => makeCharacter(
  26344. { name: "Layla", species: ["zorua", "vulpix", "dragon"], tags: ["feral"] },
  26345. {
  26346. side: {
  26347. height: math.unit(2 + 6 / 12, "feet"),
  26348. weight: math.unit(30, "lb"),
  26349. name: "Side",
  26350. image: {
  26351. source: "./media/characters/layla/side.svg",
  26352. extra: 244 / 188,
  26353. bottom: 18.2 / 262.1
  26354. }
  26355. },
  26356. back: {
  26357. height: math.unit(2 + 6 / 12, "feet"),
  26358. weight: math.unit(30, "lb"),
  26359. name: "Back",
  26360. image: {
  26361. source: "./media/characters/layla/back.svg",
  26362. extra: 308 / 241.5,
  26363. bottom: 8.9 / 316.8
  26364. }
  26365. },
  26366. cumming: {
  26367. height: math.unit(2 + 6 / 12, "feet"),
  26368. weight: math.unit(30, "lb"),
  26369. name: "Cumming",
  26370. image: {
  26371. source: "./media/characters/layla/cumming.svg",
  26372. extra: 342 / 279,
  26373. bottom: 595 / 938
  26374. }
  26375. },
  26376. dickFlaccid: {
  26377. height: math.unit(2.595, "feet"),
  26378. name: "Flaccid Genitals",
  26379. image: {
  26380. source: "./media/characters/layla/dick-flaccid.svg"
  26381. }
  26382. },
  26383. dickErect: {
  26384. height: math.unit(2.359, "feet"),
  26385. name: "Erect Genitals",
  26386. image: {
  26387. source: "./media/characters/layla/dick-erect.svg"
  26388. }
  26389. },
  26390. dragon: {
  26391. height: math.unit(40, "feet"),
  26392. name: "Dragon",
  26393. image: {
  26394. source: "./media/characters/layla/dragon.svg",
  26395. extra: 610/535,
  26396. bottom: 367/977
  26397. }
  26398. },
  26399. taur: {
  26400. height: math.unit(30, "feet"),
  26401. name: "Taur",
  26402. image: {
  26403. source: "./media/characters/layla/taur.svg",
  26404. extra: 1268/1199,
  26405. bottom: 112/1380
  26406. }
  26407. },
  26408. },
  26409. [
  26410. {
  26411. name: "Micro",
  26412. height: math.unit(1, "inch")
  26413. },
  26414. {
  26415. name: "Small",
  26416. height: math.unit(1, "foot")
  26417. },
  26418. {
  26419. name: "Normal",
  26420. height: math.unit(2 + 6 / 12, "feet"),
  26421. default: true
  26422. },
  26423. {
  26424. name: "Macro",
  26425. height: math.unit(200, "feet")
  26426. },
  26427. {
  26428. name: "Megamacro",
  26429. height: math.unit(1000, "miles")
  26430. },
  26431. {
  26432. name: "Planetary",
  26433. height: math.unit(8000, "miles")
  26434. },
  26435. {
  26436. name: "True Layla",
  26437. height: math.unit(200000 * 7, "multiverses")
  26438. },
  26439. ]
  26440. ))
  26441. characterMakers.push(() => makeCharacter(
  26442. { name: "Knox", species: ["arcanine", "houndoom"], tags: ["feral"] },
  26443. {
  26444. back: {
  26445. height: math.unit(10.5, "feet"),
  26446. weight: math.unit(800, "lb"),
  26447. name: "Back",
  26448. image: {
  26449. source: "./media/characters/knox/back.svg",
  26450. extra: 1486 / 1089,
  26451. bottom: 107 / 1601.4
  26452. }
  26453. },
  26454. side: {
  26455. height: math.unit(10.5, "feet"),
  26456. weight: math.unit(800, "lb"),
  26457. name: "Side",
  26458. image: {
  26459. source: "./media/characters/knox/side.svg",
  26460. extra: 244 / 218,
  26461. bottom: 14 / 260
  26462. }
  26463. },
  26464. },
  26465. [
  26466. {
  26467. name: "Compact",
  26468. height: math.unit(10.5, "feet"),
  26469. default: true
  26470. },
  26471. {
  26472. name: "Dynamax",
  26473. height: math.unit(210, "feet")
  26474. },
  26475. {
  26476. name: "Full Macro",
  26477. height: math.unit(850, "feet")
  26478. },
  26479. ]
  26480. ))
  26481. characterMakers.push(() => makeCharacter(
  26482. { name: "Kayda", species: ["dragon"], tags: ["anthro"] },
  26483. {
  26484. front: {
  26485. height: math.unit(28, "feet"),
  26486. weight: math.unit(10500, "lb"),
  26487. name: "Front",
  26488. image: {
  26489. source: "./media/characters/kayda/front.svg",
  26490. extra: 1536 / 1428,
  26491. bottom: 68.7 / 1603
  26492. }
  26493. },
  26494. back: {
  26495. height: math.unit(28, "feet"),
  26496. weight: math.unit(10500, "lb"),
  26497. name: "Back",
  26498. image: {
  26499. source: "./media/characters/kayda/back.svg",
  26500. extra: 1557 / 1464,
  26501. bottom: 39.5 / 1597.49
  26502. }
  26503. },
  26504. dick: {
  26505. height: math.unit(3.858, "feet"),
  26506. name: "Dick",
  26507. image: {
  26508. source: "./media/characters/kayda/dick.svg"
  26509. }
  26510. },
  26511. },
  26512. [
  26513. {
  26514. name: "Macro",
  26515. height: math.unit(28, "feet"),
  26516. default: true
  26517. },
  26518. ]
  26519. ))
  26520. characterMakers.push(() => makeCharacter(
  26521. { name: "Brian", species: ["barbary-lion"], tags: ["anthro"] },
  26522. {
  26523. front: {
  26524. height: math.unit(10 + 11 / 12, "feet"),
  26525. weight: math.unit(1400, "lb"),
  26526. name: "Front",
  26527. image: {
  26528. source: "./media/characters/brian/front.svg",
  26529. extra: 737 / 692,
  26530. bottom: 55.4 / 785
  26531. }
  26532. },
  26533. },
  26534. [
  26535. {
  26536. name: "Normal",
  26537. height: math.unit(10 + 11 / 12, "feet"),
  26538. default: true
  26539. },
  26540. ]
  26541. ))
  26542. characterMakers.push(() => makeCharacter(
  26543. { name: "Khemri", species: ["jackal"], tags: ["anthro"] },
  26544. {
  26545. front: {
  26546. height: math.unit(5 + 8 / 12, "feet"),
  26547. weight: math.unit(140, "lb"),
  26548. name: "Front",
  26549. image: {
  26550. source: "./media/characters/khemri/front.svg",
  26551. extra: 4780 / 4059,
  26552. bottom: 80.1 / 4859.25
  26553. }
  26554. },
  26555. },
  26556. [
  26557. {
  26558. name: "Micro",
  26559. height: math.unit(6, "inches")
  26560. },
  26561. {
  26562. name: "Normal",
  26563. height: math.unit(5 + 8 / 12, "feet"),
  26564. default: true
  26565. },
  26566. ]
  26567. ))
  26568. characterMakers.push(() => makeCharacter(
  26569. { name: "Felix Braveheart", species: ["cerberus", "wolf"], tags: ["anthro", "feral"] },
  26570. {
  26571. front: {
  26572. height: math.unit(13, "feet"),
  26573. weight: math.unit(1700, "lb"),
  26574. name: "Front",
  26575. image: {
  26576. source: "./media/characters/felix-braveheart/front.svg",
  26577. extra: 1222 / 1157,
  26578. bottom: 53.2 / 1280
  26579. }
  26580. },
  26581. back: {
  26582. height: math.unit(13, "feet"),
  26583. weight: math.unit(1700, "lb"),
  26584. name: "Back",
  26585. image: {
  26586. source: "./media/characters/felix-braveheart/back.svg",
  26587. extra: 1277 / 1203,
  26588. bottom: 50.2 / 1327
  26589. }
  26590. },
  26591. feral: {
  26592. height: math.unit(6, "feet"),
  26593. weight: math.unit(400, "lb"),
  26594. name: "Feral",
  26595. image: {
  26596. source: "./media/characters/felix-braveheart/feral.svg",
  26597. extra: 682 / 625,
  26598. bottom: 6.9 / 688
  26599. }
  26600. },
  26601. },
  26602. [
  26603. {
  26604. name: "Normal",
  26605. height: math.unit(13, "feet"),
  26606. default: true
  26607. },
  26608. ]
  26609. ))
  26610. characterMakers.push(() => makeCharacter(
  26611. { name: "Shadow Blade", species: ["horse"], tags: ["feral"] },
  26612. {
  26613. side: {
  26614. height: math.unit(5 + 11 / 12, "feet"),
  26615. weight: math.unit(1400, "lb"),
  26616. name: "Side",
  26617. image: {
  26618. source: "./media/characters/shadow-blade/side.svg",
  26619. extra: 1726 / 1267,
  26620. bottom: 58.4 / 1785
  26621. }
  26622. },
  26623. },
  26624. [
  26625. {
  26626. name: "Normal",
  26627. height: math.unit(5 + 11 / 12, "feet"),
  26628. default: true
  26629. },
  26630. ]
  26631. ))
  26632. characterMakers.push(() => makeCharacter(
  26633. { name: "Karla Halldor", species: ["nimbat"], tags: ["anthro"] },
  26634. {
  26635. front: {
  26636. height: math.unit(1 + 6 / 12, "feet"),
  26637. weight: math.unit(25, "lb"),
  26638. name: "Front",
  26639. image: {
  26640. source: "./media/characters/karla-halldor/front.svg",
  26641. extra: 1459 / 1383,
  26642. bottom: 12 / 1472
  26643. }
  26644. },
  26645. },
  26646. [
  26647. {
  26648. name: "Normal",
  26649. height: math.unit(1 + 6 / 12, "feet"),
  26650. default: true
  26651. },
  26652. ]
  26653. ))
  26654. characterMakers.push(() => makeCharacter(
  26655. { name: "Ariam", species: ["dragon"], tags: ["anthro"] },
  26656. {
  26657. front: {
  26658. height: math.unit(6 + 2 / 12, "feet"),
  26659. weight: math.unit(160, "lb"),
  26660. name: "Front",
  26661. image: {
  26662. source: "./media/characters/ariam/front.svg",
  26663. extra: 1073/976,
  26664. bottom: 52/1125
  26665. }
  26666. },
  26667. back: {
  26668. height: math.unit(6 + 2/12, "feet"),
  26669. weight: math.unit(160, "lb"),
  26670. name: "Back",
  26671. image: {
  26672. source: "./media/characters/ariam/back.svg",
  26673. extra: 1103/1023,
  26674. bottom: 9/1112
  26675. }
  26676. },
  26677. dressed: {
  26678. height: math.unit(6 + 2/12, "feet"),
  26679. weight: math.unit(160, "lb"),
  26680. name: "Dressed",
  26681. image: {
  26682. source: "./media/characters/ariam/dressed.svg",
  26683. extra: 1099/1009,
  26684. bottom: 25/1124
  26685. }
  26686. },
  26687. squatting: {
  26688. height: math.unit(4.1, "feet"),
  26689. weight: math.unit(160, "lb"),
  26690. name: "Squatting",
  26691. image: {
  26692. source: "./media/characters/ariam/squatting.svg",
  26693. extra: 2617 / 2112,
  26694. bottom: 61.2 / 2681,
  26695. }
  26696. },
  26697. },
  26698. [
  26699. {
  26700. name: "Normal",
  26701. height: math.unit(6 + 2 / 12, "feet"),
  26702. default: true
  26703. },
  26704. {
  26705. name: "Normal+",
  26706. height: math.unit(4, "meters")
  26707. },
  26708. {
  26709. name: "Macro",
  26710. height: math.unit(50, "meters")
  26711. },
  26712. {
  26713. name: "Macro+",
  26714. height: math.unit(100, "meters")
  26715. },
  26716. {
  26717. name: "Megamacro",
  26718. height: math.unit(20, "km")
  26719. },
  26720. {
  26721. name: "Caretaker",
  26722. height: math.unit(444, "megameters")
  26723. },
  26724. ]
  26725. ))
  26726. characterMakers.push(() => makeCharacter(
  26727. { name: "Qodri Class-of-'Fortwelve-Six", species: ["wolxi"], tags: ["anthro"] },
  26728. {
  26729. front: {
  26730. height: math.unit(1.67, "meters"),
  26731. weight: math.unit(140, "lb"),
  26732. name: "Front",
  26733. image: {
  26734. source: "./media/characters/qodri-class-of-'fortwelve-six/front.svg",
  26735. extra: 438 / 410,
  26736. bottom: 0.75 / 439
  26737. }
  26738. },
  26739. },
  26740. [
  26741. {
  26742. name: "Shrunken",
  26743. height: math.unit(7.6, "cm")
  26744. },
  26745. {
  26746. name: "Human Scale",
  26747. height: math.unit(1.67, "meters")
  26748. },
  26749. {
  26750. name: "Wolxi Scale",
  26751. height: math.unit(36.7, "meters"),
  26752. default: true
  26753. },
  26754. ]
  26755. ))
  26756. characterMakers.push(() => makeCharacter(
  26757. { name: "Izue Two-Mothers", species: ["wolxi"], tags: ["anthro"] },
  26758. {
  26759. front: {
  26760. height: math.unit(1.73, "meters"),
  26761. weight: math.unit(240, "lb"),
  26762. name: "Front",
  26763. image: {
  26764. source: "./media/characters/izue-two-mothers/front.svg",
  26765. extra: 469 / 437,
  26766. bottom: 1.24 / 470.6
  26767. }
  26768. },
  26769. },
  26770. [
  26771. {
  26772. name: "Shrunken",
  26773. height: math.unit(7.86, "cm")
  26774. },
  26775. {
  26776. name: "Human Scale",
  26777. height: math.unit(1.73, "meters")
  26778. },
  26779. {
  26780. name: "Wolxi Scale",
  26781. height: math.unit(38, "meters"),
  26782. default: true
  26783. },
  26784. ]
  26785. ))
  26786. characterMakers.push(() => makeCharacter(
  26787. { name: "Teeku Love-Shack", species: ["wolxi"], tags: ["anthro"] },
  26788. {
  26789. front: {
  26790. height: math.unit(1.55, "meters"),
  26791. weight: math.unit(120, "lb"),
  26792. name: "Front",
  26793. image: {
  26794. source: "./media/characters/teeku-love-shack/front.svg",
  26795. extra: 387 / 362,
  26796. bottom: 1.51 / 388
  26797. }
  26798. },
  26799. },
  26800. [
  26801. {
  26802. name: "Shrunken",
  26803. height: math.unit(7, "cm")
  26804. },
  26805. {
  26806. name: "Human Scale",
  26807. height: math.unit(1.55, "meters")
  26808. },
  26809. {
  26810. name: "Wolxi Scale",
  26811. height: math.unit(34.1, "meters"),
  26812. default: true
  26813. },
  26814. ]
  26815. ))
  26816. characterMakers.push(() => makeCharacter(
  26817. { name: "Dejma the Red", species: ["wolxi"], tags: ["anthro"] },
  26818. {
  26819. front: {
  26820. height: math.unit(1.83, "meters"),
  26821. weight: math.unit(135, "lb"),
  26822. name: "Front",
  26823. image: {
  26824. source: "./media/characters/dejma-the-red/front.svg",
  26825. extra: 480 / 458,
  26826. bottom: 1.8 / 482
  26827. }
  26828. },
  26829. },
  26830. [
  26831. {
  26832. name: "Shrunken",
  26833. height: math.unit(8.3, "cm")
  26834. },
  26835. {
  26836. name: "Human Scale",
  26837. height: math.unit(1.83, "meters")
  26838. },
  26839. {
  26840. name: "Wolxi Scale",
  26841. height: math.unit(40, "meters"),
  26842. default: true
  26843. },
  26844. ]
  26845. ))
  26846. characterMakers.push(() => makeCharacter(
  26847. { name: "Aki", species: ["deer"], tags: ["anthro"] },
  26848. {
  26849. front: {
  26850. height: math.unit(1.78, "meters"),
  26851. weight: math.unit(65, "kg"),
  26852. name: "Front",
  26853. image: {
  26854. source: "./media/characters/aki/front.svg",
  26855. extra: 452 / 415
  26856. }
  26857. },
  26858. frontNsfw: {
  26859. height: math.unit(1.78, "meters"),
  26860. weight: math.unit(65, "kg"),
  26861. name: "Front (NSFW)",
  26862. image: {
  26863. source: "./media/characters/aki/front-nsfw.svg",
  26864. extra: 452 / 415
  26865. }
  26866. },
  26867. back: {
  26868. height: math.unit(1.78, "meters"),
  26869. weight: math.unit(65, "kg"),
  26870. name: "Back",
  26871. image: {
  26872. source: "./media/characters/aki/back.svg",
  26873. extra: 452 / 415
  26874. }
  26875. },
  26876. rump: {
  26877. height: math.unit(2.05, "feet"),
  26878. name: "Rump",
  26879. image: {
  26880. source: "./media/characters/aki/rump.svg"
  26881. }
  26882. },
  26883. dick: {
  26884. height: math.unit(0.95, "feet"),
  26885. name: "Dick",
  26886. image: {
  26887. source: "./media/characters/aki/dick.svg"
  26888. }
  26889. },
  26890. },
  26891. [
  26892. {
  26893. name: "Micro",
  26894. height: math.unit(15, "cm")
  26895. },
  26896. {
  26897. name: "Normal",
  26898. height: math.unit(178, "cm"),
  26899. default: true
  26900. },
  26901. {
  26902. name: "Macro",
  26903. height: math.unit(214, "m")
  26904. },
  26905. {
  26906. name: "Macro+",
  26907. height: math.unit(534, "m")
  26908. },
  26909. ]
  26910. ))
  26911. characterMakers.push(() => makeCharacter(
  26912. { name: "Ari", species: ["catgirl"], tags: ["anthro"] },
  26913. {
  26914. front: {
  26915. height: math.unit(5 + 5 / 12, "feet"),
  26916. weight: math.unit(120, "lb"),
  26917. name: "Front",
  26918. image: {
  26919. source: "./media/characters/ari/front.svg",
  26920. extra: 1550/1471,
  26921. bottom: 39/1589
  26922. }
  26923. },
  26924. },
  26925. [
  26926. {
  26927. name: "Normal",
  26928. height: math.unit(5 + 5 / 12, "feet")
  26929. },
  26930. {
  26931. name: "Macro",
  26932. height: math.unit(100, "feet"),
  26933. default: true
  26934. },
  26935. {
  26936. name: "Megamacro",
  26937. height: math.unit(100, "miles")
  26938. },
  26939. {
  26940. name: "Gigamacro",
  26941. height: math.unit(80000, "miles")
  26942. },
  26943. ]
  26944. ))
  26945. characterMakers.push(() => makeCharacter(
  26946. { name: "Bolt", species: ["keldeo"], tags: ["feral"] },
  26947. {
  26948. side: {
  26949. height: math.unit(9, "feet"),
  26950. weight: math.unit(400, "kg"),
  26951. name: "Side",
  26952. image: {
  26953. source: "./media/characters/bolt/side.svg",
  26954. extra: 1126 / 896,
  26955. bottom: 60 / 1187.3,
  26956. }
  26957. },
  26958. },
  26959. [
  26960. {
  26961. name: "Micro",
  26962. height: math.unit(5, "inches")
  26963. },
  26964. {
  26965. name: "Normal",
  26966. height: math.unit(9, "feet"),
  26967. default: true
  26968. },
  26969. {
  26970. name: "Macro",
  26971. height: math.unit(700, "feet")
  26972. },
  26973. {
  26974. name: "Max Size",
  26975. height: math.unit(1.52e22, "yottameters")
  26976. },
  26977. ]
  26978. ))
  26979. characterMakers.push(() => makeCharacter(
  26980. { name: "Draekon Sylviar", species: ["dra'gal"], tags: ["anthro"] },
  26981. {
  26982. front: {
  26983. height: math.unit(4.3, "meters"),
  26984. weight: math.unit(3, "tons"),
  26985. name: "Front",
  26986. image: {
  26987. source: "./media/characters/draekon-sylviar/front.svg",
  26988. extra: 2072/1512,
  26989. bottom: 74/2146
  26990. }
  26991. },
  26992. back: {
  26993. height: math.unit(4.3, "meters"),
  26994. weight: math.unit(3, "tons"),
  26995. name: "Back",
  26996. image: {
  26997. source: "./media/characters/draekon-sylviar/back.svg",
  26998. extra: 1639/1483,
  26999. bottom: 41/1680
  27000. }
  27001. },
  27002. feral: {
  27003. height: math.unit(1.15, "meters"),
  27004. weight: math.unit(3, "tons"),
  27005. name: "Feral",
  27006. image: {
  27007. source: "./media/characters/draekon-sylviar/feral.svg",
  27008. extra: 1033/395,
  27009. bottom: 130/1163
  27010. }
  27011. },
  27012. maw: {
  27013. height: math.unit(1.3, "meters"),
  27014. name: "Maw",
  27015. image: {
  27016. source: "./media/characters/draekon-sylviar/maw.svg"
  27017. }
  27018. },
  27019. mawSeparated: {
  27020. height: math.unit(1.53, "meters"),
  27021. name: "Separated Maw",
  27022. image: {
  27023. source: "./media/characters/draekon-sylviar/maw-separated.svg"
  27024. }
  27025. },
  27026. tail: {
  27027. height: math.unit(1.15, "meters"),
  27028. name: "Tail",
  27029. image: {
  27030. source: "./media/characters/draekon-sylviar/tail.svg"
  27031. }
  27032. },
  27033. tailDick: {
  27034. height: math.unit(1.15, "meters"),
  27035. name: "Tail (Dick)",
  27036. image: {
  27037. source: "./media/characters/draekon-sylviar/tail-dick.svg"
  27038. }
  27039. },
  27040. tailDickSeparated: {
  27041. height: math.unit(1.19, "meters"),
  27042. name: "Tail (Separated Dick)",
  27043. image: {
  27044. source: "./media/characters/draekon-sylviar/tail-dick-separated.svg"
  27045. }
  27046. },
  27047. slit: {
  27048. height: math.unit(1, "meters"),
  27049. name: "Slit",
  27050. image: {
  27051. source: "./media/characters/draekon-sylviar/slit.svg"
  27052. }
  27053. },
  27054. dick: {
  27055. height: math.unit(1.15, "meters"),
  27056. name: "Dick",
  27057. image: {
  27058. source: "./media/characters/draekon-sylviar/dick.svg"
  27059. }
  27060. },
  27061. dickSeparated: {
  27062. height: math.unit(1.1, "meters"),
  27063. name: "Separated Dick",
  27064. image: {
  27065. source: "./media/characters/draekon-sylviar/dick-separated.svg"
  27066. }
  27067. },
  27068. sheath: {
  27069. height: math.unit(1.15, "meters"),
  27070. name: "Sheath",
  27071. image: {
  27072. source: "./media/characters/draekon-sylviar/sheath.svg"
  27073. }
  27074. },
  27075. },
  27076. [
  27077. {
  27078. name: "Small",
  27079. height: math.unit(4.53 / 2, "meters"),
  27080. default: true
  27081. },
  27082. {
  27083. name: "Normal",
  27084. height: math.unit(4.53, "meters"),
  27085. default: true
  27086. },
  27087. {
  27088. name: "Large",
  27089. height: math.unit(4.53 * 2, "meters"),
  27090. },
  27091. ]
  27092. ))
  27093. characterMakers.push(() => makeCharacter(
  27094. { name: "Brawler", species: ["german-shepherd"], tags: ["anthro"] },
  27095. {
  27096. front: {
  27097. height: math.unit(6 + 2 / 12, "feet"),
  27098. weight: math.unit(180, "lb"),
  27099. name: "Front",
  27100. image: {
  27101. source: "./media/characters/brawler/front.svg",
  27102. extra: 3301 / 3027,
  27103. bottom: 138 / 3439
  27104. }
  27105. },
  27106. },
  27107. [
  27108. {
  27109. name: "Normal",
  27110. height: math.unit(6 + 2 / 12, "feet"),
  27111. default: true
  27112. },
  27113. ]
  27114. ))
  27115. characterMakers.push(() => makeCharacter(
  27116. { name: "Alex", species: ["bayleef"], tags: ["anthro"] },
  27117. {
  27118. front: {
  27119. height: math.unit(11, "feet"),
  27120. weight: math.unit(1000, "lb"),
  27121. name: "Front",
  27122. image: {
  27123. source: "./media/characters/alex/front.svg",
  27124. bottom: 44.5 / 620
  27125. }
  27126. },
  27127. },
  27128. [
  27129. {
  27130. name: "Micro",
  27131. height: math.unit(5, "inches")
  27132. },
  27133. {
  27134. name: "Normal",
  27135. height: math.unit(11, "feet"),
  27136. default: true
  27137. },
  27138. {
  27139. name: "Macro",
  27140. height: math.unit(9.5e9, "feet")
  27141. },
  27142. {
  27143. name: "Max Size",
  27144. height: math.unit(1.4e283, "yottameters")
  27145. },
  27146. ]
  27147. ))
  27148. characterMakers.push(() => makeCharacter(
  27149. { name: "Zenari", species: ["zenari"], tags: ["anthro"] },
  27150. {
  27151. female: {
  27152. height: math.unit(29.9, "m"),
  27153. weight: math.unit(Math.pow((29.9 / 2), 3) * 80, "kg"),
  27154. name: "Female",
  27155. image: {
  27156. source: "./media/characters/zenari/female.svg",
  27157. extra: 3281.6 / 3217,
  27158. bottom: 72.2 / 3353
  27159. }
  27160. },
  27161. male: {
  27162. height: math.unit(27.7, "m"),
  27163. weight: math.unit(Math.pow((27.7 / 2), 3) * 80, "kg"),
  27164. name: "Male",
  27165. image: {
  27166. source: "./media/characters/zenari/male.svg",
  27167. extra: 3008 / 2991,
  27168. bottom: 54.6 / 3069
  27169. }
  27170. },
  27171. },
  27172. [
  27173. {
  27174. name: "Macro",
  27175. height: math.unit(29.7, "meters"),
  27176. default: true
  27177. },
  27178. ]
  27179. ))
  27180. characterMakers.push(() => makeCharacter(
  27181. { name: "Mactarian", species: ["mactarian"], tags: ["anthro"] },
  27182. {
  27183. female: {
  27184. height: math.unit(23.8, "m"),
  27185. weight: math.unit(Math.pow((23.8 / 2), 3) * 80, "kg"),
  27186. name: "Female",
  27187. image: {
  27188. source: "./media/characters/mactarian/female.svg",
  27189. extra: 2662 / 2569,
  27190. bottom: 73 / 2736
  27191. }
  27192. },
  27193. male: {
  27194. height: math.unit(23.8, "m"),
  27195. weight: math.unit(Math.pow((23.8 / 2), 3) * 80, "kg"),
  27196. name: "Male",
  27197. image: {
  27198. source: "./media/characters/mactarian/male.svg",
  27199. extra: 2673 / 2600,
  27200. bottom: 76 / 2750
  27201. }
  27202. },
  27203. },
  27204. [
  27205. {
  27206. name: "Macro",
  27207. height: math.unit(23.8, "meters"),
  27208. default: true
  27209. },
  27210. ]
  27211. ))
  27212. characterMakers.push(() => makeCharacter(
  27213. { name: "Umok", species: ["umok"], tags: ["anthro"] },
  27214. {
  27215. female: {
  27216. height: math.unit(19.3, "m"),
  27217. weight: math.unit(Math.pow((19.3 / 2), 3) * 60, "kg"),
  27218. name: "Female",
  27219. image: {
  27220. source: "./media/characters/umok/female.svg",
  27221. extra: 2186 / 2078,
  27222. bottom: 87 / 2277
  27223. }
  27224. },
  27225. male: {
  27226. height: math.unit(19.5, "m"),
  27227. weight: math.unit(Math.pow((19.5 / 2), 3) * 60, "kg"),
  27228. name: "Male",
  27229. image: {
  27230. source: "./media/characters/umok/male.svg",
  27231. extra: 2233 / 2140,
  27232. bottom: 24.4 / 2258
  27233. }
  27234. },
  27235. },
  27236. [
  27237. {
  27238. name: "Macro",
  27239. height: math.unit(19.3, "meters"),
  27240. default: true
  27241. },
  27242. ]
  27243. ))
  27244. characterMakers.push(() => makeCharacter(
  27245. { name: "Joraxian", species: ["joraxian"], tags: ["anthro"] },
  27246. {
  27247. female: {
  27248. height: math.unit(26.15, "m"),
  27249. weight: math.unit(Math.pow((26.15 / 2), 3) * 85, "kg"),
  27250. name: "Female",
  27251. image: {
  27252. source: "./media/characters/joraxian/female.svg",
  27253. extra: 2912 / 2824,
  27254. bottom: 36 / 2956
  27255. }
  27256. },
  27257. male: {
  27258. height: math.unit(25.4, "m"),
  27259. weight: math.unit(Math.pow((25.4 / 2), 3) * 85, "kg"),
  27260. name: "Male",
  27261. image: {
  27262. source: "./media/characters/joraxian/male.svg",
  27263. extra: 2877 / 2721,
  27264. bottom: 82 / 2967
  27265. }
  27266. },
  27267. },
  27268. [
  27269. {
  27270. name: "Macro",
  27271. height: math.unit(26.15, "meters"),
  27272. default: true
  27273. },
  27274. ]
  27275. ))
  27276. characterMakers.push(() => makeCharacter(
  27277. { name: "Sthara", species: ["sthara"], tags: ["anthro"] },
  27278. {
  27279. female: {
  27280. height: math.unit(21.6, "m"),
  27281. weight: math.unit(Math.pow((21.6 / 2), 3) * 80, "kg"),
  27282. name: "Female",
  27283. image: {
  27284. source: "./media/characters/sthara/female.svg",
  27285. extra: 2516 / 2347,
  27286. bottom: 21.5 / 2537
  27287. }
  27288. },
  27289. male: {
  27290. height: math.unit(24, "m"),
  27291. weight: math.unit(Math.pow((24 / 2), 3) * 80, "kg"),
  27292. name: "Male",
  27293. image: {
  27294. source: "./media/characters/sthara/male.svg",
  27295. extra: 2732 / 2607,
  27296. bottom: 23 / 2732
  27297. }
  27298. },
  27299. },
  27300. [
  27301. {
  27302. name: "Macro",
  27303. height: math.unit(21.6, "meters"),
  27304. default: true
  27305. },
  27306. ]
  27307. ))
  27308. characterMakers.push(() => makeCharacter(
  27309. { name: "Luka Bryzant", species: ["german-shepherd"], tags: ["anthro"] },
  27310. {
  27311. front: {
  27312. height: math.unit(6 + 4 / 12, "feet"),
  27313. weight: math.unit(175, "lb"),
  27314. name: "Front",
  27315. image: {
  27316. source: "./media/characters/luka-bryzant/front.svg",
  27317. extra: 311 / 289,
  27318. bottom: 4 / 315
  27319. }
  27320. },
  27321. back: {
  27322. height: math.unit(6 + 4 / 12, "feet"),
  27323. weight: math.unit(175, "lb"),
  27324. name: "Back",
  27325. image: {
  27326. source: "./media/characters/luka-bryzant/back.svg",
  27327. extra: 311 / 289,
  27328. bottom: 3.8 / 313.7
  27329. }
  27330. },
  27331. },
  27332. [
  27333. {
  27334. name: "Micro",
  27335. height: math.unit(10, "inches")
  27336. },
  27337. {
  27338. name: "Normal",
  27339. height: math.unit(6 + 4 / 12, "feet"),
  27340. default: true
  27341. },
  27342. {
  27343. name: "Large",
  27344. height: math.unit(12, "feet")
  27345. },
  27346. ]
  27347. ))
  27348. characterMakers.push(() => makeCharacter(
  27349. { name: "Aman Aquila", species: ["husky", "german-shepherd"], tags: ["anthro"] },
  27350. {
  27351. front: {
  27352. height: math.unit(5 + 7 / 12, "feet"),
  27353. weight: math.unit(185, "lb"),
  27354. name: "Front",
  27355. image: {
  27356. source: "./media/characters/aman-aquila/front.svg",
  27357. extra: 1013 / 976,
  27358. bottom: 45.6 / 1057
  27359. }
  27360. },
  27361. side: {
  27362. height: math.unit(5 + 7 / 12, "feet"),
  27363. weight: math.unit(185, "lb"),
  27364. name: "Side",
  27365. image: {
  27366. source: "./media/characters/aman-aquila/side.svg",
  27367. extra: 1054 / 1011,
  27368. bottom: 15 / 1070
  27369. }
  27370. },
  27371. back: {
  27372. height: math.unit(5 + 7 / 12, "feet"),
  27373. weight: math.unit(185, "lb"),
  27374. name: "Back",
  27375. image: {
  27376. source: "./media/characters/aman-aquila/back.svg",
  27377. extra: 1026 / 970,
  27378. bottom: 12 / 1039
  27379. }
  27380. },
  27381. head: {
  27382. height: math.unit(1.211, "feet"),
  27383. name: "Head",
  27384. image: {
  27385. source: "./media/characters/aman-aquila/head.svg",
  27386. }
  27387. },
  27388. },
  27389. [
  27390. {
  27391. name: "Minimicro",
  27392. height: math.unit(0.057, "inches")
  27393. },
  27394. {
  27395. name: "Micro",
  27396. height: math.unit(7, "inches")
  27397. },
  27398. {
  27399. name: "Mini",
  27400. height: math.unit(3 + 7 / 12, "feet")
  27401. },
  27402. {
  27403. name: "Normal",
  27404. height: math.unit(5 + 7 / 12, "feet"),
  27405. default: true
  27406. },
  27407. {
  27408. name: "Macro",
  27409. height: math.unit(157 + 7 / 12, "feet")
  27410. },
  27411. {
  27412. name: "Megamacro",
  27413. height: math.unit(1557 + 7 / 12, "feet")
  27414. },
  27415. {
  27416. name: "Gigamacro",
  27417. height: math.unit(15557 + 7 / 12, "feet")
  27418. },
  27419. ]
  27420. ))
  27421. characterMakers.push(() => makeCharacter(
  27422. { name: "Hiphae", species: ["mouse"], tags: ["anthro"] },
  27423. {
  27424. front: {
  27425. height: math.unit(3 + 2 / 12, "inches"),
  27426. weight: math.unit(0.3, "ounces"),
  27427. name: "Front",
  27428. image: {
  27429. source: "./media/characters/hiphae/front.svg",
  27430. extra: 1931 / 1683,
  27431. bottom: 24 / 1955
  27432. }
  27433. },
  27434. },
  27435. [
  27436. {
  27437. name: "Normal",
  27438. height: math.unit(3 + 1 / 2, "inches"),
  27439. default: true
  27440. },
  27441. ]
  27442. ))
  27443. characterMakers.push(() => makeCharacter(
  27444. { name: "Nicky", species: ["shark"], tags: ["anthro"] },
  27445. {
  27446. front: {
  27447. height: math.unit(5 + 10 / 12, "feet"),
  27448. weight: math.unit(165, "lb"),
  27449. name: "Front",
  27450. image: {
  27451. source: "./media/characters/nicky/front.svg",
  27452. extra: 3144 / 2886,
  27453. bottom: 45.6 / 3192
  27454. }
  27455. },
  27456. back: {
  27457. height: math.unit(5 + 10 / 12, "feet"),
  27458. weight: math.unit(165, "lb"),
  27459. name: "Back",
  27460. image: {
  27461. source: "./media/characters/nicky/back.svg",
  27462. extra: 3055 / 2804,
  27463. bottom: 28.4 / 3087
  27464. }
  27465. },
  27466. frontclothed: {
  27467. height: math.unit(5 + 10 / 12, "feet"),
  27468. weight: math.unit(165, "lb"),
  27469. name: "Front-clothed",
  27470. image: {
  27471. source: "./media/characters/nicky/front-clothed.svg",
  27472. extra: 3184.9 / 2926.9,
  27473. bottom: 86.5 / 3239.9
  27474. }
  27475. },
  27476. foot: {
  27477. height: math.unit(1.16, "feet"),
  27478. name: "Foot",
  27479. image: {
  27480. source: "./media/characters/nicky/foot.svg"
  27481. }
  27482. },
  27483. feet: {
  27484. height: math.unit(1.34, "feet"),
  27485. name: "Feet",
  27486. image: {
  27487. source: "./media/characters/nicky/feet.svg"
  27488. }
  27489. },
  27490. maw: {
  27491. height: math.unit(0.9, "feet"),
  27492. name: "Maw",
  27493. image: {
  27494. source: "./media/characters/nicky/maw.svg"
  27495. }
  27496. },
  27497. },
  27498. [
  27499. {
  27500. name: "Normal",
  27501. height: math.unit(5 + 10 / 12, "feet"),
  27502. default: true
  27503. },
  27504. {
  27505. name: "Macro",
  27506. height: math.unit(60, "feet")
  27507. },
  27508. {
  27509. name: "Megamacro",
  27510. height: math.unit(1, "mile")
  27511. },
  27512. ]
  27513. ))
  27514. characterMakers.push(() => makeCharacter(
  27515. { name: "Blair", species: ["seal"], tags: ["taur"] },
  27516. {
  27517. side: {
  27518. height: math.unit(10, "feet"),
  27519. weight: math.unit(600, "lb"),
  27520. name: "Side",
  27521. image: {
  27522. source: "./media/characters/blair/side.svg",
  27523. bottom: 16.6 / 475,
  27524. extra: 458 / 431
  27525. }
  27526. },
  27527. },
  27528. [
  27529. {
  27530. name: "Micro",
  27531. height: math.unit(8, "inches")
  27532. },
  27533. {
  27534. name: "Normal",
  27535. height: math.unit(10, "feet"),
  27536. default: true
  27537. },
  27538. {
  27539. name: "Macro",
  27540. height: math.unit(180, "feet")
  27541. },
  27542. ]
  27543. ))
  27544. characterMakers.push(() => makeCharacter(
  27545. { name: "Fisher", species: ["dog", "fish"], tags: ["anthro"] },
  27546. {
  27547. front: {
  27548. height: math.unit(5 + 4 / 12, "feet"),
  27549. weight: math.unit(125, "lb"),
  27550. name: "Front",
  27551. image: {
  27552. source: "./media/characters/fisher/front.svg",
  27553. extra: 444 / 390,
  27554. bottom: 2 / 444.8
  27555. }
  27556. },
  27557. },
  27558. [
  27559. {
  27560. name: "Micro",
  27561. height: math.unit(4, "inches")
  27562. },
  27563. {
  27564. name: "Normal",
  27565. height: math.unit(5 + 4 / 12, "feet"),
  27566. default: true
  27567. },
  27568. {
  27569. name: "Macro",
  27570. height: math.unit(100, "feet")
  27571. },
  27572. ]
  27573. ))
  27574. characterMakers.push(() => makeCharacter(
  27575. { name: "Gliss", species: ["sergal"], tags: ["anthro"] },
  27576. {
  27577. front: {
  27578. height: math.unit(6.71, "feet"),
  27579. weight: math.unit(200, "lb"),
  27580. preyCapacity: math.unit(1000000, "people"),
  27581. name: "Front",
  27582. image: {
  27583. source: "./media/characters/gliss/front.svg",
  27584. extra: 2347 / 2231,
  27585. bottom: 113 / 2462
  27586. }
  27587. },
  27588. hammerspaceSize: {
  27589. height: math.unit(6.71 * 717, "feet"),
  27590. weight: math.unit(200, "lb"),
  27591. preyCapacity: math.unit(1000000, "people"),
  27592. name: "Hammerspace Size",
  27593. image: {
  27594. source: "./media/characters/gliss/front.svg",
  27595. extra: 2347 / 2231,
  27596. bottom: 113 / 2462
  27597. }
  27598. },
  27599. },
  27600. [
  27601. {
  27602. name: "Normal",
  27603. height: math.unit(6.71, "feet"),
  27604. default: true
  27605. },
  27606. ]
  27607. ))
  27608. characterMakers.push(() => makeCharacter(
  27609. { name: "Dune Anderson", species: ["wolf"], tags: ["feral"] },
  27610. {
  27611. side: {
  27612. height: math.unit(1.44, "m"),
  27613. weight: math.unit(80, "kg"),
  27614. name: "Side",
  27615. image: {
  27616. source: "./media/characters/dune-anderson/side.svg",
  27617. bottom: 49 / 1426
  27618. }
  27619. },
  27620. },
  27621. [
  27622. {
  27623. name: "Wolf-sized",
  27624. height: math.unit(1.44, "meters")
  27625. },
  27626. {
  27627. name: "Normal",
  27628. height: math.unit(5.05, "meters"),
  27629. default: true
  27630. },
  27631. {
  27632. name: "Big",
  27633. height: math.unit(14.4, "meters")
  27634. },
  27635. {
  27636. name: "Huge",
  27637. height: math.unit(144, "meters")
  27638. },
  27639. ]
  27640. ))
  27641. characterMakers.push(() => makeCharacter(
  27642. { name: "Hind", species: ["protogen"], tags: ["anthro"] },
  27643. {
  27644. front: {
  27645. height: math.unit(6, "feet"),
  27646. weight: math.unit(220, "lb"),
  27647. name: "Front",
  27648. image: {
  27649. source: "./media/characters/hind/front.svg",
  27650. extra: 1912/1787,
  27651. bottom: 52/1964
  27652. }
  27653. },
  27654. back: {
  27655. height: math.unit(6, "feet"),
  27656. weight: math.unit(220, "lb"),
  27657. name: "Back",
  27658. image: {
  27659. source: "./media/characters/hind/back.svg",
  27660. extra: 1901/1794,
  27661. bottom: 26/1927
  27662. }
  27663. },
  27664. },
  27665. [
  27666. {
  27667. name: "Normal",
  27668. height: math.unit(6, "feet"),
  27669. default: true
  27670. },
  27671. ]
  27672. ))
  27673. characterMakers.push(() => makeCharacter(
  27674. { name: "Tharquench Sizestealer", species: ["skaven"], tags: ["anthro"] },
  27675. {
  27676. front: {
  27677. height: math.unit(2.1, "meters"),
  27678. weight: math.unit(150, "lb"),
  27679. name: "Front",
  27680. image: {
  27681. source: "./media/characters/tharquench-sizestealer/front.svg",
  27682. extra: 1605/1470,
  27683. bottom: 36/1641
  27684. }
  27685. },
  27686. frontAlt: {
  27687. height: math.unit(2.1, "meters"),
  27688. weight: math.unit(150, "lb"),
  27689. name: "Front (Alt)",
  27690. image: {
  27691. source: "./media/characters/tharquench-sizestealer/front-alt.svg",
  27692. extra: 2318 / 2063,
  27693. bottom: 93.4 / 2410
  27694. }
  27695. },
  27696. },
  27697. [
  27698. {
  27699. name: "Nano",
  27700. height: math.unit(1, "mm")
  27701. },
  27702. {
  27703. name: "Micro",
  27704. height: math.unit(1, "cm")
  27705. },
  27706. {
  27707. name: "Normal",
  27708. height: math.unit(2.1, "meters"),
  27709. default: true
  27710. },
  27711. ]
  27712. ))
  27713. characterMakers.push(() => makeCharacter(
  27714. { name: "Solex Draconov", species: ["dragon", "kitsune"], tags: ["anthro"] },
  27715. {
  27716. front: {
  27717. height: math.unit(7 + 5 / 12, "feet"),
  27718. weight: math.unit(357, "lb"),
  27719. name: "Front",
  27720. image: {
  27721. source: "./media/characters/solex-draconov/front.svg",
  27722. extra: 1993 / 1865,
  27723. bottom: 117 / 2111
  27724. }
  27725. },
  27726. },
  27727. [
  27728. {
  27729. name: "Natural Height",
  27730. height: math.unit(7 + 5 / 12, "feet"),
  27731. default: true
  27732. },
  27733. {
  27734. name: "Macro",
  27735. height: math.unit(350, "feet")
  27736. },
  27737. {
  27738. name: "Macro+",
  27739. height: math.unit(1000, "feet")
  27740. },
  27741. {
  27742. name: "Megamacro",
  27743. height: math.unit(20, "km")
  27744. },
  27745. {
  27746. name: "Megamacro+",
  27747. height: math.unit(1000, "km")
  27748. },
  27749. {
  27750. name: "Gigamacro",
  27751. height: math.unit(2.5, "Gm")
  27752. },
  27753. {
  27754. name: "Teramacro",
  27755. height: math.unit(15, "Tm")
  27756. },
  27757. {
  27758. name: "Galactic",
  27759. height: math.unit(30, "Zm")
  27760. },
  27761. {
  27762. name: "Universal",
  27763. height: math.unit(21000, "Ym")
  27764. },
  27765. {
  27766. name: "Omniversal",
  27767. height: math.unit(9.861e50, "Ym")
  27768. },
  27769. {
  27770. name: "Existential",
  27771. height: math.unit(1e300, "meters")
  27772. },
  27773. ]
  27774. ))
  27775. characterMakers.push(() => makeCharacter(
  27776. { name: "Mandarax", species: ["dragon"], tags: ["feral"] },
  27777. {
  27778. side: {
  27779. height: math.unit(25, "feet"),
  27780. weight: math.unit(90000, "lb"),
  27781. name: "Side",
  27782. image: {
  27783. source: "./media/characters/mandarax/side.svg",
  27784. extra: 614 / 332,
  27785. bottom: 55 / 630
  27786. }
  27787. },
  27788. lounging: {
  27789. height: math.unit(15.4, "feet"),
  27790. weight: math.unit(90000, "lb"),
  27791. name: "Lounging",
  27792. image: {
  27793. source: "./media/characters/mandarax/lounging.svg",
  27794. extra: 817/609,
  27795. bottom: 685/1502
  27796. }
  27797. },
  27798. head: {
  27799. height: math.unit(11.4, "feet"),
  27800. name: "Head",
  27801. image: {
  27802. source: "./media/characters/mandarax/head.svg"
  27803. }
  27804. },
  27805. belly: {
  27806. height: math.unit(33, "feet"),
  27807. name: "Belly",
  27808. preyCapacity: math.unit(500, "people"),
  27809. image: {
  27810. source: "./media/characters/mandarax/belly.svg"
  27811. }
  27812. },
  27813. dick: {
  27814. height: math.unit(8.46, "feet"),
  27815. name: "Dick",
  27816. image: {
  27817. source: "./media/characters/mandarax/dick.svg"
  27818. }
  27819. },
  27820. top: {
  27821. height: math.unit(28, "meters"),
  27822. name: "Top",
  27823. image: {
  27824. source: "./media/characters/mandarax/top.svg"
  27825. }
  27826. },
  27827. },
  27828. [
  27829. {
  27830. name: "Normal",
  27831. height: math.unit(25, "feet"),
  27832. default: true
  27833. },
  27834. ]
  27835. ))
  27836. characterMakers.push(() => makeCharacter(
  27837. { name: "Pixil", species: ["sylveon"], tags: ["anthro"] },
  27838. {
  27839. front: {
  27840. height: math.unit(5, "feet"),
  27841. weight: math.unit(90, "lb"),
  27842. name: "Front",
  27843. image: {
  27844. source: "./media/characters/pixil/front.svg",
  27845. extra: 2000 / 1618,
  27846. bottom: 12.3 / 2011
  27847. }
  27848. },
  27849. },
  27850. [
  27851. {
  27852. name: "Normal",
  27853. height: math.unit(5, "feet"),
  27854. default: true
  27855. },
  27856. {
  27857. name: "Megamacro",
  27858. height: math.unit(10, "miles"),
  27859. },
  27860. ]
  27861. ))
  27862. characterMakers.push(() => makeCharacter(
  27863. { name: "Angel", species: ["catgirl"], tags: ["anthro"] },
  27864. {
  27865. front: {
  27866. height: math.unit(7 + 2 / 12, "feet"),
  27867. weight: math.unit(200, "lb"),
  27868. name: "Front",
  27869. image: {
  27870. source: "./media/characters/angel/front.svg",
  27871. extra: 1946/1840,
  27872. bottom: 30/1976
  27873. }
  27874. },
  27875. },
  27876. [
  27877. {
  27878. name: "Normal",
  27879. height: math.unit(7 + 2 / 12, "feet"),
  27880. default: true
  27881. },
  27882. {
  27883. name: "Macro",
  27884. height: math.unit(1000, "feet")
  27885. },
  27886. {
  27887. name: "Megamacro",
  27888. height: math.unit(2, "miles")
  27889. },
  27890. {
  27891. name: "Gigamacro",
  27892. height: math.unit(20, "earths")
  27893. },
  27894. ]
  27895. ))
  27896. characterMakers.push(() => makeCharacter(
  27897. { name: "Mekana", species: ["cowgirl"], tags: ["anthro"] },
  27898. {
  27899. front: {
  27900. height: math.unit(5, "feet"),
  27901. weight: math.unit(180, "lb"),
  27902. name: "Front",
  27903. image: {
  27904. source: "./media/characters/mekana/front.svg",
  27905. extra: 1671 / 1605,
  27906. bottom: 3.5 / 1691
  27907. }
  27908. },
  27909. side: {
  27910. height: math.unit(5, "feet"),
  27911. weight: math.unit(180, "lb"),
  27912. name: "Side",
  27913. image: {
  27914. source: "./media/characters/mekana/side.svg",
  27915. extra: 1671 / 1605,
  27916. bottom: 3.5 / 1691
  27917. }
  27918. },
  27919. back: {
  27920. height: math.unit(5, "feet"),
  27921. weight: math.unit(180, "lb"),
  27922. name: "Back",
  27923. image: {
  27924. source: "./media/characters/mekana/back.svg",
  27925. extra: 1671 / 1605,
  27926. bottom: 3.5 / 1691
  27927. }
  27928. },
  27929. },
  27930. [
  27931. {
  27932. name: "Normal",
  27933. height: math.unit(5, "feet"),
  27934. default: true
  27935. },
  27936. ]
  27937. ))
  27938. characterMakers.push(() => makeCharacter(
  27939. { name: "Pixie", species: ["pony"], tags: ["anthro"] },
  27940. {
  27941. front: {
  27942. height: math.unit(4 + 6 / 12, "feet"),
  27943. weight: math.unit(80, "lb"),
  27944. name: "Front",
  27945. image: {
  27946. source: "./media/characters/pixie/front.svg",
  27947. extra: 1924 / 1825,
  27948. bottom: 22.4 / 1946
  27949. }
  27950. },
  27951. },
  27952. [
  27953. {
  27954. name: "Normal",
  27955. height: math.unit(4 + 6 / 12, "feet"),
  27956. default: true
  27957. },
  27958. {
  27959. name: "Macro",
  27960. height: math.unit(40, "feet")
  27961. },
  27962. ]
  27963. ))
  27964. characterMakers.push(() => makeCharacter(
  27965. { name: "The Lascivious", species: ["wolxi", "deity"], tags: ["anthro"] },
  27966. {
  27967. front: {
  27968. height: math.unit(2.1, "meters"),
  27969. weight: math.unit(200, "lb"),
  27970. name: "Front",
  27971. image: {
  27972. source: "./media/characters/the-lascivious/front.svg",
  27973. extra: 1 / 0.893,
  27974. bottom: 3.5 / 573.7
  27975. }
  27976. },
  27977. },
  27978. [
  27979. {
  27980. name: "Human Scale",
  27981. height: math.unit(2.1, "meters")
  27982. },
  27983. {
  27984. name: "Wolxi Scale",
  27985. height: math.unit(46.2, "m"),
  27986. default: true
  27987. },
  27988. {
  27989. name: "Boinker of Buildings",
  27990. height: math.unit(10, "km")
  27991. },
  27992. {
  27993. name: "Shagger of Skyscrapers",
  27994. height: math.unit(40, "km")
  27995. },
  27996. {
  27997. name: "Banger of Boroughs",
  27998. height: math.unit(4000, "km")
  27999. },
  28000. {
  28001. name: "Screwer of States",
  28002. height: math.unit(100000, "km")
  28003. },
  28004. {
  28005. name: "Pounder of Planets",
  28006. height: math.unit(2000000, "km")
  28007. },
  28008. ]
  28009. ))
  28010. characterMakers.push(() => makeCharacter(
  28011. { name: "AJ", species: ["wolf"], tags: ["anthro"] },
  28012. {
  28013. front: {
  28014. height: math.unit(6, "feet"),
  28015. weight: math.unit(150, "lb"),
  28016. name: "Front",
  28017. image: {
  28018. source: "./media/characters/aj/front.svg",
  28019. extra: 2039 / 1562,
  28020. bottom: 40 / 2079
  28021. }
  28022. },
  28023. },
  28024. [
  28025. {
  28026. name: "Normal",
  28027. height: math.unit(11 + 6 / 12, "feet"),
  28028. default: true
  28029. },
  28030. {
  28031. name: "Megamacro",
  28032. height: math.unit(60, "megameters")
  28033. },
  28034. ]
  28035. ))
  28036. characterMakers.push(() => makeCharacter(
  28037. { name: "Koros", species: ["dragon"], tags: ["feral"] },
  28038. {
  28039. side: {
  28040. height: math.unit(31 + 8 / 12, "feet"),
  28041. weight: math.unit(75000, "kg"),
  28042. name: "Side",
  28043. image: {
  28044. source: "./media/characters/koros/side.svg",
  28045. extra: 1442 / 1297,
  28046. bottom: 122.7 / 1562
  28047. }
  28048. },
  28049. dicksKingsCrown: {
  28050. height: math.unit(6, "feet"),
  28051. name: "Dicks (King's Crown)",
  28052. image: {
  28053. source: "./media/characters/koros/dicks-kings-crown.svg"
  28054. }
  28055. },
  28056. dicksTailSet: {
  28057. height: math.unit(3, "feet"),
  28058. name: "Dicks (Tail Set)",
  28059. image: {
  28060. source: "./media/characters/koros/dicks-tail-set.svg"
  28061. }
  28062. },
  28063. dickCumming: {
  28064. height: math.unit(7.98, "feet"),
  28065. name: "Dick (Cumming)",
  28066. image: {
  28067. source: "./media/characters/koros/dick-cumming.svg"
  28068. }
  28069. },
  28070. dicksBack: {
  28071. height: math.unit(5.9, "feet"),
  28072. name: "Dicks (Back)",
  28073. image: {
  28074. source: "./media/characters/koros/dicks-back.svg"
  28075. }
  28076. },
  28077. dicksFront: {
  28078. height: math.unit(3.72, "feet"),
  28079. name: "Dicks (Front)",
  28080. image: {
  28081. source: "./media/characters/koros/dicks-front.svg"
  28082. }
  28083. },
  28084. dicksPeeking: {
  28085. height: math.unit(3.0, "feet"),
  28086. name: "Dicks (Peeking)",
  28087. image: {
  28088. source: "./media/characters/koros/dicks-peeking.svg"
  28089. }
  28090. },
  28091. eye: {
  28092. height: math.unit(1.7, "feet"),
  28093. name: "Eye",
  28094. image: {
  28095. source: "./media/characters/koros/eye.svg"
  28096. }
  28097. },
  28098. headFront: {
  28099. height: math.unit(11.69, "feet"),
  28100. name: "Head (Front)",
  28101. image: {
  28102. source: "./media/characters/koros/head-front.svg"
  28103. }
  28104. },
  28105. headSide: {
  28106. height: math.unit(14, "feet"),
  28107. name: "Head (Side)",
  28108. image: {
  28109. source: "./media/characters/koros/head-side.svg"
  28110. }
  28111. },
  28112. leg: {
  28113. height: math.unit(17, "feet"),
  28114. name: "Leg",
  28115. image: {
  28116. source: "./media/characters/koros/leg.svg"
  28117. }
  28118. },
  28119. mawSide: {
  28120. height: math.unit(12.8, "feet"),
  28121. name: "Maw (Side)",
  28122. image: {
  28123. source: "./media/characters/koros/maw-side.svg"
  28124. }
  28125. },
  28126. mawSpitting: {
  28127. height: math.unit(17, "feet"),
  28128. name: "Maw (Spitting)",
  28129. image: {
  28130. source: "./media/characters/koros/maw-spitting.svg"
  28131. }
  28132. },
  28133. slit: {
  28134. height: math.unit(2.8, "feet"),
  28135. name: "Slit",
  28136. image: {
  28137. source: "./media/characters/koros/slit.svg"
  28138. }
  28139. },
  28140. stomach: {
  28141. height: math.unit(6.8, "feet"),
  28142. preyCapacity: math.unit(20, "people"),
  28143. name: "Stomach",
  28144. image: {
  28145. source: "./media/characters/koros/stomach.svg"
  28146. }
  28147. },
  28148. wingspanBottom: {
  28149. height: math.unit(114, "feet"),
  28150. name: "Wingspan (Bottom)",
  28151. image: {
  28152. source: "./media/characters/koros/wingspan-bottom.svg"
  28153. }
  28154. },
  28155. wingspanTop: {
  28156. height: math.unit(104, "feet"),
  28157. name: "Wingspan (Top)",
  28158. image: {
  28159. source: "./media/characters/koros/wingspan-top.svg"
  28160. }
  28161. },
  28162. },
  28163. [
  28164. {
  28165. name: "Normal",
  28166. height: math.unit(31 + 8 / 12, "feet"),
  28167. default: true
  28168. },
  28169. ]
  28170. ))
  28171. characterMakers.push(() => makeCharacter(
  28172. { name: "Vexx", species: ["skarlan"], tags: ["anthro"] },
  28173. {
  28174. front: {
  28175. height: math.unit(18 + 5 / 12, "feet"),
  28176. weight: math.unit(3750, "kg"),
  28177. name: "Front",
  28178. image: {
  28179. source: "./media/characters/vexx/front.svg",
  28180. extra: 426 / 396,
  28181. bottom: 31.5 / 458
  28182. }
  28183. },
  28184. maw: {
  28185. height: math.unit(6, "feet"),
  28186. name: "Maw",
  28187. image: {
  28188. source: "./media/characters/vexx/maw.svg"
  28189. }
  28190. },
  28191. },
  28192. [
  28193. {
  28194. name: "Normal",
  28195. height: math.unit(18 + 5 / 12, "feet"),
  28196. default: true
  28197. },
  28198. ]
  28199. ))
  28200. characterMakers.push(() => makeCharacter(
  28201. { name: "Baadra", species: ["skarlan"], tags: ["anthro"] },
  28202. {
  28203. front: {
  28204. height: math.unit(17 + 6 / 12, "feet"),
  28205. weight: math.unit(150, "lb"),
  28206. name: "Front",
  28207. image: {
  28208. source: "./media/characters/baadra/front.svg",
  28209. extra: 1694/1553,
  28210. bottom: 179/1873
  28211. }
  28212. },
  28213. frontAlt: {
  28214. height: math.unit(17 + 6 / 12, "feet"),
  28215. weight: math.unit(150, "lb"),
  28216. name: "Front (Alt)",
  28217. image: {
  28218. source: "./media/characters/baadra/front-alt.svg",
  28219. extra: 3137 / 2890,
  28220. bottom: 168.4 / 3305
  28221. }
  28222. },
  28223. back: {
  28224. height: math.unit(17 + 6 / 12, "feet"),
  28225. weight: math.unit(150, "lb"),
  28226. name: "Back",
  28227. image: {
  28228. source: "./media/characters/baadra/back.svg",
  28229. extra: 3142 / 2890,
  28230. bottom: 220 / 3371
  28231. }
  28232. },
  28233. head: {
  28234. height: math.unit(5.45, "feet"),
  28235. name: "Head",
  28236. image: {
  28237. source: "./media/characters/baadra/head.svg"
  28238. }
  28239. },
  28240. headAngry: {
  28241. height: math.unit(4.95, "feet"),
  28242. name: "Head (Angry)",
  28243. image: {
  28244. source: "./media/characters/baadra/head-angry.svg"
  28245. }
  28246. },
  28247. headOpen: {
  28248. height: math.unit(6, "feet"),
  28249. name: "Head (Open)",
  28250. image: {
  28251. source: "./media/characters/baadra/head-open.svg"
  28252. }
  28253. },
  28254. },
  28255. [
  28256. {
  28257. name: "Normal",
  28258. height: math.unit(17 + 6 / 12, "feet"),
  28259. default: true
  28260. },
  28261. ]
  28262. ))
  28263. characterMakers.push(() => makeCharacter(
  28264. { name: "Juri", species: ["kitsune"], tags: ["anthro"] },
  28265. {
  28266. front: {
  28267. height: math.unit(7 + 3 / 12, "feet"),
  28268. weight: math.unit(180, "lb"),
  28269. name: "Front",
  28270. image: {
  28271. source: "./media/characters/juri/front.svg",
  28272. extra: 1401 / 1237,
  28273. bottom: 18.5 / 1418
  28274. }
  28275. },
  28276. side: {
  28277. height: math.unit(7 + 3 / 12, "feet"),
  28278. weight: math.unit(180, "lb"),
  28279. name: "Side",
  28280. image: {
  28281. source: "./media/characters/juri/side.svg",
  28282. extra: 1424 / 1242,
  28283. bottom: 18.5 / 1447
  28284. }
  28285. },
  28286. sitting: {
  28287. height: math.unit(6, "feet"),
  28288. weight: math.unit(180, "lb"),
  28289. name: "Sitting",
  28290. image: {
  28291. source: "./media/characters/juri/sitting.svg",
  28292. extra: 1270 / 1143,
  28293. bottom: 100 / 1343
  28294. }
  28295. },
  28296. back: {
  28297. height: math.unit(7 + 3 / 12, "feet"),
  28298. weight: math.unit(180, "lb"),
  28299. name: "Back",
  28300. image: {
  28301. source: "./media/characters/juri/back.svg",
  28302. extra: 1377 / 1240,
  28303. bottom: 23.7 / 1405
  28304. }
  28305. },
  28306. maw: {
  28307. height: math.unit(2.8, "feet"),
  28308. name: "Maw",
  28309. image: {
  28310. source: "./media/characters/juri/maw.svg"
  28311. }
  28312. },
  28313. stomach: {
  28314. height: math.unit(0.89, "feet"),
  28315. preyCapacity: math.unit(4, "liters"),
  28316. name: "Stomach",
  28317. image: {
  28318. source: "./media/characters/juri/stomach.svg"
  28319. }
  28320. },
  28321. },
  28322. [
  28323. {
  28324. name: "Normal",
  28325. height: math.unit(7 + 3 / 12, "feet"),
  28326. default: true
  28327. },
  28328. ]
  28329. ))
  28330. characterMakers.push(() => makeCharacter(
  28331. { name: "Maxene Sita", species: ["fox", "kitsune", "hellhound"], tags: ["anthro"] },
  28332. {
  28333. fox: {
  28334. height: math.unit(5 + 6 / 12, "feet"),
  28335. weight: math.unit(140, "lb"),
  28336. name: "Fox",
  28337. image: {
  28338. source: "./media/characters/maxene-sita/fox.svg",
  28339. extra: 146 / 138,
  28340. bottom: 2.1 / 148.19
  28341. }
  28342. },
  28343. foxLaying: {
  28344. height: math.unit(1.70, "feet"),
  28345. weight: math.unit(140, "lb"),
  28346. name: "Fox (Laying)",
  28347. image: {
  28348. source: "./media/characters/maxene-sita/fox-laying.svg",
  28349. extra: 910 / 572,
  28350. bottom: 71 / 981
  28351. }
  28352. },
  28353. kitsune: {
  28354. height: math.unit(10, "feet"),
  28355. weight: math.unit(800, "lb"),
  28356. name: "Kitsune",
  28357. image: {
  28358. source: "./media/characters/maxene-sita/kitsune.svg",
  28359. extra: 185 / 176,
  28360. bottom: 4.7 / 189.9
  28361. }
  28362. },
  28363. hellhound: {
  28364. height: math.unit(10, "feet"),
  28365. weight: math.unit(700, "lb"),
  28366. name: "Hellhound",
  28367. image: {
  28368. source: "./media/characters/maxene-sita/hellhound.svg",
  28369. extra: 1600 / 1545,
  28370. bottom: 81 / 1681
  28371. }
  28372. },
  28373. },
  28374. [
  28375. {
  28376. name: "Normal",
  28377. height: math.unit(5 + 6 / 12, "feet"),
  28378. default: true
  28379. },
  28380. ]
  28381. ))
  28382. characterMakers.push(() => makeCharacter(
  28383. { name: "Maia", species: ["mew"], tags: ["feral"] },
  28384. {
  28385. front: {
  28386. height: math.unit(3 + 4 / 12, "feet"),
  28387. weight: math.unit(70, "lb"),
  28388. name: "Front",
  28389. image: {
  28390. source: "./media/characters/maia/front.svg",
  28391. extra: 227 / 219.5,
  28392. bottom: 40 / 267
  28393. }
  28394. },
  28395. back: {
  28396. height: math.unit(3 + 4 / 12, "feet"),
  28397. weight: math.unit(70, "lb"),
  28398. name: "Back",
  28399. image: {
  28400. source: "./media/characters/maia/back.svg",
  28401. extra: 237 / 225
  28402. }
  28403. },
  28404. },
  28405. [
  28406. {
  28407. name: "Normal",
  28408. height: math.unit(3 + 4 / 12, "feet"),
  28409. default: true
  28410. },
  28411. ]
  28412. ))
  28413. characterMakers.push(() => makeCharacter(
  28414. { name: "Jabaro", species: ["cheetah"], tags: ["anthro"] },
  28415. {
  28416. front: {
  28417. height: math.unit(5 + 10 / 12, "feet"),
  28418. weight: math.unit(197, "lb"),
  28419. name: "Front",
  28420. image: {
  28421. source: "./media/characters/jabaro/front.svg",
  28422. extra: 225 / 216,
  28423. bottom: 5.06 / 230
  28424. }
  28425. },
  28426. back: {
  28427. height: math.unit(5 + 10 / 12, "feet"),
  28428. weight: math.unit(197, "lb"),
  28429. name: "Back",
  28430. image: {
  28431. source: "./media/characters/jabaro/back.svg",
  28432. extra: 225 / 219,
  28433. bottom: 1.9 / 227
  28434. }
  28435. },
  28436. },
  28437. [
  28438. {
  28439. name: "Normal",
  28440. height: math.unit(5 + 10 / 12, "feet"),
  28441. default: true
  28442. },
  28443. ]
  28444. ))
  28445. characterMakers.push(() => makeCharacter(
  28446. { name: "Risa", species: ["corvid"], tags: ["anthro"] },
  28447. {
  28448. front: {
  28449. height: math.unit(5 + 8 / 12, "feet"),
  28450. weight: math.unit(139, "lb"),
  28451. name: "Front",
  28452. image: {
  28453. source: "./media/characters/risa/front.svg",
  28454. extra: 270 / 260,
  28455. bottom: 11.2 / 282
  28456. }
  28457. },
  28458. back: {
  28459. height: math.unit(5 + 8 / 12, "feet"),
  28460. weight: math.unit(139, "lb"),
  28461. name: "Back",
  28462. image: {
  28463. source: "./media/characters/risa/back.svg",
  28464. extra: 264 / 255,
  28465. bottom: 4 / 268
  28466. }
  28467. },
  28468. },
  28469. [
  28470. {
  28471. name: "Normal",
  28472. height: math.unit(5 + 8 / 12, "feet"),
  28473. default: true
  28474. },
  28475. ]
  28476. ))
  28477. characterMakers.push(() => makeCharacter(
  28478. { name: "Weatley", species: ["chimera"], tags: ["anthro"] },
  28479. {
  28480. front: {
  28481. height: math.unit(2 + 11 / 12, "feet"),
  28482. weight: math.unit(30, "lb"),
  28483. name: "Front",
  28484. image: {
  28485. source: "./media/characters/weatley/front.svg",
  28486. bottom: 10.7 / 414,
  28487. extra: 403.5 / 362
  28488. }
  28489. },
  28490. back: {
  28491. height: math.unit(2 + 11 / 12, "feet"),
  28492. weight: math.unit(30, "lb"),
  28493. name: "Back",
  28494. image: {
  28495. source: "./media/characters/weatley/back.svg",
  28496. bottom: 10.7 / 414,
  28497. extra: 403.5 / 362
  28498. }
  28499. },
  28500. },
  28501. [
  28502. {
  28503. name: "Normal",
  28504. height: math.unit(2 + 11 / 12, "feet"),
  28505. default: true
  28506. },
  28507. ]
  28508. ))
  28509. characterMakers.push(() => makeCharacter(
  28510. { name: "Mercury Crescent", species: ["dragon", "kobold"], tags: ["anthro"] },
  28511. {
  28512. front: {
  28513. height: math.unit(5 + 2 / 12, "feet"),
  28514. weight: math.unit(50, "kg"),
  28515. name: "Front",
  28516. image: {
  28517. source: "./media/characters/mercury-crescent/front.svg",
  28518. extra: 1088 / 1033,
  28519. bottom: 18.9 / 1109
  28520. }
  28521. },
  28522. },
  28523. [
  28524. {
  28525. name: "Normal",
  28526. height: math.unit(5 + 2 / 12, "feet"),
  28527. default: true
  28528. },
  28529. ]
  28530. ))
  28531. characterMakers.push(() => makeCharacter(
  28532. { name: "Diamond Jones", species: ["kobold"], tags: ["anthro"] },
  28533. {
  28534. front: {
  28535. height: math.unit(2, "feet"),
  28536. weight: math.unit(15, "kg"),
  28537. name: "Front",
  28538. image: {
  28539. source: "./media/characters/diamond-jones/front.svg",
  28540. extra: 727/723,
  28541. bottom: 46/773
  28542. }
  28543. },
  28544. },
  28545. [
  28546. {
  28547. name: "Normal",
  28548. height: math.unit(2, "feet"),
  28549. default: true
  28550. },
  28551. ]
  28552. ))
  28553. characterMakers.push(() => makeCharacter(
  28554. { name: "Sweet Bit", species: ["gestalt", "kobold"], tags: ["anthro"] },
  28555. {
  28556. front: {
  28557. height: math.unit(3, "feet"),
  28558. weight: math.unit(30, "kg"),
  28559. name: "Front",
  28560. image: {
  28561. source: "./media/characters/sweet-bit/front.svg",
  28562. extra: 675 / 567,
  28563. bottom: 27.7 / 703
  28564. }
  28565. },
  28566. },
  28567. [
  28568. {
  28569. name: "Normal",
  28570. height: math.unit(3, "feet"),
  28571. default: true
  28572. },
  28573. ]
  28574. ))
  28575. characterMakers.push(() => makeCharacter(
  28576. { name: "Umbrazen", species: ["mimic"], tags: ["feral"] },
  28577. {
  28578. side: {
  28579. height: math.unit(9.178, "feet"),
  28580. weight: math.unit(500, "lb"),
  28581. name: "Side",
  28582. image: {
  28583. source: "./media/characters/umbrazen/side.svg",
  28584. extra: 1730 / 1473,
  28585. bottom: 34.6 / 1765
  28586. }
  28587. },
  28588. },
  28589. [
  28590. {
  28591. name: "Normal",
  28592. height: math.unit(9.178, "feet"),
  28593. default: true
  28594. },
  28595. ]
  28596. ))
  28597. characterMakers.push(() => makeCharacter(
  28598. { name: "Arlist", species: ["jackal"], tags: ["anthro"] },
  28599. {
  28600. front: {
  28601. height: math.unit(10, "feet"),
  28602. weight: math.unit(750, "lb"),
  28603. name: "Front",
  28604. image: {
  28605. source: "./media/characters/arlist/front.svg",
  28606. extra: 961 / 778,
  28607. bottom: 6.2 / 986
  28608. }
  28609. },
  28610. },
  28611. [
  28612. {
  28613. name: "Normal",
  28614. height: math.unit(10, "feet"),
  28615. default: true
  28616. },
  28617. ]
  28618. ))
  28619. characterMakers.push(() => makeCharacter(
  28620. { name: "Aradel", species: ["jackalope"], tags: ["anthro"] },
  28621. {
  28622. front: {
  28623. height: math.unit(5 + 1 / 12, "feet"),
  28624. weight: math.unit(110, "lb"),
  28625. name: "Front",
  28626. image: {
  28627. source: "./media/characters/aradel/front.svg",
  28628. extra: 324 / 303,
  28629. bottom: 3.6 / 329.4
  28630. }
  28631. },
  28632. },
  28633. [
  28634. {
  28635. name: "Normal",
  28636. height: math.unit(5 + 1 / 12, "feet"),
  28637. default: true
  28638. },
  28639. ]
  28640. ))
  28641. characterMakers.push(() => makeCharacter(
  28642. { name: "Serryn", species: ["calico-rat"], tags: ["anthro"] },
  28643. {
  28644. dressed: {
  28645. height: math.unit(3 + 8 / 12, "feet"),
  28646. weight: math.unit(50, "lb"),
  28647. name: "Dressed",
  28648. image: {
  28649. source: "./media/characters/serryn/dressed.svg",
  28650. extra: 1792 / 1656,
  28651. bottom: 43.5 / 1840
  28652. }
  28653. },
  28654. nude: {
  28655. height: math.unit(3 + 8 / 12, "feet"),
  28656. weight: math.unit(50, "lb"),
  28657. name: "Nude",
  28658. image: {
  28659. source: "./media/characters/serryn/nude.svg",
  28660. extra: 1792 / 1656,
  28661. bottom: 43.5 / 1840
  28662. }
  28663. },
  28664. },
  28665. [
  28666. {
  28667. name: "Normal",
  28668. height: math.unit(3 + 8 / 12, "feet"),
  28669. default: true
  28670. },
  28671. ]
  28672. ))
  28673. characterMakers.push(() => makeCharacter(
  28674. { name: "Xavier Thyme", "species": ["fox"], tags: ["anthro"] },
  28675. {
  28676. front: {
  28677. height: math.unit(7 + 10 / 12, "feet"),
  28678. weight: math.unit(255, "lb"),
  28679. name: "Front",
  28680. image: {
  28681. source: "./media/characters/xavier-thyme/front.svg",
  28682. extra: 3733 / 3642,
  28683. bottom: 131 / 3869
  28684. }
  28685. },
  28686. frontRaven: {
  28687. height: math.unit(7 + 10 / 12, "feet"),
  28688. weight: math.unit(255, "lb"),
  28689. name: "Front (Raven)",
  28690. image: {
  28691. source: "./media/characters/xavier-thyme/front-raven.svg",
  28692. extra: 4385 / 3642,
  28693. bottom: 131 / 4517
  28694. }
  28695. },
  28696. },
  28697. [
  28698. {
  28699. name: "Normal",
  28700. height: math.unit(7 + 10 / 12, "feet"),
  28701. default: true
  28702. },
  28703. ]
  28704. ))
  28705. characterMakers.push(() => makeCharacter(
  28706. { name: "Kiki", species: ["rabbit", "panda"], tags: ["anthro"] },
  28707. {
  28708. front: {
  28709. height: math.unit(1.6, "m"),
  28710. weight: math.unit(50, "kg"),
  28711. name: "Front",
  28712. image: {
  28713. source: "./media/characters/kiki/front.svg",
  28714. extra: 4682 / 3610,
  28715. bottom: 115 / 4777
  28716. }
  28717. },
  28718. },
  28719. [
  28720. {
  28721. name: "Normal",
  28722. height: math.unit(1.6, "meters"),
  28723. default: true
  28724. },
  28725. ]
  28726. ))
  28727. characterMakers.push(() => makeCharacter(
  28728. { name: "Ryoko", species: ["oni"], tags: ["anthro"] },
  28729. {
  28730. front: {
  28731. height: math.unit(50, "m"),
  28732. weight: math.unit(500, "tonnes"),
  28733. name: "Front",
  28734. image: {
  28735. source: "./media/characters/ryoko/front.svg",
  28736. extra: 4632 / 3926,
  28737. bottom: 193 / 4823
  28738. }
  28739. },
  28740. },
  28741. [
  28742. {
  28743. name: "Normal",
  28744. height: math.unit(50, "meters"),
  28745. default: true
  28746. },
  28747. ]
  28748. ))
  28749. characterMakers.push(() => makeCharacter(
  28750. { name: "Elio", species: ["umbra"], tags: ["anthro"] },
  28751. {
  28752. front: {
  28753. height: math.unit(30, "m"),
  28754. weight: math.unit(22, "tonnes"),
  28755. name: "Front",
  28756. image: {
  28757. source: "./media/characters/elio/front.svg",
  28758. extra: 4582 / 3720,
  28759. bottom: 236 / 4828
  28760. }
  28761. },
  28762. },
  28763. [
  28764. {
  28765. name: "Normal",
  28766. height: math.unit(30, "meters"),
  28767. default: true
  28768. },
  28769. ]
  28770. ))
  28771. characterMakers.push(() => makeCharacter(
  28772. { name: "Azura", species: ["phoenix"], tags: ["anthro"] },
  28773. {
  28774. front: {
  28775. height: math.unit(6 + 3 / 12, "feet"),
  28776. weight: math.unit(120, "lb"),
  28777. name: "Front",
  28778. image: {
  28779. source: "./media/characters/azura/front.svg",
  28780. extra: 1149 / 1135,
  28781. bottom: 45 / 1194
  28782. }
  28783. },
  28784. frontClothed: {
  28785. height: math.unit(6 + 3 / 12, "feet"),
  28786. weight: math.unit(120, "lb"),
  28787. name: "Front (Clothed)",
  28788. image: {
  28789. source: "./media/characters/azura/front-clothed.svg",
  28790. extra: 1149 / 1135,
  28791. bottom: 45 / 1194
  28792. }
  28793. },
  28794. },
  28795. [
  28796. {
  28797. name: "Normal",
  28798. height: math.unit(6 + 3 / 12, "feet"),
  28799. default: true
  28800. },
  28801. {
  28802. name: "Macro",
  28803. height: math.unit(20 + 6 / 12, "feet")
  28804. },
  28805. {
  28806. name: "Megamacro",
  28807. height: math.unit(12, "miles")
  28808. },
  28809. {
  28810. name: "Gigamacro",
  28811. height: math.unit(10000, "miles")
  28812. },
  28813. {
  28814. name: "Teramacro",
  28815. height: math.unit(900000, "miles")
  28816. },
  28817. ]
  28818. ))
  28819. characterMakers.push(() => makeCharacter(
  28820. { name: "Zeus", species: ["pegasus"], tags: ["anthro"] },
  28821. {
  28822. front: {
  28823. height: math.unit(12, "feet"),
  28824. weight: math.unit(1, "ton"),
  28825. capacity: math.unit(660000, "gallons"),
  28826. name: "Front",
  28827. image: {
  28828. source: "./media/characters/zeus/front.svg",
  28829. extra: 5005 / 4717,
  28830. bottom: 363 / 5388
  28831. }
  28832. },
  28833. },
  28834. [
  28835. {
  28836. name: "Normal",
  28837. height: math.unit(12, "feet")
  28838. },
  28839. {
  28840. name: "Preferred Size",
  28841. height: math.unit(0.5, "miles"),
  28842. default: true
  28843. },
  28844. {
  28845. name: "Giga Horse",
  28846. height: math.unit(300, "miles")
  28847. },
  28848. {
  28849. name: "Riding Planets",
  28850. height: math.unit(30, "megameters")
  28851. },
  28852. {
  28853. name: "Cosmic Giant",
  28854. height: math.unit(3, "zettameters")
  28855. },
  28856. {
  28857. name: "Breeding God",
  28858. height: math.unit(9.92e22, "yottameters")
  28859. },
  28860. ]
  28861. ))
  28862. characterMakers.push(() => makeCharacter(
  28863. { name: "Fang", species: ["monster"], tags: ["feral"] },
  28864. {
  28865. side: {
  28866. height: math.unit(9, "feet"),
  28867. weight: math.unit(1500, "kg"),
  28868. name: "Side",
  28869. image: {
  28870. source: "./media/characters/fang/side.svg",
  28871. extra: 924 / 866,
  28872. bottom: 47.5 / 972.3
  28873. }
  28874. },
  28875. },
  28876. [
  28877. {
  28878. name: "Normal",
  28879. height: math.unit(9, "feet"),
  28880. default: true
  28881. },
  28882. {
  28883. name: "Macro",
  28884. height: math.unit(75 + 6 / 12, "feet")
  28885. },
  28886. {
  28887. name: "Teramacro",
  28888. height: math.unit(50000, "miles")
  28889. },
  28890. ]
  28891. ))
  28892. characterMakers.push(() => makeCharacter(
  28893. { name: "Rekhit", species: ["horse"], tags: ["anthro"] },
  28894. {
  28895. front: {
  28896. height: math.unit(10, "feet"),
  28897. weight: math.unit(2, "tons"),
  28898. name: "Front",
  28899. image: {
  28900. source: "./media/characters/rekhit/front.svg",
  28901. extra: 2796 / 2590,
  28902. bottom: 225 / 3022
  28903. }
  28904. },
  28905. },
  28906. [
  28907. {
  28908. name: "Normal",
  28909. height: math.unit(10, "feet"),
  28910. default: true
  28911. },
  28912. {
  28913. name: "Macro",
  28914. height: math.unit(500, "feet")
  28915. },
  28916. ]
  28917. ))
  28918. characterMakers.push(() => makeCharacter(
  28919. { name: "Dahlia Verrick", "species": ["dhole", "springbok"], "tags": ["anthro"] },
  28920. {
  28921. front: {
  28922. height: math.unit(7 + 6.451 / 12, "feet"),
  28923. weight: math.unit(310, "lb"),
  28924. name: "Front",
  28925. image: {
  28926. source: "./media/characters/dahlia-verrick/front.svg",
  28927. extra: 1488 / 1365,
  28928. bottom: 6.2 / 1495
  28929. }
  28930. },
  28931. back: {
  28932. height: math.unit(7 + 6.451 / 12, "feet"),
  28933. weight: math.unit(310, "lb"),
  28934. name: "Back",
  28935. image: {
  28936. source: "./media/characters/dahlia-verrick/back.svg",
  28937. extra: 1472 / 1351,
  28938. bottom: 5.28 / 1477
  28939. }
  28940. },
  28941. frontBusiness: {
  28942. height: math.unit(7 + 6.451 / 12, "feet"),
  28943. weight: math.unit(200, "lb"),
  28944. name: "Front (Business)",
  28945. image: {
  28946. source: "./media/characters/dahlia-verrick/front-business.svg",
  28947. extra: 1478 / 1381,
  28948. bottom: 5.5 / 1484
  28949. }
  28950. },
  28951. frontCasual: {
  28952. height: math.unit(7 + 6.451 / 12, "feet"),
  28953. weight: math.unit(200, "lb"),
  28954. name: "Front (Casual)",
  28955. image: {
  28956. source: "./media/characters/dahlia-verrick/front-casual.svg",
  28957. extra: 1478 / 1381,
  28958. bottom: 5.5 / 1484
  28959. }
  28960. },
  28961. },
  28962. [
  28963. {
  28964. name: "Travel-Sized",
  28965. height: math.unit(7.45, "inches")
  28966. },
  28967. {
  28968. name: "Normal",
  28969. height: math.unit(7 + 6.451 / 12, "feet"),
  28970. default: true
  28971. },
  28972. {
  28973. name: "Hitting the Town",
  28974. height: math.unit(37 + 8 / 12, "feet")
  28975. },
  28976. {
  28977. name: "Stomp in the Suburbs",
  28978. height: math.unit(964 + 9.728 / 12, "feet")
  28979. },
  28980. {
  28981. name: "Sit on the City",
  28982. height: math.unit(61747 + 10.592 / 12, "feet")
  28983. },
  28984. {
  28985. name: "Glomp the Globe",
  28986. height: math.unit(252919327 + 4.832 / 12, "feet")
  28987. },
  28988. ]
  28989. ))
  28990. characterMakers.push(() => makeCharacter(
  28991. { name: "Balina Mahigan", species: ["wolf", "cow"], tags: ["anthro"] },
  28992. {
  28993. front: {
  28994. height: math.unit(6 + 4 / 12, "feet"),
  28995. weight: math.unit(320, "lb"),
  28996. name: "Front",
  28997. image: {
  28998. source: "./media/characters/balina-mahigan/front.svg",
  28999. extra: 447 / 428,
  29000. bottom: 18 / 466
  29001. }
  29002. },
  29003. back: {
  29004. height: math.unit(6 + 4 / 12, "feet"),
  29005. weight: math.unit(320, "lb"),
  29006. name: "Back",
  29007. image: {
  29008. source: "./media/characters/balina-mahigan/back.svg",
  29009. extra: 445 / 428,
  29010. bottom: 4.07 / 448
  29011. }
  29012. },
  29013. arm: {
  29014. height: math.unit(1.88, "feet"),
  29015. name: "Arm",
  29016. image: {
  29017. source: "./media/characters/balina-mahigan/arm.svg"
  29018. }
  29019. },
  29020. backPort: {
  29021. height: math.unit(0.685, "feet"),
  29022. name: "Back Port",
  29023. image: {
  29024. source: "./media/characters/balina-mahigan/back-port.svg"
  29025. }
  29026. },
  29027. hoofpaw: {
  29028. height: math.unit(1.41, "feet"),
  29029. name: "Hoofpaw",
  29030. image: {
  29031. source: "./media/characters/balina-mahigan/hoofpaw.svg"
  29032. }
  29033. },
  29034. leftHandBack: {
  29035. height: math.unit(0.938, "feet"),
  29036. name: "Left Hand (Back)",
  29037. image: {
  29038. source: "./media/characters/balina-mahigan/left-hand-back.svg"
  29039. }
  29040. },
  29041. leftHandFront: {
  29042. height: math.unit(0.938, "feet"),
  29043. name: "Left Hand (Front)",
  29044. image: {
  29045. source: "./media/characters/balina-mahigan/left-hand-front.svg"
  29046. }
  29047. },
  29048. rightHandBack: {
  29049. height: math.unit(0.95, "feet"),
  29050. name: "Right Hand (Back)",
  29051. image: {
  29052. source: "./media/characters/balina-mahigan/right-hand-back.svg"
  29053. }
  29054. },
  29055. rightHandFront: {
  29056. height: math.unit(0.95, "feet"),
  29057. name: "Right Hand (Front)",
  29058. image: {
  29059. source: "./media/characters/balina-mahigan/right-hand-front.svg"
  29060. }
  29061. },
  29062. },
  29063. [
  29064. {
  29065. name: "Normal",
  29066. height: math.unit(6 + 4 / 12, "feet"),
  29067. default: true
  29068. },
  29069. ]
  29070. ))
  29071. characterMakers.push(() => makeCharacter(
  29072. { name: "Balina Mejeri", species: ["wolf", "cow"], tags: ["anthro"] },
  29073. {
  29074. front: {
  29075. height: math.unit(6, "feet"),
  29076. weight: math.unit(320, "lb"),
  29077. name: "Front",
  29078. image: {
  29079. source: "./media/characters/balina-mejeri/front.svg",
  29080. extra: 517 / 488,
  29081. bottom: 44.2 / 561
  29082. }
  29083. },
  29084. },
  29085. [
  29086. {
  29087. name: "Normal",
  29088. height: math.unit(6 + 4 / 12, "feet")
  29089. },
  29090. {
  29091. name: "Business",
  29092. height: math.unit(155, "feet"),
  29093. default: true
  29094. },
  29095. ]
  29096. ))
  29097. characterMakers.push(() => makeCharacter(
  29098. { name: "Balbarian", species: ["wolf", "cow"], tags: ["anthro"] },
  29099. {
  29100. kneeling: {
  29101. height: math.unit(6 + 4 / 12, "feet"),
  29102. weight: math.unit(300 * 20, "lb"),
  29103. name: "Kneeling",
  29104. image: {
  29105. source: "./media/characters/balbarian/kneeling.svg",
  29106. extra: 922 / 862,
  29107. bottom: 42.4 / 965
  29108. }
  29109. },
  29110. },
  29111. [
  29112. {
  29113. name: "Normal",
  29114. height: math.unit(6 + 4 / 12, "feet")
  29115. },
  29116. {
  29117. name: "Treasured",
  29118. height: math.unit(18 + 9 / 12, "feet"),
  29119. default: true
  29120. },
  29121. {
  29122. name: "Macro",
  29123. height: math.unit(900, "feet")
  29124. },
  29125. ]
  29126. ))
  29127. characterMakers.push(() => makeCharacter(
  29128. { name: "Balina Amarini", species: ["wolf", "cow"], tags: ["anthro"] },
  29129. {
  29130. front: {
  29131. height: math.unit(6 + 4 / 12, "feet"),
  29132. weight: math.unit(325, "lb"),
  29133. name: "Front",
  29134. image: {
  29135. source: "./media/characters/balina-amarini/front.svg",
  29136. extra: 415 / 403,
  29137. bottom: 19 / 433.4
  29138. }
  29139. },
  29140. back: {
  29141. height: math.unit(6 + 4 / 12, "feet"),
  29142. weight: math.unit(325, "lb"),
  29143. name: "Back",
  29144. image: {
  29145. source: "./media/characters/balina-amarini/back.svg",
  29146. extra: 415 / 403,
  29147. bottom: 13.5 / 432
  29148. }
  29149. },
  29150. overdrive: {
  29151. height: math.unit(6 + 4 / 12, "feet"),
  29152. weight: math.unit(400, "lb"),
  29153. name: "Overdrive",
  29154. image: {
  29155. source: "./media/characters/balina-amarini/overdrive.svg",
  29156. extra: 269 / 259,
  29157. bottom: 12 / 282
  29158. }
  29159. },
  29160. },
  29161. [
  29162. {
  29163. name: "Boom",
  29164. height: math.unit(9 + 10 / 12, "feet"),
  29165. default: true
  29166. },
  29167. {
  29168. name: "Macro",
  29169. height: math.unit(280, "feet")
  29170. },
  29171. ]
  29172. ))
  29173. characterMakers.push(() => makeCharacter(
  29174. { name: "Lady Kubwa", species: ["giraffe", "deity"], tags: ["anthro"] },
  29175. {
  29176. goddess: {
  29177. height: math.unit(600, "feet"),
  29178. weight: math.unit(2000000, "tons"),
  29179. name: "Goddess",
  29180. image: {
  29181. source: "./media/characters/lady-kubwa/goddess.svg",
  29182. extra: 1240.5 / 1223,
  29183. bottom: 22 / 1263
  29184. }
  29185. },
  29186. goddesser: {
  29187. height: math.unit(900, "feet"),
  29188. weight: math.unit(20000000, "lb"),
  29189. name: "Goddess-er",
  29190. image: {
  29191. source: "./media/characters/lady-kubwa/goddess-er.svg",
  29192. extra: 899 / 888,
  29193. bottom: 12.6 / 912
  29194. }
  29195. },
  29196. },
  29197. [
  29198. {
  29199. name: "Macro",
  29200. height: math.unit(600, "feet"),
  29201. default: true
  29202. },
  29203. {
  29204. name: "Megamacro",
  29205. height: math.unit(250, "miles")
  29206. },
  29207. ]
  29208. ))
  29209. characterMakers.push(() => makeCharacter(
  29210. { name: "Tala Grovehorn", species: ["tauren"], tags: ["anthro"] },
  29211. {
  29212. front: {
  29213. height: math.unit(7 + 7 / 12, "feet"),
  29214. weight: math.unit(250, "lb"),
  29215. name: "Front",
  29216. image: {
  29217. source: "./media/characters/tala-grovehorn/front.svg",
  29218. extra: 2636 / 2525,
  29219. bottom: 147 / 2781
  29220. }
  29221. },
  29222. back: {
  29223. height: math.unit(7 + 7 / 12, "feet"),
  29224. weight: math.unit(250, "lb"),
  29225. name: "Back",
  29226. image: {
  29227. source: "./media/characters/tala-grovehorn/back.svg",
  29228. extra: 2635 / 2539,
  29229. bottom: 100 / 2732.8
  29230. }
  29231. },
  29232. mouth: {
  29233. height: math.unit(1.15, "feet"),
  29234. name: "Mouth",
  29235. image: {
  29236. source: "./media/characters/tala-grovehorn/mouth.svg"
  29237. }
  29238. },
  29239. dick: {
  29240. height: math.unit(2.36, "feet"),
  29241. name: "Dick",
  29242. image: {
  29243. source: "./media/characters/tala-grovehorn/dick.svg"
  29244. }
  29245. },
  29246. slit: {
  29247. height: math.unit(0.61, "feet"),
  29248. name: "Slit",
  29249. image: {
  29250. source: "./media/characters/tala-grovehorn/slit.svg"
  29251. }
  29252. },
  29253. },
  29254. [
  29255. ]
  29256. ))
  29257. characterMakers.push(() => makeCharacter(
  29258. { name: "Epona", species: ["unicorn"], tags: ["anthro"] },
  29259. {
  29260. front: {
  29261. height: math.unit(7 + 7 / 12, "feet"),
  29262. weight: math.unit(225, "lb"),
  29263. name: "Front",
  29264. image: {
  29265. source: "./media/characters/epona/front.svg",
  29266. extra: 2445 / 2290,
  29267. bottom: 251 / 2696
  29268. }
  29269. },
  29270. back: {
  29271. height: math.unit(7 + 7 / 12, "feet"),
  29272. weight: math.unit(225, "lb"),
  29273. name: "Back",
  29274. image: {
  29275. source: "./media/characters/epona/back.svg",
  29276. extra: 2546 / 2408,
  29277. bottom: 44 / 2589
  29278. }
  29279. },
  29280. genitals: {
  29281. height: math.unit(1.5, "feet"),
  29282. name: "Genitals",
  29283. image: {
  29284. source: "./media/characters/epona/genitals.svg"
  29285. }
  29286. },
  29287. },
  29288. [
  29289. {
  29290. name: "Normal",
  29291. height: math.unit(7 + 7 / 12, "feet"),
  29292. default: true
  29293. },
  29294. ]
  29295. ))
  29296. characterMakers.push(() => makeCharacter(
  29297. { name: "Avia Bloodbourn", species: ["lion"], tags: ["anthro"] },
  29298. {
  29299. front: {
  29300. height: math.unit(7, "feet"),
  29301. weight: math.unit(518, "lb"),
  29302. name: "Front",
  29303. image: {
  29304. source: "./media/characters/avia-bloodbourn/front.svg",
  29305. extra: 1466 / 1350,
  29306. bottom: 65 / 1527
  29307. }
  29308. },
  29309. },
  29310. [
  29311. ]
  29312. ))
  29313. characterMakers.push(() => makeCharacter(
  29314. { name: "Amera", species: ["dragon"], tags: ["anthro"] },
  29315. {
  29316. front: {
  29317. height: math.unit(9.35, "feet"),
  29318. weight: math.unit(600, "lb"),
  29319. name: "Front",
  29320. image: {
  29321. source: "./media/characters/amera/front.svg",
  29322. extra: 891 / 818,
  29323. bottom: 30 / 922.7
  29324. }
  29325. },
  29326. back: {
  29327. height: math.unit(9.35, "feet"),
  29328. weight: math.unit(600, "lb"),
  29329. name: "Back",
  29330. image: {
  29331. source: "./media/characters/amera/back.svg",
  29332. extra: 876 / 824,
  29333. bottom: 6.8 / 884
  29334. }
  29335. },
  29336. dick: {
  29337. height: math.unit(2.14, "feet"),
  29338. name: "Dick",
  29339. image: {
  29340. source: "./media/characters/amera/dick.svg"
  29341. }
  29342. },
  29343. },
  29344. [
  29345. {
  29346. name: "Normal",
  29347. height: math.unit(9.35, "feet"),
  29348. default: true
  29349. },
  29350. ]
  29351. ))
  29352. characterMakers.push(() => makeCharacter(
  29353. { name: "Rosewen", species: ["vulpera"], tags: ["anthro"] },
  29354. {
  29355. kneeling: {
  29356. height: math.unit(3 + 4 / 12, "feet"),
  29357. weight: math.unit(90, "lb"),
  29358. name: "Kneeling",
  29359. image: {
  29360. source: "./media/characters/rosewen/kneeling.svg",
  29361. extra: 1835 / 1571,
  29362. bottom: 27.7 / 1862
  29363. }
  29364. },
  29365. },
  29366. [
  29367. {
  29368. name: "Normal",
  29369. height: math.unit(3 + 4 / 12, "feet"),
  29370. default: true
  29371. },
  29372. ]
  29373. ))
  29374. characterMakers.push(() => makeCharacter(
  29375. { name: "Sabah", species: ["lucario"], tags: ["anthro"] },
  29376. {
  29377. front: {
  29378. height: math.unit(5 + 10 / 12, "feet"),
  29379. weight: math.unit(200, "lb"),
  29380. name: "Front",
  29381. image: {
  29382. source: "./media/characters/sabah/front.svg",
  29383. extra: 849 / 763,
  29384. bottom: 33.9 / 881
  29385. }
  29386. },
  29387. },
  29388. [
  29389. {
  29390. name: "Normal",
  29391. height: math.unit(5 + 10 / 12, "feet"),
  29392. default: true
  29393. },
  29394. ]
  29395. ))
  29396. characterMakers.push(() => makeCharacter(
  29397. { name: "Purple Flame", species: ["pony"], tags: ["feral"] },
  29398. {
  29399. front: {
  29400. height: math.unit(3 + 5 / 12, "feet"),
  29401. weight: math.unit(40, "kg"),
  29402. name: "Front",
  29403. image: {
  29404. source: "./media/characters/purple-flame/front.svg",
  29405. extra: 1577 / 1412,
  29406. bottom: 97 / 1694
  29407. }
  29408. },
  29409. frontDressed: {
  29410. height: math.unit(3 + 5 / 12, "feet"),
  29411. weight: math.unit(40, "kg"),
  29412. name: "Front (Dressed)",
  29413. image: {
  29414. source: "./media/characters/purple-flame/front-dressed.svg",
  29415. extra: 1577 / 1412,
  29416. bottom: 97 / 1694
  29417. }
  29418. },
  29419. headphones: {
  29420. height: math.unit(0.85, "feet"),
  29421. name: "Headphones",
  29422. image: {
  29423. source: "./media/characters/purple-flame/headphones.svg"
  29424. }
  29425. },
  29426. },
  29427. [
  29428. {
  29429. name: "Really Small",
  29430. height: math.unit(5, "cm")
  29431. },
  29432. {
  29433. name: "Micro",
  29434. height: math.unit(1 + 5 / 12, "feet")
  29435. },
  29436. {
  29437. name: "Normal",
  29438. height: math.unit(3 + 5 / 12, "feet"),
  29439. default: true
  29440. },
  29441. {
  29442. name: "Minimacro",
  29443. height: math.unit(125, "feet")
  29444. },
  29445. {
  29446. name: "Macro",
  29447. height: math.unit(0.5, "miles")
  29448. },
  29449. {
  29450. name: "Megamacro",
  29451. height: math.unit(50, "miles")
  29452. },
  29453. {
  29454. name: "Gigantic",
  29455. height: math.unit(750, "miles")
  29456. },
  29457. {
  29458. name: "Planetary",
  29459. height: math.unit(15000, "miles")
  29460. },
  29461. ]
  29462. ))
  29463. characterMakers.push(() => makeCharacter(
  29464. { name: "Arsenal", species: ["wolf", "deity"], tags: ["anthro"] },
  29465. {
  29466. front: {
  29467. height: math.unit(14, "feet"),
  29468. weight: math.unit(959, "lb"),
  29469. name: "Front",
  29470. image: {
  29471. source: "./media/characters/arsenal/front.svg",
  29472. extra: 2357 / 2157,
  29473. bottom: 93 / 2458
  29474. }
  29475. },
  29476. },
  29477. [
  29478. {
  29479. name: "Normal",
  29480. height: math.unit(14, "feet"),
  29481. default: true
  29482. },
  29483. ]
  29484. ))
  29485. characterMakers.push(() => makeCharacter(
  29486. { name: "Adira", species: ["mouse"], tags: ["anthro"] },
  29487. {
  29488. front: {
  29489. height: math.unit(6, "feet"),
  29490. weight: math.unit(150, "lb"),
  29491. name: "Front",
  29492. image: {
  29493. source: "./media/characters/adira/front.svg",
  29494. extra: 1078 / 1029,
  29495. bottom: 87 / 1166
  29496. }
  29497. },
  29498. },
  29499. [
  29500. {
  29501. name: "Micro",
  29502. height: math.unit(4, "inches"),
  29503. default: true
  29504. },
  29505. {
  29506. name: "Macro",
  29507. height: math.unit(50, "feet")
  29508. },
  29509. ]
  29510. ))
  29511. characterMakers.push(() => makeCharacter(
  29512. { name: "Grim", species: ["ceratosaurus"], tags: ["anthro"] },
  29513. {
  29514. front: {
  29515. height: math.unit(16, "feet"),
  29516. weight: math.unit(1000, "lb"),
  29517. name: "Front",
  29518. image: {
  29519. source: "./media/characters/grim/front.svg",
  29520. extra: 622 / 614,
  29521. bottom: 18.1 / 642
  29522. }
  29523. },
  29524. back: {
  29525. height: math.unit(16, "feet"),
  29526. weight: math.unit(1000, "lb"),
  29527. name: "Back",
  29528. image: {
  29529. source: "./media/characters/grim/back.svg",
  29530. extra: 610.6 / 602,
  29531. bottom: 40.8 / 652
  29532. }
  29533. },
  29534. hunched: {
  29535. height: math.unit(9.75, "feet"),
  29536. weight: math.unit(1000, "lb"),
  29537. name: "Hunched",
  29538. image: {
  29539. source: "./media/characters/grim/hunched.svg",
  29540. extra: 304 / 297,
  29541. bottom: 35.4 / 394
  29542. }
  29543. },
  29544. },
  29545. [
  29546. {
  29547. name: "Normal",
  29548. height: math.unit(16, "feet"),
  29549. default: true
  29550. },
  29551. ]
  29552. ))
  29553. characterMakers.push(() => makeCharacter(
  29554. { name: "Sinja", species: ["monster", "fox"], tags: ["anthro"] },
  29555. {
  29556. front: {
  29557. height: math.unit(2.3, "meters"),
  29558. weight: math.unit(300, "lb"),
  29559. name: "Front",
  29560. image: {
  29561. source: "./media/characters/sinja/front-sfw.svg",
  29562. extra: 1393 / 1294,
  29563. bottom: 70 / 1463
  29564. }
  29565. },
  29566. frontNsfw: {
  29567. height: math.unit(2.3, "meters"),
  29568. weight: math.unit(300, "lb"),
  29569. name: "Front (NSFW)",
  29570. image: {
  29571. source: "./media/characters/sinja/front-nsfw.svg",
  29572. extra: 1393 / 1294,
  29573. bottom: 70 / 1463
  29574. }
  29575. },
  29576. back: {
  29577. height: math.unit(2.3, "meters"),
  29578. weight: math.unit(300, "lb"),
  29579. name: "Back",
  29580. image: {
  29581. source: "./media/characters/sinja/back.svg",
  29582. extra: 1393 / 1294,
  29583. bottom: 70 / 1463
  29584. }
  29585. },
  29586. head: {
  29587. height: math.unit(1.771, "feet"),
  29588. name: "Head",
  29589. image: {
  29590. source: "./media/characters/sinja/head.svg"
  29591. }
  29592. },
  29593. slit: {
  29594. height: math.unit(0.8, "feet"),
  29595. name: "Slit",
  29596. image: {
  29597. source: "./media/characters/sinja/slit.svg"
  29598. }
  29599. },
  29600. },
  29601. [
  29602. {
  29603. name: "Normal",
  29604. height: math.unit(2.3, "meters")
  29605. },
  29606. {
  29607. name: "Macro",
  29608. height: math.unit(91, "meters"),
  29609. default: true
  29610. },
  29611. {
  29612. name: "Megamacro",
  29613. height: math.unit(91440, "meters")
  29614. },
  29615. {
  29616. name: "Gigamacro",
  29617. height: math.unit(60960000, "meters")
  29618. },
  29619. {
  29620. name: "Teramacro",
  29621. height: math.unit(9144000000, "meters")
  29622. },
  29623. ]
  29624. ))
  29625. characterMakers.push(() => makeCharacter(
  29626. { name: "Kyu", species: ["cat"], tags: ["anthro"] },
  29627. {
  29628. front: {
  29629. height: math.unit(1.7, "meters"),
  29630. weight: math.unit(130, "lb"),
  29631. name: "Front",
  29632. image: {
  29633. source: "./media/characters/kyu/front.svg",
  29634. extra: 415 / 395,
  29635. bottom: 5 / 420
  29636. }
  29637. },
  29638. head: {
  29639. height: math.unit(1.75, "feet"),
  29640. name: "Head",
  29641. image: {
  29642. source: "./media/characters/kyu/head.svg"
  29643. }
  29644. },
  29645. foot: {
  29646. height: math.unit(0.81, "feet"),
  29647. name: "Foot",
  29648. image: {
  29649. source: "./media/characters/kyu/foot.svg"
  29650. }
  29651. },
  29652. },
  29653. [
  29654. {
  29655. name: "Normal",
  29656. height: math.unit(1.7, "meters")
  29657. },
  29658. {
  29659. name: "Macro",
  29660. height: math.unit(131, "feet"),
  29661. default: true
  29662. },
  29663. {
  29664. name: "Megamacro",
  29665. height: math.unit(91440, "meters")
  29666. },
  29667. {
  29668. name: "Gigamacro",
  29669. height: math.unit(60960000, "meters")
  29670. },
  29671. {
  29672. name: "Teramacro",
  29673. height: math.unit(9144000000, "meters")
  29674. },
  29675. ]
  29676. ))
  29677. characterMakers.push(() => makeCharacter(
  29678. { name: "Joey", species: ["kangaroo"], tags: ["anthro"] },
  29679. {
  29680. front: {
  29681. height: math.unit(7 + 1 / 12, "feet"),
  29682. weight: math.unit(250, "lb"),
  29683. name: "Front",
  29684. image: {
  29685. source: "./media/characters/joey/front.svg",
  29686. extra: 1791 / 1537,
  29687. bottom: 28 / 1816
  29688. }
  29689. },
  29690. },
  29691. [
  29692. {
  29693. name: "Micro",
  29694. height: math.unit(3, "inches")
  29695. },
  29696. {
  29697. name: "Normal",
  29698. height: math.unit(7 + 1 / 12, "feet"),
  29699. default: true
  29700. },
  29701. ]
  29702. ))
  29703. characterMakers.push(() => makeCharacter(
  29704. { name: "Sam Evans", species: ["fox", "demon"], tags: ["anthro"] },
  29705. {
  29706. front: {
  29707. height: math.unit(165, "cm"),
  29708. weight: math.unit(140, "lb"),
  29709. name: "Front",
  29710. image: {
  29711. source: "./media/characters/sam-evans/front.svg",
  29712. extra: 3417 / 3230,
  29713. bottom: 41.3 / 3417
  29714. }
  29715. },
  29716. frontSixTails: {
  29717. height: math.unit(165, "cm"),
  29718. weight: math.unit(140, "lb"),
  29719. name: "Front-six-tails",
  29720. image: {
  29721. source: "./media/characters/sam-evans/front-six-tails.svg",
  29722. extra: 3417 / 3230,
  29723. bottom: 41.3 / 3417
  29724. }
  29725. },
  29726. back: {
  29727. height: math.unit(165, "cm"),
  29728. weight: math.unit(140, "lb"),
  29729. name: "Back",
  29730. image: {
  29731. source: "./media/characters/sam-evans/back.svg",
  29732. extra: 3227 / 3032,
  29733. bottom: 6.8 / 3234
  29734. }
  29735. },
  29736. face: {
  29737. height: math.unit(0.68, "feet"),
  29738. name: "Face",
  29739. image: {
  29740. source: "./media/characters/sam-evans/face.svg"
  29741. }
  29742. },
  29743. },
  29744. [
  29745. {
  29746. name: "Normal",
  29747. height: math.unit(165, "cm"),
  29748. default: true
  29749. },
  29750. {
  29751. name: "Macro",
  29752. height: math.unit(100, "meters")
  29753. },
  29754. {
  29755. name: "Macro+",
  29756. height: math.unit(800, "meters")
  29757. },
  29758. {
  29759. name: "Macro++",
  29760. height: math.unit(3, "km")
  29761. },
  29762. {
  29763. name: "Macro+++",
  29764. height: math.unit(30, "km")
  29765. },
  29766. ]
  29767. ))
  29768. characterMakers.push(() => makeCharacter(
  29769. { name: "Juliet A", species: ["lizard"], tags: ["anthro"] },
  29770. {
  29771. front: {
  29772. height: math.unit(10, "feet"),
  29773. weight: math.unit(750, "lb"),
  29774. name: "Front",
  29775. image: {
  29776. source: "./media/characters/juliet-a/front.svg",
  29777. extra: 1766 / 1720,
  29778. bottom: 43 / 1809
  29779. }
  29780. },
  29781. back: {
  29782. height: math.unit(10, "feet"),
  29783. weight: math.unit(750, "lb"),
  29784. name: "Back",
  29785. image: {
  29786. source: "./media/characters/juliet-a/back.svg",
  29787. extra: 1781 / 1734,
  29788. bottom: 35 / 1810,
  29789. }
  29790. },
  29791. },
  29792. [
  29793. {
  29794. name: "Normal",
  29795. height: math.unit(10, "feet"),
  29796. default: true
  29797. },
  29798. {
  29799. name: "Dragon Form",
  29800. height: math.unit(250, "feet")
  29801. },
  29802. {
  29803. name: "Macro",
  29804. height: math.unit(1000, "feet")
  29805. },
  29806. {
  29807. name: "Megamacro",
  29808. height: math.unit(10000, "feet")
  29809. }
  29810. ]
  29811. ))
  29812. characterMakers.push(() => makeCharacter(
  29813. { name: "Wild", species: ["hyena"], tags: ["anthro"] },
  29814. {
  29815. regular: {
  29816. height: math.unit(7 + 3 / 12, "feet"),
  29817. weight: math.unit(260, "lb"),
  29818. name: "Regular",
  29819. image: {
  29820. source: "./media/characters/wild/regular.svg",
  29821. extra: 97.45 / 92,
  29822. bottom: 6.8 / 104.3
  29823. }
  29824. },
  29825. biggums: {
  29826. height: math.unit(8 + 6 / 12, "feet"),
  29827. weight: math.unit(425, "lb"),
  29828. name: "Biggums",
  29829. image: {
  29830. source: "./media/characters/wild/biggums.svg",
  29831. extra: 97.45 / 92,
  29832. bottom: 7.5 / 132.34
  29833. }
  29834. },
  29835. mawRegular: {
  29836. height: math.unit(1.24, "feet"),
  29837. name: "Maw (Regular)",
  29838. image: {
  29839. source: "./media/characters/wild/maw.svg"
  29840. }
  29841. },
  29842. mawBiggums: {
  29843. height: math.unit(1.47, "feet"),
  29844. name: "Maw (Biggums)",
  29845. image: {
  29846. source: "./media/characters/wild/maw.svg"
  29847. }
  29848. },
  29849. },
  29850. [
  29851. {
  29852. name: "Normal",
  29853. height: math.unit(7 + 3 / 12, "feet"),
  29854. default: true
  29855. },
  29856. ]
  29857. ))
  29858. characterMakers.push(() => makeCharacter(
  29859. { name: "Vidar", species: ["deer"], tags: ["anthro", "feral"] },
  29860. {
  29861. front: {
  29862. height: math.unit(2.5, "meters"),
  29863. weight: math.unit(200, "kg"),
  29864. name: "Front",
  29865. image: {
  29866. source: "./media/characters/vidar/front.svg",
  29867. extra: 2994 / 2795,
  29868. bottom: 56 / 3061
  29869. }
  29870. },
  29871. back: {
  29872. height: math.unit(2.5, "meters"),
  29873. weight: math.unit(200, "kg"),
  29874. name: "Back",
  29875. image: {
  29876. source: "./media/characters/vidar/back.svg",
  29877. extra: 3131 / 2928,
  29878. bottom: 13.5 / 3141.5
  29879. }
  29880. },
  29881. feral: {
  29882. height: math.unit(2.5, "meters"),
  29883. weight: math.unit(2000, "kg"),
  29884. name: "Feral",
  29885. image: {
  29886. source: "./media/characters/vidar/feral.svg",
  29887. extra: 2790 / 1765,
  29888. bottom: 6 / 2796
  29889. }
  29890. },
  29891. },
  29892. [
  29893. {
  29894. name: "Normal",
  29895. height: math.unit(2.5, "meters"),
  29896. default: true
  29897. },
  29898. {
  29899. name: "Macro",
  29900. height: math.unit(100, "meters")
  29901. },
  29902. ]
  29903. ))
  29904. characterMakers.push(() => makeCharacter(
  29905. { name: "Ash", species: ["zoroark"], tags: ["anthro"] },
  29906. {
  29907. front: {
  29908. height: math.unit(5 + 9 / 12, "feet"),
  29909. weight: math.unit(120, "lb"),
  29910. name: "Front",
  29911. image: {
  29912. source: "./media/characters/ash/front.svg",
  29913. extra: 2189 / 1961,
  29914. bottom: 5.2 / 2194
  29915. }
  29916. },
  29917. },
  29918. [
  29919. {
  29920. name: "Normal",
  29921. height: math.unit(5 + 9 / 12, "feet"),
  29922. default: true
  29923. },
  29924. ]
  29925. ))
  29926. characterMakers.push(() => makeCharacter(
  29927. { name: "Gygabite", species: ["draconi"], tags: ["anthro"] },
  29928. {
  29929. front: {
  29930. height: math.unit(9, "feet"),
  29931. weight: math.unit(10000, "lb"),
  29932. name: "Front",
  29933. image: {
  29934. source: "./media/characters/gygabite/front.svg",
  29935. bottom: 31.7 / 537.8,
  29936. extra: 505 / 370
  29937. }
  29938. },
  29939. },
  29940. [
  29941. {
  29942. name: "Normal",
  29943. height: math.unit(9, "feet"),
  29944. default: true
  29945. },
  29946. ]
  29947. ))
  29948. characterMakers.push(() => makeCharacter(
  29949. { name: "P0TAT0", species: ["protogen"], tags: ["anthro"] },
  29950. {
  29951. front: {
  29952. height: math.unit(12, "feet"),
  29953. weight: math.unit(4000, "lb"),
  29954. name: "Front",
  29955. image: {
  29956. source: "./media/characters/p0tat0/front.svg",
  29957. extra: 1065 / 921,
  29958. bottom: 55.7 / 1121.25
  29959. }
  29960. },
  29961. },
  29962. [
  29963. {
  29964. name: "Normal",
  29965. height: math.unit(12, "feet"),
  29966. default: true
  29967. },
  29968. ]
  29969. ))
  29970. characterMakers.push(() => makeCharacter(
  29971. { name: "Dusk", species: ["arcanine"], tags: ["feral"] },
  29972. {
  29973. side: {
  29974. height: math.unit(6.5, "feet"),
  29975. weight: math.unit(800, "lb"),
  29976. name: "Side",
  29977. image: {
  29978. source: "./media/characters/dusk/side.svg",
  29979. extra: 615 / 373,
  29980. bottom: 53 / 664
  29981. }
  29982. },
  29983. sitting: {
  29984. height: math.unit(7, "feet"),
  29985. weight: math.unit(800, "lb"),
  29986. name: "Sitting",
  29987. image: {
  29988. source: "./media/characters/dusk/sitting.svg",
  29989. extra: 753 / 425,
  29990. bottom: 33 / 774
  29991. }
  29992. },
  29993. head: {
  29994. height: math.unit(6.1, "feet"),
  29995. name: "Head",
  29996. image: {
  29997. source: "./media/characters/dusk/head.svg"
  29998. }
  29999. },
  30000. },
  30001. [
  30002. {
  30003. name: "Normal",
  30004. height: math.unit(7, "feet"),
  30005. default: true
  30006. },
  30007. ]
  30008. ))
  30009. characterMakers.push(() => makeCharacter(
  30010. { name: "Jay Direwolf", species: ["dire-wolf"], tags: ["anthro"] },
  30011. {
  30012. front: {
  30013. height: math.unit(15, "feet"),
  30014. weight: math.unit(7000, "lb"),
  30015. name: "Front",
  30016. image: {
  30017. source: "./media/characters/jay-direwolf/front.svg",
  30018. extra: 1810 / 1732,
  30019. bottom: 66 / 1892
  30020. }
  30021. },
  30022. },
  30023. [
  30024. {
  30025. name: "Normal",
  30026. height: math.unit(15, "feet"),
  30027. default: true
  30028. },
  30029. ]
  30030. ))
  30031. characterMakers.push(() => makeCharacter(
  30032. { name: "Anchovie", species: ["cat"], tags: ["anthro"] },
  30033. {
  30034. front: {
  30035. height: math.unit(4 + 9 / 12, "feet"),
  30036. weight: math.unit(130, "lb"),
  30037. name: "Front",
  30038. image: {
  30039. source: "./media/characters/anchovie/front.svg",
  30040. extra: 382 / 350,
  30041. bottom: 25 / 409
  30042. }
  30043. },
  30044. back: {
  30045. height: math.unit(4 + 9 / 12, "feet"),
  30046. weight: math.unit(130, "lb"),
  30047. name: "Back",
  30048. image: {
  30049. source: "./media/characters/anchovie/back.svg",
  30050. extra: 385 / 352,
  30051. bottom: 16.6 / 402
  30052. }
  30053. },
  30054. frontDressed: {
  30055. height: math.unit(4 + 9 / 12, "feet"),
  30056. weight: math.unit(130, "lb"),
  30057. name: "Front (Dressed)",
  30058. image: {
  30059. source: "./media/characters/anchovie/front-dressed.svg",
  30060. extra: 382 / 350,
  30061. bottom: 25 / 409
  30062. }
  30063. },
  30064. backDressed: {
  30065. height: math.unit(4 + 9 / 12, "feet"),
  30066. weight: math.unit(130, "lb"),
  30067. name: "Back (Dressed)",
  30068. image: {
  30069. source: "./media/characters/anchovie/back-dressed.svg",
  30070. extra: 385 / 352,
  30071. bottom: 16.6 / 402
  30072. }
  30073. },
  30074. },
  30075. [
  30076. {
  30077. name: "Micro",
  30078. height: math.unit(6.4, "inches")
  30079. },
  30080. {
  30081. name: "Normal",
  30082. height: math.unit(4 + 9 / 12, "feet"),
  30083. default: true
  30084. },
  30085. ]
  30086. ))
  30087. characterMakers.push(() => makeCharacter(
  30088. { name: "AcidRenamon", species: ["renamon", "skunk"], tags: ["anthro"] },
  30089. {
  30090. front: {
  30091. height: math.unit(2, "meters"),
  30092. weight: math.unit(180, "lb"),
  30093. name: "Front",
  30094. image: {
  30095. source: "./media/characters/acidrenamon/front.svg",
  30096. extra: 987 / 890,
  30097. bottom: 22.8 / 1009
  30098. }
  30099. },
  30100. back: {
  30101. height: math.unit(2, "meters"),
  30102. weight: math.unit(180, "lb"),
  30103. name: "Back",
  30104. image: {
  30105. source: "./media/characters/acidrenamon/back.svg",
  30106. extra: 983 / 891,
  30107. bottom: 8.4 / 992
  30108. }
  30109. },
  30110. head: {
  30111. height: math.unit(1.92, "feet"),
  30112. name: "Head",
  30113. image: {
  30114. source: "./media/characters/acidrenamon/head.svg"
  30115. }
  30116. },
  30117. rump: {
  30118. height: math.unit(1.72, "feet"),
  30119. name: "Rump",
  30120. image: {
  30121. source: "./media/characters/acidrenamon/rump.svg"
  30122. }
  30123. },
  30124. tail: {
  30125. height: math.unit(4.2, "feet"),
  30126. name: "Tail",
  30127. image: {
  30128. source: "./media/characters/acidrenamon/tail.svg"
  30129. }
  30130. },
  30131. },
  30132. [
  30133. {
  30134. name: "Normal",
  30135. height: math.unit(2, "meters"),
  30136. default: true
  30137. },
  30138. {
  30139. name: "Minimacro",
  30140. height: math.unit(7, "meters")
  30141. },
  30142. {
  30143. name: "Macro",
  30144. height: math.unit(200, "meters")
  30145. },
  30146. {
  30147. name: "Gigamacro",
  30148. height: math.unit(0.2, "earths")
  30149. },
  30150. ]
  30151. ))
  30152. characterMakers.push(() => makeCharacter(
  30153. { name: "Kenzie Lee", species: ["lycanroc"], tags: ["anthro"] },
  30154. {
  30155. front: {
  30156. height: math.unit(152, "feet"),
  30157. name: "Front",
  30158. image: {
  30159. source: "./media/characters/kenzie-lee/front.svg",
  30160. extra: 1869/1774,
  30161. bottom: 128/1997
  30162. }
  30163. },
  30164. side: {
  30165. height: math.unit(86, "feet"),
  30166. name: "Side",
  30167. image: {
  30168. source: "./media/characters/kenzie-lee/side.svg",
  30169. extra: 930/815,
  30170. bottom: 177/1107
  30171. }
  30172. },
  30173. paw: {
  30174. height: math.unit(15, "feet"),
  30175. name: "Paw",
  30176. image: {
  30177. source: "./media/characters/kenzie-lee/paw.svg"
  30178. }
  30179. },
  30180. },
  30181. [
  30182. {
  30183. name: "Kenzie Flea",
  30184. height: math.unit(2, "mm"),
  30185. default: true
  30186. },
  30187. {
  30188. name: "Micro",
  30189. height: math.unit(2, "inches")
  30190. },
  30191. {
  30192. name: "Normal",
  30193. height: math.unit(152, "feet")
  30194. },
  30195. {
  30196. name: "Megamacro",
  30197. height: math.unit(7, "miles")
  30198. },
  30199. {
  30200. name: "Gigamacro",
  30201. height: math.unit(8000, "miles")
  30202. },
  30203. ]
  30204. ))
  30205. characterMakers.push(() => makeCharacter(
  30206. { name: "Withers", species: ["hellhound"], tags: ["anthro"] },
  30207. {
  30208. front: {
  30209. height: math.unit(6, "feet"),
  30210. name: "Front",
  30211. image: {
  30212. source: "./media/characters/withers/front.svg",
  30213. extra: 1935/1760,
  30214. bottom: 72/2007
  30215. }
  30216. },
  30217. back: {
  30218. height: math.unit(6, "feet"),
  30219. name: "Back",
  30220. image: {
  30221. source: "./media/characters/withers/back.svg",
  30222. extra: 1944/1792,
  30223. bottom: 12/1956
  30224. }
  30225. },
  30226. dressed: {
  30227. height: math.unit(6, "feet"),
  30228. name: "Dressed",
  30229. image: {
  30230. source: "./media/characters/withers/dressed.svg",
  30231. extra: 1937/1765,
  30232. bottom: 73/2010
  30233. }
  30234. },
  30235. phase1: {
  30236. height: math.unit(1.1, "feet"),
  30237. name: "Phase 1",
  30238. image: {
  30239. source: "./media/characters/withers/phase-1.svg",
  30240. extra: 1885/1232,
  30241. bottom: 0/1885
  30242. }
  30243. },
  30244. phase2: {
  30245. height: math.unit(1.05, "feet"),
  30246. name: "Phase 2",
  30247. image: {
  30248. source: "./media/characters/withers/phase-2.svg",
  30249. extra: 1792/1090,
  30250. bottom: 0/1792
  30251. }
  30252. },
  30253. partyWipe: {
  30254. height: math.unit(1.1, "feet"),
  30255. name: "Party Wipe",
  30256. image: {
  30257. source: "./media/characters/withers/party-wipe.svg",
  30258. extra: 1864/1207,
  30259. bottom: 0/1864
  30260. }
  30261. },
  30262. },
  30263. [
  30264. {
  30265. name: "Macro",
  30266. height: math.unit(167, "feet"),
  30267. default: true
  30268. },
  30269. {
  30270. name: "Megamacro",
  30271. height: math.unit(15, "miles")
  30272. }
  30273. ]
  30274. ))
  30275. characterMakers.push(() => makeCharacter(
  30276. { name: "Nemoskii", species: ["skunk"], tags: ["anthro"] },
  30277. {
  30278. front: {
  30279. height: math.unit(6 + 7 / 12, "feet"),
  30280. weight: math.unit(250, "lb"),
  30281. name: "Front",
  30282. image: {
  30283. source: "./media/characters/nemoskii/front.svg",
  30284. extra: 2270 / 1734,
  30285. bottom: 86 / 2354
  30286. }
  30287. },
  30288. back: {
  30289. height: math.unit(6 + 7 / 12, "feet"),
  30290. weight: math.unit(250, "lb"),
  30291. name: "Back",
  30292. image: {
  30293. source: "./media/characters/nemoskii/back.svg",
  30294. extra: 1845 / 1788,
  30295. bottom: 10.5 / 1852
  30296. }
  30297. },
  30298. head: {
  30299. height: math.unit(1.31, "feet"),
  30300. name: "Head",
  30301. image: {
  30302. source: "./media/characters/nemoskii/head.svg"
  30303. }
  30304. },
  30305. },
  30306. [
  30307. {
  30308. name: "Micro",
  30309. height: math.unit((6 + 7 / 12) * 0.1, "feet")
  30310. },
  30311. {
  30312. name: "Normal",
  30313. height: math.unit(6 + 7 / 12, "feet"),
  30314. default: true
  30315. },
  30316. {
  30317. name: "Macro",
  30318. height: math.unit((6 + 7 / 12) * 150, "feet")
  30319. },
  30320. {
  30321. name: "Macro+",
  30322. height: math.unit((6 + 7 / 12) * 500, "feet")
  30323. },
  30324. {
  30325. name: "Megamacro",
  30326. height: math.unit((6 + 7 / 12) * 100000, "feet")
  30327. },
  30328. ]
  30329. ))
  30330. characterMakers.push(() => makeCharacter(
  30331. { name: "Shui", species: ["dragon"], tags: ["anthro"] },
  30332. {
  30333. front: {
  30334. height: math.unit(1, "mile"),
  30335. weight: math.unit(265261.9, "lb"),
  30336. name: "Front",
  30337. image: {
  30338. source: "./media/characters/shui/front.svg",
  30339. extra: 1633 / 1564,
  30340. bottom: 91.5 / 1726
  30341. }
  30342. },
  30343. },
  30344. [
  30345. {
  30346. name: "Macro",
  30347. height: math.unit(1, "mile"),
  30348. default: true
  30349. },
  30350. ]
  30351. ))
  30352. characterMakers.push(() => makeCharacter(
  30353. { name: "Arokh Takakura", species: ["dragon"], tags: ["anthro"] },
  30354. {
  30355. front: {
  30356. height: math.unit(12 + 6 / 12, "feet"),
  30357. weight: math.unit(1342, "lb"),
  30358. name: "Front",
  30359. image: {
  30360. source: "./media/characters/arokh-takakura/front.svg",
  30361. extra: 1089 / 1043,
  30362. bottom: 77.4 / 1176.7
  30363. }
  30364. },
  30365. back: {
  30366. height: math.unit(12 + 6 / 12, "feet"),
  30367. weight: math.unit(1342, "lb"),
  30368. name: "Back",
  30369. image: {
  30370. source: "./media/characters/arokh-takakura/back.svg",
  30371. extra: 1046 / 1019,
  30372. bottom: 102 / 1150
  30373. }
  30374. },
  30375. },
  30376. [
  30377. {
  30378. name: "Big",
  30379. height: math.unit(12 + 6 / 12, "feet"),
  30380. default: true
  30381. },
  30382. ]
  30383. ))
  30384. characterMakers.push(() => makeCharacter(
  30385. { name: "Theo", species: ["cat"], tags: ["anthro"] },
  30386. {
  30387. front: {
  30388. height: math.unit(5 + 6 / 12, "feet"),
  30389. weight: math.unit(150, "lb"),
  30390. name: "Front",
  30391. image: {
  30392. source: "./media/characters/theo/front.svg",
  30393. extra: 1184 / 1131,
  30394. bottom: 7.4 / 1191
  30395. }
  30396. },
  30397. },
  30398. [
  30399. {
  30400. name: "Micro",
  30401. height: math.unit(5, "inches")
  30402. },
  30403. {
  30404. name: "Normal",
  30405. height: math.unit(5 + 6 / 12, "feet"),
  30406. default: true
  30407. },
  30408. ]
  30409. ))
  30410. characterMakers.push(() => makeCharacter(
  30411. { name: "Cecelia Swift", species: ["otter"], tags: ["anthro"] },
  30412. {
  30413. front: {
  30414. height: math.unit(5 + 9 / 12, "feet"),
  30415. weight: math.unit(130, "lb"),
  30416. name: "Front",
  30417. image: {
  30418. source: "./media/characters/cecelia-swift/front.svg",
  30419. extra: 502 / 484,
  30420. bottom: 23 / 523
  30421. }
  30422. },
  30423. back: {
  30424. height: math.unit(5 + 9 / 12, "feet"),
  30425. weight: math.unit(130, "lb"),
  30426. name: "Back",
  30427. image: {
  30428. source: "./media/characters/cecelia-swift/back.svg",
  30429. extra: 499 / 485,
  30430. bottom: 12 / 511
  30431. }
  30432. },
  30433. head: {
  30434. height: math.unit(0.90, "feet"),
  30435. name: "Head",
  30436. image: {
  30437. source: "./media/characters/cecelia-swift/head.svg"
  30438. }
  30439. },
  30440. rump: {
  30441. height: math.unit(1.75, "feet"),
  30442. name: "Rump",
  30443. image: {
  30444. source: "./media/characters/cecelia-swift/rump.svg"
  30445. }
  30446. },
  30447. },
  30448. [
  30449. {
  30450. name: "Normal",
  30451. height: math.unit(5 + 9 / 12, "feet"),
  30452. default: true
  30453. },
  30454. {
  30455. name: "Big",
  30456. height: math.unit(50, "feet")
  30457. },
  30458. {
  30459. name: "Macro",
  30460. height: math.unit(100, "feet")
  30461. },
  30462. {
  30463. name: "Macro+",
  30464. height: math.unit(500, "feet")
  30465. },
  30466. {
  30467. name: "Macro++",
  30468. height: math.unit(1000, "feet")
  30469. },
  30470. ]
  30471. ))
  30472. characterMakers.push(() => makeCharacter(
  30473. { name: "Kaunan", species: ["dragon"], tags: ["anthro"] },
  30474. {
  30475. front: {
  30476. height: math.unit(6, "feet"),
  30477. weight: math.unit(150, "lb"),
  30478. name: "Front",
  30479. image: {
  30480. source: "./media/characters/kaunan/front.svg",
  30481. extra: 2890 / 2523,
  30482. bottom: 49 / 2939
  30483. }
  30484. },
  30485. },
  30486. [
  30487. {
  30488. name: "Macro",
  30489. height: math.unit(150, "feet"),
  30490. default: true
  30491. },
  30492. ]
  30493. ))
  30494. characterMakers.push(() => makeCharacter(
  30495. { name: "Fei", species: ["fox"], tags: ["anthro"] },
  30496. {
  30497. dressed: {
  30498. height: math.unit(175, "cm"),
  30499. weight: math.unit(60, "kg"),
  30500. name: "Dressed",
  30501. image: {
  30502. source: "./media/characters/fei/dressed.svg",
  30503. extra: 1402/1278,
  30504. bottom: 27/1429
  30505. }
  30506. },
  30507. nude: {
  30508. height: math.unit(175, "cm"),
  30509. weight: math.unit(60, "kg"),
  30510. name: "Nude",
  30511. image: {
  30512. source: "./media/characters/fei/nude.svg",
  30513. extra: 1402/1278,
  30514. bottom: 27/1429
  30515. }
  30516. },
  30517. heels: {
  30518. height: math.unit(0.466, "feet"),
  30519. name: "Heels",
  30520. image: {
  30521. source: "./media/characters/fei/heels.svg",
  30522. extra: 156/152,
  30523. bottom: 28/184
  30524. }
  30525. },
  30526. },
  30527. [
  30528. {
  30529. name: "Mortal",
  30530. height: math.unit(175, "cm")
  30531. },
  30532. {
  30533. name: "Normal",
  30534. height: math.unit(3500, "m")
  30535. },
  30536. {
  30537. name: "Stroll",
  30538. height: math.unit(18.4, "km"),
  30539. default: true
  30540. },
  30541. {
  30542. name: "Showoff",
  30543. height: math.unit(175, "km")
  30544. },
  30545. ]
  30546. ))
  30547. characterMakers.push(() => makeCharacter(
  30548. { name: "Edrax", species: ["ferromorph"], tags: ["anthro"] },
  30549. {
  30550. front: {
  30551. height: math.unit(7, "feet"),
  30552. weight: math.unit(1000, "kg"),
  30553. name: "Front",
  30554. image: {
  30555. source: "./media/characters/edrax/front.svg",
  30556. extra: 2838 / 2550,
  30557. bottom: 130 / 2968
  30558. }
  30559. },
  30560. },
  30561. [
  30562. {
  30563. name: "Small",
  30564. height: math.unit(7, "feet")
  30565. },
  30566. {
  30567. name: "Normal",
  30568. height: math.unit(1500, "meters")
  30569. },
  30570. {
  30571. name: "Mega",
  30572. height: math.unit(12000000, "km"),
  30573. default: true
  30574. },
  30575. {
  30576. name: "Megamacro",
  30577. height: math.unit(10600000, "lightyears")
  30578. },
  30579. {
  30580. name: "Hypermacro",
  30581. height: math.unit(256, "yottameters")
  30582. },
  30583. ]
  30584. ))
  30585. characterMakers.push(() => makeCharacter(
  30586. { name: "Clove", species: ["rabbit"], tags: ["anthro"] },
  30587. {
  30588. front: {
  30589. height: math.unit(10, "feet"),
  30590. weight: math.unit(750, "lb"),
  30591. name: "Front",
  30592. image: {
  30593. source: "./media/characters/clove/front.svg",
  30594. extra: 1918/1751,
  30595. bottom: 52/1970
  30596. }
  30597. },
  30598. back: {
  30599. height: math.unit(10, "feet"),
  30600. weight: math.unit(750, "lb"),
  30601. name: "Back",
  30602. image: {
  30603. source: "./media/characters/clove/back.svg",
  30604. extra: 1912/1747,
  30605. bottom: 50/1962
  30606. }
  30607. },
  30608. },
  30609. [
  30610. {
  30611. name: "Normal",
  30612. height: math.unit(10, "feet"),
  30613. default: true
  30614. },
  30615. ]
  30616. ))
  30617. characterMakers.push(() => makeCharacter(
  30618. { name: "Alex (Rabbit)", species: ["rabbit"], tags: ["anthro"] },
  30619. {
  30620. front: {
  30621. height: math.unit(4, "feet"),
  30622. weight: math.unit(50, "lb"),
  30623. name: "Front",
  30624. image: {
  30625. source: "./media/characters/alex-rabbit/front.svg",
  30626. extra: 507 / 458,
  30627. bottom: 18.5 / 527
  30628. }
  30629. },
  30630. back: {
  30631. height: math.unit(4, "feet"),
  30632. weight: math.unit(50, "lb"),
  30633. name: "Back",
  30634. image: {
  30635. source: "./media/characters/alex-rabbit/back.svg",
  30636. extra: 502 / 460,
  30637. bottom: 18.9 / 521
  30638. }
  30639. },
  30640. },
  30641. [
  30642. {
  30643. name: "Normal",
  30644. height: math.unit(4, "feet"),
  30645. default: true
  30646. },
  30647. ]
  30648. ))
  30649. characterMakers.push(() => makeCharacter(
  30650. { name: "Zander Rose", species: ["meowth"], tags: ["anthro"] },
  30651. {
  30652. front: {
  30653. height: math.unit(1 + 3 / 12, "feet"),
  30654. weight: math.unit(80, "lb"),
  30655. name: "Front",
  30656. image: {
  30657. source: "./media/characters/zander-rose/front.svg",
  30658. extra: 916 / 797,
  30659. bottom: 17 / 933
  30660. }
  30661. },
  30662. back: {
  30663. height: math.unit(1 + 3 / 12, "feet"),
  30664. weight: math.unit(80, "lb"),
  30665. name: "Back",
  30666. image: {
  30667. source: "./media/characters/zander-rose/back.svg",
  30668. extra: 903 / 779,
  30669. bottom: 31 / 934
  30670. }
  30671. },
  30672. },
  30673. [
  30674. {
  30675. name: "Normal",
  30676. height: math.unit(1 + 3 / 12, "feet"),
  30677. default: true
  30678. },
  30679. ]
  30680. ))
  30681. characterMakers.push(() => makeCharacter(
  30682. { name: "Razz", species: ["pavodragon"], tags: ["anthro", "feral"] },
  30683. {
  30684. anthro: {
  30685. height: math.unit(6, "feet"),
  30686. weight: math.unit(150, "lb"),
  30687. name: "Anthro",
  30688. image: {
  30689. source: "./media/characters/razz/anthro.svg",
  30690. extra: 1437 / 1343,
  30691. bottom: 48 / 1485
  30692. }
  30693. },
  30694. feral: {
  30695. height: math.unit(6, "feet"),
  30696. weight: math.unit(150, "lb"),
  30697. name: "Feral",
  30698. image: {
  30699. source: "./media/characters/razz/feral.svg",
  30700. extra: 2569 / 1385,
  30701. bottom: 95 / 2664
  30702. }
  30703. },
  30704. },
  30705. [
  30706. {
  30707. name: "Normal",
  30708. height: math.unit(6, "feet"),
  30709. default: true
  30710. },
  30711. ]
  30712. ))
  30713. characterMakers.push(() => makeCharacter(
  30714. { name: "Morrigan", species: ["shark"], tags: ["anthro"] },
  30715. {
  30716. front: {
  30717. height: math.unit(9 + 4 / 12, "feet"),
  30718. weight: math.unit(500, "lb"),
  30719. name: "Front",
  30720. image: {
  30721. source: "./media/characters/morrigan/front.svg",
  30722. extra: 2707 / 2579,
  30723. bottom: 156 / 2863
  30724. }
  30725. },
  30726. },
  30727. [
  30728. {
  30729. name: "Normal",
  30730. height: math.unit(9 + 4 / 12, "feet"),
  30731. default: true
  30732. },
  30733. ]
  30734. ))
  30735. characterMakers.push(() => makeCharacter(
  30736. { name: "Jenene", species: ["wolf"], tags: ["anthro"] },
  30737. {
  30738. front: {
  30739. height: math.unit(5, "stories"),
  30740. weight: math.unit(4000, "lb"),
  30741. name: "Front",
  30742. image: {
  30743. source: "./media/characters/jenene/front.svg",
  30744. extra: 1780 / 1710,
  30745. bottom: 57 / 1837
  30746. }
  30747. },
  30748. },
  30749. [
  30750. {
  30751. name: "Normal",
  30752. height: math.unit(5, "stories"),
  30753. default: true
  30754. },
  30755. ]
  30756. ))
  30757. characterMakers.push(() => makeCharacter(
  30758. { name: "Faey", species: ["aaltranae"], tags: ["taur"] },
  30759. {
  30760. taurSfw: {
  30761. height: math.unit(10, "meters"),
  30762. weight: math.unit(17500, "kg"),
  30763. name: "Taur",
  30764. image: {
  30765. source: "./media/characters/faey/taur-sfw.svg",
  30766. extra: 1200 / 968,
  30767. bottom: 41 / 1241
  30768. }
  30769. },
  30770. chestmaw: {
  30771. height: math.unit(2.01, "meters"),
  30772. name: "Chestmaw",
  30773. image: {
  30774. source: "./media/characters/faey/chestmaw.svg"
  30775. }
  30776. },
  30777. foot: {
  30778. height: math.unit(2.43, "meters"),
  30779. name: "Foot",
  30780. image: {
  30781. source: "./media/characters/faey/foot.svg"
  30782. }
  30783. },
  30784. jaws: {
  30785. height: math.unit(1.66, "meters"),
  30786. name: "Jaws",
  30787. image: {
  30788. source: "./media/characters/faey/jaws.svg"
  30789. }
  30790. },
  30791. tongues: {
  30792. height: math.unit(2.01, "meters"),
  30793. name: "Tongues",
  30794. image: {
  30795. source: "./media/characters/faey/tongues.svg"
  30796. }
  30797. },
  30798. },
  30799. [
  30800. {
  30801. name: "Small",
  30802. height: math.unit(10, "meters"),
  30803. default: true
  30804. },
  30805. {
  30806. name: "Big",
  30807. height: math.unit(500000, "km")
  30808. },
  30809. ]
  30810. ))
  30811. characterMakers.push(() => makeCharacter(
  30812. { name: "Roku", species: ["lion"], tags: ["anthro"] },
  30813. {
  30814. front: {
  30815. height: math.unit(7, "feet"),
  30816. weight: math.unit(275, "lb"),
  30817. name: "Front",
  30818. image: {
  30819. source: "./media/characters/roku/front.svg",
  30820. extra: 903 / 878,
  30821. bottom: 37 / 940
  30822. }
  30823. },
  30824. },
  30825. [
  30826. {
  30827. name: "Normal",
  30828. height: math.unit(7, "feet"),
  30829. default: true
  30830. },
  30831. {
  30832. name: "Macro",
  30833. height: math.unit(500, "feet")
  30834. },
  30835. {
  30836. name: "Megamacro",
  30837. height: math.unit(200, "miles")
  30838. },
  30839. ]
  30840. ))
  30841. characterMakers.push(() => makeCharacter(
  30842. { name: "Lira", species: ["kitsune"], tags: ["anthro"] },
  30843. {
  30844. front: {
  30845. height: math.unit(6 + 2 / 12, "feet"),
  30846. weight: math.unit(150, "lb"),
  30847. name: "Front",
  30848. image: {
  30849. source: "./media/characters/lira/front.svg",
  30850. extra: 1727 / 1605,
  30851. bottom: 26 / 1753
  30852. }
  30853. },
  30854. back: {
  30855. height: math.unit(6 + 2 / 12, "feet"),
  30856. weight: math.unit(150, "lb"),
  30857. name: "Back",
  30858. image: {
  30859. source: "./media/characters/lira/back.svg",
  30860. extra: 1713/1621,
  30861. bottom: 20/1733
  30862. }
  30863. },
  30864. hand: {
  30865. height: math.unit(0.75, "feet"),
  30866. name: "Hand",
  30867. image: {
  30868. source: "./media/characters/lira/hand.svg"
  30869. }
  30870. },
  30871. maw: {
  30872. height: math.unit(0.65, "feet"),
  30873. name: "Maw",
  30874. image: {
  30875. source: "./media/characters/lira/maw.svg"
  30876. }
  30877. },
  30878. pawDigi: {
  30879. height: math.unit(1.6, "feet"),
  30880. name: "Paw Digi",
  30881. image: {
  30882. source: "./media/characters/lira/paw-digi.svg"
  30883. }
  30884. },
  30885. pawPlanti: {
  30886. height: math.unit(1.4, "feet"),
  30887. name: "Paw Planti",
  30888. image: {
  30889. source: "./media/characters/lira/paw-planti.svg"
  30890. }
  30891. },
  30892. },
  30893. [
  30894. {
  30895. name: "Normal",
  30896. height: math.unit(6 + 2 / 12, "feet"),
  30897. default: true
  30898. },
  30899. {
  30900. name: "Macro",
  30901. height: math.unit(100, "feet")
  30902. },
  30903. {
  30904. name: "Macro²",
  30905. height: math.unit(1600, "feet")
  30906. },
  30907. {
  30908. name: "Planetary",
  30909. height: math.unit(20, "earths")
  30910. },
  30911. ]
  30912. ))
  30913. characterMakers.push(() => makeCharacter(
  30914. { name: "Hadjet", species: ["cat"], tags: ["anthro"] },
  30915. {
  30916. front: {
  30917. height: math.unit(6, "feet"),
  30918. weight: math.unit(150, "lb"),
  30919. name: "Front",
  30920. image: {
  30921. source: "./media/characters/hadjet/front.svg",
  30922. extra: 1480 / 1346,
  30923. bottom: 26 / 1506
  30924. }
  30925. },
  30926. frontNsfw: {
  30927. height: math.unit(6, "feet"),
  30928. weight: math.unit(150, "lb"),
  30929. name: "Front (NSFW)",
  30930. image: {
  30931. source: "./media/characters/hadjet/front-nsfw.svg",
  30932. extra: 1440 / 1358,
  30933. bottom: 52 / 1492
  30934. }
  30935. },
  30936. },
  30937. [
  30938. {
  30939. name: "Macro",
  30940. height: math.unit(10, "stories"),
  30941. default: true
  30942. },
  30943. {
  30944. name: "Megamacro",
  30945. height: math.unit(1.5, "miles")
  30946. },
  30947. {
  30948. name: "Megamacro+",
  30949. height: math.unit(5, "miles")
  30950. },
  30951. ]
  30952. ))
  30953. characterMakers.push(() => makeCharacter(
  30954. { name: "Kodran", species: ["dragon", "machine"], tags: ["feral"] },
  30955. {
  30956. side: {
  30957. height: math.unit(106, "feet"),
  30958. weight: math.unit(500, "tonnes"),
  30959. name: "Side",
  30960. image: {
  30961. source: "./media/characters/kodran/side.svg",
  30962. extra: 553 / 480,
  30963. bottom: 33 / 586
  30964. }
  30965. },
  30966. front: {
  30967. height: math.unit(132, "feet"),
  30968. weight: math.unit(500, "tonnes"),
  30969. name: "Front",
  30970. image: {
  30971. source: "./media/characters/kodran/front.svg",
  30972. extra: 667 / 643,
  30973. bottom: 42 / 709
  30974. }
  30975. },
  30976. flying: {
  30977. height: math.unit(350, "feet"),
  30978. weight: math.unit(500, "tonnes"),
  30979. name: "Flying",
  30980. image: {
  30981. source: "./media/characters/kodran/flying.svg"
  30982. }
  30983. },
  30984. foot: {
  30985. height: math.unit(33, "feet"),
  30986. name: "Foot",
  30987. image: {
  30988. source: "./media/characters/kodran/foot.svg"
  30989. }
  30990. },
  30991. footFront: {
  30992. height: math.unit(19, "feet"),
  30993. name: "Foot (Front)",
  30994. image: {
  30995. source: "./media/characters/kodran/foot-front.svg",
  30996. extra: 261 / 261,
  30997. bottom: 91 / 352
  30998. }
  30999. },
  31000. headFront: {
  31001. height: math.unit(53, "feet"),
  31002. name: "Head (Front)",
  31003. image: {
  31004. source: "./media/characters/kodran/head-front.svg"
  31005. }
  31006. },
  31007. headSide: {
  31008. height: math.unit(65, "feet"),
  31009. name: "Head (Side)",
  31010. image: {
  31011. source: "./media/characters/kodran/head-side.svg"
  31012. }
  31013. },
  31014. throat: {
  31015. height: math.unit(79, "feet"),
  31016. name: "Throat",
  31017. image: {
  31018. source: "./media/characters/kodran/throat.svg"
  31019. }
  31020. },
  31021. },
  31022. [
  31023. {
  31024. name: "Large",
  31025. height: math.unit(106, "feet"),
  31026. default: true
  31027. },
  31028. ]
  31029. ))
  31030. characterMakers.push(() => makeCharacter(
  31031. { name: "Pyxaron", species: ["draptor"], tags: ["feral"] },
  31032. {
  31033. side: {
  31034. height: math.unit(11, "feet"),
  31035. weight: math.unit(150, "lb"),
  31036. name: "Side",
  31037. image: {
  31038. source: "./media/characters/pyxaron/side.svg",
  31039. extra: 305 / 195,
  31040. bottom: 17 / 322
  31041. }
  31042. },
  31043. },
  31044. [
  31045. {
  31046. name: "Normal",
  31047. height: math.unit(11, "feet"),
  31048. default: true
  31049. },
  31050. ]
  31051. ))
  31052. characterMakers.push(() => makeCharacter(
  31053. { name: "Meep", species: ["candy", "salamander"], tags: ["anthro"] },
  31054. {
  31055. front: {
  31056. height: math.unit(6, "feet"),
  31057. weight: math.unit(150, "lb"),
  31058. name: "Front",
  31059. image: {
  31060. source: "./media/characters/meep/front.svg",
  31061. extra: 88 / 80,
  31062. bottom: 6 / 94
  31063. }
  31064. },
  31065. },
  31066. [
  31067. {
  31068. name: "Fun Sized",
  31069. height: math.unit(2, "inches"),
  31070. default: true
  31071. },
  31072. {
  31073. name: "Friend Sized",
  31074. height: math.unit(8, "inches")
  31075. },
  31076. ]
  31077. ))
  31078. characterMakers.push(() => makeCharacter(
  31079. { name: "Holly (Rabbit)", species: ["rabbit"], tags: ["anthro"] },
  31080. {
  31081. front: {
  31082. height: math.unit(15, "feet"),
  31083. weight: math.unit(2500, "lb"),
  31084. name: "Front",
  31085. image: {
  31086. source: "./media/characters/holly-rabbit/front.svg",
  31087. extra: 1433 / 1233,
  31088. bottom: 125 / 1558
  31089. }
  31090. },
  31091. dick: {
  31092. height: math.unit(4.6, "feet"),
  31093. name: "Dick",
  31094. image: {
  31095. source: "./media/characters/holly-rabbit/dick.svg"
  31096. }
  31097. },
  31098. },
  31099. [
  31100. {
  31101. name: "Normal",
  31102. height: math.unit(15, "feet"),
  31103. default: true
  31104. },
  31105. {
  31106. name: "Macro",
  31107. height: math.unit(250, "feet")
  31108. },
  31109. {
  31110. name: "Macro+",
  31111. height: math.unit(2500, "feet")
  31112. },
  31113. ]
  31114. ))
  31115. characterMakers.push(() => makeCharacter(
  31116. { name: "Drena", species: ["drenath"], tags: ["anthro"] },
  31117. {
  31118. front: {
  31119. height: math.unit(3.02, "meters"),
  31120. weight: math.unit(500, "kg"),
  31121. name: "Front",
  31122. image: {
  31123. source: "./media/characters/drena/front.svg",
  31124. extra: 282 / 243,
  31125. bottom: 8 / 290
  31126. }
  31127. },
  31128. side: {
  31129. height: math.unit(3.02, "meters"),
  31130. weight: math.unit(500, "kg"),
  31131. name: "Side",
  31132. image: {
  31133. source: "./media/characters/drena/side.svg",
  31134. extra: 280 / 245,
  31135. bottom: 10 / 290
  31136. }
  31137. },
  31138. back: {
  31139. height: math.unit(3.02, "meters"),
  31140. weight: math.unit(500, "kg"),
  31141. name: "Back",
  31142. image: {
  31143. source: "./media/characters/drena/back.svg",
  31144. extra: 278 / 243,
  31145. bottom: 2 / 280
  31146. }
  31147. },
  31148. foot: {
  31149. height: math.unit(0.75, "meters"),
  31150. name: "Foot",
  31151. image: {
  31152. source: "./media/characters/drena/foot.svg"
  31153. }
  31154. },
  31155. maw: {
  31156. height: math.unit(0.82, "meters"),
  31157. name: "Maw",
  31158. image: {
  31159. source: "./media/characters/drena/maw.svg"
  31160. }
  31161. },
  31162. eating: {
  31163. height: math.unit(0.75, "meters"),
  31164. name: "Eating",
  31165. image: {
  31166. source: "./media/characters/drena/eating.svg"
  31167. }
  31168. },
  31169. rump: {
  31170. height: math.unit(0.93, "meters"),
  31171. name: "Rump",
  31172. image: {
  31173. source: "./media/characters/drena/rump.svg"
  31174. }
  31175. },
  31176. },
  31177. [
  31178. {
  31179. name: "Normal",
  31180. height: math.unit(3.02, "meters"),
  31181. default: true
  31182. },
  31183. ]
  31184. ))
  31185. characterMakers.push(() => makeCharacter(
  31186. { name: "Remmyzilla", species: ["coyju"], tags: ["anthro"] },
  31187. {
  31188. front: {
  31189. height: math.unit(6 + 4 / 12, "feet"),
  31190. weight: math.unit(250, "lb"),
  31191. name: "Front",
  31192. image: {
  31193. source: "./media/characters/remmyzilla/front.svg",
  31194. extra: 4033 / 3588,
  31195. bottom: 123 / 4156
  31196. }
  31197. },
  31198. back: {
  31199. height: math.unit(6 + 4 / 12, "feet"),
  31200. weight: math.unit(250, "lb"),
  31201. name: "Back",
  31202. image: {
  31203. source: "./media/characters/remmyzilla/back.svg",
  31204. extra: 1696/1602,
  31205. bottom: 63/1759
  31206. }
  31207. },
  31208. paw: {
  31209. height: math.unit(1.73, "feet"),
  31210. name: "Paw",
  31211. image: {
  31212. source: "./media/characters/remmyzilla/paw.svg"
  31213. },
  31214. extraAttributes: {
  31215. "toeSize": {
  31216. name: "Toe Size",
  31217. power: 2,
  31218. type: "area",
  31219. base: math.unit(0.0035, "m^2")
  31220. },
  31221. "padSize": {
  31222. name: "Pad Size",
  31223. power: 2,
  31224. type: "area",
  31225. base: math.unit(0.015, "m^2")
  31226. },
  31227. "pawsize": {
  31228. name: "Paw Size",
  31229. power: 2,
  31230. type: "area",
  31231. base: math.unit(0.072, "m^2")
  31232. },
  31233. }
  31234. },
  31235. maw: {
  31236. height: math.unit(1.73, "feet"),
  31237. name: "Maw",
  31238. image: {
  31239. source: "./media/characters/remmyzilla/maw.svg"
  31240. }
  31241. },
  31242. },
  31243. [
  31244. {
  31245. name: "Normal",
  31246. height: math.unit(6 + 4 / 12, "feet")
  31247. },
  31248. {
  31249. name: "Minimacro",
  31250. height: math.unit(12 + 8 / 12, "feet")
  31251. },
  31252. {
  31253. name: "Normal",
  31254. height: math.unit(640, "feet"),
  31255. default: true
  31256. },
  31257. {
  31258. name: "Megamacro",
  31259. height: math.unit(6400, "feet")
  31260. },
  31261. {
  31262. name: "Gigamacro",
  31263. height: math.unit(64000, "miles")
  31264. },
  31265. ]
  31266. ))
  31267. characterMakers.push(() => makeCharacter(
  31268. { name: "Lawrence", species: ["sergal"], tags: ["anthro"] },
  31269. {
  31270. front: {
  31271. height: math.unit(2.5, "meters"),
  31272. weight: math.unit(300, "lb"),
  31273. name: "Front",
  31274. image: {
  31275. source: "./media/characters/lawrence/front.svg",
  31276. extra: 357 / 335,
  31277. bottom: 30 / 387
  31278. }
  31279. },
  31280. back: {
  31281. height: math.unit(2.5, "meters"),
  31282. weight: math.unit(300, "lb"),
  31283. name: "Back",
  31284. image: {
  31285. source: "./media/characters/lawrence/back.svg",
  31286. extra: 357 / 338,
  31287. bottom: 16 / 373
  31288. }
  31289. },
  31290. head: {
  31291. height: math.unit(0.9, "meter"),
  31292. name: "Head",
  31293. image: {
  31294. source: "./media/characters/lawrence/head.svg"
  31295. }
  31296. },
  31297. maw: {
  31298. height: math.unit(0.7, "meter"),
  31299. name: "Maw",
  31300. image: {
  31301. source: "./media/characters/lawrence/maw.svg"
  31302. }
  31303. },
  31304. footBottom: {
  31305. height: math.unit(0.5, "meter"),
  31306. name: "Foot (Bottom)",
  31307. image: {
  31308. source: "./media/characters/lawrence/foot-bottom.svg"
  31309. }
  31310. },
  31311. footTop: {
  31312. height: math.unit(0.5, "meter"),
  31313. name: "Foot (Top)",
  31314. image: {
  31315. source: "./media/characters/lawrence/foot-top.svg"
  31316. }
  31317. },
  31318. },
  31319. [
  31320. {
  31321. name: "Normal",
  31322. height: math.unit(2.5, "meters"),
  31323. default: true
  31324. },
  31325. {
  31326. name: "Macro",
  31327. height: math.unit(95, "meters")
  31328. },
  31329. {
  31330. name: "Megamacro",
  31331. height: math.unit(150, "km")
  31332. },
  31333. ]
  31334. ))
  31335. characterMakers.push(() => makeCharacter(
  31336. { name: "Sydney", species: ["naga"], tags: ["naga"] },
  31337. {
  31338. front: {
  31339. height: math.unit(4.2, "meters"),
  31340. preyCapacity: math.unit(50, "m^3"),
  31341. weight: math.unit(30, "tonnes"),
  31342. name: "Front",
  31343. image: {
  31344. source: "./media/characters/sydney/front.svg",
  31345. extra: 1177/1129,
  31346. bottom: 197/1374
  31347. },
  31348. extraAttributes: {
  31349. "length": {
  31350. name: "Length",
  31351. power: 1,
  31352. type: "length",
  31353. base: math.unit(21, "meters")
  31354. },
  31355. }
  31356. },
  31357. },
  31358. [
  31359. {
  31360. name: "Normal",
  31361. height: math.unit(4.2, "meters"),
  31362. default: true
  31363. },
  31364. ]
  31365. ))
  31366. characterMakers.push(() => makeCharacter(
  31367. { name: "Jessica", species: ["maned-wolf"], tags: ["anthro"] },
  31368. {
  31369. back: {
  31370. height: math.unit(201, "feet"),
  31371. name: "Back",
  31372. image: {
  31373. source: "./media/characters/jessica/back.svg",
  31374. extra: 273 / 259,
  31375. bottom: 7 / 280
  31376. }
  31377. },
  31378. },
  31379. [
  31380. {
  31381. name: "Normal",
  31382. height: math.unit(201, "feet"),
  31383. default: true
  31384. },
  31385. {
  31386. name: "Megamacro",
  31387. height: math.unit(8, "miles")
  31388. },
  31389. ]
  31390. ))
  31391. characterMakers.push(() => makeCharacter(
  31392. { name: "Victoria", species: ["zorgoia"], tags: ["feral"] },
  31393. {
  31394. side: {
  31395. height: math.unit(5.6, "m"),
  31396. weight: math.unit(8000, "kg"),
  31397. name: "Side",
  31398. image: {
  31399. source: "./media/characters/victoria/side.svg",
  31400. extra: 1542/1229,
  31401. bottom: 124/1666
  31402. }
  31403. },
  31404. maw: {
  31405. height: math.unit(7.14, "feet"),
  31406. name: "Maw",
  31407. image: {
  31408. source: "./media/characters/victoria/maw.svg"
  31409. }
  31410. },
  31411. },
  31412. [
  31413. {
  31414. name: "Normal",
  31415. height: math.unit(5.6, "m"),
  31416. default: true
  31417. },
  31418. ]
  31419. ))
  31420. characterMakers.push(() => makeCharacter(
  31421. { name: "Cat", species: ["cat", "nickit", "lucario", "lopunny"], tags: ["anthro", "feral", "taur"] },
  31422. {
  31423. front: {
  31424. height: math.unit(5 + 6 / 12, "feet"),
  31425. name: "Front",
  31426. image: {
  31427. source: "./media/characters/cat/front.svg",
  31428. extra: 1449/1295,
  31429. bottom: 34/1483
  31430. },
  31431. form: "cat",
  31432. default: true
  31433. },
  31434. back: {
  31435. height: math.unit(5 + 6 / 12, "feet"),
  31436. name: "Back",
  31437. image: {
  31438. source: "./media/characters/cat/back.svg",
  31439. extra: 1466/1301,
  31440. bottom: 19/1485
  31441. },
  31442. form: "cat"
  31443. },
  31444. taur: {
  31445. height: math.unit(7, "feet"),
  31446. name: "Taur",
  31447. image: {
  31448. source: "./media/characters/cat/taur.svg",
  31449. extra: 1389/1233,
  31450. bottom: 83/1472
  31451. },
  31452. form: "taur",
  31453. default: true
  31454. },
  31455. lucarioFront: {
  31456. height: math.unit(4, "feet"),
  31457. name: "Lucario (Front)",
  31458. image: {
  31459. source: "./media/characters/cat/lucario-front.svg",
  31460. extra: 1149/1019,
  31461. bottom: 84/1233
  31462. },
  31463. form: "lucario",
  31464. default: true
  31465. },
  31466. lucarioBack: {
  31467. height: math.unit(4, "feet"),
  31468. name: "Lucario (Back)",
  31469. image: {
  31470. source: "./media/characters/cat/lucario-back.svg",
  31471. extra: 1190/1059,
  31472. bottom: 33/1223
  31473. },
  31474. form: "lucario"
  31475. },
  31476. megaLucario: {
  31477. height: math.unit(4, "feet"),
  31478. name: "Mega Lucario",
  31479. image: {
  31480. source: "./media/characters/cat/mega-lucario.svg",
  31481. extra: 1515 / 1319,
  31482. bottom: 63 / 1578
  31483. },
  31484. form: "lucario"
  31485. },
  31486. nickit: {
  31487. height: math.unit(2, "feet"),
  31488. name: "Nickit",
  31489. image: {
  31490. source: "./media/characters/cat/nickit.svg",
  31491. extra: 1980 / 1585,
  31492. bottom: 102 / 2082
  31493. },
  31494. form: "nickit",
  31495. default: true
  31496. },
  31497. lopunnyFront: {
  31498. height: math.unit(5, "feet"),
  31499. name: "Lopunny (Front)",
  31500. image: {
  31501. source: "./media/characters/cat/lopunny-front.svg",
  31502. extra: 1782 / 1469,
  31503. bottom: 38 / 1820
  31504. },
  31505. form: "lopunny",
  31506. default: true
  31507. },
  31508. lopunnyBack: {
  31509. height: math.unit(5, "feet"),
  31510. name: "Lopunny (Back)",
  31511. image: {
  31512. source: "./media/characters/cat/lopunny-back.svg",
  31513. extra: 1660 / 1490,
  31514. bottom: 25 / 1685
  31515. },
  31516. form: "lopunny"
  31517. },
  31518. },
  31519. [
  31520. {
  31521. name: "Really small",
  31522. height: math.unit(1, "nm"),
  31523. allForms: true
  31524. },
  31525. {
  31526. name: "Micro",
  31527. height: math.unit(5, "inches"),
  31528. allForms: true
  31529. },
  31530. {
  31531. name: "Normal",
  31532. height: math.unit(5 + 6 / 12, "feet"),
  31533. default: true,
  31534. form: "cat"
  31535. },
  31536. {
  31537. name: "Normal",
  31538. height: math.unit(7, "feet"),
  31539. default: true,
  31540. form: "taur"
  31541. },
  31542. {
  31543. name: "Normal",
  31544. height: math.unit(4, "feet"),
  31545. default: true,
  31546. form: "lucario"
  31547. },
  31548. {
  31549. name: "Normal",
  31550. height: math.unit(2, "feet"),
  31551. default: true,
  31552. form: "nickit"
  31553. },
  31554. {
  31555. name: "Normal",
  31556. height: math.unit(5, "feet"),
  31557. default: true,
  31558. form: "lopunny"
  31559. },
  31560. {
  31561. name: "Macro",
  31562. height: math.unit(50, "feet"),
  31563. allForms: true
  31564. },
  31565. {
  31566. name: "Macro+",
  31567. height: math.unit(150, "feet"),
  31568. allForms: true
  31569. },
  31570. {
  31571. name: "Megamacro",
  31572. height: math.unit(100, "miles"),
  31573. allForms: true
  31574. },
  31575. ],
  31576. {
  31577. "cat": {
  31578. name: "Cat",
  31579. default: true
  31580. },
  31581. "taur": {
  31582. name: "Taur",
  31583. },
  31584. "lucario": {
  31585. name: "Lucario",
  31586. },
  31587. "nickit": {
  31588. name: "Nickit",
  31589. },
  31590. "lopunny": {
  31591. name: "Lopunny",
  31592. }
  31593. }
  31594. ))
  31595. characterMakers.push(() => makeCharacter(
  31596. { name: "Kirina Violet", species: ["korean-jindo-dog"], tags: ["anthro"] },
  31597. {
  31598. front: {
  31599. height: math.unit(63.4, "meters"),
  31600. weight: math.unit(3.28349e+6, "kilograms"),
  31601. name: "Front",
  31602. image: {
  31603. source: "./media/characters/kirina-violet/front.svg",
  31604. extra: 2812 / 2725,
  31605. bottom: 0 / 2812
  31606. }
  31607. },
  31608. back: {
  31609. height: math.unit(63.4, "meters"),
  31610. weight: math.unit(3.28349e+6, "kilograms"),
  31611. name: "Back",
  31612. image: {
  31613. source: "./media/characters/kirina-violet/back.svg",
  31614. extra: 2812 / 2725,
  31615. bottom: 0 / 2812
  31616. }
  31617. },
  31618. mouth: {
  31619. height: math.unit(4.35, "meters"),
  31620. name: "Mouth",
  31621. image: {
  31622. source: "./media/characters/kirina-violet/mouth.svg"
  31623. }
  31624. },
  31625. paw: {
  31626. height: math.unit(5.6, "meters"),
  31627. name: "Paw",
  31628. image: {
  31629. source: "./media/characters/kirina-violet/paw.svg"
  31630. }
  31631. },
  31632. tail: {
  31633. height: math.unit(18, "meters"),
  31634. name: "Tail",
  31635. image: {
  31636. source: "./media/characters/kirina-violet/tail.svg"
  31637. }
  31638. },
  31639. },
  31640. [
  31641. {
  31642. name: "Macro",
  31643. height: math.unit(63.4, "meters"),
  31644. default: true
  31645. },
  31646. ]
  31647. ))
  31648. characterMakers.push(() => makeCharacter(
  31649. { name: "Cat (Gigachu)", species: ["pikachu"], tags: ["anthro"] },
  31650. {
  31651. front: {
  31652. height: math.unit(75, "feet"),
  31653. name: "Front",
  31654. image: {
  31655. source: "./media/characters/cat-gigachu/front.svg",
  31656. extra: 1239/1027,
  31657. bottom: 32/1271
  31658. }
  31659. },
  31660. back: {
  31661. height: math.unit(75, "feet"),
  31662. name: "Back",
  31663. image: {
  31664. source: "./media/characters/cat-gigachu/back.svg",
  31665. extra: 1229/1030,
  31666. bottom: 9/1238
  31667. }
  31668. },
  31669. },
  31670. [
  31671. {
  31672. name: "Dynamax",
  31673. height: math.unit(75, "feet"),
  31674. default: true
  31675. },
  31676. ]
  31677. ))
  31678. characterMakers.push(() => makeCharacter(
  31679. { name: "Sfaiyan", species: ["jackal"], tags: ["anthro"] },
  31680. {
  31681. front: {
  31682. height: math.unit(6, "feet"),
  31683. weight: math.unit(150, "lb"),
  31684. name: "Front",
  31685. image: {
  31686. source: "./media/characters/sfaiyan/front.svg",
  31687. extra: 999 / 978,
  31688. bottom: 5 / 1004
  31689. }
  31690. },
  31691. },
  31692. [
  31693. {
  31694. name: "Normal",
  31695. height: math.unit(1.82, "meters")
  31696. },
  31697. {
  31698. name: "Giant",
  31699. height: math.unit(2.27, "km"),
  31700. default: true
  31701. },
  31702. ]
  31703. ))
  31704. characterMakers.push(() => makeCharacter(
  31705. { name: "Raunehkeli", species: ["monster"], tags: ["anthro"] },
  31706. {
  31707. front: {
  31708. height: math.unit(179, "cm"),
  31709. weight: math.unit(100, "kg"),
  31710. name: "Front",
  31711. image: {
  31712. source: "./media/characters/raunehkeli/front.svg",
  31713. extra: 1934 / 1926,
  31714. bottom: 0 / 1934
  31715. }
  31716. },
  31717. },
  31718. [
  31719. {
  31720. name: "Normal",
  31721. height: math.unit(179, "cm")
  31722. },
  31723. {
  31724. name: "Maximum",
  31725. height: math.unit(575, "meters"),
  31726. default: true
  31727. },
  31728. ]
  31729. ))
  31730. characterMakers.push(() => makeCharacter(
  31731. { name: "Beatrice \"The Behemoth\" Heathers", species: ["husky", "kaiju"], tags: ["anthro"] },
  31732. {
  31733. front: {
  31734. height: math.unit(6, "feet"),
  31735. weight: math.unit(150, "lb"),
  31736. name: "Front",
  31737. image: {
  31738. source: "./media/characters/beatrice-the-behemoth-heathers/front.svg",
  31739. extra: 2625 / 2518,
  31740. bottom: 60 / 2685
  31741. }
  31742. },
  31743. },
  31744. [
  31745. {
  31746. name: "Normal",
  31747. height: math.unit(6 + 2 / 12, "feet")
  31748. },
  31749. {
  31750. name: "Macro",
  31751. height: math.unit(1180, "feet"),
  31752. default: true
  31753. },
  31754. ]
  31755. ))
  31756. characterMakers.push(() => makeCharacter(
  31757. { name: "Lilith Zott", species: ["bat", "kaiju"], tags: ["anthro"] },
  31758. {
  31759. front: {
  31760. height: math.unit(5 + 6 / 12, "feet"),
  31761. weight: math.unit(108, "lb"),
  31762. name: "Front",
  31763. image: {
  31764. source: "./media/characters/lilith-zott/front.svg",
  31765. extra: 2510 / 2238,
  31766. bottom: 100 / 2610
  31767. }
  31768. },
  31769. frontDressed: {
  31770. height: math.unit(5 + 6 / 12, "feet"),
  31771. weight: math.unit(108, "lb"),
  31772. name: "Front (Dressed)",
  31773. image: {
  31774. source: "./media/characters/lilith-zott/front-dressed.svg",
  31775. extra: 2510 / 2238,
  31776. bottom: 100 / 2610
  31777. }
  31778. },
  31779. },
  31780. [
  31781. {
  31782. name: "Normal",
  31783. height: math.unit(5 + 6 / 12, "feet")
  31784. },
  31785. {
  31786. name: "Macro",
  31787. height: math.unit(1030, "feet"),
  31788. default: true
  31789. },
  31790. ]
  31791. ))
  31792. characterMakers.push(() => makeCharacter(
  31793. { name: "Holly \"The Mega Mousky\" Heathers", species: ["mouse", "husky", "kaiju"], tags: ["anthro"] },
  31794. {
  31795. front: {
  31796. height: math.unit(6, "feet"),
  31797. weight: math.unit(150, "lb"),
  31798. name: "Front",
  31799. image: {
  31800. source: "./media/characters/holly-the-mega-mousky-heathers/front.svg",
  31801. extra: 2567 / 2435,
  31802. bottom: 39 / 2606
  31803. }
  31804. },
  31805. frontSuper: {
  31806. height: math.unit(6, "feet"),
  31807. name: "Front (Super)",
  31808. image: {
  31809. source: "./media/characters/holly-the-mega-mousky-heathers/front-super.svg",
  31810. extra: 2567 / 2435,
  31811. bottom: 39 / 2606
  31812. }
  31813. },
  31814. },
  31815. [
  31816. {
  31817. name: "Normal",
  31818. height: math.unit(5 + 10 / 12, "feet")
  31819. },
  31820. {
  31821. name: "Macro",
  31822. height: math.unit(1100, "feet"),
  31823. default: true
  31824. },
  31825. ]
  31826. ))
  31827. characterMakers.push(() => makeCharacter(
  31828. { name: "Sona", species: ["dragon"], tags: ["anthro"] },
  31829. {
  31830. front: {
  31831. height: math.unit(100, "miles"),
  31832. name: "Front",
  31833. image: {
  31834. source: "./media/characters/sona/front.svg",
  31835. extra: 2433 / 2201,
  31836. bottom: 53 / 2486
  31837. }
  31838. },
  31839. foot: {
  31840. height: math.unit(16.1, "miles"),
  31841. name: "Foot",
  31842. image: {
  31843. source: "./media/characters/sona/foot.svg"
  31844. }
  31845. },
  31846. },
  31847. [
  31848. {
  31849. name: "Macro",
  31850. height: math.unit(100, "miles"),
  31851. default: true
  31852. },
  31853. ]
  31854. ))
  31855. characterMakers.push(() => makeCharacter(
  31856. { name: "Bailey", species: ["wolf"], tags: ["anthro"] },
  31857. {
  31858. front: {
  31859. height: math.unit(6, "feet"),
  31860. weight: math.unit(150, "lb"),
  31861. name: "Front",
  31862. image: {
  31863. source: "./media/characters/bailey/front.svg",
  31864. extra: 1778 / 1724,
  31865. bottom: 30 / 1808
  31866. }
  31867. },
  31868. },
  31869. [
  31870. {
  31871. name: "Micro",
  31872. height: math.unit(4, "inches")
  31873. },
  31874. {
  31875. name: "Normal",
  31876. height: math.unit(5 + 5 / 12, "feet"),
  31877. default: true
  31878. },
  31879. {
  31880. name: "Macro",
  31881. height: math.unit(250, "feet")
  31882. },
  31883. {
  31884. name: "Megamacro",
  31885. height: math.unit(100, "miles")
  31886. },
  31887. ]
  31888. ))
  31889. characterMakers.push(() => makeCharacter(
  31890. { name: "Snaps", species: ["cat"], tags: ["anthro"] },
  31891. {
  31892. front: {
  31893. height: math.unit(5 + 2 / 12, "feet"),
  31894. weight: math.unit(120, "lb"),
  31895. name: "Front",
  31896. image: {
  31897. source: "./media/characters/snaps/front.svg",
  31898. extra: 2370 / 2177,
  31899. bottom: 48 / 2418
  31900. }
  31901. },
  31902. back: {
  31903. height: math.unit(5 + 2 / 12, "feet"),
  31904. weight: math.unit(120, "lb"),
  31905. name: "Back",
  31906. image: {
  31907. source: "./media/characters/snaps/back.svg",
  31908. extra: 2408 / 2258,
  31909. bottom: 15 / 2423
  31910. }
  31911. },
  31912. },
  31913. [
  31914. {
  31915. name: "Micro",
  31916. height: math.unit(9, "inches")
  31917. },
  31918. {
  31919. name: "Normal",
  31920. height: math.unit(5 + 2 / 12, "feet"),
  31921. default: true
  31922. },
  31923. {
  31924. name: "Mini Macro",
  31925. height: math.unit(10, "feet")
  31926. },
  31927. ]
  31928. ))
  31929. characterMakers.push(() => makeCharacter(
  31930. { name: "Azteck", species: ["sergal"], tags: ["anthro"] },
  31931. {
  31932. front: {
  31933. height: math.unit(1.8, "meters"),
  31934. weight: math.unit(85, "kg"),
  31935. name: "Front",
  31936. image: {
  31937. source: "./media/characters/azteck/front.svg",
  31938. extra: 2815 / 2625,
  31939. bottom: 89 / 2904
  31940. }
  31941. },
  31942. back: {
  31943. height: math.unit(1.8, "meters"),
  31944. weight: math.unit(85, "kg"),
  31945. name: "Back",
  31946. image: {
  31947. source: "./media/characters/azteck/back.svg",
  31948. extra: 2856 / 2648,
  31949. bottom: 85 / 2941
  31950. }
  31951. },
  31952. frontDressed: {
  31953. height: math.unit(1.8, "meters"),
  31954. weight: math.unit(85, "kg"),
  31955. name: "Front (Dressed)",
  31956. image: {
  31957. source: "./media/characters/azteck/front-dressed.svg",
  31958. extra: 2147 / 2003,
  31959. bottom: 68 / 2215
  31960. }
  31961. },
  31962. head: {
  31963. height: math.unit(0.47, "meters"),
  31964. weight: math.unit(85, "kg"),
  31965. name: "Head",
  31966. image: {
  31967. source: "./media/characters/azteck/head.svg"
  31968. }
  31969. },
  31970. },
  31971. [
  31972. {
  31973. name: "Bite sized",
  31974. height: math.unit(16, "cm")
  31975. },
  31976. {
  31977. name: "Normal",
  31978. height: math.unit(1.8, "meters"),
  31979. default: true
  31980. },
  31981. ]
  31982. ))
  31983. characterMakers.push(() => makeCharacter(
  31984. { name: "Pidge", species: ["hellhound"], tags: ["anthro"] },
  31985. {
  31986. front: {
  31987. height: math.unit(6, "feet"),
  31988. weight: math.unit(150, "lb"),
  31989. name: "Front",
  31990. image: {
  31991. source: "./media/characters/pidge/front.svg",
  31992. extra: 1936/1820,
  31993. bottom: 0/1936
  31994. }
  31995. },
  31996. back: {
  31997. height: math.unit(6, "feet"),
  31998. weight: math.unit(150, "lb"),
  31999. name: "Back",
  32000. image: {
  32001. source: "./media/characters/pidge/back.svg",
  32002. extra: 1938/1843,
  32003. bottom: 0/1938
  32004. }
  32005. },
  32006. casual: {
  32007. height: math.unit(6, "feet"),
  32008. weight: math.unit(150, "lb"),
  32009. name: "Casual",
  32010. image: {
  32011. source: "./media/characters/pidge/casual.svg",
  32012. extra: 1936/1820,
  32013. bottom: 0/1936
  32014. }
  32015. },
  32016. tech: {
  32017. height: math.unit(6, "feet"),
  32018. weight: math.unit(150, "lb"),
  32019. name: "Tech",
  32020. image: {
  32021. source: "./media/characters/pidge/tech.svg",
  32022. extra: 1802/1682,
  32023. bottom: 0/1802
  32024. }
  32025. },
  32026. head: {
  32027. height: math.unit(1.61, "feet"),
  32028. name: "Head",
  32029. image: {
  32030. source: "./media/characters/pidge/head.svg"
  32031. }
  32032. },
  32033. collar: {
  32034. height: math.unit(0.82, "feet"),
  32035. name: "Collar",
  32036. image: {
  32037. source: "./media/characters/pidge/collar.svg"
  32038. }
  32039. },
  32040. },
  32041. [
  32042. {
  32043. name: "Macro",
  32044. height: math.unit(2, "mile"),
  32045. default: true
  32046. },
  32047. {
  32048. name: "PUPPY",
  32049. height: math.unit(20, "miles")
  32050. },
  32051. ]
  32052. ))
  32053. characterMakers.push(() => makeCharacter(
  32054. { name: "En", species: ["maned-wolf", "undead"], tags: ["anthro"] },
  32055. {
  32056. front: {
  32057. height: math.unit(6, "feet"),
  32058. weight: math.unit(150, "lb"),
  32059. name: "Front",
  32060. image: {
  32061. source: "./media/characters/en/front.svg",
  32062. extra: 1697 / 1563,
  32063. bottom: 103 / 1800
  32064. }
  32065. },
  32066. back: {
  32067. height: math.unit(6, "feet"),
  32068. weight: math.unit(150, "lb"),
  32069. name: "Back",
  32070. image: {
  32071. source: "./media/characters/en/back.svg",
  32072. extra: 1700 / 1570,
  32073. bottom: 51 / 1751
  32074. }
  32075. },
  32076. frontDressed: {
  32077. height: math.unit(6, "feet"),
  32078. weight: math.unit(150, "lb"),
  32079. name: "Front (Dressed)",
  32080. image: {
  32081. source: "./media/characters/en/front-dressed.svg",
  32082. extra: 1697 / 1563,
  32083. bottom: 103 / 1800
  32084. }
  32085. },
  32086. backDressed: {
  32087. height: math.unit(6, "feet"),
  32088. weight: math.unit(150, "lb"),
  32089. name: "Back (Dressed)",
  32090. image: {
  32091. source: "./media/characters/en/back-dressed.svg",
  32092. extra: 1700 / 1570,
  32093. bottom: 51 / 1751
  32094. }
  32095. },
  32096. },
  32097. [
  32098. {
  32099. name: "Macro",
  32100. height: math.unit(210, "feet"),
  32101. default: true
  32102. },
  32103. ]
  32104. ))
  32105. characterMakers.push(() => makeCharacter(
  32106. { name: "Haze Orris", species: ["cat", "undead"], tags: ["anthro"] },
  32107. {
  32108. front: {
  32109. height: math.unit(6, "feet"),
  32110. weight: math.unit(150, "lb"),
  32111. name: "Front",
  32112. image: {
  32113. source: "./media/characters/haze-orris/front.svg",
  32114. extra: 3975 / 3525,
  32115. bottom: 137 / 4112
  32116. }
  32117. },
  32118. },
  32119. [
  32120. {
  32121. name: "Micro",
  32122. height: math.unit(150, "mm"),
  32123. default: true
  32124. },
  32125. ]
  32126. ))
  32127. characterMakers.push(() => makeCharacter(
  32128. { name: "Casselene Yaro", species: ["fox"], tags: ["anthro"] },
  32129. {
  32130. front: {
  32131. height: math.unit(6, "feet"),
  32132. weight: math.unit(150, "lb"),
  32133. name: "Front",
  32134. image: {
  32135. source: "./media/characters/casselene-yaro/front.svg",
  32136. extra: 4721 / 4541,
  32137. bottom: 82 / 4803
  32138. }
  32139. },
  32140. back: {
  32141. height: math.unit(6, "feet"),
  32142. weight: math.unit(150, "lb"),
  32143. name: "Back",
  32144. image: {
  32145. source: "./media/characters/casselene-yaro/back.svg",
  32146. extra: 4569 / 4377,
  32147. bottom: 69 / 4638
  32148. }
  32149. },
  32150. dressed: {
  32151. height: math.unit(6, "feet"),
  32152. weight: math.unit(150, "lb"),
  32153. name: "Dressed",
  32154. image: {
  32155. source: "./media/characters/casselene-yaro/dressed.svg",
  32156. extra: 4721 / 4541,
  32157. bottom: 82 / 4803
  32158. }
  32159. },
  32160. maw: {
  32161. height: math.unit(1, "feet"),
  32162. name: "Maw",
  32163. image: {
  32164. source: "./media/characters/casselene-yaro/maw.svg"
  32165. }
  32166. },
  32167. },
  32168. [
  32169. {
  32170. name: "Macro",
  32171. height: math.unit(190, "feet"),
  32172. default: true
  32173. },
  32174. ]
  32175. ))
  32176. characterMakers.push(() => makeCharacter(
  32177. { name: "Platine", species: ["raven"], tags: ["anthro"] },
  32178. {
  32179. front: {
  32180. height: math.unit(10, "feet"),
  32181. weight: math.unit(15015, "lb"),
  32182. name: "Front",
  32183. image: {
  32184. source: "./media/characters/platine/front.svg",
  32185. extra: 1741/1650,
  32186. bottom: 84/1825
  32187. }
  32188. },
  32189. side: {
  32190. height: math.unit(10, "feet"),
  32191. weight: math.unit(15015, "lb"),
  32192. name: "Side",
  32193. image: {
  32194. source: "./media/characters/platine/side.svg",
  32195. extra: 1790/1705,
  32196. bottom: 29/1819
  32197. }
  32198. },
  32199. },
  32200. [
  32201. {
  32202. name: "Normal",
  32203. height: math.unit(10, "feet"),
  32204. default: true
  32205. },
  32206. {
  32207. name: "Macro",
  32208. height: math.unit(100, "feet")
  32209. },
  32210. {
  32211. name: "Megamacro",
  32212. height: math.unit(1000, "feet")
  32213. },
  32214. ]
  32215. ))
  32216. characterMakers.push(() => makeCharacter(
  32217. { name: "Neapolitan Ananassa", species: ["gelato-bee"], tags: ["anthro"] },
  32218. {
  32219. front: {
  32220. height: math.unit(15 + 5 / 12, "feet"),
  32221. weight: math.unit(4600, "lb"),
  32222. name: "Front",
  32223. image: {
  32224. source: "./media/characters/neapolitan-ananassa/front.svg",
  32225. extra: 2903 / 2736,
  32226. bottom: 0 / 2903
  32227. }
  32228. },
  32229. side: {
  32230. height: math.unit(15 + 5 / 12, "feet"),
  32231. weight: math.unit(4600, "lb"),
  32232. name: "Side",
  32233. image: {
  32234. source: "./media/characters/neapolitan-ananassa/side.svg",
  32235. extra: 2925 / 2719,
  32236. bottom: 0 / 2925
  32237. }
  32238. },
  32239. back: {
  32240. height: math.unit(15 + 5 / 12, "feet"),
  32241. weight: math.unit(4600, "lb"),
  32242. name: "Back",
  32243. image: {
  32244. source: "./media/characters/neapolitan-ananassa/back.svg",
  32245. extra: 2903 / 2736,
  32246. bottom: 0 / 2903
  32247. }
  32248. },
  32249. },
  32250. [
  32251. {
  32252. name: "Normal",
  32253. height: math.unit(15 + 5 / 12, "feet"),
  32254. default: true
  32255. },
  32256. {
  32257. name: "Post-Millenium",
  32258. height: math.unit(35 + 5 / 12, "feet")
  32259. },
  32260. {
  32261. name: "Post-Era",
  32262. height: math.unit(450 + 5 / 12, "feet")
  32263. },
  32264. ]
  32265. ))
  32266. characterMakers.push(() => makeCharacter(
  32267. { name: "Pazuzu", species: ["demon"], tags: ["anthro"] },
  32268. {
  32269. front: {
  32270. height: math.unit(300, "meters"),
  32271. weight: math.unit(125000, "tonnes"),
  32272. name: "Front",
  32273. image: {
  32274. source: "./media/characters/pazuzu/front.svg",
  32275. extra: 877 / 794,
  32276. bottom: 47 / 924
  32277. }
  32278. },
  32279. },
  32280. [
  32281. {
  32282. name: "Macro",
  32283. height: math.unit(300, "meters"),
  32284. default: true
  32285. },
  32286. ]
  32287. ))
  32288. characterMakers.push(() => makeCharacter(
  32289. { name: "Aasha", species: ["whale", "seal"], tags: ["anthro"] },
  32290. {
  32291. side: {
  32292. height: math.unit(10 + 7 / 12, "feet"),
  32293. weight: math.unit(2.5, "tons"),
  32294. name: "Side",
  32295. image: {
  32296. source: "./media/characters/aasha/side.svg",
  32297. extra: 1345 / 1245,
  32298. bottom: 111 / 1456
  32299. }
  32300. },
  32301. back: {
  32302. height: math.unit(10 + 7 / 12, "feet"),
  32303. weight: math.unit(2.5, "tons"),
  32304. name: "Back",
  32305. image: {
  32306. source: "./media/characters/aasha/back.svg",
  32307. extra: 1133 / 1057,
  32308. bottom: 257 / 1390
  32309. }
  32310. },
  32311. },
  32312. [
  32313. {
  32314. name: "Normal",
  32315. height: math.unit(10 + 7 / 12, "feet"),
  32316. default: true
  32317. },
  32318. ]
  32319. ))
  32320. characterMakers.push(() => makeCharacter(
  32321. { name: "Nevan", species: ["gardevoir"], tags: ["anthro"] },
  32322. {
  32323. front: {
  32324. height: math.unit(6 + 3 / 12, "feet"),
  32325. name: "Front",
  32326. image: {
  32327. source: "./media/characters/nevan/front.svg",
  32328. extra: 704 / 704,
  32329. bottom: 28 / 732
  32330. }
  32331. },
  32332. back: {
  32333. height: math.unit(6 + 3 / 12, "feet"),
  32334. name: "Back",
  32335. image: {
  32336. source: "./media/characters/nevan/back.svg",
  32337. extra: 714 / 714,
  32338. bottom: 21 / 735
  32339. }
  32340. },
  32341. frontFlaccid: {
  32342. height: math.unit(6 + 3 / 12, "feet"),
  32343. name: "Front (Flaccid)",
  32344. image: {
  32345. source: "./media/characters/nevan/front-flaccid.svg",
  32346. extra: 704 / 704,
  32347. bottom: 28 / 732
  32348. }
  32349. },
  32350. frontErect: {
  32351. height: math.unit(6 + 3 / 12, "feet"),
  32352. name: "Front (Erect)",
  32353. image: {
  32354. source: "./media/characters/nevan/front-erect.svg",
  32355. extra: 704 / 704,
  32356. bottom: 28 / 732
  32357. }
  32358. },
  32359. backFlaccid: {
  32360. height: math.unit(6 + 3 / 12, "feet"),
  32361. name: "Back (Flaccid)",
  32362. image: {
  32363. source: "./media/characters/nevan/back-flaccid.svg",
  32364. extra: 714 / 714,
  32365. bottom: 21 / 735
  32366. }
  32367. },
  32368. },
  32369. [
  32370. {
  32371. name: "Normal",
  32372. height: math.unit(6 + 3 / 12, "feet"),
  32373. default: true
  32374. },
  32375. ]
  32376. ))
  32377. characterMakers.push(() => makeCharacter(
  32378. { name: "Arhan", species: ["kobold"], tags: ["anthro"] },
  32379. {
  32380. front: {
  32381. height: math.unit(4, "feet"),
  32382. name: "Front",
  32383. image: {
  32384. source: "./media/characters/arhan/front.svg",
  32385. extra: 3368 / 3133,
  32386. bottom: 0 / 3368
  32387. }
  32388. },
  32389. side: {
  32390. height: math.unit(4, "feet"),
  32391. name: "Side",
  32392. image: {
  32393. source: "./media/characters/arhan/side.svg",
  32394. extra: 3347 / 3105,
  32395. bottom: 0 / 3347
  32396. }
  32397. },
  32398. tongue: {
  32399. height: math.unit(1.42, "feet"),
  32400. name: "Tongue",
  32401. image: {
  32402. source: "./media/characters/arhan/tongue.svg"
  32403. }
  32404. },
  32405. head: {
  32406. height: math.unit(0.85, "feet"),
  32407. name: "Head",
  32408. image: {
  32409. source: "./media/characters/arhan/head.svg"
  32410. }
  32411. },
  32412. },
  32413. [
  32414. {
  32415. name: "Normal",
  32416. height: math.unit(4, "feet"),
  32417. default: true
  32418. },
  32419. ]
  32420. ))
  32421. characterMakers.push(() => makeCharacter(
  32422. { name: "DigiDuncan", species: ["human"], tags: ["anthro"] },
  32423. {
  32424. front: {
  32425. height: math.unit(5 + 7.5 / 12, "feet"),
  32426. weight: math.unit(120, "lb"),
  32427. name: "Front",
  32428. image: {
  32429. source: "./media/characters/digi-duncan/front.svg",
  32430. extra: 330 / 326,
  32431. bottom: 16 / 346
  32432. }
  32433. },
  32434. side: {
  32435. height: math.unit(5 + 7.5 / 12, "feet"),
  32436. weight: math.unit(120, "lb"),
  32437. name: "Side",
  32438. image: {
  32439. source: "./media/characters/digi-duncan/side.svg",
  32440. extra: 341 / 337,
  32441. bottom: 1 / 342
  32442. }
  32443. },
  32444. back: {
  32445. height: math.unit(5 + 7.5 / 12, "feet"),
  32446. weight: math.unit(120, "lb"),
  32447. name: "Back",
  32448. image: {
  32449. source: "./media/characters/digi-duncan/back.svg",
  32450. extra: 330 / 326,
  32451. bottom: 12 / 342
  32452. }
  32453. },
  32454. },
  32455. [
  32456. {
  32457. name: "Speck",
  32458. height: math.unit(0.25, "mm")
  32459. },
  32460. {
  32461. name: "Micro",
  32462. height: math.unit(5, "mm")
  32463. },
  32464. {
  32465. name: "Tiny",
  32466. height: math.unit(0.5, "inches"),
  32467. default: true
  32468. },
  32469. {
  32470. name: "Human",
  32471. height: math.unit(5 + 7.5 / 12, "feet")
  32472. },
  32473. {
  32474. name: "Minigiant",
  32475. height: math.unit(8 + 5.25, "feet")
  32476. },
  32477. {
  32478. name: "Giant",
  32479. height: math.unit(2000, "feet")
  32480. },
  32481. {
  32482. name: "Mega",
  32483. height: math.unit(371.1, "miles")
  32484. },
  32485. ]
  32486. ))
  32487. characterMakers.push(() => makeCharacter(
  32488. { name: "Jagaz Soulbreaker", species: ["charr"], tags: ["anthro"] },
  32489. {
  32490. front: {
  32491. height: math.unit(2, "meters"),
  32492. weight: math.unit(350, "kg"),
  32493. name: "Front",
  32494. image: {
  32495. source: "./media/characters/jagaz-soulbreaker/front.svg",
  32496. extra: 898 / 838,
  32497. bottom: 9 / 907
  32498. }
  32499. },
  32500. },
  32501. [
  32502. {
  32503. name: "Micro",
  32504. height: math.unit(8, "meters")
  32505. },
  32506. {
  32507. name: "Normal",
  32508. height: math.unit(50, "meters"),
  32509. default: true
  32510. },
  32511. {
  32512. name: "Macro",
  32513. height: math.unit(500, "meters")
  32514. },
  32515. ]
  32516. ))
  32517. characterMakers.push(() => makeCharacter(
  32518. { name: "Khardesh", species: ["dragon"], tags: ["anthro"] },
  32519. {
  32520. front: {
  32521. height: math.unit(6 + 6 / 12, "feet"),
  32522. name: "Front",
  32523. image: {
  32524. source: "./media/characters/khardesh/front.svg",
  32525. extra: 1788/1596,
  32526. bottom: 66/1854
  32527. }
  32528. },
  32529. back: {
  32530. height: math.unit(6 + 6 / 12, "feet"),
  32531. name: "Back",
  32532. image: {
  32533. source: "./media/characters/khardesh/back.svg",
  32534. extra: 1781/1584,
  32535. bottom: 68/1849
  32536. }
  32537. },
  32538. },
  32539. [
  32540. {
  32541. name: "Normal",
  32542. height: math.unit(6 + 6 / 12, "feet"),
  32543. default: true
  32544. },
  32545. {
  32546. name: "Normal+",
  32547. height: math.unit(4, "meters")
  32548. },
  32549. {
  32550. name: "Macro",
  32551. height: math.unit(50, "meters")
  32552. },
  32553. {
  32554. name: "Macro+",
  32555. height: math.unit(100, "meters")
  32556. },
  32557. {
  32558. name: "Megamacro",
  32559. height: math.unit(20, "km")
  32560. },
  32561. ]
  32562. ))
  32563. characterMakers.push(() => makeCharacter(
  32564. { name: "Kosho", species: ["kirin"], tags: ["anthro"] },
  32565. {
  32566. front: {
  32567. height: math.unit(6, "feet"),
  32568. weight: math.unit(150, "lb"),
  32569. name: "Front",
  32570. image: {
  32571. source: "./media/characters/kosho/front.svg",
  32572. extra: 1847 / 1847,
  32573. bottom: 86 / 1933
  32574. }
  32575. },
  32576. },
  32577. [
  32578. {
  32579. name: "Second-stage micro",
  32580. height: math.unit(0.5, "inches")
  32581. },
  32582. {
  32583. name: "First-stage micro",
  32584. height: math.unit(6, "inches")
  32585. },
  32586. {
  32587. name: "Normal",
  32588. height: math.unit(6, "feet"),
  32589. default: true
  32590. },
  32591. {
  32592. name: "First-stage macro",
  32593. height: math.unit(72, "feet")
  32594. },
  32595. {
  32596. name: "Second-stage macro",
  32597. height: math.unit(864, "feet")
  32598. },
  32599. ]
  32600. ))
  32601. characterMakers.push(() => makeCharacter(
  32602. { name: "Hydra", species: ["frog"], tags: ["anthro"] },
  32603. {
  32604. normal: {
  32605. height: math.unit(4 + 6 / 12, "feet"),
  32606. name: "Normal",
  32607. image: {
  32608. source: "./media/characters/hydra/normal.svg",
  32609. extra: 2833 / 2634,
  32610. bottom: 68 / 2901
  32611. }
  32612. },
  32613. smol: {
  32614. height: math.unit(0.705, "inches"),
  32615. name: "Smol",
  32616. image: {
  32617. source: "./media/characters/hydra/smol.svg",
  32618. extra: 2715 / 2540,
  32619. bottom: 0 / 2715
  32620. }
  32621. },
  32622. },
  32623. [
  32624. {
  32625. name: "Normal",
  32626. height: math.unit(4 + 6 / 12, "feet"),
  32627. default: true
  32628. }
  32629. ]
  32630. ))
  32631. characterMakers.push(() => makeCharacter(
  32632. { name: "Daz", species: ["ant"], tags: ["anthro"] },
  32633. {
  32634. front: {
  32635. height: math.unit(0.6, "cm"),
  32636. name: "Front",
  32637. image: {
  32638. source: "./media/characters/daz/front.svg",
  32639. extra: 1682 / 1164,
  32640. bottom: 42 / 1724
  32641. }
  32642. },
  32643. },
  32644. [
  32645. {
  32646. name: "Normal",
  32647. height: math.unit(0.6, "cm"),
  32648. default: true
  32649. },
  32650. ]
  32651. ))
  32652. characterMakers.push(() => makeCharacter(
  32653. { name: "Theo (Pangolin)", species: ["pangolin"], tags: ["anthro"] },
  32654. {
  32655. front: {
  32656. height: math.unit(6, "feet"),
  32657. weight: math.unit(235, "lb"),
  32658. name: "Front",
  32659. image: {
  32660. source: "./media/characters/theo-pangolin/front.svg",
  32661. extra: 1996 / 1969,
  32662. bottom: 115 / 2111
  32663. }
  32664. },
  32665. back: {
  32666. height: math.unit(6, "feet"),
  32667. weight: math.unit(235, "lb"),
  32668. name: "Back",
  32669. image: {
  32670. source: "./media/characters/theo-pangolin/back.svg",
  32671. extra: 1979 / 1979,
  32672. bottom: 40 / 2019
  32673. }
  32674. },
  32675. feral: {
  32676. height: math.unit(2, "feet"),
  32677. weight: math.unit(30, "lb"),
  32678. name: "Feral",
  32679. image: {
  32680. source: "./media/characters/theo-pangolin/feral.svg",
  32681. extra: 803 / 791,
  32682. bottom: 181 / 984
  32683. }
  32684. },
  32685. footFive: {
  32686. height: math.unit(1.43, "feet"),
  32687. name: "Foot (Five Toes)",
  32688. image: {
  32689. source: "./media/characters/theo-pangolin/foot-five.svg"
  32690. }
  32691. },
  32692. footFour: {
  32693. height: math.unit(1.43, "feet"),
  32694. name: "Foot (Four Toes)",
  32695. image: {
  32696. source: "./media/characters/theo-pangolin/foot-four.svg"
  32697. }
  32698. },
  32699. handFour: {
  32700. height: math.unit(0.81, "feet"),
  32701. name: "Hand (Four Fingers)",
  32702. image: {
  32703. source: "./media/characters/theo-pangolin/hand-four.svg"
  32704. }
  32705. },
  32706. handThree: {
  32707. height: math.unit(0.81, "feet"),
  32708. name: "Hand (Three Fingers)",
  32709. image: {
  32710. source: "./media/characters/theo-pangolin/hand-three.svg"
  32711. }
  32712. },
  32713. headFront: {
  32714. height: math.unit(1.37, "feet"),
  32715. name: "Head (Front)",
  32716. image: {
  32717. source: "./media/characters/theo-pangolin/head-front.svg"
  32718. }
  32719. },
  32720. headSide: {
  32721. height: math.unit(1.43, "feet"),
  32722. name: "Head (Side)",
  32723. image: {
  32724. source: "./media/characters/theo-pangolin/head-side.svg"
  32725. }
  32726. },
  32727. tongue: {
  32728. height: math.unit(2.29, "feet"),
  32729. name: "Tongue",
  32730. image: {
  32731. source: "./media/characters/theo-pangolin/tongue.svg"
  32732. }
  32733. },
  32734. },
  32735. [
  32736. {
  32737. name: "Normal",
  32738. height: math.unit(6, "feet")
  32739. },
  32740. {
  32741. name: "Macro",
  32742. height: math.unit(400, "feet"),
  32743. default: true
  32744. },
  32745. ]
  32746. ))
  32747. characterMakers.push(() => makeCharacter(
  32748. { name: "Renée", species: ["mouse"], tags: ["anthro"] },
  32749. {
  32750. front: {
  32751. height: math.unit(6, "inches"),
  32752. weight: math.unit(0.036, "kg"),
  32753. name: "Front",
  32754. image: {
  32755. source: "./media/characters/renée/front.svg",
  32756. extra: 900 / 886,
  32757. bottom: 8 / 908
  32758. }
  32759. },
  32760. },
  32761. [
  32762. {
  32763. name: "Nano",
  32764. height: math.unit(1, "nm")
  32765. },
  32766. {
  32767. name: "Micro",
  32768. height: math.unit(1, "mm")
  32769. },
  32770. {
  32771. name: "Normal",
  32772. height: math.unit(6, "inches")
  32773. },
  32774. {
  32775. name: "Macro",
  32776. height: math.unit(2000, "feet"),
  32777. default: true
  32778. },
  32779. {
  32780. name: "Megamacro",
  32781. height: math.unit(2, "km")
  32782. },
  32783. {
  32784. name: "Gigamacro",
  32785. height: math.unit(2000, "km")
  32786. },
  32787. {
  32788. name: "Teramacro",
  32789. height: math.unit(250000, "km")
  32790. },
  32791. ]
  32792. ))
  32793. characterMakers.push(() => makeCharacter(
  32794. { name: "Caledvwlch", species: ["unicorn"], tags: ["anthro"] },
  32795. {
  32796. front: {
  32797. height: math.unit(4, "meters"),
  32798. weight: math.unit(150, "kg"),
  32799. name: "Front",
  32800. image: {
  32801. source: "./media/characters/caledvwlch/front.svg",
  32802. extra: 1757/1537,
  32803. bottom: 31/1788
  32804. }
  32805. },
  32806. side: {
  32807. height: math.unit(4, "meters"),
  32808. weight: math.unit(150, "kg"),
  32809. name: "Side",
  32810. image: {
  32811. source: "./media/characters/caledvwlch/side.svg",
  32812. extra: 1605 / 1536,
  32813. bottom: 31 / 1636
  32814. }
  32815. },
  32816. back: {
  32817. height: math.unit(4, "meters"),
  32818. weight: math.unit(150, "kg"),
  32819. name: "Back",
  32820. image: {
  32821. source: "./media/characters/caledvwlch/back.svg",
  32822. extra: 1635 / 1565,
  32823. bottom: 27 / 1662
  32824. }
  32825. },
  32826. },
  32827. [
  32828. {
  32829. name: "\"Incognito\"",
  32830. height: math.unit(4, "meters")
  32831. },
  32832. {
  32833. name: "Small rampage",
  32834. height: math.unit(600, "meters")
  32835. },
  32836. {
  32837. name: "Mega",
  32838. height: math.unit(30, "km")
  32839. },
  32840. {
  32841. name: "Home-size",
  32842. height: math.unit(50, "km"),
  32843. default: true
  32844. },
  32845. {
  32846. name: "Giga",
  32847. height: math.unit(300, "km")
  32848. },
  32849. {
  32850. name: "Lounging",
  32851. height: math.unit(11000, "km")
  32852. },
  32853. {
  32854. name: "Planet snacking",
  32855. height: math.unit(2000000, "km")
  32856. },
  32857. ]
  32858. ))
  32859. characterMakers.push(() => makeCharacter(
  32860. { name: "Sapphire Svell", species: ["dragon"], tags: ["anthro"] },
  32861. {
  32862. front: {
  32863. height: math.unit(6, "feet"),
  32864. weight: math.unit(215, "lb"),
  32865. name: "Front",
  32866. image: {
  32867. source: "./media/characters/sapphire-svell/front.svg",
  32868. extra: 495 / 455,
  32869. bottom: 20 / 515
  32870. }
  32871. },
  32872. back: {
  32873. height: math.unit(6, "feet"),
  32874. weight: math.unit(216, "lb"),
  32875. name: "Back",
  32876. image: {
  32877. source: "./media/characters/sapphire-svell/back.svg",
  32878. extra: 497 / 477,
  32879. bottom: 7 / 504
  32880. }
  32881. },
  32882. maw: {
  32883. height: math.unit(1.57, "feet"),
  32884. name: "Maw",
  32885. image: {
  32886. source: "./media/characters/sapphire-svell/maw.svg"
  32887. }
  32888. },
  32889. foot: {
  32890. height: math.unit(1.07, "feet"),
  32891. name: "Foot",
  32892. image: {
  32893. source: "./media/characters/sapphire-svell/foot.svg"
  32894. }
  32895. },
  32896. toering: {
  32897. height: math.unit(1.7, "inch"),
  32898. name: "Toering",
  32899. image: {
  32900. source: "./media/characters/sapphire-svell/toering.svg"
  32901. }
  32902. },
  32903. },
  32904. [
  32905. {
  32906. name: "Normal",
  32907. height: math.unit(300, "feet"),
  32908. default: true
  32909. },
  32910. {
  32911. name: "Augmented",
  32912. height: math.unit(1250, "feet")
  32913. },
  32914. {
  32915. name: "Unleashed",
  32916. height: math.unit(3000, "feet")
  32917. },
  32918. ]
  32919. ))
  32920. characterMakers.push(() => makeCharacter(
  32921. { name: "Glitch Flux", species: ["wolf"], tags: ["feral"] },
  32922. {
  32923. side: {
  32924. height: math.unit(2 + 3 / 12, "feet"),
  32925. weight: math.unit(110, "lb"),
  32926. name: "Side",
  32927. image: {
  32928. source: "./media/characters/glitch-flux/side.svg",
  32929. extra: 997 / 805,
  32930. bottom: 20 / 1017
  32931. }
  32932. },
  32933. },
  32934. [
  32935. {
  32936. name: "Normal",
  32937. height: math.unit(2 + 3 / 12, "feet"),
  32938. default: true
  32939. },
  32940. ]
  32941. ))
  32942. characterMakers.push(() => makeCharacter(
  32943. { name: "Mid", species: ["cat"], tags: ["anthro"] },
  32944. {
  32945. front: {
  32946. height: math.unit(4, "meters"),
  32947. name: "Front",
  32948. image: {
  32949. source: "./media/characters/mid/front.svg",
  32950. extra: 507 / 476,
  32951. bottom: 17 / 524
  32952. }
  32953. },
  32954. back: {
  32955. height: math.unit(4, "meters"),
  32956. name: "Back",
  32957. image: {
  32958. source: "./media/characters/mid/back.svg",
  32959. extra: 519 / 487,
  32960. bottom: 7 / 526
  32961. }
  32962. },
  32963. stuck: {
  32964. height: math.unit(2.2, "meters"),
  32965. name: "Stuck",
  32966. image: {
  32967. source: "./media/characters/mid/stuck.svg",
  32968. extra: 1951 / 1869,
  32969. bottom: 88 / 2039
  32970. }
  32971. }
  32972. },
  32973. [
  32974. {
  32975. name: "Normal",
  32976. height: math.unit(4, "meters"),
  32977. default: true
  32978. },
  32979. {
  32980. name: "Big",
  32981. height: math.unit(10, "meters")
  32982. },
  32983. {
  32984. name: "Macro",
  32985. height: math.unit(800, "meters")
  32986. },
  32987. {
  32988. name: "Megamacro",
  32989. height: math.unit(100, "km")
  32990. },
  32991. {
  32992. name: "Overgrown",
  32993. height: math.unit(1, "parsec")
  32994. },
  32995. ]
  32996. ))
  32997. characterMakers.push(() => makeCharacter(
  32998. { name: "Iris", species: ["tiger"], tags: ["anthro"] },
  32999. {
  33000. front: {
  33001. height: math.unit(2.5, "meters"),
  33002. weight: math.unit(225, "kg"),
  33003. name: "Front",
  33004. image: {
  33005. source: "./media/characters/iris/front.svg",
  33006. extra: 3348 / 3251,
  33007. bottom: 205 / 3553
  33008. }
  33009. },
  33010. maw: {
  33011. height: math.unit(0.56, "meter"),
  33012. name: "Maw",
  33013. image: {
  33014. source: "./media/characters/iris/maw.svg"
  33015. }
  33016. },
  33017. },
  33018. [
  33019. {
  33020. name: "Mewter cat",
  33021. height: math.unit(1.2, "meters")
  33022. },
  33023. {
  33024. name: "Normal",
  33025. height: math.unit(2.5, "meters"),
  33026. default: true
  33027. },
  33028. {
  33029. name: "Minimacro",
  33030. height: math.unit(18, "feet")
  33031. },
  33032. {
  33033. name: "Macro",
  33034. height: math.unit(140, "feet")
  33035. },
  33036. {
  33037. name: "Macro+",
  33038. height: math.unit(180, "meters")
  33039. },
  33040. {
  33041. name: "Megamacro",
  33042. height: math.unit(2746, "meters")
  33043. },
  33044. ]
  33045. ))
  33046. characterMakers.push(() => makeCharacter(
  33047. { name: "Axel", species: ["raven"], tags: ["anthro"] },
  33048. {
  33049. front: {
  33050. height: math.unit(6, "feet"),
  33051. weight: math.unit(135, "lb"),
  33052. name: "Front",
  33053. image: {
  33054. source: "./media/characters/axel/front.svg",
  33055. extra: 908 / 908,
  33056. bottom: 58 / 966
  33057. }
  33058. },
  33059. side: {
  33060. height: math.unit(6, "feet"),
  33061. weight: math.unit(135, "lb"),
  33062. name: "Side",
  33063. image: {
  33064. source: "./media/characters/axel/side.svg",
  33065. extra: 958 / 958,
  33066. bottom: 11 / 969
  33067. }
  33068. },
  33069. back: {
  33070. height: math.unit(6, "feet"),
  33071. weight: math.unit(135, "lb"),
  33072. name: "Back",
  33073. image: {
  33074. source: "./media/characters/axel/back.svg",
  33075. extra: 887 / 887,
  33076. bottom: 34 / 921
  33077. }
  33078. },
  33079. head: {
  33080. height: math.unit(1.07, "feet"),
  33081. name: "Head",
  33082. image: {
  33083. source: "./media/characters/axel/head.svg"
  33084. }
  33085. },
  33086. beak: {
  33087. height: math.unit(1.4, "feet"),
  33088. name: "Beak",
  33089. image: {
  33090. source: "./media/characters/axel/beak.svg"
  33091. }
  33092. },
  33093. beakSide: {
  33094. height: math.unit(1.4, "feet"),
  33095. name: "Beak Side",
  33096. image: {
  33097. source: "./media/characters/axel/beak-side.svg"
  33098. }
  33099. },
  33100. sheath: {
  33101. height: math.unit(0.5, "feet"),
  33102. name: "Sheath",
  33103. image: {
  33104. source: "./media/characters/axel/sheath.svg"
  33105. }
  33106. },
  33107. dick: {
  33108. height: math.unit(0.98, "feet"),
  33109. name: "Dick",
  33110. image: {
  33111. source: "./media/characters/axel/dick.svg"
  33112. }
  33113. },
  33114. },
  33115. [
  33116. {
  33117. name: "Macro",
  33118. height: math.unit(68, "meters"),
  33119. default: true
  33120. },
  33121. ]
  33122. ))
  33123. characterMakers.push(() => makeCharacter(
  33124. { name: "Joanna", species: ["wolf"], tags: ["anthro"] },
  33125. {
  33126. front: {
  33127. height: math.unit(3.5, "meters"),
  33128. weight: math.unit(1200, "kg"),
  33129. name: "Front",
  33130. image: {
  33131. source: "./media/characters/joanna/front.svg",
  33132. extra: 1596 / 1488,
  33133. bottom: 29 / 1625
  33134. }
  33135. },
  33136. back: {
  33137. height: math.unit(3.5, "meters"),
  33138. weight: math.unit(1200, "kg"),
  33139. name: "Back",
  33140. image: {
  33141. source: "./media/characters/joanna/back.svg",
  33142. extra: 1594 / 1495,
  33143. bottom: 26 / 1620
  33144. }
  33145. },
  33146. frontShorts: {
  33147. height: math.unit(3.5, "meters"),
  33148. weight: math.unit(1200, "kg"),
  33149. name: "Front (Shorts)",
  33150. image: {
  33151. source: "./media/characters/joanna/front-shorts.svg",
  33152. extra: 1596 / 1488,
  33153. bottom: 29 / 1625
  33154. }
  33155. },
  33156. frontBiker: {
  33157. height: math.unit(3.5, "meters"),
  33158. weight: math.unit(1200, "kg"),
  33159. name: "Front (Biker)",
  33160. image: {
  33161. source: "./media/characters/joanna/front-biker.svg",
  33162. extra: 1596 / 1488,
  33163. bottom: 29 / 1625
  33164. }
  33165. },
  33166. backBiker: {
  33167. height: math.unit(3.5, "meters"),
  33168. weight: math.unit(1200, "kg"),
  33169. name: "Back (Biker)",
  33170. image: {
  33171. source: "./media/characters/joanna/back-biker.svg",
  33172. extra: 1594 / 1495,
  33173. bottom: 88 / 1682
  33174. }
  33175. },
  33176. bikeLeft: {
  33177. height: math.unit(2.4, "meters"),
  33178. weight: math.unit(1600, "kg"),
  33179. name: "Bike (Left)",
  33180. image: {
  33181. source: "./media/characters/joanna/bike-left.svg",
  33182. extra: 720 / 720,
  33183. bottom: 8 / 728
  33184. }
  33185. },
  33186. bikeRight: {
  33187. height: math.unit(2.4, "meters"),
  33188. weight: math.unit(1600, "kg"),
  33189. name: "Bike (Right)",
  33190. image: {
  33191. source: "./media/characters/joanna/bike-right.svg",
  33192. extra: 720 / 720,
  33193. bottom: 8 / 728
  33194. }
  33195. },
  33196. },
  33197. [
  33198. {
  33199. name: "Incognito",
  33200. height: math.unit(3.5, "meters")
  33201. },
  33202. {
  33203. name: "Casual Big",
  33204. height: math.unit(200, "meters")
  33205. },
  33206. {
  33207. name: "Macro",
  33208. height: math.unit(600, "meters")
  33209. },
  33210. {
  33211. name: "Original",
  33212. height: math.unit(20, "km"),
  33213. default: true
  33214. },
  33215. {
  33216. name: "Giga",
  33217. height: math.unit(400, "km")
  33218. },
  33219. {
  33220. name: "Lounging",
  33221. height: math.unit(1500, "km")
  33222. },
  33223. {
  33224. name: "Planetary",
  33225. height: math.unit(200000, "km")
  33226. },
  33227. ]
  33228. ))
  33229. characterMakers.push(() => makeCharacter(
  33230. { name: "Hugo Sigil", species: ["cat"], tags: ["anthro"] },
  33231. {
  33232. front: {
  33233. height: math.unit(6, "feet"),
  33234. weight: math.unit(150, "lb"),
  33235. name: "Front",
  33236. image: {
  33237. source: "./media/characters/hugo-sigil/front.svg",
  33238. extra: 522 / 500,
  33239. bottom: 2 / 524
  33240. }
  33241. },
  33242. back: {
  33243. height: math.unit(6, "feet"),
  33244. weight: math.unit(150, "lb"),
  33245. name: "Back",
  33246. image: {
  33247. source: "./media/characters/hugo-sigil/back.svg",
  33248. extra: 519 / 495,
  33249. bottom: 5 / 524
  33250. }
  33251. },
  33252. maw: {
  33253. height: math.unit(1.4, "feet"),
  33254. weight: math.unit(150, "lb"),
  33255. name: "Maw",
  33256. image: {
  33257. source: "./media/characters/hugo-sigil/maw.svg"
  33258. }
  33259. },
  33260. feet: {
  33261. height: math.unit(1.56, "feet"),
  33262. weight: math.unit(150, "lb"),
  33263. name: "Feet",
  33264. image: {
  33265. source: "./media/characters/hugo-sigil/feet.svg",
  33266. extra: 177 / 177,
  33267. bottom: 12 / 189
  33268. }
  33269. },
  33270. },
  33271. [
  33272. {
  33273. name: "Normal",
  33274. height: math.unit(6, "feet")
  33275. },
  33276. {
  33277. name: "Macro",
  33278. height: math.unit(200, "feet"),
  33279. default: true
  33280. },
  33281. ]
  33282. ))
  33283. characterMakers.push(() => makeCharacter(
  33284. { name: "Peri", species: ["husky"], tags: ["anthro"] },
  33285. {
  33286. front: {
  33287. height: math.unit(6, "feet"),
  33288. weight: math.unit(150, "lb"),
  33289. name: "Front",
  33290. image: {
  33291. source: "./media/characters/peri/front.svg",
  33292. extra: 2354 / 2233,
  33293. bottom: 49 / 2403
  33294. }
  33295. },
  33296. },
  33297. [
  33298. {
  33299. name: "Really Small",
  33300. height: math.unit(1, "nm")
  33301. },
  33302. {
  33303. name: "Micro",
  33304. height: math.unit(4, "inches")
  33305. },
  33306. {
  33307. name: "Normal",
  33308. height: math.unit(7, "inches"),
  33309. default: true
  33310. },
  33311. {
  33312. name: "Macro",
  33313. height: math.unit(400, "feet")
  33314. },
  33315. {
  33316. name: "Megamacro",
  33317. height: math.unit(100, "miles")
  33318. },
  33319. ]
  33320. ))
  33321. characterMakers.push(() => makeCharacter(
  33322. { name: "Issilora", species: ["dragon"], tags: ["anthro"] },
  33323. {
  33324. frontSlim: {
  33325. height: math.unit(7, "feet"),
  33326. name: "Front (Slim)",
  33327. image: {
  33328. source: "./media/characters/issilora/front-slim.svg",
  33329. extra: 529 / 449,
  33330. bottom: 53 / 582
  33331. }
  33332. },
  33333. sideSlim: {
  33334. height: math.unit(7, "feet"),
  33335. name: "Side (Slim)",
  33336. image: {
  33337. source: "./media/characters/issilora/side-slim.svg",
  33338. extra: 570 / 480,
  33339. bottom: 30 / 600
  33340. }
  33341. },
  33342. backSlim: {
  33343. height: math.unit(7, "feet"),
  33344. name: "Back (Slim)",
  33345. image: {
  33346. source: "./media/characters/issilora/back-slim.svg",
  33347. extra: 537 / 455,
  33348. bottom: 46 / 583
  33349. }
  33350. },
  33351. frontBuff: {
  33352. height: math.unit(7, "feet"),
  33353. name: "Front (Buff)",
  33354. image: {
  33355. source: "./media/characters/issilora/front-buff.svg",
  33356. extra: 2310 / 2035,
  33357. bottom: 335 / 2645
  33358. }
  33359. },
  33360. head: {
  33361. height: math.unit(1.94, "feet"),
  33362. name: "Head",
  33363. image: {
  33364. source: "./media/characters/issilora/head.svg"
  33365. }
  33366. },
  33367. },
  33368. [
  33369. {
  33370. name: "Minimum",
  33371. height: math.unit(7, "feet")
  33372. },
  33373. {
  33374. name: "Comfortable",
  33375. height: math.unit(17, "feet")
  33376. },
  33377. {
  33378. name: "Fun Size",
  33379. height: math.unit(47, "feet")
  33380. },
  33381. {
  33382. name: "Natural Macro",
  33383. height: math.unit(137, "feet"),
  33384. default: true
  33385. },
  33386. {
  33387. name: "Maximum Kaiju",
  33388. height: math.unit(397, "feet")
  33389. },
  33390. ]
  33391. ))
  33392. characterMakers.push(() => makeCharacter(
  33393. { name: "Irb'iiritaahn", species: ["uragi'viidorn"], tags: ["taur"] },
  33394. {
  33395. front: {
  33396. height: math.unit(50 + 9/12, "feet"),
  33397. weight: math.unit(32.8, "tons"),
  33398. name: "Front",
  33399. image: {
  33400. source: "./media/characters/irb'iiritaahn/front.svg",
  33401. extra: 1878/1826,
  33402. bottom: 326/2204
  33403. }
  33404. },
  33405. back: {
  33406. height: math.unit(50 + 9/12, "feet"),
  33407. weight: math.unit(32.8, "tons"),
  33408. name: "Back",
  33409. image: {
  33410. source: "./media/characters/irb'iiritaahn/back.svg",
  33411. extra: 2052/2018,
  33412. bottom: 152/2204
  33413. }
  33414. },
  33415. head: {
  33416. height: math.unit(12.86, "feet"),
  33417. name: "Head",
  33418. image: {
  33419. source: "./media/characters/irb'iiritaahn/head.svg"
  33420. }
  33421. },
  33422. maw: {
  33423. height: math.unit(9.66, "feet"),
  33424. name: "Maw",
  33425. image: {
  33426. source: "./media/characters/irb'iiritaahn/maw.svg"
  33427. }
  33428. },
  33429. frontDick: {
  33430. height: math.unit(8.78461, "feet"),
  33431. name: "Front Dick",
  33432. image: {
  33433. source: "./media/characters/irb'iiritaahn/front-dick.svg"
  33434. }
  33435. },
  33436. rearDick: {
  33437. height: math.unit(8.78461, "feet"),
  33438. name: "Rear Dick",
  33439. image: {
  33440. source: "./media/characters/irb'iiritaahn/rear-dick.svg"
  33441. }
  33442. },
  33443. rearDickUnfolded: {
  33444. height: math.unit(8.78, "feet"),
  33445. name: "Rear Dick (Unfolded)",
  33446. image: {
  33447. source: "./media/characters/irb'iiritaahn/rear-dick-unfolded.svg"
  33448. }
  33449. },
  33450. wings: {
  33451. height: math.unit(43, "feet"),
  33452. name: "Wings",
  33453. image: {
  33454. source: "./media/characters/irb'iiritaahn/wings.svg"
  33455. }
  33456. },
  33457. },
  33458. [
  33459. {
  33460. name: "Macro",
  33461. height: math.unit(50 + 9/12, "feet"),
  33462. default: true
  33463. },
  33464. ]
  33465. ))
  33466. characterMakers.push(() => makeCharacter(
  33467. { name: "Irbisgreif", species: ["gryphdelphais"], tags: ["anthro"] },
  33468. {
  33469. front: {
  33470. height: math.unit(205, "cm"),
  33471. weight: math.unit(102, "kg"),
  33472. name: "Front",
  33473. image: {
  33474. source: "./media/characters/irbisgreif/front.svg",
  33475. extra: 785/706,
  33476. bottom: 13/798
  33477. }
  33478. },
  33479. back: {
  33480. height: math.unit(205, "cm"),
  33481. weight: math.unit(102, "kg"),
  33482. name: "Back",
  33483. image: {
  33484. source: "./media/characters/irbisgreif/back.svg",
  33485. extra: 713/701,
  33486. bottom: 26/739
  33487. }
  33488. },
  33489. frontDressed: {
  33490. height: math.unit(216, "cm"),
  33491. weight: math.unit(102, "kg"),
  33492. name: "Front-dressed",
  33493. image: {
  33494. source: "./media/characters/irbisgreif/front-dressed.svg",
  33495. extra: 902/776,
  33496. bottom: 14/916
  33497. }
  33498. },
  33499. sideDressed: {
  33500. height: math.unit(195, "cm"),
  33501. weight: math.unit(102, "kg"),
  33502. name: "Side-dressed",
  33503. image: {
  33504. source: "./media/characters/irbisgreif/side-dressed.svg",
  33505. extra: 788/688,
  33506. bottom: 21/809
  33507. }
  33508. },
  33509. backDressed: {
  33510. height: math.unit(216, "cm"),
  33511. weight: math.unit(102, "kg"),
  33512. name: "Back-dressed",
  33513. image: {
  33514. source: "./media/characters/irbisgreif/back-dressed.svg",
  33515. extra: 901/783,
  33516. bottom: 10/911
  33517. }
  33518. },
  33519. dick: {
  33520. height: math.unit(0.49, "feet"),
  33521. name: "Dick",
  33522. image: {
  33523. source: "./media/characters/irbisgreif/dick.svg"
  33524. }
  33525. },
  33526. wingTop: {
  33527. height: math.unit(1.93 , "feet"),
  33528. name: "Wing-top",
  33529. image: {
  33530. source: "./media/characters/irbisgreif/wing-top.svg"
  33531. }
  33532. },
  33533. wingBottom: {
  33534. height: math.unit(1.93 , "feet"),
  33535. name: "Wing-bottom",
  33536. image: {
  33537. source: "./media/characters/irbisgreif/wing-bottom.svg"
  33538. }
  33539. },
  33540. },
  33541. [
  33542. {
  33543. name: "Normal",
  33544. height: math.unit(216, "cm"),
  33545. default: true
  33546. },
  33547. ]
  33548. ))
  33549. characterMakers.push(() => makeCharacter(
  33550. { name: "Pride", species: ["skunk"], tags: ["anthro"] },
  33551. {
  33552. front: {
  33553. height: math.unit(6, "feet"),
  33554. weight: math.unit(150, "lb"),
  33555. name: "Front",
  33556. image: {
  33557. source: "./media/characters/pride/front.svg",
  33558. extra: 1299/1230,
  33559. bottom: 18/1317
  33560. }
  33561. },
  33562. },
  33563. [
  33564. {
  33565. name: "Normal",
  33566. height: math.unit(7, "feet")
  33567. },
  33568. {
  33569. name: "Mini-macro",
  33570. height: math.unit(11, "feet")
  33571. },
  33572. {
  33573. name: "Macro",
  33574. height: math.unit(15, "meters"),
  33575. default: true
  33576. },
  33577. {
  33578. name: "Macro+",
  33579. height: math.unit(40, "meters")
  33580. },
  33581. ]
  33582. ))
  33583. characterMakers.push(() => makeCharacter(
  33584. { name: "Vaelophys Nyx", species: ["maned-wolf"], tags: ["anthro", "feral"] },
  33585. {
  33586. front: {
  33587. height: math.unit(4 + 2 / 12, "feet"),
  33588. weight: math.unit(95, "lb"),
  33589. name: "Front",
  33590. image: {
  33591. source: "./media/characters/vaelophis-nyx/front.svg",
  33592. extra: 2532/2330,
  33593. bottom: 0/2532
  33594. }
  33595. },
  33596. back: {
  33597. height: math.unit(4 + 2 / 12, "feet"),
  33598. weight: math.unit(95, "lb"),
  33599. name: "Back",
  33600. image: {
  33601. source: "./media/characters/vaelophis-nyx/back.svg",
  33602. extra: 2484/2361,
  33603. bottom: 0/2484
  33604. }
  33605. },
  33606. feralSide: {
  33607. height: math.unit(2 + 1/12, "feet"),
  33608. weight: math.unit(20, "lb"),
  33609. name: "Feral (Side)",
  33610. image: {
  33611. source: "./media/characters/vaelophis-nyx/feral-side.svg",
  33612. extra: 1721/1581,
  33613. bottom: 70/1791
  33614. }
  33615. },
  33616. feralLazing: {
  33617. height: math.unit(1.08, "feet"),
  33618. weight: math.unit(20, "lb"),
  33619. name: "Feral (Lazing)",
  33620. image: {
  33621. source: "./media/characters/vaelophis-nyx/feral-lazing.svg",
  33622. extra: 822/822,
  33623. bottom: 248/1070
  33624. }
  33625. },
  33626. ear: {
  33627. height: math.unit(0.416, "feet"),
  33628. name: "Ear",
  33629. image: {
  33630. source: "./media/characters/vaelophis-nyx/ear.svg"
  33631. }
  33632. },
  33633. eye: {
  33634. height: math.unit(0.0748, "feet"),
  33635. name: "Eye",
  33636. image: {
  33637. source: "./media/characters/vaelophis-nyx/eye.svg"
  33638. }
  33639. },
  33640. mouth: {
  33641. height: math.unit(0.378, "feet"),
  33642. name: "Mouth",
  33643. image: {
  33644. source: "./media/characters/vaelophis-nyx/mouth.svg"
  33645. }
  33646. },
  33647. spade: {
  33648. height: math.unit(0.55, "feet"),
  33649. name: "Spade",
  33650. image: {
  33651. source: "./media/characters/vaelophis-nyx/spade.svg"
  33652. }
  33653. },
  33654. },
  33655. [
  33656. {
  33657. name: "Normal",
  33658. height: math.unit(4 + 2/12, "feet"),
  33659. default: true
  33660. },
  33661. ]
  33662. ))
  33663. characterMakers.push(() => makeCharacter(
  33664. { name: "Flux", species: ["luxray"], tags: ["anthro", "feral"] },
  33665. {
  33666. front: {
  33667. height: math.unit(7, "feet"),
  33668. weight: math.unit(231, "lb"),
  33669. name: "Front",
  33670. image: {
  33671. source: "./media/characters/flux/front.svg",
  33672. extra: 919/871,
  33673. bottom: 0/919
  33674. }
  33675. },
  33676. back: {
  33677. height: math.unit(7, "feet"),
  33678. weight: math.unit(231, "lb"),
  33679. name: "Back",
  33680. image: {
  33681. source: "./media/characters/flux/back.svg",
  33682. extra: 1040/992,
  33683. bottom: 0/1040
  33684. }
  33685. },
  33686. frontDressed: {
  33687. height: math.unit(7, "feet"),
  33688. weight: math.unit(231, "lb"),
  33689. name: "Front (Dressed)",
  33690. image: {
  33691. source: "./media/characters/flux/front-dressed.svg",
  33692. extra: 919/871,
  33693. bottom: 0/919
  33694. }
  33695. },
  33696. feralSide: {
  33697. height: math.unit(5, "feet"),
  33698. weight: math.unit(150, "lb"),
  33699. name: "Feral (Side)",
  33700. image: {
  33701. source: "./media/characters/flux/feral-side.svg",
  33702. extra: 598/528,
  33703. bottom: 28/626
  33704. }
  33705. },
  33706. head: {
  33707. height: math.unit(1.585, "feet"),
  33708. name: "Head",
  33709. image: {
  33710. source: "./media/characters/flux/head.svg"
  33711. }
  33712. },
  33713. headSide: {
  33714. height: math.unit(1.74, "feet"),
  33715. name: "Head (Side)",
  33716. image: {
  33717. source: "./media/characters/flux/head-side.svg"
  33718. }
  33719. },
  33720. headSideFire: {
  33721. height: math.unit(1.76, "feet"),
  33722. name: "Head (Side, Fire)",
  33723. image: {
  33724. source: "./media/characters/flux/head-side-fire.svg"
  33725. }
  33726. },
  33727. },
  33728. [
  33729. {
  33730. name: "Normal",
  33731. height: math.unit(7, "feet"),
  33732. default: true
  33733. },
  33734. ]
  33735. ))
  33736. characterMakers.push(() => makeCharacter(
  33737. { name: "Ulfra Lupae", species: ["wolf"], tags: ["anthro"] },
  33738. {
  33739. front: {
  33740. height: math.unit(9, "feet"),
  33741. weight: math.unit(1012, "lb"),
  33742. name: "Front",
  33743. image: {
  33744. source: "./media/characters/ulfra-lupae/front.svg",
  33745. extra: 1083/1011,
  33746. bottom: 67/1150
  33747. }
  33748. },
  33749. },
  33750. [
  33751. {
  33752. name: "Micro",
  33753. height: math.unit(6, "inches")
  33754. },
  33755. {
  33756. name: "Socializing",
  33757. height: math.unit(6 + 5/12, "feet")
  33758. },
  33759. {
  33760. name: "Normal",
  33761. height: math.unit(9, "feet"),
  33762. default: true
  33763. },
  33764. {
  33765. name: "Macro",
  33766. height: math.unit(150, "feet")
  33767. },
  33768. ]
  33769. ))
  33770. characterMakers.push(() => makeCharacter(
  33771. { name: "Timber", species: ["canine"], tags: ["anthro"] },
  33772. {
  33773. front: {
  33774. height: math.unit(5 + 2/12, "feet"),
  33775. weight: math.unit(120, "lb"),
  33776. name: "Front",
  33777. image: {
  33778. source: "./media/characters/timber/front.svg",
  33779. extra: 2814/2705,
  33780. bottom: 181/2995
  33781. }
  33782. },
  33783. },
  33784. [
  33785. {
  33786. name: "Normal",
  33787. height: math.unit(5 + 2/12, "feet"),
  33788. default: true
  33789. },
  33790. ]
  33791. ))
  33792. characterMakers.push(() => makeCharacter(
  33793. { name: "Nicki", species: ["goat", "wolf", "rabbit"], tags: ["anthro"] },
  33794. {
  33795. front: {
  33796. height: math.unit(9, "feet"),
  33797. name: "Front",
  33798. image: {
  33799. source: "./media/characters/nicki/front.svg",
  33800. extra: 1240/990,
  33801. bottom: 45/1285
  33802. },
  33803. form: "anthro",
  33804. default: true
  33805. },
  33806. side: {
  33807. height: math.unit(9, "feet"),
  33808. name: "Side",
  33809. image: {
  33810. source: "./media/characters/nicki/side.svg",
  33811. extra: 1047/973,
  33812. bottom: 61/1108
  33813. },
  33814. form: "anthro"
  33815. },
  33816. back: {
  33817. height: math.unit(9, "feet"),
  33818. name: "Back",
  33819. image: {
  33820. source: "./media/characters/nicki/back.svg",
  33821. extra: 1006/965,
  33822. bottom: 39/1045
  33823. },
  33824. form: "anthro"
  33825. },
  33826. taur: {
  33827. height: math.unit(15, "feet"),
  33828. name: "Taur",
  33829. image: {
  33830. source: "./media/characters/nicki/taur.svg",
  33831. extra: 1592/1347,
  33832. bottom: 0/1592
  33833. },
  33834. form: "taur",
  33835. default: true
  33836. },
  33837. },
  33838. [
  33839. {
  33840. name: "Normal",
  33841. height: math.unit(9, "feet"),
  33842. form: "anthro",
  33843. default: true
  33844. },
  33845. {
  33846. name: "Normal",
  33847. height: math.unit(15, "feet"),
  33848. form: "taur",
  33849. default: true
  33850. }
  33851. ],
  33852. {
  33853. "anthro": {
  33854. name: "Anthro",
  33855. default: true
  33856. },
  33857. "taur": {
  33858. name: "Taur"
  33859. }
  33860. }
  33861. ))
  33862. characterMakers.push(() => makeCharacter(
  33863. { name: "Lee", species: ["monster"], tags: ["anthro"] },
  33864. {
  33865. front: {
  33866. height: math.unit(7 + 10/12, "feet"),
  33867. weight: math.unit(3.5, "tons"),
  33868. name: "Front",
  33869. image: {
  33870. source: "./media/characters/lee/front.svg",
  33871. extra: 1773/1615,
  33872. bottom: 86/1859
  33873. }
  33874. },
  33875. hand: {
  33876. height: math.unit(1.78, "feet"),
  33877. name: "Hand",
  33878. image: {
  33879. source: "./media/characters/lee/hand.svg"
  33880. }
  33881. },
  33882. maw: {
  33883. height: math.unit(1.18, "feet"),
  33884. name: "Maw",
  33885. image: {
  33886. source: "./media/characters/lee/maw.svg"
  33887. }
  33888. },
  33889. },
  33890. [
  33891. {
  33892. name: "Normal",
  33893. height: math.unit(7 + 10/12, "feet"),
  33894. default: true
  33895. },
  33896. ]
  33897. ))
  33898. characterMakers.push(() => makeCharacter(
  33899. { name: "Guti", species: ["lion"], tags: ["anthro", "goo"] },
  33900. {
  33901. front: {
  33902. height: math.unit(9, "feet"),
  33903. name: "Front",
  33904. image: {
  33905. source: "./media/characters/guti/front.svg",
  33906. extra: 4551/4355,
  33907. bottom: 123/4674
  33908. }
  33909. },
  33910. tongue: {
  33911. height: math.unit(1, "feet"),
  33912. name: "Tongue",
  33913. image: {
  33914. source: "./media/characters/guti/tongue.svg"
  33915. }
  33916. },
  33917. paw: {
  33918. height: math.unit(1.18, "feet"),
  33919. name: "Paw",
  33920. image: {
  33921. source: "./media/characters/guti/paw.svg"
  33922. }
  33923. },
  33924. },
  33925. [
  33926. {
  33927. name: "Normal",
  33928. height: math.unit(9, "feet"),
  33929. default: true
  33930. },
  33931. ]
  33932. ))
  33933. characterMakers.push(() => makeCharacter(
  33934. { name: "Vesper", species: ["kitsune"], tags: ["anthro"] },
  33935. {
  33936. side: {
  33937. height: math.unit(5, "meters"),
  33938. name: "Side",
  33939. image: {
  33940. source: "./media/characters/vesper/side.svg",
  33941. extra: 1605/1518,
  33942. bottom: 0/1605
  33943. }
  33944. },
  33945. },
  33946. [
  33947. {
  33948. name: "Small",
  33949. height: math.unit(5, "meters")
  33950. },
  33951. {
  33952. name: "Sage",
  33953. height: math.unit(100, "meters"),
  33954. default: true
  33955. },
  33956. {
  33957. name: "Fun Size",
  33958. height: math.unit(600, "meters")
  33959. },
  33960. {
  33961. name: "Goddess",
  33962. height: math.unit(20000, "km")
  33963. },
  33964. {
  33965. name: "Maximum",
  33966. height: math.unit(5, "galaxies")
  33967. },
  33968. ]
  33969. ))
  33970. characterMakers.push(() => makeCharacter(
  33971. { name: "Gawain", species: ["arcanine"], tags: ["anthro"] },
  33972. {
  33973. front: {
  33974. height: math.unit(6 + 3/12, "feet"),
  33975. weight: math.unit(190, "lb"),
  33976. name: "Front",
  33977. image: {
  33978. source: "./media/characters/gawain/front.svg",
  33979. extra: 2222/2139,
  33980. bottom: 90/2312
  33981. }
  33982. },
  33983. back: {
  33984. height: math.unit(6 + 3/12, "feet"),
  33985. weight: math.unit(190, "lb"),
  33986. name: "Back",
  33987. image: {
  33988. source: "./media/characters/gawain/back.svg",
  33989. extra: 2199/2111,
  33990. bottom: 73/2272
  33991. }
  33992. },
  33993. },
  33994. [
  33995. {
  33996. name: "Normal",
  33997. height: math.unit(6 + 3/12, "feet"),
  33998. default: true
  33999. },
  34000. ]
  34001. ))
  34002. characterMakers.push(() => makeCharacter(
  34003. { name: "Dascalti", species: ["draiger"], tags: ["anthro"] },
  34004. {
  34005. side: {
  34006. height: math.unit(3.5, "meters"),
  34007. weight: math.unit(16000, "lb"),
  34008. name: "Side",
  34009. image: {
  34010. source: "./media/characters/dascalti/side.svg",
  34011. extra: 392/273,
  34012. bottom: 47/439
  34013. }
  34014. },
  34015. breath: {
  34016. height: math.unit(7.4, "feet"),
  34017. name: "Breath",
  34018. image: {
  34019. source: "./media/characters/dascalti/breath.svg"
  34020. }
  34021. },
  34022. fed: {
  34023. height: math.unit(3.6, "meters"),
  34024. weight: math.unit(16000, "lb"),
  34025. name: "Fed",
  34026. image: {
  34027. source: "./media/characters/dascalti/fed.svg",
  34028. extra: 1419/820,
  34029. bottom: 95/1514
  34030. }
  34031. },
  34032. },
  34033. [
  34034. {
  34035. name: "Normal",
  34036. height: math.unit(3.5, "meters"),
  34037. default: true
  34038. },
  34039. ]
  34040. ))
  34041. characterMakers.push(() => makeCharacter(
  34042. { name: "Mauve", species: ["skunk"], tags: ["anthro"] },
  34043. {
  34044. front: {
  34045. height: math.unit(3 + 5/12, "feet"),
  34046. name: "Front",
  34047. image: {
  34048. source: "./media/characters/mauve/front.svg",
  34049. extra: 1126/1033,
  34050. bottom: 65/1191
  34051. }
  34052. },
  34053. side: {
  34054. height: math.unit(3 + 5/12, "feet"),
  34055. name: "Side",
  34056. image: {
  34057. source: "./media/characters/mauve/side.svg",
  34058. extra: 1089/1001,
  34059. bottom: 29/1118
  34060. }
  34061. },
  34062. back: {
  34063. height: math.unit(3 + 5/12, "feet"),
  34064. name: "Back",
  34065. image: {
  34066. source: "./media/characters/mauve/back.svg",
  34067. extra: 1173/1053,
  34068. bottom: 109/1282
  34069. }
  34070. },
  34071. },
  34072. [
  34073. {
  34074. name: "Normal",
  34075. height: math.unit(3 + 5/12, "feet"),
  34076. default: true
  34077. },
  34078. ]
  34079. ))
  34080. characterMakers.push(() => makeCharacter(
  34081. { name: "Carlos", species: ["foxsky"], tags: ["anthro"] },
  34082. {
  34083. front: {
  34084. height: math.unit(6 + 3/12, "feet"),
  34085. weight: math.unit(430, "lb"),
  34086. name: "Front",
  34087. image: {
  34088. source: "./media/characters/carlos/front.svg",
  34089. extra: 1964/1913,
  34090. bottom: 70/2034
  34091. }
  34092. },
  34093. },
  34094. [
  34095. {
  34096. name: "Normal",
  34097. height: math.unit(6 + 3/12, "feet"),
  34098. default: true
  34099. },
  34100. ]
  34101. ))
  34102. characterMakers.push(() => makeCharacter(
  34103. { name: "Jax", species: ["husky"], tags: ["anthro"] },
  34104. {
  34105. back: {
  34106. height: math.unit(5 + 10/12, "feet"),
  34107. weight: math.unit(200, "lb"),
  34108. name: "Back",
  34109. image: {
  34110. source: "./media/characters/jax/back.svg",
  34111. extra: 764/739,
  34112. bottom: 25/789
  34113. }
  34114. },
  34115. },
  34116. [
  34117. {
  34118. name: "Normal",
  34119. height: math.unit(5 + 10/12, "feet"),
  34120. default: true
  34121. },
  34122. ]
  34123. ))
  34124. characterMakers.push(() => makeCharacter(
  34125. { name: "Eikthynir", species: ["deer"], tags: ["anthro"] },
  34126. {
  34127. front: {
  34128. height: math.unit(8, "feet"),
  34129. weight: math.unit(250, "lb"),
  34130. name: "Front",
  34131. image: {
  34132. source: "./media/characters/eikthynir/front.svg",
  34133. extra: 1332/1166,
  34134. bottom: 82/1414
  34135. }
  34136. },
  34137. back: {
  34138. height: math.unit(8, "feet"),
  34139. weight: math.unit(250, "lb"),
  34140. name: "Back",
  34141. image: {
  34142. source: "./media/characters/eikthynir/back.svg",
  34143. extra: 1342/1190,
  34144. bottom: 19/1361
  34145. }
  34146. },
  34147. dick: {
  34148. height: math.unit(2.35, "feet"),
  34149. name: "Dick",
  34150. image: {
  34151. source: "./media/characters/eikthynir/dick.svg"
  34152. }
  34153. },
  34154. },
  34155. [
  34156. {
  34157. name: "Normal",
  34158. height: math.unit(8, "feet"),
  34159. default: true
  34160. },
  34161. ]
  34162. ))
  34163. characterMakers.push(() => makeCharacter(
  34164. { name: "Zlmos", species: ["dragon"], tags: ["anthro"] },
  34165. {
  34166. front: {
  34167. height: math.unit(99, "meters"),
  34168. weight: math.unit(13000, "tons"),
  34169. name: "Front",
  34170. image: {
  34171. source: "./media/characters/zlmos/front.svg",
  34172. extra: 2202/1992,
  34173. bottom: 315/2517
  34174. }
  34175. },
  34176. },
  34177. [
  34178. {
  34179. name: "Macro",
  34180. height: math.unit(99, "meters"),
  34181. default: true
  34182. },
  34183. ]
  34184. ))
  34185. characterMakers.push(() => makeCharacter(
  34186. { name: "Purri", species: ["cat"], tags: ["anthro"] },
  34187. {
  34188. front: {
  34189. height: math.unit(6 + 5/12, "feet"),
  34190. name: "Front",
  34191. image: {
  34192. source: "./media/characters/purri/front.svg",
  34193. extra: 1698/1610,
  34194. bottom: 32/1730
  34195. }
  34196. },
  34197. frontAlt: {
  34198. height: math.unit(6 + 5/12, "feet"),
  34199. name: "Front (Alt)",
  34200. image: {
  34201. source: "./media/characters/purri/front-alt.svg",
  34202. extra: 450/420,
  34203. bottom: 26/476
  34204. }
  34205. },
  34206. boots: {
  34207. height: math.unit(5.5, "feet"),
  34208. name: "Boots",
  34209. image: {
  34210. source: "./media/characters/purri/boots.svg",
  34211. extra: 905/853,
  34212. bottom: 18/923
  34213. },
  34214. extraAttributes: {
  34215. "shoeSize": {
  34216. name: "Shoe Size",
  34217. power: 1,
  34218. type: "length",
  34219. base: math.unit(12, "ShoeSizeMensUS")
  34220. },
  34221. "platformHeight": {
  34222. name: "Platform Height",
  34223. power: 1,
  34224. type: "length",
  34225. base: math.unit(2, "inches")
  34226. },
  34227. }
  34228. },
  34229. lying: {
  34230. height: math.unit(2, "feet"),
  34231. name: "Lying",
  34232. image: {
  34233. source: "./media/characters/purri/lying.svg",
  34234. extra: 940/843,
  34235. bottom: 146/1086
  34236. }
  34237. },
  34238. devious: {
  34239. height: math.unit(1.77, "feet"),
  34240. name: "Devious",
  34241. image: {
  34242. source: "./media/characters/purri/devious.svg",
  34243. extra: 1440/1155,
  34244. bottom: 147/1587
  34245. }
  34246. },
  34247. bean: {
  34248. height: math.unit(1.94, "feet"),
  34249. name: "Bean",
  34250. image: {
  34251. source: "./media/characters/purri/bean.svg"
  34252. }
  34253. },
  34254. },
  34255. [
  34256. {
  34257. name: "Micro",
  34258. height: math.unit(1, "mm")
  34259. },
  34260. {
  34261. name: "Normal",
  34262. height: math.unit(6 + 5/12, "feet"),
  34263. default: true
  34264. },
  34265. {
  34266. name: "Macro :3c",
  34267. height: math.unit(2, "miles")
  34268. },
  34269. ]
  34270. ))
  34271. characterMakers.push(() => makeCharacter(
  34272. { name: "Moonlight", species: ["umbreon"], tags: ["anthro"] },
  34273. {
  34274. front: {
  34275. height: math.unit(6 + 2/12, "feet"),
  34276. weight: math.unit(250, "lb"),
  34277. name: "Front",
  34278. image: {
  34279. source: "./media/characters/moonlight/front.svg",
  34280. extra: 1044/908,
  34281. bottom: 56/1100
  34282. }
  34283. },
  34284. feral: {
  34285. height: math.unit(3 + 1/12, "feet"),
  34286. weight: math.unit(50, "kg"),
  34287. name: "Feral",
  34288. image: {
  34289. source: "./media/characters/moonlight/feral.svg",
  34290. extra: 3705/2791,
  34291. bottom: 145/3850
  34292. }
  34293. },
  34294. paw: {
  34295. height: math.unit(1, "feet"),
  34296. name: "Paw",
  34297. image: {
  34298. source: "./media/characters/moonlight/paw.svg"
  34299. }
  34300. },
  34301. paws: {
  34302. height: math.unit(0.98, "feet"),
  34303. name: "Paws",
  34304. image: {
  34305. source: "./media/characters/moonlight/paws.svg",
  34306. extra: 939/939,
  34307. bottom: 50/989
  34308. }
  34309. },
  34310. mouth: {
  34311. height: math.unit(0.48, "feet"),
  34312. name: "Mouth",
  34313. image: {
  34314. source: "./media/characters/moonlight/mouth.svg"
  34315. }
  34316. },
  34317. dick: {
  34318. height: math.unit(1.46, "feet"),
  34319. name: "Dick",
  34320. image: {
  34321. source: "./media/characters/moonlight/dick.svg"
  34322. }
  34323. },
  34324. },
  34325. [
  34326. {
  34327. name: "Normal",
  34328. height: math.unit(6 + 2/12, "feet"),
  34329. default: true
  34330. },
  34331. {
  34332. name: "Macro",
  34333. height: math.unit(300, "feet")
  34334. },
  34335. {
  34336. name: "Macro+",
  34337. height: math.unit(1, "mile")
  34338. },
  34339. {
  34340. name: "Mt. Moon",
  34341. height: math.unit(5, "miles")
  34342. },
  34343. {
  34344. name: "Megamacro",
  34345. height: math.unit(15, "miles")
  34346. },
  34347. ]
  34348. ))
  34349. characterMakers.push(() => makeCharacter(
  34350. { name: "Sylen", species: ["wolf"], tags: ["anthro"] },
  34351. {
  34352. back: {
  34353. height: math.unit(6, "feet"),
  34354. weight: math.unit(150, "lb"),
  34355. name: "Back",
  34356. image: {
  34357. source: "./media/characters/sylen/back.svg",
  34358. extra: 1335/1273,
  34359. bottom: 107/1442
  34360. }
  34361. },
  34362. },
  34363. [
  34364. {
  34365. name: "Normal",
  34366. height: math.unit(5 + 5/12, "feet")
  34367. },
  34368. {
  34369. name: "Megamacro",
  34370. height: math.unit(3, "miles"),
  34371. default: true
  34372. },
  34373. ]
  34374. ))
  34375. characterMakers.push(() => makeCharacter(
  34376. { name: "Huttser", species: ["coyote"], tags: ["anthro"] },
  34377. {
  34378. front: {
  34379. height: math.unit(6, "feet"),
  34380. weight: math.unit(190, "lb"),
  34381. name: "Front",
  34382. image: {
  34383. source: "./media/characters/huttser/front.svg",
  34384. extra: 1152/1058,
  34385. bottom: 23/1175
  34386. }
  34387. },
  34388. side: {
  34389. height: math.unit(6, "feet"),
  34390. weight: math.unit(190, "lb"),
  34391. name: "Side",
  34392. image: {
  34393. source: "./media/characters/huttser/side.svg",
  34394. extra: 1174/1065,
  34395. bottom: 18/1192
  34396. }
  34397. },
  34398. back: {
  34399. height: math.unit(6, "feet"),
  34400. weight: math.unit(190, "lb"),
  34401. name: "Back",
  34402. image: {
  34403. source: "./media/characters/huttser/back.svg",
  34404. extra: 1158/1056,
  34405. bottom: 12/1170
  34406. }
  34407. },
  34408. },
  34409. [
  34410. ]
  34411. ))
  34412. characterMakers.push(() => makeCharacter(
  34413. { name: "Faan", species: ["slime-dragon"], tags: ["anthro", "goo"] },
  34414. {
  34415. side: {
  34416. height: math.unit(12 + 9/12, "feet"),
  34417. weight: math.unit(15000, "lb"),
  34418. name: "Side",
  34419. image: {
  34420. source: "./media/characters/faan/side.svg",
  34421. extra: 2747/2697,
  34422. bottom: 0/2747
  34423. }
  34424. },
  34425. front: {
  34426. height: math.unit(12 + 9/12, "feet"),
  34427. weight: math.unit(15000, "lb"),
  34428. name: "Front",
  34429. image: {
  34430. source: "./media/characters/faan/front.svg",
  34431. extra: 607/571,
  34432. bottom: 24/631
  34433. }
  34434. },
  34435. head: {
  34436. height: math.unit(2.85, "feet"),
  34437. name: "Head",
  34438. image: {
  34439. source: "./media/characters/faan/head.svg"
  34440. }
  34441. },
  34442. headAlt: {
  34443. height: math.unit(3.13, "feet"),
  34444. name: "Head-alt",
  34445. image: {
  34446. source: "./media/characters/faan/head-alt.svg"
  34447. }
  34448. },
  34449. },
  34450. [
  34451. {
  34452. name: "Normal",
  34453. height: math.unit(12 + 9/12, "feet"),
  34454. default: true
  34455. },
  34456. ]
  34457. ))
  34458. characterMakers.push(() => makeCharacter(
  34459. { name: "Tanio", species: ["foxsky"], tags: ["anthro"] },
  34460. {
  34461. front: {
  34462. height: math.unit(6, "feet"),
  34463. weight: math.unit(300, "lb"),
  34464. name: "Front",
  34465. image: {
  34466. source: "./media/characters/tanio/front.svg",
  34467. extra: 711/673,
  34468. bottom: 25/736
  34469. }
  34470. },
  34471. },
  34472. [
  34473. {
  34474. name: "Normal",
  34475. height: math.unit(6, "feet"),
  34476. default: true
  34477. },
  34478. ]
  34479. ))
  34480. characterMakers.push(() => makeCharacter(
  34481. { name: "Noboru", species: ["cat"], tags: ["anthro"] },
  34482. {
  34483. front: {
  34484. height: math.unit(3, "inches"),
  34485. name: "Front",
  34486. image: {
  34487. source: "./media/characters/noboru/front.svg",
  34488. extra: 1039/932,
  34489. bottom: 18/1057
  34490. }
  34491. },
  34492. },
  34493. [
  34494. {
  34495. name: "Micro",
  34496. height: math.unit(3, "inches"),
  34497. default: true
  34498. },
  34499. ]
  34500. ))
  34501. characterMakers.push(() => makeCharacter(
  34502. { name: "Daniel Barrett", species: ["wolf"], tags: ["anthro"] },
  34503. {
  34504. front: {
  34505. height: math.unit(1.85, "meters"),
  34506. weight: math.unit(80, "kg"),
  34507. name: "Front",
  34508. image: {
  34509. source: "./media/characters/daniel-barrett/front.svg",
  34510. extra: 355/337,
  34511. bottom: 9/364
  34512. }
  34513. },
  34514. },
  34515. [
  34516. {
  34517. name: "Pico",
  34518. height: math.unit(0.0433, "mm")
  34519. },
  34520. {
  34521. name: "Nano",
  34522. height: math.unit(1.5, "mm")
  34523. },
  34524. {
  34525. name: "Micro",
  34526. height: math.unit(5.3, "cm"),
  34527. default: true
  34528. },
  34529. {
  34530. name: "Normal",
  34531. height: math.unit(1.85, "meters")
  34532. },
  34533. {
  34534. name: "Macro",
  34535. height: math.unit(64.7, "meters")
  34536. },
  34537. {
  34538. name: "Megamacro",
  34539. height: math.unit(2.26, "km")
  34540. },
  34541. {
  34542. name: "Gigamacro",
  34543. height: math.unit(79, "km")
  34544. },
  34545. {
  34546. name: "Teramacro",
  34547. height: math.unit(2765, "km")
  34548. },
  34549. {
  34550. name: "Petamacro",
  34551. height: math.unit(96678, "km")
  34552. },
  34553. ]
  34554. ))
  34555. characterMakers.push(() => makeCharacter(
  34556. { name: "Zeel", species: ["kobold", "raptor"], tags: ["anthro"] },
  34557. {
  34558. front: {
  34559. height: math.unit(30, "meters"),
  34560. weight: math.unit(400, "tons"),
  34561. name: "Front",
  34562. image: {
  34563. source: "./media/characters/zeel/front.svg",
  34564. extra: 2599/2599,
  34565. bottom: 226/2825
  34566. }
  34567. },
  34568. },
  34569. [
  34570. {
  34571. name: "Macro",
  34572. height: math.unit(30, "meters"),
  34573. default: true
  34574. },
  34575. ]
  34576. ))
  34577. characterMakers.push(() => makeCharacter(
  34578. { name: "Tarn", species: ["wolf"], tags: ["anthro"] },
  34579. {
  34580. front: {
  34581. height: math.unit(6 + 7/12, "feet"),
  34582. weight: math.unit(210, "lb"),
  34583. name: "Front",
  34584. image: {
  34585. source: "./media/characters/tarn/front.svg",
  34586. extra: 3517/3220,
  34587. bottom: 91/3608
  34588. }
  34589. },
  34590. back: {
  34591. height: math.unit(6 + 7/12, "feet"),
  34592. weight: math.unit(210, "lb"),
  34593. name: "Back",
  34594. image: {
  34595. source: "./media/characters/tarn/back.svg",
  34596. extra: 3566/3241,
  34597. bottom: 34/3600
  34598. }
  34599. },
  34600. dick: {
  34601. height: math.unit(1.65, "feet"),
  34602. name: "Dick",
  34603. image: {
  34604. source: "./media/characters/tarn/dick.svg"
  34605. }
  34606. },
  34607. paw: {
  34608. height: math.unit(1.80, "feet"),
  34609. name: "Paw",
  34610. image: {
  34611. source: "./media/characters/tarn/paw.svg"
  34612. }
  34613. },
  34614. tongue: {
  34615. height: math.unit(0.97, "feet"),
  34616. name: "Tongue",
  34617. image: {
  34618. source: "./media/characters/tarn/tongue.svg"
  34619. }
  34620. },
  34621. },
  34622. [
  34623. {
  34624. name: "Micro",
  34625. height: math.unit(4, "inches")
  34626. },
  34627. {
  34628. name: "Normal",
  34629. height: math.unit(6 + 7/12, "feet"),
  34630. default: true
  34631. },
  34632. {
  34633. name: "Macro",
  34634. height: math.unit(300, "feet")
  34635. },
  34636. ]
  34637. ))
  34638. characterMakers.push(() => makeCharacter(
  34639. { name: "Leonidas \"Leon\" Nisitalia", species: ["cat"], tags: ["anthro"] },
  34640. {
  34641. front: {
  34642. height: math.unit(5 + 7/12, "feet"),
  34643. weight: math.unit(80, "kg"),
  34644. name: "Front",
  34645. image: {
  34646. source: "./media/characters/leonidas-leon-nisitalia/front.svg",
  34647. extra: 3023/2865,
  34648. bottom: 33/3056
  34649. }
  34650. },
  34651. back: {
  34652. height: math.unit(5 + 7/12, "feet"),
  34653. weight: math.unit(80, "kg"),
  34654. name: "Back",
  34655. image: {
  34656. source: "./media/characters/leonidas-leon-nisitalia/back.svg",
  34657. extra: 3020/2886,
  34658. bottom: 30/3050
  34659. }
  34660. },
  34661. dick: {
  34662. height: math.unit(0.98, "feet"),
  34663. name: "Dick",
  34664. image: {
  34665. source: "./media/characters/leonidas-leon-nisitalia/dick.svg"
  34666. }
  34667. },
  34668. anatomy: {
  34669. height: math.unit(2.86, "feet"),
  34670. name: "Anatomy",
  34671. image: {
  34672. source: "./media/characters/leonidas-leon-nisitalia/anatomy.svg"
  34673. }
  34674. },
  34675. },
  34676. [
  34677. {
  34678. name: "Really Small",
  34679. height: math.unit(2, "inches")
  34680. },
  34681. {
  34682. name: "Micro",
  34683. height: math.unit(5.583, "inches")
  34684. },
  34685. {
  34686. name: "Normal",
  34687. height: math.unit(5 + 7/12, "feet"),
  34688. default: true
  34689. },
  34690. {
  34691. name: "Macro",
  34692. height: math.unit(67, "feet")
  34693. },
  34694. {
  34695. name: "Megamacro",
  34696. height: math.unit(134, "feet")
  34697. },
  34698. ]
  34699. ))
  34700. characterMakers.push(() => makeCharacter(
  34701. { name: "Sally", species: ["enderman"], tags: ["anthro"] },
  34702. {
  34703. front: {
  34704. height: math.unit(9, "feet"),
  34705. weight: math.unit(120, "lb"),
  34706. name: "Front",
  34707. image: {
  34708. source: "./media/characters/sally/front.svg",
  34709. extra: 1506/1349,
  34710. bottom: 66/1572
  34711. }
  34712. },
  34713. },
  34714. [
  34715. {
  34716. name: "Normal",
  34717. height: math.unit(9, "feet"),
  34718. default: true
  34719. },
  34720. ]
  34721. ))
  34722. characterMakers.push(() => makeCharacter(
  34723. { name: "Owen", species: ["bear"], tags: ["anthro"] },
  34724. {
  34725. front: {
  34726. height: math.unit(8, "feet"),
  34727. weight: math.unit(900, "lb"),
  34728. name: "Front",
  34729. image: {
  34730. source: "./media/characters/owen/front.svg",
  34731. extra: 1761/1657,
  34732. bottom: 74/1835
  34733. }
  34734. },
  34735. side: {
  34736. height: math.unit(8, "feet"),
  34737. weight: math.unit(900, "lb"),
  34738. name: "Side",
  34739. image: {
  34740. source: "./media/characters/owen/side.svg",
  34741. extra: 1797/1734,
  34742. bottom: 30/1827
  34743. }
  34744. },
  34745. back: {
  34746. height: math.unit(8, "feet"),
  34747. weight: math.unit(900, "lb"),
  34748. name: "Back",
  34749. image: {
  34750. source: "./media/characters/owen/back.svg",
  34751. extra: 1796/1706,
  34752. bottom: 59/1855
  34753. }
  34754. },
  34755. maw: {
  34756. height: math.unit(1.76, "feet"),
  34757. name: "Maw",
  34758. image: {
  34759. source: "./media/characters/owen/maw.svg"
  34760. }
  34761. },
  34762. },
  34763. [
  34764. {
  34765. name: "Normal",
  34766. height: math.unit(8, "feet"),
  34767. default: true
  34768. },
  34769. ]
  34770. ))
  34771. characterMakers.push(() => makeCharacter(
  34772. { name: "Ryth", species: ["gremlin", "zorgoia"], tags: ["anthro", "feral"] },
  34773. {
  34774. front: {
  34775. height: math.unit(4, "feet"),
  34776. weight: math.unit(400, "lb"),
  34777. name: "Front",
  34778. image: {
  34779. source: "./media/characters/ryth/front.svg",
  34780. extra: 1920/1748,
  34781. bottom: 42/1962
  34782. }
  34783. },
  34784. back: {
  34785. height: math.unit(4, "feet"),
  34786. weight: math.unit(400, "lb"),
  34787. name: "Back",
  34788. image: {
  34789. source: "./media/characters/ryth/back.svg",
  34790. extra: 1897/1690,
  34791. bottom: 89/1986
  34792. }
  34793. },
  34794. mouth: {
  34795. height: math.unit(1.39, "feet"),
  34796. name: "Mouth",
  34797. image: {
  34798. source: "./media/characters/ryth/mouth.svg"
  34799. }
  34800. },
  34801. tailmaw: {
  34802. height: math.unit(1.23, "feet"),
  34803. name: "Tailmaw",
  34804. image: {
  34805. source: "./media/characters/ryth/tailmaw.svg"
  34806. }
  34807. },
  34808. goia: {
  34809. height: math.unit(4, "meters"),
  34810. weight: math.unit(10800, "lb"),
  34811. name: "Goia",
  34812. image: {
  34813. source: "./media/characters/ryth/goia.svg",
  34814. extra: 745/640,
  34815. bottom: 107/852
  34816. }
  34817. },
  34818. goiaFront: {
  34819. height: math.unit(4, "meters"),
  34820. weight: math.unit(10800, "lb"),
  34821. name: "Goia (Front)",
  34822. image: {
  34823. source: "./media/characters/ryth/goia-front.svg",
  34824. extra: 750/586,
  34825. bottom: 114/864
  34826. }
  34827. },
  34828. goiaMaw: {
  34829. height: math.unit(5.55, "feet"),
  34830. name: "Goia Maw",
  34831. image: {
  34832. source: "./media/characters/ryth/goia-maw.svg"
  34833. }
  34834. },
  34835. goiaForepaw: {
  34836. height: math.unit(3.5, "feet"),
  34837. name: "Goia Forepaw",
  34838. image: {
  34839. source: "./media/characters/ryth/goia-forepaw.svg"
  34840. }
  34841. },
  34842. goiaHindpaw: {
  34843. height: math.unit(5.55, "feet"),
  34844. name: "Goia Hindpaw",
  34845. image: {
  34846. source: "./media/characters/ryth/goia-hindpaw.svg"
  34847. }
  34848. },
  34849. },
  34850. [
  34851. {
  34852. name: "Normal",
  34853. height: math.unit(4, "feet"),
  34854. default: true
  34855. },
  34856. ]
  34857. ))
  34858. characterMakers.push(() => makeCharacter(
  34859. { name: "Necrolance", species: ["dragonsune"], tags: ["anthro"] },
  34860. {
  34861. front: {
  34862. height: math.unit(7, "feet"),
  34863. weight: math.unit(180, "lb"),
  34864. name: "Front",
  34865. image: {
  34866. source: "./media/characters/necrolance/front.svg",
  34867. extra: 1062/947,
  34868. bottom: 41/1103
  34869. }
  34870. },
  34871. back: {
  34872. height: math.unit(7, "feet"),
  34873. weight: math.unit(180, "lb"),
  34874. name: "Back",
  34875. image: {
  34876. source: "./media/characters/necrolance/back.svg",
  34877. extra: 1045/984,
  34878. bottom: 14/1059
  34879. }
  34880. },
  34881. wing: {
  34882. height: math.unit(2.67, "feet"),
  34883. name: "Wing",
  34884. image: {
  34885. source: "./media/characters/necrolance/wing.svg"
  34886. }
  34887. },
  34888. },
  34889. [
  34890. {
  34891. name: "Normal",
  34892. height: math.unit(7, "feet"),
  34893. default: true
  34894. },
  34895. ]
  34896. ))
  34897. characterMakers.push(() => makeCharacter(
  34898. { name: "Tyler", species: ["naga"], tags: ["naga"] },
  34899. {
  34900. front: {
  34901. height: math.unit(76, "meters"),
  34902. weight: math.unit(30000, "tons"),
  34903. name: "Front",
  34904. image: {
  34905. source: "./media/characters/tyler/front.svg",
  34906. extra: 1640/1640,
  34907. bottom: 114/1754
  34908. }
  34909. },
  34910. },
  34911. [
  34912. {
  34913. name: "Macro",
  34914. height: math.unit(76, "meters"),
  34915. default: true
  34916. },
  34917. ]
  34918. ))
  34919. characterMakers.push(() => makeCharacter(
  34920. { name: "Icey", species: ["cat"], tags: ["anthro"] },
  34921. {
  34922. front: {
  34923. height: math.unit(4 + 11/12, "feet"),
  34924. weight: math.unit(132, "lb"),
  34925. name: "Front",
  34926. image: {
  34927. source: "./media/characters/icey/front.svg",
  34928. extra: 2750/2550,
  34929. bottom: 33/2783
  34930. }
  34931. },
  34932. back: {
  34933. height: math.unit(4 + 11/12, "feet"),
  34934. weight: math.unit(132, "lb"),
  34935. name: "Back",
  34936. image: {
  34937. source: "./media/characters/icey/back.svg",
  34938. extra: 2624/2481,
  34939. bottom: 35/2659
  34940. }
  34941. },
  34942. },
  34943. [
  34944. {
  34945. name: "Normal",
  34946. height: math.unit(4 + 11/12, "feet"),
  34947. default: true
  34948. },
  34949. ]
  34950. ))
  34951. characterMakers.push(() => makeCharacter(
  34952. { name: "Smile", species: ["skunk", "ghost"], tags: ["anthro"] },
  34953. {
  34954. front: {
  34955. height: math.unit(100, "feet"),
  34956. weight: math.unit(0, "lb"),
  34957. name: "Front",
  34958. image: {
  34959. source: "./media/characters/smile/front.svg",
  34960. extra: 2983/2912,
  34961. bottom: 162/3145
  34962. }
  34963. },
  34964. back: {
  34965. height: math.unit(100, "feet"),
  34966. weight: math.unit(0, "lb"),
  34967. name: "Back",
  34968. image: {
  34969. source: "./media/characters/smile/back.svg",
  34970. extra: 3143/3031,
  34971. bottom: 91/3234
  34972. }
  34973. },
  34974. head: {
  34975. height: math.unit(26.3, "feet"),
  34976. weight: math.unit(0, "lb"),
  34977. name: "Head",
  34978. image: {
  34979. source: "./media/characters/smile/head.svg"
  34980. }
  34981. },
  34982. collar: {
  34983. height: math.unit(5.3, "feet"),
  34984. weight: math.unit(0, "lb"),
  34985. name: "Collar",
  34986. image: {
  34987. source: "./media/characters/smile/collar.svg"
  34988. }
  34989. },
  34990. },
  34991. [
  34992. {
  34993. name: "Macro",
  34994. height: math.unit(100, "feet"),
  34995. default: true
  34996. },
  34997. ]
  34998. ))
  34999. characterMakers.push(() => makeCharacter(
  35000. { name: "Arimphae", species: ["dragon"], tags: ["feral"] },
  35001. {
  35002. dragon: {
  35003. height: math.unit(26, "feet"),
  35004. weight: math.unit(36, "tons"),
  35005. name: "Dragon",
  35006. image: {
  35007. source: "./media/characters/arimphae/dragon.svg",
  35008. extra: 1574/983,
  35009. bottom: 357/1931
  35010. }
  35011. },
  35012. drake: {
  35013. height: math.unit(9, "feet"),
  35014. weight: math.unit(1.5, "tons"),
  35015. name: "Drake",
  35016. image: {
  35017. source: "./media/characters/arimphae/drake.svg",
  35018. extra: 1120/925,
  35019. bottom: 435/1555
  35020. }
  35021. },
  35022. },
  35023. [
  35024. {
  35025. name: "Small",
  35026. height: math.unit(26*5/9, "feet")
  35027. },
  35028. {
  35029. name: "Normal",
  35030. height: math.unit(26, "feet"),
  35031. default: true
  35032. },
  35033. ]
  35034. ))
  35035. characterMakers.push(() => makeCharacter(
  35036. { name: "Xander", species: ["false-vampire-bat"], tags: ["anthro"] },
  35037. {
  35038. front: {
  35039. height: math.unit(8 + 9/12, "feet"),
  35040. name: "Front",
  35041. image: {
  35042. source: "./media/characters/xander/front.svg",
  35043. extra: 1237/974,
  35044. bottom: 94/1331
  35045. }
  35046. },
  35047. },
  35048. [
  35049. {
  35050. name: "Normal",
  35051. height: math.unit(8 + 9/12, "feet"),
  35052. default: true
  35053. },
  35054. {
  35055. name: "Gaze Grabber",
  35056. height: math.unit(13 + 8/12, "feet")
  35057. },
  35058. {
  35059. name: "Jaw Dropper",
  35060. height: math.unit(27, "feet")
  35061. },
  35062. {
  35063. name: "Show Stopper",
  35064. height: math.unit(136, "feet")
  35065. },
  35066. {
  35067. name: "Superstar",
  35068. height: math.unit(1.9e6, "miles")
  35069. },
  35070. ]
  35071. ))
  35072. characterMakers.push(() => makeCharacter(
  35073. { name: "Osiris", species: ["plush", "dragon"], tags: ["feral"] },
  35074. {
  35075. side: {
  35076. height: math.unit(2100, "feet"),
  35077. name: "Side",
  35078. image: {
  35079. source: "./media/characters/osiris/side.svg",
  35080. extra: 1105/939,
  35081. bottom: 167/1272
  35082. }
  35083. },
  35084. },
  35085. [
  35086. {
  35087. name: "Macro",
  35088. height: math.unit(2100, "feet"),
  35089. default: true
  35090. },
  35091. ]
  35092. ))
  35093. characterMakers.push(() => makeCharacter(
  35094. { name: "Rhys Londe", species: ["dragon"], tags: ["anthro"] },
  35095. {
  35096. front: {
  35097. height: math.unit(6 + 8/12, "feet"),
  35098. weight: math.unit(225, "lb"),
  35099. name: "Front",
  35100. image: {
  35101. source: "./media/characters/rhys-londe/front.svg",
  35102. extra: 2258/2141,
  35103. bottom: 188/2446
  35104. }
  35105. },
  35106. back: {
  35107. height: math.unit(6 + 8/12, "feet"),
  35108. weight: math.unit(225, "lb"),
  35109. name: "Back",
  35110. image: {
  35111. source: "./media/characters/rhys-londe/back.svg",
  35112. extra: 2237/2137,
  35113. bottom: 63/2300
  35114. }
  35115. },
  35116. frontNsfw: {
  35117. height: math.unit(6 + 8/12, "feet"),
  35118. weight: math.unit(225, "lb"),
  35119. name: "Front (NSFW)",
  35120. image: {
  35121. source: "./media/characters/rhys-londe/front-nsfw.svg",
  35122. extra: 2258/2141,
  35123. bottom: 188/2446
  35124. }
  35125. },
  35126. backNsfw: {
  35127. height: math.unit(6 + 8/12, "feet"),
  35128. weight: math.unit(225, "lb"),
  35129. name: "Back (NSFW)",
  35130. image: {
  35131. source: "./media/characters/rhys-londe/back-nsfw.svg",
  35132. extra: 2237/2137,
  35133. bottom: 63/2300
  35134. }
  35135. },
  35136. dick: {
  35137. height: math.unit(30, "inches"),
  35138. name: "Dick",
  35139. image: {
  35140. source: "./media/characters/rhys-londe/dick.svg"
  35141. }
  35142. },
  35143. maw: {
  35144. height: math.unit(1.6, "feet"),
  35145. name: "Maw",
  35146. image: {
  35147. source: "./media/characters/rhys-londe/maw.svg"
  35148. }
  35149. },
  35150. },
  35151. [
  35152. {
  35153. name: "Normal",
  35154. height: math.unit(6 + 8/12, "feet"),
  35155. default: true
  35156. },
  35157. ]
  35158. ))
  35159. characterMakers.push(() => makeCharacter(
  35160. { name: "Taivas Ensim", species: ["kobold"], tags: ["anthro"] },
  35161. {
  35162. front: {
  35163. height: math.unit(3 + 10/12, "feet"),
  35164. weight: math.unit(90, "lb"),
  35165. name: "Front",
  35166. image: {
  35167. source: "./media/characters/taivas-ensim/front.svg",
  35168. extra: 1327/1216,
  35169. bottom: 96/1423
  35170. }
  35171. },
  35172. back: {
  35173. height: math.unit(3 + 10/12, "feet"),
  35174. weight: math.unit(90, "lb"),
  35175. name: "Back",
  35176. image: {
  35177. source: "./media/characters/taivas-ensim/back.svg",
  35178. extra: 1355/1247,
  35179. bottom: 11/1366
  35180. }
  35181. },
  35182. frontNsfw: {
  35183. height: math.unit(3 + 10/12, "feet"),
  35184. weight: math.unit(90, "lb"),
  35185. name: "Front (NSFW)",
  35186. image: {
  35187. source: "./media/characters/taivas-ensim/front-nsfw.svg",
  35188. extra: 1327/1216,
  35189. bottom: 96/1423
  35190. }
  35191. },
  35192. backNsfw: {
  35193. height: math.unit(3 + 10/12, "feet"),
  35194. weight: math.unit(90, "lb"),
  35195. name: "Back (NSFW)",
  35196. image: {
  35197. source: "./media/characters/taivas-ensim/back-nsfw.svg",
  35198. extra: 1355/1247,
  35199. bottom: 11/1366
  35200. }
  35201. },
  35202. },
  35203. [
  35204. {
  35205. name: "Normal",
  35206. height: math.unit(3 + 10/12, "feet"),
  35207. default: true
  35208. },
  35209. ]
  35210. ))
  35211. characterMakers.push(() => makeCharacter(
  35212. { name: "Byliss", species: ["dragon", "succubus"], tags: ["anthro"] },
  35213. {
  35214. front: {
  35215. height: math.unit(9 + 6/12, "feet"),
  35216. weight: math.unit(940, "lb"),
  35217. name: "Front",
  35218. image: {
  35219. source: "./media/characters/byliss/front.svg",
  35220. extra: 1327/1290,
  35221. bottom: 82/1409
  35222. }
  35223. },
  35224. back: {
  35225. height: math.unit(9 + 6/12, "feet"),
  35226. weight: math.unit(940, "lb"),
  35227. name: "Back",
  35228. image: {
  35229. source: "./media/characters/byliss/back.svg",
  35230. extra: 1376/1349,
  35231. bottom: 9/1385
  35232. }
  35233. },
  35234. frontNsfw: {
  35235. height: math.unit(9 + 6/12, "feet"),
  35236. weight: math.unit(940, "lb"),
  35237. name: "Front (NSFW)",
  35238. image: {
  35239. source: "./media/characters/byliss/front-nsfw.svg",
  35240. extra: 1327/1290,
  35241. bottom: 82/1409
  35242. }
  35243. },
  35244. backNsfw: {
  35245. height: math.unit(9 + 6/12, "feet"),
  35246. weight: math.unit(940, "lb"),
  35247. name: "Back (NSFW)",
  35248. image: {
  35249. source: "./media/characters/byliss/back-nsfw.svg",
  35250. extra: 1376/1349,
  35251. bottom: 9/1385
  35252. }
  35253. },
  35254. },
  35255. [
  35256. {
  35257. name: "Normal",
  35258. height: math.unit(9 + 6/12, "feet"),
  35259. default: true
  35260. },
  35261. ]
  35262. ))
  35263. characterMakers.push(() => makeCharacter(
  35264. { name: "Noraly", species: ["mia"], tags: ["anthro"] },
  35265. {
  35266. front: {
  35267. height: math.unit(5 + 2/12, "feet"),
  35268. weight: math.unit(200, "lb"),
  35269. name: "Front",
  35270. image: {
  35271. source: "./media/characters/noraly/front.svg",
  35272. extra: 4985/4773,
  35273. bottom: 150/5135
  35274. }
  35275. },
  35276. full: {
  35277. height: math.unit(5 + 2/12, "feet"),
  35278. weight: math.unit(164, "lb"),
  35279. name: "Full",
  35280. image: {
  35281. source: "./media/characters/noraly/full.svg",
  35282. extra: 1114/1059,
  35283. bottom: 35/1149
  35284. }
  35285. },
  35286. fuller: {
  35287. height: math.unit(5 + 2/12, "feet"),
  35288. weight: math.unit(230, "lb"),
  35289. name: "Fuller",
  35290. image: {
  35291. source: "./media/characters/noraly/fuller.svg",
  35292. extra: 1114/1059,
  35293. bottom: 35/1149
  35294. }
  35295. },
  35296. fullest: {
  35297. height: math.unit(5 + 2/12, "feet"),
  35298. weight: math.unit(300, "lb"),
  35299. name: "Fullest",
  35300. image: {
  35301. source: "./media/characters/noraly/fullest.svg",
  35302. extra: 1114/1059,
  35303. bottom: 35/1149
  35304. }
  35305. },
  35306. },
  35307. [
  35308. {
  35309. name: "Normal",
  35310. height: math.unit(5 + 2/12, "feet"),
  35311. default: true
  35312. },
  35313. ]
  35314. ))
  35315. characterMakers.push(() => makeCharacter(
  35316. { name: "Pera", species: ["snake"], tags: ["naga"] },
  35317. {
  35318. front: {
  35319. height: math.unit(5 + 2/12, "feet"),
  35320. weight: math.unit(210, "lb"),
  35321. name: "Front",
  35322. image: {
  35323. source: "./media/characters/pera/front.svg",
  35324. extra: 1560/1531,
  35325. bottom: 165/1725
  35326. }
  35327. },
  35328. back: {
  35329. height: math.unit(5 + 2/12, "feet"),
  35330. weight: math.unit(210, "lb"),
  35331. name: "Back",
  35332. image: {
  35333. source: "./media/characters/pera/back.svg",
  35334. extra: 1523/1493,
  35335. bottom: 152/1675
  35336. }
  35337. },
  35338. dick: {
  35339. height: math.unit(2.4, "feet"),
  35340. name: "Dick",
  35341. image: {
  35342. source: "./media/characters/pera/dick.svg"
  35343. }
  35344. },
  35345. },
  35346. [
  35347. {
  35348. name: "Normal",
  35349. height: math.unit(5 + 2/12, "feet"),
  35350. default: true
  35351. },
  35352. ]
  35353. ))
  35354. characterMakers.push(() => makeCharacter(
  35355. { name: "Julian", species: ["rainbow"], tags: ["anthro"] },
  35356. {
  35357. front: {
  35358. height: math.unit(12, "feet"),
  35359. weight: math.unit(3200, "lb"),
  35360. name: "Front",
  35361. image: {
  35362. source: "./media/characters/julian/front.svg",
  35363. extra: 2962/2701,
  35364. bottom: 184/3146
  35365. }
  35366. },
  35367. maw: {
  35368. height: math.unit(5.35, "feet"),
  35369. name: "Maw",
  35370. image: {
  35371. source: "./media/characters/julian/maw.svg"
  35372. }
  35373. },
  35374. paw: {
  35375. height: math.unit(3.07, "feet"),
  35376. name: "Paw",
  35377. image: {
  35378. source: "./media/characters/julian/paw.svg"
  35379. }
  35380. },
  35381. },
  35382. [
  35383. {
  35384. name: "Default",
  35385. height: math.unit(12, "feet"),
  35386. default: true
  35387. },
  35388. {
  35389. name: "Big",
  35390. height: math.unit(50, "feet")
  35391. },
  35392. {
  35393. name: "Really Big",
  35394. height: math.unit(1, "mile")
  35395. },
  35396. {
  35397. name: "Extremely Big",
  35398. height: math.unit(100, "miles")
  35399. },
  35400. {
  35401. name: "Planet Hugger",
  35402. height: math.unit(200, "megameters")
  35403. },
  35404. {
  35405. name: "Unreasonably Big",
  35406. height: math.unit(1e300, "meters")
  35407. },
  35408. ]
  35409. ))
  35410. characterMakers.push(() => makeCharacter(
  35411. { name: "Pi", species: ["solgaleo"], tags: ["anthro", "goo"] },
  35412. {
  35413. solgooleo: {
  35414. height: math.unit(4, "meters"),
  35415. weight: math.unit(6000*1.5, "kg"),
  35416. volume: math.unit(6000, "liters"),
  35417. name: "Solgooleo",
  35418. image: {
  35419. source: "./media/characters/pi/solgooleo.svg",
  35420. extra: 388/331,
  35421. bottom: 29/417
  35422. }
  35423. },
  35424. },
  35425. [
  35426. {
  35427. name: "Normal",
  35428. height: math.unit(4, "meters"),
  35429. default: true
  35430. },
  35431. ]
  35432. ))
  35433. characterMakers.push(() => makeCharacter(
  35434. { name: "Shaun", species: ["dragon"], tags: ["anthro"] },
  35435. {
  35436. front: {
  35437. height: math.unit(8, "feet"),
  35438. weight: math.unit(4, "tons"),
  35439. name: "Front",
  35440. image: {
  35441. source: "./media/characters/shaun/front.svg",
  35442. extra: 503/495,
  35443. bottom: 20/523
  35444. }
  35445. },
  35446. back: {
  35447. height: math.unit(8, "feet"),
  35448. weight: math.unit(4, "tons"),
  35449. name: "Back",
  35450. image: {
  35451. source: "./media/characters/shaun/back.svg",
  35452. extra: 487/480,
  35453. bottom: 20/507
  35454. }
  35455. },
  35456. },
  35457. [
  35458. {
  35459. name: "Lorg",
  35460. height: math.unit(8, "feet"),
  35461. default: true
  35462. },
  35463. ]
  35464. ))
  35465. characterMakers.push(() => makeCharacter(
  35466. { name: "Sini", species: ["dragon"], tags: ["anthro", "feral"] },
  35467. {
  35468. frontAnthro: {
  35469. height: math.unit(7, "feet"),
  35470. name: "Front",
  35471. image: {
  35472. source: "./media/characters/sini/front-anthro.svg",
  35473. extra: 726/678,
  35474. bottom: 35/761
  35475. },
  35476. form: "anthro",
  35477. default: true
  35478. },
  35479. backAnthro: {
  35480. height: math.unit(7, "feet"),
  35481. name: "Back",
  35482. image: {
  35483. source: "./media/characters/sini/back-anthro.svg",
  35484. extra: 743/701,
  35485. bottom: 12/755
  35486. },
  35487. form: "anthro",
  35488. },
  35489. frontAnthroNsfw: {
  35490. height: math.unit(7, "feet"),
  35491. name: "Front (NSFW)",
  35492. image: {
  35493. source: "./media/characters/sini/front-anthro-nsfw.svg",
  35494. extra: 726/678,
  35495. bottom: 35/761
  35496. },
  35497. form: "anthro"
  35498. },
  35499. backAnthroNsfw: {
  35500. height: math.unit(7, "feet"),
  35501. name: "Back (NSFW)",
  35502. image: {
  35503. source: "./media/characters/sini/back-anthro-nsfw.svg",
  35504. extra: 743/701,
  35505. bottom: 12/755
  35506. },
  35507. form: "anthro",
  35508. },
  35509. mawAnthro: {
  35510. height: math.unit(2.14, "feet"),
  35511. name: "Maw",
  35512. image: {
  35513. source: "./media/characters/sini/maw-anthro.svg"
  35514. },
  35515. form: "anthro"
  35516. },
  35517. dick: {
  35518. height: math.unit(1.45, "feet"),
  35519. name: "Dick",
  35520. image: {
  35521. source: "./media/characters/sini/dick-anthro.svg"
  35522. },
  35523. form: "anthro"
  35524. },
  35525. feral: {
  35526. height: math.unit(16, "feet"),
  35527. name: "Feral",
  35528. image: {
  35529. source: "./media/characters/sini/feral.svg",
  35530. extra: 814/605,
  35531. bottom: 11/825
  35532. },
  35533. form: "feral",
  35534. default: true
  35535. },
  35536. feralNsfw: {
  35537. height: math.unit(16, "feet"),
  35538. name: "Feral (NSFW)",
  35539. image: {
  35540. source: "./media/characters/sini/feral-nsfw.svg",
  35541. extra: 814/605,
  35542. bottom: 11/825
  35543. },
  35544. form: "feral"
  35545. },
  35546. mawFeral: {
  35547. height: math.unit(5.66, "feet"),
  35548. name: "Maw",
  35549. image: {
  35550. source: "./media/characters/sini/maw-feral.svg"
  35551. },
  35552. form: "feral",
  35553. },
  35554. pawFeral: {
  35555. height: math.unit(5.17, "feet"),
  35556. name: "Paw",
  35557. image: {
  35558. source: "./media/characters/sini/paw-feral.svg"
  35559. },
  35560. form: "feral",
  35561. },
  35562. rumpFeral: {
  35563. height: math.unit(13.11, "feet"),
  35564. name: "Rump",
  35565. image: {
  35566. source: "./media/characters/sini/rump-feral.svg"
  35567. },
  35568. form: "feral",
  35569. },
  35570. dickFeral: {
  35571. height: math.unit(1, "feet"),
  35572. name: "Dick",
  35573. image: {
  35574. source: "./media/characters/sini/dick-feral.svg"
  35575. },
  35576. form: "feral",
  35577. },
  35578. eyeFeral: {
  35579. height: math.unit(1.23, "feet"),
  35580. name: "Eye",
  35581. image: {
  35582. source: "./media/characters/sini/eye-feral.svg"
  35583. },
  35584. form: "feral",
  35585. },
  35586. },
  35587. [
  35588. {
  35589. name: "Normal",
  35590. height: math.unit(7, "feet"),
  35591. default: true,
  35592. form: "anthro"
  35593. },
  35594. {
  35595. name: "Normal",
  35596. height: math.unit(16, "feet"),
  35597. default: true,
  35598. form: "feral"
  35599. },
  35600. ],
  35601. {
  35602. "anthro": {
  35603. name: "Anthro",
  35604. default: true
  35605. },
  35606. "feral": {
  35607. name: "Feral",
  35608. }
  35609. }
  35610. ))
  35611. characterMakers.push(() => makeCharacter(
  35612. { name: "Raylldo", species: ["dragon"], tags: ["feral"] },
  35613. {
  35614. side: {
  35615. height: math.unit(47.2, "meters"),
  35616. weight: math.unit(10000, "tons"),
  35617. name: "Side",
  35618. image: {
  35619. source: "./media/characters/raylldo/side.svg",
  35620. extra: 2363/642,
  35621. bottom: 221/2584
  35622. }
  35623. },
  35624. top: {
  35625. height: math.unit(240, "meters"),
  35626. weight: math.unit(10000, "tons"),
  35627. name: "Top",
  35628. image: {
  35629. source: "./media/characters/raylldo/top.svg"
  35630. }
  35631. },
  35632. bottom: {
  35633. height: math.unit(240, "meters"),
  35634. weight: math.unit(10000, "tons"),
  35635. name: "Bottom",
  35636. image: {
  35637. source: "./media/characters/raylldo/bottom.svg"
  35638. }
  35639. },
  35640. head: {
  35641. height: math.unit(38.6, "meters"),
  35642. name: "Head",
  35643. image: {
  35644. source: "./media/characters/raylldo/head.svg",
  35645. extra: 1335/1112,
  35646. bottom: 0/1335
  35647. }
  35648. },
  35649. maw: {
  35650. height: math.unit(16.37, "meters"),
  35651. name: "Maw",
  35652. image: {
  35653. source: "./media/characters/raylldo/maw.svg",
  35654. extra: 883/660,
  35655. bottom: 0/883
  35656. },
  35657. extraAttributes: {
  35658. preyCapacity: {
  35659. name: "Capacity",
  35660. power: 3,
  35661. type: "volume",
  35662. base: math.unit(1000, "people")
  35663. },
  35664. tongueSize: {
  35665. name: "Tongue Size",
  35666. power: 2,
  35667. type: "area",
  35668. base: math.unit(21, "m^2")
  35669. }
  35670. }
  35671. },
  35672. forepaw: {
  35673. height: math.unit(18, "meters"),
  35674. name: "Forepaw",
  35675. image: {
  35676. source: "./media/characters/raylldo/forepaw.svg"
  35677. }
  35678. },
  35679. hindpaw: {
  35680. height: math.unit(23, "meters"),
  35681. name: "Hindpaw",
  35682. image: {
  35683. source: "./media/characters/raylldo/hindpaw.svg"
  35684. }
  35685. },
  35686. genitals: {
  35687. height: math.unit(42, "meters"),
  35688. name: "Genitals",
  35689. image: {
  35690. source: "./media/characters/raylldo/genitals.svg"
  35691. }
  35692. },
  35693. },
  35694. [
  35695. {
  35696. name: "Normal",
  35697. height: math.unit(47.2, "meters"),
  35698. default: true
  35699. },
  35700. ]
  35701. ))
  35702. characterMakers.push(() => makeCharacter(
  35703. { name: "Glint", species: ["lucent-nargacuga"], tags: ["anthro", "feral"] },
  35704. {
  35705. anthroFront: {
  35706. height: math.unit(9, "feet"),
  35707. weight: math.unit(600, "lb"),
  35708. name: "Anthro (Front)",
  35709. image: {
  35710. source: "./media/characters/glint/anthro-front.svg",
  35711. extra: 1097/1018,
  35712. bottom: 28/1125
  35713. }
  35714. },
  35715. anthroBack: {
  35716. height: math.unit(9, "feet"),
  35717. weight: math.unit(600, "lb"),
  35718. name: "Anthro (Back)",
  35719. image: {
  35720. source: "./media/characters/glint/anthro-back.svg",
  35721. extra: 1154/997,
  35722. bottom: 36/1190
  35723. }
  35724. },
  35725. feral: {
  35726. height: math.unit(11, "feet"),
  35727. weight: math.unit(50000, "lb"),
  35728. name: "Feral",
  35729. image: {
  35730. source: "./media/characters/glint/feral.svg",
  35731. extra: 3035/1585,
  35732. bottom: 1169/4204
  35733. }
  35734. },
  35735. dickAnthro: {
  35736. height: math.unit(0.7, "meters"),
  35737. name: "Dick (Anthro)",
  35738. image: {
  35739. source: "./media/characters/glint/dick-anthro.svg"
  35740. }
  35741. },
  35742. dickFeral: {
  35743. height: math.unit(2.65, "meters"),
  35744. name: "Dick (Feral)",
  35745. image: {
  35746. source: "./media/characters/glint/dick-feral.svg"
  35747. }
  35748. },
  35749. slitHidden: {
  35750. height: math.unit(5.85, "meters"),
  35751. name: "Slit (Hidden)",
  35752. image: {
  35753. source: "./media/characters/glint/slit-hidden.svg"
  35754. }
  35755. },
  35756. slitErect: {
  35757. height: math.unit(5.85, "meters"),
  35758. name: "Slit (Erect)",
  35759. image: {
  35760. source: "./media/characters/glint/slit-erect.svg"
  35761. }
  35762. },
  35763. mawAnthro: {
  35764. height: math.unit(0.63, "meters"),
  35765. name: "Maw (Anthro)",
  35766. image: {
  35767. source: "./media/characters/glint/maw.svg"
  35768. }
  35769. },
  35770. mawFeral: {
  35771. height: math.unit(2.89, "meters"),
  35772. name: "Maw (Feral)",
  35773. image: {
  35774. source: "./media/characters/glint/maw.svg"
  35775. }
  35776. },
  35777. },
  35778. [
  35779. {
  35780. name: "Normal",
  35781. height: math.unit(9, "feet"),
  35782. default: true
  35783. },
  35784. ]
  35785. ))
  35786. characterMakers.push(() => makeCharacter(
  35787. { name: "Kairne", species: ["dragon"], tags: ["feral"] },
  35788. {
  35789. side: {
  35790. height: math.unit(15, "feet"),
  35791. weight: math.unit(5000, "kg"),
  35792. name: "Side",
  35793. image: {
  35794. source: "./media/characters/kairne/side.svg",
  35795. extra: 979/811,
  35796. bottom: 13/992
  35797. }
  35798. },
  35799. front: {
  35800. height: math.unit(15, "feet"),
  35801. weight: math.unit(5000, "kg"),
  35802. name: "Front",
  35803. image: {
  35804. source: "./media/characters/kairne/front.svg",
  35805. extra: 908/814,
  35806. bottom: 26/934
  35807. }
  35808. },
  35809. sideNsfw: {
  35810. height: math.unit(15, "feet"),
  35811. weight: math.unit(5000, "kg"),
  35812. name: "Side (NSFW)",
  35813. image: {
  35814. source: "./media/characters/kairne/side-nsfw.svg",
  35815. extra: 979/811,
  35816. bottom: 13/992
  35817. }
  35818. },
  35819. frontNsfw: {
  35820. height: math.unit(15, "feet"),
  35821. weight: math.unit(5000, "kg"),
  35822. name: "Front (NSFW)",
  35823. image: {
  35824. source: "./media/characters/kairne/front-nsfw.svg",
  35825. extra: 908/814,
  35826. bottom: 26/934
  35827. }
  35828. },
  35829. dickCaged: {
  35830. height: math.unit(0.65, "meters"),
  35831. name: "Dick-caged",
  35832. image: {
  35833. source: "./media/characters/kairne/dick-caged.svg"
  35834. }
  35835. },
  35836. dick: {
  35837. height: math.unit(0.79, "meters"),
  35838. name: "Dick",
  35839. image: {
  35840. source: "./media/characters/kairne/dick.svg"
  35841. }
  35842. },
  35843. genitals: {
  35844. height: math.unit(1.29, "meters"),
  35845. name: "Genitals",
  35846. image: {
  35847. source: "./media/characters/kairne/genitals.svg"
  35848. }
  35849. },
  35850. maw: {
  35851. height: math.unit(1.73, "meters"),
  35852. name: "Maw",
  35853. image: {
  35854. source: "./media/characters/kairne/maw.svg"
  35855. }
  35856. },
  35857. },
  35858. [
  35859. {
  35860. name: "Normal",
  35861. height: math.unit(15, "feet"),
  35862. default: true
  35863. },
  35864. ]
  35865. ))
  35866. characterMakers.push(() => makeCharacter(
  35867. { name: "Biscuit (Jackal)", species: ["jackal"], tags: ["anthro"] },
  35868. {
  35869. front: {
  35870. height: math.unit(5 + 8/12, "feet"),
  35871. weight: math.unit(139, "lb"),
  35872. name: "Front",
  35873. image: {
  35874. source: "./media/characters/biscuit-jackal/front.svg",
  35875. extra: 2106/1961,
  35876. bottom: 58/2164
  35877. }
  35878. },
  35879. back: {
  35880. height: math.unit(5 + 8/12, "feet"),
  35881. weight: math.unit(139, "lb"),
  35882. name: "Back",
  35883. image: {
  35884. source: "./media/characters/biscuit-jackal/back.svg",
  35885. extra: 2132/1976,
  35886. bottom: 57/2189
  35887. }
  35888. },
  35889. werejackal: {
  35890. height: math.unit(6 + 3/12, "feet"),
  35891. weight: math.unit(188, "lb"),
  35892. name: "Werejackal",
  35893. image: {
  35894. source: "./media/characters/biscuit-jackal/werejackal.svg",
  35895. extra: 2373/2178,
  35896. bottom: 53/2426
  35897. }
  35898. },
  35899. },
  35900. [
  35901. {
  35902. name: "Normal",
  35903. height: math.unit(5 + 8/12, "feet"),
  35904. default: true
  35905. },
  35906. ]
  35907. ))
  35908. characterMakers.push(() => makeCharacter(
  35909. { name: "Tayra White", species: ["human", "chimera"], tags: ["anthro"] },
  35910. {
  35911. front: {
  35912. height: math.unit(140, "cm"),
  35913. weight: math.unit(45, "kg"),
  35914. name: "Front",
  35915. image: {
  35916. source: "./media/characters/tayra-white/front.svg",
  35917. extra: 2229/2192,
  35918. bottom: 75/2304
  35919. }
  35920. },
  35921. },
  35922. [
  35923. {
  35924. name: "Normal",
  35925. height: math.unit(140, "cm"),
  35926. default: true
  35927. },
  35928. ]
  35929. ))
  35930. characterMakers.push(() => makeCharacter(
  35931. { name: "Scoop", species: ["mouse"], tags: ["anthro"] },
  35932. {
  35933. front: {
  35934. height: math.unit(4 + 5/12, "feet"),
  35935. name: "Front",
  35936. image: {
  35937. source: "./media/characters/scoop/front.svg",
  35938. extra: 1257/1136,
  35939. bottom: 69/1326
  35940. }
  35941. },
  35942. back: {
  35943. height: math.unit(4 + 5/12, "feet"),
  35944. name: "Back",
  35945. image: {
  35946. source: "./media/characters/scoop/back.svg",
  35947. extra: 1321/1152,
  35948. bottom: 32/1353
  35949. }
  35950. },
  35951. maw: {
  35952. height: math.unit(0.68, "feet"),
  35953. name: "Maw",
  35954. image: {
  35955. source: "./media/characters/scoop/maw.svg"
  35956. }
  35957. },
  35958. },
  35959. [
  35960. {
  35961. name: "Really Small",
  35962. height: math.unit(1, "mm")
  35963. },
  35964. {
  35965. name: "Micro",
  35966. height: math.unit(1, "inch")
  35967. },
  35968. {
  35969. name: "Normal",
  35970. height: math.unit(4 + 5/12, "feet"),
  35971. default: true
  35972. },
  35973. {
  35974. name: "Macro",
  35975. height: math.unit(200, "feet")
  35976. },
  35977. {
  35978. name: "Megamacro",
  35979. height: math.unit(3240, "feet")
  35980. },
  35981. {
  35982. name: "Teramacro",
  35983. height: math.unit(2500, "miles")
  35984. },
  35985. ]
  35986. ))
  35987. characterMakers.push(() => makeCharacter(
  35988. { name: "Saphinara", species: ["demon", "snow-leopard"], tags: ["anthro"] },
  35989. {
  35990. front: {
  35991. height: math.unit(15 + 7/12, "feet"),
  35992. weight: math.unit(1150, "tons"),
  35993. name: "Front",
  35994. image: {
  35995. source: "./media/characters/saphinara/front.svg",
  35996. extra: 1837/1643,
  35997. bottom: 84/1921
  35998. },
  35999. form: "normal",
  36000. default: true
  36001. },
  36002. side: {
  36003. height: math.unit(15 + 7/12, "feet"),
  36004. weight: math.unit(1150, "tons"),
  36005. name: "Side",
  36006. image: {
  36007. source: "./media/characters/saphinara/side.svg",
  36008. extra: 605/547,
  36009. bottom: 6/611
  36010. },
  36011. form: "normal"
  36012. },
  36013. back: {
  36014. height: math.unit(15 + 7/12, "feet"),
  36015. weight: math.unit(1150, "tons"),
  36016. name: "Back",
  36017. image: {
  36018. source: "./media/characters/saphinara/back.svg",
  36019. extra: 591/531,
  36020. bottom: 13/604
  36021. },
  36022. form: "normal"
  36023. },
  36024. frontTail: {
  36025. height: math.unit(15 + 7/12, "feet"),
  36026. weight: math.unit(1150, "tons"),
  36027. name: "Front (Full Tail)",
  36028. image: {
  36029. source: "./media/characters/saphinara/front-tail.svg",
  36030. extra: 2256/1630,
  36031. bottom: 261/2517
  36032. },
  36033. form: "normal"
  36034. },
  36035. insides: {
  36036. height: math.unit(11.92, "feet"),
  36037. name: "Insides",
  36038. image: {
  36039. source: "./media/characters/saphinara/insides.svg"
  36040. },
  36041. form: "normal"
  36042. },
  36043. head: {
  36044. height: math.unit(4.17, "feet"),
  36045. name: "Head",
  36046. image: {
  36047. source: "./media/characters/saphinara/head.svg"
  36048. },
  36049. form: "normal"
  36050. },
  36051. tongue: {
  36052. height: math.unit(4.60, "feet"),
  36053. name: "Tongue",
  36054. image: {
  36055. source: "./media/characters/saphinara/tongue.svg"
  36056. },
  36057. form: "normal"
  36058. },
  36059. headEnraged: {
  36060. height: math.unit(5.55, "feet"),
  36061. name: "Head (Enraged)",
  36062. image: {
  36063. source: "./media/characters/saphinara/head-enraged.svg"
  36064. },
  36065. form: "normal"
  36066. },
  36067. wings: {
  36068. height: math.unit(11.95, "feet"),
  36069. name: "Wings",
  36070. image: {
  36071. source: "./media/characters/saphinara/wings.svg"
  36072. },
  36073. form: "normal"
  36074. },
  36075. feathers: {
  36076. height: math.unit(8.92, "feet"),
  36077. name: "Feathers",
  36078. image: {
  36079. source: "./media/characters/saphinara/feathers.svg"
  36080. },
  36081. form: "normal"
  36082. },
  36083. shackles: {
  36084. height: math.unit(2, "feet"),
  36085. name: "Shackles",
  36086. image: {
  36087. source: "./media/characters/saphinara/shackles.svg"
  36088. },
  36089. form: "normal"
  36090. },
  36091. eyes: {
  36092. height: math.unit(1.331, "feet"),
  36093. name: "Eyes",
  36094. image: {
  36095. source: "./media/characters/saphinara/eyes.svg"
  36096. },
  36097. form: "normal"
  36098. },
  36099. eyesEnraged: {
  36100. height: math.unit(1.331, "feet"),
  36101. name: "Eyes (Enraged)",
  36102. image: {
  36103. source: "./media/characters/saphinara/eyes-enraged.svg"
  36104. },
  36105. form: "normal"
  36106. },
  36107. trueFormSide: {
  36108. height: math.unit(200, "feet"),
  36109. weight: math.unit(1e7, "tons"),
  36110. name: "Side",
  36111. image: {
  36112. source: "./media/characters/saphinara/true-form-side.svg",
  36113. extra: 1399/770,
  36114. bottom: 97/1496
  36115. },
  36116. form: "true-form",
  36117. default: true
  36118. },
  36119. trueFormMaw: {
  36120. height: math.unit(71.5, "feet"),
  36121. name: "Maw",
  36122. image: {
  36123. source: "./media/characters/saphinara/true-form-maw.svg",
  36124. extra: 2302/1453,
  36125. bottom: 0/2302
  36126. },
  36127. form: "true-form"
  36128. },
  36129. meowberusSide: {
  36130. height: math.unit(75, "feet"),
  36131. weight: math.unit(180000, "kg"),
  36132. preyCapacity: math.unit(50000, "people"),
  36133. name: "Side",
  36134. image: {
  36135. source: "./media/characters/saphinara/meowberus-side.svg",
  36136. extra: 1400/711,
  36137. bottom: 126/1526
  36138. },
  36139. form: "meowberus",
  36140. extraAttributes: {
  36141. "pawArea": {
  36142. name: "Paw Size",
  36143. power: 2,
  36144. type: "area",
  36145. base: math.unit(35, "m^2")
  36146. }
  36147. }
  36148. },
  36149. },
  36150. [
  36151. {
  36152. name: "Normal",
  36153. height: math.unit(15 + 7/12, "feet"),
  36154. default: true,
  36155. form: "normal"
  36156. },
  36157. {
  36158. name: "Angry",
  36159. height: math.unit(30 + 6/12, "feet"),
  36160. form: "normal"
  36161. },
  36162. {
  36163. name: "Enraged",
  36164. height: math.unit(102 + 1/12, "feet"),
  36165. form: "normal"
  36166. },
  36167. {
  36168. name: "True",
  36169. height: math.unit(200, "feet"),
  36170. default: true,
  36171. form: "true-form"
  36172. },
  36173. {
  36174. name: "Normal",
  36175. height: math.unit(75, "feet"),
  36176. default: true,
  36177. form: "meowberus"
  36178. },
  36179. ],
  36180. {
  36181. "normal": {
  36182. name: "Normal",
  36183. default: true
  36184. },
  36185. "true-form": {
  36186. name: "True Form"
  36187. },
  36188. "meowberus": {
  36189. name: "Meowberus",
  36190. },
  36191. }
  36192. ))
  36193. characterMakers.push(() => makeCharacter(
  36194. { name: "Jrain", species: ["leviathan"], tags: ["anthro"] },
  36195. {
  36196. front: {
  36197. height: math.unit(6 + 8/12, "feet"),
  36198. weight: math.unit(300, "lb"),
  36199. name: "Front",
  36200. image: {
  36201. source: "./media/characters/jrain/front.svg",
  36202. extra: 3039/2865,
  36203. bottom: 399/3438
  36204. }
  36205. },
  36206. back: {
  36207. height: math.unit(6 + 8/12, "feet"),
  36208. weight: math.unit(300, "lb"),
  36209. name: "Back",
  36210. image: {
  36211. source: "./media/characters/jrain/back.svg",
  36212. extra: 3089/2938,
  36213. bottom: 172/3261
  36214. }
  36215. },
  36216. head: {
  36217. height: math.unit(2.14, "feet"),
  36218. name: "Head",
  36219. image: {
  36220. source: "./media/characters/jrain/head.svg"
  36221. }
  36222. },
  36223. maw: {
  36224. height: math.unit(1.77, "feet"),
  36225. name: "Maw",
  36226. image: {
  36227. source: "./media/characters/jrain/maw.svg"
  36228. }
  36229. },
  36230. leftHand: {
  36231. height: math.unit(1.1, "feet"),
  36232. name: "Left Hand",
  36233. image: {
  36234. source: "./media/characters/jrain/left-hand.svg"
  36235. }
  36236. },
  36237. rightHand: {
  36238. height: math.unit(1.1, "feet"),
  36239. name: "Right Hand",
  36240. image: {
  36241. source: "./media/characters/jrain/right-hand.svg"
  36242. }
  36243. },
  36244. eye: {
  36245. height: math.unit(0.35, "feet"),
  36246. name: "Eye",
  36247. image: {
  36248. source: "./media/characters/jrain/eye.svg"
  36249. }
  36250. },
  36251. },
  36252. [
  36253. {
  36254. name: "Normal",
  36255. height: math.unit(6 + 8/12, "feet"),
  36256. default: true
  36257. },
  36258. {
  36259. name: "Casually Large",
  36260. height: math.unit(25, "feet")
  36261. },
  36262. {
  36263. name: "Giant",
  36264. height: math.unit(100, "feet")
  36265. },
  36266. {
  36267. name: "Kaiju",
  36268. height: math.unit(300, "feet")
  36269. },
  36270. ]
  36271. ))
  36272. characterMakers.push(() => makeCharacter(
  36273. { name: "Sabrina", species: ["dragon", "snake", "gryphon"], tags: ["feral"] },
  36274. {
  36275. dragon: {
  36276. height: math.unit(5, "meters"),
  36277. name: "Dragon",
  36278. image: {
  36279. source: "./media/characters/sabrina/dragon.svg",
  36280. extra: 3670 / 2365,
  36281. bottom: 333 / 4003
  36282. }
  36283. },
  36284. gryphon: {
  36285. height: math.unit(3, "meters"),
  36286. name: "Gryphon",
  36287. image: {
  36288. source: "./media/characters/sabrina/gryphon.svg",
  36289. extra: 1576 / 945,
  36290. bottom: 71 / 1647
  36291. }
  36292. },
  36293. snake: {
  36294. height: math.unit(12, "meters"),
  36295. name: "Snake",
  36296. image: {
  36297. source: "./media/characters/sabrina/snake.svg",
  36298. extra: 1758 / 1320,
  36299. bottom: 186 / 1944
  36300. }
  36301. },
  36302. collar: {
  36303. height: math.unit(1.86, "meters"),
  36304. name: "Collar",
  36305. image: {
  36306. source: "./media/characters/sabrina/collar.svg"
  36307. }
  36308. },
  36309. eye: {
  36310. height: math.unit(0.53, "meters"),
  36311. name: "Eye",
  36312. image: {
  36313. source: "./media/characters/sabrina/eye.svg"
  36314. }
  36315. },
  36316. foot: {
  36317. height: math.unit(1.86, "meters"),
  36318. name: "Foot",
  36319. image: {
  36320. source: "./media/characters/sabrina/foot.svg"
  36321. }
  36322. },
  36323. hand: {
  36324. height: math.unit(1.32, "meters"),
  36325. name: "Hand",
  36326. image: {
  36327. source: "./media/characters/sabrina/hand.svg"
  36328. }
  36329. },
  36330. head: {
  36331. height: math.unit(2.44, "meters"),
  36332. name: "Head",
  36333. image: {
  36334. source: "./media/characters/sabrina/head.svg"
  36335. }
  36336. },
  36337. headAngry: {
  36338. height: math.unit(2.44, "meters"),
  36339. name: "Head (Angry))",
  36340. image: {
  36341. source: "./media/characters/sabrina/head-angry.svg"
  36342. }
  36343. },
  36344. maw: {
  36345. height: math.unit(1.65, "meters"),
  36346. name: "Maw",
  36347. image: {
  36348. source: "./media/characters/sabrina/maw.svg"
  36349. }
  36350. },
  36351. spikes: {
  36352. height: math.unit(1.69, "meters"),
  36353. name: "Spikes",
  36354. image: {
  36355. source: "./media/characters/sabrina/spikes.svg"
  36356. }
  36357. },
  36358. stomach: {
  36359. height: math.unit(1.15, "meters"),
  36360. name: "Stomach",
  36361. image: {
  36362. source: "./media/characters/sabrina/stomach.svg"
  36363. }
  36364. },
  36365. tongue: {
  36366. height: math.unit(1.27, "meters"),
  36367. name: "Tongue",
  36368. image: {
  36369. source: "./media/characters/sabrina/tongue.svg"
  36370. }
  36371. },
  36372. wingDorsal: {
  36373. height: math.unit(4.85, "meters"),
  36374. name: "Wing (Dorsal)",
  36375. image: {
  36376. source: "./media/characters/sabrina/wing-dorsal.svg"
  36377. }
  36378. },
  36379. wingVentral: {
  36380. height: math.unit(4.85, "meters"),
  36381. name: "Wing (Ventral)",
  36382. image: {
  36383. source: "./media/characters/sabrina/wing-ventral.svg"
  36384. }
  36385. },
  36386. },
  36387. [
  36388. {
  36389. name: "Normal",
  36390. height: math.unit(5, "meters"),
  36391. default: true
  36392. },
  36393. ]
  36394. ))
  36395. characterMakers.push(() => makeCharacter(
  36396. { name: "Midnight Tales", species: ["bat"], tags: ["anthro"] },
  36397. {
  36398. frontMaid: {
  36399. height: math.unit(5 + 5/12, "feet"),
  36400. weight: math.unit(130, "lb"),
  36401. name: "Front (Maid)",
  36402. image: {
  36403. source: "./media/characters/midnight-tales/front-maid.svg",
  36404. extra: 489/454,
  36405. bottom: 61/550
  36406. }
  36407. },
  36408. frontFormal: {
  36409. height: math.unit(5 + 5/12, "feet"),
  36410. weight: math.unit(130, "lb"),
  36411. name: "Front (Formal)",
  36412. image: {
  36413. source: "./media/characters/midnight-tales/front-formal.svg",
  36414. extra: 489/454,
  36415. bottom: 61/550
  36416. }
  36417. },
  36418. back: {
  36419. height: math.unit(5 + 5/12, "feet"),
  36420. weight: math.unit(130, "lb"),
  36421. name: "Back",
  36422. image: {
  36423. source: "./media/characters/midnight-tales/back.svg",
  36424. extra: 498/456,
  36425. bottom: 33/531
  36426. }
  36427. },
  36428. frontBeast: {
  36429. height: math.unit(40, "feet"),
  36430. weight: math.unit(64000, "lb"),
  36431. name: "Front (Beast)",
  36432. image: {
  36433. source: "./media/characters/midnight-tales/front-beast.svg",
  36434. extra: 927/860,
  36435. bottom: 53/980
  36436. }
  36437. },
  36438. backBeast: {
  36439. height: math.unit(40, "feet"),
  36440. weight: math.unit(64000, "lb"),
  36441. name: "Back (Beast)",
  36442. image: {
  36443. source: "./media/characters/midnight-tales/back-beast.svg",
  36444. extra: 929/855,
  36445. bottom: 16/945
  36446. }
  36447. },
  36448. footBeast: {
  36449. height: math.unit(6.7, "feet"),
  36450. name: "Foot (Beast)",
  36451. image: {
  36452. source: "./media/characters/midnight-tales/foot-beast.svg"
  36453. }
  36454. },
  36455. headBeast: {
  36456. height: math.unit(8, "feet"),
  36457. name: "Head (Beast)",
  36458. image: {
  36459. source: "./media/characters/midnight-tales/head-beast.svg"
  36460. }
  36461. },
  36462. },
  36463. [
  36464. {
  36465. name: "Normal",
  36466. height: math.unit(5 + 5 / 12, "feet"),
  36467. default: true
  36468. },
  36469. {
  36470. name: "Macro",
  36471. height: math.unit(25, "feet")
  36472. },
  36473. ]
  36474. ))
  36475. characterMakers.push(() => makeCharacter(
  36476. { name: "Argon", species: ["dragon"], tags: ["anthro"] },
  36477. {
  36478. front: {
  36479. height: math.unit(5 + 10/12, "feet"),
  36480. name: "Front",
  36481. image: {
  36482. source: "./media/characters/argon/front.svg",
  36483. extra: 2009/1935,
  36484. bottom: 118/2127
  36485. }
  36486. },
  36487. back: {
  36488. height: math.unit(5 + 10/12, "feet"),
  36489. name: "Back",
  36490. image: {
  36491. source: "./media/characters/argon/back.svg",
  36492. extra: 2047/1992,
  36493. bottom: 20/2067
  36494. }
  36495. },
  36496. frontDressed: {
  36497. height: math.unit(5 + 10/12, "feet"),
  36498. name: "Front (Dressed)",
  36499. image: {
  36500. source: "./media/characters/argon/front-dressed.svg",
  36501. extra: 2009/1935,
  36502. bottom: 118/2127
  36503. }
  36504. },
  36505. },
  36506. [
  36507. {
  36508. name: "Normal",
  36509. height: math.unit(5 + 10/12, "feet"),
  36510. default: true
  36511. },
  36512. ]
  36513. ))
  36514. characterMakers.push(() => makeCharacter(
  36515. { name: "Kichi", species: ["bull", "tanuki"], tags: ["anthro"] },
  36516. {
  36517. front: {
  36518. height: math.unit(8 + 6/12, "feet"),
  36519. weight: math.unit(1150, "lb"),
  36520. name: "Front",
  36521. image: {
  36522. source: "./media/characters/kichi/front.svg",
  36523. extra: 1267/1164,
  36524. bottom: 61/1328
  36525. }
  36526. },
  36527. back: {
  36528. height: math.unit(8 + 6/12, "feet"),
  36529. weight: math.unit(1150, "lb"),
  36530. name: "Back",
  36531. image: {
  36532. source: "./media/characters/kichi/back.svg",
  36533. extra: 1273/1166,
  36534. bottom: 33/1306
  36535. }
  36536. },
  36537. },
  36538. [
  36539. {
  36540. name: "Normal",
  36541. height: math.unit(8 + 6/12, "feet"),
  36542. default: true
  36543. },
  36544. ]
  36545. ))
  36546. characterMakers.push(() => makeCharacter(
  36547. { name: "Manetel Greyscale", species: ["dragon"], tags: ["anthro"] },
  36548. {
  36549. front: {
  36550. height: math.unit(6, "feet"),
  36551. weight: math.unit(210, "lb"),
  36552. name: "Front",
  36553. image: {
  36554. source: "./media/characters/manetel-greyscale/front.svg",
  36555. extra: 350/312,
  36556. bottom: 8/358
  36557. }
  36558. },
  36559. },
  36560. [
  36561. {
  36562. name: "Micro",
  36563. height: math.unit(2, "inches")
  36564. },
  36565. {
  36566. name: "Normal",
  36567. height: math.unit(6, "feet"),
  36568. default: true
  36569. },
  36570. {
  36571. name: "Minimacro",
  36572. height: math.unit(17, "feet")
  36573. },
  36574. {
  36575. name: "Macro",
  36576. height: math.unit(117, "feet")
  36577. },
  36578. ]
  36579. ))
  36580. characterMakers.push(() => makeCharacter(
  36581. { name: "Softpurr", species: ["chakat"], tags: ["taur"] },
  36582. {
  36583. side: {
  36584. height: math.unit(5 + 1/12, "feet"),
  36585. weight: math.unit(418, "lb"),
  36586. name: "Side",
  36587. image: {
  36588. source: "./media/characters/softpurr/side.svg",
  36589. extra: 1993/1945,
  36590. bottom: 134/2127
  36591. }
  36592. },
  36593. front: {
  36594. height: math.unit(5 + 1/12, "feet"),
  36595. weight: math.unit(418, "lb"),
  36596. name: "Front",
  36597. image: {
  36598. source: "./media/characters/softpurr/front.svg",
  36599. extra: 1950/1856,
  36600. bottom: 174/2124
  36601. }
  36602. },
  36603. paw: {
  36604. height: math.unit(1, "feet"),
  36605. name: "Paw",
  36606. image: {
  36607. source: "./media/characters/softpurr/paw.svg"
  36608. }
  36609. },
  36610. },
  36611. [
  36612. {
  36613. name: "Normal",
  36614. height: math.unit(5 + 1/12, "feet"),
  36615. default: true
  36616. },
  36617. ]
  36618. ))
  36619. characterMakers.push(() => makeCharacter(
  36620. { name: "Anahita", species: ["shark"], tags: ["anthro"] },
  36621. {
  36622. front: {
  36623. height: math.unit(260, "meters"),
  36624. name: "Front",
  36625. image: {
  36626. source: "./media/characters/anahita/front.svg",
  36627. extra: 665/635,
  36628. bottom: 89/754
  36629. }
  36630. },
  36631. },
  36632. [
  36633. {
  36634. name: "Macro",
  36635. height: math.unit(260, "meters"),
  36636. default: true
  36637. },
  36638. ]
  36639. ))
  36640. characterMakers.push(() => makeCharacter(
  36641. { name: "Chip (Mouse)", species: ["mouse"], tags: ["anthro"] },
  36642. {
  36643. front: {
  36644. height: math.unit(4 + 10/12, "feet"),
  36645. weight: math.unit(160, "lb"),
  36646. name: "Front",
  36647. image: {
  36648. source: "./media/characters/chip-mouse/front.svg",
  36649. extra: 3528/3408,
  36650. bottom: 0/3528
  36651. }
  36652. },
  36653. frontNsfw: {
  36654. height: math.unit(4 + 10/12, "feet"),
  36655. weight: math.unit(160, "lb"),
  36656. name: "Front (NSFW)",
  36657. image: {
  36658. source: "./media/characters/chip-mouse/front-nsfw.svg",
  36659. extra: 3528/3408,
  36660. bottom: 0/3528
  36661. }
  36662. },
  36663. },
  36664. [
  36665. {
  36666. name: "Normal",
  36667. height: math.unit(4 + 10/12, "feet"),
  36668. default: true
  36669. },
  36670. ]
  36671. ))
  36672. characterMakers.push(() => makeCharacter(
  36673. { name: "Kremm", species: ["dragon"], tags: ["feral"] },
  36674. {
  36675. side: {
  36676. height: math.unit(10, "feet"),
  36677. weight: math.unit(14000, "lb"),
  36678. name: "Side",
  36679. image: {
  36680. source: "./media/characters/kremm/side.svg",
  36681. extra: 1390/1053,
  36682. bottom: 90/1480
  36683. }
  36684. },
  36685. gut: {
  36686. height: math.unit(5.8, "feet"),
  36687. name: "Gut",
  36688. image: {
  36689. source: "./media/characters/kremm/gut.svg"
  36690. }
  36691. },
  36692. ass: {
  36693. height: math.unit(6.1, "feet"),
  36694. name: "Ass",
  36695. image: {
  36696. source: "./media/characters/kremm/ass.svg"
  36697. }
  36698. },
  36699. jaws: {
  36700. height: math.unit(2.2, "feet"),
  36701. name: "Jaws",
  36702. image: {
  36703. source: "./media/characters/kremm/jaws.svg"
  36704. }
  36705. },
  36706. dick: {
  36707. height: math.unit(4.26, "feet"),
  36708. name: "Dick",
  36709. image: {
  36710. source: "./media/characters/kremm/dick.svg"
  36711. }
  36712. },
  36713. },
  36714. [
  36715. {
  36716. name: "Normal",
  36717. height: math.unit(10, "feet"),
  36718. default: true
  36719. },
  36720. ]
  36721. ))
  36722. characterMakers.push(() => makeCharacter(
  36723. { name: "Kai", species: ["skunk"], tags: ["anthro"] },
  36724. {
  36725. front: {
  36726. height: math.unit(30, "stories"),
  36727. name: "Front",
  36728. image: {
  36729. source: "./media/characters/kai/front.svg",
  36730. extra: 1892/1718,
  36731. bottom: 162/2054
  36732. }
  36733. },
  36734. },
  36735. [
  36736. {
  36737. name: "Macro",
  36738. height: math.unit(30, "stories"),
  36739. default: true
  36740. },
  36741. ]
  36742. ))
  36743. characterMakers.push(() => makeCharacter(
  36744. { name: "Sykes", species: ["maned-wolf"], tags: ["anthro"] },
  36745. {
  36746. front: {
  36747. height: math.unit(6 + 4/12, "feet"),
  36748. weight: math.unit(145, "lb"),
  36749. name: "Front",
  36750. image: {
  36751. source: "./media/characters/sykes/front.svg",
  36752. extra: 1321 / 1187,
  36753. bottom: 66 / 1387
  36754. }
  36755. },
  36756. back: {
  36757. height: math.unit(6 + 4/12, "feet"),
  36758. weight: math.unit(145, "lb"),
  36759. name: "Back",
  36760. image: {
  36761. source: "./media/characters/sykes/back.svg",
  36762. extra: 1326/1181,
  36763. bottom: 31/1357
  36764. }
  36765. },
  36766. traditionalOutfit: {
  36767. height: math.unit(6 + 4/12, "feet"),
  36768. weight: math.unit(145, "lb"),
  36769. name: "Traditional Outfit",
  36770. image: {
  36771. source: "./media/characters/sykes/traditional-outfit.svg",
  36772. extra: 1321 / 1187,
  36773. bottom: 66 / 1387
  36774. }
  36775. },
  36776. adventureOutfit: {
  36777. height: math.unit(6 + 4/12, "feet"),
  36778. weight: math.unit(145, "lb"),
  36779. name: "Adventure Outfit",
  36780. image: {
  36781. source: "./media/characters/sykes/adventure-outfit.svg",
  36782. extra: 1321 / 1187,
  36783. bottom: 66 / 1387
  36784. }
  36785. },
  36786. handLeft: {
  36787. height: math.unit(0.9, "feet"),
  36788. name: "Hand (Left)",
  36789. image: {
  36790. source: "./media/characters/sykes/hand-left.svg"
  36791. }
  36792. },
  36793. handRight: {
  36794. height: math.unit(0.839, "feet"),
  36795. name: "Hand (Right)",
  36796. image: {
  36797. source: "./media/characters/sykes/hand-right.svg"
  36798. }
  36799. },
  36800. leftFoot: {
  36801. height: math.unit(1.2, "feet"),
  36802. name: "Foot (Left)",
  36803. image: {
  36804. source: "./media/characters/sykes/foot-left.svg"
  36805. }
  36806. },
  36807. rightFoot: {
  36808. height: math.unit(1.2, "feet"),
  36809. name: "Foot (Right)",
  36810. image: {
  36811. source: "./media/characters/sykes/foot-right.svg"
  36812. }
  36813. },
  36814. maw: {
  36815. height: math.unit(1.93, "feet"),
  36816. name: "Maw",
  36817. image: {
  36818. source: "./media/characters/sykes/maw.svg"
  36819. }
  36820. },
  36821. teeth: {
  36822. height: math.unit(0.51, "feet"),
  36823. name: "Teeth",
  36824. image: {
  36825. source: "./media/characters/sykes/teeth.svg"
  36826. }
  36827. },
  36828. tongue: {
  36829. height: math.unit(2.13, "feet"),
  36830. name: "Tongue",
  36831. image: {
  36832. source: "./media/characters/sykes/tongue.svg"
  36833. }
  36834. },
  36835. uvula: {
  36836. height: math.unit(0.16, "feet"),
  36837. name: "Uvula",
  36838. image: {
  36839. source: "./media/characters/sykes/uvula.svg"
  36840. }
  36841. },
  36842. collar: {
  36843. height: math.unit(0.287, "feet"),
  36844. name: "Collar",
  36845. image: {
  36846. source: "./media/characters/sykes/collar.svg"
  36847. }
  36848. },
  36849. tail: {
  36850. height: math.unit(3.8, "feet"),
  36851. name: "Tail",
  36852. image: {
  36853. source: "./media/characters/sykes/tail.svg"
  36854. }
  36855. },
  36856. },
  36857. [
  36858. {
  36859. name: "Shrunken",
  36860. height: math.unit(5, "inches")
  36861. },
  36862. {
  36863. name: "Normal",
  36864. height: math.unit(6 + 4 / 12, "feet"),
  36865. default: true
  36866. },
  36867. {
  36868. name: "Big",
  36869. height: math.unit(15, "feet")
  36870. },
  36871. ]
  36872. ))
  36873. characterMakers.push(() => makeCharacter(
  36874. { name: "Oven Otter", species: ["otter"], tags: ["anthro"] },
  36875. {
  36876. front: {
  36877. height: math.unit(5 + 8/12, "feet"),
  36878. weight: math.unit(190, "lb"),
  36879. name: "Front",
  36880. image: {
  36881. source: "./media/characters/oven-otter/front.svg",
  36882. extra: 1809/1740,
  36883. bottom: 181/1990
  36884. }
  36885. },
  36886. back: {
  36887. height: math.unit(5 + 8/12, "feet"),
  36888. weight: math.unit(190, "lb"),
  36889. name: "Back",
  36890. image: {
  36891. source: "./media/characters/oven-otter/back.svg",
  36892. extra: 1709/1635,
  36893. bottom: 118/1827
  36894. }
  36895. },
  36896. hand: {
  36897. height: math.unit(1.07, "feet"),
  36898. name: "Hand",
  36899. image: {
  36900. source: "./media/characters/oven-otter/hand.svg"
  36901. }
  36902. },
  36903. beans: {
  36904. height: math.unit(1.74, "feet"),
  36905. name: "Beans",
  36906. image: {
  36907. source: "./media/characters/oven-otter/beans.svg"
  36908. }
  36909. },
  36910. },
  36911. [
  36912. {
  36913. name: "Micro",
  36914. height: math.unit(0.5, "inches")
  36915. },
  36916. {
  36917. name: "Normal",
  36918. height: math.unit(5 + 8/12, "feet"),
  36919. default: true
  36920. },
  36921. {
  36922. name: "Macro",
  36923. height: math.unit(250, "feet")
  36924. },
  36925. {
  36926. name: "Really High",
  36927. height: math.unit(420, "feet")
  36928. },
  36929. ]
  36930. ))
  36931. characterMakers.push(() => makeCharacter(
  36932. { name: "Devourer", species: ["dragon", "monster"], tags: ["anthro"] },
  36933. {
  36934. front: {
  36935. height: math.unit(5, "meters"),
  36936. weight: math.unit(292000000000000, "kg"),
  36937. name: "Front",
  36938. image: {
  36939. source: "./media/characters/devourer/front.svg",
  36940. extra: 1800/1733,
  36941. bottom: 211/2011
  36942. }
  36943. },
  36944. maw: {
  36945. height: math.unit(1.1, "meter"),
  36946. name: "Maw",
  36947. image: {
  36948. source: "./media/characters/devourer/maw.svg"
  36949. }
  36950. },
  36951. },
  36952. [
  36953. {
  36954. name: "Small",
  36955. height: math.unit(3, "meters")
  36956. },
  36957. {
  36958. name: "Large",
  36959. height: math.unit(5, "meters"),
  36960. default: true
  36961. },
  36962. ]
  36963. ))
  36964. characterMakers.push(() => makeCharacter(
  36965. { name: "Ellarby", species: ["hydra"], tags: ["feral"] },
  36966. {
  36967. front: {
  36968. height: math.unit(6, "feet"),
  36969. weight: math.unit(400, "lb"),
  36970. name: "Front",
  36971. image: {
  36972. source: "./media/characters/ellarby/front.svg",
  36973. extra: 1909/1763,
  36974. bottom: 80/1989
  36975. }
  36976. },
  36977. back: {
  36978. height: math.unit(6, "feet"),
  36979. weight: math.unit(400, "lb"),
  36980. name: "Back",
  36981. image: {
  36982. source: "./media/characters/ellarby/back.svg",
  36983. extra: 1914/1784,
  36984. bottom: 172/2086
  36985. }
  36986. },
  36987. },
  36988. [
  36989. {
  36990. name: "Mischief",
  36991. height: math.unit(18, "inches")
  36992. },
  36993. {
  36994. name: "Trouble",
  36995. height: math.unit(12, "feet")
  36996. },
  36997. {
  36998. name: "Havoc",
  36999. height: math.unit(200, "feet"),
  37000. default: true
  37001. },
  37002. {
  37003. name: "Pandemonium",
  37004. height: math.unit(1, "mile")
  37005. },
  37006. {
  37007. name: "Catastrophe",
  37008. height: math.unit(100, "miles")
  37009. },
  37010. ]
  37011. ))
  37012. characterMakers.push(() => makeCharacter(
  37013. { name: "Vex", species: ["dragon"], tags: ["feral"] },
  37014. {
  37015. front: {
  37016. height: math.unit(4.7, "meters"),
  37017. weight: math.unit(6500, "kg"),
  37018. name: "Front",
  37019. image: {
  37020. source: "./media/characters/vex/front.svg",
  37021. extra: 1288/1140,
  37022. bottom: 100/1388
  37023. }
  37024. },
  37025. },
  37026. [
  37027. {
  37028. name: "Normal",
  37029. height: math.unit(4.7, "meters"),
  37030. default: true
  37031. },
  37032. ]
  37033. ))
  37034. characterMakers.push(() => makeCharacter(
  37035. { name: "Teshy", species: ["pangolin", "monster"], tags: ["anthro"] },
  37036. {
  37037. normal: {
  37038. height: math.unit(6, "feet"),
  37039. weight: math.unit(350, "lb"),
  37040. name: "Normal",
  37041. image: {
  37042. source: "./media/characters/teshy/normal.svg",
  37043. extra: 1795/1735,
  37044. bottom: 16/1811
  37045. }
  37046. },
  37047. monsterFront: {
  37048. height: math.unit(12, "feet"),
  37049. weight: math.unit(4700, "lb"),
  37050. name: "Monster (Front)",
  37051. image: {
  37052. source: "./media/characters/teshy/monster-front.svg",
  37053. extra: 2042/2034,
  37054. bottom: 128/2170
  37055. }
  37056. },
  37057. monsterSide: {
  37058. height: math.unit(12, "feet"),
  37059. weight: math.unit(4700, "lb"),
  37060. name: "Monster (Side)",
  37061. image: {
  37062. source: "./media/characters/teshy/monster-side.svg",
  37063. extra: 2067/2056,
  37064. bottom: 70/2137
  37065. }
  37066. },
  37067. monsterBack: {
  37068. height: math.unit(12, "feet"),
  37069. weight: math.unit(4700, "lb"),
  37070. name: "Monster (Back)",
  37071. image: {
  37072. source: "./media/characters/teshy/monster-back.svg",
  37073. extra: 1921/1914,
  37074. bottom: 171/2092
  37075. }
  37076. },
  37077. },
  37078. [
  37079. {
  37080. name: "Normal",
  37081. height: math.unit(6, "feet"),
  37082. default: true
  37083. },
  37084. ]
  37085. ))
  37086. characterMakers.push(() => makeCharacter(
  37087. { name: "Ramey", species: ["raccoon"], tags: ["anthro"] },
  37088. {
  37089. front: {
  37090. height: math.unit(6, "feet"),
  37091. name: "Front",
  37092. image: {
  37093. source: "./media/characters/ramey/front.svg",
  37094. extra: 790/787,
  37095. bottom: 27/817
  37096. }
  37097. },
  37098. },
  37099. [
  37100. {
  37101. name: "Normal",
  37102. height: math.unit(6, "feet"),
  37103. default: true
  37104. },
  37105. ]
  37106. ))
  37107. characterMakers.push(() => makeCharacter(
  37108. { name: "Phirae", species: ["cat"], tags: ["anthro"] },
  37109. {
  37110. front: {
  37111. height: math.unit(5 + 5/12, "feet"),
  37112. weight: math.unit(120, "lb"),
  37113. name: "Front",
  37114. image: {
  37115. source: "./media/characters/phirae/front.svg",
  37116. extra: 2491/2436,
  37117. bottom: 38/2529
  37118. }
  37119. },
  37120. },
  37121. [
  37122. {
  37123. name: "Normal",
  37124. height: math.unit(5 + 5/12, "feet"),
  37125. default: true
  37126. },
  37127. ]
  37128. ))
  37129. characterMakers.push(() => makeCharacter(
  37130. { name: "Stagglas", species: ["dragon"], tags: ["anthro", "feral"] },
  37131. {
  37132. front: {
  37133. height: math.unit(5 + 3/12, "feet"),
  37134. name: "Front",
  37135. image: {
  37136. source: "./media/characters/stagglas/front.svg",
  37137. extra: 962/882,
  37138. bottom: 53/1015
  37139. }
  37140. },
  37141. feral: {
  37142. height: math.unit(335, "cm"),
  37143. name: "Feral",
  37144. image: {
  37145. source: "./media/characters/stagglas/feral.svg",
  37146. extra: 1732/1090,
  37147. bottom: 48/1780
  37148. }
  37149. },
  37150. },
  37151. [
  37152. {
  37153. name: "Normal",
  37154. height: math.unit(5 + 3/12, "feet"),
  37155. default: true
  37156. },
  37157. ]
  37158. ))
  37159. characterMakers.push(() => makeCharacter(
  37160. { name: "Starra", species: ["dragon"], tags: ["anthro"] },
  37161. {
  37162. front: {
  37163. height: math.unit(5 + 4/12, "feet"),
  37164. weight: math.unit(145, "lb"),
  37165. name: "Front",
  37166. image: {
  37167. source: "./media/characters/starra/front.svg",
  37168. extra: 1790/1691,
  37169. bottom: 91/1881
  37170. }
  37171. },
  37172. },
  37173. [
  37174. {
  37175. name: "Normal",
  37176. height: math.unit(5 + 4/12, "feet"),
  37177. default: true
  37178. },
  37179. ]
  37180. ))
  37181. characterMakers.push(() => makeCharacter(
  37182. { name: "Dr. Kaizo Inazuma", species: ["zorgoia"], tags: ["anthro"] },
  37183. {
  37184. front: {
  37185. height: math.unit(3.5, "meters"),
  37186. name: "Front",
  37187. image: {
  37188. source: "./media/characters/dr-kaizo-inazuma/front.svg",
  37189. extra: 1248/972,
  37190. bottom: 38/1286
  37191. }
  37192. },
  37193. },
  37194. [
  37195. {
  37196. name: "Normal",
  37197. height: math.unit(3.5, "meters"),
  37198. default: true
  37199. },
  37200. ]
  37201. ))
  37202. characterMakers.push(() => makeCharacter(
  37203. { name: "Mika Valentine", species: ["red-panda"], tags: ["taur"] },
  37204. {
  37205. side: {
  37206. height: math.unit(8 + 2/12, "feet"),
  37207. weight: math.unit(1240, "lb"),
  37208. name: "Side",
  37209. image: {
  37210. source: "./media/characters/mika-valentine/side.svg",
  37211. extra: 2670/2501,
  37212. bottom: 250/2920
  37213. }
  37214. },
  37215. },
  37216. [
  37217. {
  37218. name: "Normal",
  37219. height: math.unit(8 + 2/12, "feet"),
  37220. default: true
  37221. },
  37222. ]
  37223. ))
  37224. characterMakers.push(() => makeCharacter(
  37225. { name: "Xoltol", species: ["dragon"], tags: ["anthro"] },
  37226. {
  37227. front: {
  37228. height: math.unit(7 + 2/12, "feet"),
  37229. name: "Front",
  37230. image: {
  37231. source: "./media/characters/xoltol/front.svg",
  37232. extra: 2212/2124,
  37233. bottom: 84/2296
  37234. }
  37235. },
  37236. side: {
  37237. height: math.unit(7 + 2/12, "feet"),
  37238. name: "Side",
  37239. image: {
  37240. source: "./media/characters/xoltol/side.svg",
  37241. extra: 2273/2197,
  37242. bottom: 26/2299
  37243. }
  37244. },
  37245. hand: {
  37246. height: math.unit(2.5, "feet"),
  37247. name: "Hand",
  37248. image: {
  37249. source: "./media/characters/xoltol/hand.svg"
  37250. }
  37251. },
  37252. },
  37253. [
  37254. {
  37255. name: "Small-ish",
  37256. height: math.unit(5 + 11/12, "feet")
  37257. },
  37258. {
  37259. name: "Normal",
  37260. height: math.unit(7 + 2/12, "feet")
  37261. },
  37262. {
  37263. name: "\"Macro\"",
  37264. height: math.unit(14 + 9/12, "feet"),
  37265. default: true
  37266. },
  37267. {
  37268. name: "Alternate Height",
  37269. height: math.unit(20, "feet")
  37270. },
  37271. {
  37272. name: "Actually Macro",
  37273. height: math.unit(100, "feet")
  37274. },
  37275. ]
  37276. ))
  37277. characterMakers.push(() => makeCharacter(
  37278. { name: "Kotetsu Redwood", species: ["zigzagoon"], tags: ["anthro"] },
  37279. {
  37280. front: {
  37281. height: math.unit(5 + 2/12, "feet"),
  37282. weight: math.unit(75, "kg"),
  37283. name: "Front",
  37284. image: {
  37285. source: "./media/characters/kotetsu-redwood/front.svg",
  37286. extra: 1053/942,
  37287. bottom: 60/1113
  37288. }
  37289. },
  37290. },
  37291. [
  37292. {
  37293. name: "Normal",
  37294. height: math.unit(5 + 2/12, "feet"),
  37295. default: true
  37296. },
  37297. ]
  37298. ))
  37299. characterMakers.push(() => makeCharacter(
  37300. { name: "Lilith", species: ["vulture"], tags: ["anthro"] },
  37301. {
  37302. front: {
  37303. height: math.unit(2.4, "meters"),
  37304. weight: math.unit(125, "kg"),
  37305. name: "Front",
  37306. image: {
  37307. source: "./media/characters/lilith/front.svg",
  37308. extra: 1590/1513,
  37309. bottom: 203/1793
  37310. }
  37311. },
  37312. },
  37313. [
  37314. {
  37315. name: "Humanoid",
  37316. height: math.unit(2.4, "meters")
  37317. },
  37318. {
  37319. name: "Normal",
  37320. height: math.unit(6, "meters"),
  37321. default: true
  37322. },
  37323. {
  37324. name: "Largest",
  37325. height: math.unit(55, "meters")
  37326. },
  37327. ]
  37328. ))
  37329. characterMakers.push(() => makeCharacter(
  37330. { name: "Bek'kah Bolger", species: ["kobold"], tags: ["anthro"] },
  37331. {
  37332. front: {
  37333. height: math.unit(8 + 4/12, "feet"),
  37334. weight: math.unit(535, "lb"),
  37335. name: "Front",
  37336. image: {
  37337. source: "./media/characters/beh'kah-bolger/front.svg",
  37338. extra: 1660/1603,
  37339. bottom: 37/1697
  37340. }
  37341. },
  37342. },
  37343. [
  37344. {
  37345. name: "Normal",
  37346. height: math.unit(8 + 4/12, "feet"),
  37347. default: true
  37348. },
  37349. {
  37350. name: "Kaiju",
  37351. height: math.unit(250, "feet")
  37352. },
  37353. {
  37354. name: "Still Growing",
  37355. height: math.unit(10, "miles")
  37356. },
  37357. {
  37358. name: "Continental",
  37359. height: math.unit(5000, "miles")
  37360. },
  37361. {
  37362. name: "Final Form",
  37363. height: math.unit(2500000, "miles")
  37364. },
  37365. ]
  37366. ))
  37367. characterMakers.push(() => makeCharacter(
  37368. { name: "Tatyana Milewska", species: ["shark"], tags: ["anthro"] },
  37369. {
  37370. front: {
  37371. height: math.unit(7 + 2/12, "feet"),
  37372. weight: math.unit(230, "kg"),
  37373. name: "Front",
  37374. image: {
  37375. source: "./media/characters/tatyana-milewska/front.svg",
  37376. extra: 1199/1150,
  37377. bottom: 86/1285
  37378. }
  37379. },
  37380. },
  37381. [
  37382. {
  37383. name: "Normal",
  37384. height: math.unit(7 + 2/12, "feet"),
  37385. default: true
  37386. },
  37387. {
  37388. name: "Big",
  37389. height: math.unit(12, "feet")
  37390. },
  37391. {
  37392. name: "Minimacro",
  37393. height: math.unit(20, "feet")
  37394. },
  37395. {
  37396. name: "Macro",
  37397. height: math.unit(120, "feet")
  37398. },
  37399. ]
  37400. ))
  37401. characterMakers.push(() => makeCharacter(
  37402. { name: "Helen Arri", species: ["dragon"], tags: ["anthro"] },
  37403. {
  37404. front: {
  37405. height: math.unit(7 + 8/12, "feet"),
  37406. weight: math.unit(152, "kg"),
  37407. name: "Front",
  37408. image: {
  37409. source: "./media/characters/helen-arri/front.svg",
  37410. extra: 440/423,
  37411. bottom: 14/454
  37412. }
  37413. },
  37414. back: {
  37415. height: math.unit(7 + 8/12, "feet"),
  37416. weight: math.unit(152, "kg"),
  37417. name: "Back",
  37418. image: {
  37419. source: "./media/characters/helen-arri/back.svg",
  37420. extra: 443/426,
  37421. bottom: 8/451
  37422. }
  37423. },
  37424. },
  37425. [
  37426. {
  37427. name: "Normal",
  37428. height: math.unit(7 + 8/12, "feet"),
  37429. default: true
  37430. },
  37431. {
  37432. name: "Big",
  37433. height: math.unit(14, "feet")
  37434. },
  37435. {
  37436. name: "Minimacro",
  37437. height: math.unit(24, "feet")
  37438. },
  37439. {
  37440. name: "Macro",
  37441. height: math.unit(140, "feet")
  37442. },
  37443. ]
  37444. ))
  37445. characterMakers.push(() => makeCharacter(
  37446. { name: "Ehanu Rehu", species: ["eastern-dragon"], tags: ["anthro"] },
  37447. {
  37448. front: {
  37449. height: math.unit(6, "meters"),
  37450. name: "Front",
  37451. image: {
  37452. source: "./media/characters/ehanu-rehu/front.svg",
  37453. extra: 1800/1800,
  37454. bottom: 59/1859
  37455. }
  37456. },
  37457. },
  37458. [
  37459. {
  37460. name: "Normal",
  37461. height: math.unit(6, "meters"),
  37462. default: true
  37463. },
  37464. ]
  37465. ))
  37466. characterMakers.push(() => makeCharacter(
  37467. { name: "Renholder", species: ["bat"], tags: ["anthro"] },
  37468. {
  37469. front: {
  37470. height: math.unit(7 + 3/12, "feet"),
  37471. name: "Front",
  37472. image: {
  37473. source: "./media/characters/renholder/front.svg",
  37474. extra: 3096/2960,
  37475. bottom: 250/3346
  37476. }
  37477. },
  37478. },
  37479. [
  37480. {
  37481. name: "Normal Bat",
  37482. height: math.unit(7 + 3/12, "feet"),
  37483. default: true
  37484. },
  37485. {
  37486. name: "Slightly Tall Bat",
  37487. height: math.unit(100, "feet")
  37488. },
  37489. {
  37490. name: "Big Bat",
  37491. height: math.unit(1000, "feet")
  37492. },
  37493. {
  37494. name: "City-Sized Bat",
  37495. height: math.unit(200000, "feet")
  37496. },
  37497. {
  37498. name: "Bigger Bat",
  37499. height: math.unit(10000, "miles")
  37500. },
  37501. {
  37502. name: "Solar Sized Bat",
  37503. height: math.unit(100, "AU")
  37504. },
  37505. {
  37506. name: "Galactic Bat",
  37507. height: math.unit(200000, "lightyears")
  37508. },
  37509. {
  37510. name: "Universally Known Bat",
  37511. height: math.unit(1, "universe")
  37512. },
  37513. ]
  37514. ))
  37515. characterMakers.push(() => makeCharacter(
  37516. { name: "Cookiecat", species: ["cat"], tags: ["anthro"] },
  37517. {
  37518. front: {
  37519. height: math.unit(6 + 11/12, "feet"),
  37520. weight: math.unit(250, "lb"),
  37521. name: "Front",
  37522. image: {
  37523. source: "./media/characters/cookiecat/front.svg",
  37524. extra: 893/827,
  37525. bottom: 14/907
  37526. }
  37527. },
  37528. },
  37529. [
  37530. {
  37531. name: "Micro",
  37532. height: math.unit(3, "inches")
  37533. },
  37534. {
  37535. name: "Normal",
  37536. height: math.unit(6 + 11/12, "feet"),
  37537. default: true
  37538. },
  37539. {
  37540. name: "Macro",
  37541. height: math.unit(100, "feet")
  37542. },
  37543. {
  37544. name: "Macro+",
  37545. height: math.unit(404, "feet")
  37546. },
  37547. {
  37548. name: "Megamacro",
  37549. height: math.unit(165, "miles")
  37550. },
  37551. {
  37552. name: "Planetary",
  37553. height: math.unit(4600, "miles")
  37554. },
  37555. ]
  37556. ))
  37557. characterMakers.push(() => makeCharacter(
  37558. { name: "Tux Kusanagi", species: ["gryffon"], tags: ["anthro"] },
  37559. {
  37560. front: {
  37561. height: math.unit(10 + 3/12, "feet"),
  37562. weight: math.unit(1500, "lb"),
  37563. name: "Front",
  37564. image: {
  37565. source: "./media/characters/tux-kusanagi/front.svg",
  37566. extra: 944/840,
  37567. bottom: 39/983
  37568. }
  37569. },
  37570. back: {
  37571. height: math.unit(10 + 3/12, "feet"),
  37572. weight: math.unit(1500, "lb"),
  37573. name: "Back",
  37574. image: {
  37575. source: "./media/characters/tux-kusanagi/back.svg",
  37576. extra: 941/842,
  37577. bottom: 28/969
  37578. }
  37579. },
  37580. rump: {
  37581. height: math.unit(5.25, "feet"),
  37582. name: "Rump",
  37583. image: {
  37584. source: "./media/characters/tux-kusanagi/rump.svg"
  37585. }
  37586. },
  37587. beak: {
  37588. height: math.unit(1.54, "feet"),
  37589. name: "Beak",
  37590. image: {
  37591. source: "./media/characters/tux-kusanagi/beak.svg"
  37592. }
  37593. },
  37594. },
  37595. [
  37596. {
  37597. name: "Normal",
  37598. height: math.unit(10 + 3/12, "feet"),
  37599. default: true
  37600. },
  37601. ]
  37602. ))
  37603. characterMakers.push(() => makeCharacter(
  37604. { name: "Uzarmazari", species: ["amtsvane"], tags: ["anthro"] },
  37605. {
  37606. front: {
  37607. height: math.unit(58, "feet"),
  37608. weight: math.unit(200, "tons"),
  37609. name: "Front",
  37610. image: {
  37611. source: "./media/characters/uzarmazari/front.svg",
  37612. extra: 1575/1455,
  37613. bottom: 152/1727
  37614. }
  37615. },
  37616. back: {
  37617. height: math.unit(58, "feet"),
  37618. weight: math.unit(200, "tons"),
  37619. name: "Back",
  37620. image: {
  37621. source: "./media/characters/uzarmazari/back.svg",
  37622. extra: 1585/1510,
  37623. bottom: 157/1742
  37624. }
  37625. },
  37626. head: {
  37627. height: math.unit(26, "feet"),
  37628. name: "Head",
  37629. image: {
  37630. source: "./media/characters/uzarmazari/head.svg"
  37631. }
  37632. },
  37633. },
  37634. [
  37635. {
  37636. name: "Normal",
  37637. height: math.unit(58, "feet"),
  37638. default: true
  37639. },
  37640. ]
  37641. ))
  37642. characterMakers.push(() => makeCharacter(
  37643. { name: "Akitu", species: ["kigavi"], tags: ["feral"] },
  37644. {
  37645. side: {
  37646. height: math.unit(15, "feet"),
  37647. name: "Side",
  37648. image: {
  37649. source: "./media/characters/akitu/side.svg",
  37650. extra: 1421/1321,
  37651. bottom: 157/1578
  37652. }
  37653. },
  37654. front: {
  37655. height: math.unit(15, "feet"),
  37656. name: "Front",
  37657. image: {
  37658. source: "./media/characters/akitu/front.svg",
  37659. extra: 1435/1326,
  37660. bottom: 232/1667
  37661. }
  37662. },
  37663. },
  37664. [
  37665. {
  37666. name: "Normal",
  37667. height: math.unit(15, "feet"),
  37668. default: true
  37669. },
  37670. ]
  37671. ))
  37672. characterMakers.push(() => makeCharacter(
  37673. { name: "Azalie Croixland", species: ["gryphon"], tags: ["anthro"] },
  37674. {
  37675. front: {
  37676. height: math.unit(10 + 8/12, "feet"),
  37677. name: "Front",
  37678. image: {
  37679. source: "./media/characters/azalie-croixland/front.svg",
  37680. extra: 1972/1856,
  37681. bottom: 31/2003
  37682. }
  37683. },
  37684. },
  37685. [
  37686. {
  37687. name: "Original Height",
  37688. height: math.unit(5 + 4/12, "feet")
  37689. },
  37690. {
  37691. name: "Normal Height",
  37692. height: math.unit(10 + 8/12, "feet"),
  37693. default: true
  37694. },
  37695. ]
  37696. ))
  37697. characterMakers.push(() => makeCharacter(
  37698. { name: "Kavus Kazian", species: ["turian"], tags: ["anthro"] },
  37699. {
  37700. side: {
  37701. height: math.unit(7 + 1/12, "feet"),
  37702. weight: math.unit(245, "lb"),
  37703. name: "Side",
  37704. image: {
  37705. source: "./media/characters/kavus-kazian/side.svg",
  37706. extra: 349/342,
  37707. bottom: 15/364
  37708. }
  37709. },
  37710. },
  37711. [
  37712. {
  37713. name: "Normal",
  37714. height: math.unit(7 + 1/12, "feet"),
  37715. default: true
  37716. },
  37717. ]
  37718. ))
  37719. characterMakers.push(() => makeCharacter(
  37720. { name: "Moonlight Rose", species: ["eevee", "leafeon", "jolteon", "demon", "vaporeon"], tags: ["anthro"] },
  37721. {
  37722. normalFront: {
  37723. height: math.unit(5 + 11/12, "feet"),
  37724. name: "Front",
  37725. image: {
  37726. source: "./media/characters/moonlight-rose/normal-front.svg",
  37727. extra: 1980/1825,
  37728. bottom: 18/1998
  37729. },
  37730. form: "normal",
  37731. default: true
  37732. },
  37733. normalBack: {
  37734. height: math.unit(5 + 11/12, "feet"),
  37735. name: "Back",
  37736. image: {
  37737. source: "./media/characters/moonlight-rose/normal-back.svg",
  37738. extra: 2010/1839,
  37739. bottom: 10/2020
  37740. },
  37741. form: "normal"
  37742. },
  37743. demonFront: {
  37744. height: math.unit(1.5, "earths"),
  37745. name: "Front",
  37746. image: {
  37747. source: "./media/characters/moonlight-rose/demon.svg",
  37748. extra: 1400/1294,
  37749. bottom: 45/1445
  37750. },
  37751. form: "demon",
  37752. default: true
  37753. },
  37754. terraFront: {
  37755. height: math.unit(1.5, "earths"),
  37756. name: "Front",
  37757. image: {
  37758. source: "./media/characters/moonlight-rose/terra.svg"
  37759. },
  37760. form: "terra",
  37761. default: true
  37762. },
  37763. jupiterFront: {
  37764. height: math.unit(69911*2, "km"),
  37765. name: "Front",
  37766. image: {
  37767. source: "./media/characters/moonlight-rose/jupiter-front.svg",
  37768. extra: 1367/1286,
  37769. bottom: 55/1422
  37770. },
  37771. form: "jupiter",
  37772. default: true
  37773. },
  37774. neptuneFront: {
  37775. height: math.unit(24622*2, "feet"),
  37776. name: "Front",
  37777. image: {
  37778. source: "./media/characters/moonlight-rose/neptune-front.svg",
  37779. extra: 1851/1712,
  37780. bottom: 0/1851
  37781. },
  37782. form: "neptune",
  37783. default: true
  37784. },
  37785. },
  37786. [
  37787. {
  37788. name: "\"Natural\" Height",
  37789. height: math.unit(5 + 11/12, "feet"),
  37790. form: "normal"
  37791. },
  37792. {
  37793. name: "Smallest comfortable size",
  37794. height: math.unit(40, "meters"),
  37795. form: "normal"
  37796. },
  37797. {
  37798. name: "Common size",
  37799. height: math.unit(50, "km"),
  37800. form: "normal",
  37801. default: true
  37802. },
  37803. {
  37804. name: "Normal",
  37805. height: math.unit(1.5, "earths"),
  37806. form: "demon",
  37807. default: true
  37808. },
  37809. {
  37810. name: "Universal",
  37811. height: math.unit(15, "universes"),
  37812. form: "demon"
  37813. },
  37814. {
  37815. name: "Earth",
  37816. height: math.unit(1.5, "earths"),
  37817. form: "terra",
  37818. default: true
  37819. },
  37820. {
  37821. name: "Super Earth",
  37822. height: math.unit(67.5, "earths"),
  37823. form: "terra"
  37824. },
  37825. {
  37826. name: "Doesn't fit in a solar system...",
  37827. height: math.unit(1, "galaxy"),
  37828. form: "terra"
  37829. },
  37830. {
  37831. name: "Saturn",
  37832. height: math.unit(58232*2, "km"),
  37833. form: "jupiter"
  37834. },
  37835. {
  37836. name: "Jupiter",
  37837. height: math.unit(69911*2, "km"),
  37838. form: "jupiter",
  37839. default: true
  37840. },
  37841. {
  37842. name: "HD 100546 b",
  37843. height: math.unit(482938, "km"),
  37844. form: "jupiter"
  37845. },
  37846. {
  37847. name: "Enceladus",
  37848. height: math.unit(513*2, "km"),
  37849. form: "neptune"
  37850. },
  37851. {
  37852. name: "Europe",
  37853. height: math.unit(1560*2, "km"),
  37854. form: "neptune"
  37855. },
  37856. {
  37857. name: "Neptune",
  37858. height: math.unit(24622*2, "km"),
  37859. form: "neptune",
  37860. default: true
  37861. },
  37862. {
  37863. name: "CoRoT-9b",
  37864. height: math.unit(75067*2, "km"),
  37865. form: "neptune"
  37866. },
  37867. ],
  37868. {
  37869. "normal": {
  37870. name: "Normal",
  37871. default: true
  37872. },
  37873. "demon": {
  37874. name: "Demon"
  37875. },
  37876. "terra": {
  37877. name: "Terra"
  37878. },
  37879. "jupiter": {
  37880. name: "Jupiter"
  37881. },
  37882. "neptune": {
  37883. name: "Neptune"
  37884. }
  37885. }
  37886. ))
  37887. characterMakers.push(() => makeCharacter(
  37888. { name: "Huckle", species: ["dragon"], tags: ["anthro"] },
  37889. {
  37890. front: {
  37891. height: math.unit(16, "feet"),
  37892. weight: math.unit(610, "kg"),
  37893. name: "Front",
  37894. image: {
  37895. source: "./media/characters/huckle/front.svg",
  37896. extra: 1731/1625,
  37897. bottom: 33/1764
  37898. }
  37899. },
  37900. back: {
  37901. height: math.unit(16, "feet"),
  37902. weight: math.unit(610, "kg"),
  37903. name: "Back",
  37904. image: {
  37905. source: "./media/characters/huckle/back.svg",
  37906. extra: 1738/1651,
  37907. bottom: 37/1775
  37908. }
  37909. },
  37910. laughing: {
  37911. height: math.unit(3.75, "feet"),
  37912. name: "Laughing",
  37913. image: {
  37914. source: "./media/characters/huckle/laughing.svg"
  37915. }
  37916. },
  37917. angry: {
  37918. height: math.unit(4.15, "feet"),
  37919. name: "Angry",
  37920. image: {
  37921. source: "./media/characters/huckle/angry.svg"
  37922. }
  37923. },
  37924. },
  37925. [
  37926. {
  37927. name: "Normal",
  37928. height: math.unit(16, "feet"),
  37929. default: true
  37930. },
  37931. {
  37932. name: "Mini Macro",
  37933. height: math.unit(463, "feet")
  37934. },
  37935. {
  37936. name: "Macro",
  37937. height: math.unit(1680, "meters")
  37938. },
  37939. {
  37940. name: "Mega Macro",
  37941. height: math.unit(175, "km")
  37942. },
  37943. {
  37944. name: "Terra Macro",
  37945. height: math.unit(32, "gigameters")
  37946. },
  37947. {
  37948. name: "Multiverse+",
  37949. height: math.unit(2.56e23, "yottameters")
  37950. },
  37951. ]
  37952. ))
  37953. characterMakers.push(() => makeCharacter(
  37954. { name: "Candy", species: ["zeraora"], tags: ["anthro"] },
  37955. {
  37956. front: {
  37957. height: math.unit(6 + 9/12, "feet"),
  37958. weight: math.unit(280, "lb"),
  37959. name: "Front",
  37960. image: {
  37961. source: "./media/characters/candy/front.svg",
  37962. extra: 234/217,
  37963. bottom: 11/245
  37964. }
  37965. },
  37966. },
  37967. [
  37968. {
  37969. name: "Really Small",
  37970. height: math.unit(0.1, "nm")
  37971. },
  37972. {
  37973. name: "Micro",
  37974. height: math.unit(2, "inches")
  37975. },
  37976. {
  37977. name: "Normal",
  37978. height: math.unit(6 + 9/12, "feet"),
  37979. default: true
  37980. },
  37981. {
  37982. name: "Small Macro",
  37983. height: math.unit(69, "feet")
  37984. },
  37985. {
  37986. name: "Macro",
  37987. height: math.unit(160, "feet")
  37988. },
  37989. {
  37990. name: "Megamacro",
  37991. height: math.unit(22000, "miles")
  37992. },
  37993. {
  37994. name: "Gigamacro",
  37995. height: math.unit(50000, "miles")
  37996. },
  37997. ]
  37998. ))
  37999. characterMakers.push(() => makeCharacter(
  38000. { name: "Joey McDonald", species: ["rabbit", "kobold"], tags: ["anthro"] },
  38001. {
  38002. front: {
  38003. height: math.unit(4, "feet"),
  38004. weight: math.unit(90, "lb"),
  38005. name: "Front",
  38006. image: {
  38007. source: "./media/characters/joey-mcdonald/front.svg",
  38008. extra: 1059/852,
  38009. bottom: 33/1092
  38010. }
  38011. },
  38012. back: {
  38013. height: math.unit(4, "feet"),
  38014. weight: math.unit(90, "lb"),
  38015. name: "Back",
  38016. image: {
  38017. source: "./media/characters/joey-mcdonald/back.svg",
  38018. extra: 1077/879,
  38019. bottom: 5/1082
  38020. }
  38021. },
  38022. frontKobold: {
  38023. height: math.unit(4, "feet"),
  38024. weight: math.unit(100, "lb"),
  38025. name: "Front-kobold",
  38026. image: {
  38027. source: "./media/characters/joey-mcdonald/front-kobold.svg",
  38028. extra: 1480/1367,
  38029. bottom: 0/1480
  38030. }
  38031. },
  38032. backKobold: {
  38033. height: math.unit(4, "feet"),
  38034. weight: math.unit(100, "lb"),
  38035. name: "Back-kobold",
  38036. image: {
  38037. source: "./media/characters/joey-mcdonald/back-kobold.svg",
  38038. extra: 1449/1361,
  38039. bottom: 0/1449
  38040. }
  38041. },
  38042. },
  38043. [
  38044. {
  38045. name: "Normal",
  38046. height: math.unit(4, "feet"),
  38047. default: true
  38048. },
  38049. ]
  38050. ))
  38051. characterMakers.push(() => makeCharacter(
  38052. { name: "Kass Lockheed", species: ["dragon"], tags: ["anthro"] },
  38053. {
  38054. front: {
  38055. height: math.unit(12 + 6/12, "feet"),
  38056. name: "Front",
  38057. image: {
  38058. source: "./media/characters/kass-lockheed/front.svg",
  38059. extra: 354/343,
  38060. bottom: 9/363
  38061. }
  38062. },
  38063. back: {
  38064. height: math.unit(12 + 6/12, "feet"),
  38065. name: "Back",
  38066. image: {
  38067. source: "./media/characters/kass-lockheed/back.svg",
  38068. extra: 364/352,
  38069. bottom: 3/367
  38070. }
  38071. },
  38072. dick: {
  38073. height: math.unit(3.12, "feet"),
  38074. name: "Dick",
  38075. image: {
  38076. source: "./media/characters/kass-lockheed/dick.svg"
  38077. }
  38078. },
  38079. head: {
  38080. height: math.unit(2.6, "feet"),
  38081. name: "Head",
  38082. image: {
  38083. source: "./media/characters/kass-lockheed/head.svg"
  38084. }
  38085. },
  38086. bleh: {
  38087. height: math.unit(2.85, "feet"),
  38088. name: "Bleh",
  38089. image: {
  38090. source: "./media/characters/kass-lockheed/bleh.svg"
  38091. }
  38092. },
  38093. smug: {
  38094. height: math.unit(2.85, "feet"),
  38095. name: "Smug",
  38096. image: {
  38097. source: "./media/characters/kass-lockheed/smug.svg"
  38098. }
  38099. },
  38100. },
  38101. [
  38102. {
  38103. name: "Normal",
  38104. height: math.unit(12 + 6/12, "feet"),
  38105. default: true
  38106. },
  38107. ]
  38108. ))
  38109. characterMakers.push(() => makeCharacter(
  38110. { name: "Taylor", species: ["rabbit"], tags: ["anthro"] },
  38111. {
  38112. front: {
  38113. height: math.unit(6 + 2/12, "feet"),
  38114. name: "Front",
  38115. image: {
  38116. source: "./media/characters/taylor/front.svg",
  38117. extra: 639/495,
  38118. bottom: 12/651
  38119. }
  38120. },
  38121. },
  38122. [
  38123. {
  38124. name: "Normal",
  38125. height: math.unit(6 + 2/12, "feet"),
  38126. default: true
  38127. },
  38128. {
  38129. name: "Big",
  38130. height: math.unit(15, "feet")
  38131. },
  38132. {
  38133. name: "Lorg",
  38134. height: math.unit(80, "feet")
  38135. },
  38136. {
  38137. name: "Too Lorg",
  38138. height: math.unit(120, "feet")
  38139. },
  38140. ]
  38141. ))
  38142. characterMakers.push(() => makeCharacter(
  38143. { name: "Kaizer", species: ["demon"], tags: ["anthro"] },
  38144. {
  38145. front: {
  38146. height: math.unit(15, "feet"),
  38147. name: "Front",
  38148. image: {
  38149. source: "./media/characters/kaizer/front.svg",
  38150. extra: 1612/1436,
  38151. bottom: 43/1655
  38152. }
  38153. },
  38154. },
  38155. [
  38156. {
  38157. name: "Normal",
  38158. height: math.unit(15, "feet"),
  38159. default: true
  38160. },
  38161. ]
  38162. ))
  38163. characterMakers.push(() => makeCharacter(
  38164. { name: "Sandy", species: ["sandshrew"], tags: ["anthro"] },
  38165. {
  38166. front: {
  38167. height: math.unit(2, "feet"),
  38168. weight: math.unit(30, "lb"),
  38169. name: "Front",
  38170. image: {
  38171. source: "./media/characters/sandy/front.svg",
  38172. extra: 1439/1307,
  38173. bottom: 194/1633
  38174. }
  38175. },
  38176. },
  38177. [
  38178. {
  38179. name: "Normal",
  38180. height: math.unit(2, "feet"),
  38181. default: true
  38182. },
  38183. ]
  38184. ))
  38185. characterMakers.push(() => makeCharacter(
  38186. { name: "Mellvi", species: ["imp"], tags: ["anthro"] },
  38187. {
  38188. front: {
  38189. height: math.unit(3, "feet"),
  38190. name: "Front",
  38191. image: {
  38192. source: "./media/characters/mellvi/front.svg",
  38193. extra: 1831/1630,
  38194. bottom: 58/1889
  38195. }
  38196. },
  38197. },
  38198. [
  38199. {
  38200. name: "Normal",
  38201. height: math.unit(3, "feet"),
  38202. default: true
  38203. },
  38204. ]
  38205. ))
  38206. characterMakers.push(() => makeCharacter(
  38207. { name: "Shirou", species: ["dragon"], tags: ["anthro"] },
  38208. {
  38209. front: {
  38210. height: math.unit(5 + 11/12, "feet"),
  38211. weight: math.unit(200, "lb"),
  38212. name: "Front",
  38213. image: {
  38214. source: "./media/characters/shirou/front.svg",
  38215. extra: 2491/2383,
  38216. bottom: 189/2680
  38217. }
  38218. },
  38219. back: {
  38220. height: math.unit(5 + 11/12, "feet"),
  38221. weight: math.unit(200, "lb"),
  38222. name: "Back",
  38223. image: {
  38224. source: "./media/characters/shirou/back.svg",
  38225. extra: 2554/2450,
  38226. bottom: 76/2630
  38227. }
  38228. },
  38229. },
  38230. [
  38231. {
  38232. name: "Normal",
  38233. height: math.unit(5 + 11/12, "feet"),
  38234. default: true
  38235. },
  38236. ]
  38237. ))
  38238. characterMakers.push(() => makeCharacter(
  38239. { name: "Noryu", species: ["protogen"], tags: ["anthro"] },
  38240. {
  38241. front: {
  38242. height: math.unit(6 + 3/12, "feet"),
  38243. weight: math.unit(177, "lb"),
  38244. name: "Front",
  38245. image: {
  38246. source: "./media/characters/noryu/front.svg",
  38247. extra: 973/885,
  38248. bottom: 10/983
  38249. }
  38250. },
  38251. },
  38252. [
  38253. {
  38254. name: "Normal",
  38255. height: math.unit(6 + 3/12, "feet"),
  38256. default: true
  38257. },
  38258. ]
  38259. ))
  38260. characterMakers.push(() => makeCharacter(
  38261. { name: "Mevolas Rubenido", species: ["carbuncle"], tags: ["anthro"] },
  38262. {
  38263. front: {
  38264. height: math.unit(5 + 6/12, "feet"),
  38265. weight: math.unit(170, "lb"),
  38266. name: "Front",
  38267. image: {
  38268. source: "./media/characters/mevolas-rubenido/front.svg",
  38269. extra: 2109/1901,
  38270. bottom: 96/2205
  38271. }
  38272. },
  38273. },
  38274. [
  38275. {
  38276. name: "Normal",
  38277. height: math.unit(5 + 6/12, "feet"),
  38278. default: true
  38279. },
  38280. ]
  38281. ))
  38282. characterMakers.push(() => makeCharacter(
  38283. { name: "Dee", species: ["valais-blacknose-sheep"], tags: ["anthro"] },
  38284. {
  38285. front: {
  38286. height: math.unit(100, "feet"),
  38287. name: "Front",
  38288. image: {
  38289. source: "./media/characters/dee/front.svg",
  38290. extra: 2153/2036,
  38291. bottom: 59/2212
  38292. }
  38293. },
  38294. back: {
  38295. height: math.unit(100, "feet"),
  38296. name: "Back",
  38297. image: {
  38298. source: "./media/characters/dee/back.svg",
  38299. extra: 2183/2058,
  38300. bottom: 75/2258
  38301. }
  38302. },
  38303. foot: {
  38304. height: math.unit(19.43, "feet"),
  38305. name: "Foot",
  38306. image: {
  38307. source: "./media/characters/dee/foot.svg"
  38308. }
  38309. },
  38310. hoof: {
  38311. height: math.unit(20.6, "feet"),
  38312. name: "Hoof",
  38313. image: {
  38314. source: "./media/characters/dee/hoof.svg"
  38315. }
  38316. },
  38317. },
  38318. [
  38319. {
  38320. name: "Macro",
  38321. height: math.unit(100, "feet"),
  38322. default: true
  38323. },
  38324. ]
  38325. ))
  38326. characterMakers.push(() => makeCharacter(
  38327. { name: "Teh", species: ["bat"], tags: ["anthro"] },
  38328. {
  38329. front: {
  38330. height: math.unit(5 + 6/12, "feet"),
  38331. name: "Front",
  38332. image: {
  38333. source: "./media/characters/teh/front.svg",
  38334. extra: 1002/847,
  38335. bottom: 62/1064
  38336. }
  38337. },
  38338. },
  38339. [
  38340. {
  38341. name: "Normal",
  38342. height: math.unit(5 + 6/12, "feet"),
  38343. default: true
  38344. },
  38345. ]
  38346. ))
  38347. characterMakers.push(() => makeCharacter(
  38348. { name: "Quicksilver Ayukoti", species: ["dragon", "wolf"], tags: ["feral"] },
  38349. {
  38350. side: {
  38351. height: math.unit(6 + 1/12, "feet"),
  38352. weight: math.unit(204, "lb"),
  38353. name: "Side",
  38354. image: {
  38355. source: "./media/characters/quicksilver-ayukoti/side.svg",
  38356. extra: 974/775,
  38357. bottom: 169/1143
  38358. }
  38359. },
  38360. sitting: {
  38361. height: math.unit(6 + 2/12, "feet"),
  38362. weight: math.unit(204, "lb"),
  38363. name: "Sitting",
  38364. image: {
  38365. source: "./media/characters/quicksilver-ayukoti/sitting.svg",
  38366. extra: 1175/964,
  38367. bottom: 378/1553
  38368. }
  38369. },
  38370. },
  38371. [
  38372. {
  38373. name: "Normal",
  38374. height: math.unit(6 + 1/12, "feet"),
  38375. default: true
  38376. },
  38377. ]
  38378. ))
  38379. characterMakers.push(() => makeCharacter(
  38380. { name: "Tululi", species: ["dunnoh"], tags: ["anthro"] },
  38381. {
  38382. front: {
  38383. height: math.unit(6, "inches"),
  38384. name: "Front",
  38385. image: {
  38386. source: "./media/characters/tululi/front.svg",
  38387. extra: 1997/1876,
  38388. bottom: 20/2017
  38389. }
  38390. },
  38391. },
  38392. [
  38393. {
  38394. name: "Normal",
  38395. height: math.unit(6, "inches"),
  38396. default: true
  38397. },
  38398. ]
  38399. ))
  38400. characterMakers.push(() => makeCharacter(
  38401. { name: "Star", species: ["novaleit"], tags: ["anthro"] },
  38402. {
  38403. front: {
  38404. height: math.unit(4 + 1/12, "feet"),
  38405. name: "Front",
  38406. image: {
  38407. source: "./media/characters/star/front.svg",
  38408. extra: 1493/1189,
  38409. bottom: 48/1541
  38410. }
  38411. },
  38412. },
  38413. [
  38414. {
  38415. name: "Normal",
  38416. height: math.unit(4 + 1/12, "feet"),
  38417. default: true
  38418. },
  38419. ]
  38420. ))
  38421. characterMakers.push(() => makeCharacter(
  38422. { name: "Comet", species: ["novaleit"], tags: ["anthro"] },
  38423. {
  38424. front: {
  38425. height: math.unit(6 + 3/12, "feet"),
  38426. name: "Front",
  38427. image: {
  38428. source: "./media/characters/comet/front.svg",
  38429. extra: 1681/1462,
  38430. bottom: 26/1707
  38431. }
  38432. },
  38433. },
  38434. [
  38435. {
  38436. name: "Normal",
  38437. height: math.unit(6 + 3/12, "feet"),
  38438. default: true
  38439. },
  38440. ]
  38441. ))
  38442. characterMakers.push(() => makeCharacter(
  38443. { name: "Vortex", species: ["kaiju"], tags: ["anthro"] },
  38444. {
  38445. front: {
  38446. height: math.unit(950, "feet"),
  38447. name: "Front",
  38448. image: {
  38449. source: "./media/characters/vortex/front.svg",
  38450. extra: 1497/1434,
  38451. bottom: 56/1553
  38452. }
  38453. },
  38454. maw: {
  38455. height: math.unit(285, "feet"),
  38456. name: "Maw",
  38457. image: {
  38458. source: "./media/characters/vortex/maw.svg"
  38459. }
  38460. },
  38461. },
  38462. [
  38463. {
  38464. name: "Macro",
  38465. height: math.unit(950, "feet"),
  38466. default: true
  38467. },
  38468. ]
  38469. ))
  38470. characterMakers.push(() => makeCharacter(
  38471. { name: "Doodle", species: ["kaiju", "dragon"], tags: ["anthro"] },
  38472. {
  38473. front: {
  38474. height: math.unit(600, "feet"),
  38475. weight: math.unit(0.02, "grams"),
  38476. name: "Front",
  38477. image: {
  38478. source: "./media/characters/doodle/front.svg",
  38479. extra: 1578/1413,
  38480. bottom: 37/1615
  38481. }
  38482. },
  38483. },
  38484. [
  38485. {
  38486. name: "Macro",
  38487. height: math.unit(600, "feet"),
  38488. default: true
  38489. },
  38490. ]
  38491. ))
  38492. characterMakers.push(() => makeCharacter(
  38493. { name: "Jai", species: ["dragon"], tags: ["anthro"] },
  38494. {
  38495. front: {
  38496. height: math.unit(6 + 6/12, "feet"),
  38497. name: "Front",
  38498. image: {
  38499. source: "./media/characters/jai/front.svg",
  38500. extra: 1645/1534,
  38501. bottom: 115/1760
  38502. }
  38503. },
  38504. },
  38505. [
  38506. {
  38507. name: "Normal",
  38508. height: math.unit(6 + 6/12, "feet"),
  38509. default: true
  38510. },
  38511. ]
  38512. ))
  38513. characterMakers.push(() => makeCharacter(
  38514. { name: "Pixel", species: ["gryphon"], tags: ["anthro"] },
  38515. {
  38516. front: {
  38517. height: math.unit(6 + 8/12, "feet"),
  38518. name: "Front",
  38519. image: {
  38520. source: "./media/characters/pixel/front.svg",
  38521. extra: 1900/1735,
  38522. bottom: 63/1963
  38523. }
  38524. },
  38525. },
  38526. [
  38527. {
  38528. name: "Normal",
  38529. height: math.unit(6 + 8/12, "feet"),
  38530. default: true
  38531. },
  38532. ]
  38533. ))
  38534. characterMakers.push(() => makeCharacter(
  38535. { name: "Rhett", species: ["deer"], tags: ["anthro"] },
  38536. {
  38537. back: {
  38538. height: math.unit(4 + 1/12, "feet"),
  38539. weight: math.unit(75, "lb"),
  38540. name: "Back",
  38541. image: {
  38542. source: "./media/characters/rhett/back.svg",
  38543. extra: 930/878,
  38544. bottom: 25/955
  38545. }
  38546. },
  38547. front: {
  38548. height: math.unit(4 + 1/12, "feet"),
  38549. weight: math.unit(75, "lb"),
  38550. name: "Front",
  38551. image: {
  38552. source: "./media/characters/rhett/front.svg",
  38553. extra: 1682/1586,
  38554. bottom: 92/1774
  38555. }
  38556. },
  38557. },
  38558. [
  38559. {
  38560. name: "Micro",
  38561. height: math.unit(8, "inches")
  38562. },
  38563. {
  38564. name: "Tiny",
  38565. height: math.unit(2, "feet")
  38566. },
  38567. {
  38568. name: "Normal",
  38569. height: math.unit(4 + 1/12, "feet"),
  38570. default: true
  38571. },
  38572. ]
  38573. ))
  38574. characterMakers.push(() => makeCharacter(
  38575. { name: "Penny", species: ["mouse"], tags: ["anthro"] },
  38576. {
  38577. front: {
  38578. height: math.unit(3 + 3/12, "feet"),
  38579. name: "Front",
  38580. image: {
  38581. source: "./media/characters/penny/front.svg",
  38582. extra: 1406/1311,
  38583. bottom: 26/1432
  38584. }
  38585. },
  38586. },
  38587. [
  38588. {
  38589. name: "Normal",
  38590. height: math.unit(3 + 3/12, "feet"),
  38591. default: true
  38592. },
  38593. ]
  38594. ))
  38595. characterMakers.push(() => makeCharacter(
  38596. { name: "Monty", species: ["cat", "kangaroo"], tags: ["anthro"] },
  38597. {
  38598. front: {
  38599. height: math.unit(4 + 11/12, "feet"),
  38600. name: "Front",
  38601. image: {
  38602. source: "./media/characters/monty/front.svg",
  38603. extra: 1479/1209,
  38604. bottom: 0/1479
  38605. }
  38606. },
  38607. },
  38608. [
  38609. {
  38610. name: "Normal",
  38611. height: math.unit(4 + 11/12, "feet"),
  38612. default: true
  38613. },
  38614. ]
  38615. ))
  38616. characterMakers.push(() => makeCharacter(
  38617. { name: "Sterling", species: ["lunaral-dragon"], tags: ["anthro"] },
  38618. {
  38619. front: {
  38620. height: math.unit(8 + 4/12, "feet"),
  38621. name: "Front",
  38622. image: {
  38623. source: "./media/characters/sterling/front.svg",
  38624. extra: 1420/1236,
  38625. bottom: 27/1447
  38626. }
  38627. },
  38628. },
  38629. [
  38630. {
  38631. name: "Normal",
  38632. height: math.unit(8 + 4/12, "feet"),
  38633. default: true
  38634. },
  38635. ]
  38636. ))
  38637. characterMakers.push(() => makeCharacter(
  38638. { name: "Marble", species: ["tiger"], tags: ["anthro"] },
  38639. {
  38640. front: {
  38641. height: math.unit(15, "feet"),
  38642. name: "Front",
  38643. image: {
  38644. source: "./media/characters/marble/front.svg",
  38645. extra: 973/937,
  38646. bottom: 32/1005
  38647. }
  38648. },
  38649. },
  38650. [
  38651. {
  38652. name: "Normal",
  38653. height: math.unit(15, "feet"),
  38654. default: true
  38655. },
  38656. ]
  38657. ))
  38658. characterMakers.push(() => makeCharacter(
  38659. { name: "Powder", species: ["sugar-glider"], tags: ["feral"] },
  38660. {
  38661. front: {
  38662. height: math.unit(3, "inches"),
  38663. name: "Front",
  38664. image: {
  38665. source: "./media/characters/powder/front.svg",
  38666. extra: 1504/1334,
  38667. bottom: 518/2022
  38668. }
  38669. },
  38670. },
  38671. [
  38672. {
  38673. name: "Normal",
  38674. height: math.unit(3, "inches"),
  38675. default: true
  38676. },
  38677. ]
  38678. ))
  38679. characterMakers.push(() => makeCharacter(
  38680. { name: "Joey (Raccoon)", species: ["raccoon"], tags: ["anthro"] },
  38681. {
  38682. front: {
  38683. height: math.unit(4 + 5/12, "feet"),
  38684. name: "Front",
  38685. image: {
  38686. source: "./media/characters/joey-raccoon/front.svg",
  38687. extra: 1273/1197,
  38688. bottom: 0/1273
  38689. }
  38690. },
  38691. },
  38692. [
  38693. {
  38694. name: "Normal",
  38695. height: math.unit(4 + 5/12, "feet"),
  38696. default: true
  38697. },
  38698. ]
  38699. ))
  38700. characterMakers.push(() => makeCharacter(
  38701. { name: "Vick", species: ["hyena"], tags: ["anthro"] },
  38702. {
  38703. front: {
  38704. height: math.unit(8 + 4/12, "feet"),
  38705. name: "Front",
  38706. image: {
  38707. source: "./media/characters/vick/front.svg",
  38708. extra: 2187/2118,
  38709. bottom: 47/2234
  38710. }
  38711. },
  38712. },
  38713. [
  38714. {
  38715. name: "Normal",
  38716. height: math.unit(8 + 4/12, "feet"),
  38717. default: true
  38718. },
  38719. ]
  38720. ))
  38721. characterMakers.push(() => makeCharacter(
  38722. { name: "Mitsy", species: ["mouse"], tags: ["anthro"] },
  38723. {
  38724. front: {
  38725. height: math.unit(5 + 5/12, "feet"),
  38726. name: "Front",
  38727. image: {
  38728. source: "./media/characters/mitsy/front.svg",
  38729. extra: 1842/1695,
  38730. bottom: 0/1842
  38731. }
  38732. },
  38733. },
  38734. [
  38735. {
  38736. name: "Normal",
  38737. height: math.unit(5 + 5/12, "feet"),
  38738. default: true
  38739. },
  38740. ]
  38741. ))
  38742. characterMakers.push(() => makeCharacter(
  38743. { name: "Silvy", species: ["ninetales"], tags: ["anthro"] },
  38744. {
  38745. front: {
  38746. height: math.unit(6 + 3/12, "feet"),
  38747. name: "Front",
  38748. image: {
  38749. source: "./media/characters/silvy/front.svg",
  38750. extra: 1995/1836,
  38751. bottom: 225/2220
  38752. }
  38753. },
  38754. },
  38755. [
  38756. {
  38757. name: "Normal",
  38758. height: math.unit(6 + 3/12, "feet"),
  38759. default: true
  38760. },
  38761. ]
  38762. ))
  38763. characterMakers.push(() => makeCharacter(
  38764. { name: "Rodney", species: ["mammal"], tags: ["anthro"] },
  38765. {
  38766. front: {
  38767. height: math.unit(3 + 8/12, "feet"),
  38768. name: "Front",
  38769. image: {
  38770. source: "./media/characters/rodney/front.svg",
  38771. extra: 1956/1747,
  38772. bottom: 31/1987
  38773. }
  38774. },
  38775. frontDressed: {
  38776. height: math.unit(2.9, "feet"),
  38777. name: "Front (Dressed)",
  38778. image: {
  38779. source: "./media/characters/rodney/front-dressed.svg",
  38780. extra: 1382/1241,
  38781. bottom: 385/1767
  38782. }
  38783. },
  38784. },
  38785. [
  38786. {
  38787. name: "Normal",
  38788. height: math.unit(3 + 8/12, "feet"),
  38789. default: true
  38790. },
  38791. ]
  38792. ))
  38793. characterMakers.push(() => makeCharacter(
  38794. { name: "Zakail Sudekai", species: ["arctic-wolf"], tags: ["anthro"] },
  38795. {
  38796. front: {
  38797. height: math.unit(5 + 9/12, "feet"),
  38798. weight: math.unit(194, "lbs"),
  38799. name: "Front",
  38800. image: {
  38801. source: "./media/characters/zakail-sudekai/front.svg",
  38802. extra: 2696/2533,
  38803. bottom: 248/2944
  38804. }
  38805. },
  38806. maw: {
  38807. height: math.unit(1.35, "feet"),
  38808. name: "Maw",
  38809. image: {
  38810. source: "./media/characters/zakail-sudekai/maw.svg"
  38811. }
  38812. },
  38813. },
  38814. [
  38815. {
  38816. name: "Normal",
  38817. height: math.unit(5 + 9/12, "feet"),
  38818. default: true
  38819. },
  38820. ]
  38821. ))
  38822. characterMakers.push(() => makeCharacter(
  38823. { name: "Eleanor", species: ["cow"], tags: ["anthro"] },
  38824. {
  38825. front: {
  38826. height: math.unit(8 + 4/12, "feet"),
  38827. weight: math.unit(1200, "lb"),
  38828. name: "Front",
  38829. image: {
  38830. source: "./media/characters/eleanor/front.svg",
  38831. extra: 1226/1192,
  38832. bottom: 52/1278
  38833. }
  38834. },
  38835. back: {
  38836. height: math.unit(8 + 4/12, "feet"),
  38837. weight: math.unit(1200, "lb"),
  38838. name: "Back",
  38839. image: {
  38840. source: "./media/characters/eleanor/back.svg",
  38841. extra: 1242/1184,
  38842. bottom: 60/1302
  38843. }
  38844. },
  38845. head: {
  38846. height: math.unit(2.62, "feet"),
  38847. name: "Head",
  38848. image: {
  38849. source: "./media/characters/eleanor/head.svg"
  38850. }
  38851. },
  38852. },
  38853. [
  38854. {
  38855. name: "Normal",
  38856. height: math.unit(8 + 4/12, "feet"),
  38857. default: true
  38858. },
  38859. ]
  38860. ))
  38861. characterMakers.push(() => makeCharacter(
  38862. { name: "Tanya", species: ["shark"], tags: ["anthro"] },
  38863. {
  38864. front: {
  38865. height: math.unit(8 + 4/12, "feet"),
  38866. weight: math.unit(750, "lb"),
  38867. name: "Front",
  38868. image: {
  38869. source: "./media/characters/tanya/front.svg",
  38870. extra: 1749/1615,
  38871. bottom: 33/1782
  38872. }
  38873. },
  38874. },
  38875. [
  38876. {
  38877. name: "Normal",
  38878. height: math.unit(8 + 4/12, "feet"),
  38879. default: true
  38880. },
  38881. ]
  38882. ))
  38883. characterMakers.push(() => makeCharacter(
  38884. { name: "Cindy", species: ["dragon"], tags: ["anthro"] },
  38885. {
  38886. front: {
  38887. height: math.unit(5, "feet"),
  38888. weight: math.unit(225, "lb"),
  38889. name: "Front",
  38890. image: {
  38891. source: "./media/characters/cindy/front.svg",
  38892. extra: 1320/1250,
  38893. bottom: 42/1362
  38894. }
  38895. },
  38896. frontDressed: {
  38897. height: math.unit(5, "feet"),
  38898. weight: math.unit(225, "lb"),
  38899. name: "Front (Dressed)",
  38900. image: {
  38901. source: "./media/characters/cindy/front-dressed.svg",
  38902. extra: 1320/1250,
  38903. bottom: 42/1362
  38904. }
  38905. },
  38906. back: {
  38907. height: math.unit(5, "feet"),
  38908. weight: math.unit(225, "lb"),
  38909. name: "Back",
  38910. image: {
  38911. source: "./media/characters/cindy/back.svg",
  38912. extra: 1384/1346,
  38913. bottom: 14/1398
  38914. }
  38915. },
  38916. },
  38917. [
  38918. {
  38919. name: "Normal",
  38920. height: math.unit(5, "feet"),
  38921. default: true
  38922. },
  38923. ]
  38924. ))
  38925. characterMakers.push(() => makeCharacter(
  38926. { name: "Wilbur Owen", species: ["donkey"], tags: ["anthro"] },
  38927. {
  38928. front: {
  38929. height: math.unit(6 + 9/12, "feet"),
  38930. weight: math.unit(440, "lb"),
  38931. name: "Front",
  38932. image: {
  38933. source: "./media/characters/wilbur-owen/front.svg",
  38934. extra: 1575/1448,
  38935. bottom: 72/1647
  38936. }
  38937. },
  38938. back: {
  38939. height: math.unit(6 + 9/12, "feet"),
  38940. weight: math.unit(440, "lb"),
  38941. name: "Back",
  38942. image: {
  38943. source: "./media/characters/wilbur-owen/back.svg",
  38944. extra: 1578/1445,
  38945. bottom: 36/1614
  38946. }
  38947. },
  38948. },
  38949. [
  38950. {
  38951. name: "Normal",
  38952. height: math.unit(6 + 9/12, "feet"),
  38953. default: true
  38954. },
  38955. ]
  38956. ))
  38957. characterMakers.push(() => makeCharacter(
  38958. { name: "Keegan", species: ["chinchilla", "tiger"], tags: ["anthro"] },
  38959. {
  38960. front: {
  38961. height: math.unit(6 + 5/12, "feet"),
  38962. weight: math.unit(650, "lb"),
  38963. name: "Front",
  38964. image: {
  38965. source: "./media/characters/keegan/front.svg",
  38966. extra: 2387/2198,
  38967. bottom: 33/2420
  38968. }
  38969. },
  38970. side: {
  38971. height: math.unit(6 + 5/12, "feet"),
  38972. weight: math.unit(650, "lb"),
  38973. name: "Side",
  38974. image: {
  38975. source: "./media/characters/keegan/side.svg",
  38976. extra: 2390/2202,
  38977. bottom: 47/2437
  38978. }
  38979. },
  38980. back: {
  38981. height: math.unit(6 + 5/12, "feet"),
  38982. weight: math.unit(650, "lb"),
  38983. name: "Back",
  38984. image: {
  38985. source: "./media/characters/keegan/back.svg",
  38986. extra: 2418/2268,
  38987. bottom: 15/2433
  38988. }
  38989. },
  38990. frontSfw: {
  38991. height: math.unit(6 + 5/12, "feet"),
  38992. weight: math.unit(650, "lb"),
  38993. name: "Front (SFW)",
  38994. image: {
  38995. source: "./media/characters/keegan/front-sfw.svg",
  38996. extra: 2387/2198,
  38997. bottom: 33/2420
  38998. }
  38999. },
  39000. beans: {
  39001. height: math.unit(1.85, "feet"),
  39002. name: "Beans",
  39003. image: {
  39004. source: "./media/characters/keegan/beans.svg"
  39005. }
  39006. },
  39007. },
  39008. [
  39009. {
  39010. name: "Normal",
  39011. height: math.unit(6 + 5/12, "feet"),
  39012. default: true
  39013. },
  39014. ]
  39015. ))
  39016. characterMakers.push(() => makeCharacter(
  39017. { name: "Colton", species: ["bat", "imp", "deity"], tags: ["anthro"] },
  39018. {
  39019. front: {
  39020. height: math.unit(9, "feet"),
  39021. name: "Front",
  39022. image: {
  39023. source: "./media/characters/colton/front.svg",
  39024. extra: 1589/1326,
  39025. bottom: 139/1728
  39026. }
  39027. },
  39028. },
  39029. [
  39030. {
  39031. name: "Normal",
  39032. height: math.unit(9, "feet"),
  39033. default: true
  39034. },
  39035. ]
  39036. ))
  39037. characterMakers.push(() => makeCharacter(
  39038. { name: "Bora", species: ["chinchilla"], tags: ["anthro"] },
  39039. {
  39040. front: {
  39041. height: math.unit(2 + 9/12, "feet"),
  39042. name: "Front",
  39043. image: {
  39044. source: "./media/characters/bora/front.svg",
  39045. extra: 1265/1250,
  39046. bottom: 24/1289
  39047. }
  39048. },
  39049. },
  39050. [
  39051. {
  39052. name: "Normal",
  39053. height: math.unit(2 + 9/12, "feet"),
  39054. default: true
  39055. },
  39056. ]
  39057. ))
  39058. characterMakers.push(() => makeCharacter(
  39059. { name: "Myu-myu", species: ["monster"], tags: ["anthro"] },
  39060. {
  39061. front: {
  39062. height: math.unit(8, "feet"),
  39063. name: "Front",
  39064. image: {
  39065. source: "./media/characters/myu-myu/front.svg",
  39066. extra: 1949/1857,
  39067. bottom: 90/2039
  39068. }
  39069. },
  39070. },
  39071. [
  39072. {
  39073. name: "Normal",
  39074. height: math.unit(8, "feet"),
  39075. default: true
  39076. },
  39077. {
  39078. name: "Big",
  39079. height: math.unit(15, "feet")
  39080. },
  39081. {
  39082. name: "BIG",
  39083. height: math.unit(25, "feet")
  39084. },
  39085. ]
  39086. ))
  39087. characterMakers.push(() => makeCharacter(
  39088. { name: "Haloren", species: ["felkin"], tags: ["anthro"] },
  39089. {
  39090. side: {
  39091. height: math.unit(7 + 5/12, "feet"),
  39092. weight: math.unit(2800, "lb"),
  39093. name: "Side",
  39094. image: {
  39095. source: "./media/characters/haloren/side.svg",
  39096. extra: 1793/409,
  39097. bottom: 59/1852
  39098. }
  39099. },
  39100. frontPaw: {
  39101. height: math.unit(2.36, "feet"),
  39102. name: "Front paw",
  39103. image: {
  39104. source: "./media/characters/haloren/front-paw.svg"
  39105. }
  39106. },
  39107. hindPaw: {
  39108. height: math.unit(3.18, "feet"),
  39109. name: "Hind paw",
  39110. image: {
  39111. source: "./media/characters/haloren/hind-paw.svg"
  39112. }
  39113. },
  39114. maw: {
  39115. height: math.unit(5.05, "feet"),
  39116. name: "Maw",
  39117. image: {
  39118. source: "./media/characters/haloren/maw.svg"
  39119. }
  39120. },
  39121. dick: {
  39122. height: math.unit(2.90, "feet"),
  39123. name: "Dick",
  39124. image: {
  39125. source: "./media/characters/haloren/dick.svg"
  39126. }
  39127. },
  39128. },
  39129. [
  39130. {
  39131. name: "Normal",
  39132. height: math.unit(7 + 5/12, "feet"),
  39133. default: true
  39134. },
  39135. {
  39136. name: "Enhanced",
  39137. height: math.unit(14 + 3/12, "feet")
  39138. },
  39139. ]
  39140. ))
  39141. characterMakers.push(() => makeCharacter(
  39142. { name: "Kimmy", species: ["kitsune"], tags: ["anthro"] },
  39143. {
  39144. front: {
  39145. height: math.unit(171, "cm"),
  39146. name: "Front",
  39147. image: {
  39148. source: "./media/characters/kimmy/front.svg",
  39149. extra: 1491/1435,
  39150. bottom: 53/1544
  39151. }
  39152. },
  39153. },
  39154. [
  39155. {
  39156. name: "Small",
  39157. height: math.unit(9, "cm")
  39158. },
  39159. {
  39160. name: "Normal",
  39161. height: math.unit(171, "cm"),
  39162. default: true
  39163. },
  39164. ]
  39165. ))
  39166. characterMakers.push(() => makeCharacter(
  39167. { name: "Galeboomer", species: ["wolf"], tags: ["anthro"] },
  39168. {
  39169. front: {
  39170. height: math.unit(8, "feet"),
  39171. weight: math.unit(300, "lb"),
  39172. name: "Front",
  39173. image: {
  39174. source: "./media/characters/galeboomer/front.svg",
  39175. extra: 4651/4415,
  39176. bottom: 162/4813
  39177. }
  39178. },
  39179. back: {
  39180. height: math.unit(8, "feet"),
  39181. weight: math.unit(300, "lb"),
  39182. name: "Back",
  39183. image: {
  39184. source: "./media/characters/galeboomer/back.svg",
  39185. extra: 4544/4314,
  39186. bottom: 16/4560
  39187. }
  39188. },
  39189. frontAlt: {
  39190. height: math.unit(8, "feet"),
  39191. weight: math.unit(300, "lb"),
  39192. name: "Front (Alt)",
  39193. image: {
  39194. source: "./media/characters/galeboomer/front-alt.svg",
  39195. extra: 4458/4228,
  39196. bottom: 68/4526
  39197. }
  39198. },
  39199. maw: {
  39200. height: math.unit(1.2, "feet"),
  39201. name: "Maw",
  39202. image: {
  39203. source: "./media/characters/galeboomer/maw.svg"
  39204. }
  39205. },
  39206. },
  39207. [
  39208. {
  39209. name: "Normal",
  39210. height: math.unit(8, "feet"),
  39211. default: true
  39212. },
  39213. ]
  39214. ))
  39215. characterMakers.push(() => makeCharacter(
  39216. { name: "Chyr", species: ["fox"], tags: ["anthro"] },
  39217. {
  39218. front: {
  39219. height: math.unit(5 + 9/12, "feet"),
  39220. weight: math.unit(120, "lb"),
  39221. name: "Front",
  39222. image: {
  39223. source: "./media/characters/chyr/front.svg",
  39224. extra: 1323/1254,
  39225. bottom: 63/1386
  39226. }
  39227. },
  39228. back: {
  39229. height: math.unit(5 + 9/12, "feet"),
  39230. weight: math.unit(120, "lb"),
  39231. name: "Back",
  39232. image: {
  39233. source: "./media/characters/chyr/back.svg",
  39234. extra: 1323/1252,
  39235. bottom: 48/1371
  39236. }
  39237. },
  39238. },
  39239. [
  39240. {
  39241. name: "Normal",
  39242. height: math.unit(5 + 9/12, "feet"),
  39243. default: true
  39244. },
  39245. ]
  39246. ))
  39247. characterMakers.push(() => makeCharacter(
  39248. { name: "Solarus", species: ["tykeriel"], tags: ["anthro"] },
  39249. {
  39250. front: {
  39251. height: math.unit(7, "feet"),
  39252. weight: math.unit(310, "lb"),
  39253. name: "Front",
  39254. image: {
  39255. source: "./media/characters/solarus/front.svg",
  39256. extra: 2415/2021,
  39257. bottom: 103/2518
  39258. }
  39259. },
  39260. back: {
  39261. height: math.unit(7, "feet"),
  39262. weight: math.unit(310, "lb"),
  39263. name: "Back",
  39264. image: {
  39265. source: "./media/characters/solarus/back.svg",
  39266. extra: 2463/2089,
  39267. bottom: 79/2542
  39268. }
  39269. },
  39270. },
  39271. [
  39272. {
  39273. name: "Normal",
  39274. height: math.unit(7, "feet"),
  39275. default: true
  39276. },
  39277. ]
  39278. ))
  39279. characterMakers.push(() => makeCharacter(
  39280. { name: "Mutsuju Koizaemon", species: ["snow-leopard", "lynx"], tags: ["anthro"] },
  39281. {
  39282. front: {
  39283. height: math.unit(16, "feet"),
  39284. name: "Front",
  39285. image: {
  39286. source: "./media/characters/mutsuju-koizaemon/front.svg",
  39287. extra: 1844/1780,
  39288. bottom: 58/1902
  39289. }
  39290. },
  39291. winterCoat: {
  39292. height: math.unit(16, "feet"),
  39293. name: "Winter Coat",
  39294. image: {
  39295. source: "./media/characters/mutsuju-koizaemon/winter-coat.svg",
  39296. extra: 1807/1775,
  39297. bottom: 69/1876
  39298. }
  39299. },
  39300. },
  39301. [
  39302. {
  39303. name: "Normal",
  39304. height: math.unit(16, "feet"),
  39305. default: true
  39306. },
  39307. {
  39308. name: "Chicago Size",
  39309. height: math.unit(560, "feet")
  39310. },
  39311. ]
  39312. ))
  39313. characterMakers.push(() => makeCharacter(
  39314. { name: "Lexor", species: ["dragon"], tags: ["anthro"] },
  39315. {
  39316. front: {
  39317. height: math.unit(11 + 6/12, "feet"),
  39318. weight: math.unit(1366, "lb"),
  39319. name: "Front",
  39320. image: {
  39321. source: "./media/characters/lexor/front.svg",
  39322. extra: 1560/1481,
  39323. bottom: 211/1771
  39324. }
  39325. },
  39326. back: {
  39327. height: math.unit(11 + 6/12, "feet"),
  39328. weight: math.unit(1366, "lb"),
  39329. name: "Back",
  39330. image: {
  39331. source: "./media/characters/lexor/back.svg",
  39332. extra: 1614/1533,
  39333. bottom: 76/1690
  39334. }
  39335. },
  39336. maw: {
  39337. height: math.unit(3, "feet"),
  39338. name: "Maw",
  39339. image: {
  39340. source: "./media/characters/lexor/maw.svg"
  39341. }
  39342. },
  39343. dick: {
  39344. height: math.unit(2.59, "feet"),
  39345. name: "Dick",
  39346. image: {
  39347. source: "./media/characters/lexor/dick.svg"
  39348. }
  39349. },
  39350. },
  39351. [
  39352. {
  39353. name: "Normal",
  39354. height: math.unit(11 + 6/12, "feet"),
  39355. default: true
  39356. },
  39357. ]
  39358. ))
  39359. characterMakers.push(() => makeCharacter(
  39360. { name: "Magnum", species: ["folf"], tags: ["anthro"] },
  39361. {
  39362. front: {
  39363. height: math.unit(5 + 8/12, "feet"),
  39364. name: "Front",
  39365. image: {
  39366. source: "./media/characters/magnum/front.svg",
  39367. extra: 942/855,
  39368. bottom: 26/968
  39369. }
  39370. },
  39371. },
  39372. [
  39373. {
  39374. name: "Normal",
  39375. height: math.unit(5 + 8/12, "feet"),
  39376. default: true
  39377. },
  39378. ]
  39379. ))
  39380. characterMakers.push(() => makeCharacter(
  39381. { name: "Solas Sharpsman", species: ["kitsune"], tags: ["anthro"] },
  39382. {
  39383. front: {
  39384. height: math.unit(18 + 4/12, "feet"),
  39385. weight: math.unit(1500, "kg"),
  39386. name: "Front",
  39387. image: {
  39388. source: "./media/characters/solas-sharpsman/front.svg",
  39389. extra: 1698/1589,
  39390. bottom: 0/1698
  39391. }
  39392. },
  39393. },
  39394. [
  39395. {
  39396. name: "Normal",
  39397. height: math.unit(18 + 4/12, "feet"),
  39398. default: true
  39399. },
  39400. ]
  39401. ))
  39402. characterMakers.push(() => makeCharacter(
  39403. { name: "October", species: ["tiger"], tags: ["anthro"] },
  39404. {
  39405. front: {
  39406. height: math.unit(5 + 5/12, "feet"),
  39407. weight: math.unit(180, "lb"),
  39408. name: "Front",
  39409. image: {
  39410. source: "./media/characters/october/front.svg",
  39411. extra: 1800/1650,
  39412. bottom: 0/1800
  39413. }
  39414. },
  39415. frontNsfw: {
  39416. height: math.unit(5 + 5/12, "feet"),
  39417. weight: math.unit(180, "lb"),
  39418. name: "Front (NSFW)",
  39419. image: {
  39420. source: "./media/characters/october/front-nsfw.svg",
  39421. extra: 1392/1307,
  39422. bottom: 42/1434
  39423. }
  39424. },
  39425. },
  39426. [
  39427. {
  39428. name: "Normal",
  39429. height: math.unit(5 + 5/12, "feet"),
  39430. default: true
  39431. },
  39432. ]
  39433. ))
  39434. characterMakers.push(() => makeCharacter(
  39435. { name: "Essynkardi", species: ["dragon"], tags: ["anthro"] },
  39436. {
  39437. front: {
  39438. height: math.unit(8 + 6/12, "feet"),
  39439. name: "Front",
  39440. image: {
  39441. source: "./media/characters/essynkardi/front.svg",
  39442. extra: 1541/1457,
  39443. bottom: 47/1588
  39444. }
  39445. },
  39446. },
  39447. [
  39448. {
  39449. name: "Normal",
  39450. height: math.unit(8 + 6/12, "feet"),
  39451. default: true
  39452. },
  39453. ]
  39454. ))
  39455. characterMakers.push(() => makeCharacter(
  39456. { name: "Icky", species: ["raven", "pooltoy"], tags: ["anthro"] },
  39457. {
  39458. front: {
  39459. height: math.unit(6 + 6/12, "feet"),
  39460. weight: math.unit(7, "lb"),
  39461. name: "Front",
  39462. image: {
  39463. source: "./media/characters/icky/front.svg",
  39464. extra: 813/782,
  39465. bottom: 66/879
  39466. }
  39467. },
  39468. back: {
  39469. height: math.unit(6 + 6/12, "feet"),
  39470. weight: math.unit(7, "lb"),
  39471. name: "Back",
  39472. image: {
  39473. source: "./media/characters/icky/back.svg",
  39474. extra: 754/735,
  39475. bottom: 56/810
  39476. }
  39477. },
  39478. },
  39479. [
  39480. {
  39481. name: "Normal",
  39482. height: math.unit(6 + 6/12, "feet"),
  39483. default: true
  39484. },
  39485. ]
  39486. ))
  39487. characterMakers.push(() => makeCharacter(
  39488. { name: "Rojas", species: ["dragon", "human"], tags: ["anthro"] },
  39489. {
  39490. front: {
  39491. height: math.unit(15, "feet"),
  39492. name: "Front",
  39493. image: {
  39494. source: "./media/characters/rojas/front.svg",
  39495. extra: 1462/1408,
  39496. bottom: 95/1557
  39497. }
  39498. },
  39499. back: {
  39500. height: math.unit(15, "feet"),
  39501. name: "Back",
  39502. image: {
  39503. source: "./media/characters/rojas/back.svg",
  39504. extra: 1023/954,
  39505. bottom: 28/1051
  39506. }
  39507. },
  39508. },
  39509. [
  39510. {
  39511. name: "Normal",
  39512. height: math.unit(15, "feet"),
  39513. default: true
  39514. },
  39515. ]
  39516. ))
  39517. characterMakers.push(() => makeCharacter(
  39518. { name: "Alek Dryagan", species: ["sea-monster", "human", "demi"], tags: ["anthro"] },
  39519. {
  39520. frontHuman: {
  39521. height: math.unit(5 + 7/12, "feet"),
  39522. name: "Front (Human)",
  39523. image: {
  39524. source: "./media/characters/alek-dryagan/front-human.svg",
  39525. extra: 1687/1667,
  39526. bottom: 69/1756
  39527. }
  39528. },
  39529. backHuman: {
  39530. height: math.unit(5 + 7/12, "feet"),
  39531. name: "Back (Human)",
  39532. image: {
  39533. source: "./media/characters/alek-dryagan/back-human.svg",
  39534. extra: 1670/1649,
  39535. bottom: 65/1735
  39536. }
  39537. },
  39538. frontDemi: {
  39539. height: math.unit(65, "feet"),
  39540. name: "Front (Demi)",
  39541. image: {
  39542. source: "./media/characters/alek-dryagan/front-demi.svg",
  39543. extra: 1669/1642,
  39544. bottom: 49/1718
  39545. }
  39546. },
  39547. backDemi: {
  39548. height: math.unit(65, "feet"),
  39549. name: "Back (Demi)",
  39550. image: {
  39551. source: "./media/characters/alek-dryagan/back-demi.svg",
  39552. extra: 1658/1637,
  39553. bottom: 40/1698
  39554. }
  39555. },
  39556. mawHuman: {
  39557. height: math.unit(0.3, "feet"),
  39558. name: "Maw (Human)",
  39559. image: {
  39560. source: "./media/characters/alek-dryagan/maw-human.svg"
  39561. }
  39562. },
  39563. mawDemi: {
  39564. height: math.unit(3.8, "feet"),
  39565. name: "Maw (Demi)",
  39566. image: {
  39567. source: "./media/characters/alek-dryagan/maw-demi.svg"
  39568. }
  39569. },
  39570. },
  39571. [
  39572. {
  39573. name: "Normal",
  39574. height: math.unit(5 + 7/12, "feet"),
  39575. default: true
  39576. },
  39577. ]
  39578. ))
  39579. characterMakers.push(() => makeCharacter(
  39580. { name: "Gen", species: ["cat", "human", "demi"], tags: ["anthro"] },
  39581. {
  39582. frontHuman: {
  39583. height: math.unit(5 + 2/12, "feet"),
  39584. name: "Front (Human)",
  39585. image: {
  39586. source: "./media/characters/gen/front-human.svg",
  39587. extra: 1627/1538,
  39588. bottom: 71/1698
  39589. }
  39590. },
  39591. backHuman: {
  39592. height: math.unit(5 + 2/12, "feet"),
  39593. name: "Back (Human)",
  39594. image: {
  39595. source: "./media/characters/gen/back-human.svg",
  39596. extra: 1638/1548,
  39597. bottom: 69/1707
  39598. }
  39599. },
  39600. frontDemi: {
  39601. height: math.unit(5 + 2/12, "feet"),
  39602. name: "Front (Demi)",
  39603. image: {
  39604. source: "./media/characters/gen/front-demi.svg",
  39605. extra: 1627/1538,
  39606. bottom: 71/1698
  39607. }
  39608. },
  39609. backDemi: {
  39610. height: math.unit(5 + 2/12, "feet"),
  39611. name: "Back (Demi)",
  39612. image: {
  39613. source: "./media/characters/gen/back-demi.svg",
  39614. extra: 1638/1548,
  39615. bottom: 69/1707
  39616. }
  39617. },
  39618. },
  39619. [
  39620. {
  39621. name: "Normal",
  39622. height: math.unit(5 + 2/12, "feet"),
  39623. default: true
  39624. },
  39625. ]
  39626. ))
  39627. characterMakers.push(() => makeCharacter(
  39628. { name: "Max Kobold", species: ["imp", "human", "demi"], tags: ["anthro"] },
  39629. {
  39630. frontImp: {
  39631. height: math.unit(1 + 11/12, "feet"),
  39632. name: "Front (Imp)",
  39633. image: {
  39634. source: "./media/characters/max-kobold/front-imp.svg",
  39635. extra: 1238/1134,
  39636. bottom: 81/1319
  39637. }
  39638. },
  39639. backImp: {
  39640. height: math.unit(1 + 11/12, "feet"),
  39641. name: "Back (Imp)",
  39642. image: {
  39643. source: "./media/characters/max-kobold/back-imp.svg",
  39644. extra: 1334/1175,
  39645. bottom: 34/1368
  39646. }
  39647. },
  39648. frontDemi: {
  39649. height: math.unit(5 + 9/12, "feet"),
  39650. name: "Front (Demi)",
  39651. image: {
  39652. source: "./media/characters/max-kobold/front-demi.svg",
  39653. extra: 1715/1685,
  39654. bottom: 54/1769
  39655. }
  39656. },
  39657. backDemi: {
  39658. height: math.unit(5 + 9/12, "feet"),
  39659. name: "Back (Demi)",
  39660. image: {
  39661. source: "./media/characters/max-kobold/back-demi.svg",
  39662. extra: 1752/1729,
  39663. bottom: 41/1793
  39664. }
  39665. },
  39666. handImp: {
  39667. height: math.unit(0.45, "feet"),
  39668. name: "Hand (Imp)",
  39669. image: {
  39670. source: "./media/characters/max-kobold/hand.svg"
  39671. }
  39672. },
  39673. pawImp: {
  39674. height: math.unit(0.46, "feet"),
  39675. name: "Paw (Imp)",
  39676. image: {
  39677. source: "./media/characters/max-kobold/paw.svg"
  39678. }
  39679. },
  39680. handDemi: {
  39681. height: math.unit(0.80, "feet"),
  39682. name: "Hand (Demi)",
  39683. image: {
  39684. source: "./media/characters/max-kobold/hand.svg"
  39685. }
  39686. },
  39687. pawDemi: {
  39688. height: math.unit(1.1, "feet"),
  39689. name: "Paw (Demi)",
  39690. image: {
  39691. source: "./media/characters/max-kobold/paw.svg"
  39692. }
  39693. },
  39694. headImp: {
  39695. height: math.unit(1.33, "feet"),
  39696. name: "Head (Imp)",
  39697. image: {
  39698. source: "./media/characters/max-kobold/head-imp.svg"
  39699. }
  39700. },
  39701. mawImp: {
  39702. height: math.unit(0.75, "feet"),
  39703. name: "Maw (Imp)",
  39704. image: {
  39705. source: "./media/characters/max-kobold/maw-imp.svg"
  39706. }
  39707. },
  39708. mawDemi: {
  39709. height: math.unit(0.42, "feet"),
  39710. name: "Maw (Demi)",
  39711. image: {
  39712. source: "./media/characters/max-kobold/maw-demi.svg"
  39713. }
  39714. },
  39715. },
  39716. [
  39717. {
  39718. name: "Normal",
  39719. height: math.unit(1 + 11/12, "feet"),
  39720. default: true
  39721. },
  39722. ]
  39723. ))
  39724. characterMakers.push(() => makeCharacter(
  39725. { name: "Carbon", species: ["charizard", "demi"], tags: ["anthro"] },
  39726. {
  39727. front: {
  39728. height: math.unit(7 + 5/12, "feet"),
  39729. name: "Front",
  39730. image: {
  39731. source: "./media/characters/carbon/front.svg",
  39732. extra: 1754/1689,
  39733. bottom: 65/1819
  39734. }
  39735. },
  39736. back: {
  39737. height: math.unit(7 + 5/12, "feet"),
  39738. name: "Back",
  39739. image: {
  39740. source: "./media/characters/carbon/back.svg",
  39741. extra: 1762/1695,
  39742. bottom: 24/1786
  39743. }
  39744. },
  39745. frontGigantamax: {
  39746. height: math.unit(150, "feet"),
  39747. name: "Front (Gigantamax)",
  39748. image: {
  39749. source: "./media/characters/carbon/front-gigantamax.svg",
  39750. extra: 1826/1669,
  39751. bottom: 59/1885
  39752. }
  39753. },
  39754. backGigantamax: {
  39755. height: math.unit(150, "feet"),
  39756. name: "Back (Gigantamax)",
  39757. image: {
  39758. source: "./media/characters/carbon/back-gigantamax.svg",
  39759. extra: 1796/1653,
  39760. bottom: 53/1849
  39761. }
  39762. },
  39763. maw: {
  39764. height: math.unit(0.48, "feet"),
  39765. name: "Maw",
  39766. image: {
  39767. source: "./media/characters/carbon/maw.svg"
  39768. }
  39769. },
  39770. mawGigantamax: {
  39771. height: math.unit(7.5, "feet"),
  39772. name: "Maw (Gigantamax)",
  39773. image: {
  39774. source: "./media/characters/carbon/maw-gigantamax.svg"
  39775. }
  39776. },
  39777. },
  39778. [
  39779. {
  39780. name: "Normal",
  39781. height: math.unit(7 + 5/12, "feet"),
  39782. default: true
  39783. },
  39784. ]
  39785. ))
  39786. characterMakers.push(() => makeCharacter(
  39787. { name: "Maverick", species: ["salazzle", "demi"], tags: ["anthro"] },
  39788. {
  39789. front: {
  39790. height: math.unit(6, "feet"),
  39791. name: "Front",
  39792. image: {
  39793. source: "./media/characters/maverick/front.svg",
  39794. extra: 1672/1661,
  39795. bottom: 85/1757
  39796. }
  39797. },
  39798. back: {
  39799. height: math.unit(6, "feet"),
  39800. name: "Back",
  39801. image: {
  39802. source: "./media/characters/maverick/back.svg",
  39803. extra: 1642/1631,
  39804. bottom: 38/1680
  39805. }
  39806. },
  39807. },
  39808. [
  39809. {
  39810. name: "Normal",
  39811. height: math.unit(6, "feet"),
  39812. default: true
  39813. },
  39814. ]
  39815. ))
  39816. characterMakers.push(() => makeCharacter(
  39817. { name: "Grockle", species: ["stegosaurus"], tags: ["anthro"] },
  39818. {
  39819. front: {
  39820. height: math.unit(15, "feet"),
  39821. weight: math.unit(615, "lb"),
  39822. name: "Front",
  39823. image: {
  39824. source: "./media/characters/grockle/front.svg",
  39825. extra: 1535/1427,
  39826. bottom: 56/1591
  39827. }
  39828. },
  39829. },
  39830. [
  39831. {
  39832. name: "Normal",
  39833. height: math.unit(15, "feet"),
  39834. default: true
  39835. },
  39836. {
  39837. name: "Large",
  39838. height: math.unit(150, "feet")
  39839. },
  39840. {
  39841. name: "Macro",
  39842. height: math.unit(1876, "feet")
  39843. },
  39844. {
  39845. name: "Mega Macro",
  39846. height: math.unit(121940, "feet")
  39847. },
  39848. {
  39849. name: "Giga Macro",
  39850. height: math.unit(750, "km")
  39851. },
  39852. {
  39853. name: "Tera Macro",
  39854. height: math.unit(750000, "km")
  39855. },
  39856. {
  39857. name: "Galactic",
  39858. height: math.unit(1.4e5, "km")
  39859. },
  39860. {
  39861. name: "Godlike",
  39862. height: math.unit(9.8e280, "galaxies")
  39863. },
  39864. ]
  39865. ))
  39866. characterMakers.push(() => makeCharacter(
  39867. { name: "Alistair", species: ["dragon"], tags: ["anthro"] },
  39868. {
  39869. front: {
  39870. height: math.unit(11, "meters"),
  39871. weight: math.unit(20, "tonnes"),
  39872. name: "Front",
  39873. image: {
  39874. source: "./media/characters/alistair/front.svg",
  39875. extra: 1265/1009,
  39876. bottom: 93/1358
  39877. }
  39878. },
  39879. },
  39880. [
  39881. {
  39882. name: "Normal",
  39883. height: math.unit(11, "meters"),
  39884. default: true
  39885. },
  39886. ]
  39887. ))
  39888. characterMakers.push(() => makeCharacter(
  39889. { name: "Haruka", species: ["raptor"], tags: ["anthro"] },
  39890. {
  39891. front: {
  39892. height: math.unit(5 + 8/12, "feet"),
  39893. name: "Front",
  39894. image: {
  39895. source: "./media/characters/haruka/front.svg",
  39896. extra: 2012/1952,
  39897. bottom: 0/2012
  39898. }
  39899. },
  39900. },
  39901. [
  39902. {
  39903. name: "Normal",
  39904. height: math.unit(5 + 8/12, "feet"),
  39905. default: true
  39906. },
  39907. ]
  39908. ))
  39909. characterMakers.push(() => makeCharacter(
  39910. { name: "Vivian Sylveon", species: ["sylveon", "computer-virus"], tags: ["anthro"] },
  39911. {
  39912. back: {
  39913. height: math.unit(9, "feet"),
  39914. name: "Back",
  39915. image: {
  39916. source: "./media/characters/vivian-sylveon/back.svg",
  39917. extra: 1853/1714,
  39918. bottom: 0/1853
  39919. }
  39920. },
  39921. hyper: {
  39922. height: math.unit(5.58, "feet"),
  39923. name: "Hyper",
  39924. preyCapacity: math.unit(2.80616218797, "m^3"),
  39925. image: {
  39926. source: "./media/characters/vivian-sylveon/hyper.svg",
  39927. extra: 999/676,
  39928. bottom: 697/1696
  39929. },
  39930. },
  39931. paw: {
  39932. height: math.unit(1.8, "feet"),
  39933. name: "Paw",
  39934. image: {
  39935. source: "./media/characters/vivian-sylveon/paw.svg"
  39936. }
  39937. },
  39938. danger: {
  39939. height: math.unit(7.5, "feet"),
  39940. name: "DANGER",
  39941. image: {
  39942. source: "./media/characters/vivian-sylveon/danger.svg"
  39943. }
  39944. },
  39945. },
  39946. [
  39947. {
  39948. name: "Normal",
  39949. height: math.unit(9, "feet"),
  39950. default: true
  39951. },
  39952. {
  39953. name: "Macro",
  39954. height: math.unit(500, "feet")
  39955. },
  39956. {
  39957. name: "Megamacro",
  39958. height: math.unit(600, "miles")
  39959. },
  39960. {
  39961. name: "Gigamacro",
  39962. height: math.unit(30000, "miles")
  39963. },
  39964. ]
  39965. ))
  39966. characterMakers.push(() => makeCharacter(
  39967. { name: "Daiki", species: ["bat", "dragon"], tags: ["anthro" ,"feral"] },
  39968. {
  39969. anthro: {
  39970. height: math.unit(5 + 10/12, "feet"),
  39971. weight: math.unit(100, "lb"),
  39972. name: "Anthro",
  39973. image: {
  39974. source: "./media/characters/daiki/anthro.svg",
  39975. extra: 1115/1027,
  39976. bottom: 69/1184
  39977. }
  39978. },
  39979. feral: {
  39980. height: math.unit(200, "feet"),
  39981. name: "Feral",
  39982. image: {
  39983. source: "./media/characters/daiki/feral.svg",
  39984. extra: 1256/313,
  39985. bottom: 39/1295
  39986. }
  39987. },
  39988. feralHead: {
  39989. height: math.unit(171, "feet"),
  39990. name: "Feral Head",
  39991. image: {
  39992. source: "./media/characters/daiki/feral-head.svg"
  39993. }
  39994. },
  39995. manaDragon: {
  39996. height: math.unit(170, "meters"),
  39997. name: "Mana-dragon",
  39998. image: {
  39999. source: "./media/characters/daiki/mana-dragon.svg",
  40000. extra: 763/420,
  40001. bottom: 97/860
  40002. }
  40003. },
  40004. },
  40005. [
  40006. {
  40007. name: "Normal",
  40008. height: math.unit(5 + 10/12, "feet"),
  40009. default: true
  40010. },
  40011. ]
  40012. ))
  40013. characterMakers.push(() => makeCharacter(
  40014. { name: "Tea Spot", species: ["space-springhare"], tags: ["anthro"] },
  40015. {
  40016. fullyEquippedFront: {
  40017. height: math.unit(3 + 1/12, "feet"),
  40018. weight: math.unit(24, "lb"),
  40019. name: "Fully Equipped (Front)",
  40020. image: {
  40021. source: "./media/characters/tea-spot/fully-equipped-front.svg",
  40022. extra: 687/605,
  40023. bottom: 18/705
  40024. }
  40025. },
  40026. fullyEquippedBack: {
  40027. height: math.unit(3 + 1/12, "feet"),
  40028. weight: math.unit(24, "lb"),
  40029. name: "Fully Equipped (Back)",
  40030. image: {
  40031. source: "./media/characters/tea-spot/fully-equipped-back.svg",
  40032. extra: 689/590,
  40033. bottom: 18/707
  40034. }
  40035. },
  40036. dailyWear: {
  40037. height: math.unit(3 + 1/12, "feet"),
  40038. weight: math.unit(24, "lb"),
  40039. name: "Daily Wear",
  40040. image: {
  40041. source: "./media/characters/tea-spot/daily-wear.svg",
  40042. extra: 701/620,
  40043. bottom: 21/722
  40044. }
  40045. },
  40046. maidWork: {
  40047. height: math.unit(3 + 1/12, "feet"),
  40048. weight: math.unit(24, "lb"),
  40049. name: "Maid Work",
  40050. image: {
  40051. source: "./media/characters/tea-spot/maid-work.svg",
  40052. extra: 693/609,
  40053. bottom: 15/708
  40054. }
  40055. },
  40056. },
  40057. [
  40058. {
  40059. name: "Normal",
  40060. height: math.unit(3 + 1/12, "feet"),
  40061. default: true
  40062. },
  40063. ]
  40064. ))
  40065. characterMakers.push(() => makeCharacter(
  40066. { name: "Chee", species: ["cheetah"], tags: ["anthro"] },
  40067. {
  40068. front: {
  40069. height: math.unit(175, "cm"),
  40070. weight: math.unit(75, "kg"),
  40071. name: "Front",
  40072. image: {
  40073. source: "./media/characters/chee/front.svg",
  40074. extra: 1796/1740,
  40075. bottom: 40/1836
  40076. }
  40077. },
  40078. },
  40079. [
  40080. {
  40081. name: "Micro-Micro",
  40082. height: math.unit(1, "nm")
  40083. },
  40084. {
  40085. name: "Micro-erst",
  40086. height: math.unit(1, "micrometer")
  40087. },
  40088. {
  40089. name: "Micro-er",
  40090. height: math.unit(1, "cm")
  40091. },
  40092. {
  40093. name: "Normal",
  40094. height: math.unit(175, "cm"),
  40095. default: true
  40096. },
  40097. {
  40098. name: "Macro",
  40099. height: math.unit(100, "m")
  40100. },
  40101. {
  40102. name: "Macro-er",
  40103. height: math.unit(1, "km")
  40104. },
  40105. {
  40106. name: "Macro-erst",
  40107. height: math.unit(10, "km")
  40108. },
  40109. {
  40110. name: "Macro-Macro",
  40111. height: math.unit(100, "km")
  40112. },
  40113. ]
  40114. ))
  40115. characterMakers.push(() => makeCharacter(
  40116. { name: "Kingsley", species: ["dragon"], tags: ["anthro"] },
  40117. {
  40118. front: {
  40119. height: math.unit(11 + 9/12, "feet"),
  40120. weight: math.unit(935, "lb"),
  40121. name: "Front",
  40122. image: {
  40123. source: "./media/characters/kingsley/front.svg",
  40124. extra: 1803/1674,
  40125. bottom: 127/1930
  40126. }
  40127. },
  40128. frontNude: {
  40129. height: math.unit(11 + 9/12, "feet"),
  40130. weight: math.unit(935, "lb"),
  40131. name: "Front (Nude)",
  40132. image: {
  40133. source: "./media/characters/kingsley/front-nude.svg",
  40134. extra: 1803/1674,
  40135. bottom: 127/1930
  40136. }
  40137. },
  40138. },
  40139. [
  40140. {
  40141. name: "Normal",
  40142. height: math.unit(11 + 9/12, "feet"),
  40143. default: true
  40144. },
  40145. ]
  40146. ))
  40147. characterMakers.push(() => makeCharacter(
  40148. { name: "Rymel", species: ["river-drake"], tags: ["feral"] },
  40149. {
  40150. side: {
  40151. height: math.unit(9, "feet"),
  40152. name: "Side",
  40153. image: {
  40154. source: "./media/characters/rymel/side.svg",
  40155. extra: 792/469,
  40156. bottom: 121/913
  40157. }
  40158. },
  40159. maw: {
  40160. height: math.unit(2.4, "meters"),
  40161. name: "Maw",
  40162. image: {
  40163. source: "./media/characters/rymel/maw.svg"
  40164. }
  40165. },
  40166. },
  40167. [
  40168. {
  40169. name: "House Drake",
  40170. height: math.unit(2, "feet")
  40171. },
  40172. {
  40173. name: "Reduced",
  40174. height: math.unit(4.5, "feet")
  40175. },
  40176. {
  40177. name: "Normal",
  40178. height: math.unit(9, "feet"),
  40179. default: true
  40180. },
  40181. ]
  40182. ))
  40183. characterMakers.push(() => makeCharacter(
  40184. { name: "Rubus", species: ["plant", "dragon", "construct"], tags: ["anthro"] },
  40185. {
  40186. front: {
  40187. height: math.unit(1.74, "meters"),
  40188. weight: math.unit(55, "kg"),
  40189. name: "Front",
  40190. image: {
  40191. source: "./media/characters/rubus/front.svg",
  40192. extra: 1894/1742,
  40193. bottom: 44/1938
  40194. }
  40195. },
  40196. },
  40197. [
  40198. {
  40199. name: "Normal",
  40200. height: math.unit(1.74, "meters"),
  40201. default: true
  40202. },
  40203. ]
  40204. ))
  40205. characterMakers.push(() => makeCharacter(
  40206. { name: "Cassie Kingston", species: ["border-collie"], tags: ["anthro"] },
  40207. {
  40208. front: {
  40209. height: math.unit(5 + 2/12, "feet"),
  40210. weight: math.unit(112, "lb"),
  40211. name: "Front",
  40212. image: {
  40213. source: "./media/characters/cassie-kingston/front.svg",
  40214. extra: 1438/1390,
  40215. bottom: 47/1485
  40216. }
  40217. },
  40218. },
  40219. [
  40220. {
  40221. name: "Normal",
  40222. height: math.unit(5 + 2/12, "feet"),
  40223. default: true
  40224. },
  40225. {
  40226. name: "Macro",
  40227. height: math.unit(128, "feet")
  40228. },
  40229. {
  40230. name: "Megamacro",
  40231. height: math.unit(2.56, "miles")
  40232. },
  40233. ]
  40234. ))
  40235. characterMakers.push(() => makeCharacter(
  40236. { name: "Fox", species: ["fox"], tags: ["anthro"] },
  40237. {
  40238. front: {
  40239. height: math.unit(7, "feet"),
  40240. name: "Front",
  40241. image: {
  40242. source: "./media/characters/fox/front.svg",
  40243. extra: 1798/1703,
  40244. bottom: 55/1853
  40245. }
  40246. },
  40247. back: {
  40248. height: math.unit(7, "feet"),
  40249. name: "Back",
  40250. image: {
  40251. source: "./media/characters/fox/back.svg",
  40252. extra: 1748/1649,
  40253. bottom: 32/1780
  40254. }
  40255. },
  40256. head: {
  40257. height: math.unit(1.95, "feet"),
  40258. name: "Head",
  40259. image: {
  40260. source: "./media/characters/fox/head.svg"
  40261. }
  40262. },
  40263. dick: {
  40264. height: math.unit(1.33, "feet"),
  40265. name: "Dick",
  40266. image: {
  40267. source: "./media/characters/fox/dick.svg"
  40268. }
  40269. },
  40270. foot: {
  40271. height: math.unit(1, "feet"),
  40272. name: "Foot",
  40273. image: {
  40274. source: "./media/characters/fox/foot.svg"
  40275. }
  40276. },
  40277. paw: {
  40278. height: math.unit(0.92, "feet"),
  40279. name: "Paw",
  40280. image: {
  40281. source: "./media/characters/fox/paw.svg"
  40282. }
  40283. },
  40284. },
  40285. [
  40286. {
  40287. name: "Small",
  40288. height: math.unit(3, "inches")
  40289. },
  40290. {
  40291. name: "\"Realistic\"",
  40292. height: math.unit(7, "feet")
  40293. },
  40294. {
  40295. name: "Normal",
  40296. height: math.unit(150, "feet"),
  40297. default: true
  40298. },
  40299. {
  40300. name: "BIG",
  40301. height: math.unit(1200, "feet")
  40302. },
  40303. {
  40304. name: "👀",
  40305. height: math.unit(5, "miles")
  40306. },
  40307. {
  40308. name: "👀👀👀",
  40309. height: math.unit(64, "miles")
  40310. },
  40311. ]
  40312. ))
  40313. characterMakers.push(() => makeCharacter(
  40314. { name: "Asonja Rossa", species: ["wolf", "dragon"], tags: ["anthro"] },
  40315. {
  40316. front: {
  40317. height: math.unit(625, "feet"),
  40318. name: "Front",
  40319. image: {
  40320. source: "./media/characters/asonja-rossa/front.svg",
  40321. extra: 1833/1686,
  40322. bottom: 24/1857
  40323. }
  40324. },
  40325. back: {
  40326. height: math.unit(625, "feet"),
  40327. name: "Back",
  40328. image: {
  40329. source: "./media/characters/asonja-rossa/back.svg",
  40330. extra: 1852/1753,
  40331. bottom: 26/1878
  40332. }
  40333. },
  40334. },
  40335. [
  40336. {
  40337. name: "Macro",
  40338. height: math.unit(625, "feet"),
  40339. default: true
  40340. },
  40341. ]
  40342. ))
  40343. characterMakers.push(() => makeCharacter(
  40344. { name: "Rezukii", species: ["dragon"], tags: ["feral"] },
  40345. {
  40346. side: {
  40347. height: math.unit(8, "feet"),
  40348. name: "Side",
  40349. image: {
  40350. source: "./media/characters/rezukii/side.svg",
  40351. extra: 979/542,
  40352. bottom: 87/1066
  40353. }
  40354. },
  40355. sitting: {
  40356. height: math.unit(14.6, "feet"),
  40357. name: "Sitting",
  40358. image: {
  40359. source: "./media/characters/rezukii/sitting.svg",
  40360. extra: 1023/813,
  40361. bottom: 45/1068
  40362. }
  40363. },
  40364. },
  40365. [
  40366. {
  40367. name: "Tiny",
  40368. height: math.unit(2, "feet")
  40369. },
  40370. {
  40371. name: "Smol",
  40372. height: math.unit(4, "feet")
  40373. },
  40374. {
  40375. name: "Normal",
  40376. height: math.unit(8, "feet"),
  40377. default: true
  40378. },
  40379. {
  40380. name: "Big",
  40381. height: math.unit(12, "feet")
  40382. },
  40383. {
  40384. name: "Macro",
  40385. height: math.unit(30, "feet")
  40386. },
  40387. ]
  40388. ))
  40389. characterMakers.push(() => makeCharacter(
  40390. { name: "Dawnheart", species: ["horse"], tags: ["anthro"] },
  40391. {
  40392. front: {
  40393. height: math.unit(14, "feet"),
  40394. weight: math.unit(9.5, "tonnes"),
  40395. name: "Front",
  40396. image: {
  40397. source: "./media/characters/dawnheart/front.svg",
  40398. extra: 2792/2675,
  40399. bottom: 64/2856
  40400. }
  40401. },
  40402. },
  40403. [
  40404. {
  40405. name: "Normal",
  40406. height: math.unit(14, "feet"),
  40407. default: true
  40408. },
  40409. ]
  40410. ))
  40411. characterMakers.push(() => makeCharacter(
  40412. { name: "Gladi", species: ["cat" ,"dragon"], tags: ["anthro", "feral"] },
  40413. {
  40414. front: {
  40415. height: math.unit(1.7, "m"),
  40416. name: "Front",
  40417. image: {
  40418. source: "./media/characters/gladi/front.svg",
  40419. extra: 1460/1362,
  40420. bottom: 19/1479
  40421. }
  40422. },
  40423. back: {
  40424. height: math.unit(1.7, "m"),
  40425. name: "Back",
  40426. image: {
  40427. source: "./media/characters/gladi/back.svg",
  40428. extra: 1459/1357,
  40429. bottom: 12/1471
  40430. }
  40431. },
  40432. feral: {
  40433. height: math.unit(2.05, "m"),
  40434. name: "Feral",
  40435. image: {
  40436. source: "./media/characters/gladi/feral.svg",
  40437. extra: 821/557,
  40438. bottom: 91/912
  40439. }
  40440. },
  40441. },
  40442. [
  40443. {
  40444. name: "Shortest",
  40445. height: math.unit(70, "cm")
  40446. },
  40447. {
  40448. name: "Normal",
  40449. height: math.unit(1.7, "m")
  40450. },
  40451. {
  40452. name: "Macro",
  40453. height: math.unit(10, "m"),
  40454. default: true
  40455. },
  40456. {
  40457. name: "Tallest",
  40458. height: math.unit(200, "m")
  40459. },
  40460. ]
  40461. ))
  40462. characterMakers.push(() => makeCharacter(
  40463. { name: "Erdno", species: ["mouse", "djinn"], tags: ["anthro"] },
  40464. {
  40465. front: {
  40466. height: math.unit(5 + 7/12, "feet"),
  40467. weight: math.unit(2, "tons"),
  40468. name: "Front",
  40469. image: {
  40470. source: "./media/characters/erdno/front.svg",
  40471. extra: 1234/1129,
  40472. bottom: 35/1269
  40473. }
  40474. },
  40475. angled: {
  40476. height: math.unit(5 + 7/12, "feet"),
  40477. weight: math.unit(2, "tons"),
  40478. name: "Angled",
  40479. image: {
  40480. source: "./media/characters/erdno/angled.svg",
  40481. extra: 1185/1139,
  40482. bottom: 36/1221
  40483. }
  40484. },
  40485. side: {
  40486. height: math.unit(5 + 7/12, "feet"),
  40487. weight: math.unit(2, "tons"),
  40488. name: "Side",
  40489. image: {
  40490. source: "./media/characters/erdno/side.svg",
  40491. extra: 1191/1144,
  40492. bottom: 40/1231
  40493. }
  40494. },
  40495. back: {
  40496. height: math.unit(5 + 7/12, "feet"),
  40497. weight: math.unit(2, "tons"),
  40498. name: "Back",
  40499. image: {
  40500. source: "./media/characters/erdno/back.svg",
  40501. extra: 1202/1146,
  40502. bottom: 17/1219
  40503. }
  40504. },
  40505. frontNsfw: {
  40506. height: math.unit(5 + 7/12, "feet"),
  40507. weight: math.unit(2, "tons"),
  40508. name: "Front (NSFW)",
  40509. image: {
  40510. source: "./media/characters/erdno/front-nsfw.svg",
  40511. extra: 1234/1129,
  40512. bottom: 35/1269
  40513. }
  40514. },
  40515. angledNsfw: {
  40516. height: math.unit(5 + 7/12, "feet"),
  40517. weight: math.unit(2, "tons"),
  40518. name: "Angled (NSFW)",
  40519. image: {
  40520. source: "./media/characters/erdno/angled-nsfw.svg",
  40521. extra: 1185/1139,
  40522. bottom: 36/1221
  40523. }
  40524. },
  40525. sideNsfw: {
  40526. height: math.unit(5 + 7/12, "feet"),
  40527. weight: math.unit(2, "tons"),
  40528. name: "Side (NSFW)",
  40529. image: {
  40530. source: "./media/characters/erdno/side-nsfw.svg",
  40531. extra: 1191/1144,
  40532. bottom: 40/1231
  40533. }
  40534. },
  40535. backNsfw: {
  40536. height: math.unit(5 + 7/12, "feet"),
  40537. weight: math.unit(2, "tons"),
  40538. name: "Back (NSFW)",
  40539. image: {
  40540. source: "./media/characters/erdno/back-nsfw.svg",
  40541. extra: 1202/1146,
  40542. bottom: 17/1219
  40543. }
  40544. },
  40545. frontHyper: {
  40546. height: math.unit(5 + 7/12, "feet"),
  40547. weight: math.unit(2, "tons"),
  40548. name: "Front (Hyper)",
  40549. image: {
  40550. source: "./media/characters/erdno/front-hyper.svg",
  40551. extra: 1298/1136,
  40552. bottom: 35/1333
  40553. }
  40554. },
  40555. },
  40556. [
  40557. {
  40558. name: "Normal",
  40559. height: math.unit(5 + 7/12, "feet"),
  40560. default: true
  40561. },
  40562. {
  40563. name: "Big",
  40564. height: math.unit(5.7, "meters")
  40565. },
  40566. {
  40567. name: "Macro",
  40568. height: math.unit(5.7, "kilometers")
  40569. },
  40570. {
  40571. name: "Megamacro",
  40572. height: math.unit(5.7, "earths")
  40573. },
  40574. ]
  40575. ))
  40576. characterMakers.push(() => makeCharacter(
  40577. { name: "Jamie", species: ["fox"], tags: ["anthro"] },
  40578. {
  40579. front: {
  40580. height: math.unit(5 + 10/12, "feet"),
  40581. weight: math.unit(150, "lb"),
  40582. name: "Front",
  40583. image: {
  40584. source: "./media/characters/jamie/front.svg",
  40585. extra: 1908/1768,
  40586. bottom: 19/1927
  40587. }
  40588. },
  40589. },
  40590. [
  40591. {
  40592. name: "Minimum",
  40593. height: math.unit(2, "cm")
  40594. },
  40595. {
  40596. name: "Micro",
  40597. height: math.unit(3, "inches")
  40598. },
  40599. {
  40600. name: "Normal",
  40601. height: math.unit(5 + 10/12, "feet"),
  40602. default: true
  40603. },
  40604. {
  40605. name: "Macro",
  40606. height: math.unit(150, "feet")
  40607. },
  40608. {
  40609. name: "Megamacro",
  40610. height: math.unit(10000, "m")
  40611. },
  40612. ]
  40613. ))
  40614. characterMakers.push(() => makeCharacter(
  40615. { name: "Shiron", species: ["wolf"], tags: ["anthro"] },
  40616. {
  40617. front: {
  40618. height: math.unit(2, "meters"),
  40619. weight: math.unit(100, "kg"),
  40620. name: "Front",
  40621. image: {
  40622. source: "./media/characters/shiron/front.svg",
  40623. extra: 2103/1985,
  40624. bottom: 98/2201
  40625. }
  40626. },
  40627. back: {
  40628. height: math.unit(2, "meters"),
  40629. weight: math.unit(100, "kg"),
  40630. name: "Back",
  40631. image: {
  40632. source: "./media/characters/shiron/back.svg",
  40633. extra: 2110/2015,
  40634. bottom: 89/2199
  40635. }
  40636. },
  40637. hand: {
  40638. height: math.unit(0.96, "feet"),
  40639. name: "Hand",
  40640. image: {
  40641. source: "./media/characters/shiron/hand.svg"
  40642. }
  40643. },
  40644. foot: {
  40645. height: math.unit(1.464, "feet"),
  40646. name: "Foot",
  40647. image: {
  40648. source: "./media/characters/shiron/foot.svg"
  40649. }
  40650. },
  40651. },
  40652. [
  40653. {
  40654. name: "Normal",
  40655. height: math.unit(2, "meters")
  40656. },
  40657. {
  40658. name: "Macro",
  40659. height: math.unit(500, "meters"),
  40660. default: true
  40661. },
  40662. {
  40663. name: "Megamacro",
  40664. height: math.unit(20, "km")
  40665. },
  40666. ]
  40667. ))
  40668. characterMakers.push(() => makeCharacter(
  40669. { name: "Sam", species: ["red-panda"], tags: ["anthro"] },
  40670. {
  40671. front: {
  40672. height: math.unit(6, "feet"),
  40673. name: "Front",
  40674. image: {
  40675. source: "./media/characters/sam/front.svg",
  40676. extra: 849/826,
  40677. bottom: 19/868
  40678. }
  40679. },
  40680. },
  40681. [
  40682. {
  40683. name: "Normal",
  40684. height: math.unit(6, "feet"),
  40685. default: true
  40686. },
  40687. ]
  40688. ))
  40689. characterMakers.push(() => makeCharacter(
  40690. { name: "Namori Kurogawa", species: ["fox"], tags: ["anthro"] },
  40691. {
  40692. front: {
  40693. height: math.unit(8 + 4/12, "feet"),
  40694. weight: math.unit(122, "kg"),
  40695. name: "Front",
  40696. image: {
  40697. source: "./media/characters/namori-kurogawa/front.svg",
  40698. extra: 1894/1576,
  40699. bottom: 34/1928
  40700. }
  40701. },
  40702. },
  40703. [
  40704. {
  40705. name: "Normal",
  40706. height: math.unit(8 + 4/12, "feet"),
  40707. default: true
  40708. },
  40709. ]
  40710. ))
  40711. characterMakers.push(() => makeCharacter(
  40712. { name: "Unmru", species: ["horse", "demon"], tags: ["anthro"] },
  40713. {
  40714. front: {
  40715. height: math.unit(9, "feet"),
  40716. weight: math.unit(621, "lb"),
  40717. name: "Front",
  40718. image: {
  40719. source: "./media/characters/unmru/front.svg",
  40720. extra: 1853/1747,
  40721. bottom: 73/1926
  40722. }
  40723. },
  40724. side: {
  40725. height: math.unit(9, "feet"),
  40726. weight: math.unit(621, "lb"),
  40727. name: "Side",
  40728. image: {
  40729. source: "./media/characters/unmru/side.svg",
  40730. extra: 1781/1671,
  40731. bottom: 127/1908
  40732. }
  40733. },
  40734. back: {
  40735. height: math.unit(9, "feet"),
  40736. weight: math.unit(621, "lb"),
  40737. name: "Back",
  40738. image: {
  40739. source: "./media/characters/unmru/back.svg",
  40740. extra: 1894/1765,
  40741. bottom: 75/1969
  40742. }
  40743. },
  40744. dick: {
  40745. height: math.unit(3, "feet"),
  40746. weight: math.unit(35, "lb"),
  40747. name: "Dick",
  40748. image: {
  40749. source: "./media/characters/unmru/dick.svg"
  40750. }
  40751. },
  40752. },
  40753. [
  40754. {
  40755. name: "Normal",
  40756. height: math.unit(9, "feet")
  40757. },
  40758. {
  40759. name: "Natural",
  40760. height: math.unit(27, "feet"),
  40761. default: true
  40762. },
  40763. {
  40764. name: "Giant",
  40765. height: math.unit(90, "feet")
  40766. },
  40767. {
  40768. name: "Kaiju",
  40769. height: math.unit(270, "feet")
  40770. },
  40771. {
  40772. name: "Macro",
  40773. height: math.unit(900, "feet")
  40774. },
  40775. {
  40776. name: "Macro+",
  40777. height: math.unit(2700, "feet")
  40778. },
  40779. {
  40780. name: "Megamacro",
  40781. height: math.unit(9000, "feet")
  40782. },
  40783. {
  40784. name: "City-Crushing",
  40785. height: math.unit(27000, "feet")
  40786. },
  40787. {
  40788. name: "Mountain-Mashing",
  40789. height: math.unit(90000, "feet")
  40790. },
  40791. {
  40792. name: "Earth-Eclipsing",
  40793. height: math.unit(2.7e8, "feet")
  40794. },
  40795. {
  40796. name: "Sol-Swallowing",
  40797. height: math.unit(9e10, "feet")
  40798. },
  40799. {
  40800. name: "Majoris-Munching",
  40801. height: math.unit(2.7e13, "feet")
  40802. },
  40803. ]
  40804. ))
  40805. characterMakers.push(() => makeCharacter(
  40806. { name: "Squeaks (Mouse)", species: ["grasshopper-mouse"], tags: ["feral"] },
  40807. {
  40808. front: {
  40809. height: math.unit(1, "inch"),
  40810. name: "Front",
  40811. image: {
  40812. source: "./media/characters/squeaks-mouse/front.svg",
  40813. extra: 352/308,
  40814. bottom: 25/377
  40815. }
  40816. },
  40817. },
  40818. [
  40819. {
  40820. name: "Micro",
  40821. height: math.unit(1, "inch"),
  40822. default: true
  40823. },
  40824. ]
  40825. ))
  40826. characterMakers.push(() => makeCharacter(
  40827. { name: "Sayko", species: ["dragon"], tags: ["feral"] },
  40828. {
  40829. side: {
  40830. height: math.unit(35, "feet"),
  40831. name: "Side",
  40832. image: {
  40833. source: "./media/characters/sayko/side.svg",
  40834. extra: 1697/1021,
  40835. bottom: 82/1779
  40836. }
  40837. },
  40838. head: {
  40839. height: math.unit(16, "feet"),
  40840. name: "Head",
  40841. image: {
  40842. source: "./media/characters/sayko/head.svg"
  40843. }
  40844. },
  40845. forepaw: {
  40846. height: math.unit(7.85, "feet"),
  40847. name: "Forepaw",
  40848. image: {
  40849. source: "./media/characters/sayko/forepaw.svg"
  40850. }
  40851. },
  40852. hindpaw: {
  40853. height: math.unit(8.8, "feet"),
  40854. name: "Hindpaw",
  40855. image: {
  40856. source: "./media/characters/sayko/hindpaw.svg"
  40857. }
  40858. },
  40859. },
  40860. [
  40861. {
  40862. name: "Normal",
  40863. height: math.unit(35, "feet"),
  40864. default: true
  40865. },
  40866. {
  40867. name: "Colossus",
  40868. height: math.unit(100, "meters")
  40869. },
  40870. {
  40871. name: "\"Small\" Deity",
  40872. height: math.unit(1, "km")
  40873. },
  40874. {
  40875. name: "\"Large\" Deity",
  40876. height: math.unit(15, "km")
  40877. },
  40878. ]
  40879. ))
  40880. characterMakers.push(() => makeCharacter(
  40881. { name: "Mukiro", species: ["somali-cat"], tags: ["anthro"] },
  40882. {
  40883. front: {
  40884. height: math.unit(6, "feet"),
  40885. weight: math.unit(250, "lb"),
  40886. name: "Front",
  40887. image: {
  40888. source: "./media/characters/mukiro/front.svg",
  40889. extra: 1368/1310,
  40890. bottom: 34/1402
  40891. }
  40892. },
  40893. },
  40894. [
  40895. {
  40896. name: "Normal",
  40897. height: math.unit(6, "feet"),
  40898. default: true
  40899. },
  40900. ]
  40901. ))
  40902. characterMakers.push(() => makeCharacter(
  40903. { name: "Zeph the Tiger God", species: ["deity"], tags: ["anthro"] },
  40904. {
  40905. front: {
  40906. height: math.unit(12 + 4/12, "feet"),
  40907. name: "Front",
  40908. image: {
  40909. source: "./media/characters/zeph-the-tiger-god/front.svg",
  40910. extra: 1346/1311,
  40911. bottom: 65/1411
  40912. }
  40913. },
  40914. },
  40915. [
  40916. {
  40917. name: "Base",
  40918. height: math.unit(12 + 4/12, "feet"),
  40919. default: true
  40920. },
  40921. {
  40922. name: "Macro",
  40923. height: math.unit(150, "feet")
  40924. },
  40925. {
  40926. name: "Mega",
  40927. height: math.unit(2, "miles")
  40928. },
  40929. {
  40930. name: "Demi God",
  40931. height: math.unit(4, "AU")
  40932. },
  40933. {
  40934. name: "God Size",
  40935. height: math.unit(1, "universe")
  40936. },
  40937. ]
  40938. ))
  40939. characterMakers.push(() => makeCharacter(
  40940. { name: "Trey", species: ["minccino"], tags: ["anthro"] },
  40941. {
  40942. front: {
  40943. height: math.unit(3 + 3/12, "feet"),
  40944. weight: math.unit(88, "lb"),
  40945. name: "Front",
  40946. image: {
  40947. source: "./media/characters/trey/front.svg",
  40948. extra: 1815/1509,
  40949. bottom: 60/1875
  40950. }
  40951. },
  40952. },
  40953. [
  40954. {
  40955. name: "Normal",
  40956. height: math.unit(3 + 3/12, "feet"),
  40957. default: true
  40958. },
  40959. ]
  40960. ))
  40961. characterMakers.push(() => makeCharacter(
  40962. { name: "Adelonda", species: ["dragon"], tags: ["anthro", "feral"] },
  40963. {
  40964. front: {
  40965. height: math.unit(4, "meters"),
  40966. name: "Front",
  40967. image: {
  40968. source: "./media/characters/adelonda/front.svg",
  40969. extra: 1077/982,
  40970. bottom: 39/1116
  40971. }
  40972. },
  40973. back: {
  40974. height: math.unit(4, "meters"),
  40975. name: "Back",
  40976. image: {
  40977. source: "./media/characters/adelonda/back.svg",
  40978. extra: 1105/1003,
  40979. bottom: 25/1130
  40980. }
  40981. },
  40982. feral: {
  40983. height: math.unit(40/1.5, "meters"),
  40984. name: "Feral",
  40985. image: {
  40986. source: "./media/characters/adelonda/feral.svg",
  40987. extra: 597/271,
  40988. bottom: 387/984
  40989. }
  40990. },
  40991. },
  40992. [
  40993. {
  40994. name: "Normal",
  40995. height: math.unit(4, "meters"),
  40996. default: true
  40997. },
  40998. ]
  40999. ))
  41000. characterMakers.push(() => makeCharacter(
  41001. { name: "Acadiel", species: ["dragon"], tags: ["anthro"] },
  41002. {
  41003. front: {
  41004. height: math.unit(8 + 4/12, "feet"),
  41005. weight: math.unit(670, "lb"),
  41006. name: "Front",
  41007. image: {
  41008. source: "./media/characters/acadiel/front.svg",
  41009. extra: 1901/1595,
  41010. bottom: 142/2043
  41011. }
  41012. },
  41013. },
  41014. [
  41015. {
  41016. name: "Normal",
  41017. height: math.unit(8 + 4/12, "feet"),
  41018. default: true
  41019. },
  41020. {
  41021. name: "Macro",
  41022. height: math.unit(200, "feet")
  41023. },
  41024. ]
  41025. ))
  41026. characterMakers.push(() => makeCharacter(
  41027. { name: "Kayne Ein", species: ["dragon", "wolf"], tags: ["anthro"] },
  41028. {
  41029. front: {
  41030. height: math.unit(6 + 2/12, "feet"),
  41031. weight: math.unit(185, "lb"),
  41032. name: "Front",
  41033. image: {
  41034. source: "./media/characters/kayne-ein/front.svg",
  41035. extra: 1780/1560,
  41036. bottom: 81/1861
  41037. }
  41038. },
  41039. },
  41040. [
  41041. {
  41042. name: "Normal",
  41043. height: math.unit(6 + 2/12, "feet"),
  41044. default: true
  41045. },
  41046. {
  41047. name: "Transformation Stage",
  41048. height: math.unit(15, "feet")
  41049. },
  41050. {
  41051. name: "Macro",
  41052. height: math.unit(150, "feet")
  41053. },
  41054. {
  41055. name: "Earth's Shadow",
  41056. height: math.unit(6200, "miles")
  41057. },
  41058. {
  41059. name: "Universal Demon",
  41060. height: math.unit(28e9, "parsecs")
  41061. },
  41062. {
  41063. name: "Multiverse God",
  41064. height: math.unit(3, "multiverses")
  41065. },
  41066. ]
  41067. ))
  41068. characterMakers.push(() => makeCharacter(
  41069. { name: "Fawn", species: ["deer"], tags: ["anthro"] },
  41070. {
  41071. front: {
  41072. height: math.unit(5 + 5/12, "feet"),
  41073. name: "Front",
  41074. image: {
  41075. source: "./media/characters/fawn/front.svg",
  41076. extra: 1873/1731,
  41077. bottom: 95/1968
  41078. }
  41079. },
  41080. back: {
  41081. height: math.unit(5 + 5/12, "feet"),
  41082. name: "Back",
  41083. image: {
  41084. source: "./media/characters/fawn/back.svg",
  41085. extra: 1813/1700,
  41086. bottom: 14/1827
  41087. }
  41088. },
  41089. hoof: {
  41090. height: math.unit(1.45, "feet"),
  41091. name: "Hoof",
  41092. image: {
  41093. source: "./media/characters/fawn/hoof.svg"
  41094. }
  41095. },
  41096. },
  41097. [
  41098. {
  41099. name: "Normal",
  41100. height: math.unit(5 + 5/12, "feet"),
  41101. default: true
  41102. },
  41103. ]
  41104. ))
  41105. characterMakers.push(() => makeCharacter(
  41106. { name: "Orion", species: ["pine-marten"], tags: ["anthro"] },
  41107. {
  41108. front: {
  41109. height: math.unit(2 + 5/12, "feet"),
  41110. name: "Front",
  41111. image: {
  41112. source: "./media/characters/orion/front.svg",
  41113. extra: 1366/1304,
  41114. bottom: 43/1409
  41115. }
  41116. },
  41117. paw: {
  41118. height: math.unit(0.52, "feet"),
  41119. name: "Paw",
  41120. image: {
  41121. source: "./media/characters/orion/paw.svg"
  41122. }
  41123. },
  41124. },
  41125. [
  41126. {
  41127. name: "Normal",
  41128. height: math.unit(2 + 5/12, "feet"),
  41129. default: true
  41130. },
  41131. ]
  41132. ))
  41133. characterMakers.push(() => makeCharacter(
  41134. { name: "Vera", species: ["husky", "arcanine"], tags: ["anthro"] },
  41135. {
  41136. front: {
  41137. height: math.unit(5 + 10/12, "feet"),
  41138. name: "Front",
  41139. image: {
  41140. source: "./media/characters/vera/front.svg",
  41141. extra: 1680/1575,
  41142. bottom: 49/1729
  41143. }
  41144. },
  41145. back: {
  41146. height: math.unit(5 + 10/12, "feet"),
  41147. name: "Back",
  41148. image: {
  41149. source: "./media/characters/vera/back.svg",
  41150. extra: 1700/1588,
  41151. bottom: 18/1718
  41152. }
  41153. },
  41154. arcanine: {
  41155. height: math.unit(6 + 8/12, "feet"),
  41156. name: "Arcanine",
  41157. image: {
  41158. source: "./media/characters/vera/arcanine.svg",
  41159. extra: 1590/1511,
  41160. bottom: 71/1661
  41161. }
  41162. },
  41163. maw: {
  41164. height: math.unit(0.82, "feet"),
  41165. name: "Maw",
  41166. image: {
  41167. source: "./media/characters/vera/maw.svg"
  41168. }
  41169. },
  41170. mawArcanine: {
  41171. height: math.unit(0.97, "feet"),
  41172. name: "Maw (Arcanine)",
  41173. image: {
  41174. source: "./media/characters/vera/maw-arcanine.svg"
  41175. }
  41176. },
  41177. paw: {
  41178. height: math.unit(0.75, "feet"),
  41179. name: "Paw",
  41180. image: {
  41181. source: "./media/characters/vera/paw.svg"
  41182. }
  41183. },
  41184. pawprint: {
  41185. height: math.unit(0.52, "feet"),
  41186. name: "Pawprint",
  41187. image: {
  41188. source: "./media/characters/vera/pawprint.svg"
  41189. }
  41190. },
  41191. },
  41192. [
  41193. {
  41194. name: "Normal",
  41195. height: math.unit(5 + 10/12, "feet"),
  41196. default: true
  41197. },
  41198. {
  41199. name: "Macro",
  41200. height: math.unit(75, "feet")
  41201. },
  41202. ]
  41203. ))
  41204. characterMakers.push(() => makeCharacter(
  41205. { name: "Orvan Rabbit", species: ["rabbit"], tags: ["anthro"] },
  41206. {
  41207. front: {
  41208. height: math.unit(4, "feet"),
  41209. weight: math.unit(40, "lb"),
  41210. name: "Front",
  41211. image: {
  41212. source: "./media/characters/orvan-rabbit/front.svg",
  41213. extra: 1896/1642,
  41214. bottom: 29/1925
  41215. }
  41216. },
  41217. },
  41218. [
  41219. {
  41220. name: "Normal",
  41221. height: math.unit(4, "feet"),
  41222. default: true
  41223. },
  41224. ]
  41225. ))
  41226. characterMakers.push(() => makeCharacter(
  41227. { name: "Lisa", species: ["fox", "deity", "caribou", "kitsune"], tags: ["anthro"] },
  41228. {
  41229. front: {
  41230. height: math.unit(6, "feet"),
  41231. weight: math.unit(168, "lb"),
  41232. name: "Front",
  41233. image: {
  41234. source: "./media/characters/lisa/front.svg",
  41235. extra: 2065/1867,
  41236. bottom: 46/2111
  41237. }
  41238. },
  41239. back: {
  41240. height: math.unit(6, "feet"),
  41241. weight: math.unit(168, "lb"),
  41242. name: "Back",
  41243. image: {
  41244. source: "./media/characters/lisa/back.svg",
  41245. extra: 1982/1838,
  41246. bottom: 29/2011
  41247. }
  41248. },
  41249. maw: {
  41250. height: math.unit(0.81, "feet"),
  41251. name: "Maw",
  41252. image: {
  41253. source: "./media/characters/lisa/maw.svg"
  41254. }
  41255. },
  41256. paw: {
  41257. height: math.unit(0.9, "feet"),
  41258. name: "Paw",
  41259. image: {
  41260. source: "./media/characters/lisa/paw.svg"
  41261. }
  41262. },
  41263. caribousune: {
  41264. height: math.unit(7 + 2/12, "feet"),
  41265. weight: math.unit(268, "lb"),
  41266. name: "Caribousune",
  41267. image: {
  41268. source: "./media/characters/lisa/caribousune.svg",
  41269. extra: 1843/1633,
  41270. bottom: 29/1872
  41271. }
  41272. },
  41273. frontCaribousune: {
  41274. height: math.unit(7 + 2/12, "feet"),
  41275. weight: math.unit(268, "lb"),
  41276. name: "Front (Caribousune)",
  41277. image: {
  41278. source: "./media/characters/lisa/front-caribousune.svg",
  41279. extra: 1818/1638,
  41280. bottom: 52/1870
  41281. }
  41282. },
  41283. sideCaribousune: {
  41284. height: math.unit(7 + 2/12, "feet"),
  41285. weight: math.unit(268, "lb"),
  41286. name: "Side (Caribousune)",
  41287. image: {
  41288. source: "./media/characters/lisa/side-caribousune.svg",
  41289. extra: 1851/1635,
  41290. bottom: 16/1867
  41291. }
  41292. },
  41293. backCaribousune: {
  41294. height: math.unit(7 + 2/12, "feet"),
  41295. weight: math.unit(268, "lb"),
  41296. name: "Back (Caribousune)",
  41297. image: {
  41298. source: "./media/characters/lisa/back-caribousune.svg",
  41299. extra: 1801/1604,
  41300. bottom: 44/1845
  41301. }
  41302. },
  41303. caribou: {
  41304. height: math.unit(7 + 2/12, "feet"),
  41305. weight: math.unit(268, "lb"),
  41306. name: "Caribou",
  41307. image: {
  41308. source: "./media/characters/lisa/caribou.svg",
  41309. extra: 1843/1633,
  41310. bottom: 29/1872
  41311. }
  41312. },
  41313. frontCaribou: {
  41314. height: math.unit(7 + 2/12, "feet"),
  41315. weight: math.unit(268, "lb"),
  41316. name: "Front (Caribou)",
  41317. image: {
  41318. source: "./media/characters/lisa/front-caribou.svg",
  41319. extra: 1818/1638,
  41320. bottom: 52/1870
  41321. }
  41322. },
  41323. sideCaribou: {
  41324. height: math.unit(7 + 2/12, "feet"),
  41325. weight: math.unit(268, "lb"),
  41326. name: "Side (Caribou)",
  41327. image: {
  41328. source: "./media/characters/lisa/side-caribou.svg",
  41329. extra: 1851/1635,
  41330. bottom: 16/1867
  41331. }
  41332. },
  41333. backCaribou: {
  41334. height: math.unit(7 + 2/12, "feet"),
  41335. weight: math.unit(268, "lb"),
  41336. name: "Back (Caribou)",
  41337. image: {
  41338. source: "./media/characters/lisa/back-caribou.svg",
  41339. extra: 1801/1604,
  41340. bottom: 44/1845
  41341. }
  41342. },
  41343. mawCaribou: {
  41344. height: math.unit(1.45, "feet"),
  41345. name: "Maw (Caribou)",
  41346. image: {
  41347. source: "./media/characters/lisa/maw-caribou.svg"
  41348. }
  41349. },
  41350. mawCaribousune: {
  41351. height: math.unit(1.45, "feet"),
  41352. name: "Maw (Caribousune)",
  41353. image: {
  41354. source: "./media/characters/lisa/maw-caribousune.svg"
  41355. }
  41356. },
  41357. pawCaribousune: {
  41358. height: math.unit(1.61, "feet"),
  41359. name: "Paw (Caribou)",
  41360. image: {
  41361. source: "./media/characters/lisa/paw-caribousune.svg"
  41362. }
  41363. },
  41364. },
  41365. [
  41366. {
  41367. name: "Normal",
  41368. height: math.unit(6, "feet")
  41369. },
  41370. {
  41371. name: "God Size",
  41372. height: math.unit(72, "feet"),
  41373. default: true
  41374. },
  41375. {
  41376. name: "Towering",
  41377. height: math.unit(288, "feet")
  41378. },
  41379. {
  41380. name: "City Size",
  41381. height: math.unit(48384, "feet")
  41382. },
  41383. {
  41384. name: "Continental",
  41385. height: math.unit(4200, "miles")
  41386. },
  41387. {
  41388. name: "Planet Eater",
  41389. height: math.unit(42, "earths")
  41390. },
  41391. {
  41392. name: "Star Swallower",
  41393. height: math.unit(42, "solarradii")
  41394. },
  41395. {
  41396. name: "System Swallower",
  41397. height: math.unit(84000, "AU")
  41398. },
  41399. {
  41400. name: "Galaxy Gobbler",
  41401. height: math.unit(42, "galaxies")
  41402. },
  41403. {
  41404. name: "Universe Devourer",
  41405. height: math.unit(42, "universes")
  41406. },
  41407. {
  41408. name: "Multiverse Muncher",
  41409. height: math.unit(42, "multiverses")
  41410. },
  41411. ]
  41412. ))
  41413. characterMakers.push(() => makeCharacter(
  41414. { name: "Shadow (Rat)", species: ["rat"], tags: ["anthro"] },
  41415. {
  41416. front: {
  41417. height: math.unit(36, "feet"),
  41418. name: "Front",
  41419. image: {
  41420. source: "./media/characters/shadow-rat/front.svg",
  41421. extra: 1845/1758,
  41422. bottom: 83/1928
  41423. }
  41424. },
  41425. },
  41426. [
  41427. {
  41428. name: "Macro",
  41429. height: math.unit(36, "feet"),
  41430. default: true
  41431. },
  41432. ]
  41433. ))
  41434. characterMakers.push(() => makeCharacter(
  41435. { name: "Torallia", species: ["cobra", "demon"], tags: ["naga"] },
  41436. {
  41437. side: {
  41438. height: math.unit(8, "feet"),
  41439. weight: math.unit(2630, "lb"),
  41440. name: "Side",
  41441. image: {
  41442. source: "./media/characters/torallia/side.svg",
  41443. extra: 2164/2021,
  41444. bottom: 371/2535
  41445. }
  41446. },
  41447. },
  41448. [
  41449. {
  41450. name: "Mortal Interaction",
  41451. height: math.unit(8, "feet")
  41452. },
  41453. {
  41454. name: "Natural",
  41455. height: math.unit(24, "feet"),
  41456. default: true
  41457. },
  41458. {
  41459. name: "Giant",
  41460. height: math.unit(80, "feet")
  41461. },
  41462. {
  41463. name: "Kaiju",
  41464. height: math.unit(240, "feet")
  41465. },
  41466. {
  41467. name: "Macro",
  41468. height: math.unit(800, "feet")
  41469. },
  41470. {
  41471. name: "Macro+",
  41472. height: math.unit(2400, "feet")
  41473. },
  41474. {
  41475. name: "Macro++",
  41476. height: math.unit(8000, "feet")
  41477. },
  41478. {
  41479. name: "City-Crushing",
  41480. height: math.unit(24000, "feet")
  41481. },
  41482. {
  41483. name: "Mountain-Mashing",
  41484. height: math.unit(80000, "feet")
  41485. },
  41486. {
  41487. name: "District Demolisher",
  41488. height: math.unit(240000, "feet")
  41489. },
  41490. {
  41491. name: "Tri-County Terror",
  41492. height: math.unit(800000, "feet")
  41493. },
  41494. {
  41495. name: "State Smasher",
  41496. height: math.unit(2.4e6, "feet")
  41497. },
  41498. {
  41499. name: "Nation Nemesis",
  41500. height: math.unit(8e6, "feet")
  41501. },
  41502. {
  41503. name: "Continent Cracker",
  41504. height: math.unit(2.4e7, "feet")
  41505. },
  41506. {
  41507. name: "Planet-Pillaging",
  41508. height: math.unit(8e7, "feet")
  41509. },
  41510. {
  41511. name: "Earth-Eclipsing",
  41512. height: math.unit(2.4e8, "feet")
  41513. },
  41514. {
  41515. name: "Jovian-Jostling",
  41516. height: math.unit(8e8, "feet")
  41517. },
  41518. {
  41519. name: "Gas Giant Gulper",
  41520. height: math.unit(2.4e9, "feet")
  41521. },
  41522. {
  41523. name: "Astral Annihilator",
  41524. height: math.unit(8e9, "feet")
  41525. },
  41526. {
  41527. name: "Celestial Conqueror",
  41528. height: math.unit(2.4e10, "feet")
  41529. },
  41530. {
  41531. name: "Sol-Swallowing",
  41532. height: math.unit(8e10, "feet")
  41533. },
  41534. {
  41535. name: "Hunter of the Heavens",
  41536. height: math.unit(2.4e13, "feet")
  41537. },
  41538. ]
  41539. ))
  41540. characterMakers.push(() => makeCharacter(
  41541. { name: "Rebecca Pawlson", species: ["fennec-fox"], tags: ["anthro"] },
  41542. {
  41543. front: {
  41544. height: math.unit(10, "feet"),
  41545. weight: math.unit(844, "kilograms"),
  41546. name: "Front",
  41547. image: {
  41548. source: "./media/characters/rebecca-pawlson/front.svg",
  41549. extra: 1196/1099,
  41550. bottom: 81/1277
  41551. },
  41552. extraAttributes: {
  41553. "pawSize": {
  41554. name: "Paw Size",
  41555. power: 2,
  41556. type: "area",
  41557. base: math.unit(0.2 * 0.375, "meters^2")
  41558. },
  41559. "handSize": {
  41560. name: "Hand Size",
  41561. power: 2,
  41562. type: "area",
  41563. base: math.unit(0.2 * 0.35, "meters^2")
  41564. },
  41565. "breastDiameter": {
  41566. name: "Breast Diameter",
  41567. power: 1,
  41568. type: "length",
  41569. base: math.unit(0.5, "meters")
  41570. },
  41571. "breastVolume": {
  41572. name: "Breast Volume",
  41573. power: 3,
  41574. type: "volume",
  41575. base: math.unit(0.065, "m^3")
  41576. },
  41577. "breastMass": {
  41578. name: "Breast Mass",
  41579. power: 3,
  41580. type: "mass",
  41581. base: math.unit(65, "kg")
  41582. },
  41583. "nippleDiameter": {
  41584. name: "Nipple Diameter",
  41585. power: 1,
  41586. type: "length",
  41587. base: math.unit(0.1, "meters")
  41588. },
  41589. }
  41590. },
  41591. back: {
  41592. height: math.unit(10, "feet"),
  41593. weight: math.unit(844, "kilograms"),
  41594. name: "Back",
  41595. image: {
  41596. source: "./media/characters/rebecca-pawlson/back.svg",
  41597. extra: 879/776,
  41598. bottom: 43/922
  41599. },
  41600. extraAttributes: {
  41601. "pawSize": {
  41602. name: "Paw Size",
  41603. power: 2,
  41604. type: "area",
  41605. base: math.unit(0.2 * 0.375, "meters^2")
  41606. },
  41607. "handSize": {
  41608. name: "Hand Size",
  41609. power: 2,
  41610. type: "area",
  41611. base: math.unit(0.2 * 0.35, "meters^2")
  41612. },
  41613. "breastDiameter": {
  41614. name: "Breast Diameter",
  41615. power: 1,
  41616. type: "length",
  41617. base: math.unit(0.5, "meters")
  41618. },
  41619. "breastVolume": {
  41620. name: "Breast Volume",
  41621. power: 3,
  41622. type: "volume",
  41623. base: math.unit(0.065, "m^3")
  41624. },
  41625. "breastMass": {
  41626. name: "Breast Mass",
  41627. power: 3,
  41628. type: "mass",
  41629. base: math.unit(65, "kg")
  41630. },
  41631. "nippleDiameter": {
  41632. name: "Nipple Diameter",
  41633. power: 1,
  41634. type: "length",
  41635. base: math.unit(0.1, "meters")
  41636. },
  41637. }
  41638. },
  41639. },
  41640. [
  41641. {
  41642. name: "Normal",
  41643. height: math.unit(6 + 8/12, "feet")
  41644. },
  41645. {
  41646. name: "Mini Macro",
  41647. height: math.unit(10, "feet"),
  41648. default: true
  41649. },
  41650. {
  41651. name: "Macro",
  41652. height: math.unit(100, "feet")
  41653. },
  41654. {
  41655. name: "Mega Macro",
  41656. height: math.unit(2500, "feet")
  41657. },
  41658. {
  41659. name: "Giga Macro",
  41660. height: math.unit(50, "miles")
  41661. },
  41662. ]
  41663. ))
  41664. characterMakers.push(() => makeCharacter(
  41665. { name: "Moxie Nova", species: ["dragon", "cat"], tags: ["anthro"] },
  41666. {
  41667. front: {
  41668. height: math.unit(7 + 6/12, "feet"),
  41669. weight: math.unit(600, "lb"),
  41670. name: "Front",
  41671. image: {
  41672. source: "./media/characters/moxie-nova/front.svg",
  41673. extra: 1734/1652,
  41674. bottom: 41/1775
  41675. }
  41676. },
  41677. },
  41678. [
  41679. {
  41680. name: "Normal",
  41681. height: math.unit(7 + 6/12, "feet"),
  41682. default: true
  41683. },
  41684. ]
  41685. ))
  41686. characterMakers.push(() => makeCharacter(
  41687. { name: "Tiffany", species: ["fox", "raccoon"], tags: ["anthro"] },
  41688. {
  41689. goat: {
  41690. height: math.unit(4, "feet"),
  41691. weight: math.unit(180, "lb"),
  41692. name: "Goat",
  41693. image: {
  41694. source: "./media/characters/tiffany/goat.svg",
  41695. extra: 1845/1595,
  41696. bottom: 106/1951
  41697. }
  41698. },
  41699. front: {
  41700. height: math.unit(5, "feet"),
  41701. weight: math.unit(150, "lb"),
  41702. name: "Foxcoon",
  41703. image: {
  41704. source: "./media/characters/tiffany/foxcoon.svg",
  41705. extra: 1941/1845,
  41706. bottom: 58/1999
  41707. }
  41708. },
  41709. },
  41710. [
  41711. {
  41712. name: "Normal",
  41713. height: math.unit(5, "feet"),
  41714. default: true
  41715. },
  41716. ]
  41717. ))
  41718. characterMakers.push(() => makeCharacter(
  41719. { name: "Raxinath", species: ["dragon"], tags: ["anthro"] },
  41720. {
  41721. front: {
  41722. height: math.unit(8, "feet"),
  41723. weight: math.unit(300, "lb"),
  41724. name: "Front",
  41725. image: {
  41726. source: "./media/characters/raxinath/front.svg",
  41727. extra: 1407/1309,
  41728. bottom: 39/1446
  41729. }
  41730. },
  41731. back: {
  41732. height: math.unit(8, "feet"),
  41733. weight: math.unit(300, "lb"),
  41734. name: "Back",
  41735. image: {
  41736. source: "./media/characters/raxinath/back.svg",
  41737. extra: 1405/1315,
  41738. bottom: 9/1414
  41739. }
  41740. },
  41741. },
  41742. [
  41743. {
  41744. name: "Speck",
  41745. height: math.unit(0.5, "nm")
  41746. },
  41747. {
  41748. name: "Micro",
  41749. height: math.unit(3, "inches")
  41750. },
  41751. {
  41752. name: "Kobold",
  41753. height: math.unit(3, "feet")
  41754. },
  41755. {
  41756. name: "Normal",
  41757. height: math.unit(8, "feet"),
  41758. default: true
  41759. },
  41760. {
  41761. name: "Giant",
  41762. height: math.unit(50, "feet")
  41763. },
  41764. {
  41765. name: "Macro",
  41766. height: math.unit(1000, "feet")
  41767. },
  41768. {
  41769. name: "Megamacro",
  41770. height: math.unit(1, "mile")
  41771. },
  41772. ]
  41773. ))
  41774. characterMakers.push(() => makeCharacter(
  41775. { name: "Mal (Dragon)", species: ["dragon", "deity"], tags: ["anthro"] },
  41776. {
  41777. front: {
  41778. height: math.unit(10, "feet"),
  41779. weight: math.unit(1442, "lb"),
  41780. name: "Front",
  41781. image: {
  41782. source: "./media/characters/mal-dragon/front.svg",
  41783. extra: 1515/1444,
  41784. bottom: 113/1628
  41785. }
  41786. },
  41787. back: {
  41788. height: math.unit(10, "feet"),
  41789. weight: math.unit(1442, "lb"),
  41790. name: "Back",
  41791. image: {
  41792. source: "./media/characters/mal-dragon/back.svg",
  41793. extra: 1527/1434,
  41794. bottom: 25/1552
  41795. }
  41796. },
  41797. },
  41798. [
  41799. {
  41800. name: "Mortal Interaction",
  41801. height: math.unit(10, "feet"),
  41802. default: true
  41803. },
  41804. {
  41805. name: "Large",
  41806. height: math.unit(30, "feet")
  41807. },
  41808. {
  41809. name: "Kaiju",
  41810. height: math.unit(300, "feet")
  41811. },
  41812. {
  41813. name: "Megamacro",
  41814. height: math.unit(10000, "feet")
  41815. },
  41816. {
  41817. name: "Continent Cracker",
  41818. height: math.unit(30000000, "feet")
  41819. },
  41820. {
  41821. name: "Sol-Swallowing",
  41822. height: math.unit(1e11, "feet")
  41823. },
  41824. {
  41825. name: "Light Universal",
  41826. height: math.unit(5, "universes")
  41827. },
  41828. {
  41829. name: "Universe Atoms",
  41830. height: math.unit(1.829e9, "universes")
  41831. },
  41832. {
  41833. name: "Light Multiversal",
  41834. height: math.unit(5, "multiverses")
  41835. },
  41836. {
  41837. name: "Multiverse Atoms",
  41838. height: math.unit(1.829e9, "multiverses")
  41839. },
  41840. {
  41841. name: "Fabric of Time",
  41842. height: math.unit(1e262, "multiverses")
  41843. },
  41844. ]
  41845. ))
  41846. characterMakers.push(() => makeCharacter(
  41847. { name: "Tabitha", species: ["mouse", "cat"], tags: ["anthro"] },
  41848. {
  41849. front: {
  41850. height: math.unit(9, "feet"),
  41851. weight: math.unit(1050, "lb"),
  41852. name: "Front",
  41853. image: {
  41854. source: "./media/characters/tabitha/front.svg",
  41855. extra: 2083/1994,
  41856. bottom: 68/2151
  41857. }
  41858. },
  41859. },
  41860. [
  41861. {
  41862. name: "Baseline",
  41863. height: math.unit(9, "feet"),
  41864. default: true
  41865. },
  41866. {
  41867. name: "Giant",
  41868. height: math.unit(90, "feet")
  41869. },
  41870. {
  41871. name: "Macro",
  41872. height: math.unit(900, "feet")
  41873. },
  41874. {
  41875. name: "Megamacro",
  41876. height: math.unit(9000, "feet")
  41877. },
  41878. {
  41879. name: "City-Crushing",
  41880. height: math.unit(27000, "feet")
  41881. },
  41882. {
  41883. name: "Mountain-Mashing",
  41884. height: math.unit(90000, "feet")
  41885. },
  41886. {
  41887. name: "Nation Nemesis",
  41888. height: math.unit(9e6, "feet")
  41889. },
  41890. {
  41891. name: "Continent Cracker",
  41892. height: math.unit(27e6, "feet")
  41893. },
  41894. {
  41895. name: "Earth-Eclipsing",
  41896. height: math.unit(2.7e8, "feet")
  41897. },
  41898. {
  41899. name: "Gas Giant Gulper",
  41900. height: math.unit(2.7e9, "feet")
  41901. },
  41902. {
  41903. name: "Sol-Swallowing",
  41904. height: math.unit(9e10, "feet")
  41905. },
  41906. {
  41907. name: "Galaxy Gulper",
  41908. height: math.unit(9, "galaxies")
  41909. },
  41910. {
  41911. name: "Cosmos Churner",
  41912. height: math.unit(9, "universes")
  41913. },
  41914. ]
  41915. ))
  41916. characterMakers.push(() => makeCharacter(
  41917. { name: "Tow", species: ["cat"], tags: ["anthro"] },
  41918. {
  41919. front: {
  41920. height: math.unit(160, "cm"),
  41921. weight: math.unit(55, "kg"),
  41922. name: "Front",
  41923. image: {
  41924. source: "./media/characters/tow/front.svg",
  41925. extra: 1751/1722,
  41926. bottom: 74/1825
  41927. }
  41928. },
  41929. },
  41930. [
  41931. {
  41932. name: "Norm",
  41933. height: math.unit(160, "cm")
  41934. },
  41935. {
  41936. name: "Casual",
  41937. height: math.unit(3200, "m"),
  41938. default: true
  41939. },
  41940. {
  41941. name: "Show-Off",
  41942. height: math.unit(160, "km")
  41943. },
  41944. ]
  41945. ))
  41946. characterMakers.push(() => makeCharacter(
  41947. { name: "Vivian (Ocra Dragon)", species: ["dragon", "orca"], tags: ["anthro", "goo"] },
  41948. {
  41949. front: {
  41950. height: math.unit(7 + 11/12, "feet"),
  41951. weight: math.unit(342.8, "lb"),
  41952. name: "Front",
  41953. image: {
  41954. source: "./media/characters/vivian-orca-dragon/front.svg",
  41955. extra: 1890/1865,
  41956. bottom: 28/1918
  41957. }
  41958. },
  41959. },
  41960. [
  41961. {
  41962. name: "Micro",
  41963. height: math.unit(5, "inches")
  41964. },
  41965. {
  41966. name: "Normal",
  41967. height: math.unit(7 + 11/12, "feet"),
  41968. default: true
  41969. },
  41970. {
  41971. name: "Macro",
  41972. height: math.unit(395 + 7/12, "feet")
  41973. },
  41974. ]
  41975. ))
  41976. characterMakers.push(() => makeCharacter(
  41977. { name: "Lotherakon", species: ["hellhound", "deity"], tags: ["anthro"] },
  41978. {
  41979. side: {
  41980. height: math.unit(10, "feet"),
  41981. weight: math.unit(1442, "lb"),
  41982. name: "Side",
  41983. image: {
  41984. source: "./media/characters/lotherakon/side.svg",
  41985. extra: 1604/1497,
  41986. bottom: 89/1693
  41987. }
  41988. },
  41989. },
  41990. [
  41991. {
  41992. name: "Mortal Interaction",
  41993. height: math.unit(10, "feet")
  41994. },
  41995. {
  41996. name: "Large",
  41997. height: math.unit(30, "feet"),
  41998. default: true
  41999. },
  42000. {
  42001. name: "Giant",
  42002. height: math.unit(100, "feet")
  42003. },
  42004. {
  42005. name: "Kaiju",
  42006. height: math.unit(300, "feet")
  42007. },
  42008. {
  42009. name: "Macro",
  42010. height: math.unit(1000, "feet")
  42011. },
  42012. {
  42013. name: "Macro+",
  42014. height: math.unit(3000, "feet")
  42015. },
  42016. {
  42017. name: "Megamacro",
  42018. height: math.unit(10000, "feet")
  42019. },
  42020. {
  42021. name: "City-Crushing",
  42022. height: math.unit(30000, "feet")
  42023. },
  42024. {
  42025. name: "Continent Cracker",
  42026. height: math.unit(30e6, "feet")
  42027. },
  42028. {
  42029. name: "Earth Eclipsing",
  42030. height: math.unit(3e8, "feet")
  42031. },
  42032. {
  42033. name: "Gas Giant Gulper",
  42034. height: math.unit(3e9, "feet")
  42035. },
  42036. {
  42037. name: "Sol-Swallowing",
  42038. height: math.unit(1e11, "feet")
  42039. },
  42040. {
  42041. name: "System Swallower",
  42042. height: math.unit(3e14, "feet")
  42043. },
  42044. {
  42045. name: "Galaxy Gulper",
  42046. height: math.unit(10, "galaxies")
  42047. },
  42048. {
  42049. name: "Light Universal",
  42050. height: math.unit(5, "universes")
  42051. },
  42052. {
  42053. name: "Universe Palm",
  42054. height: math.unit(20, "universes")
  42055. },
  42056. {
  42057. name: "Light Multiversal",
  42058. height: math.unit(5, "multiverses")
  42059. },
  42060. {
  42061. name: "Multiverse Palm",
  42062. height: math.unit(20, "multiverses")
  42063. },
  42064. {
  42065. name: "Inferno Incarnate",
  42066. height: math.unit(1e7, "multiverses")
  42067. },
  42068. ]
  42069. ))
  42070. characterMakers.push(() => makeCharacter(
  42071. { name: "Malithee", species: ["frog", "dragon", "deity"], tags: ["anthro"] },
  42072. {
  42073. front: {
  42074. height: math.unit(8, "feet"),
  42075. weight: math.unit(1200, "lb"),
  42076. name: "Front",
  42077. image: {
  42078. source: "./media/characters/malithee/front.svg",
  42079. extra: 1675/1640,
  42080. bottom: 162/1837
  42081. }
  42082. },
  42083. },
  42084. [
  42085. {
  42086. name: "Mortal Interaction",
  42087. height: math.unit(8, "feet"),
  42088. default: true
  42089. },
  42090. {
  42091. name: "Large",
  42092. height: math.unit(24, "feet")
  42093. },
  42094. {
  42095. name: "Kaiju",
  42096. height: math.unit(240, "feet")
  42097. },
  42098. {
  42099. name: "Megamacro",
  42100. height: math.unit(8000, "feet")
  42101. },
  42102. {
  42103. name: "Continent Cracker",
  42104. height: math.unit(24e6, "feet")
  42105. },
  42106. {
  42107. name: "Earth-Eclipsing",
  42108. height: math.unit(2.4e8, "feet")
  42109. },
  42110. {
  42111. name: "Sol-Swallowing",
  42112. height: math.unit(8e10, "feet")
  42113. },
  42114. {
  42115. name: "Galaxy Gulper",
  42116. height: math.unit(8, "galaxies")
  42117. },
  42118. {
  42119. name: "Light Universal",
  42120. height: math.unit(4, "universes")
  42121. },
  42122. {
  42123. name: "Universe Atoms",
  42124. height: math.unit(1.829e9, "universes")
  42125. },
  42126. {
  42127. name: "Light Multiversal",
  42128. height: math.unit(4, "multiverses")
  42129. },
  42130. {
  42131. name: "Multiverse Atoms",
  42132. height: math.unit(1.829e9, "multiverses")
  42133. },
  42134. {
  42135. name: "Nigh-Omnipresence",
  42136. height: math.unit(8e261, "multiverses")
  42137. },
  42138. ]
  42139. ))
  42140. characterMakers.push(() => makeCharacter(
  42141. { name: "Miles Thestia", species: ["wolf", "dog"], tags: ["anthro"] },
  42142. {
  42143. front: {
  42144. height: math.unit(10, "feet"),
  42145. weight: math.unit(1500, "lb"),
  42146. name: "Front",
  42147. image: {
  42148. source: "./media/characters/miles-thestia/front.svg",
  42149. extra: 1812/1727,
  42150. bottom: 86/1898
  42151. }
  42152. },
  42153. back: {
  42154. height: math.unit(10, "feet"),
  42155. weight: math.unit(1500, "lb"),
  42156. name: "Back",
  42157. image: {
  42158. source: "./media/characters/miles-thestia/back.svg",
  42159. extra: 1799/1690,
  42160. bottom: 47/1846
  42161. }
  42162. },
  42163. frontNsfw: {
  42164. height: math.unit(10, "feet"),
  42165. weight: math.unit(1500, "lb"),
  42166. name: "Front (NSFW)",
  42167. image: {
  42168. source: "./media/characters/miles-thestia/front-nsfw.svg",
  42169. extra: 1812/1727,
  42170. bottom: 86/1898
  42171. }
  42172. },
  42173. },
  42174. [
  42175. {
  42176. name: "Mini-Macro",
  42177. height: math.unit(10, "feet"),
  42178. default: true
  42179. },
  42180. ]
  42181. ))
  42182. characterMakers.push(() => makeCharacter(
  42183. { name: "TITAN.S.WULF", species: ["wolf"], tags: ["anthro"] },
  42184. {
  42185. front: {
  42186. height: math.unit(25, "feet"),
  42187. name: "Front",
  42188. image: {
  42189. source: "./media/characters/titan-s-wulf/front.svg",
  42190. extra: 1560/1484,
  42191. bottom: 76/1636
  42192. }
  42193. },
  42194. },
  42195. [
  42196. {
  42197. name: "Smallest",
  42198. height: math.unit(25, "feet"),
  42199. default: true
  42200. },
  42201. {
  42202. name: "Normal",
  42203. height: math.unit(200, "feet")
  42204. },
  42205. {
  42206. name: "Macro",
  42207. height: math.unit(200000, "feet")
  42208. },
  42209. {
  42210. name: "Multiversal Original",
  42211. height: math.unit(10000, "multiverses")
  42212. },
  42213. ]
  42214. ))
  42215. characterMakers.push(() => makeCharacter(
  42216. { name: "Tawendeh", species: ["otter", "deity"], tags: ["anthro"] },
  42217. {
  42218. front: {
  42219. height: math.unit(8, "feet"),
  42220. weight: math.unit(553, "lb"),
  42221. name: "Front",
  42222. image: {
  42223. source: "./media/characters/tawendeh/front.svg",
  42224. extra: 2365/2268,
  42225. bottom: 83/2448
  42226. }
  42227. },
  42228. frontClothed: {
  42229. height: math.unit(8, "feet"),
  42230. weight: math.unit(553, "lb"),
  42231. name: "Front (Clothed)",
  42232. image: {
  42233. source: "./media/characters/tawendeh/front-clothed.svg",
  42234. extra: 2365/2268,
  42235. bottom: 83/2448
  42236. }
  42237. },
  42238. back: {
  42239. height: math.unit(8, "feet"),
  42240. weight: math.unit(553, "lb"),
  42241. name: "Back",
  42242. image: {
  42243. source: "./media/characters/tawendeh/back.svg",
  42244. extra: 2397/2294,
  42245. bottom: 42/2439
  42246. }
  42247. },
  42248. },
  42249. [
  42250. {
  42251. name: "Mortal Interaction",
  42252. height: math.unit(8, "feet"),
  42253. default: true
  42254. },
  42255. {
  42256. name: "Giant",
  42257. height: math.unit(80, "feet")
  42258. },
  42259. {
  42260. name: "Macro",
  42261. height: math.unit(800, "feet")
  42262. },
  42263. {
  42264. name: "Megamacro",
  42265. height: math.unit(8000, "feet")
  42266. },
  42267. {
  42268. name: "City-Crushing",
  42269. height: math.unit(24000, "feet")
  42270. },
  42271. {
  42272. name: "Mountain-Mashing",
  42273. height: math.unit(80000, "feet")
  42274. },
  42275. {
  42276. name: "Nation Nemesis",
  42277. height: math.unit(8e6, "feet")
  42278. },
  42279. {
  42280. name: "Continent Cracker",
  42281. height: math.unit(24e6, "feet")
  42282. },
  42283. {
  42284. name: "Earth-Eclipsing",
  42285. height: math.unit(2.4e8, "feet")
  42286. },
  42287. {
  42288. name: "Gas Giant Gulper",
  42289. height: math.unit(2.4e9, "feet")
  42290. },
  42291. {
  42292. name: "Sol-Swallowing",
  42293. height: math.unit(8e10, "feet")
  42294. },
  42295. {
  42296. name: "Galaxy Gulper",
  42297. height: math.unit(8, "galaxies")
  42298. },
  42299. {
  42300. name: "Cosmos Churner",
  42301. height: math.unit(8, "universes")
  42302. },
  42303. {
  42304. name: "Omnipotent Otter",
  42305. height: math.unit(80, "universes")
  42306. },
  42307. ]
  42308. ))
  42309. characterMakers.push(() => makeCharacter(
  42310. { name: "Neesha", species: ["gnoll"], tags: ["anthro"] },
  42311. {
  42312. front: {
  42313. height: math.unit(2.6, "meters"),
  42314. weight: math.unit(900, "kg"),
  42315. name: "Front",
  42316. image: {
  42317. source: "./media/characters/neesha/front.svg",
  42318. extra: 1803/1653,
  42319. bottom: 128/1931
  42320. }
  42321. },
  42322. },
  42323. [
  42324. {
  42325. name: "Normal",
  42326. height: math.unit(2.6, "meters"),
  42327. default: true
  42328. },
  42329. {
  42330. name: "Macro",
  42331. height: math.unit(50, "meters")
  42332. },
  42333. ]
  42334. ))
  42335. characterMakers.push(() => makeCharacter(
  42336. { name: "Kyera", species: ["dragon", "mouse"], tags: ["anthro"] },
  42337. {
  42338. front: {
  42339. height: math.unit(5, "feet"),
  42340. weight: math.unit(185, "lb"),
  42341. name: "Front",
  42342. image: {
  42343. source: "./media/characters/kyera/front.svg",
  42344. extra: 1875/1790,
  42345. bottom: 96/1971
  42346. }
  42347. },
  42348. },
  42349. [
  42350. {
  42351. name: "Normal",
  42352. height: math.unit(5, "feet"),
  42353. default: true
  42354. },
  42355. ]
  42356. ))
  42357. characterMakers.push(() => makeCharacter(
  42358. { name: "Yuko", species: ["catgirl"], tags: ["anthro"] },
  42359. {
  42360. front: {
  42361. height: math.unit(7 + 6/12, "feet"),
  42362. weight: math.unit(540, "lb"),
  42363. name: "Front",
  42364. image: {
  42365. source: "./media/characters/yuko/front.svg",
  42366. extra: 1282/1222,
  42367. bottom: 101/1383
  42368. }
  42369. },
  42370. frontClothed: {
  42371. height: math.unit(7 + 6/12, "feet"),
  42372. weight: math.unit(540, "lb"),
  42373. name: "Front (Clothed)",
  42374. image: {
  42375. source: "./media/characters/yuko/front-clothed.svg",
  42376. extra: 1282/1222,
  42377. bottom: 101/1383
  42378. }
  42379. },
  42380. },
  42381. [
  42382. {
  42383. name: "Normal",
  42384. height: math.unit(7 + 6/12, "feet"),
  42385. default: true
  42386. },
  42387. {
  42388. name: "Macro",
  42389. height: math.unit(26 + 9/12, "feet")
  42390. },
  42391. {
  42392. name: "Megamacro",
  42393. height: math.unit(300, "feet")
  42394. },
  42395. {
  42396. name: "Gigamacro",
  42397. height: math.unit(5000, "feet")
  42398. },
  42399. {
  42400. name: "Planetary",
  42401. height: math.unit(10000, "miles")
  42402. },
  42403. ]
  42404. ))
  42405. characterMakers.push(() => makeCharacter(
  42406. { name: "Deam Nitrel", species: ["wolf"], tags: ["anthro"] },
  42407. {
  42408. front: {
  42409. height: math.unit(8 + 2/12, "feet"),
  42410. weight: math.unit(600, "lb"),
  42411. name: "Front",
  42412. image: {
  42413. source: "./media/characters/deam-nitrel/front.svg",
  42414. extra: 1308/1234,
  42415. bottom: 125/1433
  42416. }
  42417. },
  42418. },
  42419. [
  42420. {
  42421. name: "Normal",
  42422. height: math.unit(8 + 2/12, "feet"),
  42423. default: true
  42424. },
  42425. ]
  42426. ))
  42427. characterMakers.push(() => makeCharacter(
  42428. { name: "Skyress", species: ["dragon"], tags: ["anthro"] },
  42429. {
  42430. front: {
  42431. height: math.unit(6.1, "feet"),
  42432. weight: math.unit(180, "lb"),
  42433. name: "Front",
  42434. image: {
  42435. source: "./media/characters/skyress/front.svg",
  42436. extra: 1045/915,
  42437. bottom: 28/1073
  42438. }
  42439. },
  42440. maw: {
  42441. height: math.unit(1, "feet"),
  42442. name: "Maw",
  42443. image: {
  42444. source: "./media/characters/skyress/maw.svg"
  42445. }
  42446. },
  42447. },
  42448. [
  42449. {
  42450. name: "Normal",
  42451. height: math.unit(6.1, "feet"),
  42452. default: true
  42453. },
  42454. {
  42455. name: "Macro",
  42456. height: math.unit(200, "feet")
  42457. },
  42458. ]
  42459. ))
  42460. characterMakers.push(() => makeCharacter(
  42461. { name: "Amethyst Jones", species: ["kobold"], tags: ["anthro"] },
  42462. {
  42463. front: {
  42464. height: math.unit(4 + 2/12, "feet"),
  42465. weight: math.unit(40, "kg"),
  42466. name: "Front",
  42467. image: {
  42468. source: "./media/characters/amethyst-jones/front.svg",
  42469. extra: 1220/1150,
  42470. bottom: 101/1321
  42471. }
  42472. },
  42473. },
  42474. [
  42475. {
  42476. name: "Normal",
  42477. height: math.unit(4 + 2/12, "feet"),
  42478. default: true
  42479. },
  42480. ]
  42481. ))
  42482. characterMakers.push(() => makeCharacter(
  42483. { name: "Jade", species: ["panther", "dragon"], tags: ["anthro"] },
  42484. {
  42485. front: {
  42486. height: math.unit(1.7, "m"),
  42487. weight: math.unit(135, "lb"),
  42488. name: "Front",
  42489. image: {
  42490. source: "./media/characters/jade/front.svg",
  42491. extra: 1818/1767,
  42492. bottom: 32/1850
  42493. }
  42494. },
  42495. back: {
  42496. height: math.unit(1.7, "m"),
  42497. weight: math.unit(135, "lb"),
  42498. name: "Back",
  42499. image: {
  42500. source: "./media/characters/jade/back.svg",
  42501. extra: 1869/1809,
  42502. bottom: 35/1904
  42503. }
  42504. },
  42505. hand: {
  42506. height: math.unit(0.24, "m"),
  42507. name: "Hand",
  42508. image: {
  42509. source: "./media/characters/jade/hand.svg"
  42510. }
  42511. },
  42512. foot: {
  42513. height: math.unit(0.263, "m"),
  42514. name: "Foot",
  42515. image: {
  42516. source: "./media/characters/jade/foot.svg"
  42517. }
  42518. },
  42519. dick: {
  42520. height: math.unit(0.47, "m"),
  42521. name: "Dick",
  42522. image: {
  42523. source: "./media/characters/jade/dick.svg"
  42524. }
  42525. },
  42526. },
  42527. [
  42528. {
  42529. name: "Micro",
  42530. height: math.unit(22, "cm")
  42531. },
  42532. {
  42533. name: "Normal",
  42534. height: math.unit(1.7, "m"),
  42535. default: true
  42536. },
  42537. {
  42538. name: "Macro",
  42539. height: math.unit(152, "m")
  42540. },
  42541. ]
  42542. ))
  42543. characterMakers.push(() => makeCharacter(
  42544. { name: "Cookie", species: ["snow-leopard"], tags: ["anthro"] },
  42545. {
  42546. front: {
  42547. height: math.unit(100, "miles"),
  42548. weight: math.unit(20000, "tons"),
  42549. name: "Front",
  42550. image: {
  42551. source: "./media/characters/cookie/front.svg",
  42552. extra: 1125/1070,
  42553. bottom: 30/1155
  42554. }
  42555. },
  42556. },
  42557. [
  42558. {
  42559. name: "Big",
  42560. height: math.unit(50, "feet")
  42561. },
  42562. {
  42563. name: "Macro",
  42564. height: math.unit(100, "miles"),
  42565. default: true
  42566. },
  42567. {
  42568. name: "Megamacro",
  42569. height: math.unit(90000, "miles")
  42570. },
  42571. ]
  42572. ))
  42573. characterMakers.push(() => makeCharacter(
  42574. { name: "Farzian", species: ["folf"], tags: ["anthro"] },
  42575. {
  42576. front: {
  42577. height: math.unit(6, "feet"),
  42578. weight: math.unit(145, "lb"),
  42579. name: "Front",
  42580. image: {
  42581. source: "./media/characters/farzian/front.svg",
  42582. extra: 1902/1693,
  42583. bottom: 108/2010
  42584. }
  42585. },
  42586. },
  42587. [
  42588. {
  42589. name: "Macro",
  42590. height: math.unit(500, "feet"),
  42591. default: true
  42592. },
  42593. ]
  42594. ))
  42595. characterMakers.push(() => makeCharacter(
  42596. { name: "Kimberly Tilson", species: ["rabbit"], tags: ["anthro"] },
  42597. {
  42598. front: {
  42599. height: math.unit(3 + 6/12, "feet"),
  42600. weight: math.unit(50, "lb"),
  42601. name: "Front",
  42602. image: {
  42603. source: "./media/characters/kimberly-tilson/front.svg",
  42604. extra: 1400/1322,
  42605. bottom: 36/1436
  42606. }
  42607. },
  42608. back: {
  42609. height: math.unit(3 + 6/12, "feet"),
  42610. weight: math.unit(50, "lb"),
  42611. name: "Back",
  42612. image: {
  42613. source: "./media/characters/kimberly-tilson/back.svg",
  42614. extra: 1370/1307,
  42615. bottom: 20/1390
  42616. }
  42617. },
  42618. },
  42619. [
  42620. {
  42621. name: "Normal",
  42622. height: math.unit(3 + 6/12, "feet"),
  42623. default: true
  42624. },
  42625. ]
  42626. ))
  42627. characterMakers.push(() => makeCharacter(
  42628. { name: "Harthos", species: ["peacekeeper", "allusus"], tags: ["anthro"] },
  42629. {
  42630. front: {
  42631. height: math.unit(350, "meters"),
  42632. weight: math.unit(7.57059e+8, "lb"),
  42633. name: "Front",
  42634. image: {
  42635. source: "./media/characters/harthos/front.svg",
  42636. extra: 455/446,
  42637. bottom: 15/470
  42638. },
  42639. form: "peacekeeper",
  42640. default: true
  42641. },
  42642. allusus_front: {
  42643. height: math.unit(270, "meters"),
  42644. weight: math.unit(3.47550e+8, "lb"),
  42645. name: "Front",
  42646. image: {
  42647. source: "./media/characters/harthos/allusus-front.svg",
  42648. extra: 455/446,
  42649. bottom: 15/470
  42650. },
  42651. form: "allusus",
  42652. },
  42653. },
  42654. [
  42655. {
  42656. name: "Macro",
  42657. height: math.unit(350, "meters"),
  42658. default: true,
  42659. form: "peacekeeper"
  42660. },
  42661. {
  42662. name: "Macro",
  42663. height: math.unit(270, "meters"),
  42664. default: true,
  42665. form: "allusus"
  42666. },
  42667. ],
  42668. {
  42669. "peacekeeper": {
  42670. name: "Peacekeeper",
  42671. default: true
  42672. },
  42673. "allusus": {
  42674. name: "Allusus",
  42675. },
  42676. }
  42677. ))
  42678. characterMakers.push(() => makeCharacter(
  42679. { name: "Hypatia", species: ["gardevoir", "deity"], tags: ["anthro"] },
  42680. {
  42681. front: {
  42682. height: math.unit(15, "feet"),
  42683. name: "Front",
  42684. image: {
  42685. source: "./media/characters/hypatia/front.svg",
  42686. extra: 1653/1591,
  42687. bottom: 79/1732
  42688. }
  42689. },
  42690. },
  42691. [
  42692. {
  42693. name: "Normal",
  42694. height: math.unit(15, "feet")
  42695. },
  42696. {
  42697. name: "Small",
  42698. height: math.unit(300, "feet")
  42699. },
  42700. {
  42701. name: "Macro",
  42702. height: math.unit(2500, "feet"),
  42703. default: true
  42704. },
  42705. {
  42706. name: "Mega Macro",
  42707. height: math.unit(1500, "miles")
  42708. },
  42709. {
  42710. name: "Giga Macro",
  42711. height: math.unit(1.5e6, "miles")
  42712. },
  42713. ]
  42714. ))
  42715. characterMakers.push(() => makeCharacter(
  42716. { name: "Wulver", species: ["werewolf"], tags: ["anthro"] },
  42717. {
  42718. front: {
  42719. height: math.unit(6, "feet"),
  42720. weight: math.unit(200, "lb"),
  42721. name: "Front",
  42722. image: {
  42723. source: "./media/characters/wulver/front.svg",
  42724. extra: 1724/1632,
  42725. bottom: 130/1854
  42726. }
  42727. },
  42728. frontNsfw: {
  42729. height: math.unit(6, "feet"),
  42730. weight: math.unit(200, "lb"),
  42731. name: "Front (NSFW)",
  42732. image: {
  42733. source: "./media/characters/wulver/front-nsfw.svg",
  42734. extra: 1724/1632,
  42735. bottom: 130/1854
  42736. }
  42737. },
  42738. },
  42739. [
  42740. {
  42741. name: "Human-Sized",
  42742. height: math.unit(6, "feet")
  42743. },
  42744. {
  42745. name: "Normal",
  42746. height: math.unit(4, "meters"),
  42747. default: true
  42748. },
  42749. {
  42750. name: "Large",
  42751. height: math.unit(6, "m")
  42752. },
  42753. ]
  42754. ))
  42755. characterMakers.push(() => makeCharacter(
  42756. { name: "Maru", species: ["tiger"], tags: ["anthro"] },
  42757. {
  42758. front: {
  42759. height: math.unit(7, "feet"),
  42760. name: "Front",
  42761. image: {
  42762. source: "./media/characters/maru/front.svg",
  42763. extra: 1595/1570,
  42764. bottom: 0/1595
  42765. }
  42766. },
  42767. },
  42768. [
  42769. {
  42770. name: "Normal",
  42771. height: math.unit(7, "feet"),
  42772. default: true
  42773. },
  42774. {
  42775. name: "Macro",
  42776. height: math.unit(700, "feet")
  42777. },
  42778. {
  42779. name: "Mega Macro",
  42780. height: math.unit(25, "miles")
  42781. },
  42782. ]
  42783. ))
  42784. characterMakers.push(() => makeCharacter(
  42785. { name: "Xenon", species: ["river-otter", "wolf"], tags: ["anthro"] },
  42786. {
  42787. front: {
  42788. height: math.unit(6, "feet"),
  42789. weight: math.unit(170, "lb"),
  42790. name: "Front",
  42791. image: {
  42792. source: "./media/characters/xenon/front.svg",
  42793. extra: 1376/1305,
  42794. bottom: 56/1432
  42795. }
  42796. },
  42797. back: {
  42798. height: math.unit(6, "feet"),
  42799. weight: math.unit(170, "lb"),
  42800. name: "Back",
  42801. image: {
  42802. source: "./media/characters/xenon/back.svg",
  42803. extra: 1328/1259,
  42804. bottom: 95/1423
  42805. }
  42806. },
  42807. maw: {
  42808. height: math.unit(0.52, "feet"),
  42809. name: "Maw",
  42810. image: {
  42811. source: "./media/characters/xenon/maw.svg"
  42812. }
  42813. },
  42814. handLeft: {
  42815. height: math.unit(0.82 * 169 / 153, "feet"),
  42816. name: "Hand (Left)",
  42817. image: {
  42818. source: "./media/characters/xenon/hand-left.svg"
  42819. }
  42820. },
  42821. handRight: {
  42822. height: math.unit(0.82, "feet"),
  42823. name: "Hand (Right)",
  42824. image: {
  42825. source: "./media/characters/xenon/hand-right.svg"
  42826. }
  42827. },
  42828. footLeft: {
  42829. height: math.unit(1.13, "feet"),
  42830. name: "Foot (Left)",
  42831. image: {
  42832. source: "./media/characters/xenon/foot-left.svg"
  42833. }
  42834. },
  42835. footRight: {
  42836. height: math.unit(1.13 * 194 / 196, "feet"),
  42837. name: "Foot (Right)",
  42838. image: {
  42839. source: "./media/characters/xenon/foot-right.svg"
  42840. }
  42841. },
  42842. },
  42843. [
  42844. {
  42845. name: "Micro",
  42846. height: math.unit(0.8, "inches")
  42847. },
  42848. {
  42849. name: "Normal",
  42850. height: math.unit(6, "feet")
  42851. },
  42852. {
  42853. name: "Macro",
  42854. height: math.unit(50, "feet"),
  42855. default: true
  42856. },
  42857. {
  42858. name: "Macro+",
  42859. height: math.unit(250, "feet")
  42860. },
  42861. {
  42862. name: "Megamacro",
  42863. height: math.unit(1500, "feet")
  42864. },
  42865. ]
  42866. ))
  42867. characterMakers.push(() => makeCharacter(
  42868. { name: "Zane", species: ["wolf", "werewolf"], tags: ["anthro"] },
  42869. {
  42870. front: {
  42871. height: math.unit(7 + 5/12, "feet"),
  42872. name: "Front",
  42873. image: {
  42874. source: "./media/characters/zane/front.svg",
  42875. extra: 1260/1203,
  42876. bottom: 94/1354
  42877. }
  42878. },
  42879. back: {
  42880. height: math.unit(5.05, "feet"),
  42881. name: "Back",
  42882. image: {
  42883. source: "./media/characters/zane/back.svg",
  42884. extra: 893/829,
  42885. bottom: 30/923
  42886. }
  42887. },
  42888. werewolf: {
  42889. height: math.unit(11, "feet"),
  42890. name: "Werewolf",
  42891. image: {
  42892. source: "./media/characters/zane/werewolf.svg",
  42893. extra: 1383/1323,
  42894. bottom: 89/1472
  42895. }
  42896. },
  42897. foot: {
  42898. height: math.unit(1.46, "feet"),
  42899. name: "Foot",
  42900. image: {
  42901. source: "./media/characters/zane/foot.svg"
  42902. }
  42903. },
  42904. footFront: {
  42905. height: math.unit(0.784, "feet"),
  42906. name: "Foot (Front)",
  42907. image: {
  42908. source: "./media/characters/zane/foot-front.svg"
  42909. }
  42910. },
  42911. dick: {
  42912. height: math.unit(1.95, "feet"),
  42913. name: "Dick",
  42914. image: {
  42915. source: "./media/characters/zane/dick.svg"
  42916. }
  42917. },
  42918. dickWerewolf: {
  42919. height: math.unit(3.77, "feet"),
  42920. name: "Dick (Werewolf)",
  42921. image: {
  42922. source: "./media/characters/zane/dick.svg"
  42923. }
  42924. },
  42925. },
  42926. [
  42927. {
  42928. name: "Normal",
  42929. height: math.unit(7 + 5/12, "feet"),
  42930. default: true
  42931. },
  42932. ]
  42933. ))
  42934. characterMakers.push(() => makeCharacter(
  42935. { name: "Benni Desparque", species: ["tiger", "rabbit"], tags: ["anthro"] },
  42936. {
  42937. front: {
  42938. height: math.unit(6 + 2/12, "feet"),
  42939. weight: math.unit(284, "lb"),
  42940. name: "Front",
  42941. image: {
  42942. source: "./media/characters/benni-desparque/front.svg",
  42943. extra: 1353/1126,
  42944. bottom: 69/1422
  42945. }
  42946. },
  42947. },
  42948. [
  42949. {
  42950. name: "Civilian",
  42951. height: math.unit(6 + 2/12, "feet")
  42952. },
  42953. {
  42954. name: "Normal",
  42955. height: math.unit(98, "feet"),
  42956. default: true
  42957. },
  42958. {
  42959. name: "Kaiju Fighter",
  42960. height: math.unit(268, "feet")
  42961. },
  42962. ]
  42963. ))
  42964. characterMakers.push(() => makeCharacter(
  42965. { name: "Maxine", species: ["human"], tags: ["anthro"] },
  42966. {
  42967. front: {
  42968. height: math.unit(5, "feet"),
  42969. weight: math.unit(105, "lb"),
  42970. name: "Front",
  42971. image: {
  42972. source: "./media/characters/maxine/front.svg",
  42973. extra: 1386/1250,
  42974. bottom: 71/1457
  42975. }
  42976. },
  42977. },
  42978. [
  42979. {
  42980. name: "Normal",
  42981. height: math.unit(5, "feet"),
  42982. default: true
  42983. },
  42984. ]
  42985. ))
  42986. characterMakers.push(() => makeCharacter(
  42987. { name: "Scaly", species: ["charizard"], tags: ["anthro"] },
  42988. {
  42989. front: {
  42990. height: math.unit(11 + 7/12, "feet"),
  42991. weight: math.unit(9576, "lb"),
  42992. name: "Front",
  42993. image: {
  42994. source: "./media/characters/scaly/front.svg",
  42995. extra: 888/867,
  42996. bottom: 36/924
  42997. }
  42998. },
  42999. },
  43000. [
  43001. {
  43002. name: "Normal",
  43003. height: math.unit(11 + 7/12, "feet"),
  43004. default: true
  43005. },
  43006. ]
  43007. ))
  43008. characterMakers.push(() => makeCharacter(
  43009. { name: "Saelria", species: ["slime", "dragon"], tags: ["goo"] },
  43010. {
  43011. front: {
  43012. height: math.unit(6 + 3/12, "feet"),
  43013. name: "Front",
  43014. image: {
  43015. source: "./media/characters/saelria/front.svg",
  43016. extra: 1243/1138,
  43017. bottom: 46/1289
  43018. }
  43019. },
  43020. },
  43021. [
  43022. {
  43023. name: "Micro",
  43024. height: math.unit(6, "inches"),
  43025. },
  43026. {
  43027. name: "Normal",
  43028. height: math.unit(6 + 3/12, "feet"),
  43029. default: true
  43030. },
  43031. {
  43032. name: "Macro",
  43033. height: math.unit(25, "feet")
  43034. },
  43035. ]
  43036. ))
  43037. characterMakers.push(() => makeCharacter(
  43038. { name: "Tef", species: ["human", "deity"], tags: ["anthro"] },
  43039. {
  43040. front: {
  43041. height: math.unit(80, "meters"),
  43042. weight: math.unit(7000, "tonnes"),
  43043. name: "Front",
  43044. image: {
  43045. source: "./media/characters/tef/front.svg",
  43046. extra: 2036/1991,
  43047. bottom: 54/2090
  43048. }
  43049. },
  43050. back: {
  43051. height: math.unit(80, "meters"),
  43052. weight: math.unit(7000, "tonnes"),
  43053. name: "Back",
  43054. image: {
  43055. source: "./media/characters/tef/back.svg",
  43056. extra: 2036/1991,
  43057. bottom: 54/2090
  43058. }
  43059. },
  43060. },
  43061. [
  43062. {
  43063. name: "Macro",
  43064. height: math.unit(80, "meters"),
  43065. default: true
  43066. },
  43067. ]
  43068. ))
  43069. characterMakers.push(() => makeCharacter(
  43070. { name: "Rover", species: ["mouse"], tags: ["anthro"] },
  43071. {
  43072. front: {
  43073. height: math.unit(13, "feet"),
  43074. weight: math.unit(6, "tons"),
  43075. name: "Front",
  43076. image: {
  43077. source: "./media/characters/rover/front.svg",
  43078. extra: 1233/1156,
  43079. bottom: 50/1283
  43080. }
  43081. },
  43082. back: {
  43083. height: math.unit(13, "feet"),
  43084. weight: math.unit(6, "tons"),
  43085. name: "Back",
  43086. image: {
  43087. source: "./media/characters/rover/back.svg",
  43088. extra: 1327/1258,
  43089. bottom: 39/1366
  43090. }
  43091. },
  43092. },
  43093. [
  43094. {
  43095. name: "Normal",
  43096. height: math.unit(13, "feet"),
  43097. default: true
  43098. },
  43099. {
  43100. name: "Macro",
  43101. height: math.unit(1300, "feet")
  43102. },
  43103. {
  43104. name: "Megamacro",
  43105. height: math.unit(1300, "miles")
  43106. },
  43107. {
  43108. name: "Gigamacro",
  43109. height: math.unit(1300000, "miles")
  43110. },
  43111. ]
  43112. ))
  43113. characterMakers.push(() => makeCharacter(
  43114. { name: "Ariz", species: ["peacekeeper"], tags: ["anthro"] },
  43115. {
  43116. front: {
  43117. height: math.unit(10, "feet"),
  43118. weight: math.unit(500, "lb"),
  43119. name: "Front",
  43120. image: {
  43121. source: "./media/characters/ariz/front.svg",
  43122. extra: 461/450,
  43123. bottom: 16/477
  43124. }
  43125. },
  43126. },
  43127. [
  43128. {
  43129. name: "MiniMacro",
  43130. height: math.unit(10, "feet"),
  43131. default: true
  43132. },
  43133. ]
  43134. ))
  43135. characterMakers.push(() => makeCharacter(
  43136. { name: "Sigrun", species: ["peacekeeper"], tags: ["anthro"] },
  43137. {
  43138. front: {
  43139. height: math.unit(6, "feet"),
  43140. weight: math.unit(140, "lb"),
  43141. name: "Front",
  43142. image: {
  43143. source: "./media/characters/sigrun/front.svg",
  43144. extra: 1418/1359,
  43145. bottom: 27/1445
  43146. }
  43147. },
  43148. },
  43149. [
  43150. {
  43151. name: "Macro",
  43152. height: math.unit(35, "feet"),
  43153. default: true
  43154. },
  43155. ]
  43156. ))
  43157. characterMakers.push(() => makeCharacter(
  43158. { name: "Numin", species: ["peacekeeper"], tags: ["anthro"] },
  43159. {
  43160. front: {
  43161. height: math.unit(6, "feet"),
  43162. weight: math.unit(150, "lb"),
  43163. name: "Front",
  43164. image: {
  43165. source: "./media/characters/numin/front.svg",
  43166. extra: 1433/1388,
  43167. bottom: 12/1445
  43168. }
  43169. },
  43170. },
  43171. [
  43172. {
  43173. name: "Macro",
  43174. height: math.unit(21.5, "km"),
  43175. default: true
  43176. },
  43177. ]
  43178. ))
  43179. characterMakers.push(() => makeCharacter(
  43180. { name: "Melwa", species: ["kaiju"], tags: ["anthro"] },
  43181. {
  43182. front: {
  43183. height: math.unit(6, "feet"),
  43184. weight: math.unit(463, "lb"),
  43185. name: "Front",
  43186. image: {
  43187. source: "./media/characters/melwa/front.svg",
  43188. extra: 1307/1248,
  43189. bottom: 93/1400
  43190. }
  43191. },
  43192. },
  43193. [
  43194. {
  43195. name: "Macro",
  43196. height: math.unit(50, "meters"),
  43197. default: true
  43198. },
  43199. ]
  43200. ))
  43201. characterMakers.push(() => makeCharacter(
  43202. { name: "Zorkaiju", species: ["kaiju", "cat"], tags: ["anthro"] },
  43203. {
  43204. front: {
  43205. height: math.unit(325, "feet"),
  43206. name: "Front",
  43207. image: {
  43208. source: "./media/characters/zorkaiju/front.svg",
  43209. extra: 1955/1814,
  43210. bottom: 40/1995
  43211. }
  43212. },
  43213. frontExtended: {
  43214. height: math.unit(325, "feet"),
  43215. name: "Front (Extended)",
  43216. image: {
  43217. source: "./media/characters/zorkaiju/front-extended.svg",
  43218. extra: 1955/1814,
  43219. bottom: 40/1995
  43220. }
  43221. },
  43222. side: {
  43223. height: math.unit(325, "feet"),
  43224. name: "Side",
  43225. image: {
  43226. source: "./media/characters/zorkaiju/side.svg",
  43227. extra: 1495/1396,
  43228. bottom: 17/1512
  43229. }
  43230. },
  43231. sideExtended: {
  43232. height: math.unit(325, "feet"),
  43233. name: "Side (Extended)",
  43234. image: {
  43235. source: "./media/characters/zorkaiju/side-extended.svg",
  43236. extra: 1495/1396,
  43237. bottom: 17/1512
  43238. }
  43239. },
  43240. back: {
  43241. height: math.unit(325, "feet"),
  43242. name: "Back",
  43243. image: {
  43244. source: "./media/characters/zorkaiju/back.svg",
  43245. extra: 1959/1821,
  43246. bottom: 31/1990
  43247. }
  43248. },
  43249. backExtended: {
  43250. height: math.unit(325, "feet"),
  43251. name: "Back (Extended)",
  43252. image: {
  43253. source: "./media/characters/zorkaiju/back-extended.svg",
  43254. extra: 1959/1821,
  43255. bottom: 31/1990
  43256. }
  43257. },
  43258. hand: {
  43259. height: math.unit(58.4, "feet"),
  43260. name: "Hand",
  43261. image: {
  43262. source: "./media/characters/zorkaiju/hand.svg"
  43263. }
  43264. },
  43265. handExtended: {
  43266. height: math.unit(61.4, "feet"),
  43267. name: "Hand (Extended)",
  43268. image: {
  43269. source: "./media/characters/zorkaiju/hand-extended.svg"
  43270. }
  43271. },
  43272. foot: {
  43273. height: math.unit(95, "feet"),
  43274. name: "Foot",
  43275. image: {
  43276. source: "./media/characters/zorkaiju/foot.svg"
  43277. }
  43278. },
  43279. leftArm: {
  43280. height: math.unit(59, "feet"),
  43281. name: "Left Arm",
  43282. image: {
  43283. source: "./media/characters/zorkaiju/left-arm.svg"
  43284. }
  43285. },
  43286. rightArm: {
  43287. height: math.unit(59, "feet"),
  43288. name: "Right Arm",
  43289. image: {
  43290. source: "./media/characters/zorkaiju/right-arm.svg"
  43291. }
  43292. },
  43293. leftArmExtended: {
  43294. height: math.unit(59 * 1.033546, "feet"),
  43295. name: "Left Arm (Extended)",
  43296. image: {
  43297. source: "./media/characters/zorkaiju/left-arm-extended.svg"
  43298. }
  43299. },
  43300. rightArmExtended: {
  43301. height: math.unit(59 * 1.0496, "feet"),
  43302. name: "Right Arm (Extended)",
  43303. image: {
  43304. source: "./media/characters/zorkaiju/right-arm-extended.svg"
  43305. }
  43306. },
  43307. tail: {
  43308. height: math.unit(104, "feet"),
  43309. name: "Tail",
  43310. image: {
  43311. source: "./media/characters/zorkaiju/tail.svg"
  43312. }
  43313. },
  43314. tailExtended: {
  43315. height: math.unit(104, "feet"),
  43316. name: "Tail (Extended)",
  43317. image: {
  43318. source: "./media/characters/zorkaiju/tail-extended.svg"
  43319. }
  43320. },
  43321. tailBottom: {
  43322. height: math.unit(104, "feet"),
  43323. name: "Tail Bottom",
  43324. image: {
  43325. source: "./media/characters/zorkaiju/tail-bottom.svg"
  43326. }
  43327. },
  43328. crystal: {
  43329. height: math.unit(27.54, "feet"),
  43330. name: "Crystal",
  43331. image: {
  43332. source: "./media/characters/zorkaiju/crystal.svg"
  43333. }
  43334. },
  43335. },
  43336. [
  43337. {
  43338. name: "Kaiju",
  43339. height: math.unit(325, "feet"),
  43340. default: true
  43341. },
  43342. ]
  43343. ))
  43344. characterMakers.push(() => makeCharacter(
  43345. { name: "Bailey Belfry", species: ["townsend-big-eared-bat"], tags: ["anthro"] },
  43346. {
  43347. front: {
  43348. height: math.unit(6 + 1/12, "feet"),
  43349. weight: math.unit(115, "lb"),
  43350. name: "Front",
  43351. image: {
  43352. source: "./media/characters/bailey-belfry/front.svg",
  43353. extra: 1240/1121,
  43354. bottom: 101/1341
  43355. }
  43356. },
  43357. },
  43358. [
  43359. {
  43360. name: "Normal",
  43361. height: math.unit(6 + 1/12, "feet"),
  43362. default: true
  43363. },
  43364. ]
  43365. ))
  43366. characterMakers.push(() => makeCharacter(
  43367. { name: "Blacky", species: ["cat", "dragon"], tags: ["feral"] },
  43368. {
  43369. side: {
  43370. height: math.unit(4, "meters"),
  43371. weight: math.unit(250, "kg"),
  43372. name: "Side",
  43373. image: {
  43374. source: "./media/characters/blacky/side.svg",
  43375. extra: 1027/919,
  43376. bottom: 43/1070
  43377. }
  43378. },
  43379. maw: {
  43380. height: math.unit(1, "meters"),
  43381. name: "Maw",
  43382. image: {
  43383. source: "./media/characters/blacky/maw.svg"
  43384. }
  43385. },
  43386. paw: {
  43387. height: math.unit(1, "meters"),
  43388. name: "Paw",
  43389. image: {
  43390. source: "./media/characters/blacky/paw.svg"
  43391. }
  43392. },
  43393. },
  43394. [
  43395. {
  43396. name: "Normal",
  43397. height: math.unit(4, "meters"),
  43398. default: true
  43399. },
  43400. ]
  43401. ))
  43402. characterMakers.push(() => makeCharacter(
  43403. { name: "Thux-Ei", species: ["fox"], tags: ["anthro"] },
  43404. {
  43405. front: {
  43406. height: math.unit(170, "cm"),
  43407. weight: math.unit(66, "kg"),
  43408. name: "Front",
  43409. image: {
  43410. source: "./media/characters/thux-ei/front.svg",
  43411. extra: 1109/1011,
  43412. bottom: 8/1117
  43413. }
  43414. },
  43415. },
  43416. [
  43417. {
  43418. name: "Normal",
  43419. height: math.unit(170, "cm"),
  43420. default: true
  43421. },
  43422. ]
  43423. ))
  43424. characterMakers.push(() => makeCharacter(
  43425. { name: "Roxanne Voltaire", species: ["jaguar"], tags: ["anthro"] },
  43426. {
  43427. front: {
  43428. height: math.unit(5, "feet"),
  43429. weight: math.unit(120, "lb"),
  43430. name: "Front",
  43431. image: {
  43432. source: "./media/characters/roxanne-voltaire/front.svg",
  43433. extra: 1901/1779,
  43434. bottom: 53/1954
  43435. }
  43436. },
  43437. },
  43438. [
  43439. {
  43440. name: "Normal",
  43441. height: math.unit(5, "feet"),
  43442. default: true
  43443. },
  43444. {
  43445. name: "Giant",
  43446. height: math.unit(50, "feet")
  43447. },
  43448. {
  43449. name: "Titan",
  43450. height: math.unit(500, "feet")
  43451. },
  43452. {
  43453. name: "Macro",
  43454. height: math.unit(5000, "feet")
  43455. },
  43456. {
  43457. name: "Megamacro",
  43458. height: math.unit(50000, "feet")
  43459. },
  43460. {
  43461. name: "Gigamacro",
  43462. height: math.unit(500000, "feet")
  43463. },
  43464. {
  43465. name: "Teramacro",
  43466. height: math.unit(5e6, "feet")
  43467. },
  43468. ]
  43469. ))
  43470. characterMakers.push(() => makeCharacter(
  43471. { name: "Squeaks", species: ["rough-collie"], tags: ["anthro"] },
  43472. {
  43473. front: {
  43474. height: math.unit(6 + 2/12, "feet"),
  43475. name: "Front",
  43476. image: {
  43477. source: "./media/characters/squeaks/front.svg",
  43478. extra: 1823/1768,
  43479. bottom: 138/1961
  43480. }
  43481. },
  43482. },
  43483. [
  43484. {
  43485. name: "Micro",
  43486. height: math.unit(0.5, "inches")
  43487. },
  43488. {
  43489. name: "Normal",
  43490. height: math.unit(6 + 2/12, "feet"),
  43491. default: true
  43492. },
  43493. {
  43494. name: "Macro",
  43495. height: math.unit(600, "feet")
  43496. },
  43497. ]
  43498. ))
  43499. characterMakers.push(() => makeCharacter(
  43500. { name: "Archinger", species: ["squirrel"], tags: ["anthro"] },
  43501. {
  43502. front: {
  43503. height: math.unit(1.72, "meters"),
  43504. name: "Front",
  43505. image: {
  43506. source: "./media/characters/archinger/front.svg",
  43507. extra: 1861/1675,
  43508. bottom: 125/1986
  43509. }
  43510. },
  43511. back: {
  43512. height: math.unit(1.72, "meters"),
  43513. name: "Back",
  43514. image: {
  43515. source: "./media/characters/archinger/back.svg",
  43516. extra: 1844/1701,
  43517. bottom: 104/1948
  43518. }
  43519. },
  43520. cock: {
  43521. height: math.unit(0.59, "feet"),
  43522. name: "Cock",
  43523. image: {
  43524. source: "./media/characters/archinger/cock.svg"
  43525. }
  43526. },
  43527. },
  43528. [
  43529. {
  43530. name: "Normal",
  43531. height: math.unit(1.72, "meters"),
  43532. default: true
  43533. },
  43534. {
  43535. name: "Macro",
  43536. height: math.unit(84, "meters")
  43537. },
  43538. {
  43539. name: "Macro+",
  43540. height: math.unit(112, "meters")
  43541. },
  43542. {
  43543. name: "Macro++",
  43544. height: math.unit(960, "meters")
  43545. },
  43546. {
  43547. name: "Macro+++",
  43548. height: math.unit(4, "km")
  43549. },
  43550. {
  43551. name: "Macro++++",
  43552. height: math.unit(48, "km")
  43553. },
  43554. {
  43555. name: "Macro+++++",
  43556. height: math.unit(4500, "km")
  43557. },
  43558. ]
  43559. ))
  43560. characterMakers.push(() => makeCharacter(
  43561. { name: "Alsnapz", species: ["avian"], tags: ["anthro"] },
  43562. {
  43563. front: {
  43564. height: math.unit(5 + 5/12, "feet"),
  43565. name: "Front",
  43566. image: {
  43567. source: "./media/characters/alsnapz/front.svg",
  43568. extra: 1157/1065,
  43569. bottom: 42/1199
  43570. }
  43571. },
  43572. },
  43573. [
  43574. {
  43575. name: "Normal",
  43576. height: math.unit(5 + 5/12, "feet"),
  43577. default: true
  43578. },
  43579. ]
  43580. ))
  43581. characterMakers.push(() => makeCharacter(
  43582. { name: "Mag", species: ["magpie"], tags: ["feral"] },
  43583. {
  43584. side: {
  43585. height: math.unit(3.2, "earths"),
  43586. name: "Side",
  43587. image: {
  43588. source: "./media/characters/mag/side.svg",
  43589. extra: 1331/1008,
  43590. bottom: 52/1383
  43591. }
  43592. },
  43593. wing: {
  43594. height: math.unit(1.94, "earths"),
  43595. name: "Wing",
  43596. image: {
  43597. source: "./media/characters/mag/wing.svg"
  43598. }
  43599. },
  43600. dick: {
  43601. height: math.unit(1.8, "earths"),
  43602. name: "Dick",
  43603. image: {
  43604. source: "./media/characters/mag/dick.svg"
  43605. }
  43606. },
  43607. ass: {
  43608. height: math.unit(1.33, "earths"),
  43609. name: "Ass",
  43610. image: {
  43611. source: "./media/characters/mag/ass.svg"
  43612. }
  43613. },
  43614. head: {
  43615. height: math.unit(1.1, "earths"),
  43616. name: "Head",
  43617. image: {
  43618. source: "./media/characters/mag/head.svg"
  43619. }
  43620. },
  43621. maw: {
  43622. height: math.unit(1.62, "earths"),
  43623. name: "Maw",
  43624. image: {
  43625. source: "./media/characters/mag/maw.svg"
  43626. }
  43627. },
  43628. },
  43629. [
  43630. {
  43631. name: "Small",
  43632. height: math.unit(162, "feet")
  43633. },
  43634. {
  43635. name: "Normal",
  43636. height: math.unit(3.2, "earths"),
  43637. default: true
  43638. },
  43639. ]
  43640. ))
  43641. characterMakers.push(() => makeCharacter(
  43642. { name: "Vorrel Harroc", species: ["t-rex"], tags: ["anthro"] },
  43643. {
  43644. front: {
  43645. height: math.unit(512, "feet"),
  43646. weight: math.unit(63509, "tonnes"),
  43647. name: "Front",
  43648. image: {
  43649. source: "./media/characters/vorrel-harroc/front.svg",
  43650. extra: 1075/1063,
  43651. bottom: 62/1137
  43652. }
  43653. },
  43654. },
  43655. [
  43656. {
  43657. name: "Normal",
  43658. height: math.unit(10, "feet")
  43659. },
  43660. {
  43661. name: "Macro",
  43662. height: math.unit(512, "feet"),
  43663. default: true
  43664. },
  43665. {
  43666. name: "Megamacro",
  43667. height: math.unit(256, "miles")
  43668. },
  43669. {
  43670. name: "Gigamacro",
  43671. height: math.unit(4096, "miles")
  43672. },
  43673. ]
  43674. ))
  43675. characterMakers.push(() => makeCharacter(
  43676. { name: "Froimar", species: ["eastern-dragon"], tags: ["anthro"] },
  43677. {
  43678. side: {
  43679. height: math.unit(50, "feet"),
  43680. name: "Side",
  43681. image: {
  43682. source: "./media/characters/froimar/side.svg",
  43683. extra: 855/638,
  43684. bottom: 99/954
  43685. }
  43686. },
  43687. },
  43688. [
  43689. {
  43690. name: "Macro",
  43691. height: math.unit(50, "feet"),
  43692. default: true
  43693. },
  43694. ]
  43695. ))
  43696. characterMakers.push(() => makeCharacter(
  43697. { name: "Timothy", species: ["rabbit"], tags: ["anthro"] },
  43698. {
  43699. front: {
  43700. height: math.unit(210, "miles"),
  43701. name: "Front",
  43702. image: {
  43703. source: "./media/characters/timothy/front.svg",
  43704. extra: 1007/943,
  43705. bottom: 62/1069
  43706. }
  43707. },
  43708. frontSkirt: {
  43709. height: math.unit(210, "miles"),
  43710. name: "Front (Skirt)",
  43711. image: {
  43712. source: "./media/characters/timothy/front-skirt.svg",
  43713. extra: 1007/943,
  43714. bottom: 62/1069
  43715. }
  43716. },
  43717. frontCoat: {
  43718. height: math.unit(210, "miles"),
  43719. name: "Front (Coat)",
  43720. image: {
  43721. source: "./media/characters/timothy/front-coat.svg",
  43722. extra: 1007/943,
  43723. bottom: 62/1069
  43724. }
  43725. },
  43726. },
  43727. [
  43728. {
  43729. name: "Macro",
  43730. height: math.unit(210, "miles"),
  43731. default: true
  43732. },
  43733. {
  43734. name: "Megamacro",
  43735. height: math.unit(210000, "miles")
  43736. },
  43737. ]
  43738. ))
  43739. characterMakers.push(() => makeCharacter(
  43740. { name: "Pyotr", species: ["fox"], tags: ["anthro"] },
  43741. {
  43742. front: {
  43743. height: math.unit(188, "feet"),
  43744. name: "Front",
  43745. image: {
  43746. source: "./media/characters/pyotr/front.svg",
  43747. extra: 1912/1826,
  43748. bottom: 18/1930
  43749. }
  43750. },
  43751. },
  43752. [
  43753. {
  43754. name: "Macro",
  43755. height: math.unit(188, "feet"),
  43756. default: true
  43757. },
  43758. {
  43759. name: "Megamacro",
  43760. height: math.unit(8, "miles")
  43761. },
  43762. ]
  43763. ))
  43764. characterMakers.push(() => makeCharacter(
  43765. { name: "Ackart", species: ["fox"], tags: ["taur"] },
  43766. {
  43767. side: {
  43768. height: math.unit(10, "feet"),
  43769. weight: math.unit(4500, "lb"),
  43770. name: "Side",
  43771. image: {
  43772. source: "./media/characters/ackart/side.svg",
  43773. extra: 1776/1668,
  43774. bottom: 116/1892
  43775. }
  43776. },
  43777. },
  43778. [
  43779. {
  43780. name: "Normal",
  43781. height: math.unit(10, "feet"),
  43782. default: true
  43783. },
  43784. ]
  43785. ))
  43786. characterMakers.push(() => makeCharacter(
  43787. { name: "Nolow", species: ["cheetah"], tags: ["taur"] },
  43788. {
  43789. side: {
  43790. height: math.unit(21, "feet"),
  43791. name: "Side",
  43792. image: {
  43793. source: "./media/characters/nolow/side.svg",
  43794. extra: 1484/1434,
  43795. bottom: 85/1569
  43796. }
  43797. },
  43798. sideErect: {
  43799. height: math.unit(21, "feet"),
  43800. name: "Side-erect",
  43801. image: {
  43802. source: "./media/characters/nolow/side-erect.svg",
  43803. extra: 1484/1434,
  43804. bottom: 85/1569
  43805. }
  43806. },
  43807. },
  43808. [
  43809. {
  43810. name: "Regular",
  43811. height: math.unit(12, "feet")
  43812. },
  43813. {
  43814. name: "Big Chee",
  43815. height: math.unit(21, "feet"),
  43816. default: true
  43817. },
  43818. ]
  43819. ))
  43820. characterMakers.push(() => makeCharacter(
  43821. { name: "Nines", species: ["kitsune"], tags: ["anthro"] },
  43822. {
  43823. front: {
  43824. height: math.unit(7, "feet"),
  43825. weight: math.unit(250, "lb"),
  43826. name: "Front",
  43827. image: {
  43828. source: "./media/characters/nines/front.svg",
  43829. extra: 1741/1607,
  43830. bottom: 41/1782
  43831. }
  43832. },
  43833. side: {
  43834. height: math.unit(7, "feet"),
  43835. weight: math.unit(250, "lb"),
  43836. name: "Side",
  43837. image: {
  43838. source: "./media/characters/nines/side.svg",
  43839. extra: 1854/1735,
  43840. bottom: 93/1947
  43841. }
  43842. },
  43843. back: {
  43844. height: math.unit(7, "feet"),
  43845. weight: math.unit(250, "lb"),
  43846. name: "Back",
  43847. image: {
  43848. source: "./media/characters/nines/back.svg",
  43849. extra: 1748/1615,
  43850. bottom: 20/1768
  43851. }
  43852. },
  43853. },
  43854. [
  43855. {
  43856. name: "Megamacro",
  43857. height: math.unit(99, "km"),
  43858. default: true
  43859. },
  43860. ]
  43861. ))
  43862. characterMakers.push(() => makeCharacter(
  43863. { name: "Zenith", species: ["civet", "hyena"], tags: ["anthro"] },
  43864. {
  43865. front: {
  43866. height: math.unit(5 + 10/12, "feet"),
  43867. weight: math.unit(210, "lb"),
  43868. name: "Front",
  43869. image: {
  43870. source: "./media/characters/zenith/front.svg",
  43871. extra: 1531/1452,
  43872. bottom: 198/1729
  43873. }
  43874. },
  43875. back: {
  43876. height: math.unit(5 + 10/12, "feet"),
  43877. weight: math.unit(210, "lb"),
  43878. name: "Back",
  43879. image: {
  43880. source: "./media/characters/zenith/back.svg",
  43881. extra: 1571/1487,
  43882. bottom: 75/1646
  43883. }
  43884. },
  43885. },
  43886. [
  43887. {
  43888. name: "Normal",
  43889. height: math.unit(5 + 10/12, "feet"),
  43890. default: true
  43891. }
  43892. ]
  43893. ))
  43894. characterMakers.push(() => makeCharacter(
  43895. { name: "Jasper", species: ["cat"], tags: ["anthro"] },
  43896. {
  43897. front: {
  43898. height: math.unit(4, "feet"),
  43899. weight: math.unit(60, "lb"),
  43900. name: "Front",
  43901. image: {
  43902. source: "./media/characters/jasper/front.svg",
  43903. extra: 1450/1379,
  43904. bottom: 19/1469
  43905. }
  43906. },
  43907. },
  43908. [
  43909. {
  43910. name: "Normal",
  43911. height: math.unit(4, "feet"),
  43912. default: true
  43913. },
  43914. ]
  43915. ))
  43916. characterMakers.push(() => makeCharacter(
  43917. { name: "Tiberius Thyben", species: ["raccoon"], tags: ["anthro"] },
  43918. {
  43919. front: {
  43920. height: math.unit(6 + 5/12, "feet"),
  43921. weight: math.unit(290, "lb"),
  43922. name: "Front",
  43923. image: {
  43924. source: "./media/characters/tiberius-thyben/front.svg",
  43925. extra: 757/739,
  43926. bottom: 39/796
  43927. }
  43928. },
  43929. },
  43930. [
  43931. {
  43932. name: "Micro",
  43933. height: math.unit(1.5, "inches")
  43934. },
  43935. {
  43936. name: "Normal",
  43937. height: math.unit(6 + 5/12, "feet"),
  43938. default: true
  43939. },
  43940. {
  43941. name: "Macro",
  43942. height: math.unit(300, "feet")
  43943. },
  43944. ]
  43945. ))
  43946. characterMakers.push(() => makeCharacter(
  43947. { name: "Sabre", species: ["jackal"], tags: ["anthro"] },
  43948. {
  43949. front: {
  43950. height: math.unit(5 + 6/12, "feet"),
  43951. weight: math.unit(60, "kg"),
  43952. name: "Front",
  43953. image: {
  43954. source: "./media/characters/sabre/front.svg",
  43955. extra: 738/671,
  43956. bottom: 27/765
  43957. }
  43958. },
  43959. },
  43960. [
  43961. {
  43962. name: "Teeny",
  43963. height: math.unit(2, "inches")
  43964. },
  43965. {
  43966. name: "Smol",
  43967. height: math.unit(8, "inches")
  43968. },
  43969. {
  43970. name: "Normal",
  43971. height: math.unit(5 + 6/12, "feet"),
  43972. default: true
  43973. },
  43974. {
  43975. name: "Mini-Macro",
  43976. height: math.unit(15, "feet")
  43977. },
  43978. {
  43979. name: "Macro",
  43980. height: math.unit(50, "feet")
  43981. },
  43982. ]
  43983. ))
  43984. characterMakers.push(() => makeCharacter(
  43985. { name: "Charlie", species: ["deer"], tags: ["anthro"] },
  43986. {
  43987. front: {
  43988. height: math.unit(6 + 4/12, "feet"),
  43989. weight: math.unit(170, "lb"),
  43990. name: "Front",
  43991. image: {
  43992. source: "./media/characters/charlie/front.svg",
  43993. extra: 1348/1228,
  43994. bottom: 15/1363
  43995. }
  43996. },
  43997. },
  43998. [
  43999. {
  44000. name: "Macro",
  44001. height: math.unit(1700, "meters"),
  44002. default: true
  44003. },
  44004. {
  44005. name: "MegaMacro",
  44006. height: math.unit(20400, "meters")
  44007. },
  44008. ]
  44009. ))
  44010. characterMakers.push(() => makeCharacter(
  44011. { name: "Susan Grant", species: ["human"], tags: ["anthro"] },
  44012. {
  44013. front: {
  44014. height: math.unit(1.96, "meters"),
  44015. weight: math.unit(220, "lb"),
  44016. name: "Front",
  44017. image: {
  44018. source: "./media/characters/susan-grant/front.svg",
  44019. extra: 482/478,
  44020. bottom: 7/489
  44021. }
  44022. },
  44023. },
  44024. [
  44025. {
  44026. name: "Normal",
  44027. height: math.unit(1.96, "meters"),
  44028. default: true
  44029. },
  44030. {
  44031. name: "Macro",
  44032. height: math.unit(76.2, "meters")
  44033. },
  44034. {
  44035. name: "MegaMacro",
  44036. height: math.unit(305, "meters")
  44037. },
  44038. {
  44039. name: "GigaMacro",
  44040. height: math.unit(1220, "meters")
  44041. },
  44042. {
  44043. name: "SuperMacro",
  44044. height: math.unit(4878, "meters")
  44045. },
  44046. ]
  44047. ))
  44048. characterMakers.push(() => makeCharacter(
  44049. { name: "Axel Isanov", species: ["human"], tags: ["anthro"] },
  44050. {
  44051. front: {
  44052. height: math.unit(5 + 4/12, "feet"),
  44053. weight: math.unit(110, "lb"),
  44054. name: "Front",
  44055. image: {
  44056. source: "./media/characters/axel-isanov/front.svg",
  44057. extra: 1096/1065,
  44058. bottom: 13/1109
  44059. }
  44060. },
  44061. },
  44062. [
  44063. {
  44064. name: "Normal",
  44065. height: math.unit(5 + 4/12, "feet"),
  44066. default: true
  44067. },
  44068. ]
  44069. ))
  44070. characterMakers.push(() => makeCharacter(
  44071. { name: "Necahual", species: ["cat"], tags: ["anthro"] },
  44072. {
  44073. front: {
  44074. height: math.unit(9, "feet"),
  44075. weight: math.unit(467, "lb"),
  44076. name: "Front",
  44077. image: {
  44078. source: "./media/characters/necahual/front.svg",
  44079. extra: 920/873,
  44080. bottom: 26/946
  44081. }
  44082. },
  44083. back: {
  44084. height: math.unit(9, "feet"),
  44085. weight: math.unit(467, "lb"),
  44086. name: "Back",
  44087. image: {
  44088. source: "./media/characters/necahual/back.svg",
  44089. extra: 930/884,
  44090. bottom: 16/946
  44091. }
  44092. },
  44093. frontUnderwear: {
  44094. height: math.unit(9, "feet"),
  44095. weight: math.unit(467, "lb"),
  44096. name: "Front (Underwear)",
  44097. image: {
  44098. source: "./media/characters/necahual/front-underwear.svg",
  44099. extra: 920/873,
  44100. bottom: 26/946
  44101. }
  44102. },
  44103. frontDressed: {
  44104. height: math.unit(9, "feet"),
  44105. weight: math.unit(467, "lb"),
  44106. name: "Front (Dressed)",
  44107. image: {
  44108. source: "./media/characters/necahual/front-dressed.svg",
  44109. extra: 920/873,
  44110. bottom: 26/946
  44111. }
  44112. },
  44113. },
  44114. [
  44115. {
  44116. name: "Comprsesed",
  44117. height: math.unit(9, "feet")
  44118. },
  44119. {
  44120. name: "Natural",
  44121. height: math.unit(15, "feet"),
  44122. default: true
  44123. },
  44124. {
  44125. name: "Boosted",
  44126. height: math.unit(50, "feet")
  44127. },
  44128. {
  44129. name: "Boosted+",
  44130. height: math.unit(150, "feet")
  44131. },
  44132. {
  44133. name: "Max",
  44134. height: math.unit(500, "feet")
  44135. },
  44136. ]
  44137. ))
  44138. characterMakers.push(() => makeCharacter(
  44139. { name: "Theo Acacia", species: ["giraffe"], tags: ["anthro"] },
  44140. {
  44141. front: {
  44142. height: math.unit(22 + 1/12, "feet"),
  44143. weight: math.unit(3200, "lb"),
  44144. name: "Front",
  44145. image: {
  44146. source: "./media/characters/theo-acacia/front.svg",
  44147. extra: 1796/1741,
  44148. bottom: 83/1879
  44149. }
  44150. },
  44151. frontUnderwear: {
  44152. height: math.unit(22 + 1/12, "feet"),
  44153. weight: math.unit(3200, "lb"),
  44154. name: "Front (Underwear)",
  44155. image: {
  44156. source: "./media/characters/theo-acacia/front-underwear.svg",
  44157. extra: 1796/1741,
  44158. bottom: 83/1879
  44159. }
  44160. },
  44161. frontNude: {
  44162. height: math.unit(22 + 1/12, "feet"),
  44163. weight: math.unit(3200, "lb"),
  44164. name: "Front (Nude)",
  44165. image: {
  44166. source: "./media/characters/theo-acacia/front-nude.svg",
  44167. extra: 1796/1741,
  44168. bottom: 83/1879
  44169. }
  44170. },
  44171. },
  44172. [
  44173. {
  44174. name: "Normal",
  44175. height: math.unit(22 + 1/12, "feet"),
  44176. default: true
  44177. },
  44178. ]
  44179. ))
  44180. characterMakers.push(() => makeCharacter(
  44181. { name: "Astra", species: ["jackal", "umbreon"], tags: ["anthro"] },
  44182. {
  44183. front: {
  44184. height: math.unit(20, "feet"),
  44185. name: "Front",
  44186. image: {
  44187. source: "./media/characters/astra/front.svg",
  44188. extra: 1850/1714,
  44189. bottom: 106/1956
  44190. }
  44191. },
  44192. frontUndressed: {
  44193. height: math.unit(20, "feet"),
  44194. name: "Front (Undressed)",
  44195. image: {
  44196. source: "./media/characters/astra/front-undressed.svg",
  44197. extra: 1926/1749,
  44198. bottom: 0/1926
  44199. }
  44200. },
  44201. hand: {
  44202. height: math.unit(1.53, "feet"),
  44203. name: "Hand",
  44204. image: {
  44205. source: "./media/characters/astra/hand.svg"
  44206. }
  44207. },
  44208. paw: {
  44209. height: math.unit(1.53, "feet"),
  44210. name: "Paw",
  44211. image: {
  44212. source: "./media/characters/astra/paw.svg"
  44213. }
  44214. },
  44215. },
  44216. [
  44217. {
  44218. name: "Smallest",
  44219. height: math.unit(20, "feet")
  44220. },
  44221. {
  44222. name: "Normal",
  44223. height: math.unit(1e9, "miles"),
  44224. default: true
  44225. },
  44226. {
  44227. name: "Larger",
  44228. height: math.unit(5, "multiverses")
  44229. },
  44230. {
  44231. name: "Largest",
  44232. height: math.unit(1e9, "multiverses")
  44233. },
  44234. ]
  44235. ))
  44236. characterMakers.push(() => makeCharacter(
  44237. { name: "Breanna", species: ["jackal", "umbreon"], tags: ["anthro"] },
  44238. {
  44239. front: {
  44240. height: math.unit(8, "feet"),
  44241. name: "Front",
  44242. image: {
  44243. source: "./media/characters/breanna/front.svg",
  44244. extra: 1912/1632,
  44245. bottom: 33/1945
  44246. }
  44247. },
  44248. },
  44249. [
  44250. {
  44251. name: "Smallest",
  44252. height: math.unit(8, "feet")
  44253. },
  44254. {
  44255. name: "Normal",
  44256. height: math.unit(1, "mile"),
  44257. default: true
  44258. },
  44259. {
  44260. name: "Maximum",
  44261. height: math.unit(1500000000000, "lightyears")
  44262. },
  44263. ]
  44264. ))
  44265. characterMakers.push(() => makeCharacter(
  44266. { name: "Cai", species: ["fox"], tags: ["anthro"] },
  44267. {
  44268. front: {
  44269. height: math.unit(5 + 11/12, "feet"),
  44270. weight: math.unit(155, "lb"),
  44271. name: "Front",
  44272. image: {
  44273. source: "./media/characters/cai/front.svg",
  44274. extra: 1823/1702,
  44275. bottom: 32/1855
  44276. }
  44277. },
  44278. back: {
  44279. height: math.unit(5 + 11/12, "feet"),
  44280. weight: math.unit(155, "lb"),
  44281. name: "Back",
  44282. image: {
  44283. source: "./media/characters/cai/back.svg",
  44284. extra: 1809/1708,
  44285. bottom: 31/1840
  44286. }
  44287. },
  44288. },
  44289. [
  44290. {
  44291. name: "Normal",
  44292. height: math.unit(5 + 11/12, "feet"),
  44293. default: true
  44294. },
  44295. {
  44296. name: "Big",
  44297. height: math.unit(15, "feet")
  44298. },
  44299. {
  44300. name: "Macro",
  44301. height: math.unit(200, "feet")
  44302. },
  44303. ]
  44304. ))
  44305. characterMakers.push(() => makeCharacter(
  44306. { name: "Zanna Virtuedòttir", species: ["tiefling"], tags: ["anthro"] },
  44307. {
  44308. front: {
  44309. height: math.unit(5 + 6/12, "feet"),
  44310. weight: math.unit(160, "lb"),
  44311. name: "Front",
  44312. image: {
  44313. source: "./media/characters/zanna-virtuedòttir/front.svg",
  44314. extra: 1227/1174,
  44315. bottom: 37/1264
  44316. }
  44317. },
  44318. },
  44319. [
  44320. {
  44321. name: "Macro",
  44322. height: math.unit(444, "meters"),
  44323. default: true
  44324. },
  44325. ]
  44326. ))
  44327. characterMakers.push(() => makeCharacter(
  44328. { name: "Rex", species: ["dragon"], tags: ["anthro"] },
  44329. {
  44330. front: {
  44331. height: math.unit(18 + 7/12, "feet"),
  44332. name: "Front",
  44333. image: {
  44334. source: "./media/characters/rex/front.svg",
  44335. extra: 1941/1807,
  44336. bottom: 66/2007
  44337. }
  44338. },
  44339. back: {
  44340. height: math.unit(18 + 7/12, "feet"),
  44341. name: "Back",
  44342. image: {
  44343. source: "./media/characters/rex/back.svg",
  44344. extra: 1937/1822,
  44345. bottom: 42/1979
  44346. }
  44347. },
  44348. boot: {
  44349. height: math.unit(3.45, "feet"),
  44350. name: "Boot",
  44351. image: {
  44352. source: "./media/characters/rex/boot.svg"
  44353. }
  44354. },
  44355. paw: {
  44356. height: math.unit(4.17, "feet"),
  44357. name: "Paw",
  44358. image: {
  44359. source: "./media/characters/rex/paw.svg"
  44360. }
  44361. },
  44362. head: {
  44363. height: math.unit(6.728, "feet"),
  44364. name: "Head",
  44365. image: {
  44366. source: "./media/characters/rex/head.svg"
  44367. }
  44368. },
  44369. },
  44370. [
  44371. {
  44372. name: "Nano",
  44373. height: math.unit(18 + 7/12, "feet")
  44374. },
  44375. {
  44376. name: "Micro",
  44377. height: math.unit(1.5, "megameters")
  44378. },
  44379. {
  44380. name: "Normal",
  44381. height: math.unit(440, "megameters"),
  44382. default: true
  44383. },
  44384. {
  44385. name: "Macro",
  44386. height: math.unit(2.5, "gigameters")
  44387. },
  44388. {
  44389. name: "Gigamacro",
  44390. height: math.unit(2, "galaxies")
  44391. },
  44392. ]
  44393. ))
  44394. characterMakers.push(() => makeCharacter(
  44395. { name: "Silverwing", species: ["lugia"], tags: ["feral"] },
  44396. {
  44397. side: {
  44398. height: math.unit(32, "feet"),
  44399. weight: math.unit(250000, "lb"),
  44400. name: "Side",
  44401. image: {
  44402. source: "./media/characters/silverwing/side.svg",
  44403. extra: 1100/1019,
  44404. bottom: 204/1304
  44405. }
  44406. },
  44407. },
  44408. [
  44409. {
  44410. name: "Normal",
  44411. height: math.unit(32, "feet"),
  44412. default: true
  44413. },
  44414. ]
  44415. ))
  44416. characterMakers.push(() => makeCharacter(
  44417. { name: "Tristan Hawthorne", species: ["labrador", "skunk"], tags: ["anthro"] },
  44418. {
  44419. front: {
  44420. height: math.unit(6 + 6/12, "feet"),
  44421. weight: math.unit(350, "lb"),
  44422. name: "Front",
  44423. image: {
  44424. source: "./media/characters/tristan-hawthorne/front.svg",
  44425. extra: 1159/1124,
  44426. bottom: 37/1196
  44427. },
  44428. form: "labrador",
  44429. default: true
  44430. },
  44431. skunkFront: {
  44432. height: math.unit(4 + 6/12, "feet"),
  44433. weight: math.unit(120, "lb"),
  44434. name: "Front",
  44435. image: {
  44436. source: "./media/characters/tristan-hawthorne/skunk-front.svg",
  44437. extra: 1609/1551,
  44438. bottom: 169/1778
  44439. },
  44440. form: "skunk",
  44441. default: true
  44442. },
  44443. },
  44444. [
  44445. {
  44446. name: "Normal",
  44447. height: math.unit(6 + 6/12, "feet"),
  44448. form: "labrador",
  44449. default: true
  44450. },
  44451. {
  44452. name: "Normal",
  44453. height: math.unit(4 + 6/12, "feet"),
  44454. form: "skunk",
  44455. default: true
  44456. },
  44457. ],
  44458. {
  44459. "labrador": {
  44460. name: "Labrador",
  44461. default: true
  44462. },
  44463. "skunk": {
  44464. name: "Skunk"
  44465. }
  44466. }
  44467. ))
  44468. characterMakers.push(() => makeCharacter(
  44469. { name: "Mizu", species: ["sika-deer"], tags: ["anthro"] },
  44470. {
  44471. front: {
  44472. height: math.unit(5 + 11/12, "feet"),
  44473. weight: math.unit(190, "lb"),
  44474. name: "Front",
  44475. image: {
  44476. source: "./media/characters/mizu/front.svg",
  44477. extra: 1988/1788,
  44478. bottom: 14/2002
  44479. }
  44480. },
  44481. },
  44482. [
  44483. {
  44484. name: "Normal",
  44485. height: math.unit(5 + 11/12, "feet"),
  44486. default: true
  44487. },
  44488. ]
  44489. ))
  44490. characterMakers.push(() => makeCharacter(
  44491. { name: "Dechroma", species: ["dragon", "plant"], tags: ["anthro"] },
  44492. {
  44493. front: {
  44494. height: math.unit(1.7, "feet"),
  44495. weight: math.unit(50, "lb"),
  44496. name: "Front",
  44497. image: {
  44498. source: "./media/characters/dechroma/front.svg",
  44499. extra: 1095/859,
  44500. bottom: 64/1159
  44501. }
  44502. },
  44503. },
  44504. [
  44505. {
  44506. name: "Normal",
  44507. height: math.unit(1.7, "feet"),
  44508. default: true
  44509. },
  44510. ]
  44511. ))
  44512. characterMakers.push(() => makeCharacter(
  44513. { name: "Veluren Thanazel", species: ["dragon"], tags: ["feral"] },
  44514. {
  44515. side: {
  44516. height: math.unit(30, "feet"),
  44517. name: "Side",
  44518. image: {
  44519. source: "./media/characters/veluren-thanazel/side.svg",
  44520. extra: 1611/633,
  44521. bottom: 118/1729
  44522. }
  44523. },
  44524. front: {
  44525. height: math.unit(30, "feet"),
  44526. name: "Front",
  44527. image: {
  44528. source: "./media/characters/veluren-thanazel/front.svg",
  44529. extra: 1486/636,
  44530. bottom: 238/1724
  44531. }
  44532. },
  44533. head: {
  44534. height: math.unit(21.4, "feet"),
  44535. name: "Head",
  44536. image: {
  44537. source: "./media/characters/veluren-thanazel/head.svg"
  44538. }
  44539. },
  44540. genitals: {
  44541. height: math.unit(19.4, "feet"),
  44542. name: "Genitals",
  44543. image: {
  44544. source: "./media/characters/veluren-thanazel/genitals.svg"
  44545. }
  44546. },
  44547. },
  44548. [
  44549. {
  44550. name: "Social",
  44551. height: math.unit(6, "feet")
  44552. },
  44553. {
  44554. name: "Play",
  44555. height: math.unit(12, "feet")
  44556. },
  44557. {
  44558. name: "True",
  44559. height: math.unit(30, "feet"),
  44560. default: true
  44561. },
  44562. ]
  44563. ))
  44564. characterMakers.push(() => makeCharacter(
  44565. { name: "Arcturas", species: ["dragon", "elemental"], tags: ["anthro"] },
  44566. {
  44567. front: {
  44568. height: math.unit(7 + 6/12, "feet"),
  44569. weight: math.unit(500, "kg"),
  44570. name: "Front",
  44571. image: {
  44572. source: "./media/characters/arcturas/front.svg",
  44573. extra: 1700/1500,
  44574. bottom: 145/1845
  44575. }
  44576. },
  44577. },
  44578. [
  44579. {
  44580. name: "Normal",
  44581. height: math.unit(7 + 6/12, "feet"),
  44582. default: true
  44583. },
  44584. ]
  44585. ))
  44586. characterMakers.push(() => makeCharacter(
  44587. { name: "Vitaen", species: ["zorgoia", "vampire"], tags: ["feral"] },
  44588. {
  44589. side: {
  44590. height: math.unit(6, "feet"),
  44591. weight: math.unit(2, "tons"),
  44592. name: "Side",
  44593. image: {
  44594. source: "./media/characters/vitaen/side.svg",
  44595. extra: 1157/617,
  44596. bottom: 122/1279
  44597. }
  44598. },
  44599. },
  44600. [
  44601. {
  44602. name: "Normal",
  44603. height: math.unit(6, "feet"),
  44604. default: true
  44605. },
  44606. ]
  44607. ))
  44608. characterMakers.push(() => makeCharacter(
  44609. { name: "Fia Dreamweaver", species: ["spireborn"], tags: ["anthro"] },
  44610. {
  44611. front: {
  44612. height: math.unit(19, "feet"),
  44613. name: "Front",
  44614. image: {
  44615. source: "./media/characters/fia-dreamweaver/front.svg",
  44616. extra: 1630/1504,
  44617. bottom: 25/1655
  44618. }
  44619. },
  44620. },
  44621. [
  44622. {
  44623. name: "Normal",
  44624. height: math.unit(19, "feet"),
  44625. default: true
  44626. },
  44627. ]
  44628. ))
  44629. characterMakers.push(() => makeCharacter(
  44630. { name: "Artan", species: ["fennec-fox"], tags: ["anthro"] },
  44631. {
  44632. front: {
  44633. height: math.unit(5 + 4/12, "feet"),
  44634. name: "Front",
  44635. image: {
  44636. source: "./media/characters/artan/front.svg",
  44637. extra: 1618/1535,
  44638. bottom: 46/1664
  44639. }
  44640. },
  44641. back: {
  44642. height: math.unit(5 + 4/12, "feet"),
  44643. name: "Back",
  44644. image: {
  44645. source: "./media/characters/artan/back.svg",
  44646. extra: 1618/1543,
  44647. bottom: 31/1649
  44648. }
  44649. },
  44650. },
  44651. [
  44652. {
  44653. name: "Normal",
  44654. height: math.unit(5 + 4/12, "feet"),
  44655. default: true
  44656. },
  44657. ]
  44658. ))
  44659. characterMakers.push(() => makeCharacter(
  44660. { name: "Silver (Dragon)", species: ["dragon"], tags: ["feral"] },
  44661. {
  44662. side: {
  44663. height: math.unit(182, "cm"),
  44664. weight: math.unit(1000, "lb"),
  44665. name: "Side",
  44666. image: {
  44667. source: "./media/characters/silver-dragon/side.svg",
  44668. extra: 710/287,
  44669. bottom: 88/798
  44670. }
  44671. },
  44672. },
  44673. [
  44674. {
  44675. name: "Normal",
  44676. height: math.unit(182, "cm"),
  44677. default: true
  44678. },
  44679. ]
  44680. ))
  44681. characterMakers.push(() => makeCharacter(
  44682. { name: "Zephyr", species: ["zorgoia"], tags: ["feral"] },
  44683. {
  44684. side: {
  44685. height: math.unit(6 + 6/12, "feet"),
  44686. weight: math.unit(1.5, "tons"),
  44687. name: "Side",
  44688. image: {
  44689. source: "./media/characters/zephyr/side.svg",
  44690. extra: 1433/586,
  44691. bottom: 109/1542
  44692. }
  44693. },
  44694. },
  44695. [
  44696. {
  44697. name: "Normal",
  44698. height: math.unit(6 + 6/12, "feet"),
  44699. default: true
  44700. },
  44701. ]
  44702. ))
  44703. characterMakers.push(() => makeCharacter(
  44704. { name: "Vixye", species: ["extraplanar"], tags: ["anthro"] },
  44705. {
  44706. side: {
  44707. height: math.unit(1, "feet"),
  44708. name: "Side",
  44709. image: {
  44710. source: "./media/characters/vixye/side.svg",
  44711. extra: 632/541,
  44712. bottom: 0/632
  44713. }
  44714. },
  44715. },
  44716. [
  44717. {
  44718. name: "Normal",
  44719. height: math.unit(1, "feet"),
  44720. default: true
  44721. },
  44722. {
  44723. name: "True",
  44724. height: math.unit(1e15, "multiverses")
  44725. },
  44726. ]
  44727. ))
  44728. characterMakers.push(() => makeCharacter(
  44729. { name: "Darla Mac Lochlainn", species: ["bear", "werebeast"], tags: ["anthro"] },
  44730. {
  44731. front: {
  44732. height: math.unit(8 + 2/12, "feet"),
  44733. weight: math.unit(650, "lb"),
  44734. name: "Front",
  44735. image: {
  44736. source: "./media/characters/darla-mac-lochlainn/front.svg",
  44737. extra: 1174/1137,
  44738. bottom: 82/1256
  44739. }
  44740. },
  44741. back: {
  44742. height: math.unit(8 + 2/12, "feet"),
  44743. weight: math.unit(650, "lb"),
  44744. name: "Back",
  44745. image: {
  44746. source: "./media/characters/darla-mac-lochlainn/back.svg",
  44747. extra: 1204/1157,
  44748. bottom: 46/1250
  44749. }
  44750. },
  44751. },
  44752. [
  44753. {
  44754. name: "Wildform",
  44755. height: math.unit(8 + 2/12, "feet"),
  44756. default: true
  44757. },
  44758. ]
  44759. ))
  44760. characterMakers.push(() => makeCharacter(
  44761. { name: "Cyphin", species: ["spireborn"], tags: ["anthro"] },
  44762. {
  44763. front: {
  44764. height: math.unit(18, "feet"),
  44765. name: "Front",
  44766. image: {
  44767. source: "./media/characters/cyphin/front.svg",
  44768. extra: 970/886,
  44769. bottom: 42/1012
  44770. }
  44771. },
  44772. back: {
  44773. height: math.unit(18, "feet"),
  44774. name: "Back",
  44775. image: {
  44776. source: "./media/characters/cyphin/back.svg",
  44777. extra: 1009/894,
  44778. bottom: 24/1033
  44779. }
  44780. },
  44781. head: {
  44782. height: math.unit(5.05, "feet"),
  44783. name: "Head",
  44784. image: {
  44785. source: "./media/characters/cyphin/head.svg"
  44786. }
  44787. },
  44788. tailbud: {
  44789. height: math.unit(5, "feet"),
  44790. name: "Tailbud",
  44791. image: {
  44792. source: "./media/characters/cyphin/tailbud.svg"
  44793. }
  44794. },
  44795. },
  44796. [
  44797. ]
  44798. ))
  44799. characterMakers.push(() => makeCharacter(
  44800. { name: "Raijin", species: ["zorgoia"], tags: ["feral"] },
  44801. {
  44802. side: {
  44803. height: math.unit(10, "feet"),
  44804. weight: math.unit(6, "tons"),
  44805. name: "Side",
  44806. image: {
  44807. source: "./media/characters/raijin/side.svg",
  44808. extra: 1529/613,
  44809. bottom: 337/1866
  44810. }
  44811. },
  44812. },
  44813. [
  44814. {
  44815. name: "Normal",
  44816. height: math.unit(10, "feet"),
  44817. default: true
  44818. },
  44819. ]
  44820. ))
  44821. characterMakers.push(() => makeCharacter(
  44822. { name: "Nilghais", species: ["felkin"], tags: ["feral"] },
  44823. {
  44824. side: {
  44825. height: math.unit(9, "feet"),
  44826. name: "Side",
  44827. image: {
  44828. source: "./media/characters/nilghais/side.svg",
  44829. extra: 1047/744,
  44830. bottom: 91/1138
  44831. }
  44832. },
  44833. head: {
  44834. height: math.unit(3.14, "feet"),
  44835. name: "Head",
  44836. image: {
  44837. source: "./media/characters/nilghais/head.svg"
  44838. }
  44839. },
  44840. mouth: {
  44841. height: math.unit(4.6, "feet"),
  44842. name: "Mouth",
  44843. image: {
  44844. source: "./media/characters/nilghais/mouth.svg"
  44845. }
  44846. },
  44847. wings: {
  44848. height: math.unit(24, "feet"),
  44849. name: "Wings",
  44850. image: {
  44851. source: "./media/characters/nilghais/wings.svg"
  44852. }
  44853. },
  44854. ass: {
  44855. height: math.unit(6.12, "feet"),
  44856. name: "Ass",
  44857. image: {
  44858. source: "./media/characters/nilghais/ass.svg"
  44859. }
  44860. },
  44861. },
  44862. [
  44863. {
  44864. name: "Normal",
  44865. height: math.unit(9, "feet"),
  44866. default: true
  44867. },
  44868. ]
  44869. ))
  44870. characterMakers.push(() => makeCharacter(
  44871. { name: "Zolgar", species: ["alien", "opossum", "bear"], tags: ["anthro"] },
  44872. {
  44873. regular: {
  44874. height: math.unit(16 + 2/12, "feet"),
  44875. weight: math.unit(2300, "lb"),
  44876. name: "Regular",
  44877. image: {
  44878. source: "./media/characters/zolgar/regular.svg",
  44879. extra: 1246/1004,
  44880. bottom: 124/1370
  44881. }
  44882. },
  44883. boxers: {
  44884. height: math.unit(16 + 2/12, "feet"),
  44885. weight: math.unit(2300, "lb"),
  44886. name: "Boxers",
  44887. image: {
  44888. source: "./media/characters/zolgar/boxers.svg",
  44889. extra: 1246/1004,
  44890. bottom: 124/1370
  44891. }
  44892. },
  44893. armored: {
  44894. height: math.unit(16 + 2/12, "feet"),
  44895. weight: math.unit(2300, "lb"),
  44896. name: "Armored",
  44897. image: {
  44898. source: "./media/characters/zolgar/armored.svg",
  44899. extra: 1246/1004,
  44900. bottom: 124/1370
  44901. }
  44902. },
  44903. goth: {
  44904. height: math.unit(16 + 2/12, "feet"),
  44905. weight: math.unit(2300, "lb"),
  44906. name: "Goth",
  44907. image: {
  44908. source: "./media/characters/zolgar/goth.svg",
  44909. extra: 1246/1004,
  44910. bottom: 124/1370
  44911. }
  44912. },
  44913. },
  44914. [
  44915. {
  44916. name: "Shrunken Down",
  44917. height: math.unit(9 + 2/12, "feet")
  44918. },
  44919. {
  44920. name: "Normal",
  44921. height: math.unit(16 + 2/12, "feet"),
  44922. default: true
  44923. },
  44924. ]
  44925. ))
  44926. characterMakers.push(() => makeCharacter(
  44927. { name: "Luca", species: ["zoroark", "lucario"], tags: ["anthro"] },
  44928. {
  44929. front: {
  44930. height: math.unit(6, "feet"),
  44931. weight: math.unit(168, "lb"),
  44932. name: "Front",
  44933. image: {
  44934. source: "./media/characters/luca/front.svg",
  44935. extra: 841/667,
  44936. bottom: 102/943
  44937. }
  44938. },
  44939. },
  44940. [
  44941. {
  44942. name: "Normal",
  44943. height: math.unit(6, "feet"),
  44944. default: true
  44945. },
  44946. ]
  44947. ))
  44948. characterMakers.push(() => makeCharacter(
  44949. { name: "Zezo", species: ["goo"], tags: ["feral"] },
  44950. {
  44951. side: {
  44952. height: math.unit(7 + 3/12, "feet"),
  44953. weight: math.unit(312, "lb"),
  44954. name: "Side",
  44955. image: {
  44956. source: "./media/characters/zezo/side.svg",
  44957. extra: 1192/1067,
  44958. bottom: 63/1255
  44959. }
  44960. },
  44961. },
  44962. [
  44963. {
  44964. name: "Normal",
  44965. height: math.unit(7 + 3/12, "feet"),
  44966. default: true
  44967. },
  44968. ]
  44969. ))
  44970. characterMakers.push(() => makeCharacter(
  44971. { name: "Mayso", species: ["dunnoh"], tags: ["anthro"] },
  44972. {
  44973. front: {
  44974. height: math.unit(5 + 5/12, "feet"),
  44975. weight: math.unit(170, "lb"),
  44976. name: "Front",
  44977. image: {
  44978. source: "./media/characters/mayso/front.svg",
  44979. extra: 1215/1108,
  44980. bottom: 16/1231
  44981. }
  44982. },
  44983. },
  44984. [
  44985. {
  44986. name: "Normal",
  44987. height: math.unit(5 + 5/12, "feet"),
  44988. default: true
  44989. },
  44990. ]
  44991. ))
  44992. characterMakers.push(() => makeCharacter(
  44993. { name: "Hess", species: ["gryphon"], tags: ["anthro"] },
  44994. {
  44995. front: {
  44996. height: math.unit(4 + 3/12, "feet"),
  44997. weight: math.unit(80, "lb"),
  44998. name: "Front",
  44999. image: {
  45000. source: "./media/characters/hess/front.svg",
  45001. extra: 1200/1123,
  45002. bottom: 16/1216
  45003. }
  45004. },
  45005. },
  45006. [
  45007. {
  45008. name: "Normal",
  45009. height: math.unit(4 + 3/12, "feet"),
  45010. default: true
  45011. },
  45012. ]
  45013. ))
  45014. characterMakers.push(() => makeCharacter(
  45015. { name: "Ashgar", species: ["bear", "lizard"], tags: ["anthro", "feral"] },
  45016. {
  45017. front: {
  45018. height: math.unit(1.9, "meters"),
  45019. name: "Front",
  45020. image: {
  45021. source: "./media/characters/ashgar/front.svg",
  45022. extra: 1177/1146,
  45023. bottom: 99/1276
  45024. }
  45025. },
  45026. back: {
  45027. height: math.unit(1.9, "meters"),
  45028. name: "Back",
  45029. image: {
  45030. source: "./media/characters/ashgar/back.svg",
  45031. extra: 1201/1183,
  45032. bottom: 53/1254
  45033. }
  45034. },
  45035. feral: {
  45036. height: math.unit(1.4, "meters"),
  45037. name: "Feral",
  45038. image: {
  45039. source: "./media/characters/ashgar/feral.svg",
  45040. extra: 370/345,
  45041. bottom: 45/415
  45042. }
  45043. },
  45044. },
  45045. [
  45046. {
  45047. name: "Normal",
  45048. height: math.unit(1.9, "meters"),
  45049. default: true
  45050. },
  45051. ]
  45052. ))
  45053. characterMakers.push(() => makeCharacter(
  45054. { name: "Phillip", species: ["wolf"], tags: ["anthro"] },
  45055. {
  45056. regular: {
  45057. height: math.unit(6, "feet"),
  45058. weight: math.unit(220, "lb"),
  45059. name: "Regular",
  45060. image: {
  45061. source: "./media/characters/phillip/regular.svg",
  45062. extra: 1373/1277,
  45063. bottom: 75/1448
  45064. }
  45065. },
  45066. dressed: {
  45067. height: math.unit(6, "feet"),
  45068. weight: math.unit(220, "lb"),
  45069. name: "Dressed",
  45070. image: {
  45071. source: "./media/characters/phillip/dressed.svg",
  45072. extra: 1373/1277,
  45073. bottom: 75/1448
  45074. }
  45075. },
  45076. paw: {
  45077. height: math.unit(1.44, "feet"),
  45078. name: "Paw",
  45079. image: {
  45080. source: "./media/characters/phillip/paw.svg"
  45081. }
  45082. },
  45083. },
  45084. [
  45085. {
  45086. name: "Normal",
  45087. height: math.unit(6, "feet"),
  45088. default: true
  45089. },
  45090. ]
  45091. ))
  45092. characterMakers.push(() => makeCharacter(
  45093. { name: "Uvula", species: ["dragon", "monster"], tags: ["feral"] },
  45094. {
  45095. side: {
  45096. height: math.unit(42, "feet"),
  45097. name: "Side",
  45098. image: {
  45099. source: "./media/characters/uvula/side.svg",
  45100. extra: 683/586,
  45101. bottom: 60/743
  45102. }
  45103. },
  45104. front: {
  45105. height: math.unit(42, "feet"),
  45106. name: "Front",
  45107. image: {
  45108. source: "./media/characters/uvula/front.svg",
  45109. extra: 705/613,
  45110. bottom: 54/759
  45111. }
  45112. },
  45113. maw: {
  45114. height: math.unit(23.5, "feet"),
  45115. name: "Maw",
  45116. image: {
  45117. source: "./media/characters/uvula/maw.svg"
  45118. }
  45119. },
  45120. },
  45121. [
  45122. {
  45123. name: "Original Size",
  45124. height: math.unit(14, "inches")
  45125. },
  45126. {
  45127. name: "Human Size",
  45128. height: math.unit(6, "feet")
  45129. },
  45130. {
  45131. name: "Big",
  45132. height: math.unit(42, "feet"),
  45133. default: true
  45134. },
  45135. {
  45136. name: "Bigger",
  45137. height: math.unit(100, "feet")
  45138. },
  45139. ]
  45140. ))
  45141. characterMakers.push(() => makeCharacter(
  45142. { name: "Lannah", species: ["wolf"], tags: ["anthro"] },
  45143. {
  45144. front: {
  45145. height: math.unit(5 + 11/12, "feet"),
  45146. name: "Front",
  45147. image: {
  45148. source: "./media/characters/lannah/front.svg",
  45149. extra: 1208/1113,
  45150. bottom: 97/1305
  45151. }
  45152. },
  45153. },
  45154. [
  45155. {
  45156. name: "Normal",
  45157. height: math.unit(5 + 11/12, "feet"),
  45158. default: true
  45159. },
  45160. ]
  45161. ))
  45162. characterMakers.push(() => makeCharacter(
  45163. { name: "Emberflame", species: ["ninetales"], tags: ["feral"] },
  45164. {
  45165. front: {
  45166. height: math.unit(6 + 3/12, "feet"),
  45167. weight: math.unit(3.5, "tons"),
  45168. name: "Front",
  45169. image: {
  45170. source: "./media/characters/emberflame/front.svg",
  45171. extra: 1198/672,
  45172. bottom: 82/1280
  45173. }
  45174. },
  45175. side: {
  45176. height: math.unit(6 + 3/12, "feet"),
  45177. weight: math.unit(3.5, "tons"),
  45178. name: "Side",
  45179. image: {
  45180. source: "./media/characters/emberflame/side.svg",
  45181. extra: 938/527,
  45182. bottom: 56/994
  45183. }
  45184. },
  45185. },
  45186. [
  45187. {
  45188. name: "Normal",
  45189. height: math.unit(6 + 3/12, "feet"),
  45190. default: true
  45191. },
  45192. ]
  45193. ))
  45194. characterMakers.push(() => makeCharacter(
  45195. { name: "Sophie Ambrose", species: ["zorgoia"], tags: ["feral"] },
  45196. {
  45197. side: {
  45198. height: math.unit(17.5, "feet"),
  45199. weight: math.unit(35, "tons"),
  45200. name: "Side",
  45201. image: {
  45202. source: "./media/characters/sophie-ambrose/side.svg",
  45203. extra: 1573/1242,
  45204. bottom: 71/1644
  45205. }
  45206. },
  45207. maw: {
  45208. height: math.unit(7.4, "feet"),
  45209. name: "Maw",
  45210. image: {
  45211. source: "./media/characters/sophie-ambrose/maw.svg"
  45212. }
  45213. },
  45214. },
  45215. [
  45216. {
  45217. name: "Normal",
  45218. height: math.unit(17.5, "feet"),
  45219. default: true
  45220. },
  45221. ]
  45222. ))
  45223. characterMakers.push(() => makeCharacter(
  45224. { name: "King Mugi", species: ["kaiju", "canine", "reptile"], tags: ["anthro"] },
  45225. {
  45226. front: {
  45227. height: math.unit(280, "feet"),
  45228. weight: math.unit(550, "tons"),
  45229. name: "Front",
  45230. image: {
  45231. source: "./media/characters/king-mugi/front.svg",
  45232. extra: 1102/947,
  45233. bottom: 104/1206
  45234. }
  45235. },
  45236. },
  45237. [
  45238. {
  45239. name: "King Mugi",
  45240. height: math.unit(280, "feet"),
  45241. default: true
  45242. },
  45243. ]
  45244. ))
  45245. characterMakers.push(() => makeCharacter(
  45246. { name: "Nova (Fox)", species: ["fox"], tags: ["anthro"] },
  45247. {
  45248. female: {
  45249. height: math.unit(300, "meters"),
  45250. name: "Front",
  45251. image: {
  45252. source: "./media/characters/nova-fox/female.svg",
  45253. extra: 664/632,
  45254. bottom: 51/715
  45255. },
  45256. form: "female",
  45257. default: true
  45258. },
  45259. male: {
  45260. height: math.unit(300, "meters"),
  45261. name: "Front",
  45262. image: {
  45263. source: "./media/characters/nova-fox/male.svg",
  45264. extra: 663/631,
  45265. bottom: 30/693
  45266. },
  45267. form: "male",
  45268. default: true
  45269. },
  45270. },
  45271. [
  45272. {
  45273. name: "Macro",
  45274. height: math.unit(300, "meters"),
  45275. default: true,
  45276. allForms: true
  45277. },
  45278. ],
  45279. {
  45280. "female": {
  45281. name: "Female",
  45282. default: true
  45283. },
  45284. "male": {
  45285. name: "Male",
  45286. },
  45287. }
  45288. ))
  45289. characterMakers.push(() => makeCharacter(
  45290. { name: "Sam (Bat)", species: ["bat", "rat"], tags: ["anthro"] },
  45291. {
  45292. front: {
  45293. height: math.unit(6 + 3/12, "feet"),
  45294. weight: math.unit(170, "lb"),
  45295. name: "Front",
  45296. image: {
  45297. source: "./media/characters/sam-bat/front.svg",
  45298. extra: 1601/1411,
  45299. bottom: 125/1726
  45300. }
  45301. },
  45302. back: {
  45303. height: math.unit(6 + 3/12, "feet"),
  45304. weight: math.unit(170, "lb"),
  45305. name: "Back",
  45306. image: {
  45307. source: "./media/characters/sam-bat/back.svg",
  45308. extra: 1577/1405,
  45309. bottom: 58/1635
  45310. }
  45311. },
  45312. },
  45313. [
  45314. {
  45315. name: "Normal",
  45316. height: math.unit(6 + 3/12, "feet"),
  45317. default: true
  45318. },
  45319. ]
  45320. ))
  45321. characterMakers.push(() => makeCharacter(
  45322. { name: "Inari", species: ["eevee"], tags: ["feral"] },
  45323. {
  45324. front: {
  45325. height: math.unit(59, "feet"),
  45326. weight: math.unit(40000, "lb"),
  45327. name: "Front",
  45328. image: {
  45329. source: "./media/characters/inari/front.svg",
  45330. extra: 1884/1350,
  45331. bottom: 95/1979
  45332. }
  45333. },
  45334. },
  45335. [
  45336. {
  45337. name: "Gigantamax",
  45338. height: math.unit(59, "feet"),
  45339. default: true
  45340. },
  45341. ]
  45342. ))
  45343. characterMakers.push(() => makeCharacter(
  45344. { name: "Elizabeth", species: ["bat"], tags: ["anthro"] },
  45345. {
  45346. front: {
  45347. height: math.unit(5 + 8/12, "feet"),
  45348. name: "Front",
  45349. image: {
  45350. source: "./media/characters/elizabeth/front.svg",
  45351. extra: 1395/1298,
  45352. bottom: 54/1449
  45353. }
  45354. },
  45355. mouth: {
  45356. height: math.unit(1.97, "feet"),
  45357. name: "Mouth",
  45358. image: {
  45359. source: "./media/characters/elizabeth/mouth.svg"
  45360. }
  45361. },
  45362. foot: {
  45363. height: math.unit(1.17, "feet"),
  45364. name: "Foot",
  45365. image: {
  45366. source: "./media/characters/elizabeth/foot.svg"
  45367. }
  45368. },
  45369. },
  45370. [
  45371. {
  45372. name: "Normal",
  45373. height: math.unit(5 + 8/12, "feet"),
  45374. default: true
  45375. },
  45376. {
  45377. name: "Minimacro",
  45378. height: math.unit(18, "feet")
  45379. },
  45380. {
  45381. name: "Macro",
  45382. height: math.unit(180, "feet")
  45383. },
  45384. ]
  45385. ))
  45386. characterMakers.push(() => makeCharacter(
  45387. { name: "October Gossamer", species: ["cat"], tags: ["anthro"] },
  45388. {
  45389. front: {
  45390. height: math.unit(5 + 2/12, "feet"),
  45391. name: "Front",
  45392. image: {
  45393. source: "./media/characters/october-gossamer/front.svg",
  45394. extra: 505/454,
  45395. bottom: 7/512
  45396. }
  45397. },
  45398. back: {
  45399. height: math.unit(5 + 2/12, "feet"),
  45400. name: "Back",
  45401. image: {
  45402. source: "./media/characters/october-gossamer/back.svg",
  45403. extra: 501/454,
  45404. bottom: 11/512
  45405. }
  45406. },
  45407. },
  45408. [
  45409. {
  45410. name: "Normal",
  45411. height: math.unit(5 + 2/12, "feet"),
  45412. default: true
  45413. },
  45414. ]
  45415. ))
  45416. characterMakers.push(() => makeCharacter(
  45417. { name: "Epiglottis \"Glottis\" Larynx", species: ["dragon", "monster"], tags: ["anthro"] },
  45418. {
  45419. front: {
  45420. height: math.unit(5, "feet"),
  45421. name: "Front",
  45422. image: {
  45423. source: "./media/characters/epiglottis/front.svg",
  45424. extra: 923/849,
  45425. bottom: 17/940
  45426. }
  45427. },
  45428. },
  45429. [
  45430. {
  45431. name: "Original Size",
  45432. height: math.unit(10, "inches")
  45433. },
  45434. {
  45435. name: "Human Size",
  45436. height: math.unit(5, "feet"),
  45437. default: true
  45438. },
  45439. {
  45440. name: "Big",
  45441. height: math.unit(25, "feet")
  45442. },
  45443. {
  45444. name: "Bigger",
  45445. height: math.unit(50, "feet")
  45446. },
  45447. {
  45448. name: "oh lawd",
  45449. height: math.unit(75, "feet")
  45450. },
  45451. ]
  45452. ))
  45453. characterMakers.push(() => makeCharacter(
  45454. { name: "Lerm", species: ["skink"], tags: ["anthro"] },
  45455. {
  45456. front: {
  45457. height: math.unit(2 + 4/12, "feet"),
  45458. weight: math.unit(60, "lb"),
  45459. name: "Front",
  45460. image: {
  45461. source: "./media/characters/lerm/front.svg",
  45462. extra: 796/790,
  45463. bottom: 79/875
  45464. }
  45465. },
  45466. },
  45467. [
  45468. {
  45469. name: "Normal",
  45470. height: math.unit(2 + 4/12, "feet"),
  45471. default: true
  45472. },
  45473. ]
  45474. ))
  45475. characterMakers.push(() => makeCharacter(
  45476. { name: "Xena Nebadon", species: ["wolf"], tags: ["anthro"] },
  45477. {
  45478. front: {
  45479. height: math.unit(5.5, "feet"),
  45480. weight: math.unit(130, "lb"),
  45481. name: "Front",
  45482. image: {
  45483. source: "./media/characters/xena-nebadon/front.svg",
  45484. extra: 1828/1730,
  45485. bottom: 79/1907
  45486. }
  45487. },
  45488. },
  45489. [
  45490. {
  45491. name: "Tiny Puppy",
  45492. height: math.unit(3, "inches")
  45493. },
  45494. {
  45495. name: "Normal",
  45496. height: math.unit(5.5, "feet"),
  45497. default: true
  45498. },
  45499. {
  45500. name: "Lotta Lady",
  45501. height: math.unit(12, "feet")
  45502. },
  45503. {
  45504. name: "Pretty Big",
  45505. height: math.unit(100, "feet")
  45506. },
  45507. {
  45508. name: "Big",
  45509. height: math.unit(500, "feet")
  45510. },
  45511. {
  45512. name: "Skyscraper Toys",
  45513. height: math.unit(2500, "feet")
  45514. },
  45515. {
  45516. name: "Plane Catcher",
  45517. height: math.unit(8, "miles")
  45518. },
  45519. {
  45520. name: "Planet Toys",
  45521. height: math.unit(15, "earths")
  45522. },
  45523. {
  45524. name: "Stardust",
  45525. height: math.unit(0.25, "galaxies")
  45526. },
  45527. {
  45528. name: "Snacks",
  45529. height: math.unit(70, "universes")
  45530. },
  45531. ]
  45532. ))
  45533. characterMakers.push(() => makeCharacter(
  45534. { name: "Bounty", species: ["bat-eared-fox"], tags: ["anthro"] },
  45535. {
  45536. front: {
  45537. height: math.unit(1.6, "meters"),
  45538. weight: math.unit(60, "kg"),
  45539. name: "Front",
  45540. image: {
  45541. source: "./media/characters/bounty/front.svg",
  45542. extra: 1426/1308,
  45543. bottom: 15/1441
  45544. }
  45545. },
  45546. back: {
  45547. height: math.unit(1.6, "meters"),
  45548. weight: math.unit(60, "kg"),
  45549. name: "Back",
  45550. image: {
  45551. source: "./media/characters/bounty/back.svg",
  45552. extra: 1417/1307,
  45553. bottom: 8/1425
  45554. }
  45555. },
  45556. },
  45557. [
  45558. {
  45559. name: "Normal",
  45560. height: math.unit(1.6, "meters"),
  45561. default: true
  45562. },
  45563. {
  45564. name: "Macro",
  45565. height: math.unit(300, "meters")
  45566. },
  45567. ]
  45568. ))
  45569. characterMakers.push(() => makeCharacter(
  45570. { name: "Mochi", species: ["gryphon", "belted-kingfisher", "snow-leopard", "kaiju"], tags: ["anthro", "feral"] },
  45571. {
  45572. front: {
  45573. height: math.unit(2 + 8/12, "feet"),
  45574. weight: math.unit(15, "lb"),
  45575. name: "Front",
  45576. image: {
  45577. source: "./media/characters/mochi/front.svg",
  45578. extra: 1022/852,
  45579. bottom: 435/1457
  45580. }
  45581. },
  45582. back: {
  45583. height: math.unit(2 + 8/12, "feet"),
  45584. weight: math.unit(15, "lb"),
  45585. name: "Back",
  45586. image: {
  45587. source: "./media/characters/mochi/back.svg",
  45588. extra: 1335/1119,
  45589. bottom: 39/1374
  45590. }
  45591. },
  45592. bird: {
  45593. height: math.unit(2 + 8/12, "feet"),
  45594. weight: math.unit(15, "lb"),
  45595. name: "Bird",
  45596. image: {
  45597. source: "./media/characters/mochi/bird.svg",
  45598. extra: 1251/1113,
  45599. bottom: 178/1429
  45600. }
  45601. },
  45602. kaiju: {
  45603. height: math.unit(154, "feet"),
  45604. weight: math.unit(1e7, "lb"),
  45605. name: "Kaiju",
  45606. image: {
  45607. source: "./media/characters/mochi/kaiju.svg",
  45608. extra: 460/324,
  45609. bottom: 40/500
  45610. }
  45611. },
  45612. head: {
  45613. height: math.unit(1.21, "feet"),
  45614. name: "Head",
  45615. image: {
  45616. source: "./media/characters/mochi/head.svg"
  45617. }
  45618. },
  45619. alternateTail: {
  45620. height: math.unit(2 + 8/12, "feet"),
  45621. weight: math.unit(45, "lb"),
  45622. name: "Alternate Tail",
  45623. image: {
  45624. source: "./media/characters/mochi/alternate-tail.svg",
  45625. extra: 139/76,
  45626. bottom: 45/184
  45627. }
  45628. },
  45629. },
  45630. [
  45631. {
  45632. name: "Micro",
  45633. height: math.unit(2, "inches")
  45634. },
  45635. {
  45636. name: "Normal",
  45637. height: math.unit(2 + 8/12, "feet"),
  45638. default: true
  45639. },
  45640. {
  45641. name: "Macro",
  45642. height: math.unit(106, "feet")
  45643. },
  45644. ]
  45645. ))
  45646. characterMakers.push(() => makeCharacter(
  45647. { name: "Sarel", species: ["omnifalcon"], tags: ["anthro"] },
  45648. {
  45649. front: {
  45650. height: math.unit(5.67, "feet"),
  45651. weight: math.unit(135, "lb"),
  45652. name: "Front",
  45653. image: {
  45654. source: "./media/characters/sarel/front.svg",
  45655. extra: 865/788,
  45656. bottom: 97/962
  45657. }
  45658. },
  45659. back: {
  45660. height: math.unit(5.67, "feet"),
  45661. weight: math.unit(135, "lb"),
  45662. name: "Back",
  45663. image: {
  45664. source: "./media/characters/sarel/back.svg",
  45665. extra: 857/777,
  45666. bottom: 32/889
  45667. }
  45668. },
  45669. chozoan: {
  45670. height: math.unit(5.67, "feet"),
  45671. weight: math.unit(135, "lb"),
  45672. name: "Chozoan",
  45673. image: {
  45674. source: "./media/characters/sarel/chozoan.svg",
  45675. extra: 865/788,
  45676. bottom: 97/962
  45677. }
  45678. },
  45679. current: {
  45680. height: math.unit(5.67, "feet"),
  45681. weight: math.unit(135, "lb"),
  45682. name: "Current",
  45683. image: {
  45684. source: "./media/characters/sarel/current.svg",
  45685. extra: 865/788,
  45686. bottom: 97/962
  45687. }
  45688. },
  45689. head: {
  45690. height: math.unit(1.77, "feet"),
  45691. name: "Head",
  45692. image: {
  45693. source: "./media/characters/sarel/head.svg"
  45694. }
  45695. },
  45696. claws: {
  45697. height: math.unit(1.8, "feet"),
  45698. name: "Claws",
  45699. image: {
  45700. source: "./media/characters/sarel/claws.svg"
  45701. }
  45702. },
  45703. clawsAlt: {
  45704. height: math.unit(1.8, "feet"),
  45705. name: "Claws-alt",
  45706. image: {
  45707. source: "./media/characters/sarel/claws-alt.svg"
  45708. }
  45709. },
  45710. },
  45711. [
  45712. {
  45713. name: "Normal",
  45714. height: math.unit(5.67, "feet"),
  45715. default: true
  45716. },
  45717. ]
  45718. ))
  45719. characterMakers.push(() => makeCharacter(
  45720. { name: "Alyonia", species: ["shark"], tags: ["anthro"] },
  45721. {
  45722. front: {
  45723. height: math.unit(5500, "feet"),
  45724. name: "Front",
  45725. image: {
  45726. source: "./media/characters/alyonia/front.svg",
  45727. extra: 1200/1135,
  45728. bottom: 29/1229
  45729. }
  45730. },
  45731. back: {
  45732. height: math.unit(5500, "feet"),
  45733. name: "Back",
  45734. image: {
  45735. source: "./media/characters/alyonia/back.svg",
  45736. extra: 1205/1138,
  45737. bottom: 10/1215
  45738. }
  45739. },
  45740. },
  45741. [
  45742. {
  45743. name: "Small",
  45744. height: math.unit(10, "feet")
  45745. },
  45746. {
  45747. name: "Macro",
  45748. height: math.unit(500, "feet")
  45749. },
  45750. {
  45751. name: "Mega Macro",
  45752. height: math.unit(5500, "feet"),
  45753. default: true
  45754. },
  45755. {
  45756. name: "Mega Macro+",
  45757. height: math.unit(500000, "feet")
  45758. },
  45759. {
  45760. name: "Giga Macro",
  45761. height: math.unit(3000, "miles")
  45762. },
  45763. {
  45764. name: "Tera Macro",
  45765. height: math.unit(2.8e6, "miles")
  45766. },
  45767. {
  45768. name: "Galactic",
  45769. height: math.unit(120000, "lightyears")
  45770. },
  45771. ]
  45772. ))
  45773. characterMakers.push(() => makeCharacter(
  45774. { name: "Autumn", species: ["werewolf", "human"], tags: ["anthro"] },
  45775. {
  45776. werewolf: {
  45777. height: math.unit(8, "feet"),
  45778. weight: math.unit(425, "lb"),
  45779. name: "Werewolf",
  45780. image: {
  45781. source: "./media/characters/autumn/werewolf.svg",
  45782. extra: 2154/2031,
  45783. bottom: 160/2314
  45784. }
  45785. },
  45786. human: {
  45787. height: math.unit(5 + 8/12, "feet"),
  45788. weight: math.unit(150, "lb"),
  45789. name: "Human",
  45790. image: {
  45791. source: "./media/characters/autumn/human.svg",
  45792. extra: 1200/1149,
  45793. bottom: 30/1230
  45794. }
  45795. },
  45796. },
  45797. [
  45798. {
  45799. name: "Normal",
  45800. height: math.unit(8, "feet"),
  45801. default: true
  45802. },
  45803. ]
  45804. ))
  45805. characterMakers.push(() => makeCharacter(
  45806. { name: "Cobalt (Charizard)", species: ["charizard"], tags: ["anthro"] },
  45807. {
  45808. front: {
  45809. height: math.unit(8 + 5/12, "feet"),
  45810. weight: math.unit(825, "lb"),
  45811. name: "Front",
  45812. image: {
  45813. source: "./media/characters/cobalt-charizard/front.svg",
  45814. extra: 1268/1155,
  45815. bottom: 122/1390
  45816. }
  45817. },
  45818. side: {
  45819. height: math.unit(8 + 5/12, "feet"),
  45820. weight: math.unit(825, "lb"),
  45821. name: "Side",
  45822. image: {
  45823. source: "./media/characters/cobalt-charizard/side.svg",
  45824. extra: 1348/1257,
  45825. bottom: 58/1406
  45826. }
  45827. },
  45828. gMax: {
  45829. height: math.unit(134 + 11/12, "feet"),
  45830. name: "G-Max",
  45831. image: {
  45832. source: "./media/characters/cobalt-charizard/g-max.svg",
  45833. extra: 1835/1541,
  45834. bottom: 151/1986
  45835. }
  45836. },
  45837. },
  45838. [
  45839. {
  45840. name: "Normal",
  45841. height: math.unit(8 + 5/12, "feet"),
  45842. default: true
  45843. },
  45844. ]
  45845. ))
  45846. characterMakers.push(() => makeCharacter(
  45847. { name: "Stella", species: ["gryphon"], tags: ["anthro"] },
  45848. {
  45849. front: {
  45850. height: math.unit(6 + 3/12, "feet"),
  45851. weight: math.unit(210, "lb"),
  45852. name: "Front",
  45853. image: {
  45854. source: "./media/characters/stella/front.svg",
  45855. extra: 3549/3335,
  45856. bottom: 51/3600
  45857. }
  45858. },
  45859. },
  45860. [
  45861. {
  45862. name: "Normal",
  45863. height: math.unit(6 + 3/12, "feet"),
  45864. default: true
  45865. },
  45866. ]
  45867. ))
  45868. characterMakers.push(() => makeCharacter(
  45869. { name: "Riley Bishop", species: ["human"], tags: ["anthro"] },
  45870. {
  45871. front: {
  45872. height: math.unit(5, "feet"),
  45873. weight: math.unit(90, "lb"),
  45874. name: "Front",
  45875. image: {
  45876. source: "./media/characters/riley-bishop/front.svg",
  45877. extra: 1450/1428,
  45878. bottom: 152/1602
  45879. }
  45880. },
  45881. },
  45882. [
  45883. {
  45884. name: "Normal",
  45885. height: math.unit(5, "feet"),
  45886. default: true
  45887. },
  45888. ]
  45889. ))
  45890. characterMakers.push(() => makeCharacter(
  45891. { name: "Theo (Arcanine)", species: ["arcanine"], tags: ["feral"] },
  45892. {
  45893. side: {
  45894. height: math.unit(8 + 2/12, "feet"),
  45895. weight: math.unit(500, "kg"),
  45896. name: "Side",
  45897. image: {
  45898. source: "./media/characters/theo-arcanine/side.svg",
  45899. extra: 1342/1074,
  45900. bottom: 111/1453
  45901. }
  45902. },
  45903. },
  45904. [
  45905. {
  45906. name: "Normal",
  45907. height: math.unit(8 + 2/12, "feet"),
  45908. default: true
  45909. },
  45910. ]
  45911. ))
  45912. characterMakers.push(() => makeCharacter(
  45913. { name: "Kali", species: ["avali"], tags: ["anthro"] },
  45914. {
  45915. front: {
  45916. height: math.unit(4, "feet"),
  45917. name: "Front",
  45918. image: {
  45919. source: "./media/characters/kali/front.svg",
  45920. extra: 1074/867,
  45921. bottom: 34/1108
  45922. }
  45923. },
  45924. back: {
  45925. height: math.unit(4, "feet"),
  45926. name: "Back",
  45927. image: {
  45928. source: "./media/characters/kali/back.svg",
  45929. extra: 1068/863,
  45930. bottom: 26/1094
  45931. }
  45932. },
  45933. frontAlt: {
  45934. height: math.unit(4, "feet"),
  45935. name: "Front (Alt)",
  45936. image: {
  45937. source: "./media/characters/kali/front-alt.svg",
  45938. extra: 1921/1357,
  45939. bottom: 70/1991
  45940. }
  45941. },
  45942. },
  45943. [
  45944. {
  45945. name: "Normal",
  45946. height: math.unit(4, "feet"),
  45947. default: true
  45948. },
  45949. {
  45950. name: "Big'vali",
  45951. height: math.unit(11, "feet")
  45952. },
  45953. {
  45954. name: "Macro",
  45955. height: math.unit(32, "meters")
  45956. },
  45957. {
  45958. name: "Macro+",
  45959. height: math.unit(150, "meters")
  45960. },
  45961. {
  45962. name: "Megamacro",
  45963. height: math.unit(7500, "meters")
  45964. },
  45965. {
  45966. name: "Megamacro+",
  45967. height: math.unit(80, "kilometers")
  45968. },
  45969. ]
  45970. ))
  45971. characterMakers.push(() => makeCharacter(
  45972. { name: "Gapp", species: ["zorgoia"], tags: ["feral"] },
  45973. {
  45974. side: {
  45975. height: math.unit(5 + 11/12, "feet"),
  45976. weight: math.unit(236, "lb"),
  45977. name: "Side",
  45978. image: {
  45979. source: "./media/characters/gapp/side.svg",
  45980. extra: 775/340,
  45981. bottom: 58/833
  45982. }
  45983. },
  45984. mouth: {
  45985. height: math.unit(2.98, "feet"),
  45986. name: "Mouth",
  45987. image: {
  45988. source: "./media/characters/gapp/mouth.svg"
  45989. }
  45990. },
  45991. },
  45992. [
  45993. {
  45994. name: "Normal",
  45995. height: math.unit(5 + 1/12, "feet"),
  45996. default: true
  45997. },
  45998. ]
  45999. ))
  46000. characterMakers.push(() => makeCharacter(
  46001. { name: "Persephone", species: ["absol"], tags: ["anthro"] },
  46002. {
  46003. front: {
  46004. height: math.unit(6, "feet"),
  46005. name: "Front",
  46006. image: {
  46007. source: "./media/characters/persephone/front.svg",
  46008. extra: 1895/1717,
  46009. bottom: 96/1991
  46010. }
  46011. },
  46012. back: {
  46013. height: math.unit(6, "feet"),
  46014. name: "Back",
  46015. image: {
  46016. source: "./media/characters/persephone/back.svg",
  46017. extra: 1868/1679,
  46018. bottom: 26/1894
  46019. }
  46020. },
  46021. casual: {
  46022. height: math.unit(6, "feet"),
  46023. name: "Casual",
  46024. image: {
  46025. source: "./media/characters/persephone/casual.svg",
  46026. extra: 1713/1541,
  46027. bottom: 76/1789
  46028. }
  46029. },
  46030. gaming: {
  46031. height: math.unit(3.55, "feet"),
  46032. name: "Gaming",
  46033. image: {
  46034. source: "./media/characters/persephone/gaming.svg",
  46035. extra: 1242/1038,
  46036. bottom: 66/1308
  46037. }
  46038. },
  46039. head: {
  46040. height: math.unit(2.15, "feet"),
  46041. name: "😐",
  46042. image: {
  46043. source: "./media/characters/persephone/head.svg"
  46044. }
  46045. },
  46046. talking: {
  46047. height: math.unit(2.5, "feet"),
  46048. name: "💬",
  46049. image: {
  46050. source: "./media/characters/persephone/talking.svg"
  46051. }
  46052. },
  46053. hmm: {
  46054. height: math.unit(2.28, "feet"),
  46055. name: "🤨",
  46056. image: {
  46057. source: "./media/characters/persephone/hmm.svg"
  46058. }
  46059. },
  46060. },
  46061. [
  46062. {
  46063. name: "Human Size",
  46064. height: math.unit(6, "feet")
  46065. },
  46066. {
  46067. name: "Big Steppy",
  46068. height: math.unit(600, "meters"),
  46069. default: true
  46070. },
  46071. {
  46072. name: "Galaxy Brain",
  46073. height: math.unit(1, "zettameter")
  46074. },
  46075. ]
  46076. ))
  46077. characterMakers.push(() => makeCharacter(
  46078. { name: "Riley Foxthing", species: ["fox"], tags: ["anthro"] },
  46079. {
  46080. front: {
  46081. height: math.unit(1.85, "meters"),
  46082. name: "Front",
  46083. image: {
  46084. source: "./media/characters/riley-foxthing/front.svg",
  46085. extra: 1495/1354,
  46086. bottom: 122/1617
  46087. }
  46088. },
  46089. frontAlt: {
  46090. height: math.unit(1.85, "meters"),
  46091. name: "Front (Alt)",
  46092. image: {
  46093. source: "./media/characters/riley-foxthing/front-alt.svg",
  46094. extra: 1572/1389,
  46095. bottom: 116/1688
  46096. }
  46097. },
  46098. },
  46099. [
  46100. {
  46101. name: "Normal Sized",
  46102. height: math.unit(1.85, "meters"),
  46103. default: true
  46104. },
  46105. {
  46106. name: "Quite Sizable",
  46107. height: math.unit(5, "meters")
  46108. },
  46109. {
  46110. name: "Rather Large",
  46111. height: math.unit(20, "meters")
  46112. },
  46113. {
  46114. name: "Macro",
  46115. height: math.unit(450, "meters")
  46116. },
  46117. {
  46118. name: "Giga",
  46119. height: math.unit(5, "km")
  46120. },
  46121. ]
  46122. ))
  46123. characterMakers.push(() => makeCharacter(
  46124. { name: "Blizzard", species: ["arctic-fox"], tags: ["anthro"] },
  46125. {
  46126. front: {
  46127. height: math.unit(6, "feet"),
  46128. weight: math.unit(200, "lb"),
  46129. name: "Front",
  46130. image: {
  46131. source: "./media/characters/blizzard/front.svg",
  46132. extra: 1136/990,
  46133. bottom: 136/1272
  46134. }
  46135. },
  46136. back: {
  46137. height: math.unit(6, "feet"),
  46138. weight: math.unit(200, "lb"),
  46139. name: "Back",
  46140. image: {
  46141. source: "./media/characters/blizzard/back.svg",
  46142. extra: 1175/1034,
  46143. bottom: 97/1272
  46144. }
  46145. },
  46146. sitting: {
  46147. height: math.unit(3.725, "feet"),
  46148. weight: math.unit(200, "lb"),
  46149. name: "Sitting",
  46150. image: {
  46151. source: "./media/characters/blizzard/sitting.svg",
  46152. extra: 581/485,
  46153. bottom: 90/671
  46154. }
  46155. },
  46156. frontWizard: {
  46157. height: math.unit(7.9, "feet"),
  46158. weight: math.unit(200, "lb"),
  46159. name: "Front (Wizard)",
  46160. image: {
  46161. source: "./media/characters/blizzard/front-wizard.svg"
  46162. }
  46163. },
  46164. backWizard: {
  46165. height: math.unit(7.9, "feet"),
  46166. weight: math.unit(200, "lb"),
  46167. name: "Back (Wizard)",
  46168. image: {
  46169. source: "./media/characters/blizzard/back-wizard.svg"
  46170. }
  46171. },
  46172. frontNsfw: {
  46173. height: math.unit(6, "feet"),
  46174. weight: math.unit(200, "lb"),
  46175. name: "Front (NSFW)",
  46176. image: {
  46177. source: "./media/characters/blizzard/front-nsfw.svg",
  46178. extra: 1136/990,
  46179. bottom: 136/1272
  46180. }
  46181. },
  46182. backNsfw: {
  46183. height: math.unit(6, "feet"),
  46184. weight: math.unit(200, "lb"),
  46185. name: "Back (NSFW)",
  46186. image: {
  46187. source: "./media/characters/blizzard/back-nsfw.svg",
  46188. extra: 1175/1034,
  46189. bottom: 97/1272
  46190. }
  46191. },
  46192. sittingNsfw: {
  46193. height: math.unit(3.725, "feet"),
  46194. weight: math.unit(200, "lb"),
  46195. name: "Sitting (NSFW)",
  46196. image: {
  46197. source: "./media/characters/blizzard/sitting-nsfw.svg",
  46198. extra: 581/485,
  46199. bottom: 90/671
  46200. }
  46201. },
  46202. wizardFrontNsfw: {
  46203. height: math.unit(7.9, "feet"),
  46204. weight: math.unit(200, "lb"),
  46205. name: "Wizard (Front, NSFW)",
  46206. image: {
  46207. source: "./media/characters/blizzard/wizard-front-nsfw.svg"
  46208. }
  46209. },
  46210. },
  46211. [
  46212. {
  46213. name: "Normal",
  46214. height: math.unit(6, "feet"),
  46215. default: true
  46216. },
  46217. ]
  46218. ))
  46219. characterMakers.push(() => makeCharacter(
  46220. { name: "Lumi", species: ["snow-tiger"], tags: ["anthro"] },
  46221. {
  46222. front: {
  46223. height: math.unit(5 + 2/12, "feet"),
  46224. name: "Front",
  46225. image: {
  46226. source: "./media/characters/lumi/front.svg",
  46227. extra: 1328/1268,
  46228. bottom: 103/1431
  46229. }
  46230. },
  46231. back: {
  46232. height: math.unit(5 + 2/12, "feet"),
  46233. name: "Back",
  46234. image: {
  46235. source: "./media/characters/lumi/back.svg",
  46236. extra: 1381/1327,
  46237. bottom: 43/1424
  46238. }
  46239. },
  46240. },
  46241. [
  46242. {
  46243. name: "Normal",
  46244. height: math.unit(5 + 2/12, "feet"),
  46245. default: true
  46246. },
  46247. ]
  46248. ))
  46249. characterMakers.push(() => makeCharacter(
  46250. { name: "Aliya Cotton", species: ["rabbit"], tags: ["anthro"] },
  46251. {
  46252. front: {
  46253. height: math.unit(5 + 9/12, "feet"),
  46254. name: "Front",
  46255. image: {
  46256. source: "./media/characters/aliya-cotton/front.svg",
  46257. extra: 577/564,
  46258. bottom: 29/606
  46259. }
  46260. },
  46261. },
  46262. [
  46263. {
  46264. name: "Normal",
  46265. height: math.unit(5 + 9/12, "feet"),
  46266. default: true
  46267. },
  46268. ]
  46269. ))
  46270. characterMakers.push(() => makeCharacter(
  46271. { name: "Noah (Luxray)", species: ["luxray"], tags: ["anthro"] },
  46272. {
  46273. front: {
  46274. height: math.unit(2.7, "meters"),
  46275. weight: math.unit(25000, "lb"),
  46276. name: "Front",
  46277. image: {
  46278. source: "./media/characters/noah-luxray/front.svg",
  46279. extra: 1644/825,
  46280. bottom: 339/1983
  46281. }
  46282. },
  46283. side: {
  46284. height: math.unit(2.97, "meters"),
  46285. weight: math.unit(25000, "lb"),
  46286. name: "Side",
  46287. image: {
  46288. source: "./media/characters/noah-luxray/side.svg",
  46289. extra: 1319/650,
  46290. bottom: 163/1482
  46291. }
  46292. },
  46293. dick: {
  46294. height: math.unit(7.4, "feet"),
  46295. weight: math.unit(2500, "lb"),
  46296. name: "Dick",
  46297. image: {
  46298. source: "./media/characters/noah-luxray/dick.svg"
  46299. }
  46300. },
  46301. dickAlt: {
  46302. height: math.unit(10.83, "feet"),
  46303. weight: math.unit(2500, "lb"),
  46304. name: "Dick-alt",
  46305. image: {
  46306. source: "./media/characters/noah-luxray/dick-alt.svg"
  46307. }
  46308. },
  46309. },
  46310. [
  46311. {
  46312. name: "BIG",
  46313. height: math.unit(2.7, "meters"),
  46314. default: true
  46315. },
  46316. ]
  46317. ))
  46318. characterMakers.push(() => makeCharacter(
  46319. { name: "Arion", species: ["horse"], tags: ["anthro"] },
  46320. {
  46321. standing: {
  46322. height: math.unit(183, "cm"),
  46323. weight: math.unit(68, "kg"),
  46324. name: "Standing",
  46325. image: {
  46326. source: "./media/characters/arion/standing.svg",
  46327. extra: 1869/1807,
  46328. bottom: 93/1962
  46329. }
  46330. },
  46331. reclining: {
  46332. height: math.unit(70.5, "cm"),
  46333. weight: math.unit(68, "lb"),
  46334. name: "Reclining",
  46335. image: {
  46336. source: "./media/characters/arion/reclining.svg",
  46337. extra: 937/870,
  46338. bottom: 63/1000
  46339. }
  46340. },
  46341. },
  46342. [
  46343. {
  46344. name: "Colossus Size, Low",
  46345. height: math.unit(33, "meters"),
  46346. default: true
  46347. },
  46348. {
  46349. name: "Colossus Size, Mid",
  46350. height: math.unit(52, "meters")
  46351. },
  46352. {
  46353. name: "Colossus Size, High",
  46354. height: math.unit(60, "meters")
  46355. },
  46356. {
  46357. name: "Titan Size, Low",
  46358. height: math.unit(91, "meters"),
  46359. },
  46360. {
  46361. name: "Titan Size, Mid",
  46362. height: math.unit(122, "meters")
  46363. },
  46364. {
  46365. name: "Titan Size, High",
  46366. height: math.unit(162, "meters")
  46367. },
  46368. ]
  46369. ))
  46370. characterMakers.push(() => makeCharacter(
  46371. { name: "Stellar Marbey", species: ["marble-fox"], tags: ["anthro"] },
  46372. {
  46373. front: {
  46374. height: math.unit(53, "meters"),
  46375. name: "Front",
  46376. image: {
  46377. source: "./media/characters/stellar-marbey/front.svg",
  46378. extra: 1913/1805,
  46379. bottom: 92/2005
  46380. }
  46381. },
  46382. back: {
  46383. height: math.unit(53, "meters"),
  46384. name: "Back",
  46385. image: {
  46386. source: "./media/characters/stellar-marbey/back.svg",
  46387. extra: 1960/1851,
  46388. bottom: 28/1988
  46389. }
  46390. },
  46391. mouth: {
  46392. height: math.unit(3.5, "meters"),
  46393. name: "Mouth",
  46394. image: {
  46395. source: "./media/characters/stellar-marbey/mouth.svg"
  46396. }
  46397. },
  46398. },
  46399. [
  46400. {
  46401. name: "Macro",
  46402. height: math.unit(53, "meters"),
  46403. default: true
  46404. },
  46405. ]
  46406. ))
  46407. characterMakers.push(() => makeCharacter(
  46408. { name: "Matsu", species: ["dragon", "deer"], tags: ["anthro"] },
  46409. {
  46410. front: {
  46411. height: math.unit(8 + 1/12, "feet"),
  46412. weight: math.unit(233, "lb"),
  46413. name: "Front",
  46414. image: {
  46415. source: "./media/characters/matsu/front.svg",
  46416. extra: 832/772,
  46417. bottom: 40/872
  46418. }
  46419. },
  46420. back: {
  46421. height: math.unit(8 + 1/12, "feet"),
  46422. weight: math.unit(233, "lb"),
  46423. name: "Back",
  46424. image: {
  46425. source: "./media/characters/matsu/back.svg",
  46426. extra: 839/780,
  46427. bottom: 47/886
  46428. }
  46429. },
  46430. },
  46431. [
  46432. {
  46433. name: "Normal",
  46434. height: math.unit(8 + 1/12, "feet"),
  46435. default: true
  46436. },
  46437. ]
  46438. ))
  46439. characterMakers.push(() => makeCharacter(
  46440. { name: "Thiz", species: ["gremlin"], tags: ["anthro"] },
  46441. {
  46442. front: {
  46443. height: math.unit(4, "feet"),
  46444. weight: math.unit(148, "lb"),
  46445. name: "Front",
  46446. image: {
  46447. source: "./media/characters/thiz/front.svg",
  46448. extra: 1913/1748,
  46449. bottom: 62/1975
  46450. }
  46451. },
  46452. },
  46453. [
  46454. {
  46455. name: "Normal",
  46456. height: math.unit(4, "feet"),
  46457. default: true
  46458. },
  46459. ]
  46460. ))
  46461. characterMakers.push(() => makeCharacter(
  46462. { name: "Marcel", species: ["king-wickerbeast"], tags: ["anthro"] },
  46463. {
  46464. front: {
  46465. height: math.unit(7 + 6/12, "feet"),
  46466. weight: math.unit(267, "lb"),
  46467. name: "Front",
  46468. image: {
  46469. source: "./media/characters/marcel/front.svg",
  46470. extra: 1221/1096,
  46471. bottom: 76/1297
  46472. }
  46473. },
  46474. },
  46475. [
  46476. {
  46477. name: "Normal",
  46478. height: math.unit(7 + 6/12, "feet"),
  46479. default: true
  46480. },
  46481. ]
  46482. ))
  46483. characterMakers.push(() => makeCharacter(
  46484. { name: "Flake", species: ["dragon"], tags: ["feral"] },
  46485. {
  46486. side: {
  46487. height: math.unit(42, "meters"),
  46488. name: "Side",
  46489. image: {
  46490. source: "./media/characters/flake/side.svg",
  46491. extra: 1525/1306,
  46492. bottom: 209/1734
  46493. }
  46494. },
  46495. },
  46496. [
  46497. {
  46498. name: "Normal",
  46499. height: math.unit(42, "meters"),
  46500. default: true
  46501. },
  46502. ]
  46503. ))
  46504. characterMakers.push(() => makeCharacter(
  46505. { name: "Someonne", species: ["alien", "robot"], tags: ["anthro"] },
  46506. {
  46507. dressed: {
  46508. height: math.unit(6 + 4/12, "feet"),
  46509. weight: math.unit(520, "lb"),
  46510. name: "Dressed",
  46511. image: {
  46512. source: "./media/characters/someonne/dressed.svg",
  46513. extra: 1020/1010,
  46514. bottom: 178/1198
  46515. }
  46516. },
  46517. undressed: {
  46518. height: math.unit(6 + 4/12, "feet"),
  46519. weight: math.unit(520, "lb"),
  46520. name: "Undressed",
  46521. image: {
  46522. source: "./media/characters/someonne/undressed.svg",
  46523. extra: 1019/1014,
  46524. bottom: 169/1188
  46525. }
  46526. },
  46527. },
  46528. [
  46529. {
  46530. name: "Normal",
  46531. height: math.unit(6 + 4/12, "feet"),
  46532. default: true
  46533. },
  46534. ]
  46535. ))
  46536. characterMakers.push(() => makeCharacter(
  46537. { name: "Till", species: ["kobold"], tags: ["anthro"] },
  46538. {
  46539. front: {
  46540. height: math.unit(3, "feet"),
  46541. weight: math.unit(30, "lb"),
  46542. name: "Front",
  46543. image: {
  46544. source: "./media/characters/till/front.svg",
  46545. extra: 892/823,
  46546. bottom: 55/947
  46547. }
  46548. },
  46549. },
  46550. [
  46551. {
  46552. name: "Normal",
  46553. height: math.unit(3, "feet"),
  46554. default: true
  46555. },
  46556. ]
  46557. ))
  46558. characterMakers.push(() => makeCharacter(
  46559. { name: "Sydney Heki", species: ["werewolf"], tags: ["anthro"] },
  46560. {
  46561. front: {
  46562. height: math.unit(9 + 8/12, "feet"),
  46563. weight: math.unit(800, "lb"),
  46564. name: "Front",
  46565. image: {
  46566. source: "./media/characters/sydney-heki/front.svg",
  46567. extra: 1360/1300,
  46568. bottom: 22/1382
  46569. }
  46570. },
  46571. back: {
  46572. height: math.unit(9 + 8/12, "feet"),
  46573. weight: math.unit(800, "lb"),
  46574. name: "Back",
  46575. image: {
  46576. source: "./media/characters/sydney-heki/back.svg",
  46577. extra: 1356/1293,
  46578. bottom: 12/1368
  46579. }
  46580. },
  46581. frontDressed: {
  46582. height: math.unit(9 + 8/12, "feet"),
  46583. weight: math.unit(800, "lb"),
  46584. name: "Front-dressed",
  46585. image: {
  46586. source: "./media/characters/sydney-heki/front-dressed.svg",
  46587. extra: 1360/1300,
  46588. bottom: 22/1382
  46589. }
  46590. },
  46591. },
  46592. [
  46593. {
  46594. name: "Normal",
  46595. height: math.unit(9 + 8/12, "feet"),
  46596. default: true
  46597. },
  46598. {
  46599. name: "Macro",
  46600. height: math.unit(500, "feet")
  46601. },
  46602. {
  46603. name: "Megamacro",
  46604. height: math.unit(3.6, "miles")
  46605. },
  46606. ]
  46607. ))
  46608. characterMakers.push(() => makeCharacter(
  46609. { name: "Fowler Karlsson", species: ["horse"], tags: ["anthro"] },
  46610. {
  46611. front: {
  46612. height: math.unit(200, "cm"),
  46613. weight: math.unit(250, "lb"),
  46614. name: "Front",
  46615. image: {
  46616. source: "./media/characters/fowler-karlsson/front.svg",
  46617. extra: 897/845,
  46618. bottom: 123/1020
  46619. }
  46620. },
  46621. back: {
  46622. height: math.unit(200, "cm"),
  46623. weight: math.unit(250, "lb"),
  46624. name: "Back",
  46625. image: {
  46626. source: "./media/characters/fowler-karlsson/back.svg",
  46627. extra: 999/944,
  46628. bottom: 26/1025
  46629. }
  46630. },
  46631. dick: {
  46632. height: math.unit(1.92, "feet"),
  46633. weight: math.unit(150, "lb"),
  46634. name: "Dick",
  46635. image: {
  46636. source: "./media/characters/fowler-karlsson/dick.svg"
  46637. }
  46638. },
  46639. },
  46640. [
  46641. {
  46642. name: "Normal",
  46643. height: math.unit(200, "cm"),
  46644. default: true
  46645. },
  46646. {
  46647. name: "Smaller Macro",
  46648. height: math.unit(90, "m")
  46649. },
  46650. {
  46651. name: "Macro",
  46652. height: math.unit(150, "m")
  46653. },
  46654. {
  46655. name: "Bigger Macro",
  46656. height: math.unit(300, "m")
  46657. },
  46658. ]
  46659. ))
  46660. characterMakers.push(() => makeCharacter(
  46661. { name: "Rylide", species: ["jackalope"], tags: ["taur"] },
  46662. {
  46663. side: {
  46664. height: math.unit(8 + 2/12, "feet"),
  46665. weight: math.unit(1, "tonne"),
  46666. name: "Side",
  46667. image: {
  46668. source: "./media/characters/rylide/side.svg",
  46669. extra: 1318/1034,
  46670. bottom: 106/1424
  46671. }
  46672. },
  46673. sitting: {
  46674. height: math.unit(303, "cm"),
  46675. weight: math.unit(1, "tonne"),
  46676. name: "Sitting",
  46677. image: {
  46678. source: "./media/characters/rylide/sitting.svg",
  46679. extra: 1303/1103,
  46680. bottom: 36/1339
  46681. }
  46682. },
  46683. },
  46684. [
  46685. {
  46686. name: "Normal",
  46687. height: math.unit(8 + 2/12, "feet"),
  46688. default: true
  46689. },
  46690. ]
  46691. ))
  46692. characterMakers.push(() => makeCharacter(
  46693. { name: "Pudask", species: ["european-polecat"], tags: ["anthro"] },
  46694. {
  46695. front: {
  46696. height: math.unit(5 + 10/12, "feet"),
  46697. weight: math.unit(160, "lb"),
  46698. name: "Front",
  46699. image: {
  46700. source: "./media/characters/pudask/front.svg",
  46701. extra: 1616/1590,
  46702. bottom: 161/1777
  46703. }
  46704. },
  46705. },
  46706. [
  46707. {
  46708. name: "Ferret Height",
  46709. height: math.unit(2 + 5/12, "feet")
  46710. },
  46711. {
  46712. name: "Canon Height",
  46713. height: math.unit(5 + 10/12, "feet"),
  46714. default: true
  46715. },
  46716. ]
  46717. ))
  46718. characterMakers.push(() => makeCharacter(
  46719. { name: "Ramita", species: ["teshari"], tags: ["anthro"] },
  46720. {
  46721. front: {
  46722. height: math.unit(3 + 6/12, "feet"),
  46723. weight: math.unit(60, "lb"),
  46724. name: "Front",
  46725. image: {
  46726. source: "./media/characters/ramita/front.svg",
  46727. extra: 1402/1232,
  46728. bottom: 62/1464
  46729. }
  46730. },
  46731. dressed: {
  46732. height: math.unit(3 + 6/12, "feet"),
  46733. weight: math.unit(60, "lb"),
  46734. name: "Dressed",
  46735. image: {
  46736. source: "./media/characters/ramita/dressed.svg",
  46737. extra: 1534/1249,
  46738. bottom: 50/1584
  46739. }
  46740. },
  46741. },
  46742. [
  46743. {
  46744. name: "Normal",
  46745. height: math.unit(3 + 6/12, "feet"),
  46746. default: true
  46747. },
  46748. ]
  46749. ))
  46750. characterMakers.push(() => makeCharacter(
  46751. { name: "Ark", species: ["dragon"], tags: ["anthro"] },
  46752. {
  46753. front: {
  46754. height: math.unit(8, "feet"),
  46755. name: "Front",
  46756. image: {
  46757. source: "./media/characters/ark/front.svg",
  46758. extra: 772/693,
  46759. bottom: 45/817
  46760. }
  46761. },
  46762. },
  46763. [
  46764. {
  46765. name: "Normal",
  46766. height: math.unit(8, "feet"),
  46767. default: true
  46768. },
  46769. ]
  46770. ))
  46771. characterMakers.push(() => makeCharacter(
  46772. { name: "Ludwig-Horn", species: ["tiger", "dragon"], tags: ["anthro"] },
  46773. {
  46774. front: {
  46775. height: math.unit(6, "feet"),
  46776. weight: math.unit(250, "lb"),
  46777. volume: math.unit(5/8, "gallons"),
  46778. name: "Front",
  46779. image: {
  46780. source: "./media/characters/ludwig-horn/front.svg",
  46781. extra: 1782/1635,
  46782. bottom: 96/1878
  46783. }
  46784. },
  46785. back: {
  46786. height: math.unit(6, "feet"),
  46787. weight: math.unit(250, "lb"),
  46788. volume: math.unit(5/8, "gallons"),
  46789. name: "Back",
  46790. image: {
  46791. source: "./media/characters/ludwig-horn/back.svg",
  46792. extra: 1874/1729,
  46793. bottom: 27/1901
  46794. }
  46795. },
  46796. dick: {
  46797. height: math.unit(1.05, "feet"),
  46798. weight: math.unit(15, "lb"),
  46799. volume: math.unit(5/8, "gallons"),
  46800. name: "Dick",
  46801. image: {
  46802. source: "./media/characters/ludwig-horn/dick.svg"
  46803. }
  46804. },
  46805. },
  46806. [
  46807. {
  46808. name: "Small",
  46809. height: math.unit(6, "feet")
  46810. },
  46811. {
  46812. name: "Typical",
  46813. height: math.unit(12, "feet"),
  46814. default: true
  46815. },
  46816. {
  46817. name: "Building",
  46818. height: math.unit(80, "feet")
  46819. },
  46820. {
  46821. name: "Town",
  46822. height: math.unit(800, "feet")
  46823. },
  46824. {
  46825. name: "Kingdom",
  46826. height: math.unit(80000, "feet")
  46827. },
  46828. {
  46829. name: "Planet",
  46830. height: math.unit(8000000, "feet")
  46831. },
  46832. {
  46833. name: "Universe",
  46834. height: math.unit(8000000000, "feet")
  46835. },
  46836. {
  46837. name: "Transcended",
  46838. height: math.unit(8e27, "feet")
  46839. },
  46840. ]
  46841. ))
  46842. characterMakers.push(() => makeCharacter(
  46843. { name: "Biot Avery", species: ["dragon"], tags: ["anthro"] },
  46844. {
  46845. front: {
  46846. height: math.unit(5, "feet"),
  46847. weight: math.unit(50, "kg"),
  46848. name: "Front",
  46849. image: {
  46850. source: "./media/characters/biot-avery/front.svg",
  46851. extra: 1295/1232,
  46852. bottom: 86/1381
  46853. }
  46854. },
  46855. },
  46856. [
  46857. {
  46858. name: "Normal",
  46859. height: math.unit(5, "feet"),
  46860. default: true
  46861. },
  46862. ]
  46863. ))
  46864. characterMakers.push(() => makeCharacter(
  46865. { name: "Kitsune Kiro", species: ["kitsune"], tags: ["anthro"] },
  46866. {
  46867. front: {
  46868. height: math.unit(6, "feet"),
  46869. name: "Front",
  46870. image: {
  46871. source: "./media/characters/kitsune-kiro/front.svg",
  46872. extra: 1270/1158,
  46873. bottom: 42/1312
  46874. }
  46875. },
  46876. frontAlt: {
  46877. height: math.unit(6, "feet"),
  46878. name: "Front-alt",
  46879. image: {
  46880. source: "./media/characters/kitsune-kiro/front-alt.svg",
  46881. extra: 1130/1081,
  46882. bottom: 36/1166
  46883. }
  46884. },
  46885. },
  46886. [
  46887. {
  46888. name: "Smol",
  46889. height: math.unit(3, "feet")
  46890. },
  46891. {
  46892. name: "Normal",
  46893. height: math.unit(6, "feet"),
  46894. default: true
  46895. },
  46896. ]
  46897. ))
  46898. characterMakers.push(() => makeCharacter(
  46899. { name: "Jack Thatcher", species: ["fox"], tags: ["anthro"] },
  46900. {
  46901. front: {
  46902. height: math.unit(6, "feet"),
  46903. weight: math.unit(125, "lb"),
  46904. name: "Front",
  46905. image: {
  46906. source: "./media/characters/jack-thatcher/front.svg",
  46907. extra: 1474/1370,
  46908. bottom: 26/1500
  46909. }
  46910. },
  46911. back: {
  46912. height: math.unit(6, "feet"),
  46913. weight: math.unit(125, "lb"),
  46914. name: "Back",
  46915. image: {
  46916. source: "./media/characters/jack-thatcher/back.svg",
  46917. extra: 1489/1384,
  46918. bottom: 18/1507
  46919. }
  46920. },
  46921. },
  46922. [
  46923. {
  46924. name: "Normal",
  46925. height: math.unit(6, "feet"),
  46926. default: true
  46927. },
  46928. {
  46929. name: "Macro",
  46930. height: math.unit(75, "feet")
  46931. },
  46932. {
  46933. name: "Macro-er",
  46934. height: math.unit(250, "feet")
  46935. },
  46936. ]
  46937. ))
  46938. characterMakers.push(() => makeCharacter(
  46939. { name: "Max Hyper", species: ["husky"], tags: ["anthro"] },
  46940. {
  46941. front: {
  46942. height: math.unit(7, "feet"),
  46943. weight: math.unit(110, "kg"),
  46944. name: "Front",
  46945. image: {
  46946. source: "./media/characters/max-hyper/front.svg",
  46947. extra: 1969/1881,
  46948. bottom: 49/2018
  46949. }
  46950. },
  46951. },
  46952. [
  46953. {
  46954. name: "Normal",
  46955. height: math.unit(7, "feet"),
  46956. default: true
  46957. },
  46958. ]
  46959. ))
  46960. characterMakers.push(() => makeCharacter(
  46961. { name: "Spook", species: ["alien"], tags: ["anthro"] },
  46962. {
  46963. front: {
  46964. height: math.unit(5 + 5/12, "feet"),
  46965. weight: math.unit(160, "lb"),
  46966. name: "Front",
  46967. image: {
  46968. source: "./media/characters/spook/front.svg",
  46969. extra: 794/791,
  46970. bottom: 54/848
  46971. }
  46972. },
  46973. back: {
  46974. height: math.unit(5 + 5/12, "feet"),
  46975. weight: math.unit(160, "lb"),
  46976. name: "Back",
  46977. image: {
  46978. source: "./media/characters/spook/back.svg",
  46979. extra: 812/798,
  46980. bottom: 32/844
  46981. }
  46982. },
  46983. },
  46984. [
  46985. {
  46986. name: "Normal",
  46987. height: math.unit(5 + 5/12, "feet"),
  46988. default: true
  46989. },
  46990. ]
  46991. ))
  46992. characterMakers.push(() => makeCharacter(
  46993. { name: "Xeaduulix", species: ["dragon"], tags: ["anthro"] },
  46994. {
  46995. front: {
  46996. height: math.unit(18, "feet"),
  46997. name: "Front",
  46998. image: {
  46999. source: "./media/characters/xeaduulix/front.svg",
  47000. extra: 1380/1166,
  47001. bottom: 110/1490
  47002. }
  47003. },
  47004. back: {
  47005. height: math.unit(18, "feet"),
  47006. name: "Back",
  47007. image: {
  47008. source: "./media/characters/xeaduulix/back.svg",
  47009. extra: 1592/1170,
  47010. bottom: 128/1720
  47011. }
  47012. },
  47013. frontNsfw: {
  47014. height: math.unit(18, "feet"),
  47015. name: "Front (NSFW)",
  47016. image: {
  47017. source: "./media/characters/xeaduulix/front-nsfw.svg",
  47018. extra: 1380/1166,
  47019. bottom: 110/1490
  47020. }
  47021. },
  47022. backNsfw: {
  47023. height: math.unit(18, "feet"),
  47024. name: "Back (NSFW)",
  47025. image: {
  47026. source: "./media/characters/xeaduulix/back-nsfw.svg",
  47027. extra: 1592/1170,
  47028. bottom: 128/1720
  47029. }
  47030. },
  47031. },
  47032. [
  47033. {
  47034. name: "Normal",
  47035. height: math.unit(18, "feet"),
  47036. default: true
  47037. },
  47038. ]
  47039. ))
  47040. characterMakers.push(() => makeCharacter(
  47041. { name: "Fledge", species: ["alicorn"], tags: ["anthro"] },
  47042. {
  47043. spreadWings: {
  47044. height: math.unit(20, "feet"),
  47045. name: "Spread Wings",
  47046. image: {
  47047. source: "./media/characters/fledge/spread-wings.svg",
  47048. extra: 693/635,
  47049. bottom: 26/719
  47050. }
  47051. },
  47052. front: {
  47053. height: math.unit(20, "feet"),
  47054. name: "Front",
  47055. image: {
  47056. source: "./media/characters/fledge/front.svg",
  47057. extra: 684/637,
  47058. bottom: 18/702
  47059. }
  47060. },
  47061. frontAlt: {
  47062. height: math.unit(20, "feet"),
  47063. name: "Front (Alt)",
  47064. image: {
  47065. source: "./media/characters/fledge/front-alt.svg",
  47066. extra: 708/664,
  47067. bottom: 13/721
  47068. }
  47069. },
  47070. back: {
  47071. height: math.unit(20, "feet"),
  47072. name: "Back",
  47073. image: {
  47074. source: "./media/characters/fledge/back.svg",
  47075. extra: 718/634,
  47076. bottom: 22/740
  47077. }
  47078. },
  47079. head: {
  47080. height: math.unit(5.55, "feet"),
  47081. name: "Head",
  47082. image: {
  47083. source: "./media/characters/fledge/head.svg"
  47084. }
  47085. },
  47086. headAlt: {
  47087. height: math.unit(5.1, "feet"),
  47088. name: "Head (Alt)",
  47089. image: {
  47090. source: "./media/characters/fledge/head-alt.svg"
  47091. }
  47092. },
  47093. },
  47094. [
  47095. {
  47096. name: "Small",
  47097. height: math.unit(6 + 2/12, "feet")
  47098. },
  47099. {
  47100. name: "Big",
  47101. height: math.unit(20, "feet"),
  47102. default: true
  47103. },
  47104. {
  47105. name: "Giant",
  47106. height: math.unit(100, "feet")
  47107. },
  47108. {
  47109. name: "Macro",
  47110. height: math.unit(200, "feet")
  47111. },
  47112. ]
  47113. ))
  47114. characterMakers.push(() => makeCharacter(
  47115. { name: "Atlas Morenai", species: ["red-panda", "atlas-moth"], tags: ["anthro"] },
  47116. {
  47117. front: {
  47118. height: math.unit(1, "meter"),
  47119. name: "Front",
  47120. image: {
  47121. source: "./media/characters/atlas-morenai/front.svg",
  47122. extra: 1275/1043,
  47123. bottom: 19/1294
  47124. }
  47125. },
  47126. back: {
  47127. height: math.unit(1, "meter"),
  47128. name: "Back",
  47129. image: {
  47130. source: "./media/characters/atlas-morenai/back.svg",
  47131. extra: 1141/1001,
  47132. bottom: 25/1166
  47133. }
  47134. },
  47135. },
  47136. [
  47137. {
  47138. name: "Normal",
  47139. height: math.unit(1, "meter"),
  47140. default: true
  47141. },
  47142. {
  47143. name: "Magic-Infused",
  47144. height: math.unit(5, "meters")
  47145. },
  47146. ]
  47147. ))
  47148. characterMakers.push(() => makeCharacter(
  47149. { name: "Cintia", species: ["fox"], tags: ["anthro"] },
  47150. {
  47151. front: {
  47152. height: math.unit(5, "meters"),
  47153. name: "Front",
  47154. image: {
  47155. source: "./media/characters/cintia/front.svg",
  47156. extra: 1312/1228,
  47157. bottom: 38/1350
  47158. }
  47159. },
  47160. back: {
  47161. height: math.unit(5, "meters"),
  47162. name: "Back",
  47163. image: {
  47164. source: "./media/characters/cintia/back.svg",
  47165. extra: 1260/1166,
  47166. bottom: 98/1358
  47167. }
  47168. },
  47169. frontDick: {
  47170. height: math.unit(5, "meters"),
  47171. name: "Front (Dick)",
  47172. image: {
  47173. source: "./media/characters/cintia/front-dick.svg",
  47174. extra: 1312/1228,
  47175. bottom: 38/1350
  47176. }
  47177. },
  47178. backDick: {
  47179. height: math.unit(5, "meters"),
  47180. name: "Back (Dick)",
  47181. image: {
  47182. source: "./media/characters/cintia/back-dick.svg",
  47183. extra: 1260/1166,
  47184. bottom: 98/1358
  47185. }
  47186. },
  47187. bust: {
  47188. height: math.unit(1.97, "meters"),
  47189. name: "Bust",
  47190. image: {
  47191. source: "./media/characters/cintia/bust.svg",
  47192. extra: 617/565,
  47193. bottom: 0/617
  47194. }
  47195. },
  47196. },
  47197. [
  47198. {
  47199. name: "Normal",
  47200. height: math.unit(5, "meters"),
  47201. default: true
  47202. },
  47203. ]
  47204. ))
  47205. characterMakers.push(() => makeCharacter(
  47206. { name: "Denora", species: ["husky"], tags: ["anthro"] },
  47207. {
  47208. side: {
  47209. height: math.unit(100, "feet"),
  47210. name: "Side",
  47211. image: {
  47212. source: "./media/characters/denora/side.svg",
  47213. extra: 875/803,
  47214. bottom: 9/884
  47215. }
  47216. },
  47217. },
  47218. [
  47219. {
  47220. name: "Standard",
  47221. height: math.unit(100, "feet"),
  47222. default: true
  47223. },
  47224. {
  47225. name: "Grand",
  47226. height: math.unit(1000, "feet")
  47227. },
  47228. {
  47229. name: "Conquering",
  47230. height: math.unit(10000, "feet")
  47231. },
  47232. ]
  47233. ))
  47234. characterMakers.push(() => makeCharacter(
  47235. { name: "Kiva", species: ["dire-wolf"], tags: ["anthro"] },
  47236. {
  47237. dressed: {
  47238. height: math.unit(8 + 5/12, "feet"),
  47239. weight: math.unit(700, "lb"),
  47240. name: "Dressed",
  47241. image: {
  47242. source: "./media/characters/kiva/dressed.svg",
  47243. extra: 1102/1055,
  47244. bottom: 60/1162
  47245. }
  47246. },
  47247. nude: {
  47248. height: math.unit(8 + 5/12, "feet"),
  47249. weight: math.unit(700, "lb"),
  47250. name: "Nude",
  47251. image: {
  47252. source: "./media/characters/kiva/nude.svg",
  47253. extra: 1102/1055,
  47254. bottom: 60/1162
  47255. }
  47256. },
  47257. },
  47258. [
  47259. {
  47260. name: "Base Height",
  47261. height: math.unit(8 + 5/12, "feet"),
  47262. default: true
  47263. },
  47264. {
  47265. name: "Macro",
  47266. height: math.unit(100, "feet")
  47267. },
  47268. {
  47269. name: "Max",
  47270. height: math.unit(3280, "feet")
  47271. },
  47272. ]
  47273. ))
  47274. characterMakers.push(() => makeCharacter(
  47275. { name: "ZTragon", species: ["dragon"], tags: ["anthro"] },
  47276. {
  47277. front: {
  47278. height: math.unit(6 + 8/12, "feet"),
  47279. weight: math.unit(250, "lb"),
  47280. name: "Front",
  47281. image: {
  47282. source: "./media/characters/ztragon/front.svg",
  47283. extra: 1825/1684,
  47284. bottom: 98/1923
  47285. }
  47286. },
  47287. },
  47288. [
  47289. {
  47290. name: "Normal",
  47291. height: math.unit(6 + 8/12, "feet"),
  47292. default: true
  47293. },
  47294. {
  47295. name: "Macro",
  47296. height: math.unit(80, "feet")
  47297. },
  47298. ]
  47299. ))
  47300. characterMakers.push(() => makeCharacter(
  47301. { name: "Yesenia", species: ["snake"], tags: ["naga"] },
  47302. {
  47303. front: {
  47304. height: math.unit(10.4, "feet"),
  47305. weight: math.unit(2, "tons"),
  47306. name: "Front",
  47307. image: {
  47308. source: "./media/characters/yesenia/front.svg",
  47309. extra: 1479/1474,
  47310. bottom: 233/1712
  47311. }
  47312. },
  47313. },
  47314. [
  47315. {
  47316. name: "Normal",
  47317. height: math.unit(10.4, "feet"),
  47318. default: true
  47319. },
  47320. ]
  47321. ))
  47322. characterMakers.push(() => makeCharacter(
  47323. { name: "Leanne Lycheborne", species: ["wolf", "dog", "werewolf"], tags: ["anthro"] },
  47324. {
  47325. normal: {
  47326. height: math.unit(6 + 1/12, "feet"),
  47327. weight: math.unit(180, "lb"),
  47328. name: "Normal",
  47329. image: {
  47330. source: "./media/characters/leanne-lycheborne/normal.svg",
  47331. extra: 1748/1660,
  47332. bottom: 98/1846
  47333. }
  47334. },
  47335. were: {
  47336. height: math.unit(12, "feet"),
  47337. weight: math.unit(1600, "lb"),
  47338. name: "Were",
  47339. image: {
  47340. source: "./media/characters/leanne-lycheborne/were.svg",
  47341. extra: 1485/1432,
  47342. bottom: 66/1551
  47343. }
  47344. },
  47345. },
  47346. [
  47347. {
  47348. name: "Normal",
  47349. height: math.unit(6 + 1/12, "feet"),
  47350. default: true
  47351. },
  47352. ]
  47353. ))
  47354. characterMakers.push(() => makeCharacter(
  47355. { name: "Kira Tyler", species: ["dragon", "cat"], tags: ["feral"] },
  47356. {
  47357. side: {
  47358. height: math.unit(13, "feet"),
  47359. name: "Side",
  47360. image: {
  47361. source: "./media/characters/kira-tyler/side.svg",
  47362. extra: 693/393,
  47363. bottom: 58/751
  47364. }
  47365. },
  47366. },
  47367. [
  47368. {
  47369. name: "Normal",
  47370. height: math.unit(13, "feet"),
  47371. default: true
  47372. },
  47373. ]
  47374. ))
  47375. characterMakers.push(() => makeCharacter(
  47376. { name: "Blaze", species: ["octopus", "avian"], tags: ["anthro"] },
  47377. {
  47378. front: {
  47379. height: math.unit(10.3, "feet"),
  47380. weight: math.unit(150, "lb"),
  47381. name: "Front",
  47382. image: {
  47383. source: "./media/characters/blaze/front.svg",
  47384. extra: 1378/1286,
  47385. bottom: 172/1550
  47386. }
  47387. },
  47388. },
  47389. [
  47390. {
  47391. name: "Normal",
  47392. height: math.unit(10.3, "feet"),
  47393. default: true
  47394. },
  47395. ]
  47396. ))
  47397. characterMakers.push(() => makeCharacter(
  47398. { name: "Anu", species: ["fennec-fox", "jackal"], tags: ["taur"] },
  47399. {
  47400. side: {
  47401. height: math.unit(2, "meters"),
  47402. weight: math.unit(400, "kg"),
  47403. name: "Side",
  47404. image: {
  47405. source: "./media/characters/anu/side.svg",
  47406. extra: 506/394,
  47407. bottom: 18/524
  47408. }
  47409. },
  47410. },
  47411. [
  47412. {
  47413. name: "Humanoid",
  47414. height: math.unit(2, "meters")
  47415. },
  47416. {
  47417. name: "Normal",
  47418. height: math.unit(5, "meters"),
  47419. default: true
  47420. },
  47421. ]
  47422. ))
  47423. characterMakers.push(() => makeCharacter(
  47424. { name: "Synx the Lynx", species: ["lynx"], tags: ["anthro"] },
  47425. {
  47426. front: {
  47427. height: math.unit(5 + 5/12, "feet"),
  47428. weight: math.unit(170, "lb"),
  47429. name: "Front",
  47430. image: {
  47431. source: "./media/characters/synx-the-lynx/front.svg",
  47432. extra: 1893/1745,
  47433. bottom: 17/1910
  47434. }
  47435. },
  47436. side: {
  47437. height: math.unit(5 + 5/12, "feet"),
  47438. weight: math.unit(170, "lb"),
  47439. name: "Side",
  47440. image: {
  47441. source: "./media/characters/synx-the-lynx/side.svg",
  47442. extra: 1884/1740,
  47443. bottom: 39/1923
  47444. }
  47445. },
  47446. back: {
  47447. height: math.unit(5 + 5/12, "feet"),
  47448. weight: math.unit(170, "lb"),
  47449. name: "Back",
  47450. image: {
  47451. source: "./media/characters/synx-the-lynx/back.svg",
  47452. extra: 1903/1755,
  47453. bottom: 14/1917
  47454. }
  47455. },
  47456. },
  47457. [
  47458. {
  47459. name: "Normal",
  47460. height: math.unit(5 + 5/12, "feet"),
  47461. default: true
  47462. },
  47463. ]
  47464. ))
  47465. characterMakers.push(() => makeCharacter(
  47466. { name: "Nadezda Fex", species: ["fox"], tags: ["anthro"] },
  47467. {
  47468. back: {
  47469. height: math.unit(15, "feet"),
  47470. name: "Back",
  47471. image: {
  47472. source: "./media/characters/nadezda-fex/back.svg",
  47473. extra: 1695/1481,
  47474. bottom: 25/1720
  47475. }
  47476. },
  47477. },
  47478. [
  47479. {
  47480. name: "Normal",
  47481. height: math.unit(15, "feet"),
  47482. default: true
  47483. },
  47484. {
  47485. name: "Macro",
  47486. height: math.unit(2.5, "miles")
  47487. },
  47488. {
  47489. name: "Goddess",
  47490. height: math.unit(2, "multiverses")
  47491. },
  47492. ]
  47493. ))
  47494. characterMakers.push(() => makeCharacter(
  47495. { name: "Lev", species: ["snake"], tags: ["anthro"] },
  47496. {
  47497. front: {
  47498. height: math.unit(216, "cm"),
  47499. name: "Front",
  47500. image: {
  47501. source: "./media/characters/lev/front.svg",
  47502. extra: 1728/1670,
  47503. bottom: 82/1810
  47504. }
  47505. },
  47506. back: {
  47507. height: math.unit(216, "cm"),
  47508. name: "Back",
  47509. image: {
  47510. source: "./media/characters/lev/back.svg",
  47511. extra: 1738/1675,
  47512. bottom: 24/1762
  47513. }
  47514. },
  47515. dressed: {
  47516. height: math.unit(216, "cm"),
  47517. name: "Dressed",
  47518. image: {
  47519. source: "./media/characters/lev/dressed.svg",
  47520. extra: 1397/1351,
  47521. bottom: 73/1470
  47522. }
  47523. },
  47524. head: {
  47525. height: math.unit(0.51, "meter"),
  47526. name: "Head",
  47527. image: {
  47528. source: "./media/characters/lev/head.svg"
  47529. }
  47530. },
  47531. },
  47532. [
  47533. {
  47534. name: "Normal",
  47535. height: math.unit(216, "cm"),
  47536. default: true
  47537. },
  47538. {
  47539. name: "Relatively Macro",
  47540. height: math.unit(80, "meters")
  47541. },
  47542. {
  47543. name: "Megamacro",
  47544. height: math.unit(21600, "meters")
  47545. },
  47546. {
  47547. name: "Megamacro+",
  47548. height: math.unit(64800, "meters")
  47549. },
  47550. ]
  47551. ))
  47552. characterMakers.push(() => makeCharacter(
  47553. { name: "Moka", species: ["dragon"], tags: ["anthro"] },
  47554. {
  47555. front: {
  47556. height: math.unit(2, "meters"),
  47557. weight: math.unit(80, "kg"),
  47558. name: "Front",
  47559. image: {
  47560. source: "./media/characters/moka/front.svg",
  47561. extra: 1337/1255,
  47562. bottom: 58/1395
  47563. }
  47564. },
  47565. },
  47566. [
  47567. {
  47568. name: "Micro",
  47569. height: math.unit(15, "cm")
  47570. },
  47571. {
  47572. name: "Normal",
  47573. height: math.unit(2, "meters"),
  47574. default: true
  47575. },
  47576. {
  47577. name: "Macro",
  47578. height: math.unit(20, "meters"),
  47579. },
  47580. ]
  47581. ))
  47582. characterMakers.push(() => makeCharacter(
  47583. { name: "Kuzco", species: ["snake"], tags: ["anthro"] },
  47584. {
  47585. front: {
  47586. height: math.unit(9, "feet"),
  47587. weight: math.unit(240, "lb"),
  47588. name: "Front",
  47589. image: {
  47590. source: "./media/characters/kuzco/front.svg",
  47591. extra: 1593/1487,
  47592. bottom: 32/1625
  47593. }
  47594. },
  47595. side: {
  47596. height: math.unit(9, "feet"),
  47597. weight: math.unit(240, "lb"),
  47598. name: "Side",
  47599. image: {
  47600. source: "./media/characters/kuzco/side.svg",
  47601. extra: 1575/1485,
  47602. bottom: 30/1605
  47603. }
  47604. },
  47605. back: {
  47606. height: math.unit(9, "feet"),
  47607. weight: math.unit(240, "lb"),
  47608. name: "Back",
  47609. image: {
  47610. source: "./media/characters/kuzco/back.svg",
  47611. extra: 1603/1514,
  47612. bottom: 14/1617
  47613. }
  47614. },
  47615. },
  47616. [
  47617. {
  47618. name: "Normal",
  47619. height: math.unit(9, "feet"),
  47620. default: true
  47621. },
  47622. ]
  47623. ))
  47624. characterMakers.push(() => makeCharacter(
  47625. { name: "Ceruleus", species: ["fox", "dragon"], tags: ["feral"] },
  47626. {
  47627. side: {
  47628. height: math.unit(2, "meters"),
  47629. weight: math.unit(300, "kg"),
  47630. name: "Side",
  47631. image: {
  47632. source: "./media/characters/ceruleus/side.svg",
  47633. extra: 1068/974,
  47634. bottom: 126/1194
  47635. }
  47636. },
  47637. maw: {
  47638. height: math.unit(0.8125, "meter"),
  47639. name: "Maw",
  47640. image: {
  47641. source: "./media/characters/ceruleus/maw.svg"
  47642. }
  47643. },
  47644. },
  47645. [
  47646. {
  47647. name: "Normal",
  47648. height: math.unit(16, "meters"),
  47649. default: true
  47650. },
  47651. ]
  47652. ))
  47653. characterMakers.push(() => makeCharacter(
  47654. { name: "Acouya", species: ["kangaroo"], tags: ["anthro"] },
  47655. {
  47656. front: {
  47657. height: math.unit(9, "feet"),
  47658. weight: math.unit(500, "kg"),
  47659. name: "Front",
  47660. image: {
  47661. source: "./media/characters/acouya/front.svg",
  47662. extra: 1660/1473,
  47663. bottom: 28/1688
  47664. }
  47665. },
  47666. },
  47667. [
  47668. {
  47669. name: "Normal",
  47670. height: math.unit(9, "feet"),
  47671. default: true
  47672. },
  47673. ]
  47674. ))
  47675. characterMakers.push(() => makeCharacter(
  47676. { name: "Vant", species: ["husky"], tags: ["anthro"] },
  47677. {
  47678. front: {
  47679. height: math.unit(5 + 6/12, "feet"),
  47680. weight: math.unit(195, "lb"),
  47681. name: "Front",
  47682. image: {
  47683. source: "./media/characters/vant/front.svg",
  47684. extra: 1396/1320,
  47685. bottom: 20/1416
  47686. }
  47687. },
  47688. back: {
  47689. height: math.unit(5 + 6/12, "feet"),
  47690. weight: math.unit(195, "lb"),
  47691. name: "Back",
  47692. image: {
  47693. source: "./media/characters/vant/back.svg",
  47694. extra: 1396/1320,
  47695. bottom: 20/1416
  47696. }
  47697. },
  47698. maw: {
  47699. height: math.unit(0.75, "feet"),
  47700. name: "Maw",
  47701. image: {
  47702. source: "./media/characters/vant/maw.svg"
  47703. }
  47704. },
  47705. paw: {
  47706. height: math.unit(1.07, "feet"),
  47707. name: "Paw",
  47708. image: {
  47709. source: "./media/characters/vant/paw.svg"
  47710. }
  47711. },
  47712. },
  47713. [
  47714. {
  47715. name: "Micro",
  47716. height: math.unit(0.25, "inches")
  47717. },
  47718. {
  47719. name: "Normal",
  47720. height: math.unit(5 + 6/12, "feet"),
  47721. default: true
  47722. },
  47723. {
  47724. name: "Macro",
  47725. height: math.unit(75, "feet")
  47726. },
  47727. ]
  47728. ))
  47729. characterMakers.push(() => makeCharacter(
  47730. { name: "Ahra", species: ["fox"], tags: ["anthro"] },
  47731. {
  47732. front: {
  47733. height: math.unit(30, "meters"),
  47734. weight: math.unit(363, "tons"),
  47735. name: "Front",
  47736. image: {
  47737. source: "./media/characters/ahra/front.svg",
  47738. extra: 1914/1814,
  47739. bottom: 46/1960
  47740. }
  47741. },
  47742. },
  47743. [
  47744. {
  47745. name: "Macro",
  47746. height: math.unit(30, "meters"),
  47747. default: true
  47748. },
  47749. ]
  47750. ))
  47751. characterMakers.push(() => makeCharacter(
  47752. { name: "Coriander", species: ["owlbear"], tags: ["anthro"] },
  47753. {
  47754. undressed: {
  47755. height: math.unit(2, "m"),
  47756. weight: math.unit(250, "kg"),
  47757. name: "Undressed",
  47758. image: {
  47759. source: "./media/characters/coriander/undressed.svg",
  47760. extra: 1757/1606,
  47761. bottom: 107/1864
  47762. }
  47763. },
  47764. dressed: {
  47765. height: math.unit(2, "m"),
  47766. weight: math.unit(250, "kg"),
  47767. name: "Dressed",
  47768. image: {
  47769. source: "./media/characters/coriander/dressed.svg",
  47770. extra: 1757/1606,
  47771. bottom: 107/1864
  47772. }
  47773. },
  47774. },
  47775. [
  47776. {
  47777. name: "Normal",
  47778. height: math.unit(4, "meters"),
  47779. default: true
  47780. },
  47781. {
  47782. name: "XL",
  47783. height: math.unit(6, "meters")
  47784. },
  47785. {
  47786. name: "XXL",
  47787. height: math.unit(8, "meters")
  47788. },
  47789. ]
  47790. ))
  47791. characterMakers.push(() => makeCharacter(
  47792. { name: "Syrinx", species: ["phoenix"], tags: ["anthro"] },
  47793. {
  47794. front: {
  47795. height: math.unit(6, "feet"),
  47796. name: "Front",
  47797. image: {
  47798. source: "./media/characters/syrinx/front.svg",
  47799. extra: 1557/1259,
  47800. bottom: 171/1728
  47801. }
  47802. },
  47803. },
  47804. [
  47805. {
  47806. name: "Normal",
  47807. height: math.unit(6 + 3/12, "feet"),
  47808. default: true
  47809. },
  47810. ]
  47811. ))
  47812. characterMakers.push(() => makeCharacter(
  47813. { name: "Bor", species: ["silvertongue"], tags: ["anthro"] },
  47814. {
  47815. front: {
  47816. height: math.unit(11 + 6/12, "feet"),
  47817. weight: math.unit(1.5, "tons"),
  47818. name: "Front",
  47819. image: {
  47820. source: "./media/characters/bor/front.svg",
  47821. extra: 1189/1109,
  47822. bottom: 170/1359
  47823. }
  47824. },
  47825. },
  47826. [
  47827. {
  47828. name: "Normal",
  47829. height: math.unit(11 + 6/12, "feet"),
  47830. default: true
  47831. },
  47832. {
  47833. name: "Macro",
  47834. height: math.unit(32 + 9/12, "feet")
  47835. },
  47836. ]
  47837. ))
  47838. characterMakers.push(() => makeCharacter(
  47839. { name: "Abacus", species: ["construct", "corvid"], tags: ["anthro", "feral"] },
  47840. {
  47841. anthro: {
  47842. height: math.unit(9, "feet"),
  47843. weight: math.unit(2076, "lb"),
  47844. name: "Anthro",
  47845. image: {
  47846. source: "./media/characters/abacus/anthro.svg",
  47847. extra: 1540/1494,
  47848. bottom: 233/1773
  47849. }
  47850. },
  47851. pigeon: {
  47852. height: math.unit(1, "feet"),
  47853. name: "Pigeon",
  47854. image: {
  47855. source: "./media/characters/abacus/pigeon.svg",
  47856. extra: 528/525,
  47857. bottom: 46/574
  47858. }
  47859. },
  47860. },
  47861. [
  47862. {
  47863. name: "Normal",
  47864. height: math.unit(9, "feet"),
  47865. default: true
  47866. },
  47867. ]
  47868. ))
  47869. characterMakers.push(() => makeCharacter(
  47870. { name: "Delkhan", species: ["t-rex"], tags: ["feral"] },
  47871. {
  47872. side: {
  47873. height: math.unit(6, "feet"),
  47874. name: "Side",
  47875. image: {
  47876. source: "./media/characters/delkhan/side.svg",
  47877. extra: 1884/1786,
  47878. bottom: 308/2192
  47879. }
  47880. },
  47881. head: {
  47882. height: math.unit(3.38, "feet"),
  47883. name: "Head",
  47884. image: {
  47885. source: "./media/characters/delkhan/head.svg"
  47886. }
  47887. },
  47888. },
  47889. [
  47890. {
  47891. name: "Normal",
  47892. height: math.unit(72, "feet"),
  47893. default: true
  47894. },
  47895. {
  47896. name: "Giant",
  47897. height: math.unit(172, "feet")
  47898. },
  47899. ]
  47900. ))
  47901. characterMakers.push(() => makeCharacter(
  47902. { name: "Euchidat", species: ["opossum"], tags: ["anthro"] },
  47903. {
  47904. standing: {
  47905. height: math.unit(6, "feet"),
  47906. name: "Standing",
  47907. image: {
  47908. source: "./media/characters/euchidat/standing.svg",
  47909. extra: 1612/1553,
  47910. bottom: 116/1728
  47911. }
  47912. },
  47913. leaning: {
  47914. height: math.unit(6, "feet"),
  47915. name: "Leaning",
  47916. image: {
  47917. source: "./media/characters/euchidat/leaning.svg",
  47918. extra: 1719/1674,
  47919. bottom: 27/1746
  47920. }
  47921. },
  47922. },
  47923. [
  47924. {
  47925. name: "Normal",
  47926. height: math.unit(175, "feet"),
  47927. default: true
  47928. },
  47929. {
  47930. name: "Megamacro",
  47931. height: math.unit(190, "miles")
  47932. },
  47933. {
  47934. name: "Gigamacro",
  47935. height: math.unit(190000, "miles")
  47936. },
  47937. ]
  47938. ))
  47939. characterMakers.push(() => makeCharacter(
  47940. { name: "Rebecca Stack", species: ["human"], tags: ["anthro"] },
  47941. {
  47942. front: {
  47943. height: math.unit(6, "feet"),
  47944. weight: math.unit(150, "lb"),
  47945. name: "Front",
  47946. image: {
  47947. source: "./media/characters/rebecca-stack/front.svg",
  47948. extra: 1256/1201,
  47949. bottom: 18/1274
  47950. }
  47951. },
  47952. },
  47953. [
  47954. {
  47955. name: "Normal",
  47956. height: math.unit(5 + 8/12, "feet"),
  47957. default: true
  47958. },
  47959. {
  47960. name: "Demolitionist",
  47961. height: math.unit(200, "feet")
  47962. },
  47963. {
  47964. name: "Out of Control",
  47965. height: math.unit(2, "miles")
  47966. },
  47967. {
  47968. name: "Giga",
  47969. height: math.unit(7200, "miles")
  47970. },
  47971. ]
  47972. ))
  47973. characterMakers.push(() => makeCharacter(
  47974. { name: "Jenny Cartwright", species: ["human"], tags: ["anthro"] },
  47975. {
  47976. front: {
  47977. height: math.unit(6, "feet"),
  47978. weight: math.unit(150, "lb"),
  47979. name: "Front",
  47980. image: {
  47981. source: "./media/characters/jenny-cartwright/front.svg",
  47982. extra: 1384/1376,
  47983. bottom: 58/1442
  47984. }
  47985. },
  47986. },
  47987. [
  47988. {
  47989. name: "Normal",
  47990. height: math.unit(6 + 7/12, "feet"),
  47991. default: true
  47992. },
  47993. {
  47994. name: "Librarian",
  47995. height: math.unit(55, "feet")
  47996. },
  47997. {
  47998. name: "Sightseer",
  47999. height: math.unit(50, "miles")
  48000. },
  48001. {
  48002. name: "Giga",
  48003. height: math.unit(30000, "miles")
  48004. },
  48005. ]
  48006. ))
  48007. characterMakers.push(() => makeCharacter(
  48008. { name: "Marvy", species: ["sergal"], tags: ["anthro"] },
  48009. {
  48010. nude: {
  48011. height: math.unit(8, "feet"),
  48012. weight: math.unit(225, "lb"),
  48013. name: "Nude",
  48014. image: {
  48015. source: "./media/characters/marvy/nude.svg",
  48016. extra: 1900/1683,
  48017. bottom: 89/1989
  48018. }
  48019. },
  48020. dressed: {
  48021. height: math.unit(8, "feet"),
  48022. weight: math.unit(225, "lb"),
  48023. name: "Dressed",
  48024. image: {
  48025. source: "./media/characters/marvy/dressed.svg",
  48026. extra: 1900/1683,
  48027. bottom: 89/1989
  48028. }
  48029. },
  48030. head: {
  48031. height: math.unit(2.85, "feet"),
  48032. name: "Head",
  48033. image: {
  48034. source: "./media/characters/marvy/head.svg"
  48035. }
  48036. },
  48037. },
  48038. [
  48039. {
  48040. name: "Normal",
  48041. height: math.unit(8, "feet"),
  48042. default: true
  48043. },
  48044. ]
  48045. ))
  48046. characterMakers.push(() => makeCharacter(
  48047. { name: "Leah", species: ["maned-wolf"], tags: ["anthro"] },
  48048. {
  48049. front: {
  48050. height: math.unit(8, "feet"),
  48051. weight: math.unit(250, "lb"),
  48052. name: "Front",
  48053. image: {
  48054. source: "./media/characters/leah/front.svg",
  48055. extra: 1257/1149,
  48056. bottom: 109/1366
  48057. }
  48058. },
  48059. },
  48060. [
  48061. {
  48062. name: "Normal",
  48063. height: math.unit(8, "feet"),
  48064. default: true
  48065. },
  48066. {
  48067. name: "Minimacro",
  48068. height: math.unit(40, "feet")
  48069. },
  48070. {
  48071. name: "Macro",
  48072. height: math.unit(124, "feet")
  48073. },
  48074. {
  48075. name: "Megamacro",
  48076. height: math.unit(850, "feet")
  48077. },
  48078. ]
  48079. ))
  48080. characterMakers.push(() => makeCharacter(
  48081. { name: "Alvir", species: ["ahuizotl"], tags: ["feral"] },
  48082. {
  48083. side: {
  48084. height: math.unit(13 + 6/12, "feet"),
  48085. weight: math.unit(3200, "lb"),
  48086. name: "Side",
  48087. image: {
  48088. source: "./media/characters/alvir/side.svg",
  48089. extra: 896/589,
  48090. bottom: 26/922
  48091. }
  48092. },
  48093. },
  48094. [
  48095. {
  48096. name: "Normal",
  48097. height: math.unit(13 + 6/12, "feet"),
  48098. default: true
  48099. },
  48100. ]
  48101. ))
  48102. characterMakers.push(() => makeCharacter(
  48103. { name: "Zaina Khalil", species: ["human"], tags: ["anthro"] },
  48104. {
  48105. front: {
  48106. height: math.unit(5 + 4/12, "feet"),
  48107. weight: math.unit(236, "lb"),
  48108. name: "Front",
  48109. image: {
  48110. source: "./media/characters/zaina-khalil/front.svg",
  48111. extra: 1533/1485,
  48112. bottom: 94/1627
  48113. }
  48114. },
  48115. side: {
  48116. height: math.unit(5 + 4/12, "feet"),
  48117. weight: math.unit(236, "lb"),
  48118. name: "Side",
  48119. image: {
  48120. source: "./media/characters/zaina-khalil/side.svg",
  48121. extra: 1537/1498,
  48122. bottom: 66/1603
  48123. }
  48124. },
  48125. back: {
  48126. height: math.unit(5 + 4/12, "feet"),
  48127. weight: math.unit(236, "lb"),
  48128. name: "Back",
  48129. image: {
  48130. source: "./media/characters/zaina-khalil/back.svg",
  48131. extra: 1546/1494,
  48132. bottom: 89/1635
  48133. }
  48134. },
  48135. },
  48136. [
  48137. {
  48138. name: "Normal",
  48139. height: math.unit(5 + 4/12, "feet"),
  48140. default: true
  48141. },
  48142. ]
  48143. ))
  48144. characterMakers.push(() => makeCharacter(
  48145. { name: "Terry", species: ["husky"], tags: ["taur"] },
  48146. {
  48147. side: {
  48148. height: math.unit(12, "feet"),
  48149. weight: math.unit(4000, "lb"),
  48150. name: "Side",
  48151. image: {
  48152. source: "./media/characters/terry/side.svg",
  48153. extra: 1518/1439,
  48154. bottom: 149/1667
  48155. }
  48156. },
  48157. },
  48158. [
  48159. {
  48160. name: "Normal",
  48161. height: math.unit(12, "feet"),
  48162. default: true
  48163. },
  48164. ]
  48165. ))
  48166. characterMakers.push(() => makeCharacter(
  48167. { name: "Kahea", species: ["werewolf"], tags: ["anthro"] },
  48168. {
  48169. front: {
  48170. height: math.unit(12, "feet"),
  48171. weight: math.unit(1500, "lb"),
  48172. name: "Front",
  48173. image: {
  48174. source: "./media/characters/kahea/front.svg",
  48175. extra: 1722/1617,
  48176. bottom: 179/1901
  48177. }
  48178. },
  48179. },
  48180. [
  48181. {
  48182. name: "Normal",
  48183. height: math.unit(12, "feet"),
  48184. default: true
  48185. },
  48186. ]
  48187. ))
  48188. characterMakers.push(() => makeCharacter(
  48189. { name: "Alex Xuria", species: ["demon", "rabbit"], tags: ["anthro"] },
  48190. {
  48191. demonFront: {
  48192. height: math.unit(36, "feet"),
  48193. name: "Front",
  48194. image: {
  48195. source: "./media/characters/alex-xuria/demon-front.svg",
  48196. extra: 1705/1673,
  48197. bottom: 198/1903
  48198. },
  48199. form: "demon",
  48200. default: true
  48201. },
  48202. demonBack: {
  48203. height: math.unit(36, "feet"),
  48204. name: "Back",
  48205. image: {
  48206. source: "./media/characters/alex-xuria/demon-back.svg",
  48207. extra: 1725/1693,
  48208. bottom: 70/1795
  48209. },
  48210. form: "demon"
  48211. },
  48212. demonHead: {
  48213. height: math.unit(2.14, "meters"),
  48214. name: "Head",
  48215. image: {
  48216. source: "./media/characters/alex-xuria/demon-head.svg"
  48217. },
  48218. form: "demon"
  48219. },
  48220. demonHand: {
  48221. height: math.unit(1.61, "meters"),
  48222. name: "Hand",
  48223. image: {
  48224. source: "./media/characters/alex-xuria/demon-hand.svg"
  48225. },
  48226. form: "demon"
  48227. },
  48228. demonPaw: {
  48229. height: math.unit(1.35, "meters"),
  48230. name: "Paw",
  48231. image: {
  48232. source: "./media/characters/alex-xuria/demon-paw.svg"
  48233. },
  48234. form: "demon"
  48235. },
  48236. demonFoot: {
  48237. height: math.unit(2.2, "meters"),
  48238. name: "Foot",
  48239. image: {
  48240. source: "./media/characters/alex-xuria/demon-foot.svg"
  48241. },
  48242. form: "demon"
  48243. },
  48244. demonCock: {
  48245. height: math.unit(1.74, "meters"),
  48246. name: "Cock",
  48247. image: {
  48248. source: "./media/characters/alex-xuria/demon-cock.svg"
  48249. },
  48250. form: "demon"
  48251. },
  48252. demonTailClosed: {
  48253. height: math.unit(1.47, "meters"),
  48254. name: "Tail (Closed)",
  48255. image: {
  48256. source: "./media/characters/alex-xuria/demon-tail-closed.svg"
  48257. },
  48258. form: "demon"
  48259. },
  48260. demonTailOpen: {
  48261. height: math.unit(2.85, "meters"),
  48262. name: "Tail (Open)",
  48263. image: {
  48264. source: "./media/characters/alex-xuria/demon-tail-open.svg"
  48265. },
  48266. form: "demon"
  48267. },
  48268. incubusFront: {
  48269. height: math.unit(12, "feet"),
  48270. name: "Front",
  48271. image: {
  48272. source: "./media/characters/alex-xuria/incubus-front.svg",
  48273. extra: 1754/1677,
  48274. bottom: 125/1879
  48275. },
  48276. form: "incubus",
  48277. default: true
  48278. },
  48279. incubusBack: {
  48280. height: math.unit(12, "feet"),
  48281. name: "Back",
  48282. image: {
  48283. source: "./media/characters/alex-xuria/incubus-back.svg",
  48284. extra: 1702/1647,
  48285. bottom: 30/1732
  48286. },
  48287. form: "incubus"
  48288. },
  48289. incubusHead: {
  48290. height: math.unit(3.45, "feet"),
  48291. name: "Head",
  48292. image: {
  48293. source: "./media/characters/alex-xuria/incubus-head.svg"
  48294. },
  48295. form: "incubus"
  48296. },
  48297. rabbitFront: {
  48298. height: math.unit(6, "feet"),
  48299. name: "Front",
  48300. image: {
  48301. source: "./media/characters/alex-xuria/rabbit-front.svg",
  48302. extra: 1369/1349,
  48303. bottom: 45/1414
  48304. },
  48305. form: "rabbit",
  48306. default: true
  48307. },
  48308. rabbitSide: {
  48309. height: math.unit(6, "feet"),
  48310. name: "Side",
  48311. image: {
  48312. source: "./media/characters/alex-xuria/rabbit-side.svg",
  48313. extra: 1370/1356,
  48314. bottom: 37/1407
  48315. },
  48316. form: "rabbit"
  48317. },
  48318. rabbitBack: {
  48319. height: math.unit(6, "feet"),
  48320. name: "Back",
  48321. image: {
  48322. source: "./media/characters/alex-xuria/rabbit-back.svg",
  48323. extra: 1375/1358,
  48324. bottom: 43/1418
  48325. },
  48326. form: "rabbit"
  48327. },
  48328. },
  48329. [
  48330. {
  48331. name: "Normal",
  48332. height: math.unit(6, "feet"),
  48333. default: true,
  48334. form: "rabbit"
  48335. },
  48336. {
  48337. name: "Incubus",
  48338. height: math.unit(12, "feet"),
  48339. default: true,
  48340. form: "incubus"
  48341. },
  48342. {
  48343. name: "Demon",
  48344. height: math.unit(36, "feet"),
  48345. default: true,
  48346. form: "demon"
  48347. }
  48348. ],
  48349. {
  48350. "demon": {
  48351. name: "Demon",
  48352. default: true
  48353. },
  48354. "incubus": {
  48355. name: "Incubus",
  48356. },
  48357. "rabbit": {
  48358. name: "Rabbit"
  48359. }
  48360. }
  48361. ))
  48362. characterMakers.push(() => makeCharacter(
  48363. { name: "Syrup", species: ["rabbit"], tags: ["anthro"] },
  48364. {
  48365. front: {
  48366. height: math.unit(7 + 5/12, "feet"),
  48367. weight: math.unit(510, "lb"),
  48368. name: "Front",
  48369. image: {
  48370. source: "./media/characters/syrup/front.svg",
  48371. extra: 932/916,
  48372. bottom: 26/958
  48373. }
  48374. },
  48375. },
  48376. [
  48377. {
  48378. name: "Normal",
  48379. height: math.unit(7 + 5/12, "feet"),
  48380. default: true
  48381. },
  48382. {
  48383. name: "Big",
  48384. height: math.unit(50, "feet")
  48385. },
  48386. {
  48387. name: "Macro",
  48388. height: math.unit(300, "feet")
  48389. },
  48390. {
  48391. name: "Megamacro",
  48392. height: math.unit(1, "mile")
  48393. },
  48394. ]
  48395. ))
  48396. characterMakers.push(() => makeCharacter(
  48397. { name: "Zeimne", species: ["kitsune", "demon", "deity"], tags: ["anthro"] },
  48398. {
  48399. front: {
  48400. height: math.unit(6 + 9/12, "feet"),
  48401. name: "Front",
  48402. image: {
  48403. source: "./media/characters/zeimne/front.svg",
  48404. extra: 1969/1806,
  48405. bottom: 53/2022
  48406. }
  48407. },
  48408. },
  48409. [
  48410. {
  48411. name: "Normal",
  48412. height: math.unit(6 + 9/12, "feet"),
  48413. default: true
  48414. },
  48415. {
  48416. name: "Giant",
  48417. height: math.unit(550, "feet")
  48418. },
  48419. {
  48420. name: "Mega",
  48421. height: math.unit(3, "miles")
  48422. },
  48423. {
  48424. name: "Giga",
  48425. height: math.unit(250, "miles")
  48426. },
  48427. {
  48428. name: "Tera",
  48429. height: math.unit(1, "AU")
  48430. },
  48431. ]
  48432. ))
  48433. characterMakers.push(() => makeCharacter(
  48434. { name: "Grar", species: ["jackalope"], tags: ["anthro"] },
  48435. {
  48436. front: {
  48437. height: math.unit(5 + 2/12, "feet"),
  48438. name: "Front",
  48439. image: {
  48440. source: "./media/characters/grar/front.svg",
  48441. extra: 1331/1119,
  48442. bottom: 60/1391
  48443. }
  48444. },
  48445. back: {
  48446. height: math.unit(5 + 2/12, "feet"),
  48447. name: "Back",
  48448. image: {
  48449. source: "./media/characters/grar/back.svg",
  48450. extra: 1385/1169,
  48451. bottom: 23/1408
  48452. }
  48453. },
  48454. },
  48455. [
  48456. {
  48457. name: "Normal",
  48458. height: math.unit(5 + 2/12, "feet"),
  48459. default: true
  48460. },
  48461. ]
  48462. ))
  48463. characterMakers.push(() => makeCharacter(
  48464. { name: "Endraya", species: ["ender-dragon"], tags: ["anthro"] },
  48465. {
  48466. front: {
  48467. height: math.unit(13 + 7/12, "feet"),
  48468. weight: math.unit(2200, "lb"),
  48469. name: "Front",
  48470. image: {
  48471. source: "./media/characters/endraya/front.svg",
  48472. extra: 1289/1215,
  48473. bottom: 50/1339
  48474. }
  48475. },
  48476. nude: {
  48477. height: math.unit(13 + 7/12, "feet"),
  48478. weight: math.unit(2200, "lb"),
  48479. name: "Nude",
  48480. image: {
  48481. source: "./media/characters/endraya/nude.svg",
  48482. extra: 1247/1171,
  48483. bottom: 40/1287
  48484. }
  48485. },
  48486. head: {
  48487. height: math.unit(2.6, "feet"),
  48488. name: "Head",
  48489. image: {
  48490. source: "./media/characters/endraya/head.svg"
  48491. }
  48492. },
  48493. slit: {
  48494. height: math.unit(3.4, "feet"),
  48495. name: "Slit",
  48496. image: {
  48497. source: "./media/characters/endraya/slit.svg"
  48498. }
  48499. },
  48500. },
  48501. [
  48502. {
  48503. name: "Normal",
  48504. height: math.unit(13 + 7/12, "feet"),
  48505. default: true
  48506. },
  48507. {
  48508. name: "Macro",
  48509. height: math.unit(200, "feet")
  48510. },
  48511. ]
  48512. ))
  48513. characterMakers.push(() => makeCharacter(
  48514. { name: "Rodryana", species: ["hyena"], tags: ["anthro"] },
  48515. {
  48516. front: {
  48517. height: math.unit(1.81, "meters"),
  48518. weight: math.unit(69, "kg"),
  48519. name: "Front",
  48520. image: {
  48521. source: "./media/characters/rodryana/front.svg",
  48522. extra: 2002/1921,
  48523. bottom: 53/2055
  48524. }
  48525. },
  48526. back: {
  48527. height: math.unit(1.81, "meters"),
  48528. weight: math.unit(69, "kg"),
  48529. name: "Back",
  48530. image: {
  48531. source: "./media/characters/rodryana/back.svg",
  48532. extra: 1993/1926,
  48533. bottom: 48/2041
  48534. }
  48535. },
  48536. maw: {
  48537. height: math.unit(0.19769417475, "meters"),
  48538. name: "Maw",
  48539. image: {
  48540. source: "./media/characters/rodryana/maw.svg"
  48541. }
  48542. },
  48543. slit: {
  48544. height: math.unit(0.31631067961, "meters"),
  48545. name: "Slit",
  48546. image: {
  48547. source: "./media/characters/rodryana/slit.svg"
  48548. }
  48549. },
  48550. },
  48551. [
  48552. {
  48553. name: "Normal",
  48554. height: math.unit(1.81, "meters")
  48555. },
  48556. {
  48557. name: "Mini Macro",
  48558. height: math.unit(181, "meters")
  48559. },
  48560. {
  48561. name: "Macro",
  48562. height: math.unit(452, "meters"),
  48563. default: true
  48564. },
  48565. {
  48566. name: "Mega Macro",
  48567. height: math.unit(1.375, "km")
  48568. },
  48569. {
  48570. name: "Giga Macro",
  48571. height: math.unit(13.575, "km")
  48572. },
  48573. ]
  48574. ))
  48575. characterMakers.push(() => makeCharacter(
  48576. { name: "Asaya", species: ["human", "deity"], tags: ["anthro"] },
  48577. {
  48578. front: {
  48579. height: math.unit(6, "feet"),
  48580. weight: math.unit(1000, "lb"),
  48581. name: "Front",
  48582. image: {
  48583. source: "./media/characters/asaya/front.svg",
  48584. extra: 1460/1200,
  48585. bottom: 71/1531
  48586. }
  48587. },
  48588. },
  48589. [
  48590. {
  48591. name: "Normal",
  48592. height: math.unit(8, "km"),
  48593. default: true
  48594. },
  48595. ]
  48596. ))
  48597. characterMakers.push(() => makeCharacter(
  48598. { name: "Sarzu and Israz", species: ["naga"], tags: ["naga"] },
  48599. {
  48600. front: {
  48601. height: math.unit(3.5, "meters"),
  48602. name: "Front",
  48603. image: {
  48604. source: "./media/characters/sarzu-and-israz/front.svg",
  48605. extra: 1570/1558,
  48606. bottom: 150/1720
  48607. },
  48608. },
  48609. back: {
  48610. height: math.unit(3.5, "meters"),
  48611. name: "Back",
  48612. image: {
  48613. source: "./media/characters/sarzu-and-israz/back.svg",
  48614. extra: 1523/1509,
  48615. bottom: 132/1655
  48616. },
  48617. },
  48618. frontFemale: {
  48619. height: math.unit(3.5, "meters"),
  48620. name: "Front (Female)",
  48621. image: {
  48622. source: "./media/characters/sarzu-and-israz/front-female.svg",
  48623. extra: 1570/1558,
  48624. bottom: 150/1720
  48625. },
  48626. },
  48627. frontHerm: {
  48628. height: math.unit(3.5, "meters"),
  48629. name: "Front (Herm)",
  48630. image: {
  48631. source: "./media/characters/sarzu-and-israz/front-herm.svg",
  48632. extra: 1570/1558,
  48633. bottom: 150/1720
  48634. },
  48635. },
  48636. },
  48637. [
  48638. {
  48639. name: "Normal",
  48640. height: math.unit(3.5, "meters"),
  48641. default: true,
  48642. },
  48643. {
  48644. name: "Macro",
  48645. height: math.unit(65.5, "meters"),
  48646. },
  48647. ],
  48648. ))
  48649. characterMakers.push(() => makeCharacter(
  48650. { name: "Zenimma", species: ["bruhathkayosaurus"], tags: ["anthro"] },
  48651. {
  48652. front: {
  48653. height: math.unit(6, "feet"),
  48654. weight: math.unit(250, "lb"),
  48655. name: "Front",
  48656. image: {
  48657. source: "./media/characters/zenimma/front.svg",
  48658. extra: 1346/1320,
  48659. bottom: 58/1404
  48660. }
  48661. },
  48662. back: {
  48663. height: math.unit(6, "feet"),
  48664. weight: math.unit(250, "lb"),
  48665. name: "Back",
  48666. image: {
  48667. source: "./media/characters/zenimma/back.svg",
  48668. extra: 1324/1308,
  48669. bottom: 44/1368
  48670. }
  48671. },
  48672. dick: {
  48673. height: math.unit(1.44, "feet"),
  48674. name: "Dick",
  48675. image: {
  48676. source: "./media/characters/zenimma/dick.svg"
  48677. }
  48678. },
  48679. },
  48680. [
  48681. {
  48682. name: "Canon Height",
  48683. height: math.unit(66, "miles"),
  48684. default: true
  48685. },
  48686. ]
  48687. ))
  48688. characterMakers.push(() => makeCharacter(
  48689. { name: "Shavon", species: ["black-sable-antelope"], tags: ["anthro"] },
  48690. {
  48691. nude: {
  48692. height: math.unit(6, "feet"),
  48693. weight: math.unit(150, "lb"),
  48694. name: "Nude",
  48695. image: {
  48696. source: "./media/characters/shavon/nude.svg",
  48697. extra: 1242/1096,
  48698. bottom: 98/1340
  48699. }
  48700. },
  48701. dressed: {
  48702. height: math.unit(6, "feet"),
  48703. weight: math.unit(150, "lb"),
  48704. name: "Dressed",
  48705. image: {
  48706. source: "./media/characters/shavon/dressed.svg",
  48707. extra: 1242/1096,
  48708. bottom: 98/1340
  48709. }
  48710. },
  48711. },
  48712. [
  48713. {
  48714. name: "Macro",
  48715. height: math.unit(255, "feet"),
  48716. default: true
  48717. },
  48718. ]
  48719. ))
  48720. characterMakers.push(() => makeCharacter(
  48721. { name: "Steph", species: ["shark"], tags: ["anthro"] },
  48722. {
  48723. front: {
  48724. height: math.unit(6, "feet"),
  48725. name: "Front",
  48726. image: {
  48727. source: "./media/characters/steph/front.svg",
  48728. extra: 1430/1330,
  48729. bottom: 54/1484
  48730. }
  48731. },
  48732. },
  48733. [
  48734. {
  48735. name: "Normal",
  48736. height: math.unit(6, "feet"),
  48737. default: true
  48738. },
  48739. ]
  48740. ))
  48741. characterMakers.push(() => makeCharacter(
  48742. { name: "Kil'aman", species: ["dragon", "deity"], tags: ["anthro"] },
  48743. {
  48744. front: {
  48745. height: math.unit(9, "feet"),
  48746. weight: math.unit(400, "lb"),
  48747. name: "Front",
  48748. image: {
  48749. source: "./media/characters/kil'aman/front.svg",
  48750. extra: 1210/1159,
  48751. bottom: 109/1319
  48752. }
  48753. },
  48754. head: {
  48755. height: math.unit(2.14, "feet"),
  48756. name: "Head",
  48757. image: {
  48758. source: "./media/characters/kil'aman/head.svg"
  48759. }
  48760. },
  48761. maw: {
  48762. height: math.unit(1.21, "feet"),
  48763. name: "Maw",
  48764. image: {
  48765. source: "./media/characters/kil'aman/maw.svg"
  48766. }
  48767. },
  48768. foot: {
  48769. height: math.unit(1.7, "feet"),
  48770. name: "Foot",
  48771. image: {
  48772. source: "./media/characters/kil'aman/foot.svg"
  48773. }
  48774. },
  48775. dick: {
  48776. height: math.unit(2.1, "feet"),
  48777. name: "Dick",
  48778. image: {
  48779. source: "./media/characters/kil'aman/dick.svg"
  48780. }
  48781. },
  48782. },
  48783. [
  48784. {
  48785. name: "Normal",
  48786. height: math.unit(9, "feet")
  48787. },
  48788. {
  48789. name: "Canon Height",
  48790. height: math.unit(10, "miles"),
  48791. default: true
  48792. },
  48793. {
  48794. name: "Maximum",
  48795. height: math.unit(6e9, "miles")
  48796. },
  48797. ]
  48798. ))
  48799. characterMakers.push(() => makeCharacter(
  48800. { name: "Qadan", species: ["utahraptor"], tags: ["anthro"] },
  48801. {
  48802. front: {
  48803. height: math.unit(90, "feet"),
  48804. weight: math.unit(675000, "lb"),
  48805. name: "Front",
  48806. image: {
  48807. source: "./media/characters/qadan/front.svg",
  48808. extra: 1012/1004,
  48809. bottom: 78/1090
  48810. }
  48811. },
  48812. back: {
  48813. height: math.unit(90, "feet"),
  48814. weight: math.unit(675000, "lb"),
  48815. name: "Back",
  48816. image: {
  48817. source: "./media/characters/qadan/back.svg",
  48818. extra: 1042/1031,
  48819. bottom: 55/1097
  48820. }
  48821. },
  48822. armored: {
  48823. height: math.unit(90, "feet"),
  48824. weight: math.unit(675000, "lb"),
  48825. name: "Armored",
  48826. image: {
  48827. source: "./media/characters/qadan/armored.svg",
  48828. extra: 1047/1037,
  48829. bottom: 48/1095
  48830. }
  48831. },
  48832. },
  48833. [
  48834. {
  48835. name: "Normal",
  48836. height: math.unit(90, "feet"),
  48837. default: true
  48838. },
  48839. ]
  48840. ))
  48841. characterMakers.push(() => makeCharacter(
  48842. { name: "Brooke", species: ["indian-giant-squirrel"], tags: ["anthro"] },
  48843. {
  48844. front: {
  48845. height: math.unit(6, "feet"),
  48846. weight: math.unit(225, "lb"),
  48847. name: "Front",
  48848. image: {
  48849. source: "./media/characters/brooke/front.svg",
  48850. extra: 1050/1010,
  48851. bottom: 66/1116
  48852. }
  48853. },
  48854. back: {
  48855. height: math.unit(6, "feet"),
  48856. weight: math.unit(225, "lb"),
  48857. name: "Back",
  48858. image: {
  48859. source: "./media/characters/brooke/back.svg",
  48860. extra: 1053/1013,
  48861. bottom: 41/1094
  48862. }
  48863. },
  48864. dressed: {
  48865. height: math.unit(6, "feet"),
  48866. weight: math.unit(225, "lb"),
  48867. name: "Dressed",
  48868. image: {
  48869. source: "./media/characters/brooke/dressed.svg",
  48870. extra: 1050/1010,
  48871. bottom: 66/1116
  48872. }
  48873. },
  48874. },
  48875. [
  48876. {
  48877. name: "Canon Height",
  48878. height: math.unit(500, "miles"),
  48879. default: true
  48880. },
  48881. ]
  48882. ))
  48883. characterMakers.push(() => makeCharacter(
  48884. { name: "Wubs", species: ["golden-retriever"], tags: ["anthro"] },
  48885. {
  48886. front: {
  48887. height: math.unit(6 + 2/12, "feet"),
  48888. weight: math.unit(210, "lb"),
  48889. name: "Front",
  48890. image: {
  48891. source: "./media/characters/wubs/front.svg",
  48892. extra: 1345/1325,
  48893. bottom: 70/1415
  48894. }
  48895. },
  48896. back: {
  48897. height: math.unit(6 + 2/12, "feet"),
  48898. weight: math.unit(210, "lb"),
  48899. name: "Back",
  48900. image: {
  48901. source: "./media/characters/wubs/back.svg",
  48902. extra: 1296/1275,
  48903. bottom: 58/1354
  48904. }
  48905. },
  48906. },
  48907. [
  48908. {
  48909. name: "Normal",
  48910. height: math.unit(6 + 2/12, "feet"),
  48911. default: true
  48912. },
  48913. {
  48914. name: "Macro",
  48915. height: math.unit(1000, "feet")
  48916. },
  48917. {
  48918. name: "Megamacro",
  48919. height: math.unit(1, "mile")
  48920. },
  48921. ]
  48922. ))
  48923. characterMakers.push(() => makeCharacter(
  48924. { name: "Blue", species: ["deer", "bat"], tags: ["anthro"] },
  48925. {
  48926. front: {
  48927. height: math.unit(4, "feet"),
  48928. weight: math.unit(120, "lb"),
  48929. name: "Front",
  48930. image: {
  48931. source: "./media/characters/blue/front.svg",
  48932. extra: 1636/1525,
  48933. bottom: 43/1679
  48934. }
  48935. },
  48936. back: {
  48937. height: math.unit(4, "feet"),
  48938. weight: math.unit(120, "lb"),
  48939. name: "Back",
  48940. image: {
  48941. source: "./media/characters/blue/back.svg",
  48942. extra: 1660/1560,
  48943. bottom: 57/1717
  48944. }
  48945. },
  48946. paws: {
  48947. height: math.unit(0.826, "feet"),
  48948. name: "Paws",
  48949. image: {
  48950. source: "./media/characters/blue/paws.svg"
  48951. }
  48952. },
  48953. },
  48954. [
  48955. {
  48956. name: "Micro",
  48957. height: math.unit(3, "inches")
  48958. },
  48959. {
  48960. name: "Normal",
  48961. height: math.unit(4, "feet"),
  48962. default: true
  48963. },
  48964. {
  48965. name: "Femenine Form",
  48966. height: math.unit(14, "feet")
  48967. },
  48968. {
  48969. name: "Werebat Form",
  48970. height: math.unit(18, "feet")
  48971. },
  48972. ]
  48973. ))
  48974. characterMakers.push(() => makeCharacter(
  48975. { name: "Kaya", species: ["dragon"], tags: ["anthro"] },
  48976. {
  48977. female: {
  48978. height: math.unit(7 + 4/12, "feet"),
  48979. weight: math.unit(243, "lb"),
  48980. name: "Female",
  48981. image: {
  48982. source: "./media/characters/kaya/female.svg",
  48983. extra: 975/898,
  48984. bottom: 34/1009
  48985. }
  48986. },
  48987. herm: {
  48988. height: math.unit(7 + 4/12, "feet"),
  48989. weight: math.unit(243, "lb"),
  48990. name: "Herm",
  48991. image: {
  48992. source: "./media/characters/kaya/herm.svg",
  48993. extra: 975/898,
  48994. bottom: 34/1009
  48995. }
  48996. },
  48997. },
  48998. [
  48999. {
  49000. name: "Normal",
  49001. height: math.unit(7 + 4/12, "feet"),
  49002. default: true
  49003. },
  49004. ]
  49005. ))
  49006. characterMakers.push(() => makeCharacter(
  49007. { name: "Kassandra", species: ["dragon", "snake"], tags: ["anthro"] },
  49008. {
  49009. female: {
  49010. height: math.unit(9 + 4/12, "feet"),
  49011. weight: math.unit(398, "lb"),
  49012. name: "Female",
  49013. image: {
  49014. source: "./media/characters/kassandra/female.svg",
  49015. extra: 908/839,
  49016. bottom: 61/969
  49017. }
  49018. },
  49019. intersex: {
  49020. height: math.unit(9 + 4/12, "feet"),
  49021. weight: math.unit(398, "lb"),
  49022. name: "Intersex",
  49023. image: {
  49024. source: "./media/characters/kassandra/intersex.svg",
  49025. extra: 908/839,
  49026. bottom: 61/969
  49027. }
  49028. },
  49029. },
  49030. [
  49031. {
  49032. name: "Normal",
  49033. height: math.unit(9 + 4/12, "feet"),
  49034. default: true
  49035. },
  49036. ]
  49037. ))
  49038. characterMakers.push(() => makeCharacter(
  49039. { name: "Amy", species: ["snow-leopard"], tags: ["anthro"] },
  49040. {
  49041. front: {
  49042. height: math.unit(3, "meters"),
  49043. name: "Front",
  49044. image: {
  49045. source: "./media/characters/amy/front.svg",
  49046. extra: 1380/1343,
  49047. bottom: 70/1450
  49048. }
  49049. },
  49050. back: {
  49051. height: math.unit(3, "meters"),
  49052. name: "Back",
  49053. image: {
  49054. source: "./media/characters/amy/back.svg",
  49055. extra: 1380/1347,
  49056. bottom: 66/1446
  49057. }
  49058. },
  49059. },
  49060. [
  49061. {
  49062. name: "Normal",
  49063. height: math.unit(3, "meters"),
  49064. default: true
  49065. },
  49066. ]
  49067. ))
  49068. characterMakers.push(() => makeCharacter(
  49069. { name: "Alphaschakal", species: ["jackal"], tags: ["feral"] },
  49070. {
  49071. side: {
  49072. height: math.unit(47, "cm"),
  49073. weight: math.unit(10.8, "kg"),
  49074. name: "Side",
  49075. image: {
  49076. source: "./media/characters/alphaschakal/side.svg",
  49077. extra: 1058/568,
  49078. bottom: 62/1120
  49079. }
  49080. },
  49081. back: {
  49082. height: math.unit(78, "cm"),
  49083. weight: math.unit(10.8, "kg"),
  49084. name: "Back",
  49085. image: {
  49086. source: "./media/characters/alphaschakal/back.svg",
  49087. extra: 1102/942,
  49088. bottom: 185/1287
  49089. }
  49090. },
  49091. head: {
  49092. height: math.unit(28, "cm"),
  49093. name: "Head",
  49094. image: {
  49095. source: "./media/characters/alphaschakal/head.svg",
  49096. extra: 696/508,
  49097. bottom: 0/696
  49098. }
  49099. },
  49100. paw: {
  49101. height: math.unit(16, "cm"),
  49102. name: "Paw",
  49103. image: {
  49104. source: "./media/characters/alphaschakal/paw.svg"
  49105. }
  49106. },
  49107. },
  49108. [
  49109. {
  49110. name: "Normal",
  49111. height: math.unit(47, "cm"),
  49112. default: true
  49113. },
  49114. {
  49115. name: "Macro",
  49116. height: math.unit(340, "cm")
  49117. },
  49118. ]
  49119. ))
  49120. characterMakers.push(() => makeCharacter(
  49121. { name: "EcoByss", species: ["goat", "deity", "demon"], tags: ["anthro"] },
  49122. {
  49123. front: {
  49124. height: math.unit(36, "earths"),
  49125. name: "Front",
  49126. image: {
  49127. source: "./media/characters/ecobyss/front.svg",
  49128. extra: 1282/1215,
  49129. bottom: 11/1293
  49130. }
  49131. },
  49132. back: {
  49133. height: math.unit(36, "earths"),
  49134. name: "Back",
  49135. image: {
  49136. source: "./media/characters/ecobyss/back.svg",
  49137. extra: 1291/1222,
  49138. bottom: 8/1299
  49139. }
  49140. },
  49141. },
  49142. [
  49143. {
  49144. name: "Normal",
  49145. height: math.unit(36, "earths"),
  49146. default: true
  49147. },
  49148. ]
  49149. ))
  49150. characterMakers.push(() => makeCharacter(
  49151. { name: "Vasuk", species: ["snake", "chimera"], tags: ["naga"] },
  49152. {
  49153. front: {
  49154. height: math.unit(12, "feet"),
  49155. name: "Front",
  49156. image: {
  49157. source: "./media/characters/vasuk/front.svg",
  49158. extra: 1326/1207,
  49159. bottom: 64/1390
  49160. }
  49161. },
  49162. },
  49163. [
  49164. {
  49165. name: "Normal",
  49166. height: math.unit(12, "feet"),
  49167. default: true
  49168. },
  49169. ]
  49170. ))
  49171. characterMakers.push(() => makeCharacter(
  49172. { name: "Linneaus", species: ["cougar", "deer"], tags: ["taur"] },
  49173. {
  49174. side: {
  49175. height: math.unit(100, "feet"),
  49176. name: "Side",
  49177. image: {
  49178. source: "./media/characters/linneaus/side.svg",
  49179. extra: 987/807,
  49180. bottom: 47/1034
  49181. }
  49182. },
  49183. },
  49184. [
  49185. {
  49186. name: "Macro",
  49187. height: math.unit(100, "feet"),
  49188. default: true
  49189. },
  49190. ]
  49191. ))
  49192. characterMakers.push(() => makeCharacter(
  49193. { name: "Nyterious Daligdig", species: ["triceratops"], tags: ["anthro"] },
  49194. {
  49195. front: {
  49196. height: math.unit(8, "feet"),
  49197. weight: math.unit(1200, "lb"),
  49198. name: "Front",
  49199. image: {
  49200. source: "./media/characters/nyterious-daligdig/front.svg",
  49201. extra: 1284/1094,
  49202. bottom: 84/1368
  49203. }
  49204. },
  49205. back: {
  49206. height: math.unit(8, "feet"),
  49207. weight: math.unit(1200, "lb"),
  49208. name: "Back",
  49209. image: {
  49210. source: "./media/characters/nyterious-daligdig/back.svg",
  49211. extra: 1301/1121,
  49212. bottom: 129/1430
  49213. }
  49214. },
  49215. mouth: {
  49216. height: math.unit(1.464, "feet"),
  49217. name: "Mouth",
  49218. image: {
  49219. source: "./media/characters/nyterious-daligdig/mouth.svg"
  49220. }
  49221. },
  49222. },
  49223. [
  49224. {
  49225. name: "Small",
  49226. height: math.unit(8, "feet"),
  49227. default: true
  49228. },
  49229. {
  49230. name: "Normal",
  49231. height: math.unit(15, "feet")
  49232. },
  49233. {
  49234. name: "Macro",
  49235. height: math.unit(90, "feet")
  49236. },
  49237. ]
  49238. ))
  49239. characterMakers.push(() => makeCharacter(
  49240. { name: "Bandel", species: ["drake"], tags: ["anthro"] },
  49241. {
  49242. front: {
  49243. height: math.unit(7 + 4/12, "feet"),
  49244. weight: math.unit(252, "lb"),
  49245. name: "Front",
  49246. image: {
  49247. source: "./media/characters/bandel/front.svg",
  49248. extra: 1946/1775,
  49249. bottom: 26/1972
  49250. }
  49251. },
  49252. back: {
  49253. height: math.unit(7 + 4/12, "feet"),
  49254. weight: math.unit(252, "lb"),
  49255. name: "Back",
  49256. image: {
  49257. source: "./media/characters/bandel/back.svg",
  49258. extra: 1940/1770,
  49259. bottom: 25/1965
  49260. }
  49261. },
  49262. maw: {
  49263. height: math.unit(2.15, "feet"),
  49264. name: "Maw",
  49265. image: {
  49266. source: "./media/characters/bandel/maw.svg"
  49267. }
  49268. },
  49269. stomach: {
  49270. height: math.unit(1.95, "feet"),
  49271. name: "Stomach",
  49272. image: {
  49273. source: "./media/characters/bandel/stomach.svg"
  49274. }
  49275. },
  49276. },
  49277. [
  49278. {
  49279. name: "Normal",
  49280. height: math.unit(7 + 4/12, "feet"),
  49281. default: true
  49282. },
  49283. ]
  49284. ))
  49285. characterMakers.push(() => makeCharacter(
  49286. { name: "Zed", species: ["avian", "mimic"], tags: ["anthro"] },
  49287. {
  49288. front: {
  49289. height: math.unit(10 + 5/12, "feet"),
  49290. weight: math.unit(773.5, "kg"),
  49291. name: "Front",
  49292. image: {
  49293. source: "./media/characters/zed/front.svg",
  49294. extra: 987/941,
  49295. bottom: 52/1039
  49296. }
  49297. },
  49298. },
  49299. [
  49300. {
  49301. name: "Short",
  49302. height: math.unit(5 + 4/12, "feet")
  49303. },
  49304. {
  49305. name: "Average",
  49306. height: math.unit(10 + 5/12, "feet"),
  49307. default: true
  49308. },
  49309. {
  49310. name: "Mini-Macro",
  49311. height: math.unit(24 + 9/12, "feet")
  49312. },
  49313. {
  49314. name: "Macro",
  49315. height: math.unit(249, "feet")
  49316. },
  49317. {
  49318. name: "Mega-Macro",
  49319. height: math.unit(12490, "feet")
  49320. },
  49321. {
  49322. name: "Giga-Macro",
  49323. height: math.unit(24.9, "miles")
  49324. },
  49325. {
  49326. name: "Tera-Macro",
  49327. height: math.unit(24900, "miles")
  49328. },
  49329. {
  49330. name: "Cosmic Scale",
  49331. height: math.unit(38.9, "lightyears")
  49332. },
  49333. {
  49334. name: "Universal Scale",
  49335. height: math.unit(138e12, "lightyears")
  49336. },
  49337. ]
  49338. ))
  49339. characterMakers.push(() => makeCharacter(
  49340. { name: "Ivan", species: ["okapi"], tags: ["anthro"] },
  49341. {
  49342. front: {
  49343. height: math.unit(1561, "inches"),
  49344. name: "Front",
  49345. image: {
  49346. source: "./media/characters/ivan/front.svg",
  49347. extra: 1126/1071,
  49348. bottom: 26/1152
  49349. }
  49350. },
  49351. back: {
  49352. height: math.unit(1561, "inches"),
  49353. name: "Back",
  49354. image: {
  49355. source: "./media/characters/ivan/back.svg",
  49356. extra: 1134/1079,
  49357. bottom: 30/1164
  49358. }
  49359. },
  49360. },
  49361. [
  49362. {
  49363. name: "Normal",
  49364. height: math.unit(1561, "inches"),
  49365. default: true
  49366. },
  49367. ]
  49368. ))
  49369. characterMakers.push(() => makeCharacter(
  49370. { name: "Robin (Arctic Hare)", species: ["arctic-hare"], tags: ["anthro"] },
  49371. {
  49372. front: {
  49373. height: math.unit(5 + 7/12, "feet"),
  49374. weight: math.unit(150, "lb"),
  49375. name: "Front",
  49376. image: {
  49377. source: "./media/characters/robin-arctic-hare/front.svg",
  49378. extra: 1148/974,
  49379. bottom: 20/1168
  49380. }
  49381. },
  49382. },
  49383. [
  49384. {
  49385. name: "Normal",
  49386. height: math.unit(5 + 7/12, "feet"),
  49387. default: true
  49388. },
  49389. ]
  49390. ))
  49391. characterMakers.push(() => makeCharacter(
  49392. { name: "Birch", species: ["dragon"], tags: ["feral"] },
  49393. {
  49394. side: {
  49395. height: math.unit(5, "feet"),
  49396. name: "Side",
  49397. image: {
  49398. source: "./media/characters/birch/side.svg",
  49399. extra: 985/796,
  49400. bottom: 111/1096
  49401. }
  49402. },
  49403. },
  49404. [
  49405. {
  49406. name: "Normal",
  49407. height: math.unit(5, "feet"),
  49408. default: true
  49409. },
  49410. ]
  49411. ))
  49412. characterMakers.push(() => makeCharacter(
  49413. { name: "Rasp", species: ["mew"], tags: ["anthro"] },
  49414. {
  49415. front: {
  49416. height: math.unit(4, "feet"),
  49417. name: "Front",
  49418. image: {
  49419. source: "./media/characters/rasp/front.svg",
  49420. extra: 561/478,
  49421. bottom: 74/635
  49422. }
  49423. },
  49424. },
  49425. [
  49426. {
  49427. name: "Normal",
  49428. height: math.unit(4, "feet"),
  49429. default: true
  49430. },
  49431. ]
  49432. ))
  49433. characterMakers.push(() => makeCharacter(
  49434. { name: "Agatha", species: ["leopard-gecko"], tags: ["anthro"] },
  49435. {
  49436. front: {
  49437. height: math.unit(4 + 6/12, "feet"),
  49438. name: "Front",
  49439. image: {
  49440. source: "./media/characters/agatha/front.svg",
  49441. extra: 947/933,
  49442. bottom: 42/989
  49443. }
  49444. },
  49445. back: {
  49446. height: math.unit(4 + 6/12, "feet"),
  49447. name: "Back",
  49448. image: {
  49449. source: "./media/characters/agatha/back.svg",
  49450. extra: 935/922,
  49451. bottom: 48/983
  49452. }
  49453. },
  49454. },
  49455. [
  49456. {
  49457. name: "Normal",
  49458. height: math.unit(4 + 6 /12, "feet"),
  49459. default: true
  49460. },
  49461. {
  49462. name: "Max Size",
  49463. height: math.unit(500, "feet")
  49464. },
  49465. ]
  49466. ))
  49467. characterMakers.push(() => makeCharacter(
  49468. { name: "Roggy", species: ["monster"], tags: ["feral"] },
  49469. {
  49470. side: {
  49471. height: math.unit(30, "feet"),
  49472. name: "Side",
  49473. image: {
  49474. source: "./media/characters/roggy/side.svg",
  49475. extra: 909/643,
  49476. bottom: 63/972
  49477. }
  49478. },
  49479. lounging: {
  49480. height: math.unit(20, "feet"),
  49481. name: "Lounging",
  49482. image: {
  49483. source: "./media/characters/roggy/lounging.svg",
  49484. extra: 643/479,
  49485. bottom: 145/788
  49486. }
  49487. },
  49488. handpaw: {
  49489. height: math.unit(13.1, "feet"),
  49490. name: "Handpaw",
  49491. image: {
  49492. source: "./media/characters/roggy/handpaw.svg"
  49493. }
  49494. },
  49495. footpaw: {
  49496. height: math.unit(15.8, "feet"),
  49497. name: "Footpaw",
  49498. image: {
  49499. source: "./media/characters/roggy/footpaw.svg"
  49500. }
  49501. },
  49502. },
  49503. [
  49504. {
  49505. name: "Menacing",
  49506. height: math.unit(30, "feet"),
  49507. default: true
  49508. },
  49509. ]
  49510. ))
  49511. characterMakers.push(() => makeCharacter(
  49512. { name: "Naomi", species: ["mienshao"], tags: ["anthro"] },
  49513. {
  49514. front: {
  49515. height: math.unit(5 + 7/12, "feet"),
  49516. weight: math.unit(135, "lb"),
  49517. name: "Front",
  49518. image: {
  49519. source: "./media/characters/naomi/front.svg",
  49520. extra: 1209/1154,
  49521. bottom: 129/1338
  49522. }
  49523. },
  49524. back: {
  49525. height: math.unit(5 + 7/12, "feet"),
  49526. weight: math.unit(135, "lb"),
  49527. name: "Back",
  49528. image: {
  49529. source: "./media/characters/naomi/back.svg",
  49530. extra: 1252/1190,
  49531. bottom: 23/1275
  49532. }
  49533. },
  49534. },
  49535. [
  49536. {
  49537. name: "Normal",
  49538. height: math.unit(5 + 7 /12, "feet"),
  49539. default: true
  49540. },
  49541. ]
  49542. ))
  49543. characterMakers.push(() => makeCharacter(
  49544. { name: "Kimpi", species: ["dreamspawn"], tags: ["feral"] },
  49545. {
  49546. side: {
  49547. height: math.unit(35, "meters"),
  49548. name: "Side",
  49549. image: {
  49550. source: "./media/characters/kimpi/side.svg",
  49551. extra: 419/382,
  49552. bottom: 63/482
  49553. }
  49554. },
  49555. hand: {
  49556. height: math.unit(8.96, "meters"),
  49557. name: "Hand",
  49558. image: {
  49559. source: "./media/characters/kimpi/hand.svg"
  49560. }
  49561. },
  49562. },
  49563. [
  49564. {
  49565. name: "Normal",
  49566. height: math.unit(35, "meters"),
  49567. default: true
  49568. },
  49569. ]
  49570. ))
  49571. characterMakers.push(() => makeCharacter(
  49572. { name: "Pepper (Purrloin)", species: ["purrloin"], tags: ["anthro"] },
  49573. {
  49574. front: {
  49575. height: math.unit(4 + 4/12, "feet"),
  49576. name: "Front",
  49577. image: {
  49578. source: "./media/characters/pepper-purrloin/front.svg",
  49579. extra: 1141/1024,
  49580. bottom: 21/1162
  49581. }
  49582. },
  49583. },
  49584. [
  49585. {
  49586. name: "Normal",
  49587. height: math.unit(4 + 4/12, "feet"),
  49588. default: true
  49589. },
  49590. ]
  49591. ))
  49592. characterMakers.push(() => makeCharacter(
  49593. { name: "Raphael", species: ["noivern"], tags: ["anthro"] },
  49594. {
  49595. front: {
  49596. height: math.unit(6 + 2/12, "feet"),
  49597. name: "Front",
  49598. image: {
  49599. source: "./media/characters/raphael/front.svg",
  49600. extra: 1101/962,
  49601. bottom: 59/1160
  49602. }
  49603. },
  49604. },
  49605. [
  49606. {
  49607. name: "Normal",
  49608. height: math.unit(6 + 2/12, "feet"),
  49609. default: true
  49610. },
  49611. ]
  49612. ))
  49613. characterMakers.push(() => makeCharacter(
  49614. { name: "Victor Williams", species: ["wolf"], tags: ["anthro"] },
  49615. {
  49616. front: {
  49617. height: math.unit(6, "feet"),
  49618. weight: math.unit(150, "lb"),
  49619. name: "Front",
  49620. image: {
  49621. source: "./media/characters/victor-williams/front.svg",
  49622. extra: 1894/1825,
  49623. bottom: 67/1961
  49624. }
  49625. },
  49626. },
  49627. [
  49628. {
  49629. name: "Normal",
  49630. height: math.unit(6, "feet"),
  49631. default: true
  49632. },
  49633. ]
  49634. ))
  49635. characterMakers.push(() => makeCharacter(
  49636. { name: "Rachel", species: ["hedgehog"], tags: ["anthro"] },
  49637. {
  49638. front: {
  49639. height: math.unit(5 + 8/12, "feet"),
  49640. weight: math.unit(150, "lb"),
  49641. name: "Front",
  49642. image: {
  49643. source: "./media/characters/rachel/front.svg",
  49644. extra: 1902/1787,
  49645. bottom: 46/1948
  49646. }
  49647. },
  49648. },
  49649. [
  49650. {
  49651. name: "Base Height",
  49652. height: math.unit(5 + 8/12, "feet"),
  49653. default: true
  49654. },
  49655. {
  49656. name: "Macro",
  49657. height: math.unit(200, "feet")
  49658. },
  49659. {
  49660. name: "Mega Macro",
  49661. height: math.unit(1, "mile")
  49662. },
  49663. {
  49664. name: "Giga Macro",
  49665. height: math.unit(1500, "miles")
  49666. },
  49667. {
  49668. name: "Tera Macro",
  49669. height: math.unit(8000, "miles")
  49670. },
  49671. {
  49672. name: "Tera Macro+",
  49673. height: math.unit(2e5, "miles")
  49674. },
  49675. ]
  49676. ))
  49677. characterMakers.push(() => makeCharacter(
  49678. { name: "Svetlana Rozovskaya", species: ["dragon", "naga"], tags: ["naga"] },
  49679. {
  49680. front: {
  49681. height: math.unit(6.5, "feet"),
  49682. name: "Front",
  49683. image: {
  49684. source: "./media/characters/svetlana-rozovskaya/front.svg",
  49685. extra: 860/819,
  49686. bottom: 307/1167
  49687. }
  49688. },
  49689. back: {
  49690. height: math.unit(6.5, "feet"),
  49691. name: "Back",
  49692. image: {
  49693. source: "./media/characters/svetlana-rozovskaya/back.svg",
  49694. extra: 880/837,
  49695. bottom: 395/1275
  49696. }
  49697. },
  49698. sleeping: {
  49699. height: math.unit(2.79, "feet"),
  49700. name: "Sleeping",
  49701. image: {
  49702. source: "./media/characters/svetlana-rozovskaya/sleeping.svg",
  49703. extra: 465/383,
  49704. bottom: 263/728
  49705. }
  49706. },
  49707. maw: {
  49708. height: math.unit(2.52, "feet"),
  49709. name: "Maw",
  49710. image: {
  49711. source: "./media/characters/svetlana-rozovskaya/maw.svg"
  49712. }
  49713. },
  49714. },
  49715. [
  49716. {
  49717. name: "Normal",
  49718. height: math.unit(6.5, "feet"),
  49719. default: true
  49720. },
  49721. ]
  49722. ))
  49723. characterMakers.push(() => makeCharacter(
  49724. { name: "Nova Nerium", species: ["dragon", "cat"], tags: ["anthro"] },
  49725. {
  49726. front: {
  49727. height: math.unit(5, "feet"),
  49728. name: "Front",
  49729. image: {
  49730. source: "./media/characters/nova-nerium/front.svg",
  49731. extra: 1548/1392,
  49732. bottom: 374/1922
  49733. }
  49734. },
  49735. back: {
  49736. height: math.unit(5, "feet"),
  49737. name: "Back",
  49738. image: {
  49739. source: "./media/characters/nova-nerium/back.svg",
  49740. extra: 1658/1468,
  49741. bottom: 257/1915
  49742. }
  49743. },
  49744. },
  49745. [
  49746. {
  49747. name: "Normal",
  49748. height: math.unit(5, "feet"),
  49749. default: true
  49750. },
  49751. ]
  49752. ))
  49753. characterMakers.push(() => makeCharacter(
  49754. { name: "Ashe Pyriph", species: ["liger"], tags: ["anthro"] },
  49755. {
  49756. front: {
  49757. height: math.unit(5 + 4/12, "feet"),
  49758. name: "Front",
  49759. image: {
  49760. source: "./media/characters/ashe-pyriph/front.svg",
  49761. extra: 1935/1747,
  49762. bottom: 60/1995
  49763. }
  49764. },
  49765. },
  49766. [
  49767. {
  49768. name: "Normal",
  49769. height: math.unit(5 + 4/12, "feet"),
  49770. default: true
  49771. },
  49772. ]
  49773. ))
  49774. characterMakers.push(() => makeCharacter(
  49775. { name: "Flicker Wisp", species: ["wolf", "drider"], tags: ["anthro"] },
  49776. {
  49777. front: {
  49778. height: math.unit(8.7, "feet"),
  49779. name: "Front",
  49780. image: {
  49781. source: "./media/characters/flicker-wisp/front.svg",
  49782. extra: 1835/1613,
  49783. bottom: 449/2284
  49784. }
  49785. },
  49786. side: {
  49787. height: math.unit(8.7, "feet"),
  49788. name: "Side",
  49789. image: {
  49790. source: "./media/characters/flicker-wisp/side.svg",
  49791. extra: 1841/1642,
  49792. bottom: 336/2177
  49793. },
  49794. default: true
  49795. },
  49796. maw: {
  49797. height: math.unit(3.35, "feet"),
  49798. name: "Maw",
  49799. image: {
  49800. source: "./media/characters/flicker-wisp/maw.svg",
  49801. extra: 2338/1506,
  49802. bottom: 0/2338
  49803. }
  49804. },
  49805. ovipositor: {
  49806. height: math.unit(4.95, "feet"),
  49807. name: "Ovipositor",
  49808. image: {
  49809. source: "./media/characters/flicker-wisp/ovipositor.svg"
  49810. }
  49811. },
  49812. egg: {
  49813. height: math.unit(0.385, "feet"),
  49814. weight: math.unit(2, "lb"),
  49815. name: "Egg",
  49816. image: {
  49817. source: "./media/characters/flicker-wisp/egg.svg"
  49818. }
  49819. },
  49820. },
  49821. [
  49822. {
  49823. name: "Normal",
  49824. height: math.unit(8.7, "feet"),
  49825. default: true
  49826. },
  49827. ]
  49828. ))
  49829. characterMakers.push(() => makeCharacter(
  49830. { name: "Faefnul", species: ["alien", "lizard"], tags: ["anthro"] },
  49831. {
  49832. side: {
  49833. height: math.unit(11, "feet"),
  49834. name: "Side",
  49835. image: {
  49836. source: "./media/characters/faefnul/side.svg",
  49837. extra: 1100/1007,
  49838. bottom: 0/1100
  49839. }
  49840. },
  49841. },
  49842. [
  49843. {
  49844. name: "Normal",
  49845. height: math.unit(11, "feet"),
  49846. default: true
  49847. },
  49848. ]
  49849. ))
  49850. characterMakers.push(() => makeCharacter(
  49851. { name: "Shady", species: ["fox"], tags: ["anthro"] },
  49852. {
  49853. front: {
  49854. height: math.unit(6 + 2/12, "feet"),
  49855. name: "Front",
  49856. image: {
  49857. source: "./media/characters/shady/front.svg",
  49858. extra: 502/461,
  49859. bottom: 9/511
  49860. }
  49861. },
  49862. kneeling: {
  49863. height: math.unit(4.6, "feet"),
  49864. name: "Kneeling",
  49865. image: {
  49866. source: "./media/characters/shady/kneeling.svg",
  49867. extra: 1328/1219,
  49868. bottom: 117/1445
  49869. }
  49870. },
  49871. maw: {
  49872. height: math.unit(2, "feet"),
  49873. name: "Maw",
  49874. image: {
  49875. source: "./media/characters/shady/maw.svg"
  49876. }
  49877. },
  49878. },
  49879. [
  49880. {
  49881. name: "Nano",
  49882. height: math.unit(1, "mm")
  49883. },
  49884. {
  49885. name: "Micro",
  49886. height: math.unit(12, "mm")
  49887. },
  49888. {
  49889. name: "Tiny",
  49890. height: math.unit(3, "inches")
  49891. },
  49892. {
  49893. name: "Normal",
  49894. height: math.unit(6 + 2/12, "feet"),
  49895. default: true
  49896. },
  49897. {
  49898. name: "Big",
  49899. height: math.unit(15, "feet")
  49900. },
  49901. {
  49902. name: "Macro",
  49903. height: math.unit(150, "feet")
  49904. },
  49905. {
  49906. name: "Titanic",
  49907. height: math.unit(500, "feet")
  49908. },
  49909. ]
  49910. ))
  49911. characterMakers.push(() => makeCharacter(
  49912. { name: "Fenrir", species: ["wolf"], tags: ["anthro"] },
  49913. {
  49914. front: {
  49915. height: math.unit(12, "feet"),
  49916. name: "Front",
  49917. image: {
  49918. source: "./media/characters/fenrir/front.svg",
  49919. extra: 968/875,
  49920. bottom: 22/990
  49921. }
  49922. },
  49923. },
  49924. [
  49925. {
  49926. name: "Big",
  49927. height: math.unit(12, "feet"),
  49928. default: true
  49929. },
  49930. ]
  49931. ))
  49932. characterMakers.push(() => makeCharacter(
  49933. { name: "Makar", species: ["cat"], tags: ["anthro"] },
  49934. {
  49935. front: {
  49936. height: math.unit(5 + 4/12, "feet"),
  49937. name: "Front",
  49938. image: {
  49939. source: "./media/characters/makar/front.svg",
  49940. extra: 1181/1112,
  49941. bottom: 78/1259
  49942. }
  49943. },
  49944. },
  49945. [
  49946. {
  49947. name: "Normal",
  49948. height: math.unit(5 + 4/12, "feet"),
  49949. default: true
  49950. },
  49951. ]
  49952. ))
  49953. characterMakers.push(() => makeCharacter(
  49954. { name: "Callow", species: ["deer"], tags: ["anthro"] },
  49955. {
  49956. front: {
  49957. height: math.unit(5 + 7/12, "feet"),
  49958. name: "Front",
  49959. image: {
  49960. source: "./media/characters/callow/front.svg",
  49961. extra: 1482/1304,
  49962. bottom: 23/1505
  49963. }
  49964. },
  49965. back: {
  49966. height: math.unit(5 + 7/12, "feet"),
  49967. name: "Back",
  49968. image: {
  49969. source: "./media/characters/callow/back.svg",
  49970. extra: 1484/1296,
  49971. bottom: 25/1509
  49972. }
  49973. },
  49974. },
  49975. [
  49976. {
  49977. name: "Micro",
  49978. height: math.unit(3, "inches"),
  49979. default: true
  49980. },
  49981. {
  49982. name: "Normal",
  49983. height: math.unit(5 + 7/12, "feet")
  49984. },
  49985. ]
  49986. ))
  49987. characterMakers.push(() => makeCharacter(
  49988. { name: "Natel", species: ["folf"], tags: ["anthro"] },
  49989. {
  49990. front: {
  49991. height: math.unit(6 + 2/12, "feet"),
  49992. name: "Front",
  49993. image: {
  49994. source: "./media/characters/natel/front.svg",
  49995. extra: 1833/1692,
  49996. bottom: 166/1999
  49997. }
  49998. },
  49999. },
  50000. [
  50001. {
  50002. name: "Normal",
  50003. height: math.unit(6 + 2/12, "feet"),
  50004. default: true
  50005. },
  50006. ]
  50007. ))
  50008. characterMakers.push(() => makeCharacter(
  50009. { name: "Misu", species: ["coyote"], tags: ["anthro"] },
  50010. {
  50011. front: {
  50012. height: math.unit(1.75, "meters"),
  50013. name: "Front",
  50014. image: {
  50015. source: "./media/characters/misu/front.svg",
  50016. extra: 1690/1558,
  50017. bottom: 234/1924
  50018. }
  50019. },
  50020. back: {
  50021. height: math.unit(1.75, "meters"),
  50022. name: "Back",
  50023. image: {
  50024. source: "./media/characters/misu/back.svg",
  50025. extra: 1762/1618,
  50026. bottom: 146/1908
  50027. }
  50028. },
  50029. frontNude: {
  50030. height: math.unit(1.75, "meters"),
  50031. name: "Front (Nude)",
  50032. image: {
  50033. source: "./media/characters/misu/front-nude.svg",
  50034. extra: 1690/1558,
  50035. bottom: 234/1924
  50036. }
  50037. },
  50038. backNude: {
  50039. height: math.unit(1.75, "meters"),
  50040. name: "Back (Nude)",
  50041. image: {
  50042. source: "./media/characters/misu/back-nude.svg",
  50043. extra: 1762/1618,
  50044. bottom: 146/1908
  50045. }
  50046. },
  50047. frontErect: {
  50048. height: math.unit(1.75, "meters"),
  50049. name: "Front (Erect)",
  50050. image: {
  50051. source: "./media/characters/misu/front-erect.svg",
  50052. extra: 1690/1558,
  50053. bottom: 234/1924
  50054. }
  50055. },
  50056. maw: {
  50057. height: math.unit(0.47, "meters"),
  50058. name: "Maw",
  50059. image: {
  50060. source: "./media/characters/misu/maw.svg"
  50061. }
  50062. },
  50063. head: {
  50064. height: math.unit(0.35, "meters"),
  50065. name: "Head",
  50066. image: {
  50067. source: "./media/characters/misu/head.svg"
  50068. }
  50069. },
  50070. rear: {
  50071. height: math.unit(0.47, "meters"),
  50072. name: "Rear",
  50073. image: {
  50074. source: "./media/characters/misu/rear.svg"
  50075. }
  50076. },
  50077. },
  50078. [
  50079. {
  50080. name: "Normal",
  50081. height: math.unit(1.75, "meters")
  50082. },
  50083. {
  50084. name: "Not good for the people",
  50085. height: math.unit(42, "meters")
  50086. },
  50087. {
  50088. name: "Not good for the neighborhood",
  50089. height: math.unit(135, "meters")
  50090. },
  50091. {
  50092. name: "Bit bigger problem",
  50093. height: math.unit(380, "meters"),
  50094. default: true
  50095. },
  50096. {
  50097. name: "Not good for the city",
  50098. height: math.unit(1.5, "km")
  50099. },
  50100. {
  50101. name: "Not good for the county",
  50102. height: math.unit(5.5, "km")
  50103. },
  50104. {
  50105. name: "Not good for the state",
  50106. height: math.unit(25, "km")
  50107. },
  50108. {
  50109. name: "Not good for the country",
  50110. height: math.unit(125, "km")
  50111. },
  50112. {
  50113. name: "Not good for the continent",
  50114. height: math.unit(2100, "km")
  50115. },
  50116. {
  50117. name: "Not good for the planet",
  50118. height: math.unit(35000, "km")
  50119. },
  50120. {
  50121. name: "Just no",
  50122. height: math.unit(8.5e18, "km")
  50123. },
  50124. ]
  50125. ))
  50126. characterMakers.push(() => makeCharacter(
  50127. { name: "Poppy", species: ["human"], tags: ["anthro"] },
  50128. {
  50129. front: {
  50130. height: math.unit(6.5, "feet"),
  50131. name: "Front",
  50132. image: {
  50133. source: "./media/characters/poppy/front.svg",
  50134. extra: 1878/1812,
  50135. bottom: 43/1921
  50136. }
  50137. },
  50138. feet: {
  50139. height: math.unit(1.06, "feet"),
  50140. name: "Feet",
  50141. image: {
  50142. source: "./media/characters/poppy/feet.svg",
  50143. extra: 1083/1083,
  50144. bottom: 87/1170
  50145. }
  50146. },
  50147. },
  50148. [
  50149. {
  50150. name: "Human",
  50151. height: math.unit(6.5, "feet")
  50152. },
  50153. {
  50154. name: "Default",
  50155. height: math.unit(300, "feet"),
  50156. default: true
  50157. },
  50158. {
  50159. name: "Huge",
  50160. height: math.unit(850, "feet")
  50161. },
  50162. {
  50163. name: "Mega",
  50164. height: math.unit(8000, "feet")
  50165. },
  50166. {
  50167. name: "Giga",
  50168. height: math.unit(300, "miles")
  50169. },
  50170. ]
  50171. ))
  50172. characterMakers.push(() => makeCharacter(
  50173. { name: "Zener", species: ["dragon" ,"robot"], tags: ["anthro", "feral"] },
  50174. {
  50175. bipedal: {
  50176. height: math.unit(7, "feet"),
  50177. name: "Bipedal",
  50178. image: {
  50179. source: "./media/characters/zener/bipedal.svg",
  50180. extra: 874/805,
  50181. bottom: 109/983
  50182. }
  50183. },
  50184. quadrupedal: {
  50185. height: math.unit(4.64, "feet"),
  50186. name: "Quadrupedal",
  50187. image: {
  50188. source: "./media/characters/zener/quadrupedal.svg",
  50189. extra: 638/507,
  50190. bottom: 190/828
  50191. }
  50192. },
  50193. cock: {
  50194. height: math.unit(18, "inches"),
  50195. name: "Cock",
  50196. image: {
  50197. source: "./media/characters/zener/cock.svg"
  50198. }
  50199. },
  50200. },
  50201. [
  50202. {
  50203. name: "Normal",
  50204. height: math.unit(7, "feet"),
  50205. default: true
  50206. },
  50207. ]
  50208. ))
  50209. characterMakers.push(() => makeCharacter(
  50210. { name: "Charlie (Dog)", species: ["dog"], tags: ["anthro"] },
  50211. {
  50212. nude: {
  50213. height: math.unit(5 + 6/12, "feet"),
  50214. name: "Nude",
  50215. image: {
  50216. source: "./media/characters/charlie-dog/nude.svg",
  50217. extra: 768/734,
  50218. bottom: 26/794
  50219. }
  50220. },
  50221. dressed: {
  50222. height: math.unit(5 + 6/12, "feet"),
  50223. name: "Dressed",
  50224. image: {
  50225. source: "./media/characters/charlie-dog/dressed.svg",
  50226. extra: 768/734,
  50227. bottom: 26/794
  50228. }
  50229. },
  50230. },
  50231. [
  50232. {
  50233. name: "Normal",
  50234. height: math.unit(5 + 6/12, "feet"),
  50235. default: true
  50236. },
  50237. ]
  50238. ))
  50239. characterMakers.push(() => makeCharacter(
  50240. { name: "Ir'istrasz", species: ["dragon"], tags: ["anthro"] },
  50241. {
  50242. front: {
  50243. height: math.unit(6 + 4/12, "feet"),
  50244. name: "Front",
  50245. image: {
  50246. source: "./media/characters/ir'istrasz/front.svg",
  50247. extra: 1014/977,
  50248. bottom: 65/1079
  50249. }
  50250. },
  50251. back: {
  50252. height: math.unit(6 + 4/12, "feet"),
  50253. name: "Back",
  50254. image: {
  50255. source: "./media/characters/ir'istrasz/back.svg",
  50256. extra: 1024/992,
  50257. bottom: 34/1058
  50258. }
  50259. },
  50260. },
  50261. [
  50262. {
  50263. name: "Normal",
  50264. height: math.unit(6 + 4/12, "feet"),
  50265. default: true
  50266. },
  50267. ]
  50268. ))
  50269. characterMakers.push(() => makeCharacter(
  50270. { name: "Dee (Ditto)", species: ["ditto"], tags: ["anthro", "goo"] },
  50271. {
  50272. front: {
  50273. height: math.unit(5 + 8/12, "feet"),
  50274. name: "Front",
  50275. image: {
  50276. source: "./media/characters/dee-ditto/front.svg",
  50277. extra: 1874/1785,
  50278. bottom: 68/1942
  50279. }
  50280. },
  50281. back: {
  50282. height: math.unit(5 + 8/12, "feet"),
  50283. name: "Back",
  50284. image: {
  50285. source: "./media/characters/dee-ditto/back.svg",
  50286. extra: 1870/1783,
  50287. bottom: 77/1947
  50288. }
  50289. },
  50290. },
  50291. [
  50292. {
  50293. name: "Normal",
  50294. height: math.unit(5 + 8/12, "feet"),
  50295. default: true
  50296. },
  50297. ]
  50298. ))
  50299. characterMakers.push(() => makeCharacter(
  50300. { name: "Fey", species: ["werebeast", "fox"], tags: ["anthro"] },
  50301. {
  50302. front: {
  50303. height: math.unit(7 + 6/12, "feet"),
  50304. name: "Front",
  50305. image: {
  50306. source: "./media/characters/fey/front.svg",
  50307. extra: 995/979,
  50308. bottom: 30/1025
  50309. }
  50310. },
  50311. back: {
  50312. height: math.unit(7 + 6/12, "feet"),
  50313. name: "Back",
  50314. image: {
  50315. source: "./media/characters/fey/back.svg",
  50316. extra: 1079/1008,
  50317. bottom: 5/1084
  50318. }
  50319. },
  50320. dressed: {
  50321. height: math.unit(7 + 6/12, "feet"),
  50322. name: "Dressed",
  50323. image: {
  50324. source: "./media/characters/fey/dressed.svg",
  50325. extra: 995/979,
  50326. bottom: 30/1025
  50327. }
  50328. },
  50329. },
  50330. [
  50331. {
  50332. name: "Normal",
  50333. height: math.unit(7 + 6/12, "feet"),
  50334. default: true
  50335. },
  50336. ]
  50337. ))
  50338. characterMakers.push(() => makeCharacter(
  50339. { name: "Aster", species: ["alien"], tags: ["anthro"] },
  50340. {
  50341. standing: {
  50342. height: math.unit(17, "feet"),
  50343. name: "Standing",
  50344. image: {
  50345. source: "./media/characters/aster/standing.svg",
  50346. extra: 1798/1598,
  50347. bottom: 117/1915
  50348. }
  50349. },
  50350. },
  50351. [
  50352. {
  50353. name: "Normal",
  50354. height: math.unit(17, "feet"),
  50355. default: true
  50356. },
  50357. {
  50358. name: "Homewrecker",
  50359. height: math.unit(95, "feet")
  50360. },
  50361. {
  50362. name: "Planet Devourer",
  50363. height: math.unit(1008000, "miles")
  50364. },
  50365. ]
  50366. ))
  50367. characterMakers.push(() => makeCharacter(
  50368. { name: "Devon Childs", species: ["hyena"], tags: ["anthro"] },
  50369. {
  50370. front: {
  50371. height: math.unit(6 + 5/12, "feet"),
  50372. weight: math.unit(265, "lb"),
  50373. name: "Front",
  50374. image: {
  50375. source: "./media/characters/devon-childs/front.svg",
  50376. extra: 1795/1721,
  50377. bottom: 41/1836
  50378. }
  50379. },
  50380. side: {
  50381. height: math.unit(6 + 5/12, "feet"),
  50382. weight: math.unit(265, "lb"),
  50383. name: "Side",
  50384. image: {
  50385. source: "./media/characters/devon-childs/side.svg",
  50386. extra: 1812/1738,
  50387. bottom: 30/1842
  50388. }
  50389. },
  50390. back: {
  50391. height: math.unit(6 + 5/12, "feet"),
  50392. weight: math.unit(265, "lb"),
  50393. name: "Back",
  50394. image: {
  50395. source: "./media/characters/devon-childs/back.svg",
  50396. extra: 1808/1735,
  50397. bottom: 23/1831
  50398. }
  50399. },
  50400. hand: {
  50401. height: math.unit(1.464, "feet"),
  50402. name: "Hand",
  50403. image: {
  50404. source: "./media/characters/devon-childs/hand.svg"
  50405. }
  50406. },
  50407. foot: {
  50408. height: math.unit(1.6, "feet"),
  50409. name: "Foot",
  50410. image: {
  50411. source: "./media/characters/devon-childs/foot.svg"
  50412. }
  50413. },
  50414. },
  50415. [
  50416. {
  50417. name: "Micro",
  50418. height: math.unit(7, "cm")
  50419. },
  50420. {
  50421. name: "Normal",
  50422. height: math.unit(6 + 5/12, "feet"),
  50423. default: true
  50424. },
  50425. {
  50426. name: "Macro",
  50427. height: math.unit(154, "feet")
  50428. },
  50429. ]
  50430. ))
  50431. characterMakers.push(() => makeCharacter(
  50432. { name: "Lydemox Vir", species: ["kitsune"], tags: ["anthro"] },
  50433. {
  50434. front: {
  50435. height: math.unit(6, "feet"),
  50436. weight: math.unit(180, "lb"),
  50437. name: "Front",
  50438. image: {
  50439. source: "./media/characters/lydemox-vir/front.svg",
  50440. extra: 1632/1435,
  50441. bottom: 58/1690
  50442. }
  50443. },
  50444. frontSFW: {
  50445. height: math.unit(6, "feet"),
  50446. weight: math.unit(180, "lb"),
  50447. name: "Front (SFW)",
  50448. image: {
  50449. source: "./media/characters/lydemox-vir/front-sfw.svg",
  50450. extra: 1632/1435,
  50451. bottom: 58/1690
  50452. }
  50453. },
  50454. back: {
  50455. height: math.unit(6, "feet"),
  50456. weight: math.unit(180, "lb"),
  50457. name: "Back",
  50458. image: {
  50459. source: "./media/characters/lydemox-vir/back.svg",
  50460. extra: 1593/1408,
  50461. bottom: 31/1624
  50462. }
  50463. },
  50464. paw: {
  50465. height: math.unit(1.85, "feet"),
  50466. name: "Paw",
  50467. image: {
  50468. source: "./media/characters/lydemox-vir/paw.svg"
  50469. }
  50470. },
  50471. dick: {
  50472. height: math.unit(1.8, "feet"),
  50473. name: "Dick",
  50474. image: {
  50475. source: "./media/characters/lydemox-vir/dick.svg"
  50476. }
  50477. },
  50478. },
  50479. [
  50480. {
  50481. name: "Macro",
  50482. height: math.unit(100, "feet"),
  50483. default: true
  50484. },
  50485. {
  50486. name: "Teramacro",
  50487. height: math.unit(1, "earth")
  50488. },
  50489. {
  50490. name: "Planetary",
  50491. height: math.unit(20, "earths")
  50492. },
  50493. ]
  50494. ))
  50495. characterMakers.push(() => makeCharacter(
  50496. { name: "Mia", species: ["panda"], tags: ["anthro"] },
  50497. {
  50498. front: {
  50499. height: math.unit(15 + 8/12, "feet"),
  50500. weight: math.unit(1237, "kg"),
  50501. name: "Front",
  50502. image: {
  50503. source: "./media/characters/mia/front.svg",
  50504. extra: 1573/1446,
  50505. bottom: 58/1631
  50506. }
  50507. },
  50508. },
  50509. [
  50510. {
  50511. name: "Small",
  50512. height: math.unit(9 + 5/12, "feet")
  50513. },
  50514. {
  50515. name: "Normal",
  50516. height: math.unit(15 + 8/12, "feet"),
  50517. default: true
  50518. },
  50519. ]
  50520. ))
  50521. characterMakers.push(() => makeCharacter(
  50522. { name: "Mr. Graves", species: ["wolf"], tags: ["anthro"] },
  50523. {
  50524. front: {
  50525. height: math.unit(10 + 6/12, "feet"),
  50526. weight: math.unit(1.3, "tons"),
  50527. name: "Front",
  50528. image: {
  50529. source: "./media/characters/mr-graves/front.svg",
  50530. extra: 1779/1695,
  50531. bottom: 198/1977
  50532. }
  50533. },
  50534. },
  50535. [
  50536. {
  50537. name: "Normal",
  50538. height: math.unit(10 + 6 /12, "feet"),
  50539. default: true
  50540. },
  50541. ]
  50542. ))
  50543. characterMakers.push(() => makeCharacter(
  50544. { name: "Jess", species: ["human"], tags: ["anthro"] },
  50545. {
  50546. dressedFront: {
  50547. height: math.unit(5 + 8/12, "feet"),
  50548. weight: math.unit(125, "lb"),
  50549. name: "Dressed (Front)",
  50550. image: {
  50551. source: "./media/characters/jess/dressed-front.svg",
  50552. extra: 1176/1152,
  50553. bottom: 42/1218
  50554. }
  50555. },
  50556. dressedSide: {
  50557. height: math.unit(5 + 8/12, "feet"),
  50558. weight: math.unit(125, "lb"),
  50559. name: "Dressed (Side)",
  50560. image: {
  50561. source: "./media/characters/jess/dressed-side.svg",
  50562. extra: 1204/1190,
  50563. bottom: 6/1210
  50564. }
  50565. },
  50566. nudeFront: {
  50567. height: math.unit(5 + 8/12, "feet"),
  50568. weight: math.unit(125, "lb"),
  50569. name: "Nude (Front)",
  50570. image: {
  50571. source: "./media/characters/jess/nude-front.svg",
  50572. extra: 1176/1152,
  50573. bottom: 42/1218
  50574. }
  50575. },
  50576. nudeSide: {
  50577. height: math.unit(5 + 8/12, "feet"),
  50578. weight: math.unit(125, "lb"),
  50579. name: "Nude (Side)",
  50580. image: {
  50581. source: "./media/characters/jess/nude-side.svg",
  50582. extra: 1204/1190,
  50583. bottom: 6/1210
  50584. }
  50585. },
  50586. organsFront: {
  50587. height: math.unit(2.83799342105, "feet"),
  50588. name: "Organs (Front)",
  50589. image: {
  50590. source: "./media/characters/jess/organs-front.svg"
  50591. }
  50592. },
  50593. organsSide: {
  50594. height: math.unit(2.64225290474, "feet"),
  50595. name: "Organs (Side)",
  50596. image: {
  50597. source: "./media/characters/jess/organs-side.svg"
  50598. }
  50599. },
  50600. digestiveTractFront: {
  50601. height: math.unit(2.8106580871, "feet"),
  50602. name: "Digestive Tract (Front)",
  50603. image: {
  50604. source: "./media/characters/jess/digestive-tract-front.svg"
  50605. }
  50606. },
  50607. digestiveTractSide: {
  50608. height: math.unit(2.54365045014, "feet"),
  50609. name: "Digestive Tract (Side)",
  50610. image: {
  50611. source: "./media/characters/jess/digestive-tract-side.svg"
  50612. }
  50613. },
  50614. respiratorySystemFront: {
  50615. height: math.unit(1.11196233456, "feet"),
  50616. name: "Respiratory System (Front)",
  50617. image: {
  50618. source: "./media/characters/jess/respiratory-system-front.svg"
  50619. }
  50620. },
  50621. respiratorySystemSide: {
  50622. height: math.unit(0.89327966297, "feet"),
  50623. name: "Respiratory System (Side)",
  50624. image: {
  50625. source: "./media/characters/jess/respiratory-system-side.svg"
  50626. }
  50627. },
  50628. urinaryTractFront: {
  50629. height: math.unit(1.16126356186, "feet"),
  50630. name: "Urinary Tract (Front)",
  50631. image: {
  50632. source: "./media/characters/jess/urinary-tract-front.svg"
  50633. }
  50634. },
  50635. urinaryTractSide: {
  50636. height: math.unit(1.20910039627, "feet"),
  50637. name: "Urinary Tract (Side)",
  50638. image: {
  50639. source: "./media/characters/jess/urinary-tract-side.svg"
  50640. }
  50641. },
  50642. reproductiveOrgansFront: {
  50643. height: math.unit(0.48422591566, "feet"),
  50644. name: "Reproductive Organs (Front)",
  50645. image: {
  50646. source: "./media/characters/jess/reproductive-organs-front.svg"
  50647. }
  50648. },
  50649. reproductiveOrgansSide: {
  50650. height: math.unit(0.61553314481, "feet"),
  50651. name: "Reproductive Organs (Side)",
  50652. image: {
  50653. source: "./media/characters/jess/reproductive-organs-side.svg"
  50654. }
  50655. },
  50656. breastsFront: {
  50657. height: math.unit(0.47690395121, "feet"),
  50658. name: "Breasts (Front)",
  50659. image: {
  50660. source: "./media/characters/jess/breasts-front.svg"
  50661. }
  50662. },
  50663. breastsSide: {
  50664. height: math.unit(0.30556998307, "feet"),
  50665. name: "Breasts (Side)",
  50666. image: {
  50667. source: "./media/characters/jess/breasts-side.svg"
  50668. }
  50669. },
  50670. heartFront: {
  50671. height: math.unit(0.53011022622, "feet"),
  50672. name: "Heart (Front)",
  50673. image: {
  50674. source: "./media/characters/jess/heart-front.svg"
  50675. }
  50676. },
  50677. heartSide: {
  50678. height: math.unit(0.51790695213, "feet"),
  50679. name: "Heart (Side)",
  50680. image: {
  50681. source: "./media/characters/jess/heart-side.svg"
  50682. }
  50683. },
  50684. earsAndNoseFront: {
  50685. height: math.unit(0.29385483995, "feet"),
  50686. name: "Ears and Nose (Front)",
  50687. image: {
  50688. source: "./media/characters/jess/ears-and-nose-front.svg"
  50689. }
  50690. },
  50691. earsAndNoseSide: {
  50692. height: math.unit(0.18109658741, "feet"),
  50693. name: "Ears and Nose (Side)",
  50694. image: {
  50695. source: "./media/characters/jess/ears-and-nose-side.svg"
  50696. }
  50697. },
  50698. },
  50699. [
  50700. {
  50701. name: "Normal",
  50702. height: math.unit(5 + 8/12, "feet"),
  50703. default: true
  50704. },
  50705. ]
  50706. ))
  50707. characterMakers.push(() => makeCharacter(
  50708. { name: "Wimpering", species: ["human"], tags: ["anthro"] },
  50709. {
  50710. front: {
  50711. height: math.unit(6, "feet"),
  50712. weight: math.unit(6.64467e-7, "grams"),
  50713. name: "Front",
  50714. image: {
  50715. source: "./media/characters/wimpering/front.svg",
  50716. extra: 597/587,
  50717. bottom: 34/631
  50718. }
  50719. },
  50720. },
  50721. [
  50722. {
  50723. name: "Micro",
  50724. height: math.unit(0.4, "mm"),
  50725. default: true
  50726. },
  50727. ]
  50728. ))
  50729. characterMakers.push(() => makeCharacter(
  50730. { name: "Keltre", species: ["dog"], tags: ["anthro"] },
  50731. {
  50732. front: {
  50733. height: math.unit(5 + 2/12, "feet"),
  50734. weight: math.unit(110, "lb"),
  50735. name: "Front",
  50736. image: {
  50737. source: "./media/characters/keltre/front.svg",
  50738. extra: 1099/1057,
  50739. bottom: 22/1121
  50740. }
  50741. },
  50742. back: {
  50743. height: math.unit(5 + 2/12, "feet"),
  50744. weight: math.unit(110, "lb"),
  50745. name: "Back",
  50746. image: {
  50747. source: "./media/characters/keltre/back.svg",
  50748. extra: 1095/1053,
  50749. bottom: 17/1112
  50750. }
  50751. },
  50752. dressed: {
  50753. height: math.unit(5 + 2/12, "feet"),
  50754. weight: math.unit(110, "lb"),
  50755. name: "Dressed",
  50756. image: {
  50757. source: "./media/characters/keltre/dressed.svg",
  50758. extra: 1099/1057,
  50759. bottom: 22/1121
  50760. }
  50761. },
  50762. winter: {
  50763. height: math.unit(5 + 2/12, "feet"),
  50764. weight: math.unit(110, "lb"),
  50765. name: "Winter",
  50766. image: {
  50767. source: "./media/characters/keltre/winter.svg",
  50768. extra: 1099/1057,
  50769. bottom: 22/1121
  50770. }
  50771. },
  50772. head: {
  50773. height: math.unit(1.61 * 0.86, "feet"),
  50774. name: "Head",
  50775. image: {
  50776. source: "./media/characters/keltre/head.svg",
  50777. extra: 534/421,
  50778. bottom: 0/534
  50779. }
  50780. },
  50781. hand: {
  50782. height: math.unit(1.3 * 0.86, "feet"),
  50783. name: "Hand",
  50784. image: {
  50785. source: "./media/characters/keltre/hand.svg"
  50786. }
  50787. },
  50788. foot: {
  50789. height: math.unit(1.8 * 0.86, "feet"),
  50790. name: "Foot",
  50791. image: {
  50792. source: "./media/characters/keltre/foot.svg"
  50793. }
  50794. },
  50795. },
  50796. [
  50797. {
  50798. name: "Fine",
  50799. height: math.unit(1, "inch")
  50800. },
  50801. {
  50802. name: "Dimnutive",
  50803. height: math.unit(4, "inches")
  50804. },
  50805. {
  50806. name: "Tiny",
  50807. height: math.unit(1, "foot")
  50808. },
  50809. {
  50810. name: "Small",
  50811. height: math.unit(3, "feet")
  50812. },
  50813. {
  50814. name: "Normal",
  50815. height: math.unit(5 + 2/12, "feet"),
  50816. default: true
  50817. },
  50818. ]
  50819. ))
  50820. characterMakers.push(() => makeCharacter(
  50821. { name: "Nox", species: ["cat"], tags: ["anthro"] },
  50822. {
  50823. front: {
  50824. height: math.unit(6 + 2/12, "feet"),
  50825. name: "Front",
  50826. image: {
  50827. source: "./media/characters/nox/front.svg",
  50828. extra: 1917/1830,
  50829. bottom: 74/1991
  50830. }
  50831. },
  50832. back: {
  50833. height: math.unit(6 + 2/12, "feet"),
  50834. name: "Back",
  50835. image: {
  50836. source: "./media/characters/nox/back.svg",
  50837. extra: 1896/1815,
  50838. bottom: 21/1917
  50839. }
  50840. },
  50841. head: {
  50842. height: math.unit(1.1, "feet"),
  50843. name: "Head",
  50844. image: {
  50845. source: "./media/characters/nox/head.svg",
  50846. extra: 874/704,
  50847. bottom: 0/874
  50848. }
  50849. },
  50850. tattoo: {
  50851. height: math.unit(0.729, "feet"),
  50852. name: "Tattoo",
  50853. image: {
  50854. source: "./media/characters/nox/tattoo.svg"
  50855. }
  50856. },
  50857. },
  50858. [
  50859. {
  50860. name: "Normal",
  50861. height: math.unit(6 + 2/12, "feet")
  50862. },
  50863. {
  50864. name: "Gigamacro",
  50865. height: math.unit(2, "earths"),
  50866. default: true
  50867. },
  50868. {
  50869. name: "Cosmic",
  50870. height: math.unit(867, "yottameters")
  50871. },
  50872. ]
  50873. ))
  50874. characterMakers.push(() => makeCharacter(
  50875. { name: "Caspian", species: ["ferret"], tags: ["anthro"] },
  50876. {
  50877. front: {
  50878. height: math.unit(6, "feet"),
  50879. weight: math.unit(150, "lb"),
  50880. name: "Front",
  50881. image: {
  50882. source: "./media/characters/caspian/front.svg",
  50883. extra: 1443/1359,
  50884. bottom: 0/1443
  50885. }
  50886. },
  50887. back: {
  50888. height: math.unit(6, "feet"),
  50889. weight: math.unit(150, "lb"),
  50890. name: "Back",
  50891. image: {
  50892. source: "./media/characters/caspian/back.svg",
  50893. extra: 1379/1309,
  50894. bottom: 0/1379
  50895. }
  50896. },
  50897. head: {
  50898. height: math.unit(0.9, "feet"),
  50899. name: "Head",
  50900. image: {
  50901. source: "./media/characters/caspian/head.svg",
  50902. extra: 692/492,
  50903. bottom: 0/692
  50904. }
  50905. },
  50906. headAlt: {
  50907. height: math.unit(0.95, "feet"),
  50908. name: "Head (Alt)",
  50909. image: {
  50910. source: "./media/characters/caspian/head-alt.svg",
  50911. extra: 668/508,
  50912. bottom: 0/668
  50913. }
  50914. },
  50915. hand: {
  50916. height: math.unit(0.8, "feet"),
  50917. name: "Hand",
  50918. image: {
  50919. source: "./media/characters/caspian/hand.svg"
  50920. }
  50921. },
  50922. paw: {
  50923. height: math.unit(0.95, "feet"),
  50924. name: "Paw",
  50925. image: {
  50926. source: "./media/characters/caspian/paw.svg"
  50927. }
  50928. },
  50929. },
  50930. [
  50931. {
  50932. name: "Normal",
  50933. height: math.unit(162, "feet"),
  50934. default: true
  50935. },
  50936. ]
  50937. ))
  50938. characterMakers.push(() => makeCharacter(
  50939. { name: "Myra Aisling", species: ["coyote"], tags: ["anthro"] },
  50940. {
  50941. front: {
  50942. height: math.unit(6, "feet"),
  50943. name: "Front",
  50944. image: {
  50945. source: "./media/characters/myra-aisling/front.svg",
  50946. extra: 1268/1166,
  50947. bottom: 73/1341
  50948. }
  50949. },
  50950. back: {
  50951. height: math.unit(6, "feet"),
  50952. name: "Back",
  50953. image: {
  50954. source: "./media/characters/myra-aisling/back.svg",
  50955. extra: 1249/1149,
  50956. bottom: 79/1328
  50957. }
  50958. },
  50959. dressed: {
  50960. height: math.unit(6, "feet"),
  50961. name: "Dressed",
  50962. image: {
  50963. source: "./media/characters/myra-aisling/dressed.svg",
  50964. extra: 1290/1189,
  50965. bottom: 47/1337
  50966. }
  50967. },
  50968. hand: {
  50969. height: math.unit(1.1, "feet"),
  50970. name: "Hand",
  50971. image: {
  50972. source: "./media/characters/myra-aisling/hand.svg"
  50973. }
  50974. },
  50975. paw: {
  50976. height: math.unit(1.23, "feet"),
  50977. name: "Paw",
  50978. image: {
  50979. source: "./media/characters/myra-aisling/paw.svg"
  50980. }
  50981. },
  50982. },
  50983. [
  50984. {
  50985. name: "Normal",
  50986. height: math.unit(160, "feet"),
  50987. default: true
  50988. },
  50989. ]
  50990. ))
  50991. characterMakers.push(() => makeCharacter(
  50992. { name: "Tenley Sidero", species: ["lycanroc"], tags: ["anthro"] },
  50993. {
  50994. front: {
  50995. height: math.unit(6, "feet"),
  50996. name: "Front",
  50997. image: {
  50998. source: "./media/characters/tenley-sidero/front.svg",
  50999. extra: 1365/1276,
  51000. bottom: 47/1412
  51001. }
  51002. },
  51003. back: {
  51004. height: math.unit(6, "feet"),
  51005. name: "Back",
  51006. image: {
  51007. source: "./media/characters/tenley-sidero/back.svg",
  51008. extra: 1383/1283,
  51009. bottom: 35/1418
  51010. }
  51011. },
  51012. dressed: {
  51013. height: math.unit(6, "feet"),
  51014. name: "Dressed",
  51015. image: {
  51016. source: "./media/characters/tenley-sidero/dressed.svg",
  51017. extra: 1364/1275,
  51018. bottom: 42/1406
  51019. }
  51020. },
  51021. head: {
  51022. height: math.unit(1.47, "feet"),
  51023. name: "Head",
  51024. image: {
  51025. source: "./media/characters/tenley-sidero/head.svg",
  51026. extra: 610/490,
  51027. bottom: 0/610
  51028. }
  51029. },
  51030. },
  51031. [
  51032. {
  51033. name: "Normal",
  51034. height: math.unit(154, "feet"),
  51035. default: true
  51036. },
  51037. ]
  51038. ))
  51039. characterMakers.push(() => makeCharacter(
  51040. { name: "Mallory", species: ["rabbit"], tags: ["anthro"] },
  51041. {
  51042. front: {
  51043. height: math.unit(5, "inches"),
  51044. name: "Front",
  51045. image: {
  51046. source: "./media/characters/mallory/front.svg",
  51047. extra: 1919/1678,
  51048. bottom: 29/1948
  51049. }
  51050. },
  51051. hand: {
  51052. height: math.unit(0.73, "inches"),
  51053. name: "Hand",
  51054. image: {
  51055. source: "./media/characters/mallory/hand.svg"
  51056. }
  51057. },
  51058. paw: {
  51059. height: math.unit(0.68, "inches"),
  51060. name: "Paw",
  51061. image: {
  51062. source: "./media/characters/mallory/paw.svg"
  51063. }
  51064. },
  51065. },
  51066. [
  51067. {
  51068. name: "Small",
  51069. height: math.unit(5, "inches"),
  51070. default: true
  51071. },
  51072. ]
  51073. ))
  51074. characterMakers.push(() => makeCharacter(
  51075. { name: "Mab", species: ["opossum"], tags: ["anthro"] },
  51076. {
  51077. naked: {
  51078. height: math.unit(6, "feet"),
  51079. name: "Naked",
  51080. image: {
  51081. source: "./media/characters/mab/naked.svg",
  51082. extra: 1855/1757,
  51083. bottom: 208/2063
  51084. }
  51085. },
  51086. outside: {
  51087. height: math.unit(6, "feet"),
  51088. name: "Outside",
  51089. image: {
  51090. source: "./media/characters/mab/outside.svg",
  51091. extra: 1855/1757,
  51092. bottom: 208/2063
  51093. }
  51094. },
  51095. party: {
  51096. height: math.unit(6, "feet"),
  51097. name: "Party",
  51098. image: {
  51099. source: "./media/characters/mab/party.svg",
  51100. extra: 1855/1757,
  51101. bottom: 208/2063
  51102. }
  51103. },
  51104. },
  51105. [
  51106. {
  51107. name: "Normal",
  51108. height: math.unit(165, "feet"),
  51109. default: true
  51110. },
  51111. ]
  51112. ))
  51113. characterMakers.push(() => makeCharacter(
  51114. { name: "Winter", species: ["arcanine"], tags: ["feral"] },
  51115. {
  51116. feral: {
  51117. height: math.unit(12, "feet"),
  51118. weight: math.unit(20000, "lb"),
  51119. name: "Side",
  51120. image: {
  51121. source: "./media/characters/winter/feral.svg",
  51122. extra: 1286/943,
  51123. bottom: 112/1398
  51124. },
  51125. form: "feral",
  51126. default: true
  51127. },
  51128. feralNsfw: {
  51129. height: math.unit(12, "feet"),
  51130. weight: math.unit(20000, "lb"),
  51131. name: "Side (NSFW)",
  51132. image: {
  51133. source: "./media/characters/winter/feral-nsfw.svg",
  51134. extra: 1286/943,
  51135. bottom: 112/1398
  51136. },
  51137. form: "feral"
  51138. },
  51139. dick: {
  51140. height: math.unit(3.79, "feet"),
  51141. name: "Dick",
  51142. image: {
  51143. source: "./media/characters/winter/dick.svg"
  51144. },
  51145. form: "feral"
  51146. },
  51147. anthro: {
  51148. height: math.unit(12, "feet"),
  51149. weight: math.unit(10, "tons"),
  51150. name: "Anthro",
  51151. image: {
  51152. source: "./media/characters/winter/anthro.svg",
  51153. extra: 1701/1553,
  51154. bottom: 64/1765
  51155. },
  51156. form: "anthro",
  51157. default: true
  51158. },
  51159. },
  51160. [
  51161. {
  51162. name: "Big",
  51163. height: math.unit(12, "feet"),
  51164. default: true,
  51165. form: "feral"
  51166. },
  51167. {
  51168. name: "Big",
  51169. height: math.unit(12, "feet"),
  51170. default: true,
  51171. form: "anthro"
  51172. },
  51173. ],
  51174. {
  51175. "feral": {
  51176. name: "Feral",
  51177. default: true
  51178. },
  51179. "anthro": {
  51180. name: "Anthro"
  51181. }
  51182. }
  51183. ))
  51184. characterMakers.push(() => makeCharacter(
  51185. { name: "Alto", species: ["mouse", "chinchilla"], tags: ["anthro"] },
  51186. {
  51187. front: {
  51188. height: math.unit(4.1, "inches"),
  51189. name: "Front",
  51190. image: {
  51191. source: "./media/characters/alto/front.svg",
  51192. extra: 736/627,
  51193. bottom: 90/826
  51194. }
  51195. },
  51196. },
  51197. [
  51198. {
  51199. name: "Normal",
  51200. height: math.unit(4.1, "inches"),
  51201. default: true
  51202. },
  51203. ]
  51204. ))
  51205. characterMakers.push(() => makeCharacter(
  51206. { name: "Ratstrid V", species: ["opossum"], tags: ["anthro"] },
  51207. {
  51208. sitting: {
  51209. height: math.unit(3, "feet"),
  51210. name: "Sitting",
  51211. image: {
  51212. source: "./media/characters/ratstrid-v/sitting.svg",
  51213. extra: 355/310,
  51214. bottom: 136/491
  51215. }
  51216. },
  51217. },
  51218. [
  51219. {
  51220. name: "Normal",
  51221. height: math.unit(3, "feet"),
  51222. default: true
  51223. },
  51224. ]
  51225. ))
  51226. characterMakers.push(() => makeCharacter(
  51227. { name: "Siz", species: ["cinderace"], tags: ["anthro"] },
  51228. {
  51229. back: {
  51230. height: math.unit(6, "feet"),
  51231. weight: math.unit(450, "lb"),
  51232. name: "Back",
  51233. image: {
  51234. source: "./media/characters/siz/back.svg",
  51235. extra: 1449/1274,
  51236. bottom: 13/1462
  51237. }
  51238. },
  51239. },
  51240. [
  51241. {
  51242. name: "Smallest",
  51243. height: math.unit(18 + 3/12, "feet")
  51244. },
  51245. {
  51246. name: "Modest",
  51247. height: math.unit(56 + 8/12, "feet"),
  51248. default: true
  51249. },
  51250. {
  51251. name: "Largest",
  51252. height: math.unit(3590, "feet")
  51253. },
  51254. ]
  51255. ))
  51256. characterMakers.push(() => makeCharacter(
  51257. { name: "Ven", species: ["raven"], tags: ["anthro"] },
  51258. {
  51259. front: {
  51260. height: math.unit(5 + 9/12, "feet"),
  51261. weight: math.unit(150, "lb"),
  51262. name: "Front",
  51263. image: {
  51264. source: "./media/characters/ven/front.svg",
  51265. extra: 1372/1320,
  51266. bottom: 73/1445
  51267. }
  51268. },
  51269. side: {
  51270. height: math.unit(5 + 9/12, "feet"),
  51271. weight: math.unit(1150, "lb"),
  51272. name: "Side",
  51273. image: {
  51274. source: "./media/characters/ven/side.svg",
  51275. extra: 1119/1070,
  51276. bottom: 42/1161
  51277. },
  51278. default: true
  51279. },
  51280. },
  51281. [
  51282. {
  51283. name: "Normal",
  51284. height: math.unit(5 + 9/12, "feet"),
  51285. default: true
  51286. },
  51287. ]
  51288. ))
  51289. characterMakers.push(() => makeCharacter(
  51290. { name: "Maple", species: ["caudin"], tags: ["anthro"] },
  51291. {
  51292. front: {
  51293. height: math.unit(12, "feet"),
  51294. weight: math.unit(1000, "kg"),
  51295. name: "Front",
  51296. image: {
  51297. source: "./media/characters/maple/front.svg",
  51298. extra: 1193/1081,
  51299. bottom: 22/1215
  51300. }
  51301. },
  51302. },
  51303. [
  51304. {
  51305. name: "Compressed",
  51306. height: math.unit(7, "feet")
  51307. },
  51308. {
  51309. name: "Normal",
  51310. height: math.unit(12, "feet"),
  51311. default: true
  51312. },
  51313. ]
  51314. ))
  51315. characterMakers.push(() => makeCharacter(
  51316. { name: "Nora", species: ["blaziken"], tags: ["anthro"] },
  51317. {
  51318. front: {
  51319. height: math.unit(9, "feet"),
  51320. weight: math.unit(1500, "lb"),
  51321. name: "Front",
  51322. image: {
  51323. source: "./media/characters/nora/front.svg",
  51324. extra: 1348/1286,
  51325. bottom: 218/1566
  51326. }
  51327. },
  51328. erect: {
  51329. height: math.unit(9, "feet"),
  51330. weight: math.unit(11500, "lb"),
  51331. name: "Erect",
  51332. image: {
  51333. source: "./media/characters/nora/erect.svg",
  51334. extra: 1488/1433,
  51335. bottom: 133/1621
  51336. }
  51337. },
  51338. },
  51339. [
  51340. {
  51341. name: "Normal",
  51342. height: math.unit(9, "feet"),
  51343. default: true
  51344. },
  51345. ]
  51346. ))
  51347. characterMakers.push(() => makeCharacter(
  51348. { name: "North (Caudin)", species: ["caudin"], tags: ["anthro"] },
  51349. {
  51350. front: {
  51351. height: math.unit(25, "feet"),
  51352. weight: math.unit(27500, "lb"),
  51353. name: "Front",
  51354. image: {
  51355. source: "./media/characters/north-caudin/front.svg",
  51356. extra: 1184/1082,
  51357. bottom: 23/1207
  51358. }
  51359. },
  51360. },
  51361. [
  51362. {
  51363. name: "Compressed",
  51364. height: math.unit(10, "feet")
  51365. },
  51366. {
  51367. name: "Normal",
  51368. height: math.unit(25, "feet"),
  51369. default: true
  51370. },
  51371. ]
  51372. ))
  51373. characterMakers.push(() => makeCharacter(
  51374. { name: "Merrian", species: ["caudin", "avian"], tags: ["anthro"] },
  51375. {
  51376. front: {
  51377. height: math.unit(9, "feet"),
  51378. weight: math.unit(1250, "lb"),
  51379. name: "Front",
  51380. image: {
  51381. source: "./media/characters/merrian/front.svg",
  51382. extra: 2393/2304,
  51383. bottom: 40/2433
  51384. }
  51385. },
  51386. },
  51387. [
  51388. {
  51389. name: "Normal",
  51390. height: math.unit(9, "feet"),
  51391. default: true
  51392. },
  51393. ]
  51394. ))
  51395. characterMakers.push(() => makeCharacter(
  51396. { name: "Hazel", species: ["red-winged-blackbird"], tags: ["anthro"] },
  51397. {
  51398. front: {
  51399. height: math.unit(9, "feet"),
  51400. weight: math.unit(1000, "lb"),
  51401. name: "Front",
  51402. image: {
  51403. source: "./media/characters/hazel/front.svg",
  51404. extra: 2351/2298,
  51405. bottom: 38/2389
  51406. }
  51407. },
  51408. },
  51409. [
  51410. {
  51411. name: "Normal",
  51412. height: math.unit(9, "feet"),
  51413. default: true
  51414. },
  51415. ]
  51416. ))
  51417. characterMakers.push(() => makeCharacter(
  51418. { name: "Emma", species: ["caudin"], tags: ["anthro"] },
  51419. {
  51420. front: {
  51421. height: math.unit(13, "feet"),
  51422. weight: math.unit(3200, "lb"),
  51423. name: "Front",
  51424. image: {
  51425. source: "./media/characters/emma/front.svg",
  51426. extra: 2263/2029,
  51427. bottom: 68/2331
  51428. }
  51429. },
  51430. },
  51431. [
  51432. {
  51433. name: "Normal",
  51434. height: math.unit(13, "feet"),
  51435. default: true
  51436. },
  51437. ]
  51438. ))
  51439. characterMakers.push(() => makeCharacter(
  51440. { name: "Ilumina", species: ["hooded-wheater"], tags: ["anthro"] },
  51441. {
  51442. front: {
  51443. height: math.unit(11 + 9/12, "feet"),
  51444. weight: math.unit(2500, "lb"),
  51445. name: "Front",
  51446. image: {
  51447. source: "./media/characters/ilumina/front.svg",
  51448. extra: 2248/2209,
  51449. bottom: 164/2412
  51450. }
  51451. },
  51452. },
  51453. [
  51454. {
  51455. name: "Normal",
  51456. height: math.unit(11 + 9/12, "feet"),
  51457. default: true
  51458. },
  51459. ]
  51460. ))
  51461. characterMakers.push(() => makeCharacter(
  51462. { name: "Moonshine", species: ["caudin"], tags: ["anthro"] },
  51463. {
  51464. front: {
  51465. height: math.unit(8 + 10/12, "feet"),
  51466. weight: math.unit(1350, "lb"),
  51467. name: "Front",
  51468. image: {
  51469. source: "./media/characters/moonshine/front.svg",
  51470. extra: 2395/2288,
  51471. bottom: 40/2435
  51472. }
  51473. },
  51474. },
  51475. [
  51476. {
  51477. name: "Normal",
  51478. height: math.unit(8 + 10/12, "feet"),
  51479. default: true
  51480. },
  51481. ]
  51482. ))
  51483. characterMakers.push(() => makeCharacter(
  51484. { name: "Aletia", species: ["caudin"], tags: ["anthro"] },
  51485. {
  51486. front: {
  51487. height: math.unit(14, "feet"),
  51488. weight: math.unit(3400, "lb"),
  51489. name: "Front",
  51490. image: {
  51491. source: "./media/characters/aletia/front.svg",
  51492. extra: 1185/1052,
  51493. bottom: 21/1206
  51494. }
  51495. },
  51496. },
  51497. [
  51498. {
  51499. name: "Compressed",
  51500. height: math.unit(8, "feet")
  51501. },
  51502. {
  51503. name: "Normal",
  51504. height: math.unit(14, "feet"),
  51505. default: true
  51506. },
  51507. ]
  51508. ))
  51509. characterMakers.push(() => makeCharacter(
  51510. { name: "Deidra", species: ["caudin"], tags: ["anthro"] },
  51511. {
  51512. front: {
  51513. height: math.unit(17, "feet"),
  51514. weight: math.unit(6500, "lb"),
  51515. name: "Front",
  51516. image: {
  51517. source: "./media/characters/deidra/front.svg",
  51518. extra: 1201/1081,
  51519. bottom: 16/1217
  51520. }
  51521. },
  51522. },
  51523. [
  51524. {
  51525. name: "Compressed",
  51526. height: math.unit(9 + 6/12, "feet")
  51527. },
  51528. {
  51529. name: "Normal",
  51530. height: math.unit(17, "feet"),
  51531. default: true
  51532. },
  51533. ]
  51534. ))
  51535. characterMakers.push(() => makeCharacter(
  51536. { name: "Freki Yrmori", species: ["folf"], tags: ["anthro"] },
  51537. {
  51538. front: {
  51539. height: math.unit(7 + 4/12, "feet"),
  51540. weight: math.unit(280, "lb"),
  51541. name: "Front",
  51542. image: {
  51543. source: "./media/characters/freki-yrmori/front.svg",
  51544. extra: 1286/1182,
  51545. bottom: 29/1315
  51546. }
  51547. },
  51548. maw: {
  51549. height: math.unit(0.9, "feet"),
  51550. name: "Maw",
  51551. image: {
  51552. source: "./media/characters/freki-yrmori/maw.svg"
  51553. }
  51554. },
  51555. },
  51556. [
  51557. {
  51558. name: "Normal",
  51559. height: math.unit(7 + 4/12, "feet"),
  51560. default: true
  51561. },
  51562. {
  51563. name: "Macro",
  51564. height: math.unit(38.5, "meters")
  51565. },
  51566. ]
  51567. ))
  51568. characterMakers.push(() => makeCharacter(
  51569. { name: "Aetherios", species: ["dragon"], tags: ["feral"] },
  51570. {
  51571. side: {
  51572. height: math.unit(47.2, "meters"),
  51573. weight: math.unit(10000, "tons"),
  51574. name: "Side",
  51575. image: {
  51576. source: "./media/characters/aetherios/side.svg",
  51577. extra: 2363/642,
  51578. bottom: 221/2584
  51579. }
  51580. },
  51581. top: {
  51582. height: math.unit(240, "meters"),
  51583. weight: math.unit(10000, "tons"),
  51584. name: "Top",
  51585. image: {
  51586. source: "./media/characters/aetherios/top.svg"
  51587. }
  51588. },
  51589. bottom: {
  51590. height: math.unit(240, "meters"),
  51591. weight: math.unit(10000, "tons"),
  51592. name: "Bottom",
  51593. image: {
  51594. source: "./media/characters/aetherios/bottom.svg"
  51595. }
  51596. },
  51597. head: {
  51598. height: math.unit(38.6, "meters"),
  51599. name: "Head",
  51600. image: {
  51601. source: "./media/characters/aetherios/head.svg",
  51602. extra: 1335/1112,
  51603. bottom: 0/1335
  51604. }
  51605. },
  51606. front: {
  51607. height: math.unit(29, "meters"),
  51608. name: "Front",
  51609. image: {
  51610. source: "./media/characters/aetherios/front.svg",
  51611. extra: 1266/953,
  51612. bottom: 158/1424
  51613. }
  51614. },
  51615. maw: {
  51616. height: math.unit(16.37, "meters"),
  51617. name: "Maw",
  51618. image: {
  51619. source: "./media/characters/aetherios/maw.svg",
  51620. extra: 748/637,
  51621. bottom: 0/748
  51622. },
  51623. extraAttributes: {
  51624. preyCapacity: {
  51625. name: "Capacity",
  51626. power: 3,
  51627. type: "volume",
  51628. base: math.unit(1000, "people")
  51629. },
  51630. tongueSize: {
  51631. name: "Tongue Size",
  51632. power: 2,
  51633. type: "area",
  51634. base: math.unit(21, "m^2")
  51635. }
  51636. }
  51637. },
  51638. forepaw: {
  51639. height: math.unit(18, "meters"),
  51640. name: "Forepaw",
  51641. image: {
  51642. source: "./media/characters/aetherios/forepaw.svg"
  51643. }
  51644. },
  51645. hindpaw: {
  51646. height: math.unit(23, "meters"),
  51647. name: "Hindpaw",
  51648. image: {
  51649. source: "./media/characters/aetherios/hindpaw.svg"
  51650. }
  51651. },
  51652. genitals: {
  51653. height: math.unit(42, "meters"),
  51654. name: "Genitals",
  51655. image: {
  51656. source: "./media/characters/aetherios/genitals.svg"
  51657. }
  51658. },
  51659. },
  51660. [
  51661. {
  51662. name: "Normal",
  51663. height: math.unit(47.2, "meters"),
  51664. default: true
  51665. },
  51666. {
  51667. name: "Macro",
  51668. height: math.unit(160, "meters")
  51669. },
  51670. {
  51671. name: "Mega",
  51672. height: math.unit(1.87, "km")
  51673. },
  51674. {
  51675. name: "Giga",
  51676. height: math.unit(40000, "km")
  51677. },
  51678. {
  51679. name: "Stellar",
  51680. height: math.unit(158000000, "km")
  51681. },
  51682. {
  51683. name: "Cosmic",
  51684. height: math.unit(9.46e12, "km")
  51685. },
  51686. ]
  51687. ))
  51688. characterMakers.push(() => makeCharacter(
  51689. { name: "Mizu (Gieeg)", species: ["gieeg"], tags: ["anthro"] },
  51690. {
  51691. front: {
  51692. height: math.unit(5 + 4/12, "feet"),
  51693. weight: math.unit(80, "lb"),
  51694. name: "Front",
  51695. image: {
  51696. source: "./media/characters/mizu-gieeg/front.svg",
  51697. extra: 850/709,
  51698. bottom: 52/902
  51699. }
  51700. },
  51701. back: {
  51702. height: math.unit(5 + 4/12, "feet"),
  51703. weight: math.unit(80, "lb"),
  51704. name: "Back",
  51705. image: {
  51706. source: "./media/characters/mizu-gieeg/back.svg",
  51707. extra: 882/745,
  51708. bottom: 25/907
  51709. }
  51710. },
  51711. },
  51712. [
  51713. {
  51714. name: "Normal",
  51715. height: math.unit(5 + 4/12, "feet"),
  51716. default: true
  51717. },
  51718. ]
  51719. ))
  51720. characterMakers.push(() => makeCharacter(
  51721. { name: "Roselle St. Papier", species: ["ringtail"], tags: ["anthro"] },
  51722. {
  51723. front: {
  51724. height: math.unit(6, "feet"),
  51725. name: "Front",
  51726. image: {
  51727. source: "./media/characters/roselle-st-papier/front.svg",
  51728. extra: 1430/1280,
  51729. bottom: 37/1467
  51730. }
  51731. },
  51732. back: {
  51733. height: math.unit(6, "feet"),
  51734. name: "Back",
  51735. image: {
  51736. source: "./media/characters/roselle-st-papier/back.svg",
  51737. extra: 1491/1296,
  51738. bottom: 23/1514
  51739. }
  51740. },
  51741. ear: {
  51742. height: math.unit(1.26, "feet"),
  51743. name: "Ear",
  51744. image: {
  51745. source: "./media/characters/roselle-st-papier/ear.svg"
  51746. }
  51747. },
  51748. },
  51749. [
  51750. {
  51751. name: "Normal",
  51752. height: math.unit(150, "feet"),
  51753. default: true
  51754. },
  51755. ]
  51756. ))
  51757. characterMakers.push(() => makeCharacter(
  51758. { name: "Valargent", species: ["fox"], tags: ["anthro"] },
  51759. {
  51760. front: {
  51761. height: math.unit(1, "inches"),
  51762. name: "Front",
  51763. image: {
  51764. source: "./media/characters/valargent/front.svg",
  51765. extra: 1825/1694,
  51766. bottom: 62/1887
  51767. }
  51768. },
  51769. back: {
  51770. height: math.unit(1, "inches"),
  51771. name: "Back",
  51772. image: {
  51773. source: "./media/characters/valargent/back.svg",
  51774. extra: 1775/1682,
  51775. bottom: 88/1863
  51776. }
  51777. },
  51778. },
  51779. [
  51780. {
  51781. name: "Micro",
  51782. height: math.unit(1, "inch"),
  51783. default: true
  51784. },
  51785. ]
  51786. ))
  51787. characterMakers.push(() => makeCharacter(
  51788. { name: "Zarina", species: ["hisuian-zoroark"], tags: ["anthro"] },
  51789. {
  51790. front: {
  51791. height: math.unit(3.4, "meters"),
  51792. name: "Front",
  51793. image: {
  51794. source: "./media/characters/zarina/front.svg",
  51795. extra: 1733/1425,
  51796. bottom: 93/1826
  51797. }
  51798. },
  51799. squatting: {
  51800. height: math.unit(2.14, "meters"),
  51801. name: "Squatting",
  51802. image: {
  51803. source: "./media/characters/zarina/squatting.svg",
  51804. extra: 1073/788,
  51805. bottom: 63/1136
  51806. }
  51807. },
  51808. back: {
  51809. height: math.unit(2.14, "meters"),
  51810. name: "Back",
  51811. image: {
  51812. source: "./media/characters/zarina/back.svg",
  51813. extra: 1128/885,
  51814. bottom: 0/1128
  51815. }
  51816. },
  51817. },
  51818. [
  51819. {
  51820. name: "Normal",
  51821. height: math.unit(3.4, "meters"),
  51822. default: true
  51823. },
  51824. {
  51825. name: "Big",
  51826. height: math.unit(5, "meters")
  51827. },
  51828. {
  51829. name: "Macro",
  51830. height: math.unit(110, "meters")
  51831. },
  51832. ]
  51833. ))
  51834. characterMakers.push(() => makeCharacter(
  51835. { name: "VentusAstroFox", species: ["fox"], tags: ["anthro"] },
  51836. {
  51837. front: {
  51838. height: math.unit(7, "feet"),
  51839. name: "Front",
  51840. image: {
  51841. source: "./media/characters/ventus-astro-fox/front.svg",
  51842. extra: 1792/1623,
  51843. bottom: 28/1820
  51844. }
  51845. },
  51846. back: {
  51847. height: math.unit(7, "feet"),
  51848. name: "Back",
  51849. image: {
  51850. source: "./media/characters/ventus-astro-fox/back.svg",
  51851. extra: 1789/1620,
  51852. bottom: 31/1820
  51853. }
  51854. },
  51855. outfit: {
  51856. height: math.unit(7, "feet"),
  51857. name: "Outfit",
  51858. image: {
  51859. source: "./media/characters/ventus-astro-fox/outfit.svg",
  51860. extra: 1054/925,
  51861. bottom: 15/1069
  51862. }
  51863. },
  51864. head: {
  51865. height: math.unit(1.12, "feet"),
  51866. name: "Head",
  51867. image: {
  51868. source: "./media/characters/ventus-astro-fox/head.svg",
  51869. extra: 866/504,
  51870. bottom: 0/866
  51871. }
  51872. },
  51873. hand: {
  51874. height: math.unit(1, "feet"),
  51875. name: "Hand",
  51876. image: {
  51877. source: "./media/characters/ventus-astro-fox/hand.svg"
  51878. }
  51879. },
  51880. paw: {
  51881. height: math.unit(1.5, "feet"),
  51882. name: "Paw",
  51883. image: {
  51884. source: "./media/characters/ventus-astro-fox/paw.svg"
  51885. }
  51886. },
  51887. },
  51888. [
  51889. {
  51890. name: "Normal",
  51891. height: math.unit(7, "feet"),
  51892. default: true
  51893. },
  51894. {
  51895. name: "Macro",
  51896. height: math.unit(200, "feet")
  51897. },
  51898. {
  51899. name: "Cosmic",
  51900. height: math.unit(3, "universes")
  51901. },
  51902. ]
  51903. ))
  51904. characterMakers.push(() => makeCharacter(
  51905. { name: "CORE-T", species: ["cybeast"], tags: ["anthro"] },
  51906. {
  51907. front: {
  51908. height: math.unit(3, "meters"),
  51909. weight: math.unit(7000, "lb"),
  51910. name: "Front",
  51911. image: {
  51912. source: "./media/characters/core-t/front.svg",
  51913. extra: 5729/4941,
  51914. bottom: 1129/6858
  51915. }
  51916. },
  51917. },
  51918. [
  51919. {
  51920. name: "Big",
  51921. height: math.unit(3, "meters"),
  51922. default: true
  51923. },
  51924. ]
  51925. ))
  51926. characterMakers.push(() => makeCharacter(
  51927. { name: "Cadbunny", species: ["cinderace"], tags: ["anthro"] },
  51928. {
  51929. normal: {
  51930. height: math.unit(6 + 6/12, "feet"),
  51931. weight: math.unit(275, "lb"),
  51932. name: "Front",
  51933. image: {
  51934. source: "./media/characters/cadbunny/normal.svg",
  51935. extra: 1129/947,
  51936. bottom: 93/1222
  51937. },
  51938. default: true,
  51939. form: "normal"
  51940. },
  51941. gigantamax: {
  51942. height: math.unit(26, "feet"),
  51943. weight: math.unit(16000, "lb"),
  51944. name: "Front",
  51945. image: {
  51946. source: "./media/characters/cadbunny/gigantamax.svg",
  51947. extra: 1133/944,
  51948. bottom: 90/1223
  51949. },
  51950. default: true,
  51951. form: "gigantamax"
  51952. },
  51953. },
  51954. [
  51955. {
  51956. name: "Normal",
  51957. height: math.unit(6 + 6/12, "feet"),
  51958. default: true,
  51959. form: "normal"
  51960. },
  51961. {
  51962. name: "Small",
  51963. height: math.unit(26, "feet"),
  51964. default: true,
  51965. form: "gigantamax"
  51966. },
  51967. {
  51968. name: "Large",
  51969. height: math.unit(78, "feet"),
  51970. form: "gigantamax"
  51971. },
  51972. ],
  51973. {
  51974. "normal": {
  51975. name: "Normal",
  51976. default: true
  51977. },
  51978. "gigantamax": {
  51979. name: "Gigantamax"
  51980. }
  51981. }
  51982. ))
  51983. characterMakers.push(() => makeCharacter(
  51984. { name: "Blitz Dunkelheit", species: ["wolf"], tags: ["anthro", "feral"] },
  51985. {
  51986. anthroFront: {
  51987. height: math.unit(8, "feet"),
  51988. weight: math.unit(300, "lb"),
  51989. name: "Front",
  51990. image: {
  51991. source: "./media/characters/blitz-dunkelheit/anthro-front.svg",
  51992. extra: 1272/1176,
  51993. bottom: 53/1325
  51994. },
  51995. form: "anthro",
  51996. default: true
  51997. },
  51998. feralSide: {
  51999. height: math.unit(4, "feet"),
  52000. weight: math.unit(250, "lb"),
  52001. name: "Side",
  52002. image: {
  52003. source: "./media/characters/blitz-dunkelheit/feral-side.svg",
  52004. extra: 731/621,
  52005. bottom: 0/731
  52006. },
  52007. form: "feral",
  52008. default: true
  52009. },
  52010. },
  52011. [
  52012. {
  52013. name: "Regular",
  52014. height: math.unit(8, "feet"),
  52015. form: "anthro"
  52016. },
  52017. {
  52018. name: "Macro",
  52019. height: math.unit(250, "feet"),
  52020. form: "anthro",
  52021. default: true
  52022. },
  52023. {
  52024. name: "Regular",
  52025. height: math.unit(4, "feet"),
  52026. form: "feral"
  52027. },
  52028. {
  52029. name: "Macro",
  52030. height: math.unit(125, "feet"),
  52031. form: "feral",
  52032. default: true
  52033. },
  52034. ],
  52035. {
  52036. "anthro": {
  52037. name: "Anthro",
  52038. default: true
  52039. },
  52040. "feral": {
  52041. name: "Feral",
  52042. },
  52043. }
  52044. ))
  52045. characterMakers.push(() => makeCharacter(
  52046. { name: "Maple (Javira Dragon)", species: ["javira-dragon"], tags: ["feral"] },
  52047. {
  52048. front: {
  52049. height: math.unit(11 + 10/12, "feet"),
  52050. weight: math.unit(1587, "kg"),
  52051. name: "Front",
  52052. image: {
  52053. source: "./media/characters/maple-javira-dragon/front.svg",
  52054. extra: 1136/744,
  52055. bottom: 73/1209
  52056. }
  52057. },
  52058. side: {
  52059. height: math.unit(11 + 10/12, "feet"),
  52060. weight: math.unit(1587, "kg"),
  52061. name: "Side",
  52062. image: {
  52063. source: "./media/characters/maple-javira-dragon/side.svg",
  52064. extra: 712/505,
  52065. bottom: 17/729
  52066. }
  52067. },
  52068. head: {
  52069. height: math.unit(8.05, "feet"),
  52070. name: "Head",
  52071. image: {
  52072. source: "./media/characters/maple-javira-dragon/head.svg",
  52073. extra: 1420/1344,
  52074. bottom: 0/1420
  52075. }
  52076. },
  52077. },
  52078. [
  52079. {
  52080. name: "Normal",
  52081. height: math.unit(11 + 10/12, "feet"),
  52082. default: true
  52083. },
  52084. ]
  52085. ))
  52086. characterMakers.push(() => makeCharacter(
  52087. { name: "Sonia Wyverntail", species: ["kobold"], tags: ["anthro"] },
  52088. {
  52089. front: {
  52090. height: math.unit(117, "cm"),
  52091. weight: math.unit(50, "kg"),
  52092. name: "Front",
  52093. image: {
  52094. source: "./media/characters/sonia-wyverntail/front.svg",
  52095. extra: 708/592,
  52096. bottom: 25/733
  52097. }
  52098. },
  52099. },
  52100. [
  52101. {
  52102. name: "Normal",
  52103. height: math.unit(117, "cm"),
  52104. default: true
  52105. },
  52106. ]
  52107. ))
  52108. characterMakers.push(() => makeCharacter(
  52109. { name: "Micah", species: ["moth"], tags: ["anthro"] },
  52110. {
  52111. front: {
  52112. height: math.unit(6 + 5/12, "feet"),
  52113. name: "Front",
  52114. image: {
  52115. source: "./media/characters/micah/front.svg",
  52116. extra: 1758/1546,
  52117. bottom: 214/1972
  52118. }
  52119. },
  52120. },
  52121. [
  52122. {
  52123. name: "Normal",
  52124. height: math.unit(6 + 5/12, "feet"),
  52125. default: true
  52126. },
  52127. ]
  52128. ))
  52129. characterMakers.push(() => makeCharacter(
  52130. { name: "Zarya", species: ["skunk"], tags: ["anthro"] },
  52131. {
  52132. front: {
  52133. height: math.unit(1.75, "meters"),
  52134. weight: math.unit(100, "kg"),
  52135. name: "Front",
  52136. image: {
  52137. source: "./media/characters/zarya/front.svg",
  52138. extra: 741/735,
  52139. bottom: 44/785
  52140. },
  52141. extraAttributes: {
  52142. "tailLength": {
  52143. name: "Tail Length",
  52144. power: 1,
  52145. type: "length",
  52146. base: math.unit(180, "cm")
  52147. },
  52148. "pawLength": {
  52149. name: "Paw Length",
  52150. power: 1,
  52151. type: "length",
  52152. base: math.unit(31, "cm")
  52153. },
  52154. }
  52155. },
  52156. side: {
  52157. height: math.unit(1.75, "meters"),
  52158. weight: math.unit(100, "kg"),
  52159. name: "Side",
  52160. image: {
  52161. source: "./media/characters/zarya/side.svg",
  52162. extra: 776/770,
  52163. bottom: 17/793
  52164. },
  52165. extraAttributes: {
  52166. "tailLength": {
  52167. name: "Tail Length",
  52168. power: 1,
  52169. type: "length",
  52170. base: math.unit(180, "cm")
  52171. },
  52172. "pawLength": {
  52173. name: "Paw Length",
  52174. power: 1,
  52175. type: "length",
  52176. base: math.unit(31, "cm")
  52177. },
  52178. }
  52179. },
  52180. back: {
  52181. height: math.unit(1.75, "meters"),
  52182. weight: math.unit(100, "kg"),
  52183. name: "Back",
  52184. image: {
  52185. source: "./media/characters/zarya/back.svg",
  52186. extra: 741/735,
  52187. bottom: 44/785
  52188. },
  52189. extraAttributes: {
  52190. "tailLength": {
  52191. name: "Tail Length",
  52192. power: 1,
  52193. type: "length",
  52194. base: math.unit(180, "cm")
  52195. },
  52196. "pawLength": {
  52197. name: "Paw Length",
  52198. power: 1,
  52199. type: "length",
  52200. base: math.unit(31, "cm")
  52201. },
  52202. }
  52203. },
  52204. frontNoTail: {
  52205. height: math.unit(1.75, "meters"),
  52206. weight: math.unit(100, "kg"),
  52207. name: "Front (No Tail)",
  52208. image: {
  52209. source: "./media/characters/zarya/front-no-tail.svg",
  52210. extra: 741/735,
  52211. bottom: 44/785
  52212. },
  52213. extraAttributes: {
  52214. "tailLength": {
  52215. name: "Tail Length",
  52216. power: 1,
  52217. type: "length",
  52218. base: math.unit(180, "cm")
  52219. },
  52220. "pawLength": {
  52221. name: "Paw Length",
  52222. power: 1,
  52223. type: "length",
  52224. base: math.unit(31, "cm")
  52225. },
  52226. }
  52227. },
  52228. dressed: {
  52229. height: math.unit(1.75, "meters"),
  52230. weight: math.unit(100, "kg"),
  52231. name: "Dressed",
  52232. image: {
  52233. source: "./media/characters/zarya/dressed.svg",
  52234. extra: 683/672,
  52235. bottom: 79/762
  52236. },
  52237. extraAttributes: {
  52238. "tailLength": {
  52239. name: "Tail Length",
  52240. power: 1,
  52241. type: "length",
  52242. base: math.unit(180, "cm")
  52243. },
  52244. "pawLength": {
  52245. name: "Paw Length",
  52246. power: 1,
  52247. type: "length",
  52248. base: math.unit(31, "cm")
  52249. },
  52250. }
  52251. },
  52252. },
  52253. [
  52254. {
  52255. name: "Micro",
  52256. height: math.unit(5, "cm")
  52257. },
  52258. {
  52259. name: "Normal",
  52260. height: math.unit(1.75, "meters"),
  52261. default: true
  52262. },
  52263. {
  52264. name: "Macro",
  52265. height: math.unit(122, "meters")
  52266. },
  52267. ]
  52268. ))
  52269. characterMakers.push(() => makeCharacter(
  52270. { name: "Sven Hatisson", species: ["wolf"], tags: ["anthro"] },
  52271. {
  52272. front: {
  52273. height: math.unit(7.5, "feet"),
  52274. name: "Front",
  52275. image: {
  52276. source: "./media/characters/sven-hatisson/front.svg",
  52277. extra: 917/857,
  52278. bottom: 42/959
  52279. }
  52280. },
  52281. back: {
  52282. height: math.unit(7.5, "feet"),
  52283. name: "Back",
  52284. image: {
  52285. source: "./media/characters/sven-hatisson/back.svg",
  52286. extra: 903/856,
  52287. bottom: 15/918
  52288. }
  52289. },
  52290. },
  52291. [
  52292. {
  52293. name: "Base Height",
  52294. height: math.unit(7.5, "feet")
  52295. },
  52296. {
  52297. name: "Usual Height",
  52298. height: math.unit(13.5, "feet"),
  52299. default: true
  52300. },
  52301. {
  52302. name: "Smaller Macro",
  52303. height: math.unit(85, "feet")
  52304. },
  52305. {
  52306. name: "Moderate Macro",
  52307. height: math.unit(320, "feet")
  52308. },
  52309. {
  52310. name: "Large Macro",
  52311. height: math.unit(1000, "feet")
  52312. },
  52313. {
  52314. name: "Largest Size",
  52315. height: math.unit(2, "miles")
  52316. },
  52317. ]
  52318. ))
  52319. characterMakers.push(() => makeCharacter(
  52320. { name: "Terra", species: ["dragon", "otter"], tags: ["feral"] },
  52321. {
  52322. side: {
  52323. height: math.unit(1.8, "meters"),
  52324. weight: math.unit(275, "kg"),
  52325. name: "Side",
  52326. image: {
  52327. source: "./media/characters/terra/side.svg",
  52328. extra: 1273/1147,
  52329. bottom: 0/1273
  52330. }
  52331. },
  52332. },
  52333. [
  52334. {
  52335. name: "Normal",
  52336. height: math.unit(16.2, "meters"),
  52337. default: true
  52338. },
  52339. ]
  52340. ))
  52341. characterMakers.push(() => makeCharacter(
  52342. { name: "Rae", species: ["borzoi", "werewolf"], tags: ["anthro"] },
  52343. {
  52344. borzoiFront: {
  52345. height: math.unit(6 + 9/12, "feet"),
  52346. name: "Front",
  52347. image: {
  52348. source: "./media/characters/rae/borzoi-front.svg",
  52349. extra: 1161/1098,
  52350. bottom: 31/1192
  52351. },
  52352. form: "borzoi",
  52353. default: true
  52354. },
  52355. werewolfFront: {
  52356. height: math.unit(8 + 7/12, "feet"),
  52357. name: "Front",
  52358. image: {
  52359. source: "./media/characters/rae/werewolf-front.svg",
  52360. extra: 1411/1334,
  52361. bottom: 127/1538
  52362. },
  52363. form: "werewolf",
  52364. default: true
  52365. },
  52366. },
  52367. [
  52368. {
  52369. name: "Normal",
  52370. height: math.unit(6 + 9/12, "feet"),
  52371. default: true,
  52372. form: "borzoi"
  52373. },
  52374. {
  52375. name: "Normal",
  52376. height: math.unit(8 + 7/12, "feet"),
  52377. default: true,
  52378. form: "werewolf"
  52379. },
  52380. ],
  52381. {
  52382. "borzoi": {
  52383. name: "Borzoi",
  52384. default: true
  52385. },
  52386. "werewolf": {
  52387. name: "Werewolf",
  52388. },
  52389. }
  52390. ))
  52391. characterMakers.push(() => makeCharacter(
  52392. { name: "Kit", species: ["kitsune"], tags: ["anthro"] },
  52393. {
  52394. front: {
  52395. height: math.unit(8 + 7/12, "feet"),
  52396. weight: math.unit(482, "lb"),
  52397. name: "Front",
  52398. image: {
  52399. source: "./media/characters/kit/front.svg",
  52400. extra: 1247/1103,
  52401. bottom: 41/1288
  52402. }
  52403. },
  52404. back: {
  52405. height: math.unit(8 + 7/12, "feet"),
  52406. weight: math.unit(482, "lb"),
  52407. name: "Back",
  52408. image: {
  52409. source: "./media/characters/kit/back.svg",
  52410. extra: 1252/1123,
  52411. bottom: 21/1273
  52412. }
  52413. },
  52414. paw: {
  52415. height: math.unit(1.46, "feet"),
  52416. name: "Paw",
  52417. image: {
  52418. source: "./media/characters/kit/paw.svg"
  52419. }
  52420. },
  52421. },
  52422. [
  52423. {
  52424. name: "Normal",
  52425. height: math.unit(2.61, "meters"),
  52426. default: true
  52427. },
  52428. {
  52429. name: "\"Tall\"",
  52430. height: math.unit(8.21, "meters")
  52431. },
  52432. {
  52433. name: "Tall",
  52434. height: math.unit(19.6, "meters")
  52435. },
  52436. {
  52437. name: "Very Tall",
  52438. height: math.unit(57.91, "meters")
  52439. },
  52440. {
  52441. name: "Semi-Macro",
  52442. height: math.unit(138.64, "meters")
  52443. },
  52444. {
  52445. name: "Macro",
  52446. height: math.unit(831.99, "meters")
  52447. },
  52448. {
  52449. name: "EX-Macro",
  52450. height: math.unit(96451121, "meters")
  52451. },
  52452. {
  52453. name: "S1-Omnipotent",
  52454. height: math.unit(4.42074e+9, "meters")
  52455. },
  52456. {
  52457. name: "S2-Omnipotent",
  52458. height: math.unit(9.42074e+17, "meters")
  52459. },
  52460. {
  52461. name: "Omnipotent",
  52462. height: math.unit(4.23112e+24, "meters")
  52463. },
  52464. {
  52465. name: "Hypergod",
  52466. height: math.unit(5.05176e+27, "meters")
  52467. },
  52468. {
  52469. name: "Hypergod-EX",
  52470. height: math.unit(9.45532e+49, "meters")
  52471. },
  52472. {
  52473. name: "Hypergod-SP",
  52474. height: math.unit(9.45532e+195, "meters")
  52475. },
  52476. ]
  52477. ))
  52478. characterMakers.push(() => makeCharacter(
  52479. { name: "Celeste", species: ["raptor", "alien"], tags: ["feral"] },
  52480. {
  52481. side: {
  52482. height: math.unit(0.6, "meters"),
  52483. weight: math.unit(24, "kg"),
  52484. name: "Side",
  52485. image: {
  52486. source: "./media/characters/celeste/side.svg",
  52487. extra: 810/517,
  52488. bottom: 53/863
  52489. }
  52490. },
  52491. },
  52492. [
  52493. {
  52494. name: "Velociraptor",
  52495. height: math.unit(0.6, "meters"),
  52496. default: true
  52497. },
  52498. {
  52499. name: "Utahraptor",
  52500. height: math.unit(1.8, "meters")
  52501. },
  52502. {
  52503. name: "Gallimimus",
  52504. height: math.unit(4.0, "meters")
  52505. },
  52506. {
  52507. name: "Large",
  52508. height: math.unit(20, "meters")
  52509. },
  52510. {
  52511. name: "Planetary",
  52512. height: math.unit(50, "megameters")
  52513. },
  52514. {
  52515. name: "Stellar",
  52516. height: math.unit(1.5, "gigameters")
  52517. },
  52518. {
  52519. name: "Galactic",
  52520. height: math.unit(100, "exameters")
  52521. },
  52522. ]
  52523. ))
  52524. characterMakers.push(() => makeCharacter(
  52525. { name: "Glacia", species: ["koopew"], tags: ["anthro"] },
  52526. {
  52527. front: {
  52528. height: math.unit(6, "feet"),
  52529. weight: math.unit(210, "lb"),
  52530. name: "Front",
  52531. image: {
  52532. source: "./media/characters/glacia/front.svg",
  52533. extra: 958/901,
  52534. bottom: 45/1003
  52535. }
  52536. },
  52537. },
  52538. [
  52539. {
  52540. name: "Macro",
  52541. height: math.unit(1000, "meters"),
  52542. default: true
  52543. },
  52544. ]
  52545. ))
  52546. characterMakers.push(() => makeCharacter(
  52547. { name: "Giri", species: ["giraffe"], tags: ["anthro"] },
  52548. {
  52549. front: {
  52550. height: math.unit(4, "meters"),
  52551. name: "Front",
  52552. image: {
  52553. source: "./media/characters/giri/front.svg",
  52554. extra: 966/894,
  52555. bottom: 21/987
  52556. }
  52557. },
  52558. },
  52559. [
  52560. {
  52561. name: "Normal",
  52562. height: math.unit(4, "meters"),
  52563. default: true
  52564. },
  52565. ]
  52566. ))
  52567. characterMakers.push(() => makeCharacter(
  52568. { name: "Tin", species: ["nevrean"], tags: ["anthro"] },
  52569. {
  52570. back: {
  52571. height: math.unit(4, "feet"),
  52572. weight: math.unit(37, "lb"),
  52573. name: "Back",
  52574. image: {
  52575. source: "./media/characters/tin/back.svg",
  52576. extra: 845/780,
  52577. bottom: 28/873
  52578. }
  52579. },
  52580. },
  52581. [
  52582. {
  52583. name: "Normal",
  52584. height: math.unit(4, "feet"),
  52585. default: true
  52586. },
  52587. ]
  52588. ))
  52589. characterMakers.push(() => makeCharacter(
  52590. { name: "Cadenza Vivace", species: ["titanoboa"], tags: ["feral"] },
  52591. {
  52592. front: {
  52593. height: math.unit(25, "feet"),
  52594. name: "Front",
  52595. image: {
  52596. source: "./media/characters/cadenza-vivace/front.svg",
  52597. extra: 1842/1578,
  52598. bottom: 30/1872
  52599. }
  52600. },
  52601. },
  52602. [
  52603. {
  52604. name: "Macro",
  52605. height: math.unit(25, "feet"),
  52606. default: true
  52607. },
  52608. ]
  52609. ))
  52610. characterMakers.push(() => makeCharacter(
  52611. { name: "Zain", species: ["kangaroo"], tags: ["anthro"] },
  52612. {
  52613. front: {
  52614. height: math.unit(10, "feet"),
  52615. weight: math.unit(625, "kg"),
  52616. name: "Front",
  52617. image: {
  52618. source: "./media/characters/zain/front.svg",
  52619. extra: 1682/1498,
  52620. bottom: 223/1905
  52621. }
  52622. },
  52623. back: {
  52624. height: math.unit(10, "feet"),
  52625. weight: math.unit(625, "kg"),
  52626. name: "Back",
  52627. image: {
  52628. source: "./media/characters/zain/back.svg",
  52629. extra: 1814/1657,
  52630. bottom: 152/1966
  52631. }
  52632. },
  52633. head: {
  52634. height: math.unit(10, "feet"),
  52635. weight: math.unit(625, "kg"),
  52636. name: "Head",
  52637. image: {
  52638. source: "./media/characters/zain/head.svg",
  52639. extra: 1059/762,
  52640. bottom: 0/1059
  52641. }
  52642. },
  52643. },
  52644. [
  52645. {
  52646. name: "Normal",
  52647. height: math.unit(10, "feet"),
  52648. default: true
  52649. },
  52650. ]
  52651. ))
  52652. characterMakers.push(() => makeCharacter(
  52653. { name: "Ruchex", species: ["raichu"], tags: ["anthro"] },
  52654. {
  52655. front: {
  52656. height: math.unit(6 + 5/12, "feet"),
  52657. weight: math.unit(750, "lb"),
  52658. name: "Front",
  52659. image: {
  52660. source: "./media/characters/ruchex/front.svg",
  52661. extra: 877/820,
  52662. bottom: 17/894
  52663. },
  52664. extraAttributes: {
  52665. "width": {
  52666. name: "Width",
  52667. power: 1,
  52668. type: "length",
  52669. base: math.unit(4.757, "feet")
  52670. },
  52671. }
  52672. },
  52673. },
  52674. [
  52675. {
  52676. name: "Normal",
  52677. height: math.unit(6 + 5/12, "feet"),
  52678. default: true
  52679. },
  52680. ]
  52681. ))
  52682. characterMakers.push(() => makeCharacter(
  52683. { name: "Buster", species: ["sergal", "goo"], tags: ["anthro"] },
  52684. {
  52685. dressedFront: {
  52686. height: math.unit(191, "cm"),
  52687. weight: math.unit(80, "kg"),
  52688. name: "Front",
  52689. image: {
  52690. source: "./media/characters/buster/dressed-front.svg",
  52691. extra: 1022/973,
  52692. bottom: 69/1091
  52693. }
  52694. },
  52695. dressedBack: {
  52696. height: math.unit(191, "cm"),
  52697. weight: math.unit(80, "kg"),
  52698. name: "Back",
  52699. image: {
  52700. source: "./media/characters/buster/dressed-back.svg",
  52701. extra: 1018/970,
  52702. bottom: 55/1073
  52703. }
  52704. },
  52705. nudeFront: {
  52706. height: math.unit(191, "cm"),
  52707. weight: math.unit(80, "kg"),
  52708. name: "Front (Nude)",
  52709. image: {
  52710. source: "./media/characters/buster/nude-front.svg",
  52711. extra: 1022/973,
  52712. bottom: 69/1091
  52713. }
  52714. },
  52715. nudeBack: {
  52716. height: math.unit(191, "cm"),
  52717. weight: math.unit(80, "kg"),
  52718. name: "Back (Nude)",
  52719. image: {
  52720. source: "./media/characters/buster/nude-back.svg",
  52721. extra: 1018/970,
  52722. bottom: 55/1073
  52723. }
  52724. },
  52725. dick: {
  52726. height: math.unit(2.59, "feet"),
  52727. name: "Dick",
  52728. image: {
  52729. source: "./media/characters/buster/dick.svg"
  52730. }
  52731. },
  52732. ass: {
  52733. height: math.unit(1.2, "feet"),
  52734. name: "Ass",
  52735. image: {
  52736. source: "./media/characters/buster/ass.svg"
  52737. }
  52738. },
  52739. },
  52740. [
  52741. {
  52742. name: "Normal",
  52743. height: math.unit(191, "cm"),
  52744. default: true
  52745. },
  52746. ]
  52747. ))
  52748. characterMakers.push(() => makeCharacter(
  52749. { name: "Sonya", species: ["suicune"], tags: ["feral"] },
  52750. {
  52751. side: {
  52752. height: math.unit(8.1, "feet"),
  52753. weight: math.unit(3500, "lb"),
  52754. name: "Side",
  52755. image: {
  52756. source: "./media/characters/sonya/side.svg",
  52757. extra: 1730/1317,
  52758. bottom: 86/1816
  52759. }
  52760. },
  52761. },
  52762. [
  52763. {
  52764. name: "Normal",
  52765. height: math.unit(8.1, "feet"),
  52766. default: true
  52767. },
  52768. ]
  52769. ))
  52770. characterMakers.push(() => makeCharacter(
  52771. { name: "Cadence Andrysiak", species: ["civet"], tags: ["anthro"] },
  52772. {
  52773. front: {
  52774. height: math.unit(6, "feet"),
  52775. weight: math.unit(150, "lb"),
  52776. name: "Front",
  52777. image: {
  52778. source: "./media/characters/cadence-andrysiak/front.svg",
  52779. extra: 1164/1121,
  52780. bottom: 60/1224
  52781. }
  52782. },
  52783. back: {
  52784. height: math.unit(6, "feet"),
  52785. weight: math.unit(150, "lb"),
  52786. name: "Back",
  52787. image: {
  52788. source: "./media/characters/cadence-andrysiak/back.svg",
  52789. extra: 1200/1165,
  52790. bottom: 9/1209
  52791. }
  52792. },
  52793. dressed: {
  52794. height: math.unit(6, "feet"),
  52795. weight: math.unit(150, "lb"),
  52796. name: "Dressed",
  52797. image: {
  52798. source: "./media/characters/cadence-andrysiak/dressed.svg",
  52799. extra: 1164/1121,
  52800. bottom: 60/1224
  52801. }
  52802. },
  52803. },
  52804. [
  52805. {
  52806. name: "Micro",
  52807. height: math.unit(1, "mm")
  52808. },
  52809. {
  52810. name: "Normal",
  52811. height: math.unit(6, "feet"),
  52812. default: true
  52813. },
  52814. ]
  52815. ))
  52816. characterMakers.push(() => makeCharacter(
  52817. { name: "PENNY", species: ["lynx" ,"computer-virus"], tags: ["anthro"] },
  52818. {
  52819. front: {
  52820. height: math.unit(60, "inches"),
  52821. weight: math.unit(16, "lb"),
  52822. preyCapacity: math.unit(80, "liters"),
  52823. name: "Front",
  52824. image: {
  52825. source: "./media/characters/penny-lynx/front.svg",
  52826. extra: 1959/1769,
  52827. bottom: 49/2008
  52828. }
  52829. },
  52830. },
  52831. [
  52832. {
  52833. name: "Nokia",
  52834. height: math.unit(2, "inches")
  52835. },
  52836. {
  52837. name: "Desktop",
  52838. height: math.unit(24, "inches")
  52839. },
  52840. {
  52841. name: "TV",
  52842. height: math.unit(60, "inches")
  52843. },
  52844. {
  52845. name: "Jumbotron",
  52846. height: math.unit(12, "feet")
  52847. },
  52848. {
  52849. name: "Billboard",
  52850. height: math.unit(48, "feet"),
  52851. default: true
  52852. },
  52853. {
  52854. name: "IMAX",
  52855. height: math.unit(96, "feet")
  52856. },
  52857. {
  52858. name: "SINGULARITY",
  52859. height: math.unit(864938, "miles")
  52860. },
  52861. ]
  52862. ))
  52863. characterMakers.push(() => makeCharacter(
  52864. { name: "Sukebe", species: ["panda"], tags: ["anthro"] },
  52865. {
  52866. front: {
  52867. height: math.unit(5 + 4/12, "feet"),
  52868. weight: math.unit(230, "lb"),
  52869. name: "Front",
  52870. image: {
  52871. source: "./media/characters/sukebe/front.svg",
  52872. extra: 2130/2038,
  52873. bottom: 90/2220
  52874. }
  52875. },
  52876. back: {
  52877. height: math.unit(3.48, "feet"),
  52878. weight: math.unit(230, "lb"),
  52879. name: "Back",
  52880. image: {
  52881. source: "./media/characters/sukebe/back.svg",
  52882. extra: 1670/1604,
  52883. bottom: 0/1670
  52884. }
  52885. },
  52886. },
  52887. [
  52888. {
  52889. name: "Normal",
  52890. height: math.unit(5 + 4/12, "feet"),
  52891. default: true
  52892. },
  52893. ]
  52894. ))
  52895. characterMakers.push(() => makeCharacter(
  52896. { name: "Nylla", species: ["dragon"], tags: ["anthro"] },
  52897. {
  52898. front: {
  52899. height: math.unit(6, "feet"),
  52900. name: "Front",
  52901. image: {
  52902. source: "./media/characters/nylla/front.svg",
  52903. extra: 1868/1699,
  52904. bottom: 97/1965
  52905. }
  52906. },
  52907. back: {
  52908. height: math.unit(6, "feet"),
  52909. name: "Back",
  52910. image: {
  52911. source: "./media/characters/nylla/back.svg",
  52912. extra: 1889/1712,
  52913. bottom: 93/1982
  52914. }
  52915. },
  52916. frontNsfw: {
  52917. height: math.unit(6, "feet"),
  52918. name: "Front (NSFW)",
  52919. image: {
  52920. source: "./media/characters/nylla/front-nsfw.svg",
  52921. extra: 1868/1699,
  52922. bottom: 97/1965
  52923. },
  52924. extraAttributes: {
  52925. "dickLength": {
  52926. name: "Dick Length",
  52927. power: 1,
  52928. type: "length",
  52929. base: math.unit(1.4, "feet")
  52930. },
  52931. "cumVolume": {
  52932. name: "Cum Volume",
  52933. power: 3,
  52934. type: "volume",
  52935. base: math.unit(100, "mL")
  52936. },
  52937. }
  52938. },
  52939. backNsfw: {
  52940. height: math.unit(6, "feet"),
  52941. name: "Back (NSFW)",
  52942. image: {
  52943. source: "./media/characters/nylla/back-nsfw.svg",
  52944. extra: 1889/1712,
  52945. bottom: 93/1982
  52946. }
  52947. },
  52948. maw: {
  52949. height: math.unit(2.10, "feet"),
  52950. name: "Maw",
  52951. image: {
  52952. source: "./media/characters/nylla/maw.svg"
  52953. }
  52954. },
  52955. paws: {
  52956. height: math.unit(2.06, "feet"),
  52957. name: "Paws",
  52958. image: {
  52959. source: "./media/characters/nylla/paws.svg"
  52960. }
  52961. },
  52962. muzzle: {
  52963. height: math.unit(0.61, "feet"),
  52964. name: "Muzzle",
  52965. image: {
  52966. source: "./media/characters/nylla/muzzle.svg"
  52967. }
  52968. },
  52969. sheath: {
  52970. height: math.unit(1.305, "feet"),
  52971. name: "Sheath",
  52972. image: {
  52973. source: "./media/characters/nylla/sheath.svg"
  52974. }
  52975. },
  52976. },
  52977. [
  52978. {
  52979. name: "Micro",
  52980. height: math.unit(7.5, "inches")
  52981. },
  52982. {
  52983. name: "Normal",
  52984. height: math.unit(7, "feet"),
  52985. default: true
  52986. },
  52987. {
  52988. name: "Macro",
  52989. height: math.unit(60, "feet")
  52990. },
  52991. {
  52992. name: "Mega",
  52993. height: math.unit(200, "feet")
  52994. },
  52995. ]
  52996. ))
  52997. characterMakers.push(() => makeCharacter(
  52998. { name: "HUNT3R", species: ["protogen"], tags: ["anthro"] },
  52999. {
  53000. front: {
  53001. height: math.unit(10, "feet"),
  53002. weight: math.unit(2300, "lb"),
  53003. name: "Front",
  53004. image: {
  53005. source: "./media/characters/hunt3r/front.svg",
  53006. extra: 1909/1742,
  53007. bottom: 46/1955
  53008. }
  53009. },
  53010. },
  53011. [
  53012. {
  53013. name: "Normal",
  53014. height: math.unit(10, "feet"),
  53015. default: true
  53016. },
  53017. ]
  53018. ))
  53019. characterMakers.push(() => makeCharacter(
  53020. { name: "Cylphis", species: ["draconi", "deity"], tags: ["anthro"] },
  53021. {
  53022. dressed: {
  53023. height: math.unit(11, "feet"),
  53024. weight: math.unit(18500, "lb"),
  53025. preyCapacity: math.unit(9, "people"),
  53026. name: "Dressed",
  53027. image: {
  53028. source: "./media/characters/cylphis/dressed.svg",
  53029. extra: 1028/1003,
  53030. bottom: 75/1103
  53031. },
  53032. },
  53033. undressed: {
  53034. height: math.unit(11, "feet"),
  53035. weight: math.unit(18500, "lb"),
  53036. preyCapacity: math.unit(9, "people"),
  53037. name: "Undressed",
  53038. image: {
  53039. source: "./media/characters/cylphis/undressed.svg",
  53040. extra: 1028/1003,
  53041. bottom: 75/1103
  53042. }
  53043. },
  53044. full: {
  53045. height: math.unit(11, "feet"),
  53046. weight: math.unit(18500 + 150*9, "lb"),
  53047. preyCapacity: math.unit(9, "people"),
  53048. name: "Full",
  53049. image: {
  53050. source: "./media/characters/cylphis/full.svg",
  53051. extra: 1028/1003,
  53052. bottom: 75/1103
  53053. }
  53054. },
  53055. },
  53056. [
  53057. {
  53058. name: "Small",
  53059. height: math.unit(8, "feet")
  53060. },
  53061. {
  53062. name: "Normal",
  53063. height: math.unit(11, "feet"),
  53064. default: true
  53065. },
  53066. ]
  53067. ))
  53068. characterMakers.push(() => makeCharacter(
  53069. { name: "Orishan", species: ["rabbit"], tags: ["anthro"] },
  53070. {
  53071. front: {
  53072. height: math.unit(2 + 7/12, "feet"),
  53073. name: "Front",
  53074. image: {
  53075. source: "./media/characters/orishan/front.svg",
  53076. extra: 1058/1023,
  53077. bottom: 23/1081
  53078. }
  53079. },
  53080. back: {
  53081. height: math.unit(2 + 7/12, "feet"),
  53082. name: "Back",
  53083. image: {
  53084. source: "./media/characters/orishan/back.svg",
  53085. extra: 1058/1023,
  53086. bottom: 23/1081
  53087. }
  53088. },
  53089. },
  53090. [
  53091. {
  53092. name: "Micro",
  53093. height: math.unit(2, "cm")
  53094. },
  53095. {
  53096. name: "Normal",
  53097. height: math.unit(2 + 7/12, "feet"),
  53098. default: true
  53099. },
  53100. ]
  53101. ))
  53102. characterMakers.push(() => makeCharacter(
  53103. { name: "Seranis", species: ["cat"], tags: ["anthro"] },
  53104. {
  53105. front: {
  53106. height: math.unit(3, "meters"),
  53107. weight: math.unit(508, "kg"),
  53108. name: "Front",
  53109. image: {
  53110. source: "./media/characters/seranis/front.svg",
  53111. extra: 1478/1454,
  53112. bottom: 41/1519
  53113. }
  53114. },
  53115. },
  53116. [
  53117. {
  53118. name: "Normal",
  53119. height: math.unit(3, "meters"),
  53120. default: true
  53121. },
  53122. {
  53123. name: "Macro",
  53124. height: math.unit(108, "meters")
  53125. },
  53126. {
  53127. name: "Megamacro",
  53128. height: math.unit(1250, "meters")
  53129. },
  53130. ]
  53131. ))
  53132. characterMakers.push(() => makeCharacter(
  53133. { name: "Ankou", species: ["mouse", "imp"], tags: ["anthro"] },
  53134. {
  53135. undressed: {
  53136. height: math.unit(5 + 3/12, "feet"),
  53137. name: "Undressed",
  53138. image: {
  53139. source: "./media/characters/ankou/undressed.svg",
  53140. extra: 1301/1213,
  53141. bottom: 87/1388
  53142. }
  53143. },
  53144. dressed: {
  53145. height: math.unit(5 + 3/12, "feet"),
  53146. name: "Dressed",
  53147. image: {
  53148. source: "./media/characters/ankou/dressed.svg",
  53149. extra: 1301/1213,
  53150. bottom: 87/1388
  53151. }
  53152. },
  53153. head: {
  53154. height: math.unit(1.61, "feet"),
  53155. name: "Head",
  53156. image: {
  53157. source: "./media/characters/ankou/head.svg"
  53158. }
  53159. },
  53160. },
  53161. [
  53162. {
  53163. name: "Normal",
  53164. height: math.unit(5 + 3/12, "feet"),
  53165. default: true
  53166. },
  53167. ]
  53168. ))
  53169. characterMakers.push(() => makeCharacter(
  53170. { name: "Juniper Skunktaur", species: ["skunk", "taur"], tags: ["taur"] },
  53171. {
  53172. side: {
  53173. height: math.unit(6 + 3/12, "feet"),
  53174. weight: math.unit(200, "kg"),
  53175. name: "Side",
  53176. image: {
  53177. source: "./media/characters/juniper-skunktaur/side.svg",
  53178. extra: 1574/1229,
  53179. bottom: 38/1612
  53180. }
  53181. },
  53182. front: {
  53183. height: math.unit(6 + 3/12, "feet"),
  53184. weight: math.unit(200, "kg"),
  53185. name: "Front",
  53186. image: {
  53187. source: "./media/characters/juniper-skunktaur/front.svg",
  53188. extra: 1337/1278,
  53189. bottom: 22/1359
  53190. }
  53191. },
  53192. back: {
  53193. height: math.unit(6 + 3/12, "feet"),
  53194. weight: math.unit(200, "kg"),
  53195. name: "Back",
  53196. image: {
  53197. source: "./media/characters/juniper-skunktaur/back.svg",
  53198. extra: 1618/1273,
  53199. bottom: 13/1631
  53200. }
  53201. },
  53202. top: {
  53203. height: math.unit(2.62, "feet"),
  53204. weight: math.unit(200, "kg"),
  53205. name: "Top",
  53206. image: {
  53207. source: "./media/characters/juniper-skunktaur/top.svg"
  53208. }
  53209. },
  53210. },
  53211. [
  53212. {
  53213. name: "Normal",
  53214. height: math.unit(6 + 3/12, "feet"),
  53215. default: true
  53216. },
  53217. ]
  53218. ))
  53219. characterMakers.push(() => makeCharacter(
  53220. { name: "Rei", species: ["kitsune"], tags: ["anthro"] },
  53221. {
  53222. front: {
  53223. height: math.unit(20.5, "feet"),
  53224. name: "Front",
  53225. image: {
  53226. source: "./media/characters/rei/front.svg",
  53227. extra: 1349/1195,
  53228. bottom: 31/1380
  53229. }
  53230. },
  53231. back: {
  53232. height: math.unit(20.5, "feet"),
  53233. name: "Back",
  53234. image: {
  53235. source: "./media/characters/rei/back.svg",
  53236. extra: 1358/1204,
  53237. bottom: 22/1380
  53238. }
  53239. },
  53240. pawsDigi: {
  53241. height: math.unit(3.45, "feet"),
  53242. name: "Paws (Digi)",
  53243. image: {
  53244. source: "./media/characters/rei/paws-digi.svg"
  53245. }
  53246. },
  53247. pawsPlanti: {
  53248. height: math.unit(3.45, "feet"),
  53249. name: "Paws (Planti)",
  53250. image: {
  53251. source: "./media/characters/rei/paws-planti.svg"
  53252. }
  53253. },
  53254. },
  53255. [
  53256. {
  53257. name: "Normal",
  53258. height: math.unit(20.5, "feet"),
  53259. default: true
  53260. },
  53261. ]
  53262. ))
  53263. characterMakers.push(() => makeCharacter(
  53264. { name: "Carina", species: ["arctic-fox"], tags: ["anthro"] },
  53265. {
  53266. front: {
  53267. height: math.unit(5 + 11/12, "feet"),
  53268. name: "Front",
  53269. image: {
  53270. source: "./media/characters/carina/front.svg",
  53271. extra: 1720/1449,
  53272. bottom: 14/1734
  53273. }
  53274. },
  53275. back: {
  53276. height: math.unit(5 + 11/12, "feet"),
  53277. name: "Back",
  53278. image: {
  53279. source: "./media/characters/carina/back.svg",
  53280. extra: 1493/1445,
  53281. bottom: 17/1510
  53282. }
  53283. },
  53284. paw: {
  53285. height: math.unit(0.92, "feet"),
  53286. name: "Paw",
  53287. image: {
  53288. source: "./media/characters/carina/paw.svg"
  53289. }
  53290. },
  53291. },
  53292. [
  53293. {
  53294. name: "Normal",
  53295. height: math.unit(5 + 11/12, "feet"),
  53296. default: true
  53297. },
  53298. ]
  53299. ))
  53300. characterMakers.push(() => makeCharacter(
  53301. { name: "Maya", species: ["cat"], tags: ["anthro", "taur"] },
  53302. {
  53303. normal_front: {
  53304. height: math.unit(4.88, "meters"),
  53305. name: "Front",
  53306. image: {
  53307. source: "./media/characters/maya/normal-front.svg",
  53308. extra: 1222/1145,
  53309. bottom: 57/1279
  53310. },
  53311. form: "normal",
  53312. default: true
  53313. },
  53314. monstrous_front: {
  53315. height: math.unit(10, "meters"),
  53316. name: "Front",
  53317. image: {
  53318. source: "./media/characters/maya/monstrous-front.svg",
  53319. extra: 1523/1109,
  53320. bottom: 113/1636
  53321. },
  53322. form: "monstrous",
  53323. extraAttributes: {
  53324. "swallowSize": {
  53325. name: "Tailmaw Bite Size",
  53326. power: 3,
  53327. type: "volume",
  53328. base: math.unit(43000, "liters")
  53329. },
  53330. }
  53331. },
  53332. taur_front: {
  53333. height: math.unit(10, "meters"),
  53334. name: "Front",
  53335. image: {
  53336. source: "./media/characters/maya/taur-front.svg",
  53337. extra: 743/506,
  53338. bottom: 101/844
  53339. },
  53340. form: "taur",
  53341. },
  53342. },
  53343. [
  53344. {
  53345. name: "Normal",
  53346. height: math.unit(4.88, "meters"),
  53347. default: true,
  53348. form: "normal"
  53349. },
  53350. {
  53351. name: "Macro",
  53352. height: math.unit(38.1, "meters"),
  53353. form: "normal"
  53354. },
  53355. {
  53356. name: "Macro+",
  53357. height: math.unit(152.4, "meters"),
  53358. form: "normal"
  53359. },
  53360. {
  53361. name: "Macro++",
  53362. height: math.unit(16.09, "km"),
  53363. form: "normal"
  53364. },
  53365. {
  53366. name: "Mega-macro",
  53367. height: math.unit(700, "megameters"),
  53368. form: "normal"
  53369. },
  53370. {
  53371. name: "Satiated",
  53372. height: math.unit(10, "meters"),
  53373. default: true,
  53374. form: "monstrous"
  53375. },
  53376. {
  53377. name: "Hungry",
  53378. height: math.unit(75, "meters"),
  53379. form: "monstrous"
  53380. },
  53381. {
  53382. name: "Ravenous",
  53383. height: math.unit(500, "meters"),
  53384. form: "monstrous"
  53385. },
  53386. {
  53387. name: "\"Normal\"",
  53388. height: math.unit(10, "meters"),
  53389. form: "taur"
  53390. },
  53391. {
  53392. name: "Macro",
  53393. height: math.unit(50, "meters"),
  53394. form: "taur"
  53395. },
  53396. ],
  53397. {
  53398. "normal": {
  53399. name: "Normal",
  53400. default: true
  53401. },
  53402. "monstrous": {
  53403. name: "Monstrous",
  53404. },
  53405. "taur": {
  53406. name: "Taur",
  53407. },
  53408. }
  53409. ))
  53410. characterMakers.push(() => makeCharacter(
  53411. { name: "Yepir", species: ["hyena"], tags: ["anthro"] },
  53412. {
  53413. front: {
  53414. height: math.unit(6 + 2/12, "feet"),
  53415. weight: math.unit(500, "lb"),
  53416. preyCapacity: math.unit(4, "people"),
  53417. name: "Front",
  53418. image: {
  53419. source: "./media/characters/yepir/front.svg"
  53420. }
  53421. },
  53422. side: {
  53423. height: math.unit(6 + 2/12, "feet"),
  53424. weight: math.unit(500, "lb"),
  53425. preyCapacity: math.unit(4, "people"),
  53426. name: "Side",
  53427. image: {
  53428. source: "./media/characters/yepir/side.svg"
  53429. }
  53430. },
  53431. paw: {
  53432. height: math.unit(1.05, "feet"),
  53433. name: "Paw",
  53434. image: {
  53435. source: "./media/characters/yepir/paw.svg"
  53436. }
  53437. },
  53438. },
  53439. [
  53440. {
  53441. name: "Normal",
  53442. height: math.unit(6 + 2/12, "feet"),
  53443. default: true
  53444. },
  53445. ]
  53446. ))
  53447. characterMakers.push(() => makeCharacter(
  53448. { name: "Russec", species: ["continental-giant-rabbit"], tags: ["anthro"] },
  53449. {
  53450. front: {
  53451. height: math.unit(5 + 4/12, "feet"),
  53452. name: "Front",
  53453. image: {
  53454. source: "./media/characters/russec/front.svg",
  53455. extra: 1926/1626,
  53456. bottom: 72/1998
  53457. }
  53458. },
  53459. back: {
  53460. height: math.unit(5 + 4/12, "feet"),
  53461. name: "Back",
  53462. image: {
  53463. source: "./media/characters/russec/back.svg",
  53464. extra: 1910/1591,
  53465. bottom: 48/1958
  53466. }
  53467. },
  53468. },
  53469. [
  53470. {
  53471. name: "Small",
  53472. height: math.unit(5 + 4/12, "feet")
  53473. },
  53474. {
  53475. name: "Normal",
  53476. height: math.unit(72, "feet"),
  53477. default: true
  53478. },
  53479. ]
  53480. ))
  53481. characterMakers.push(() => makeCharacter(
  53482. { name: "Cianus", species: ["demigryph"], tags: ["anthro"] },
  53483. {
  53484. side: {
  53485. height: math.unit(12, "feet"),
  53486. name: "Side",
  53487. image: {
  53488. source: "./media/characters/cianus/side.svg",
  53489. extra: 808/526,
  53490. bottom: 61/869
  53491. }
  53492. },
  53493. },
  53494. [
  53495. {
  53496. name: "Normal",
  53497. height: math.unit(12, "feet"),
  53498. default: true
  53499. },
  53500. ]
  53501. ))
  53502. characterMakers.push(() => makeCharacter(
  53503. { name: "Ahab", species: ["bald-eagle"], tags: ["anthro"] },
  53504. {
  53505. front: {
  53506. height: math.unit(9 + 6/12, "feet"),
  53507. weight: math.unit(300, "lb"),
  53508. name: "Front",
  53509. image: {
  53510. source: "./media/characters/ahab/front.svg",
  53511. extra: 1897/1868,
  53512. bottom: 121/2018
  53513. }
  53514. },
  53515. frontNsfw: {
  53516. height: math.unit(9 + 6/12, "feet"),
  53517. weight: math.unit(300, "lb"),
  53518. name: "Front-nsfw",
  53519. image: {
  53520. source: "./media/characters/ahab/front-nsfw.svg",
  53521. extra: 1897/1868,
  53522. bottom: 121/2018
  53523. }
  53524. },
  53525. },
  53526. [
  53527. {
  53528. name: "Normal",
  53529. height: math.unit(9 + 6/12, "feet")
  53530. },
  53531. {
  53532. name: "Macro",
  53533. height: math.unit(657, "feet"),
  53534. default: true
  53535. },
  53536. ]
  53537. ))
  53538. characterMakers.push(() => makeCharacter(
  53539. { name: "Aarkus", species: ["deer"], tags: ["anthro"] },
  53540. {
  53541. front: {
  53542. height: math.unit(2.69, "meters"),
  53543. weight: math.unit(132, "kg"),
  53544. name: "Front",
  53545. image: {
  53546. source: "./media/characters/aarkus/front.svg",
  53547. extra: 1400/1231,
  53548. bottom: 34/1434
  53549. }
  53550. },
  53551. back: {
  53552. height: math.unit(2.69, "meters"),
  53553. weight: math.unit(132, "kg"),
  53554. name: "Back",
  53555. image: {
  53556. source: "./media/characters/aarkus/back.svg",
  53557. extra: 1381/1218,
  53558. bottom: 30/1411
  53559. }
  53560. },
  53561. frontNsfw: {
  53562. height: math.unit(2.69, "meters"),
  53563. weight: math.unit(132, "kg"),
  53564. name: "Front (NSFW)",
  53565. image: {
  53566. source: "./media/characters/aarkus/front-nsfw.svg",
  53567. extra: 1400/1231,
  53568. bottom: 34/1434
  53569. }
  53570. },
  53571. foot: {
  53572. height: math.unit(1.45, "feet"),
  53573. name: "Foot",
  53574. image: {
  53575. source: "./media/characters/aarkus/foot.svg"
  53576. }
  53577. },
  53578. head: {
  53579. height: math.unit(2.85, "feet"),
  53580. name: "Head",
  53581. image: {
  53582. source: "./media/characters/aarkus/head.svg"
  53583. }
  53584. },
  53585. headAlt: {
  53586. height: math.unit(3.07, "feet"),
  53587. name: "Head (Alt)",
  53588. image: {
  53589. source: "./media/characters/aarkus/head-alt.svg"
  53590. }
  53591. },
  53592. mouth: {
  53593. height: math.unit(1.25, "feet"),
  53594. name: "Mouth",
  53595. image: {
  53596. source: "./media/characters/aarkus/mouth.svg"
  53597. }
  53598. },
  53599. dick: {
  53600. height: math.unit(1.77, "feet"),
  53601. name: "Dick",
  53602. image: {
  53603. source: "./media/characters/aarkus/dick.svg"
  53604. }
  53605. },
  53606. },
  53607. [
  53608. {
  53609. name: "Normal",
  53610. height: math.unit(2.69, "meters"),
  53611. default: true
  53612. },
  53613. {
  53614. name: "Macro",
  53615. height: math.unit(269, "meters")
  53616. },
  53617. {
  53618. name: "Macro+",
  53619. height: math.unit(672.5, "meters")
  53620. },
  53621. {
  53622. name: "Megamacro",
  53623. height: math.unit(2.017, "km")
  53624. },
  53625. ]
  53626. ))
  53627. characterMakers.push(() => makeCharacter(
  53628. { name: "Diode", species: ["moth"], tags: ["anthro"] },
  53629. {
  53630. front: {
  53631. height: math.unit(23.47, "cm"),
  53632. weight: math.unit(600, "grams"),
  53633. name: "Front",
  53634. image: {
  53635. source: "./media/characters/diode/front.svg",
  53636. extra: 1778/1396,
  53637. bottom: 95/1873
  53638. }
  53639. },
  53640. side: {
  53641. height: math.unit(23.47, "cm"),
  53642. weight: math.unit(600, "grams"),
  53643. name: "Side",
  53644. image: {
  53645. source: "./media/characters/diode/side.svg",
  53646. extra: 1831/1404,
  53647. bottom: 86/1917
  53648. }
  53649. },
  53650. wings: {
  53651. height: math.unit(0.683, "feet"),
  53652. name: "Wings",
  53653. image: {
  53654. source: "./media/characters/diode/wings.svg"
  53655. }
  53656. },
  53657. },
  53658. [
  53659. {
  53660. name: "Normal",
  53661. height: math.unit(23.47, "cm"),
  53662. default: true
  53663. },
  53664. ]
  53665. ))
  53666. characterMakers.push(() => makeCharacter(
  53667. { name: "Reika", species: ["kestrel", "mockingbird"], tags: ["anthro"] },
  53668. {
  53669. front: {
  53670. height: math.unit(6 + 3/12, "feet"),
  53671. weight: math.unit(250, "lb"),
  53672. name: "Front",
  53673. image: {
  53674. source: "./media/characters/reika/front.svg",
  53675. extra: 1120/1078,
  53676. bottom: 86/1206
  53677. }
  53678. },
  53679. },
  53680. [
  53681. {
  53682. name: "Normal",
  53683. height: math.unit(6 + 3/12, "feet"),
  53684. default: true
  53685. },
  53686. ]
  53687. ))
  53688. characterMakers.push(() => makeCharacter(
  53689. { name: "Lokuto Takama", species: ["arctic-fox", "kitsune"], tags: ["anthro"] },
  53690. {
  53691. front: {
  53692. height: math.unit(16 + 8/12, "feet"),
  53693. weight: math.unit(9000, "lb"),
  53694. name: "Front",
  53695. image: {
  53696. source: "./media/characters/lokuto-takama/front.svg",
  53697. extra: 1774/1632,
  53698. bottom: 147/1921
  53699. },
  53700. extraAttributes: {
  53701. "bustWidth": {
  53702. name: "Bust Width",
  53703. power: 1,
  53704. type: "length",
  53705. base: math.unit(2.4, "meters")
  53706. },
  53707. "breastWeight": {
  53708. name: "Breast Weight",
  53709. power: 3,
  53710. type: "mass",
  53711. base: math.unit(1000, "kg")
  53712. },
  53713. }
  53714. },
  53715. },
  53716. [
  53717. {
  53718. name: "Normal",
  53719. height: math.unit(16 + 8/12, "feet"),
  53720. default: true
  53721. },
  53722. ]
  53723. ))
  53724. characterMakers.push(() => makeCharacter(
  53725. { name: "Owak Bone", species: ["marowak"], tags: ["anthro"] },
  53726. {
  53727. front: {
  53728. height: math.unit(10, "cm"),
  53729. weight: math.unit(850, "grams"),
  53730. name: "Front",
  53731. image: {
  53732. source: "./media/characters/owak-bone/front.svg",
  53733. extra: 1965/1801,
  53734. bottom: 31/1996
  53735. }
  53736. },
  53737. },
  53738. [
  53739. {
  53740. name: "Normal",
  53741. height: math.unit(10, "cm"),
  53742. default: true
  53743. },
  53744. ]
  53745. ))
  53746. characterMakers.push(() => makeCharacter(
  53747. { name: "Muffin", species: ["ferret"], tags: ["anthro"] },
  53748. {
  53749. front: {
  53750. height: math.unit(2 + 6/12, "feet"),
  53751. weight: math.unit(9, "lb"),
  53752. name: "Front",
  53753. image: {
  53754. source: "./media/characters/muffin/front.svg",
  53755. extra: 1220/1195,
  53756. bottom: 84/1304
  53757. }
  53758. },
  53759. },
  53760. [
  53761. {
  53762. name: "Normal",
  53763. height: math.unit(2 + 6/12, "feet"),
  53764. default: true
  53765. },
  53766. ]
  53767. ))
  53768. characterMakers.push(() => makeCharacter(
  53769. { name: "Chimera", species: ["pegasus"], tags: ["anthro"] },
  53770. {
  53771. front: {
  53772. height: math.unit(7, "feet"),
  53773. name: "Front",
  53774. image: {
  53775. source: "./media/characters/chimera/front.svg",
  53776. extra: 1752/1614,
  53777. bottom: 68/1820
  53778. }
  53779. },
  53780. },
  53781. [
  53782. {
  53783. name: "Normal",
  53784. height: math.unit(7, "feet")
  53785. },
  53786. {
  53787. name: "Gigamacro",
  53788. height: math.unit(2.9, "gigameters"),
  53789. default: true
  53790. },
  53791. {
  53792. name: "Universal",
  53793. height: math.unit(1.56e26, "yottameters")
  53794. },
  53795. ]
  53796. ))
  53797. characterMakers.push(() => makeCharacter(
  53798. { name: "Kit (Fennec Fox)", species: ["fennec-fox"], tags: ["anthro"] },
  53799. {
  53800. front: {
  53801. height: math.unit(3, "feet"),
  53802. weight: math.unit(20, "lb"),
  53803. name: "Front",
  53804. image: {
  53805. source: "./media/characters/kit-fennec-fox/front.svg",
  53806. extra: 1027/932,
  53807. bottom: 16/1043
  53808. }
  53809. },
  53810. back: {
  53811. height: math.unit(3, "feet"),
  53812. weight: math.unit(20, "lb"),
  53813. name: "Back",
  53814. image: {
  53815. source: "./media/characters/kit-fennec-fox/back.svg",
  53816. extra: 1027/932,
  53817. bottom: 16/1043
  53818. }
  53819. },
  53820. },
  53821. [
  53822. {
  53823. name: "Normal",
  53824. height: math.unit(3, "feet"),
  53825. default: true
  53826. },
  53827. ]
  53828. ))
  53829. characterMakers.push(() => makeCharacter(
  53830. { name: "Blue (Otter)", species: ["otter"], tags: ["anthro"] },
  53831. {
  53832. front: {
  53833. height: math.unit(167, "cm"),
  53834. name: "Front",
  53835. image: {
  53836. source: "./media/characters/blue-otter/front.svg",
  53837. extra: 1951/1920,
  53838. bottom: 31/1982
  53839. }
  53840. },
  53841. },
  53842. [
  53843. {
  53844. name: "Otter-Sized",
  53845. height: math.unit(100, "cm")
  53846. },
  53847. {
  53848. name: "Normal",
  53849. height: math.unit(167, "cm"),
  53850. default: true
  53851. },
  53852. ]
  53853. ))
  53854. characterMakers.push(() => makeCharacter(
  53855. { name: "Maverick (Leopard Gecko)", species: ["leopard-gecko"], tags: ["anthro"] },
  53856. {
  53857. front: {
  53858. height: math.unit(4 + 4/12, "feet"),
  53859. name: "Front",
  53860. image: {
  53861. source: "./media/characters/maverick-leopard-gecko/front.svg",
  53862. extra: 1072/1067,
  53863. bottom: 117/1189
  53864. }
  53865. },
  53866. back: {
  53867. height: math.unit(4 + 4/12, "feet"),
  53868. name: "Back",
  53869. image: {
  53870. source: "./media/characters/maverick-leopard-gecko/back.svg",
  53871. extra: 1135/1129,
  53872. bottom: 57/1192
  53873. }
  53874. },
  53875. head: {
  53876. height: math.unit(1.77, "feet"),
  53877. name: "Head",
  53878. image: {
  53879. source: "./media/characters/maverick-leopard-gecko/head.svg"
  53880. }
  53881. },
  53882. },
  53883. [
  53884. {
  53885. name: "Normal",
  53886. height: math.unit(4 + 4/12, "feet"),
  53887. default: true
  53888. },
  53889. ]
  53890. ))
  53891. characterMakers.push(() => makeCharacter(
  53892. { name: "Carley Hartford", species: ["joltik"], tags: ["anthro"] },
  53893. {
  53894. front: {
  53895. height: math.unit(2, "inches"),
  53896. name: "Front",
  53897. image: {
  53898. source: "./media/characters/carley-hartford/front.svg",
  53899. extra: 1035/988,
  53900. bottom: 23/1058
  53901. }
  53902. },
  53903. back: {
  53904. height: math.unit(2, "inches"),
  53905. name: "Back",
  53906. image: {
  53907. source: "./media/characters/carley-hartford/back.svg",
  53908. extra: 1035/988,
  53909. bottom: 23/1058
  53910. }
  53911. },
  53912. dressed: {
  53913. height: math.unit(2, "inches"),
  53914. name: "Dressed",
  53915. image: {
  53916. source: "./media/characters/carley-hartford/dressed.svg",
  53917. extra: 651/620,
  53918. bottom: 0/651
  53919. }
  53920. },
  53921. },
  53922. [
  53923. {
  53924. name: "Micro",
  53925. height: math.unit(2, "inches"),
  53926. default: true
  53927. },
  53928. {
  53929. name: "Macro",
  53930. height: math.unit(6 + 3/12, "feet")
  53931. },
  53932. ]
  53933. ))
  53934. characterMakers.push(() => makeCharacter(
  53935. { name: "Duke", species: ["ferret"], tags: ["anthro"] },
  53936. {
  53937. front: {
  53938. height: math.unit(2 + 3/12, "feet"),
  53939. weight: math.unit(15 + 7/16, "lb"),
  53940. name: "Front",
  53941. image: {
  53942. source: "./media/characters/duke/front.svg",
  53943. extra: 910/815,
  53944. bottom: 30/940
  53945. }
  53946. },
  53947. },
  53948. [
  53949. {
  53950. name: "Normal",
  53951. height: math.unit(2 + 3/12, "feet"),
  53952. default: true
  53953. },
  53954. ]
  53955. ))
  53956. characterMakers.push(() => makeCharacter(
  53957. { name: "Dein", species: ["ferret"], tags: ["anthro"] },
  53958. {
  53959. front: {
  53960. height: math.unit(5 + 4/12, "feet"),
  53961. weight: math.unit(156, "lb"),
  53962. name: "Front",
  53963. image: {
  53964. source: "./media/characters/dein/front.svg",
  53965. extra: 855/815,
  53966. bottom: 48/903
  53967. }
  53968. },
  53969. side: {
  53970. height: math.unit(5 + 4/12, "feet"),
  53971. weight: math.unit(156, "lb"),
  53972. name: "side",
  53973. image: {
  53974. source: "./media/characters/dein/side.svg",
  53975. extra: 846/803,
  53976. bottom: 25/871
  53977. }
  53978. },
  53979. maw: {
  53980. height: math.unit(1.45, "feet"),
  53981. name: "Maw",
  53982. image: {
  53983. source: "./media/characters/dein/maw.svg"
  53984. }
  53985. },
  53986. },
  53987. [
  53988. {
  53989. name: "Ferret Sized",
  53990. height: math.unit(2 + 5/12, "feet")
  53991. },
  53992. {
  53993. name: "Normal",
  53994. height: math.unit(5 + 4/12, "feet"),
  53995. default: true
  53996. },
  53997. ]
  53998. ))
  53999. characterMakers.push(() => makeCharacter(
  54000. { name: "Daurine Arima", species: ["werewolf"], tags: ["anthro"] },
  54001. {
  54002. front: {
  54003. height: math.unit(84 + 8/12, "feet"),
  54004. weight: math.unit(942180, "lb"),
  54005. name: "Front",
  54006. image: {
  54007. source: "./media/characters/daurine-arima/front.svg",
  54008. extra: 1989/1782,
  54009. bottom: 37/2026
  54010. }
  54011. },
  54012. side: {
  54013. height: math.unit(84 + 8/12, "feet"),
  54014. weight: math.unit(942180, "lb"),
  54015. name: "Side",
  54016. image: {
  54017. source: "./media/characters/daurine-arima/side.svg",
  54018. extra: 1997/1790,
  54019. bottom: 21/2018
  54020. }
  54021. },
  54022. back: {
  54023. height: math.unit(84 + 8/12, "feet"),
  54024. weight: math.unit(942180, "lb"),
  54025. name: "Back",
  54026. image: {
  54027. source: "./media/characters/daurine-arima/back.svg",
  54028. extra: 1992/1800,
  54029. bottom: 12/2004
  54030. }
  54031. },
  54032. head: {
  54033. height: math.unit(15.5, "feet"),
  54034. name: "Head",
  54035. image: {
  54036. source: "./media/characters/daurine-arima/head.svg"
  54037. }
  54038. },
  54039. headAlt: {
  54040. height: math.unit(19.19, "feet"),
  54041. name: "Head (Alt)",
  54042. image: {
  54043. source: "./media/characters/daurine-arima/head-alt.svg"
  54044. }
  54045. },
  54046. },
  54047. [
  54048. {
  54049. name: "Minimum height",
  54050. height: math.unit(8 + 10/12, "feet")
  54051. },
  54052. {
  54053. name: "Comfort height",
  54054. height: math.unit(19 + 6 /12, "feet")
  54055. },
  54056. {
  54057. name: "\"Normal\" height",
  54058. height: math.unit(28 + 10/12, "feet")
  54059. },
  54060. {
  54061. name: "Base height",
  54062. height: math.unit(84 + 8/12, "feet"),
  54063. default: true
  54064. },
  54065. {
  54066. name: "Mini-macro",
  54067. height: math.unit(2360, "feet")
  54068. },
  54069. {
  54070. name: "Macro",
  54071. height: math.unit(10, "miles")
  54072. },
  54073. {
  54074. name: "Goddess",
  54075. height: math.unit(9.99e40, "yottameters")
  54076. },
  54077. ]
  54078. ))
  54079. characterMakers.push(() => makeCharacter(
  54080. { name: "Cilenomon", species: ["slime"], tags: ["anthro"] },
  54081. {
  54082. front: {
  54083. height: math.unit(2.3, "meters"),
  54084. name: "Front",
  54085. image: {
  54086. source: "./media/characters/cilenomon/front.svg",
  54087. extra: 1963/1778,
  54088. bottom: 54/2017
  54089. }
  54090. },
  54091. },
  54092. [
  54093. {
  54094. name: "Normal",
  54095. height: math.unit(2.3, "meters"),
  54096. default: true
  54097. },
  54098. {
  54099. name: "Big",
  54100. height: math.unit(5, "meters")
  54101. },
  54102. {
  54103. name: "Macro",
  54104. height: math.unit(30, "meters")
  54105. },
  54106. {
  54107. name: "True",
  54108. height: math.unit(1, "universe")
  54109. },
  54110. ]
  54111. ))
  54112. characterMakers.push(() => makeCharacter(
  54113. { name: "Sen (Mink)", species: ["mink"], tags: ["anthro"] },
  54114. {
  54115. front: {
  54116. height: math.unit(5, "feet"),
  54117. name: "Front",
  54118. image: {
  54119. source: "./media/characters/sen-mink/front.svg",
  54120. extra: 1727/1675,
  54121. bottom: 35/1762
  54122. }
  54123. },
  54124. },
  54125. [
  54126. {
  54127. name: "Normal",
  54128. height: math.unit(5, "feet"),
  54129. default: true
  54130. },
  54131. ]
  54132. ))
  54133. characterMakers.push(() => makeCharacter(
  54134. { name: "Ophois", species: ["jackal", "sandcat"], tags: ["anthro"] },
  54135. {
  54136. front: {
  54137. height: math.unit(5.42999, "feet"),
  54138. weight: math.unit(100, "lb"),
  54139. name: "Front",
  54140. image: {
  54141. source: "./media/characters/ophois/front.svg",
  54142. extra: 1429/1286,
  54143. bottom: 60/1489
  54144. }
  54145. },
  54146. },
  54147. [
  54148. {
  54149. name: "Normal",
  54150. height: math.unit(5.42999, "feet"),
  54151. default: true
  54152. },
  54153. ]
  54154. ))
  54155. characterMakers.push(() => makeCharacter(
  54156. { name: "Riley", species: ["eagle"], tags: ["anthro"] },
  54157. {
  54158. front: {
  54159. height: math.unit(2, "meters"),
  54160. name: "Front",
  54161. image: {
  54162. source: "./media/characters/riley/front.svg",
  54163. extra: 1779/1754,
  54164. bottom: 139/1918
  54165. }
  54166. },
  54167. },
  54168. [
  54169. {
  54170. name: "Normal",
  54171. height: math.unit(2, "meters"),
  54172. default: true
  54173. },
  54174. ]
  54175. ))
  54176. characterMakers.push(() => makeCharacter(
  54177. { name: "Shuken Flash", species: ["arctic-fox"], tags: ["anthro"] },
  54178. {
  54179. front: {
  54180. height: math.unit(6 + 2/12, "feet"),
  54181. weight: math.unit(195, "lb"),
  54182. preyCapacity: math.unit(6, "people"),
  54183. name: "Front",
  54184. image: {
  54185. source: "./media/characters/shuken-flash/front.svg",
  54186. extra: 1905/1739,
  54187. bottom: 65/1970
  54188. }
  54189. },
  54190. back: {
  54191. height: math.unit(6 + 2/12, "feet"),
  54192. weight: math.unit(195, "lb"),
  54193. preyCapacity: math.unit(6, "people"),
  54194. name: "Back",
  54195. image: {
  54196. source: "./media/characters/shuken-flash/back.svg",
  54197. extra: 1912/1751,
  54198. bottom: 13/1925
  54199. }
  54200. },
  54201. },
  54202. [
  54203. {
  54204. name: "Normal",
  54205. height: math.unit(6 + 2/12, "feet"),
  54206. default: true
  54207. },
  54208. ]
  54209. ))
  54210. characterMakers.push(() => makeCharacter(
  54211. { name: "Plat", species: ["raven"], tags: ["anthro"] },
  54212. {
  54213. front: {
  54214. height: math.unit(5 + 9/12, "feet"),
  54215. weight: math.unit(150, "lb"),
  54216. name: "Front",
  54217. image: {
  54218. source: "./media/characters/plat/front.svg",
  54219. extra: 1816/1703,
  54220. bottom: 43/1859
  54221. }
  54222. },
  54223. side: {
  54224. height: math.unit(5 + 9/12, "feet"),
  54225. weight: math.unit(300, "lb"),
  54226. name: "Side",
  54227. image: {
  54228. source: "./media/characters/plat/side.svg",
  54229. extra: 1824/1699,
  54230. bottom: 18/1842
  54231. }
  54232. },
  54233. },
  54234. [
  54235. {
  54236. name: "Normal",
  54237. height: math.unit(5 + 9/12, "feet"),
  54238. default: true
  54239. },
  54240. ]
  54241. ))
  54242. characterMakers.push(() => makeCharacter(
  54243. { name: "Elaine", species: ["snake", "dragon"], tags: ["anthro"] },
  54244. {
  54245. front: {
  54246. height: math.unit(9, "feet"),
  54247. weight: math.unit(1800, "lb"),
  54248. name: "Front",
  54249. image: {
  54250. source: "./media/characters/elaine/front.svg",
  54251. extra: 1833/1354,
  54252. bottom: 25/1858
  54253. }
  54254. },
  54255. back: {
  54256. height: math.unit(8.8, "feet"),
  54257. weight: math.unit(1800, "lb"),
  54258. name: "Back",
  54259. image: {
  54260. source: "./media/characters/elaine/back.svg",
  54261. extra: 1641/1233,
  54262. bottom: 53/1694
  54263. }
  54264. },
  54265. },
  54266. [
  54267. {
  54268. name: "Normal",
  54269. height: math.unit(9, "feet"),
  54270. default: true
  54271. },
  54272. ]
  54273. ))
  54274. characterMakers.push(() => makeCharacter(
  54275. { name: "Vera (Raven)", species: ["raven"], tags: ["anthro"] },
  54276. {
  54277. front: {
  54278. height: math.unit(17 + 9/12, "feet"),
  54279. weight: math.unit(8000, "lb"),
  54280. name: "Front",
  54281. image: {
  54282. source: "./media/characters/vera-raven/front.svg",
  54283. extra: 1457/1412,
  54284. bottom: 121/1578
  54285. }
  54286. },
  54287. side: {
  54288. height: math.unit(17 + 9/12, "feet"),
  54289. weight: math.unit(8000, "lb"),
  54290. name: "Side",
  54291. image: {
  54292. source: "./media/characters/vera-raven/side.svg",
  54293. extra: 1510/1464,
  54294. bottom: 54/1564
  54295. }
  54296. },
  54297. },
  54298. [
  54299. {
  54300. name: "Normal",
  54301. height: math.unit(17 + 9/12, "feet"),
  54302. default: true
  54303. },
  54304. ]
  54305. ))
  54306. characterMakers.push(() => makeCharacter(
  54307. { name: "Nakisha", species: ["sabertooth-tiger", "leopard"], tags: ["anthro"] },
  54308. {
  54309. dressed: {
  54310. height: math.unit(6 + 9/12, "feet"),
  54311. name: "Dressed",
  54312. image: {
  54313. source: "./media/characters/nakisha/dressed.svg",
  54314. extra: 1909/1757,
  54315. bottom: 48/1957
  54316. }
  54317. },
  54318. nude: {
  54319. height: math.unit(6 + 9/12, "feet"),
  54320. name: "Nude",
  54321. image: {
  54322. source: "./media/characters/nakisha/nude.svg",
  54323. extra: 1917/1765,
  54324. bottom: 34/1951
  54325. }
  54326. },
  54327. },
  54328. [
  54329. {
  54330. name: "Normal",
  54331. height: math.unit(6 + 9/12, "feet"),
  54332. default: true
  54333. },
  54334. ]
  54335. ))
  54336. characterMakers.push(() => makeCharacter(
  54337. { name: "Serafin", species: ["dragon"], tags: ["anthro"] },
  54338. {
  54339. front: {
  54340. height: math.unit(87, "meters"),
  54341. name: "Front",
  54342. image: {
  54343. source: "./media/characters/serafin/front.svg",
  54344. extra: 1919/1776,
  54345. bottom: 65/1984
  54346. }
  54347. },
  54348. },
  54349. [
  54350. {
  54351. name: "Normal",
  54352. height: math.unit(87, "meters"),
  54353. default: true
  54354. },
  54355. ]
  54356. ))
  54357. characterMakers.push(() => makeCharacter(
  54358. { name: "Poptart", species: ["red-panda", "husky"], tags: ["anthro"] },
  54359. {
  54360. front: {
  54361. height: math.unit(6, "feet"),
  54362. weight: math.unit(200, "lb"),
  54363. name: "Front",
  54364. image: {
  54365. source: "./media/characters/poptart/front.svg",
  54366. extra: 615/583,
  54367. bottom: 23/638
  54368. }
  54369. },
  54370. back: {
  54371. height: math.unit(6, "feet"),
  54372. weight: math.unit(200, "lb"),
  54373. name: "Back",
  54374. image: {
  54375. source: "./media/characters/poptart/back.svg",
  54376. extra: 617/584,
  54377. bottom: 22/639
  54378. }
  54379. },
  54380. frontNsfw: {
  54381. height: math.unit(6, "feet"),
  54382. weight: math.unit(200, "lb"),
  54383. name: "Front (NSFW)",
  54384. image: {
  54385. source: "./media/characters/poptart/front-nsfw.svg",
  54386. extra: 615/583,
  54387. bottom: 23/638
  54388. }
  54389. },
  54390. backNsfw: {
  54391. height: math.unit(6, "feet"),
  54392. weight: math.unit(200, "lb"),
  54393. name: "Back (NSFW)",
  54394. image: {
  54395. source: "./media/characters/poptart/back-nsfw.svg",
  54396. extra: 617/584,
  54397. bottom: 22/639
  54398. }
  54399. },
  54400. hand: {
  54401. height: math.unit(1.14, "feet"),
  54402. name: "Hand",
  54403. image: {
  54404. source: "./media/characters/poptart/hand.svg"
  54405. }
  54406. },
  54407. foot: {
  54408. height: math.unit(1.5, "feet"),
  54409. name: "Foot",
  54410. image: {
  54411. source: "./media/characters/poptart/foot.svg"
  54412. }
  54413. },
  54414. },
  54415. [
  54416. {
  54417. name: "Normal",
  54418. height: math.unit(6, "feet"),
  54419. default: true
  54420. },
  54421. {
  54422. name: "Grande",
  54423. height: math.unit(350, "feet")
  54424. },
  54425. {
  54426. name: "Massif",
  54427. height: math.unit(967, "feet")
  54428. },
  54429. ]
  54430. ))
  54431. characterMakers.push(() => makeCharacter(
  54432. { name: "Trance", species: ["hyena"], tags: ["anthro"] },
  54433. {
  54434. hyenaSide: {
  54435. height: math.unit(120, "cm"),
  54436. weight: math.unit(120, "lb"),
  54437. name: "Side",
  54438. image: {
  54439. source: "./media/characters/trance/hyena-side.svg",
  54440. extra: 998/904,
  54441. bottom: 76/1074
  54442. }
  54443. },
  54444. },
  54445. [
  54446. {
  54447. name: "Normal",
  54448. height: math.unit(120, "cm"),
  54449. default: true
  54450. },
  54451. {
  54452. name: "Dire",
  54453. height: math.unit(230, "cm")
  54454. },
  54455. {
  54456. name: "Macro",
  54457. height: math.unit(37, "feet")
  54458. },
  54459. ]
  54460. ))
  54461. characterMakers.push(() => makeCharacter(
  54462. { name: "Michael Berretta", species: ["lion"], tags: ["anthro"] },
  54463. {
  54464. front: {
  54465. height: math.unit(6 + 3/12, "feet"),
  54466. name: "Front",
  54467. image: {
  54468. source: "./media/characters/michael-berretta/front.svg",
  54469. extra: 515/494,
  54470. bottom: 20/535
  54471. }
  54472. },
  54473. back: {
  54474. height: math.unit(6 + 3/12, "feet"),
  54475. name: "Back",
  54476. image: {
  54477. source: "./media/characters/michael-berretta/back.svg",
  54478. extra: 520/497,
  54479. bottom: 21/541
  54480. }
  54481. },
  54482. frontNsfw: {
  54483. height: math.unit(6 + 3/12, "feet"),
  54484. name: "Front (NSFW)",
  54485. image: {
  54486. source: "./media/characters/michael-berretta/front-nsfw.svg",
  54487. extra: 515/494,
  54488. bottom: 20/535
  54489. }
  54490. },
  54491. dick: {
  54492. height: math.unit(1, "feet"),
  54493. name: "Dick",
  54494. image: {
  54495. source: "./media/characters/michael-berretta/dick.svg"
  54496. }
  54497. },
  54498. },
  54499. [
  54500. {
  54501. name: "Normal",
  54502. height: math.unit(6 + 3/12, "feet"),
  54503. default: true
  54504. },
  54505. {
  54506. name: "Big",
  54507. height: math.unit(12, "feet")
  54508. },
  54509. {
  54510. name: "Macro",
  54511. height: math.unit(187.5, "feet")
  54512. },
  54513. ]
  54514. ))
  54515. characterMakers.push(() => makeCharacter(
  54516. { name: "Stella Edgecomb", species: ["bear"], tags: ["anthro"] },
  54517. {
  54518. front: {
  54519. height: math.unit(9 + 9/12, "feet"),
  54520. weight: math.unit(1244, "lb"),
  54521. name: "Front",
  54522. image: {
  54523. source: "./media/characters/stella-edgecomb/front.svg",
  54524. extra: 1835/1706,
  54525. bottom: 49/1884
  54526. }
  54527. },
  54528. pen: {
  54529. height: math.unit(0.95, "feet"),
  54530. name: "Pen",
  54531. image: {
  54532. source: "./media/characters/stella-edgecomb/pen.svg"
  54533. }
  54534. },
  54535. },
  54536. [
  54537. {
  54538. name: "Cozy Bear",
  54539. height: math.unit(0.5, "inches")
  54540. },
  54541. {
  54542. name: "Normal",
  54543. height: math.unit(9 + 9/12, "feet"),
  54544. default: true
  54545. },
  54546. {
  54547. name: "Giga Bear",
  54548. height: math.unit(1, "mile")
  54549. },
  54550. {
  54551. name: "Great Bear",
  54552. height: math.unit(53, "miles")
  54553. },
  54554. {
  54555. name: "Goddess Bear",
  54556. height: math.unit(40000, "miles")
  54557. },
  54558. {
  54559. name: "Sun Bear",
  54560. height: math.unit(900000, "miles")
  54561. },
  54562. ]
  54563. ))
  54564. characterMakers.push(() => makeCharacter(
  54565. { name: "Ash´iika", species: ["dragon"], tags: ["anthro", "feral"] },
  54566. {
  54567. anthroFront: {
  54568. height: math.unit(556, "cm"),
  54569. weight: math.unit(2650, "kg"),
  54570. preyCapacity: math.unit(3, "people"),
  54571. name: "Front",
  54572. image: {
  54573. source: "./media/characters/ash´iika/front.svg",
  54574. extra: 710/673,
  54575. bottom: 15/725
  54576. },
  54577. form: "anthro",
  54578. default: true
  54579. },
  54580. anthroSide: {
  54581. height: math.unit(556, "cm"),
  54582. weight: math.unit(2650, "kg"),
  54583. preyCapacity: math.unit(3, "people"),
  54584. name: "Side",
  54585. image: {
  54586. source: "./media/characters/ash´iika/side.svg",
  54587. extra: 696/676,
  54588. bottom: 13/709
  54589. },
  54590. form: "anthro"
  54591. },
  54592. anthroDressed: {
  54593. height: math.unit(556, "cm"),
  54594. weight: math.unit(2650, "kg"),
  54595. preyCapacity: math.unit(3, "people"),
  54596. name: "Dressed",
  54597. image: {
  54598. source: "./media/characters/ash´iika/dressed.svg",
  54599. extra: 710/673,
  54600. bottom: 15/725
  54601. },
  54602. form: "anthro"
  54603. },
  54604. anthroHead: {
  54605. height: math.unit(3.5, "feet"),
  54606. name: "Head",
  54607. image: {
  54608. source: "./media/characters/ash´iika/head.svg",
  54609. extra: 348/291,
  54610. bottom: 45/393
  54611. },
  54612. form: "anthro"
  54613. },
  54614. feralSide: {
  54615. height: math.unit(870, "cm"),
  54616. weight: math.unit(17500, "kg"),
  54617. preyCapacity: math.unit(15, "people"),
  54618. name: "Side",
  54619. image: {
  54620. source: "./media/characters/ash´iika/feral.svg",
  54621. extra: 595/199,
  54622. bottom: 7/602
  54623. },
  54624. form: "feral",
  54625. default: true,
  54626. },
  54627. },
  54628. [
  54629. {
  54630. name: "Normal",
  54631. height: math.unit(556, "cm"),
  54632. default: true,
  54633. form: "anthro"
  54634. },
  54635. {
  54636. name: "Macro",
  54637. height: math.unit(88, "meters"),
  54638. form: "anthro"
  54639. },
  54640. {
  54641. name: "Normal",
  54642. height: math.unit(870, "cm"),
  54643. default: true,
  54644. form: "feral"
  54645. },
  54646. {
  54647. name: "Large",
  54648. height: math.unit(25, "meters"),
  54649. form: "feral"
  54650. },
  54651. ],
  54652. {
  54653. "anthro": {
  54654. name: "Anthro",
  54655. default: true
  54656. },
  54657. "feral": {
  54658. name: "Feral",
  54659. },
  54660. }
  54661. ))
  54662. characterMakers.push(() => makeCharacter(
  54663. { name: "Yen", species: ["hrothgar"], tags: ["anthro"] },
  54664. {
  54665. front: {
  54666. height: math.unit(10, "feet"),
  54667. weight: math.unit(800, "lb"),
  54668. name: "Front",
  54669. image: {
  54670. source: "./media/characters/yen/front.svg",
  54671. extra: 443/411,
  54672. bottom: 6/449
  54673. }
  54674. },
  54675. sleeping: {
  54676. height: math.unit(10, "feet"),
  54677. weight: math.unit(800, "lb"),
  54678. name: "Sleeping",
  54679. image: {
  54680. source: "./media/characters/yen/sleeping.svg",
  54681. extra: 470/422,
  54682. bottom: 0/470
  54683. }
  54684. },
  54685. head: {
  54686. height: math.unit(2.2, "feet"),
  54687. name: "Head",
  54688. image: {
  54689. source: "./media/characters/yen/head.svg"
  54690. }
  54691. },
  54692. headAlt: {
  54693. height: math.unit(2.1, "feet"),
  54694. name: "Head (Alt)",
  54695. image: {
  54696. source: "./media/characters/yen/head-alt.svg"
  54697. }
  54698. },
  54699. },
  54700. [
  54701. {
  54702. name: "Normal",
  54703. height: math.unit(10, "feet"),
  54704. default: true
  54705. },
  54706. ]
  54707. ))
  54708. characterMakers.push(() => makeCharacter(
  54709. { name: "Citra", species: ["dragon"], tags: ["anthro"] },
  54710. {
  54711. front: {
  54712. height: math.unit(12, "feet"),
  54713. name: "Front",
  54714. image: {
  54715. source: "./media/characters/citra/front.svg",
  54716. extra: 1950/1710,
  54717. bottom: 47/1997
  54718. }
  54719. },
  54720. },
  54721. [
  54722. {
  54723. name: "Normal",
  54724. height: math.unit(12, "feet"),
  54725. default: true
  54726. },
  54727. ]
  54728. ))
  54729. characterMakers.push(() => makeCharacter(
  54730. { name: "Sholstim", species: ["dragon"], tags: ["feral"] },
  54731. {
  54732. side: {
  54733. height: math.unit(7 + 10/12, "feet"),
  54734. name: "Side",
  54735. image: {
  54736. source: "./media/characters/sholstim/side.svg",
  54737. extra: 786/682,
  54738. bottom: 40/826
  54739. }
  54740. },
  54741. },
  54742. [
  54743. {
  54744. name: "Normal",
  54745. height: math.unit(7 + 10/12, "feet"),
  54746. default: true
  54747. },
  54748. ]
  54749. ))
  54750. characterMakers.push(() => makeCharacter(
  54751. { name: "Aggyn", species: ["human", "cobra"], tags: ["anthro"] },
  54752. {
  54753. front: {
  54754. height: math.unit(3.10, "meters"),
  54755. name: "Front",
  54756. image: {
  54757. source: "./media/characters/aggyn/front.svg",
  54758. extra: 1188/963,
  54759. bottom: 24/1212
  54760. }
  54761. },
  54762. },
  54763. [
  54764. {
  54765. name: "Normal",
  54766. height: math.unit(3.10, "meters"),
  54767. default: true
  54768. },
  54769. ]
  54770. ))
  54771. characterMakers.push(() => makeCharacter(
  54772. { name: "Alsandair Hergenroether", species: ["pangolin", "deity"], tags: ["anthro"] },
  54773. {
  54774. front: {
  54775. height: math.unit(7 + 5/12, "feet"),
  54776. weight: math.unit(687, "lb"),
  54777. name: "Front",
  54778. image: {
  54779. source: "./media/characters/alsandair-hergenroether/front.svg",
  54780. extra: 1251/1186,
  54781. bottom: 75/1326
  54782. }
  54783. },
  54784. back: {
  54785. height: math.unit(7 + 5/12, "feet"),
  54786. weight: math.unit(687, "lb"),
  54787. name: "Back",
  54788. image: {
  54789. source: "./media/characters/alsandair-hergenroether/back.svg",
  54790. extra: 1290/1229,
  54791. bottom: 17/1307
  54792. }
  54793. },
  54794. },
  54795. [
  54796. {
  54797. name: "Max Compression",
  54798. height: math.unit(7 + 5/12, "feet"),
  54799. default: true
  54800. },
  54801. {
  54802. name: "\"Normal\"",
  54803. height: math.unit(2, "universes")
  54804. },
  54805. ]
  54806. ))
  54807. characterMakers.push(() => makeCharacter(
  54808. { name: "Ie", species: ["teshari"], tags: ["anthro"] },
  54809. {
  54810. front: {
  54811. height: math.unit(4 + 1/12, "feet"),
  54812. weight: math.unit(92, "lb"),
  54813. name: "Front",
  54814. image: {
  54815. source: "./media/characters/ie/front.svg",
  54816. extra: 1585/1352,
  54817. bottom: 91/1676
  54818. }
  54819. },
  54820. },
  54821. [
  54822. {
  54823. name: "Normal",
  54824. height: math.unit(4 + 1/12, "feet"),
  54825. default: true
  54826. },
  54827. ]
  54828. ))
  54829. characterMakers.push(() => makeCharacter(
  54830. { name: "Willow", species: ["nargacuga", "garchomp"], tags: ["anthro", "taur"] },
  54831. {
  54832. anthro: {
  54833. height: math.unit(6, "feet"),
  54834. weight: math.unit(150, "lb"),
  54835. name: "Front",
  54836. image: {
  54837. source: "./media/characters/willow/anthro.svg",
  54838. extra: 1073/986,
  54839. bottom: 34/1107
  54840. },
  54841. form: "anthro",
  54842. default: true
  54843. },
  54844. taur: {
  54845. height: math.unit(6, "feet"),
  54846. weight: math.unit(150, "lb"),
  54847. name: "Side",
  54848. image: {
  54849. source: "./media/characters/willow/taur.svg",
  54850. extra: 647/512,
  54851. bottom: 136/783
  54852. },
  54853. form: "taur",
  54854. default: true
  54855. },
  54856. },
  54857. [
  54858. {
  54859. name: "Humanoid",
  54860. height: math.unit(2.7, "meters"),
  54861. form: "anthro"
  54862. },
  54863. {
  54864. name: "Normal",
  54865. height: math.unit(9, "meters"),
  54866. form: "anthro",
  54867. default: true
  54868. },
  54869. {
  54870. name: "Humanoid",
  54871. height: math.unit(2.1, "meters"),
  54872. form: "taur"
  54873. },
  54874. {
  54875. name: "Normal",
  54876. height: math.unit(7, "meters"),
  54877. form: "taur",
  54878. default: true
  54879. },
  54880. ],
  54881. {
  54882. "anthro": {
  54883. name: "Anthro",
  54884. default: true
  54885. },
  54886. "taur": {
  54887. name: "Taur",
  54888. },
  54889. }
  54890. ))
  54891. characterMakers.push(() => makeCharacter(
  54892. { name: "Kyan", species: ["sable"], tags: ["anthro"] },
  54893. {
  54894. front: {
  54895. height: math.unit(2 + 5/12, "feet"),
  54896. name: "Front",
  54897. image: {
  54898. source: "./media/characters/kyan/front.svg",
  54899. extra: 460/334,
  54900. bottom: 23/483
  54901. },
  54902. extraAttributes: {
  54903. "toeLength": {
  54904. name: "Toe Length",
  54905. power: 1,
  54906. type: "length",
  54907. base: math.unit(7, "cm")
  54908. },
  54909. "toeclawLength": {
  54910. name: "Toeclaw Length",
  54911. power: 1,
  54912. type: "length",
  54913. base: math.unit(4.7, "cm")
  54914. },
  54915. "earHeight": {
  54916. name: "Ear Height",
  54917. power: 1,
  54918. type: "length",
  54919. base: math.unit(14.1, "cm")
  54920. },
  54921. }
  54922. },
  54923. paws: {
  54924. height: math.unit(0.45, "feet"),
  54925. name: "Paws",
  54926. image: {
  54927. source: "./media/characters/kyan/paws.svg",
  54928. extra: 581/581,
  54929. bottom: 114/695
  54930. }
  54931. },
  54932. },
  54933. [
  54934. {
  54935. name: "Normal",
  54936. height: math.unit(2 + 5/12, "feet"),
  54937. default: true
  54938. },
  54939. ]
  54940. ))
  54941. characterMakers.push(() => makeCharacter(
  54942. { name: "Xazzon", species: ["deino"], tags: ["anthro"] },
  54943. {
  54944. front: {
  54945. height: math.unit(2 + 2/3, "feet"),
  54946. name: "Front",
  54947. image: {
  54948. source: "./media/characters/xazzon/front.svg",
  54949. extra: 1109/984,
  54950. bottom: 42/1151
  54951. }
  54952. },
  54953. back: {
  54954. height: math.unit(2 + 2/3, "feet"),
  54955. name: "Back",
  54956. image: {
  54957. source: "./media/characters/xazzon/back.svg",
  54958. extra: 1095/971,
  54959. bottom: 23/1118
  54960. }
  54961. },
  54962. },
  54963. [
  54964. {
  54965. name: "Normal",
  54966. height: math.unit(2 + 2/3, "feet"),
  54967. default: true
  54968. },
  54969. ]
  54970. ))
  54971. characterMakers.push(() => makeCharacter(
  54972. { name: "Khyla Shadowsong", species: ["charr"], tags: ["anthro"] },
  54973. {
  54974. front: {
  54975. height: math.unit(8, "feet"),
  54976. weight: math.unit(300, "lb"),
  54977. name: "Front",
  54978. image: {
  54979. source: "./media/characters/khyla-shadowsong/front.svg",
  54980. extra: 861/798,
  54981. bottom: 32/893
  54982. }
  54983. },
  54984. side: {
  54985. height: math.unit(8, "feet"),
  54986. weight: math.unit(300, "lb"),
  54987. name: "Side",
  54988. image: {
  54989. source: "./media/characters/khyla-shadowsong/side.svg",
  54990. extra: 790/750,
  54991. bottom: 87/877
  54992. }
  54993. },
  54994. back: {
  54995. height: math.unit(8, "feet"),
  54996. weight: math.unit(300, "lb"),
  54997. name: "Back",
  54998. image: {
  54999. source: "./media/characters/khyla-shadowsong/back.svg",
  55000. extra: 855/808,
  55001. bottom: 14/869
  55002. }
  55003. },
  55004. head: {
  55005. height: math.unit(2.7, "feet"),
  55006. name: "Head",
  55007. image: {
  55008. source: "./media/characters/khyla-shadowsong/head.svg"
  55009. }
  55010. },
  55011. },
  55012. [
  55013. {
  55014. name: "Micro",
  55015. height: math.unit(6, "inches")
  55016. },
  55017. {
  55018. name: "Normal",
  55019. height: math.unit(8, "feet"),
  55020. default: true
  55021. },
  55022. ]
  55023. ))
  55024. characterMakers.push(() => makeCharacter(
  55025. { name: "Tiden", species: ["housecat"], tags: ["anthro"] },
  55026. {
  55027. hyperFront: {
  55028. height: math.unit(9 + 4/12, "feet"),
  55029. weight: math.unit(2000, "lb"),
  55030. name: "Front",
  55031. image: {
  55032. source: "./media/characters/tiden/hyper-front.svg",
  55033. extra: 400/382,
  55034. bottom: 6/406
  55035. },
  55036. form: "hyper",
  55037. },
  55038. regularFront: {
  55039. height: math.unit(7 + 10/12, "feet"),
  55040. weight: math.unit(470, "lb"),
  55041. name: "Front",
  55042. image: {
  55043. source: "./media/characters/tiden/regular-front.svg",
  55044. extra: 468/442,
  55045. bottom: 6/474
  55046. },
  55047. form: "regular",
  55048. },
  55049. },
  55050. [
  55051. {
  55052. name: "Normal",
  55053. height: math.unit(9 + 4/12, "feet"),
  55054. default: true,
  55055. form: "hyper"
  55056. },
  55057. {
  55058. name: "Normal",
  55059. height: math.unit(7 + 10/12, "feet"),
  55060. default: true,
  55061. form: "regular"
  55062. },
  55063. ],
  55064. {
  55065. "hyper": {
  55066. name: "Hyper",
  55067. default: true
  55068. },
  55069. "regular": {
  55070. name: "Regular",
  55071. },
  55072. }
  55073. ))
  55074. characterMakers.push(() => makeCharacter(
  55075. { name: "Jason Crowe", species: ["gryphon", "raven", "bombay-cat"], tags: ["feral"] },
  55076. {
  55077. side: {
  55078. height: math.unit(6, "feet"),
  55079. weight: math.unit(150, "lb"),
  55080. name: "Side",
  55081. image: {
  55082. source: "./media/characters/jason-crowe/side.svg",
  55083. extra: 1771/766,
  55084. bottom: 219/1990
  55085. }
  55086. },
  55087. },
  55088. [
  55089. {
  55090. name: "Pocket Gryphon",
  55091. height: math.unit(6, "cm")
  55092. },
  55093. {
  55094. name: "Raven",
  55095. height: math.unit(60, "cm")
  55096. },
  55097. {
  55098. name: "Normal",
  55099. height: math.unit(1, "meter"),
  55100. default: true
  55101. },
  55102. ]
  55103. ))
  55104. characterMakers.push(() => makeCharacter(
  55105. { name: "Django", species: ["maine-coon"], tags: ["anthro"] },
  55106. {
  55107. front: {
  55108. height: math.unit(9 + 6/12, "feet"),
  55109. weight: math.unit(1100, "lb"),
  55110. name: "Front",
  55111. image: {
  55112. source: "./media/characters/django/front.svg",
  55113. extra: 1231/1136,
  55114. bottom: 34/1265
  55115. }
  55116. },
  55117. side: {
  55118. height: math.unit(9 + 6/12, "feet"),
  55119. weight: math.unit(1100, "lb"),
  55120. name: "Side",
  55121. image: {
  55122. source: "./media/characters/django/side.svg",
  55123. extra: 1267/1174,
  55124. bottom: 9/1276
  55125. }
  55126. },
  55127. },
  55128. [
  55129. {
  55130. name: "Normal",
  55131. height: math.unit(9 + 6/12, "feet"),
  55132. default: true
  55133. },
  55134. {
  55135. name: "Macro 1",
  55136. height: math.unit(50, "feet")
  55137. },
  55138. {
  55139. name: "Macro 2",
  55140. height: math.unit(500, "feet")
  55141. },
  55142. {
  55143. name: "Mega Macro",
  55144. height: math.unit(5300, "feet")
  55145. },
  55146. ]
  55147. ))
  55148. characterMakers.push(() => makeCharacter(
  55149. { name: "Eri", species: ["moth", "alien"], tags: ["anthro"] },
  55150. {
  55151. frontSfw: {
  55152. height: math.unit(120, "cm"),
  55153. weight: math.unit(15, "kg"),
  55154. name: "Front (SFW)",
  55155. image: {
  55156. source: "./media/characters/eri/front-sfw.svg",
  55157. extra: 1014/939,
  55158. bottom: 37/1051
  55159. },
  55160. form: "moth",
  55161. },
  55162. frontNsfw: {
  55163. height: math.unit(120, "cm"),
  55164. weight: math.unit(15, "kg"),
  55165. name: "Front (NSFW)",
  55166. image: {
  55167. source: "./media/characters/eri/front-nsfw.svg",
  55168. extra: 1014/939,
  55169. bottom: 37/1051
  55170. },
  55171. form: "moth",
  55172. default: true
  55173. },
  55174. egg: {
  55175. height: math.unit(10, "cm"),
  55176. name: "Egg",
  55177. image: {
  55178. source: "./media/characters/eri/egg.svg"
  55179. },
  55180. form: "egg",
  55181. default: true
  55182. },
  55183. },
  55184. [
  55185. {
  55186. name: "Normal",
  55187. height: math.unit(120, "cm"),
  55188. default: true,
  55189. form: "moth"
  55190. },
  55191. {
  55192. name: "Normal",
  55193. height: math.unit(10, "cm"),
  55194. default: true,
  55195. form: "egg"
  55196. },
  55197. ],
  55198. {
  55199. "moth": {
  55200. name: "Moth",
  55201. default: true
  55202. },
  55203. "egg": {
  55204. name: "Egg",
  55205. },
  55206. }
  55207. ))
  55208. characterMakers.push(() => makeCharacter(
  55209. { name: "Bishop Dowser", species: ["red-panda"], tags: ["anthro"] },
  55210. {
  55211. front: {
  55212. height: math.unit(200, "feet"),
  55213. name: "Front",
  55214. image: {
  55215. source: "./media/characters/bishop-dowser/front.svg",
  55216. extra: 933/868,
  55217. bottom: 106/1039
  55218. }
  55219. },
  55220. },
  55221. [
  55222. {
  55223. name: "Giant",
  55224. height: math.unit(200, "feet"),
  55225. default: true
  55226. },
  55227. ]
  55228. ))
  55229. characterMakers.push(() => makeCharacter(
  55230. { name: "Fryra", species: ["dragon", "cow"], tags: ["anthro"] },
  55231. {
  55232. front: {
  55233. height: math.unit(2, "meters"),
  55234. preyCapacity: math.unit(3, "people"),
  55235. name: "Front",
  55236. image: {
  55237. source: "./media/characters/fryra/front.svg",
  55238. extra: 1025/948,
  55239. bottom: 30/1055
  55240. },
  55241. extraAttributes: {
  55242. "breastVolume": {
  55243. name: "Breast Volume",
  55244. power: 3,
  55245. type: "volume",
  55246. base: math.unit(8, "liters")
  55247. },
  55248. }
  55249. },
  55250. back: {
  55251. height: math.unit(2, "meters"),
  55252. preyCapacity: math.unit(3, "people"),
  55253. name: "Back",
  55254. image: {
  55255. source: "./media/characters/fryra/back.svg",
  55256. extra: 993/938,
  55257. bottom: 38/1031
  55258. },
  55259. extraAttributes: {
  55260. "breastVolume": {
  55261. name: "Breast Volume",
  55262. power: 3,
  55263. type: "volume",
  55264. base: math.unit(8, "liters")
  55265. },
  55266. }
  55267. },
  55268. head: {
  55269. height: math.unit(1.33, "feet"),
  55270. name: "Head",
  55271. image: {
  55272. source: "./media/characters/fryra/head.svg"
  55273. }
  55274. },
  55275. maw: {
  55276. height: math.unit(0.56, "feet"),
  55277. name: "Maw",
  55278. image: {
  55279. source: "./media/characters/fryra/maw.svg"
  55280. }
  55281. },
  55282. },
  55283. [
  55284. {
  55285. name: "Micro",
  55286. height: math.unit(5, "cm")
  55287. },
  55288. {
  55289. name: "Normal",
  55290. height: math.unit(2, "meters"),
  55291. default: true
  55292. },
  55293. {
  55294. name: "Small Macro",
  55295. height: math.unit(8, "meters")
  55296. },
  55297. {
  55298. name: "Macro",
  55299. height: math.unit(50, "meters")
  55300. },
  55301. {
  55302. name: "Megamacro",
  55303. height: math.unit(1, "km")
  55304. },
  55305. {
  55306. name: "Planetary",
  55307. height: math.unit(300000, "km")
  55308. },
  55309. {
  55310. name: "Universal",
  55311. height: math.unit(250, "lightyears")
  55312. },
  55313. {
  55314. name: "Fabric of Reality",
  55315. height: math.unit(1000, "multiverses")
  55316. },
  55317. ]
  55318. ))
  55319. characterMakers.push(() => makeCharacter(
  55320. { name: "Fiera", species: ["husky"], tags: ["anthro"] },
  55321. {
  55322. frontDressed: {
  55323. height: math.unit(6 + 2/12, "feet"),
  55324. name: "Front (Dressed)",
  55325. image: {
  55326. source: "./media/characters/fiera/front-dressed.svg",
  55327. extra: 1883/1793,
  55328. bottom: 70/1953
  55329. }
  55330. },
  55331. backDressed: {
  55332. height: math.unit(6 + 2/12, "feet"),
  55333. name: "Back (Dressed)",
  55334. image: {
  55335. source: "./media/characters/fiera/back-dressed.svg",
  55336. extra: 1847/1780,
  55337. bottom: 70/1917
  55338. }
  55339. },
  55340. frontNude: {
  55341. height: math.unit(6 + 2/12, "feet"),
  55342. name: "Front (Nude)",
  55343. image: {
  55344. source: "./media/characters/fiera/front-nude.svg",
  55345. extra: 1875/1785,
  55346. bottom: 66/1941
  55347. }
  55348. },
  55349. backNude: {
  55350. height: math.unit(6 + 2/12, "feet"),
  55351. name: "Back (Nude)",
  55352. image: {
  55353. source: "./media/characters/fiera/back-nude.svg",
  55354. extra: 1855/1788,
  55355. bottom: 44/1899
  55356. }
  55357. },
  55358. maw: {
  55359. height: math.unit(1.3, "feet"),
  55360. name: "Maw",
  55361. image: {
  55362. source: "./media/characters/fiera/maw.svg"
  55363. }
  55364. },
  55365. paw: {
  55366. height: math.unit(1, "feet"),
  55367. name: "Paw",
  55368. image: {
  55369. source: "./media/characters/fiera/paw.svg"
  55370. }
  55371. },
  55372. shoe: {
  55373. height: math.unit(1.05, "feet"),
  55374. name: "Shoe",
  55375. image: {
  55376. source: "./media/characters/fiera/shoe.svg"
  55377. }
  55378. },
  55379. },
  55380. [
  55381. {
  55382. name: "Normal",
  55383. height: math.unit(6 + 2/12, "feet"),
  55384. default: true
  55385. },
  55386. {
  55387. name: "Size Difference",
  55388. height: math.unit(13, "feet")
  55389. },
  55390. {
  55391. name: "Macro",
  55392. height: math.unit(60, "feet")
  55393. },
  55394. {
  55395. name: "Mega Macro",
  55396. height: math.unit(200, "feet")
  55397. },
  55398. ]
  55399. ))
  55400. characterMakers.push(() => makeCharacter(
  55401. { name: "Flare", species: ["husky"], tags: ["anthro"] },
  55402. {
  55403. back: {
  55404. height: math.unit(6, "feet"),
  55405. name: "Back",
  55406. image: {
  55407. source: "./media/characters/flare/back.svg",
  55408. extra: 1883/1765,
  55409. bottom: 32/1915
  55410. }
  55411. },
  55412. },
  55413. [
  55414. {
  55415. name: "Normal",
  55416. height: math.unit(6 + 2/12, "feet"),
  55417. default: true
  55418. },
  55419. {
  55420. name: "Size Difference",
  55421. height: math.unit(13, "feet")
  55422. },
  55423. {
  55424. name: "Macro",
  55425. height: math.unit(60, "feet")
  55426. },
  55427. {
  55428. name: "Macro 2",
  55429. height: math.unit(100, "feet")
  55430. },
  55431. {
  55432. name: "Mega Macro",
  55433. height: math.unit(200, "feet")
  55434. },
  55435. ]
  55436. ))
  55437. characterMakers.push(() => makeCharacter(
  55438. { name: "Hanna", species: ["coelacanth"], tags: ["anthro"] },
  55439. {
  55440. front: {
  55441. height: math.unit(2.2, "m"),
  55442. weight: math.unit(300, "kg"),
  55443. name: "Front",
  55444. image: {
  55445. source: "./media/characters/hanna/front.svg",
  55446. extra: 1696/1502,
  55447. bottom: 206/1902
  55448. }
  55449. },
  55450. },
  55451. [
  55452. {
  55453. name: "Humanoid",
  55454. height: math.unit(2.2, "meters")
  55455. },
  55456. {
  55457. name: "Normal",
  55458. height: math.unit(4.8, "meters"),
  55459. default: true
  55460. },
  55461. ]
  55462. ))
  55463. characterMakers.push(() => makeCharacter(
  55464. { name: "Argo", species: ["silvally"], tags: ["taur"] },
  55465. {
  55466. front: {
  55467. height: math.unit(2.8, "meters"),
  55468. name: "Front",
  55469. image: {
  55470. source: "./media/characters/argo/front.svg",
  55471. extra: 731/518,
  55472. bottom: 84/815
  55473. }
  55474. },
  55475. },
  55476. [
  55477. {
  55478. name: "Normal",
  55479. height: math.unit(3, "meters"),
  55480. default: true
  55481. },
  55482. ]
  55483. ))
  55484. characterMakers.push(() => makeCharacter(
  55485. { name: "Sybil", species: ["scolipede", "typhlosion"], tags: ["feral"] },
  55486. {
  55487. side: {
  55488. height: math.unit(3.8, "meters"),
  55489. name: "Side",
  55490. image: {
  55491. source: "./media/characters/sybil/side.svg",
  55492. extra: 382/361,
  55493. bottom: 25/407
  55494. }
  55495. },
  55496. },
  55497. [
  55498. {
  55499. name: "Normal",
  55500. height: math.unit(3.8, "meters"),
  55501. default: true
  55502. },
  55503. ]
  55504. ))
  55505. characterMakers.push(() => makeCharacter(
  55506. { name: "Plum", species: ["great-maccao"], tags: ["taur", "feral"] },
  55507. {
  55508. side: {
  55509. height: math.unit(6, "meters"),
  55510. name: "Side",
  55511. image: {
  55512. source: "./media/characters/plum/side.svg",
  55513. extra: 858/755,
  55514. bottom: 45/903
  55515. },
  55516. form: "taur",
  55517. default: true
  55518. },
  55519. back: {
  55520. height: math.unit(6.3, "meters"),
  55521. name: "Back",
  55522. image: {
  55523. source: "./media/characters/plum/back.svg",
  55524. extra: 887/813,
  55525. bottom: 32/919
  55526. },
  55527. form: "taur",
  55528. },
  55529. feral: {
  55530. height: math.unit(5.5, "meter"),
  55531. name: "Front",
  55532. image: {
  55533. source: "./media/characters/plum/feral.svg",
  55534. extra: 568/403,
  55535. bottom: 51/619
  55536. },
  55537. form: "feral",
  55538. default: true
  55539. },
  55540. head: {
  55541. height: math.unit(1.46, "meter"),
  55542. name: "Head",
  55543. image: {
  55544. source: "./media/characters/plum/head.svg"
  55545. },
  55546. form: "taur"
  55547. },
  55548. tailTop: {
  55549. height: math.unit(5.6, "meter"),
  55550. name: "Tail (Top)",
  55551. image: {
  55552. source: "./media/characters/plum/tail-top.svg"
  55553. },
  55554. form: "taur",
  55555. },
  55556. tailBottom: {
  55557. height: math.unit(5.6, "meter"),
  55558. name: "Tail (Bottom)",
  55559. image: {
  55560. source: "./media/characters/plum/tail-bottom.svg"
  55561. },
  55562. form: "taur",
  55563. },
  55564. feralHead: {
  55565. height: math.unit(2.56549521, "meter"),
  55566. name: "Head",
  55567. image: {
  55568. source: "./media/characters/plum/head.svg"
  55569. },
  55570. form: "feral"
  55571. },
  55572. feralTailTop: {
  55573. height: math.unit(5.44728435, "meter"),
  55574. name: "Tail (Top)",
  55575. image: {
  55576. source: "./media/characters/plum/tail-top.svg"
  55577. },
  55578. form: "feral",
  55579. },
  55580. feralTailBottom: {
  55581. height: math.unit(5.44728435, "meter"),
  55582. name: "Tail (Bottom)",
  55583. image: {
  55584. source: "./media/characters/plum/tail-bottom.svg"
  55585. },
  55586. form: "feral",
  55587. },
  55588. },
  55589. [
  55590. {
  55591. name: "Normal",
  55592. height: math.unit(6, "meters"),
  55593. default: true,
  55594. form: "taur"
  55595. },
  55596. {
  55597. name: "Normal",
  55598. height: math.unit(5.5, "meters"),
  55599. default: true,
  55600. form: "feral"
  55601. },
  55602. ],
  55603. {
  55604. "taur": {
  55605. name: "Taur",
  55606. default: true
  55607. },
  55608. "feral": {
  55609. name: "Feral",
  55610. },
  55611. }
  55612. ))
  55613. characterMakers.push(() => makeCharacter(
  55614. { name: "Celeste (Kitsune)", species: ["kitsune"], tags: ["anthro"] },
  55615. {
  55616. front: {
  55617. height: math.unit(6, "feet"),
  55618. weight: math.unit(115, "lb"),
  55619. name: "Front",
  55620. image: {
  55621. source: "./media/characters/celeste-kitsune/front.svg",
  55622. extra: 393/366,
  55623. bottom: 7/400
  55624. }
  55625. },
  55626. side: {
  55627. height: math.unit(6, "feet"),
  55628. weight: math.unit(115, "lb"),
  55629. name: "Side",
  55630. image: {
  55631. source: "./media/characters/celeste-kitsune/side.svg",
  55632. extra: 818/765,
  55633. bottom: 40/858
  55634. }
  55635. },
  55636. },
  55637. [
  55638. {
  55639. name: "Megamacro",
  55640. height: math.unit(1500, "miles"),
  55641. default: true
  55642. },
  55643. ]
  55644. ))
  55645. characterMakers.push(() => makeCharacter(
  55646. { name: "Io", species: ["shapeshifter"], tags: ["anthro"] },
  55647. {
  55648. front: {
  55649. height: math.unit(8, "meters"),
  55650. name: "Front",
  55651. image: {
  55652. source: "./media/characters/io/front.svg",
  55653. extra: 865/722,
  55654. bottom: 58/923
  55655. }
  55656. },
  55657. back: {
  55658. height: math.unit(8, "meters"),
  55659. name: "Back",
  55660. image: {
  55661. source: "./media/characters/io/back.svg",
  55662. extra: 920/776,
  55663. bottom: 42/962
  55664. }
  55665. },
  55666. head: {
  55667. height: math.unit(5.09, "meters"),
  55668. name: "Head",
  55669. image: {
  55670. source: "./media/characters/io/head.svg"
  55671. }
  55672. },
  55673. hand: {
  55674. height: math.unit(1.6, "meters"),
  55675. name: "Hand",
  55676. image: {
  55677. source: "./media/characters/io/hand.svg"
  55678. }
  55679. },
  55680. foot: {
  55681. height: math.unit(2.4, "meters"),
  55682. name: "Foot",
  55683. image: {
  55684. source: "./media/characters/io/foot.svg"
  55685. }
  55686. },
  55687. },
  55688. [
  55689. {
  55690. name: "Normal",
  55691. height: math.unit(8, "meters"),
  55692. default: true
  55693. },
  55694. ]
  55695. ))
  55696. characterMakers.push(() => makeCharacter(
  55697. { name: "Silas", species: ["skaven"], tags: ["anthro"] },
  55698. {
  55699. side: {
  55700. height: math.unit(6 + 3/12, "feet"),
  55701. weight: math.unit(225, "lb"),
  55702. name: "Side",
  55703. image: {
  55704. source: "./media/characters/silas/side.svg",
  55705. extra: 703/653,
  55706. bottom: 23/726
  55707. },
  55708. extraAttributes: {
  55709. "pawLength": {
  55710. name: "Paw Length",
  55711. power: 1,
  55712. type: "length",
  55713. base: math.unit(12, "inches")
  55714. },
  55715. "pawWidth": {
  55716. name: "Paw Width",
  55717. power: 1,
  55718. type: "length",
  55719. base: math.unit(4.5, "inches")
  55720. },
  55721. "pawArea": {
  55722. name: "Paw Area",
  55723. power: 2,
  55724. type: "area",
  55725. base: math.unit(12 * 4.5, "inches^2")
  55726. },
  55727. }
  55728. },
  55729. },
  55730. [
  55731. {
  55732. name: "Normal",
  55733. height: math.unit(6 + 3/12, "feet"),
  55734. default: true
  55735. },
  55736. ]
  55737. ))
  55738. characterMakers.push(() => makeCharacter(
  55739. { name: "Zari", species: ["otter"], tags: ["anthro"] },
  55740. {
  55741. back: {
  55742. height: math.unit(1.6, "meters"),
  55743. weight: math.unit(150, "lb"),
  55744. name: "Back",
  55745. image: {
  55746. source: "./media/characters/zari/back.svg",
  55747. extra: 424/411,
  55748. bottom: 32/456
  55749. },
  55750. extraAttributes: {
  55751. "bladderCapacity": {
  55752. name: "Bladder Size",
  55753. power: 3,
  55754. type: "volume",
  55755. base: math.unit(500, "mL")
  55756. },
  55757. "bladderFlow": {
  55758. name: "Flow Rate",
  55759. power: 3,
  55760. type: "volume",
  55761. base: math.unit(25, "mL")
  55762. },
  55763. }
  55764. },
  55765. },
  55766. [
  55767. {
  55768. name: "Normal",
  55769. height: math.unit(1.6, "meters"),
  55770. default: true
  55771. },
  55772. ]
  55773. ))
  55774. characterMakers.push(() => makeCharacter(
  55775. { name: "Charlie (Human)", species: ["human"], tags: ["anthro"] },
  55776. {
  55777. front: {
  55778. height: math.unit(25, "feet"),
  55779. weight: math.unit(5, "tons"),
  55780. name: "Front",
  55781. image: {
  55782. source: "./media/characters/charlie-human/front.svg",
  55783. extra: 1870/1740,
  55784. bottom: 102/1972
  55785. },
  55786. extraAttributes: {
  55787. "dickLength": {
  55788. name: "Dick Length",
  55789. power: 1,
  55790. type: "length",
  55791. base: math.unit(9, "feet")
  55792. },
  55793. }
  55794. },
  55795. back: {
  55796. height: math.unit(25, "feet"),
  55797. weight: math.unit(5, "tons"),
  55798. name: "Back",
  55799. image: {
  55800. source: "./media/characters/charlie-human/back.svg",
  55801. extra: 1858/1733,
  55802. bottom: 105/1963
  55803. },
  55804. extraAttributes: {
  55805. "dickLength": {
  55806. name: "Dick Length",
  55807. power: 1,
  55808. type: "length",
  55809. base: math.unit(9, "feet")
  55810. },
  55811. }
  55812. },
  55813. },
  55814. [
  55815. {
  55816. name: "\"Normal\"",
  55817. height: math.unit(6 + 4/12, "feet")
  55818. },
  55819. {
  55820. name: "Big",
  55821. height: math.unit(25, "feet"),
  55822. default: true
  55823. },
  55824. ]
  55825. ))
  55826. characterMakers.push(() => makeCharacter(
  55827. { name: "Ookitsu", species: ["kitsune"], tags: ["anthro"] },
  55828. {
  55829. front: {
  55830. height: math.unit(6 + 4/12, "feet"),
  55831. weight: math.unit(320, "lb"),
  55832. name: "Front",
  55833. image: {
  55834. source: "./media/characters/ookitsu/front.svg",
  55835. extra: 1160/976,
  55836. bottom: 38/1198
  55837. }
  55838. },
  55839. frontNsfw: {
  55840. height: math.unit(6 + 4/12, "feet"),
  55841. weight: math.unit(320, "lb"),
  55842. name: "Front (NSFW)",
  55843. image: {
  55844. source: "./media/characters/ookitsu/front-nsfw.svg",
  55845. extra: 1160/976,
  55846. bottom: 38/1198
  55847. }
  55848. },
  55849. back: {
  55850. height: math.unit(6 + 4/12, "feet"),
  55851. weight: math.unit(320, "lb"),
  55852. name: "Back",
  55853. image: {
  55854. source: "./media/characters/ookitsu/back.svg",
  55855. extra: 1030/975,
  55856. bottom: 70/1100
  55857. }
  55858. },
  55859. head: {
  55860. height: math.unit(1.79, "feet"),
  55861. name: "Head",
  55862. image: {
  55863. source: "./media/characters/ookitsu/head.svg"
  55864. }
  55865. },
  55866. hand: {
  55867. height: math.unit(0.92, "feet"),
  55868. name: "Hand",
  55869. image: {
  55870. source: "./media/characters/ookitsu/hand.svg"
  55871. }
  55872. },
  55873. tails: {
  55874. height: math.unit(3.3, "feet"),
  55875. name: "Tails",
  55876. image: {
  55877. source: "./media/characters/ookitsu/tails.svg"
  55878. }
  55879. },
  55880. dick: {
  55881. height: math.unit(1.10833, "feet"),
  55882. name: "Dick",
  55883. image: {
  55884. source: "./media/characters/ookitsu/dick.svg"
  55885. }
  55886. },
  55887. },
  55888. [
  55889. {
  55890. name: "Normal",
  55891. height: math.unit(6 + 4/12, "feet"),
  55892. default: true
  55893. },
  55894. {
  55895. name: "Macro",
  55896. height: math.unit(30, "feet")
  55897. },
  55898. ]
  55899. ))
  55900. characterMakers.push(() => makeCharacter(
  55901. { name: "JHusky", species: ["husky"], tags: ["anthro", "taur"] },
  55902. {
  55903. anthroFront: {
  55904. height: math.unit(6, "feet"),
  55905. weight: math.unit(250, "lb"),
  55906. name: "Front",
  55907. image: {
  55908. source: "./media/characters/jhusky/anthro-front.svg",
  55909. extra: 474/439,
  55910. bottom: 7/481
  55911. },
  55912. form: "anthro",
  55913. default: true
  55914. },
  55915. taurSideSfw: {
  55916. height: math.unit(6 + 4/12, "feet"),
  55917. weight: math.unit(500, "lb"),
  55918. name: "Side (SFW)",
  55919. image: {
  55920. source: "./media/characters/jhusky/taur-side-sfw.svg",
  55921. extra: 1741/1629,
  55922. bottom: 196/1937
  55923. },
  55924. form: "taur",
  55925. default: true
  55926. },
  55927. taurSideNsfw: {
  55928. height: math.unit(6 + 4/12, "feet"),
  55929. weight: math.unit(500, "lb"),
  55930. name: "Taur (NSFW)",
  55931. image: {
  55932. source: "./media/characters/jhusky/taur-side-nsfw.svg",
  55933. extra: 1741/1629,
  55934. bottom: 196/1937
  55935. },
  55936. form: "taur",
  55937. },
  55938. },
  55939. [
  55940. {
  55941. name: "Huge",
  55942. height: math.unit(500, "feet"),
  55943. form: "anthro"
  55944. },
  55945. {
  55946. name: "Macro",
  55947. height: math.unit(1000, "feet"),
  55948. default: true,
  55949. form: "anthro"
  55950. },
  55951. {
  55952. name: "Megamacro",
  55953. height: math.unit(10000, "feet"),
  55954. form: "anthro"
  55955. },
  55956. {
  55957. name: "Huge",
  55958. height: math.unit(528, "feet"),
  55959. form: "taur"
  55960. },
  55961. {
  55962. name: "Macro",
  55963. height: math.unit(1056, "feet"),
  55964. default: true,
  55965. form: "taur"
  55966. },
  55967. {
  55968. name: "Megamacro",
  55969. height: math.unit(10556, "feet"),
  55970. form: "taur"
  55971. },
  55972. ],
  55973. {
  55974. "anthro": {
  55975. name: "Anthro",
  55976. default: true
  55977. },
  55978. "taur": {
  55979. name: "Taur",
  55980. },
  55981. }
  55982. ))
  55983. characterMakers.push(() => makeCharacter(
  55984. { name: "Armail", species: ["obstagoon"], tags: ["anthro"] },
  55985. {
  55986. front: {
  55987. height: math.unit(8, "feet"),
  55988. weight: math.unit(500, "lb"),
  55989. name: "Front",
  55990. image: {
  55991. source: "./media/characters/armail/front.svg",
  55992. extra: 1753/1669,
  55993. bottom: 155/1908
  55994. }
  55995. },
  55996. back: {
  55997. height: math.unit(8, "feet"),
  55998. weight: math.unit(500, "lb"),
  55999. name: "Back",
  56000. image: {
  56001. source: "./media/characters/armail/back.svg",
  56002. extra: 1872/1803,
  56003. bottom: 63/1935
  56004. }
  56005. },
  56006. },
  56007. [
  56008. {
  56009. name: "Micro",
  56010. height: math.unit(0.25, "feet")
  56011. },
  56012. {
  56013. name: "Normal",
  56014. height: math.unit(8, "feet"),
  56015. default: true
  56016. },
  56017. {
  56018. name: "Mini-macro",
  56019. height: math.unit(30, "feet")
  56020. },
  56021. {
  56022. name: "Macro",
  56023. height: math.unit(400, "feet")
  56024. },
  56025. {
  56026. name: "Mega-macro",
  56027. height: math.unit(6000, "feet")
  56028. },
  56029. ]
  56030. ))
  56031. characterMakers.push(() => makeCharacter(
  56032. { name: "Wilfred T. Buxton", species: ["thomsons-gazelle"], tags: ["anthro"] },
  56033. {
  56034. front: {
  56035. height: math.unit(6 + 7/12, "feet"),
  56036. weight: math.unit(210, "lb"),
  56037. name: "Front",
  56038. image: {
  56039. source: "./media/characters/wilfred-t-buxton/front.svg",
  56040. extra: 1068/882,
  56041. bottom: 28/1096
  56042. }
  56043. },
  56044. },
  56045. [
  56046. {
  56047. name: "Normal",
  56048. height: math.unit(6 + 7/12, "feet"),
  56049. default: true
  56050. },
  56051. ]
  56052. ))
  56053. characterMakers.push(() => makeCharacter(
  56054. { name: "Leighton Marrow", species: ["deer"], tags: ["anthro"] },
  56055. {
  56056. front: {
  56057. height: math.unit(5 + 2/12, "feet"),
  56058. weight: math.unit(120, "lb"),
  56059. name: "Front",
  56060. image: {
  56061. source: "./media/characters/leighton-marrow/front.svg",
  56062. extra: 441/409,
  56063. bottom: 37/478
  56064. }
  56065. },
  56066. },
  56067. [
  56068. {
  56069. name: "Normal",
  56070. height: math.unit(5 + 2/12, "feet"),
  56071. default: true
  56072. },
  56073. ]
  56074. ))
  56075. characterMakers.push(() => makeCharacter(
  56076. { name: "Licos", species: ["werewolf"], tags: ["anthro", "taur"] },
  56077. {
  56078. front: {
  56079. height: math.unit(4, "meters"),
  56080. weight: math.unit(1200, "kg"),
  56081. name: "Front",
  56082. image: {
  56083. source: "./media/characters/licos/front.svg",
  56084. extra: 1727/1604,
  56085. bottom: 101/1828
  56086. },
  56087. form: "anthro",
  56088. default: true
  56089. },
  56090. taur_side: {
  56091. height: math.unit(20, "meters"),
  56092. weight: math.unit(1100000, "kg"),
  56093. name: "Side",
  56094. image: {
  56095. source: "./media/characters/licos/taur.svg",
  56096. extra: 1158/1091,
  56097. bottom: 80/1238
  56098. },
  56099. form: "taur",
  56100. default: true
  56101. },
  56102. },
  56103. [
  56104. {
  56105. name: "Normal",
  56106. height: math.unit(4, "meters"),
  56107. default: true,
  56108. form: "anthro"
  56109. },
  56110. {
  56111. name: "Normal",
  56112. height: math.unit(20, "meters"),
  56113. default: true,
  56114. form: "taur"
  56115. },
  56116. ],
  56117. {
  56118. "anthro": {
  56119. name: "Anthro",
  56120. default: true
  56121. },
  56122. "taur": {
  56123. name: "Taur",
  56124. },
  56125. }
  56126. ))
  56127. characterMakers.push(() => makeCharacter(
  56128. { name: "Theo (Monkey)", species: ["monkey"], tags: ["anthro"] },
  56129. {
  56130. front: {
  56131. height: math.unit(10 + 3/12, "feet"),
  56132. name: "Front",
  56133. image: {
  56134. source: "./media/characters/theo-monkey/front.svg",
  56135. extra: 1735/1658,
  56136. bottom: 73/1808
  56137. }
  56138. },
  56139. back: {
  56140. height: math.unit(10 + 3/12, "feet"),
  56141. name: "Back",
  56142. image: {
  56143. source: "./media/characters/theo-monkey/back.svg",
  56144. extra: 1742/1664,
  56145. bottom: 33/1775
  56146. }
  56147. },
  56148. head: {
  56149. height: math.unit(2.29, "feet"),
  56150. name: "Head",
  56151. image: {
  56152. source: "./media/characters/theo-monkey/head.svg"
  56153. }
  56154. },
  56155. handPalm: {
  56156. height: math.unit(1.73, "feet"),
  56157. name: "Hand (Palm)",
  56158. image: {
  56159. source: "./media/characters/theo-monkey/hand-palm.svg"
  56160. }
  56161. },
  56162. handBack: {
  56163. height: math.unit(1.63, "feet"),
  56164. name: "Hand (Back)",
  56165. image: {
  56166. source: "./media/characters/theo-monkey/hand-back.svg"
  56167. }
  56168. },
  56169. footSole: {
  56170. height: math.unit(2.15, "feet"),
  56171. name: "Foot (Sole)",
  56172. image: {
  56173. source: "./media/characters/theo-monkey/foot-sole.svg"
  56174. }
  56175. },
  56176. footSide: {
  56177. height: math.unit(1.6, "feet"),
  56178. name: "Foot (Side)",
  56179. image: {
  56180. source: "./media/characters/theo-monkey/foot-side.svg"
  56181. }
  56182. },
  56183. },
  56184. [
  56185. {
  56186. name: "Normal",
  56187. height: math.unit(10 + 3/12, "feet"),
  56188. default: true
  56189. },
  56190. ]
  56191. ))
  56192. characterMakers.push(() => makeCharacter(
  56193. { name: "Brook", species: ["serval"], tags: ["anthro"] },
  56194. {
  56195. front: {
  56196. height: math.unit(11, "feet"),
  56197. weight: math.unit(3000, "lb"),
  56198. preyCapacity: math.unit(10, "people"),
  56199. name: "Front",
  56200. image: {
  56201. source: "./media/characters/brook/front.svg",
  56202. extra: 909/835,
  56203. bottom: 108/1017
  56204. }
  56205. },
  56206. back: {
  56207. height: math.unit(11, "feet"),
  56208. weight: math.unit(3000, "lb"),
  56209. preyCapacity: math.unit(10, "people"),
  56210. name: "Back",
  56211. image: {
  56212. source: "./media/characters/brook/back.svg",
  56213. extra: 976/916,
  56214. bottom: 34/1010
  56215. }
  56216. },
  56217. backAlt: {
  56218. height: math.unit(11, "feet"),
  56219. weight: math.unit(3000, "lb"),
  56220. preyCapacity: math.unit(10, "people"),
  56221. name: "Back (Alt)",
  56222. image: {
  56223. source: "./media/characters/brook/back-alt.svg",
  56224. extra: 1283/1213,
  56225. bottom: 35/1318
  56226. }
  56227. },
  56228. bust: {
  56229. height: math.unit(9.0859030837, "feet"),
  56230. weight: math.unit(3000, "lb"),
  56231. preyCapacity: math.unit(10, "people"),
  56232. name: "Bust",
  56233. image: {
  56234. source: "./media/characters/brook/bust.svg",
  56235. extra: 2043/1923,
  56236. bottom: 0/2043
  56237. }
  56238. },
  56239. },
  56240. [
  56241. {
  56242. name: "Small",
  56243. height: math.unit(11, "feet"),
  56244. default: true
  56245. },
  56246. {
  56247. name: "Towering",
  56248. height: math.unit(5, "km")
  56249. },
  56250. {
  56251. name: "Enormous",
  56252. height: math.unit(25, "earths")
  56253. },
  56254. ]
  56255. ))
  56256. characterMakers.push(() => makeCharacter(
  56257. { name: "Squishi", species: ["swampert"], tags: ["anthro"] },
  56258. {
  56259. front: {
  56260. height: math.unit(4, "feet"),
  56261. weight: math.unit(150, "lb"),
  56262. name: "Front",
  56263. image: {
  56264. source: "./media/characters/squishi/front.svg",
  56265. extra: 1428/1271,
  56266. bottom: 30/1458
  56267. },
  56268. extraAttributes: {
  56269. "pawSize": {
  56270. name: "Paw Size",
  56271. power: 1,
  56272. type: "length",
  56273. base: math.unit(14, "ShoeSizeMensUS"),
  56274. defaultUnit: "ShoeSizeMensUS"
  56275. },
  56276. }
  56277. },
  56278. side: {
  56279. height: math.unit(4, "feet"),
  56280. weight: math.unit(150, "lb"),
  56281. name: "Side",
  56282. image: {
  56283. source: "./media/characters/squishi/side.svg",
  56284. extra: 1428/1271,
  56285. bottom: 30/1458
  56286. },
  56287. extraAttributes: {
  56288. "pawSize": {
  56289. name: "Paw Size",
  56290. power: 1,
  56291. type: "length",
  56292. base: math.unit(14, "ShoeSizeMensUS"),
  56293. defaultUnit: "ShoeSizeMensUS"
  56294. },
  56295. }
  56296. },
  56297. back: {
  56298. height: math.unit(4, "feet"),
  56299. weight: math.unit(150, "lb"),
  56300. name: "Back",
  56301. image: {
  56302. source: "./media/characters/squishi/back.svg",
  56303. extra: 1428/1271,
  56304. bottom: 30/1458
  56305. },
  56306. extraAttributes: {
  56307. "pawSize": {
  56308. name: "Paw Size",
  56309. power: 1,
  56310. type: "length",
  56311. base: math.unit(14, "ShoeSizeMensUS"),
  56312. defaultUnit: "ShoeSizeMensUS"
  56313. },
  56314. }
  56315. },
  56316. },
  56317. [
  56318. {
  56319. name: "Normal",
  56320. height: math.unit(4, "feet"),
  56321. default: true
  56322. },
  56323. ]
  56324. ))
  56325. characterMakers.push(() => makeCharacter(
  56326. { name: "Vincent Vasroc", species: ["red-fox"], tags: ["anthro"] },
  56327. {
  56328. front: {
  56329. height: math.unit(7 + 8/12, "feet"),
  56330. weight: math.unit(333, "lb"),
  56331. name: "Front",
  56332. image: {
  56333. source: "./media/characters/vincent-vasroc/front.svg",
  56334. extra: 1962/1860,
  56335. bottom: 41/2003
  56336. }
  56337. },
  56338. back: {
  56339. height: math.unit(7 + 8/12, "feet"),
  56340. weight: math.unit(333, "lb"),
  56341. name: "Back",
  56342. image: {
  56343. source: "./media/characters/vincent-vasroc/back.svg",
  56344. extra: 1952/1815,
  56345. bottom: 33/1985
  56346. }
  56347. },
  56348. paw: {
  56349. height: math.unit(1.24, "feet"),
  56350. name: "Paw",
  56351. image: {
  56352. source: "./media/characters/vincent-vasroc/paw.svg"
  56353. }
  56354. },
  56355. ear: {
  56356. height: math.unit(0.75, "feet"),
  56357. name: "Ear",
  56358. image: {
  56359. source: "./media/characters/vincent-vasroc/ear.svg"
  56360. }
  56361. },
  56362. },
  56363. [
  56364. {
  56365. name: "Nano",
  56366. height: math.unit(92, "micrometers")
  56367. },
  56368. {
  56369. name: "Normal",
  56370. height: math.unit(7 + 8/12, "feet"),
  56371. default: true
  56372. },
  56373. ]
  56374. ))
  56375. characterMakers.push(() => makeCharacter(
  56376. { name: "Ru-Kahn", species: ["fennec-fox"], tags: ["anthro"] },
  56377. {
  56378. frontNsfw: {
  56379. height: math.unit(40, "feet"),
  56380. weight: math.unit(58, "tons"),
  56381. name: "Front (NSFW)",
  56382. image: {
  56383. source: "./media/characters/ru-kahn/front-nsfw.svg",
  56384. extra: 1265/965,
  56385. bottom: 155/1420
  56386. }
  56387. },
  56388. frontSfw: {
  56389. height: math.unit(40, "feet"),
  56390. weight: math.unit(58, "tons"),
  56391. name: "Front (SFW)",
  56392. image: {
  56393. source: "./media/characters/ru-kahn/front-sfw.svg",
  56394. extra: 1265/965,
  56395. bottom: 80/1345
  56396. }
  56397. },
  56398. },
  56399. [
  56400. {
  56401. name: "Small",
  56402. height: math.unit(4, "feet")
  56403. },
  56404. {
  56405. name: "Normal",
  56406. height: math.unit(40, "feet"),
  56407. default: true
  56408. },
  56409. {
  56410. name: "Macro",
  56411. height: math.unit(400, "feet")
  56412. },
  56413. ]
  56414. ))
  56415. characterMakers.push(() => makeCharacter(
  56416. { name: "Sylvie LaForge", species: ["alligator"], tags: ["anthro"] },
  56417. {
  56418. frontNude: {
  56419. height: math.unit(6 + 5/12, "feet"),
  56420. name: "Front (Nude)",
  56421. image: {
  56422. source: "./media/characters/sylvie-laforge/front-nude.svg",
  56423. extra: 1369/1366,
  56424. bottom: 68/1437
  56425. }
  56426. },
  56427. frontDressed: {
  56428. height: math.unit(6 + 5/12, "feet"),
  56429. name: "Front (Dressed)",
  56430. image: {
  56431. source: "./media/characters/sylvie-laforge/front-dressed.svg",
  56432. extra: 1369/1366,
  56433. bottom: 68/1437
  56434. }
  56435. },
  56436. },
  56437. [
  56438. {
  56439. name: "Normal",
  56440. height: math.unit(6 + 5/12, "feet"),
  56441. default: true
  56442. },
  56443. {
  56444. name: "Maximum",
  56445. height: math.unit(1930, "feet")
  56446. },
  56447. ]
  56448. ))
  56449. characterMakers.push(() => makeCharacter(
  56450. { name: "Kaja", species: ["zoroark"], tags: ["anthro"] },
  56451. {
  56452. front: {
  56453. height: math.unit(5 + 6/12, "feet"),
  56454. name: "Front",
  56455. image: {
  56456. source: "./media/characters/kaja/front.svg",
  56457. extra: 1874/1514,
  56458. bottom: 117/1991
  56459. }
  56460. },
  56461. },
  56462. [
  56463. {
  56464. name: "Normal",
  56465. height: math.unit(5 + 6/12, "feet"),
  56466. default: true
  56467. },
  56468. ]
  56469. ))
  56470. characterMakers.push(() => makeCharacter(
  56471. { name: "Mark Smith", species: ["husky"], tags: ["anthro"] },
  56472. {
  56473. front: {
  56474. height: math.unit(5 + 9/12, "feet"),
  56475. weight: math.unit(200, "lb"),
  56476. name: "Front",
  56477. image: {
  56478. source: "./media/characters/mark-smith/front.svg",
  56479. extra: 1004/943,
  56480. bottom: 58/1062
  56481. }
  56482. },
  56483. back: {
  56484. height: math.unit(5 + 9/12, "feet"),
  56485. weight: math.unit(200, "lb"),
  56486. name: "Back",
  56487. image: {
  56488. source: "./media/characters/mark-smith/back.svg",
  56489. extra: 1023/953,
  56490. bottom: 24/1047
  56491. }
  56492. },
  56493. head: {
  56494. height: math.unit(1.82, "feet"),
  56495. name: "Head",
  56496. image: {
  56497. source: "./media/characters/mark-smith/head.svg"
  56498. }
  56499. },
  56500. hand: {
  56501. height: math.unit(1.4, "feet"),
  56502. name: "Hand",
  56503. image: {
  56504. source: "./media/characters/mark-smith/hand.svg"
  56505. }
  56506. },
  56507. paw: {
  56508. height: math.unit(1.69, "feet"),
  56509. name: "Paw",
  56510. image: {
  56511. source: "./media/characters/mark-smith/paw.svg"
  56512. }
  56513. },
  56514. },
  56515. [
  56516. {
  56517. name: "Micro",
  56518. height: math.unit(0.25, "inches")
  56519. },
  56520. {
  56521. name: "Normal",
  56522. height: math.unit(5 + 9/12, "feet"),
  56523. default: true
  56524. },
  56525. {
  56526. name: "Macro",
  56527. height: math.unit(500, "feet")
  56528. },
  56529. ]
  56530. ))
  56531. characterMakers.push(() => makeCharacter(
  56532. { name: "Rebecca 'Becky' Houston", species: ["gryphon"], tags: ["anthro"] },
  56533. {
  56534. frontNude: {
  56535. height: math.unit(6, "feet"),
  56536. name: "Front (Nude)",
  56537. image: {
  56538. source: "./media/characters/rebecca-becky-houston/front-nude.svg",
  56539. extra: 1384/1321,
  56540. bottom: 57/1441
  56541. }
  56542. },
  56543. frontDressed: {
  56544. height: math.unit(6, "feet"),
  56545. name: "Front (Dressed)",
  56546. image: {
  56547. source: "./media/characters/rebecca-becky-houston/front-dressed.svg",
  56548. extra: 1384/1321,
  56549. bottom: 57/1441
  56550. }
  56551. },
  56552. },
  56553. [
  56554. {
  56555. name: "Normal",
  56556. height: math.unit(6, "feet"),
  56557. default: true
  56558. },
  56559. {
  56560. name: "Maximum",
  56561. height: math.unit(1776, "feet")
  56562. },
  56563. ]
  56564. ))
  56565. characterMakers.push(() => makeCharacter(
  56566. { name: "Devos", species: ["dragon"], tags: ["feral"] },
  56567. {
  56568. front: {
  56569. height: math.unit(2 + 4/12, "feet"),
  56570. weight: math.unit(350, "lb"),
  56571. name: "Front",
  56572. image: {
  56573. source: "./media/characters/devos/front.svg",
  56574. extra: 958/852,
  56575. bottom: 143/1101
  56576. }
  56577. },
  56578. },
  56579. [
  56580. {
  56581. name: "Base",
  56582. height: math.unit(2 + 4/12, "feet"),
  56583. default: true
  56584. },
  56585. ]
  56586. ))
  56587. characterMakers.push(() => makeCharacter(
  56588. { name: "Hiveheart", species: ["sliver"], tags: ["anthro"] },
  56589. {
  56590. front: {
  56591. height: math.unit(9 + 2/12, "feet"),
  56592. name: "Front",
  56593. image: {
  56594. source: "./media/characters/hiveheart/front.svg",
  56595. extra: 394/364,
  56596. bottom: 65/459
  56597. }
  56598. },
  56599. back: {
  56600. height: math.unit(9 + 2/12, "feet"),
  56601. name: "Back",
  56602. image: {
  56603. source: "./media/characters/hiveheart/back.svg",
  56604. extra: 374/357,
  56605. bottom: 63/437
  56606. }
  56607. },
  56608. },
  56609. [
  56610. {
  56611. name: "Base",
  56612. height: math.unit(9 + 2/12, "feet"),
  56613. default: true
  56614. },
  56615. ]
  56616. ))
  56617. characterMakers.push(() => makeCharacter(
  56618. { name: "Bryn", species: ["moth"], tags: ["anthro"] },
  56619. {
  56620. front: {
  56621. height: math.unit(2.5, "inches"),
  56622. weight: math.unit(0.6, "oz"),
  56623. name: "Front",
  56624. image: {
  56625. source: "./media/characters/bryn/front.svg",
  56626. extra: 1480/1205,
  56627. bottom: 27/1507
  56628. }
  56629. },
  56630. back: {
  56631. height: math.unit(2.5, "inches"),
  56632. weight: math.unit(0.6, "oz"),
  56633. name: "Back",
  56634. image: {
  56635. source: "./media/characters/bryn/back.svg",
  56636. extra: 1475/1201,
  56637. bottom: 39/1514
  56638. }
  56639. },
  56640. foot: {
  56641. height: math.unit(0.4, "inches"),
  56642. name: "Foot",
  56643. image: {
  56644. source: "./media/characters/bryn/foot.svg"
  56645. }
  56646. },
  56647. },
  56648. [
  56649. {
  56650. name: "Normal",
  56651. height: math.unit(2.5, "inches"),
  56652. default: true
  56653. },
  56654. ]
  56655. ))
  56656. characterMakers.push(() => makeCharacter(
  56657. { name: "Delta", species: ["dragon"], tags: ["feral"] },
  56658. {
  56659. side: {
  56660. height: math.unit(7, "feet"),
  56661. weight: math.unit(657, "kg"),
  56662. name: "Side",
  56663. image: {
  56664. source: "./media/characters/delta/side.svg",
  56665. extra: 781/212,
  56666. bottom: 7/788
  56667. },
  56668. extraAttributes: {
  56669. "wingspan": {
  56670. name: "Wingspan",
  56671. power: 1,
  56672. type: "length",
  56673. base: math.unit(48, "feet")
  56674. },
  56675. "length": {
  56676. name: "Length",
  56677. power: 1,
  56678. type: "length",
  56679. base: math.unit(21, "feet")
  56680. },
  56681. "pawSize": {
  56682. name: "Paw Size",
  56683. power: 2,
  56684. type: "area",
  56685. base: math.unit(1.5*1.4, "feet^2")
  56686. },
  56687. }
  56688. },
  56689. },
  56690. [
  56691. {
  56692. name: "Normal",
  56693. height: math.unit(6, "feet"),
  56694. default: true
  56695. },
  56696. ]
  56697. ))
  56698. characterMakers.push(() => makeCharacter(
  56699. { name: "Pyrow", species: ["sergix"], tags: ["anthro"] },
  56700. {
  56701. front: {
  56702. height: math.unit(6, "feet"),
  56703. name: "Front",
  56704. image: {
  56705. source: "./media/characters/pyrow/front.svg",
  56706. extra: 513/486,
  56707. bottom: 14/527
  56708. }
  56709. },
  56710. frontWing: {
  56711. height: math.unit(6, "feet"),
  56712. name: "Front (Wing)",
  56713. image: {
  56714. source: "./media/characters/pyrow/front-wing.svg",
  56715. extra: 539/383,
  56716. bottom: 20/559
  56717. }
  56718. },
  56719. back: {
  56720. height: math.unit(6, "feet"),
  56721. name: "Back",
  56722. image: {
  56723. source: "./media/characters/pyrow/back.svg",
  56724. extra: 500/473,
  56725. bottom: 9/509
  56726. }
  56727. },
  56728. },
  56729. [
  56730. {
  56731. name: "Normal",
  56732. height: math.unit(6, "feet"),
  56733. default: true
  56734. },
  56735. ]
  56736. ))
  56737. characterMakers.push(() => makeCharacter(
  56738. { name: "Velikan", species: ["behemoth"], tags: ["anthro"] },
  56739. {
  56740. front: {
  56741. height: math.unit(5, "meters"),
  56742. weight: math.unit(3, "tonnes"),
  56743. name: "Front",
  56744. image: {
  56745. source: "./media/characters/velikan/front.svg",
  56746. extra: 867/744,
  56747. bottom: 71/938
  56748. },
  56749. extraAttributes: {
  56750. "shoeSize": {
  56751. name: "Shoe Size",
  56752. power: 1,
  56753. type: "length",
  56754. base: math.unit(135, "ShoeSizeUK"),
  56755. defaultUnit: "ShoeSizeUK"
  56756. },
  56757. }
  56758. },
  56759. },
  56760. [
  56761. {
  56762. name: "Normal",
  56763. height: math.unit(5, "meters"),
  56764. default: true
  56765. },
  56766. {
  56767. name: "Macro",
  56768. height: math.unit(1, "km")
  56769. },
  56770. {
  56771. name: "Mega Macro",
  56772. height: math.unit(100, "km")
  56773. },
  56774. {
  56775. name: "Giga Macro",
  56776. height: math.unit(2, "megameters")
  56777. },
  56778. {
  56779. name: "Planetary",
  56780. height: math.unit(22, "megameters")
  56781. },
  56782. {
  56783. name: "Solar",
  56784. height: math.unit(8, "gigameters")
  56785. },
  56786. {
  56787. name: "Cosmic",
  56788. height: math.unit(10, "zettameters")
  56789. },
  56790. {
  56791. name: "Omni",
  56792. height: math.unit(9e260, "multiverses")
  56793. },
  56794. ]
  56795. ))
  56796. characterMakers.push(() => makeCharacter(
  56797. { name: "Sabiki", species: ["werewolf", "fennec-fox"], tags: ["anthro"] },
  56798. {
  56799. front: {
  56800. height: math.unit(4 + 3/12, "feet"),
  56801. weight: math.unit(90, "lb"),
  56802. name: "Front",
  56803. image: {
  56804. source: "./media/characters/sabiki/front.svg",
  56805. extra: 1662/1423,
  56806. bottom: 65/1727
  56807. }
  56808. },
  56809. },
  56810. [
  56811. {
  56812. name: "Normal",
  56813. height: math.unit(4 + 3/12, "feet"),
  56814. default: true
  56815. },
  56816. ]
  56817. ))
  56818. characterMakers.push(() => makeCharacter(
  56819. { name: "Carmel", species: ["ant"], tags: ["anthro"] },
  56820. {
  56821. frontSfw: {
  56822. height: math.unit(2, "mm"),
  56823. name: "Front (SFW)",
  56824. image: {
  56825. source: "./media/characters/carmel/front-sfw.svg",
  56826. extra: 1131/1006,
  56827. bottom: 66/1197
  56828. }
  56829. },
  56830. frontNsfw: {
  56831. height: math.unit(2, "mm"),
  56832. name: "Front (NSFW)",
  56833. image: {
  56834. source: "./media/characters/carmel/front-nsfw.svg",
  56835. extra: 1131/1006,
  56836. bottom: 66/1197
  56837. }
  56838. },
  56839. foot: {
  56840. height: math.unit(0.3, "mm"),
  56841. name: "Foot",
  56842. image: {
  56843. source: "./media/characters/carmel/foot.svg"
  56844. }
  56845. },
  56846. tongue: {
  56847. height: math.unit(0.71, "mm"),
  56848. name: "Tongue",
  56849. image: {
  56850. source: "./media/characters/carmel/tongue.svg"
  56851. }
  56852. },
  56853. dick: {
  56854. height: math.unit(0.085, "mm"),
  56855. name: "Dick",
  56856. image: {
  56857. source: "./media/characters/carmel/dick.svg"
  56858. }
  56859. },
  56860. },
  56861. [
  56862. {
  56863. name: "Micro",
  56864. height: math.unit(2, "mm"),
  56865. default: true
  56866. },
  56867. {
  56868. name: "Normal",
  56869. height: math.unit(4 + 8/12, "feet")
  56870. },
  56871. {
  56872. name: "Mega Macro",
  56873. height: math.unit(250, "feet")
  56874. },
  56875. {
  56876. name: "BIGGER",
  56877. height: math.unit(1000, "feet")
  56878. },
  56879. {
  56880. name: "BIGGEST",
  56881. height: math.unit(2, "miles")
  56882. },
  56883. ]
  56884. ))
  56885. characterMakers.push(() => makeCharacter(
  56886. { name: "Tamani", species: ["lion"], tags: ["anthro", "feral"] },
  56887. {
  56888. front: {
  56889. height: math.unit(6.5, "feet"),
  56890. weight: math.unit(198, "lb"),
  56891. name: "Front",
  56892. image: {
  56893. source: "./media/characters/tamani/anthro.svg",
  56894. extra: 930/890,
  56895. bottom: 34/964
  56896. },
  56897. form: "anthro",
  56898. default: true
  56899. },
  56900. side: {
  56901. height: math.unit(6, "feet"),
  56902. weight: math.unit(198*2, "lb"),
  56903. name: "Side",
  56904. image: {
  56905. source: "./media/characters/tamani/feral.svg",
  56906. extra: 559/519,
  56907. bottom: 43/602
  56908. },
  56909. form: "feral"
  56910. },
  56911. },
  56912. [
  56913. {
  56914. name: "Normal",
  56915. height: math.unit(6.5, "feet"),
  56916. default: true,
  56917. form: "anthro"
  56918. },
  56919. {
  56920. name: "Normal",
  56921. height: math.unit(6, "feet"),
  56922. default: true,
  56923. form: "feral"
  56924. },
  56925. ],
  56926. {
  56927. "anthro": {
  56928. name: "Anthro",
  56929. default: true
  56930. },
  56931. "feral": {
  56932. name: "Feral",
  56933. },
  56934. }
  56935. ))
  56936. characterMakers.push(() => makeCharacter(
  56937. { name: "Dex", species: ["eastern-cottontail-rabbit"], tags: ["anthro"] },
  56938. {
  56939. front: {
  56940. height: math.unit(4 + 1/12, "feet"),
  56941. weight: math.unit(114, "lb"),
  56942. name: "Front",
  56943. image: {
  56944. source: "./media/characters/dex/front.svg",
  56945. extra: 787/680,
  56946. bottom: 18/805
  56947. }
  56948. },
  56949. side: {
  56950. height: math.unit(4 + 1/12, "feet"),
  56951. weight: math.unit(114, "lb"),
  56952. name: "Side",
  56953. image: {
  56954. source: "./media/characters/dex/side.svg",
  56955. extra: 785/680,
  56956. bottom: 12/797
  56957. }
  56958. },
  56959. back: {
  56960. height: math.unit(4 + 1/12, "feet"),
  56961. weight: math.unit(114, "lb"),
  56962. name: "Back",
  56963. image: {
  56964. source: "./media/characters/dex/back.svg",
  56965. extra: 785/681,
  56966. bottom: 17/802
  56967. }
  56968. },
  56969. loungewear: {
  56970. height: math.unit(4 + 1/12, "feet"),
  56971. weight: math.unit(114, "lb"),
  56972. name: "Loungewear",
  56973. image: {
  56974. source: "./media/characters/dex/loungewear.svg",
  56975. extra: 787/680,
  56976. bottom: 18/805
  56977. }
  56978. },
  56979. workout: {
  56980. height: math.unit(4 + 1/12, "feet"),
  56981. weight: math.unit(114, "lb"),
  56982. name: "Workout",
  56983. image: {
  56984. source: "./media/characters/dex/workout.svg",
  56985. extra: 787/680,
  56986. bottom: 18/805
  56987. }
  56988. },
  56989. schoolUniform: {
  56990. height: math.unit(4 + 1/12, "feet"),
  56991. weight: math.unit(114, "lb"),
  56992. name: "School-uniform",
  56993. image: {
  56994. source: "./media/characters/dex/school-uniform.svg",
  56995. extra: 787/680,
  56996. bottom: 18/805
  56997. }
  56998. },
  56999. maw: {
  57000. height: math.unit(0.55, "feet"),
  57001. name: "Maw",
  57002. image: {
  57003. source: "./media/characters/dex/maw.svg"
  57004. }
  57005. },
  57006. paw: {
  57007. height: math.unit(0.87, "feet"),
  57008. name: "Paw",
  57009. image: {
  57010. source: "./media/characters/dex/paw.svg"
  57011. }
  57012. },
  57013. bust: {
  57014. height: math.unit(1.67, "feet"),
  57015. name: "Bust",
  57016. image: {
  57017. source: "./media/characters/dex/bust.svg"
  57018. }
  57019. },
  57020. },
  57021. [
  57022. {
  57023. name: "Normal",
  57024. height: math.unit(4 + 1/12, "feet"),
  57025. default: true
  57026. },
  57027. ]
  57028. ))
  57029. characterMakers.push(() => makeCharacter(
  57030. { name: "Silke", species: ["sylveon"], tags: ["anthro"] },
  57031. {
  57032. front: {
  57033. height: math.unit(4 + 3/12, "feet"),
  57034. weight: math.unit(60, "lb"),
  57035. name: "Front",
  57036. image: {
  57037. source: "./media/characters/silke/front.svg",
  57038. extra: 1334/1122,
  57039. bottom: 21/1355
  57040. }
  57041. },
  57042. back: {
  57043. height: math.unit(4 + 3/12, "feet"),
  57044. weight: math.unit(60, "lb"),
  57045. name: "Back",
  57046. image: {
  57047. source: "./media/characters/silke/back.svg",
  57048. extra: 1328/1092,
  57049. bottom: 16/1344
  57050. }
  57051. },
  57052. dressed: {
  57053. height: math.unit(4 + 3/12, "feet"),
  57054. weight: math.unit(60, "lb"),
  57055. name: "Dressed",
  57056. image: {
  57057. source: "./media/characters/silke/dressed.svg",
  57058. extra: 1334/1122,
  57059. bottom: 43/1377
  57060. }
  57061. },
  57062. },
  57063. [
  57064. {
  57065. name: "Normal",
  57066. height: math.unit(4 + 3/12, "feet"),
  57067. default: true
  57068. },
  57069. ]
  57070. ))
  57071. characterMakers.push(() => makeCharacter(
  57072. { name: "Wireshark", species: ["thresher-shark"], tags: ["anthro"] },
  57073. {
  57074. front: {
  57075. height: math.unit(1.58, "meters"),
  57076. weight: math.unit(47, "kg"),
  57077. name: "Front",
  57078. image: {
  57079. source: "./media/characters/wireshark/front.svg",
  57080. extra: 883/838,
  57081. bottom: 66/949
  57082. }
  57083. },
  57084. },
  57085. [
  57086. {
  57087. name: "Normal",
  57088. height: math.unit(1.58, "meters"),
  57089. default: true
  57090. },
  57091. ]
  57092. ))
  57093. characterMakers.push(() => makeCharacter(
  57094. { name: "Gallagher", species: ["shark", "cyborg", "ai"], tags: ["anthro"] },
  57095. {
  57096. front: {
  57097. height: math.unit(6, "meters"),
  57098. weight: math.unit(15000, "kg"),
  57099. name: "Front",
  57100. image: {
  57101. source: "./media/characters/gallagher/front.svg",
  57102. extra: 532/493,
  57103. bottom: 0/532
  57104. }
  57105. },
  57106. },
  57107. [
  57108. {
  57109. name: "Normal",
  57110. height: math.unit(6, "meters"),
  57111. default: true
  57112. },
  57113. ]
  57114. ))
  57115. characterMakers.push(() => makeCharacter(
  57116. { name: "Alice", species: ["black-tip-reef-shark"], tags: ["anthro"] },
  57117. {
  57118. front: {
  57119. height: math.unit(2.4, "meters"),
  57120. weight: math.unit(270, "kg"),
  57121. name: "Front",
  57122. image: {
  57123. source: "./media/characters/alice/front.svg",
  57124. extra: 950/900,
  57125. bottom: 36/986
  57126. }
  57127. },
  57128. side: {
  57129. height: math.unit(2.4, "meters"),
  57130. weight: math.unit(270, "kg"),
  57131. name: "Side",
  57132. image: {
  57133. source: "./media/characters/alice/side.svg",
  57134. extra: 921/876,
  57135. bottom: 19/940
  57136. }
  57137. },
  57138. dressed: {
  57139. height: math.unit(2.4, "meters"),
  57140. weight: math.unit(270, "kg"),
  57141. name: "Dressed",
  57142. image: {
  57143. source: "./media/characters/alice/dressed.svg",
  57144. extra: 905/850,
  57145. bottom: 81/986
  57146. }
  57147. },
  57148. fishnet: {
  57149. height: math.unit(2.4, "meters"),
  57150. weight: math.unit(270, "kg"),
  57151. name: "Fishnet",
  57152. image: {
  57153. source: "./media/characters/alice/fishnet.svg",
  57154. extra: 905/850,
  57155. bottom: 81/986
  57156. }
  57157. },
  57158. },
  57159. [
  57160. {
  57161. name: "Normal",
  57162. height: math.unit(2.4, "meters"),
  57163. default: true
  57164. },
  57165. ]
  57166. ))
  57167. characterMakers.push(() => makeCharacter(
  57168. { name: "Fio", species: ["deer"], tags: ["anthro"] },
  57169. {
  57170. front: {
  57171. height: math.unit(175.25, "feet"),
  57172. name: "Front",
  57173. image: {
  57174. source: "./media/characters/fio/front.svg",
  57175. extra: 1883/1591,
  57176. bottom: 34/1917
  57177. }
  57178. },
  57179. },
  57180. [
  57181. {
  57182. name: "Normal",
  57183. height: math.unit(175.25, "cm"),
  57184. default: true
  57185. },
  57186. ]
  57187. ))
  57188. characterMakers.push(() => makeCharacter(
  57189. { name: "Hass", species: ["quetzalcoatlus-northropi"], tags: ["feral"] },
  57190. {
  57191. side: {
  57192. height: math.unit(6, "meters"),
  57193. weight: math.unit(3400, "kg"),
  57194. preyCapacity: math.unit(1700, "liters"),
  57195. name: "Side",
  57196. image: {
  57197. source: "./media/characters/hass/side.svg",
  57198. extra: 1058/997,
  57199. bottom: 177/1235
  57200. }
  57201. },
  57202. feeding: {
  57203. height: math.unit(6*0.63, "meters"),
  57204. weight: math.unit(3400, "kg"),
  57205. preyCapacity: math.unit(1700, "liters"),
  57206. name: "Feeding",
  57207. image: {
  57208. source: "./media/characters/hass/feeding.svg",
  57209. extra: 689/579,
  57210. bottom: 146/835
  57211. }
  57212. },
  57213. guts: {
  57214. height: math.unit(6, "meters"),
  57215. weight: math.unit(3400, "kg"),
  57216. name: "Guts",
  57217. image: {
  57218. source: "./media/characters/hass/guts.svg",
  57219. extra: 1223/1198,
  57220. bottom: 182/1405
  57221. }
  57222. },
  57223. dickFront: {
  57224. height: math.unit(1.4, "meters"),
  57225. name: "Dick (Front)",
  57226. image: {
  57227. source: "./media/characters/hass/dick-front.svg"
  57228. }
  57229. },
  57230. dickSide: {
  57231. height: math.unit(1.3, "meters"),
  57232. name: "Dick (Side)",
  57233. image: {
  57234. source: "./media/characters/hass/dick-side.svg"
  57235. }
  57236. },
  57237. dickBack: {
  57238. height: math.unit(1.4, "meters"),
  57239. name: "Dick (Back)",
  57240. image: {
  57241. source: "./media/characters/hass/dick-back.svg"
  57242. }
  57243. },
  57244. },
  57245. [
  57246. {
  57247. name: "Normal",
  57248. height: math.unit(6, "meters"),
  57249. default: true
  57250. },
  57251. ]
  57252. ))
  57253. characterMakers.push(() => makeCharacter(
  57254. { name: "Hickory Finnegan", species: ["fennec-fox"], tags: ["anthro"] },
  57255. {
  57256. front: {
  57257. height: math.unit(4, "feet"),
  57258. weight: math.unit(60, "lb"),
  57259. name: "Front",
  57260. image: {
  57261. source: "./media/characters/hickory-finnegan/front.svg",
  57262. extra: 444/411,
  57263. bottom: 10/454
  57264. }
  57265. },
  57266. side: {
  57267. height: math.unit(4, "feet"),
  57268. weight: math.unit(60, "lb"),
  57269. name: "Side",
  57270. image: {
  57271. source: "./media/characters/hickory-finnegan/side.svg",
  57272. extra: 444/411,
  57273. bottom: 10/454
  57274. }
  57275. },
  57276. back: {
  57277. height: math.unit(4, "feet"),
  57278. weight: math.unit(60, "lb"),
  57279. name: "Back",
  57280. image: {
  57281. source: "./media/characters/hickory-finnegan/back.svg",
  57282. extra: 444/411,
  57283. bottom: 10/454
  57284. }
  57285. },
  57286. },
  57287. [
  57288. {
  57289. name: "Normal",
  57290. height: math.unit(4, "feet"),
  57291. default: true
  57292. },
  57293. ]
  57294. ))
  57295. characterMakers.push(() => makeCharacter(
  57296. { name: "Robin Phox", species: ["snivy", "yoshi", "delphox", "mienshao", "inteleon", "reshiram", "samurott"], tags: ["anthro"] },
  57297. {
  57298. snivy_front: {
  57299. height: math.unit(2, "feet"),
  57300. weight: math.unit(17.9, "lb"),
  57301. name: "Front",
  57302. image: {
  57303. source: "./media/characters/robin-phox/snivy-front.svg",
  57304. extra: 569/504,
  57305. bottom: 33/602
  57306. },
  57307. form: "snivy",
  57308. default: true
  57309. },
  57310. snivy_frontNsfw: {
  57311. height: math.unit(2, "feet"),
  57312. weight: math.unit(17.9, "lb"),
  57313. name: "Front (NSFW)",
  57314. image: {
  57315. source: "./media/characters/robin-phox/snivy-front-nsfw.svg",
  57316. extra: 569/504,
  57317. bottom: 33/602
  57318. },
  57319. form: "snivy",
  57320. },
  57321. snivy_back: {
  57322. height: math.unit(2, "feet"),
  57323. weight: math.unit(17.9, "lb"),
  57324. name: "Back",
  57325. image: {
  57326. source: "./media/characters/robin-phox/snivy-back.svg",
  57327. extra: 577/508,
  57328. bottom: 21/598
  57329. },
  57330. form: "snivy",
  57331. },
  57332. snivy_foot: {
  57333. height: math.unit(0.68, "feet"),
  57334. name: "Foot",
  57335. image: {
  57336. source: "./media/characters/robin-phox/snivy-foot.svg"
  57337. },
  57338. form: "snivy",
  57339. },
  57340. snivy_sole: {
  57341. height: math.unit(0.68, "feet"),
  57342. name: "Sole",
  57343. image: {
  57344. source: "./media/characters/robin-phox/snivy-sole.svg"
  57345. },
  57346. form: "snivy",
  57347. },
  57348. yoshi_front: {
  57349. height: math.unit(6, "feet"),
  57350. weight: math.unit(150, "lb"),
  57351. name: "Front",
  57352. image: {
  57353. source: "./media/characters/robin-phox/yoshi-front.svg",
  57354. extra: 890/792,
  57355. bottom: 29/919
  57356. },
  57357. form: "yoshi",
  57358. default: true
  57359. },
  57360. yoshi_frontNsfw: {
  57361. height: math.unit(6, "feet"),
  57362. weight: math.unit(150, "lb"),
  57363. name: "Front (NSFW)",
  57364. image: {
  57365. source: "./media/characters/robin-phox/yoshi-front-nsfw.svg",
  57366. extra: 890/792,
  57367. bottom: 29/919
  57368. },
  57369. form: "yoshi",
  57370. },
  57371. yoshi_back: {
  57372. height: math.unit(6, "feet"),
  57373. weight: math.unit(150, "lb"),
  57374. name: "Back",
  57375. image: {
  57376. source: "./media/characters/robin-phox/yoshi-back.svg",
  57377. extra: 890/792,
  57378. bottom: 29/919
  57379. },
  57380. form: "yoshi",
  57381. },
  57382. yoshi_foot: {
  57383. height: math.unit(1.5, "feet"),
  57384. name: "Foot",
  57385. image: {
  57386. source: "./media/characters/robin-phox/yoshi-foot.svg"
  57387. },
  57388. form: "yoshi",
  57389. },
  57390. delphox_front: {
  57391. height: math.unit(4 + 11/12, "feet"),
  57392. weight: math.unit(86, "lb"),
  57393. name: "Front",
  57394. image: {
  57395. source: "./media/characters/robin-phox/delphox-front.svg",
  57396. extra: 1266/1069,
  57397. bottom: 32/1298
  57398. },
  57399. form: "delphox",
  57400. default: true
  57401. },
  57402. delphox_frontNsfw: {
  57403. height: math.unit(4 + 11/12, "feet"),
  57404. weight: math.unit(86, "lb"),
  57405. name: "Front (NSFW)",
  57406. image: {
  57407. source: "./media/characters/robin-phox/delphox-front-nsfw.svg",
  57408. extra: 1266/1069,
  57409. bottom: 32/1298
  57410. },
  57411. form: "delphox",
  57412. },
  57413. delphox_back: {
  57414. height: math.unit(4 + 11/12, "feet"),
  57415. weight: math.unit(86, "lb"),
  57416. name: "Back",
  57417. image: {
  57418. source: "./media/characters/robin-phox/delphox-back.svg",
  57419. extra: 1269/1083,
  57420. bottom: 15/1284
  57421. },
  57422. form: "delphox",
  57423. },
  57424. mienshao_front: {
  57425. height: math.unit(4 + 7/12, "feet"),
  57426. weight: math.unit(78.3, "lb"),
  57427. name: "Front",
  57428. image: {
  57429. source: "./media/characters/robin-phox/mienshao-front.svg",
  57430. extra: 1052/970,
  57431. bottom: 108/1160
  57432. },
  57433. form: "mienshao",
  57434. default: true
  57435. },
  57436. mienshao_frontNsfw: {
  57437. height: math.unit(4 + 7/12, "feet"),
  57438. weight: math.unit(78.3, "lb"),
  57439. name: "Front (NSFW)",
  57440. image: {
  57441. source: "./media/characters/robin-phox/mienshao-front-nsfw.svg",
  57442. extra: 1052/970,
  57443. bottom: 108/1160
  57444. },
  57445. form: "mienshao",
  57446. },
  57447. mienshao_back: {
  57448. height: math.unit(4 + 7/12, "feet"),
  57449. weight: math.unit(78.3, "lb"),
  57450. name: "Back",
  57451. image: {
  57452. source: "./media/characters/robin-phox/mienshao-back.svg",
  57453. extra: 1102/982,
  57454. bottom: 32/1134
  57455. },
  57456. form: "mienshao",
  57457. },
  57458. inteleon_front: {
  57459. height: math.unit(6 + 3/12, "feet"),
  57460. weight: math.unit(99.6, "lb"),
  57461. name: "Front",
  57462. image: {
  57463. source: "./media/characters/robin-phox/inteleon-front.svg",
  57464. extra: 910/799,
  57465. bottom: 76/986
  57466. },
  57467. form: "inteleon",
  57468. default: true
  57469. },
  57470. inteleon_frontNsfw: {
  57471. height: math.unit(6 + 3/12, "feet"),
  57472. weight: math.unit(99.6, "lb"),
  57473. name: "Front (NSFW)",
  57474. image: {
  57475. source: "./media/characters/robin-phox/inteleon-front-nsfw.svg",
  57476. extra: 910/799,
  57477. bottom: 76/986
  57478. },
  57479. form: "inteleon",
  57480. },
  57481. inteleon_back: {
  57482. height: math.unit(6 + 3/12, "feet"),
  57483. weight: math.unit(99.6, "lb"),
  57484. name: "Back",
  57485. image: {
  57486. source: "./media/characters/robin-phox/inteleon-back.svg",
  57487. extra: 907/796,
  57488. bottom: 25/932
  57489. },
  57490. form: "inteleon",
  57491. },
  57492. reshiram_front: {
  57493. height: math.unit(10 + 6/12, "feet"),
  57494. weight: math.unit(727.5, "lb"),
  57495. name: "Front",
  57496. image: {
  57497. source: "./media/characters/robin-phox/reshiram-front.svg",
  57498. extra: 1198/940,
  57499. bottom: 123/1321
  57500. },
  57501. form: "reshiram",
  57502. },
  57503. reshiram_frontNsfw: {
  57504. height: math.unit(10 + 6/12, "feet"),
  57505. weight: math.unit(727.5, "lb"),
  57506. name: "Front-nsfw",
  57507. image: {
  57508. source: "./media/characters/robin-phox/reshiram-front-nsfw.svg",
  57509. extra: 1198/940,
  57510. bottom: 123/1321
  57511. },
  57512. form: "reshiram",
  57513. },
  57514. reshiram_back: {
  57515. height: math.unit(10 + 6/12, "feet"),
  57516. weight: math.unit(727.5, "lb"),
  57517. name: "Back",
  57518. image: {
  57519. source: "./media/characters/robin-phox/reshiram-back.svg",
  57520. extra: 1024/904,
  57521. bottom: 85/1109
  57522. },
  57523. form: "reshiram",
  57524. },
  57525. samurott_front: {
  57526. height: math.unit(8, "feet"),
  57527. weight: math.unit(208.6, "lb"),
  57528. name: "Front",
  57529. image: {
  57530. source: "./media/characters/robin-phox/samurott-front.svg",
  57531. extra: 1048/984,
  57532. bottom: 100/1148
  57533. },
  57534. form: "samurott",
  57535. },
  57536. samurott_frontNsfw: {
  57537. height: math.unit(8, "feet"),
  57538. weight: math.unit(208.6, "lb"),
  57539. name: "Front-nsfw",
  57540. image: {
  57541. source: "./media/characters/robin-phox/samurott-front-nsfw.svg",
  57542. extra: 1048/984,
  57543. bottom: 100/1148
  57544. },
  57545. form: "samurott",
  57546. },
  57547. samurott_back: {
  57548. height: math.unit(8, "feet"),
  57549. weight: math.unit(208.6, "lb"),
  57550. name: "Back",
  57551. image: {
  57552. source: "./media/characters/robin-phox/samurott-back.svg",
  57553. extra: 1110/1042,
  57554. bottom: 12/1122
  57555. },
  57556. form: "samurott",
  57557. },
  57558. samurott_feral: {
  57559. height: math.unit(4 + 11/12, "feet"),
  57560. weight: math.unit(208.6, "lb"),
  57561. name: "Feral",
  57562. image: {
  57563. source: "./media/characters/robin-phox/samurott-feral.svg",
  57564. extra: 766/681,
  57565. bottom: 108/874
  57566. },
  57567. form: "samurott",
  57568. },
  57569. },
  57570. [
  57571. {
  57572. name: "Normal",
  57573. height: math.unit(2, "feet"),
  57574. default: true,
  57575. form: "snivy"
  57576. },
  57577. {
  57578. name: "Normal",
  57579. height: math.unit(6, "feet"),
  57580. default: true,
  57581. form: "yoshi"
  57582. },
  57583. {
  57584. name: "Normal",
  57585. height: math.unit(4 + 11/12, "feet"),
  57586. default: true,
  57587. form: "delphox"
  57588. },
  57589. {
  57590. name: "Normal",
  57591. height: math.unit(4 + 7/12, "feet"),
  57592. default: true,
  57593. form: "mienshao"
  57594. },
  57595. {
  57596. name: "Normal",
  57597. height: math.unit(6 + 3/12, "feet"),
  57598. default: true,
  57599. form: "inteleon"
  57600. },
  57601. {
  57602. name: "Normal",
  57603. height: math.unit(10 + 6/12, "feet"),
  57604. default: true,
  57605. form: "reshiram"
  57606. },
  57607. {
  57608. name: "Normal",
  57609. height: math.unit(8, "feet"),
  57610. default: true,
  57611. form: "samurott"
  57612. },
  57613. {
  57614. name: "Macro",
  57615. height: math.unit(500, "feet"),
  57616. allForms: true
  57617. },
  57618. {
  57619. name: "Mega Macro",
  57620. height: math.unit(10, "earths"),
  57621. allForms: true
  57622. },
  57623. {
  57624. name: "Giga Macro",
  57625. height: math.unit(1, "galaxy"),
  57626. allForms: true
  57627. },
  57628. {
  57629. name: "Godly Macro",
  57630. height: math.unit(1e10, "multiverses"),
  57631. allForms: true
  57632. },
  57633. ],
  57634. {
  57635. "snivy": {
  57636. name: "Snivy",
  57637. default: true
  57638. },
  57639. "yoshi": {
  57640. name: "Yoshi",
  57641. },
  57642. "delphox": {
  57643. name: "Delphox",
  57644. },
  57645. "mienshao": {
  57646. name: "Mienshao",
  57647. },
  57648. "inteleon": {
  57649. name: "Inteleon",
  57650. },
  57651. "reshiram": {
  57652. name: "Reshiram",
  57653. },
  57654. "samurott": {
  57655. name: "Samurott",
  57656. },
  57657. }
  57658. ))
  57659. characterMakers.push(() => makeCharacter(
  57660. { name: "Ash Leung", species: ["red-panda"], tags: ["anthro"] },
  57661. {
  57662. front: {
  57663. height: math.unit(4, "feet"),
  57664. name: "Front",
  57665. image: {
  57666. source: "./media/characters/ash-leung/front.svg",
  57667. extra: 1916/1792,
  57668. bottom: 50/1966
  57669. }
  57670. },
  57671. },
  57672. [
  57673. {
  57674. name: "Atomic",
  57675. height: math.unit(1, "angstrom")
  57676. },
  57677. {
  57678. name: "Microscopic",
  57679. height: math.unit(4000, "angstroms")
  57680. },
  57681. {
  57682. name: "Speck",
  57683. height: math.unit(1, "mm")
  57684. },
  57685. {
  57686. name: "Small",
  57687. height: math.unit(1, "inch")
  57688. },
  57689. {
  57690. name: "Normal",
  57691. height: math.unit(4, "feet"),
  57692. default: true
  57693. },
  57694. ]
  57695. ))
  57696. characterMakers.push(() => makeCharacter(
  57697. { name: "Carie", species: ["lucario"], tags: ["anthro"] },
  57698. {
  57699. frontDressed: {
  57700. height: math.unit(2.08, "meters"),
  57701. weight: math.unit(175, "lb"),
  57702. name: "Front (Dressed)",
  57703. image: {
  57704. source: "./media/characters/carie/front-dressed.svg",
  57705. extra: 456/417,
  57706. bottom: 7/463
  57707. }
  57708. },
  57709. backDressed: {
  57710. height: math.unit(2.08, "meters"),
  57711. weight: math.unit(175, "lb"),
  57712. name: "Back (Dressed)",
  57713. image: {
  57714. source: "./media/characters/carie/back-dressed.svg",
  57715. extra: 455/414,
  57716. bottom: 11/466
  57717. }
  57718. },
  57719. front: {
  57720. height: math.unit(2, "meters"),
  57721. weight: math.unit(175, "lb"),
  57722. name: "Front",
  57723. image: {
  57724. source: "./media/characters/carie/front.svg",
  57725. extra: 438/399,
  57726. bottom: 12/450
  57727. }
  57728. },
  57729. back: {
  57730. height: math.unit(2, "meters"),
  57731. weight: math.unit(175, "lb"),
  57732. name: "Back",
  57733. image: {
  57734. source: "./media/characters/carie/back.svg",
  57735. extra: 438/397,
  57736. bottom: 7/445
  57737. }
  57738. },
  57739. },
  57740. [
  57741. {
  57742. name: "Normal",
  57743. height: math.unit(2.08, "meters"),
  57744. default: true
  57745. },
  57746. {
  57747. name: "Macro",
  57748. height: math.unit(2.08e3, "meters")
  57749. },
  57750. {
  57751. name: "Mega Macro",
  57752. height: math.unit(2.08e6, "meters")
  57753. },
  57754. {
  57755. name: "Giga Macro",
  57756. height: math.unit(2.08e9, "meters")
  57757. },
  57758. {
  57759. name: "Tera Macro",
  57760. height: math.unit(2.08e12, "meters")
  57761. },
  57762. {
  57763. name: "Peta Macro",
  57764. height: math.unit(2.08e15, "meters")
  57765. },
  57766. {
  57767. name: "Exa Macro",
  57768. height: math.unit(2.08e18, "meters")
  57769. },
  57770. {
  57771. name: "Zetta Macro",
  57772. height: math.unit(2.08e21, "meters")
  57773. },
  57774. {
  57775. name: "Yotta Macro",
  57776. height: math.unit(2.08e24, "meters")
  57777. },
  57778. ]
  57779. ))
  57780. characterMakers.push(() => makeCharacter(
  57781. { name: "Sai Bree", species: ["sabertooth-tiger"], tags: ["anthro"] },
  57782. {
  57783. front: {
  57784. height: math.unit(5 + 2/12, "feet"),
  57785. weight: math.unit(120, "lb"),
  57786. name: "Front",
  57787. image: {
  57788. source: "./media/characters/sai-bree/front.svg",
  57789. extra: 1843/1702,
  57790. bottom: 91/1934
  57791. }
  57792. },
  57793. back: {
  57794. height: math.unit(5 + 2/12, "feet"),
  57795. weight: math.unit(120, "lb"),
  57796. name: "Back",
  57797. image: {
  57798. source: "./media/characters/sai-bree/back.svg",
  57799. extra: 1809/1637,
  57800. bottom: 56/1865
  57801. }
  57802. },
  57803. },
  57804. [
  57805. {
  57806. name: "Normal",
  57807. height: math.unit(5 + 2/12, "feet"),
  57808. default: true
  57809. },
  57810. {
  57811. name: "Macro",
  57812. height: math.unit(500, "feet")
  57813. },
  57814. ]
  57815. ))
  57816. characterMakers.push(() => makeCharacter(
  57817. { name: "Davwyn", species: ["dragon"], tags: ["feral"] },
  57818. {
  57819. side: {
  57820. height: math.unit(0.77, "meters"),
  57821. weight: math.unit(120, "lb"),
  57822. name: "Side",
  57823. image: {
  57824. source: "./media/characters/davwyn/side.svg",
  57825. extra: 1557/1225,
  57826. bottom: 131/1688
  57827. }
  57828. },
  57829. front: {
  57830. height: math.unit(0.835410, "meters"),
  57831. weight: math.unit(120, "lb"),
  57832. name: "Front",
  57833. image: {
  57834. source: "./media/characters/davwyn/front.svg",
  57835. extra: 870/843,
  57836. bottom: 175/1045
  57837. }
  57838. },
  57839. },
  57840. [
  57841. {
  57842. name: "Minidrake",
  57843. height: math.unit(0.77/4, "meters")
  57844. },
  57845. {
  57846. name: "Normal",
  57847. height: math.unit(0.77, "meters"),
  57848. default: true
  57849. },
  57850. ]
  57851. ))
  57852. characterMakers.push(() => makeCharacter(
  57853. { name: "Balans", species: ["dragon", "kangaroo"], tags: ["anthro"] },
  57854. {
  57855. front: {
  57856. height: math.unit(10 + 3/12, "feet"),
  57857. weight: math.unit(2857, "lb"),
  57858. name: "Front",
  57859. image: {
  57860. source: "./media/characters/balans/front.svg",
  57861. extra: 427/402,
  57862. bottom: 26/453
  57863. }
  57864. },
  57865. side: {
  57866. height: math.unit(10 + 3/12, "feet"),
  57867. weight: math.unit(2857, "lb"),
  57868. name: "Side",
  57869. image: {
  57870. source: "./media/characters/balans/side.svg",
  57871. extra: 397/371,
  57872. bottom: 17/414
  57873. }
  57874. },
  57875. back: {
  57876. height: math.unit(10 + 3/12, "feet"),
  57877. weight: math.unit(2857, "lb"),
  57878. name: "Back",
  57879. image: {
  57880. source: "./media/characters/balans/back.svg",
  57881. extra: 408/381,
  57882. bottom: 14/422
  57883. }
  57884. },
  57885. hand: {
  57886. height: math.unit(1.15, "feet"),
  57887. name: "Hand",
  57888. image: {
  57889. source: "./media/characters/balans/hand.svg"
  57890. }
  57891. },
  57892. footRest: {
  57893. height: math.unit(3.1, "feet"),
  57894. name: "Foot (Rest)",
  57895. image: {
  57896. source: "./media/characters/balans/foot-rest.svg"
  57897. }
  57898. },
  57899. footActive: {
  57900. height: math.unit(3.5, "feet"),
  57901. name: "Foot (Active)",
  57902. image: {
  57903. source: "./media/characters/balans/foot-active.svg"
  57904. }
  57905. },
  57906. },
  57907. [
  57908. {
  57909. name: "Normal",
  57910. height: math.unit(10 + 3/12, "feet"),
  57911. default: true
  57912. },
  57913. ]
  57914. ))
  57915. characterMakers.push(() => makeCharacter(
  57916. { name: "Eldkveikir", species: ["dragon"], tags: ["feral"] },
  57917. {
  57918. side: {
  57919. height: math.unit(9, "meters"),
  57920. weight: math.unit(114, "tonnes"),
  57921. name: "Side",
  57922. image: {
  57923. source: "./media/characters/eldkveikir/side.svg",
  57924. extra: 1927/338,
  57925. bottom: 42/1969
  57926. }
  57927. },
  57928. sitting: {
  57929. height: math.unit(13.4, "meters"),
  57930. weight: math.unit(114, "tonnes"),
  57931. name: "Sitting",
  57932. image: {
  57933. source: "./media/characters/eldkveikir/sitting.svg",
  57934. extra: 1108/963,
  57935. bottom: 610/1718
  57936. }
  57937. },
  57938. maw: {
  57939. height: math.unit(8.36, "meters"),
  57940. name: "Maw",
  57941. image: {
  57942. source: "./media/characters/eldkveikir/maw.svg"
  57943. }
  57944. },
  57945. hand: {
  57946. height: math.unit(4.84, "meters"),
  57947. name: "Hand",
  57948. image: {
  57949. source: "./media/characters/eldkveikir/hand.svg"
  57950. }
  57951. },
  57952. foot: {
  57953. height: math.unit(6.9, "meters"),
  57954. name: "Foot",
  57955. image: {
  57956. source: "./media/characters/eldkveikir/foot.svg"
  57957. }
  57958. },
  57959. genitals: {
  57960. height: math.unit(9.6, "meters"),
  57961. name: "Genitals",
  57962. image: {
  57963. source: "./media/characters/eldkveikir/genitals.svg"
  57964. }
  57965. },
  57966. },
  57967. [
  57968. {
  57969. name: "Normal",
  57970. height: math.unit(9, "meters"),
  57971. default: true
  57972. },
  57973. ]
  57974. ))
  57975. characterMakers.push(() => makeCharacter(
  57976. { name: "Arrow", species: ["wolf"], tags: ["anthro"] },
  57977. {
  57978. front: {
  57979. height: math.unit(14, "feet"),
  57980. weight: math.unit(4100, "lb"),
  57981. name: "Front",
  57982. image: {
  57983. source: "./media/characters/arrow/front.svg",
  57984. extra: 330/318,
  57985. bottom: 56/386
  57986. }
  57987. },
  57988. },
  57989. [
  57990. {
  57991. name: "Normal",
  57992. height: math.unit(14, "feet"),
  57993. default: true
  57994. },
  57995. {
  57996. name: "Minimacro",
  57997. height: math.unit(63, "feet")
  57998. },
  57999. {
  58000. name: "Macro",
  58001. height: math.unit(630, "feet")
  58002. },
  58003. {
  58004. name: "Megamacro",
  58005. height: math.unit(12600, "feet")
  58006. },
  58007. {
  58008. name: "Gigamacro",
  58009. height: math.unit(18000, "miles")
  58010. },
  58011. ]
  58012. ))
  58013. characterMakers.push(() => makeCharacter(
  58014. { name: "3YK-K0 Unit", species: ["synth"], tags: ["anthro"] },
  58015. {
  58016. front: {
  58017. height: math.unit(10, "feet"),
  58018. weight: math.unit(2.4, "tons"),
  58019. name: "Front",
  58020. image: {
  58021. source: "./media/characters/3yk-k0-unit/front.svg",
  58022. extra: 573/561,
  58023. bottom: 33/606
  58024. }
  58025. },
  58026. back: {
  58027. height: math.unit(10, "feet"),
  58028. weight: math.unit(2.4, "tons"),
  58029. name: "Back",
  58030. image: {
  58031. source: "./media/characters/3yk-k0-unit/back.svg",
  58032. extra: 614/573,
  58033. bottom: 32/646
  58034. }
  58035. },
  58036. maw: {
  58037. height: math.unit(2.15, "feet"),
  58038. name: "Maw",
  58039. image: {
  58040. source: "./media/characters/3yk-k0-unit/maw.svg"
  58041. }
  58042. },
  58043. },
  58044. [
  58045. {
  58046. name: "Normal",
  58047. height: math.unit(10, "feet"),
  58048. default: true
  58049. },
  58050. ]
  58051. ))
  58052. characterMakers.push(() => makeCharacter(
  58053. { name: "Nemo", species: ["dragon"], tags: ["anthro"] },
  58054. {
  58055. front: {
  58056. height: math.unit(8 + 8/12, "feet"),
  58057. name: "Front",
  58058. image: {
  58059. source: "./media/characters/nemo/front.svg",
  58060. extra: 1308/1217,
  58061. bottom: 57/1365
  58062. }
  58063. },
  58064. },
  58065. [
  58066. {
  58067. name: "Normal",
  58068. height: math.unit(8 + 8/12, "feet"),
  58069. default: true
  58070. },
  58071. ]
  58072. ))
  58073. characterMakers.push(() => makeCharacter(
  58074. { name: "Rexx", species: ["wolf"], tags: ["anthro"] },
  58075. {
  58076. front: {
  58077. height: math.unit(8, "feet"),
  58078. weight: math.unit(760, "lb"),
  58079. name: "Front",
  58080. image: {
  58081. source: "./media/characters/rexx/front.svg",
  58082. extra: 786/750,
  58083. bottom: 17/803
  58084. },
  58085. extraAttributes: {
  58086. "pawLength": {
  58087. name: "Paw Length",
  58088. power: 1,
  58089. type: "length",
  58090. base: math.unit(27, "inches")
  58091. },
  58092. }
  58093. },
  58094. },
  58095. [
  58096. {
  58097. name: "Micro",
  58098. height: math.unit(2, "inches")
  58099. },
  58100. {
  58101. name: "Normal",
  58102. height: math.unit(8, "feet"),
  58103. default: true
  58104. },
  58105. {
  58106. name: "Macro",
  58107. height: math.unit(150, "feet")
  58108. },
  58109. ]
  58110. ))
  58111. characterMakers.push(() => makeCharacter(
  58112. { name: "Draco", species: ["dragon"], tags: ["anthro"] },
  58113. {
  58114. front: {
  58115. height: math.unit(18, "feet"),
  58116. weight: math.unit(1975, "lb"),
  58117. name: "Front",
  58118. image: {
  58119. source: "./media/characters/draco/front.svg",
  58120. extra: 1325/1241,
  58121. bottom: 83/1408
  58122. }
  58123. },
  58124. back: {
  58125. height: math.unit(18, "feet"),
  58126. weight: math.unit(1975, "lb"),
  58127. name: "Back",
  58128. image: {
  58129. source: "./media/characters/draco/back.svg",
  58130. extra: 1332/1250,
  58131. bottom: 43/1375
  58132. }
  58133. },
  58134. dick: {
  58135. height: math.unit(7.5, "feet"),
  58136. name: "Dick",
  58137. image: {
  58138. source: "./media/characters/draco/dick.svg"
  58139. }
  58140. },
  58141. },
  58142. [
  58143. {
  58144. name: "Normal",
  58145. height: math.unit(18, "feet"),
  58146. default: true
  58147. },
  58148. ]
  58149. ))
  58150. characterMakers.push(() => makeCharacter(
  58151. { name: "Harriett", species: ["nedynvor"], tags: ["anthro"] },
  58152. {
  58153. front: {
  58154. height: math.unit(3.2, "meters"),
  58155. name: "Front",
  58156. image: {
  58157. source: "./media/characters/harriett/front.svg",
  58158. extra: 1966/1915,
  58159. bottom: 9/1975
  58160. }
  58161. },
  58162. },
  58163. [
  58164. {
  58165. name: "Normal",
  58166. height: math.unit(3.2, "meters"),
  58167. default: true
  58168. },
  58169. ]
  58170. ))
  58171. characterMakers.push(() => makeCharacter(
  58172. { name: "Serpentus", species: ["snake"], tags: ["anthro"] },
  58173. {
  58174. sitting: {
  58175. height: math.unit(0.8, "meter"),
  58176. name: "Sitting",
  58177. image: {
  58178. source: "./media/characters/serpentus/sitting.svg",
  58179. extra: 293/290,
  58180. bottom: 140/433
  58181. }
  58182. },
  58183. },
  58184. [
  58185. {
  58186. name: "Normal",
  58187. height: math.unit(0.8, "meter"),
  58188. default: true
  58189. },
  58190. ]
  58191. ))
  58192. characterMakers.push(() => makeCharacter(
  58193. { name: "Nova (Polecat)", species: ["marbled-polecat"], tags: ["anthro"] },
  58194. {
  58195. front: {
  58196. height: math.unit(5.7174385736, "feet"),
  58197. name: "Front",
  58198. image: {
  58199. source: "./media/characters/nova-polecat/front.svg",
  58200. extra: 1317/1216,
  58201. bottom: 92/1409
  58202. }
  58203. },
  58204. },
  58205. [
  58206. {
  58207. name: "Normal",
  58208. height: math.unit(5.7174385736, "feet"),
  58209. default: true
  58210. },
  58211. ]
  58212. ))
  58213. characterMakers.push(() => makeCharacter(
  58214. { name: "Mook", species: ["monkey", "ape"], tags: ["anthro"] },
  58215. {
  58216. front: {
  58217. height: math.unit(5 + 4/12, "feet"),
  58218. weight: math.unit(250, "lb"),
  58219. name: "Front",
  58220. image: {
  58221. source: "./media/characters/mook/front.svg",
  58222. extra: 1088/1037,
  58223. bottom: 132/1220
  58224. }
  58225. },
  58226. back: {
  58227. height: math.unit(5 + 1/12, "feet"),
  58228. weight: math.unit(250, "lb"),
  58229. name: "Back",
  58230. image: {
  58231. source: "./media/characters/mook/back.svg",
  58232. extra: 1184/905,
  58233. bottom: 96/1280
  58234. }
  58235. },
  58236. head: {
  58237. height: math.unit(1.85, "feet"),
  58238. name: "Head",
  58239. image: {
  58240. source: "./media/characters/mook/head.svg"
  58241. }
  58242. },
  58243. hand: {
  58244. height: math.unit(1.9, "feet"),
  58245. name: "Hand",
  58246. image: {
  58247. source: "./media/characters/mook/hand.svg"
  58248. }
  58249. },
  58250. palm: {
  58251. height: math.unit(1.84, "feet"),
  58252. name: "Palm",
  58253. image: {
  58254. source: "./media/characters/mook/palm.svg"
  58255. }
  58256. },
  58257. foot: {
  58258. height: math.unit(1.44, "feet"),
  58259. name: "Foot",
  58260. image: {
  58261. source: "./media/characters/mook/foot.svg"
  58262. }
  58263. },
  58264. sole: {
  58265. height: math.unit(1.44, "feet"),
  58266. name: "Sole",
  58267. image: {
  58268. source: "./media/characters/mook/sole.svg"
  58269. }
  58270. },
  58271. },
  58272. [
  58273. {
  58274. name: "Normal",
  58275. height: math.unit(5 + 4/12, "feet"),
  58276. default: true
  58277. },
  58278. {
  58279. name: "Big",
  58280. height: math.unit(12, "feet")
  58281. },
  58282. ]
  58283. ))
  58284. characterMakers.push(() => makeCharacter(
  58285. { name: "Kayla", species: ["human"], tags: ["anthro"] },
  58286. {
  58287. front: {
  58288. height: math.unit(6 + 10/12, "feet"),
  58289. weight: math.unit(233, "lb"),
  58290. name: "Front",
  58291. image: {
  58292. source: "./media/characters/kayla/front.svg",
  58293. extra: 1850/1775,
  58294. bottom: 65/1915
  58295. }
  58296. },
  58297. },
  58298. [
  58299. {
  58300. name: "Normal",
  58301. height: math.unit(6 + 10/12, "feet"),
  58302. default: true
  58303. },
  58304. {
  58305. name: "Amazonian",
  58306. height: math.unit(12 + 5/12, "feet")
  58307. },
  58308. {
  58309. name: "Mini Giantess",
  58310. height: math.unit(26, "feet")
  58311. },
  58312. {
  58313. name: "Giantess",
  58314. height: math.unit(200, "feet")
  58315. },
  58316. {
  58317. name: "Mega Giantess",
  58318. height: math.unit(2500, "feet")
  58319. },
  58320. {
  58321. name: "City Sized",
  58322. height: math.unit(50, "miles")
  58323. },
  58324. {
  58325. name: "Country Sized",
  58326. height: math.unit(500, "miles")
  58327. },
  58328. {
  58329. name: "Continent Sized",
  58330. height: math.unit(2500, "miles")
  58331. },
  58332. {
  58333. name: "Planet Sized",
  58334. height: math.unit(10000, "miles")
  58335. },
  58336. {
  58337. name: "Star Sized",
  58338. height: math.unit(5e6, "miles")
  58339. },
  58340. {
  58341. name: "Solar System Sized",
  58342. height: math.unit(125, "AU")
  58343. },
  58344. {
  58345. name: "Galaxy Sized",
  58346. height: math.unit(300e3, "lightyears")
  58347. },
  58348. {
  58349. name: "Universe Sized",
  58350. height: math.unit(200e9, "lightyears")
  58351. },
  58352. {
  58353. name: "Multiverse Sized",
  58354. height: math.unit(20, "exauniverses")
  58355. },
  58356. {
  58357. name: "Mother of Existence",
  58358. height: math.unit(1e6, "yottauniverses")
  58359. },
  58360. ]
  58361. ))
  58362. characterMakers.push(() => makeCharacter(
  58363. { name: "Kulve Ragnarok", species: ["kulve-taroth"], tags: ["taur"] },
  58364. {
  58365. side: {
  58366. height: math.unit(9.5, "meters"),
  58367. name: "Side",
  58368. image: {
  58369. source: "./media/characters/kulve-ragnarok/side.svg",
  58370. extra: 364/326,
  58371. bottom: 50/414
  58372. }
  58373. },
  58374. },
  58375. [
  58376. {
  58377. name: "Normal",
  58378. height: math.unit(9.5, "meters"),
  58379. default: true
  58380. },
  58381. ]
  58382. ))
  58383. characterMakers.push(() => makeCharacter(
  58384. { name: "Atlas (Goat)", species: ["goat"], tags: ["anthro"] },
  58385. {
  58386. front: {
  58387. height: math.unit(8 + 9/12, "feet"),
  58388. name: "Front",
  58389. image: {
  58390. source: "./media/characters/atlas-goat/front.svg",
  58391. extra: 1462/1323,
  58392. bottom: 12/1474
  58393. }
  58394. },
  58395. },
  58396. [
  58397. {
  58398. name: "Normal",
  58399. height: math.unit(8 + 9/12, "feet"),
  58400. default: true
  58401. },
  58402. {
  58403. name: "Skyline",
  58404. height: math.unit(845, "feet")
  58405. },
  58406. {
  58407. name: "Orbital",
  58408. height: math.unit(93000, "miles")
  58409. },
  58410. {
  58411. name: "Constellation",
  58412. height: math.unit(27000, "lightyears")
  58413. },
  58414. ]
  58415. ))
  58416. characterMakers.push(() => makeCharacter(
  58417. { name: "Xie Ling", species: ["irthos"], tags: ["anthro"] },
  58418. {
  58419. side: {
  58420. height: math.unit(1.8, "meters"),
  58421. weight: math.unit(120, "kg"),
  58422. name: "Side",
  58423. image: {
  58424. source: "./media/characters/xie-ling/side.svg",
  58425. extra: 646/574,
  58426. bottom: 44/690
  58427. }
  58428. },
  58429. },
  58430. [
  58431. {
  58432. name: "Tiny",
  58433. height: math.unit(1.80, "meters")
  58434. },
  58435. {
  58436. name: "Small",
  58437. height: math.unit(6, "meters")
  58438. },
  58439. {
  58440. name: "Medium",
  58441. height: math.unit(15, "meters")
  58442. },
  58443. {
  58444. name: "Normal",
  58445. height: math.unit(30, "meters"),
  58446. default: true
  58447. },
  58448. {
  58449. name: "Above Normal",
  58450. height: math.unit(60, "meters")
  58451. },
  58452. {
  58453. name: "Big",
  58454. height: math.unit(220, "meters")
  58455. },
  58456. {
  58457. name: "Giant",
  58458. height: math.unit(2.2, "km")
  58459. },
  58460. {
  58461. name: "Macro",
  58462. height: math.unit(25, "km")
  58463. },
  58464. {
  58465. name: "Mega Macro",
  58466. height: math.unit(350, "km")
  58467. },
  58468. {
  58469. name: "Mega Macro+",
  58470. height: math.unit(5000, "km")
  58471. },
  58472. {
  58473. name: "Goddess",
  58474. height: math.unit(3, "multiverses")
  58475. },
  58476. ]
  58477. ))
  58478. characterMakers.push(() => makeCharacter(
  58479. { name: "Sune Nemeruva", species: ["furred-dragon"], tags: ["anthro"] },
  58480. {
  58481. frontSfw: {
  58482. height: math.unit(5 + 11/12, "feet"),
  58483. weight: math.unit(210, "lb"),
  58484. name: "Front",
  58485. image: {
  58486. source: "./media/characters/sune-nemeruva/front-sfw.svg",
  58487. extra: 1928/1821,
  58488. bottom: 45/1973
  58489. }
  58490. },
  58491. backSfw: {
  58492. height: math.unit(5 + 11/12, "feet"),
  58493. weight: math.unit(210, "lb"),
  58494. name: "Back",
  58495. image: {
  58496. source: "./media/characters/sune-nemeruva/back-sfw.svg",
  58497. extra: 1920/1813,
  58498. bottom: 34/1954
  58499. }
  58500. },
  58501. frontNsfw: {
  58502. height: math.unit(5 + 11/12, "feet"),
  58503. weight: math.unit(210, "lb"),
  58504. name: "Front (NSFW)",
  58505. image: {
  58506. source: "./media/characters/sune-nemeruva/front-nsfw.svg",
  58507. extra: 1928/1821,
  58508. bottom: 45/1973
  58509. }
  58510. },
  58511. backNsfw: {
  58512. height: math.unit(5 + 11/12, "feet"),
  58513. weight: math.unit(210, "lb"),
  58514. name: "Back (NSFW)",
  58515. image: {
  58516. source: "./media/characters/sune-nemeruva/back-nsfw.svg",
  58517. extra: 1920/1813,
  58518. bottom: 34/1954
  58519. }
  58520. },
  58521. },
  58522. [
  58523. {
  58524. name: "Normal",
  58525. height: math.unit(5 + 11/12, "feet"),
  58526. default: true
  58527. },
  58528. {
  58529. name: "Goddess",
  58530. height: math.unit(20 + 3/12, "feet")
  58531. },
  58532. {
  58533. name: "Breaker of Man",
  58534. height: math.unit(329 + 9/12, "feet")
  58535. },
  58536. {
  58537. name: "Solar Justice",
  58538. height: math.unit(0.6, "solarradii")
  58539. },
  58540. {
  58541. name: "She Who Judges",
  58542. height: math.unit(1, "universe")
  58543. },
  58544. ]
  58545. ))
  58546. characterMakers.push(() => makeCharacter(
  58547. { name: "Managarmr", species: ["dragon", "deity"], tags: ["anthro"] },
  58548. {
  58549. casual_front: {
  58550. height: math.unit(6 + 1/12, "feet"),
  58551. weight: math.unit(190, "lb"),
  58552. preyCapacity: math.unit(1, "people"),
  58553. name: "Front",
  58554. image: {
  58555. source: "./media/characters/managarmr/casual-front.svg",
  58556. extra: 411/381,
  58557. bottom: 15/426
  58558. },
  58559. extraAttributes: {
  58560. "pawSize": {
  58561. name: "Paw Size",
  58562. power: 1,
  58563. type: "length",
  58564. base: math.unit(0.2, "meters")
  58565. },
  58566. },
  58567. form: "casual",
  58568. },
  58569. casual_back: {
  58570. height: math.unit(6 + 1/12, "feet"),
  58571. weight: math.unit(190, "lb"),
  58572. preyCapacity: math.unit(1, "people"),
  58573. name: "Back",
  58574. image: {
  58575. source: "./media/characters/managarmr/casual-back.svg",
  58576. extra: 413/383,
  58577. bottom: 13/426
  58578. },
  58579. extraAttributes: {
  58580. "pawSize": {
  58581. name: "Paw Size",
  58582. power: 1,
  58583. type: "length",
  58584. base: math.unit(0.2, "meters")
  58585. },
  58586. },
  58587. form: "casual",
  58588. },
  58589. base_front: {
  58590. height: math.unit(7, "feet"),
  58591. weight: math.unit(210, "lb"),
  58592. preyCapacity: math.unit(2, "people"),
  58593. name: "Front",
  58594. image: {
  58595. source: "./media/characters/managarmr/base-front.svg",
  58596. extra: 580/485,
  58597. bottom: 32/612
  58598. },
  58599. extraAttributes: {
  58600. "wingspan": {
  58601. name: "Wingspan",
  58602. power: 1,
  58603. type: "length",
  58604. base: math.unit(4, "meters")
  58605. },
  58606. "pawSize": {
  58607. name: "Paw Size",
  58608. power: 1,
  58609. type: "length",
  58610. base: math.unit(0.2, "meters")
  58611. },
  58612. },
  58613. form: "base",
  58614. },
  58615. "true-divine_front": {
  58616. height: math.unit(40, "feet"),
  58617. weight: math.unit(39000, "lb"),
  58618. preyCapacity: math.unit(375, "people"),
  58619. name: "Front",
  58620. image: {
  58621. source: "./media/characters/managarmr/true-divine-front.svg",
  58622. extra: 725/573,
  58623. bottom: 120/845
  58624. },
  58625. extraAttributes: {
  58626. "wingspan": {
  58627. name: "Wingspan",
  58628. power: 1,
  58629. type: "length",
  58630. base: math.unit(20, "meters")
  58631. },
  58632. "pawSize": {
  58633. name: "Paw Size",
  58634. power: 1,
  58635. type: "length",
  58636. base: math.unit(1.5, "meters")
  58637. },
  58638. },
  58639. form: "true-divine",
  58640. },
  58641. },
  58642. [
  58643. {
  58644. name: "Normal",
  58645. height: math.unit(6 + 1/12, "feet"),
  58646. form: "casual",
  58647. default: true
  58648. },
  58649. {
  58650. name: "Normal",
  58651. height: math.unit(7, "feet"),
  58652. form: "base",
  58653. default: true
  58654. },
  58655. ],
  58656. {
  58657. "casual": {
  58658. name: "Casual",
  58659. default: true
  58660. },
  58661. "base": {
  58662. name: "Base",
  58663. },
  58664. "true-divine": {
  58665. name: "True Divine",
  58666. },
  58667. }
  58668. ))
  58669. characterMakers.push(() => makeCharacter(
  58670. { name: "Mystra", species: ["sergal", "deity"], tags: ["anthro"] },
  58671. {
  58672. front: {
  58673. height: math.unit(1.8, "meters"),
  58674. weight: math.unit(110, "kg"),
  58675. name: "Front",
  58676. image: {
  58677. source: "./media/characters/mystra/front.svg",
  58678. extra: 529/442,
  58679. bottom: 31/560
  58680. }
  58681. },
  58682. frontLewd: {
  58683. height: math.unit(1.8, "meters"),
  58684. weight: math.unit(110, "kg"),
  58685. name: "Front (Lewd)",
  58686. image: {
  58687. source: "./media/characters/mystra/front-lewd.svg",
  58688. extra: 529/442,
  58689. bottom: 31/560
  58690. }
  58691. },
  58692. head: {
  58693. height: math.unit(1.63, "feet"),
  58694. name: "Head",
  58695. image: {
  58696. source: "./media/characters/mystra/head.svg"
  58697. }
  58698. },
  58699. paw: {
  58700. height: math.unit(1.9, "feet"),
  58701. name: "Paw",
  58702. image: {
  58703. source: "./media/characters/mystra/paw.svg"
  58704. }
  58705. },
  58706. },
  58707. [
  58708. {
  58709. name: "Incognito",
  58710. height: math.unit(2.3, "meters")
  58711. },
  58712. {
  58713. name: "Small Macro",
  58714. height: math.unit(300, "meters")
  58715. },
  58716. {
  58717. name: "Small Mega",
  58718. height: math.unit(2, "km")
  58719. },
  58720. {
  58721. name: "Mega",
  58722. height: math.unit(30, "km")
  58723. },
  58724. {
  58725. name: "Small Giga",
  58726. height: math.unit(100, "km")
  58727. },
  58728. {
  58729. name: "Giga",
  58730. height: math.unit(1000, "km"),
  58731. default: true
  58732. },
  58733. {
  58734. name: "Continental",
  58735. height: math.unit(5000, "km")
  58736. },
  58737. {
  58738. name: "Terra",
  58739. height: math.unit(20000, "km")
  58740. },
  58741. {
  58742. name: "Solar",
  58743. height: math.unit(2e6, "km")
  58744. },
  58745. {
  58746. name: "Galactic",
  58747. height: math.unit(528502, "lightyears")
  58748. },
  58749. {
  58750. name: "Universal",
  58751. height: math.unit(20, "universes")
  58752. },
  58753. ]
  58754. ))
  58755. characterMakers.push(() => makeCharacter(
  58756. { name: "Caleb", species: ["lion", "cobra", "dragon", "chimera", "deity"], tags: ["anthro"] },
  58757. {
  58758. front: {
  58759. height: math.unit(2, "meters"),
  58760. weight: math.unit(140, "kg"),
  58761. name: "Front",
  58762. image: {
  58763. source: "./media/characters/caleb/front.svg",
  58764. extra: 873/817,
  58765. bottom: 47/920
  58766. }
  58767. },
  58768. back: {
  58769. height: math.unit(2, "meters"),
  58770. weight: math.unit(140, "kg"),
  58771. name: "Back",
  58772. image: {
  58773. source: "./media/characters/caleb/back.svg",
  58774. extra: 877/828,
  58775. bottom: 24/901
  58776. }
  58777. },
  58778. snakeTail: {
  58779. height: math.unit(1.44, "feet"),
  58780. name: "Snake Tail",
  58781. image: {
  58782. source: "./media/characters/caleb/snake-tail.svg"
  58783. }
  58784. },
  58785. dick: {
  58786. height: math.unit(2.6, "feet"),
  58787. name: "Dick",
  58788. image: {
  58789. source: "./media/characters/caleb/dick.svg"
  58790. }
  58791. },
  58792. },
  58793. [
  58794. {
  58795. name: "Incognito",
  58796. height: math.unit(3, "meters")
  58797. },
  58798. {
  58799. name: "Home Size",
  58800. height: math.unit(200, "meters"),
  58801. default: true
  58802. },
  58803. {
  58804. name: "Macro",
  58805. height: math.unit(500, "meters")
  58806. },
  58807. {
  58808. name: "Big Macro",
  58809. height: math.unit(5, "km")
  58810. },
  58811. {
  58812. name: "Giga",
  58813. height: math.unit(250, "km")
  58814. },
  58815. {
  58816. name: "Giga+",
  58817. height: math.unit(5000, "km")
  58818. },
  58819. {
  58820. name: "Small Terra",
  58821. height: math.unit(35e3, "km")
  58822. },
  58823. {
  58824. name: "Terra",
  58825. height: math.unit(2e6, "km")
  58826. },
  58827. {
  58828. name: "Terra+",
  58829. height: math.unit(1.5e6, "km")
  58830. },
  58831. ]
  58832. ))
  58833. characterMakers.push(() => makeCharacter(
  58834. { name: "Gilirian", species: ["giraffe", "zebra", "deity"], tags: ["anthro"] },
  58835. {
  58836. front: {
  58837. height: math.unit(2, "meters"),
  58838. weight: math.unit(120, "kg"),
  58839. name: "Front",
  58840. image: {
  58841. source: "./media/characters/gilirian/front.svg",
  58842. extra: 805/737,
  58843. bottom: 13/818
  58844. }
  58845. },
  58846. side: {
  58847. height: math.unit(2, "meters"),
  58848. weight: math.unit(120, "kg"),
  58849. name: "Side",
  58850. image: {
  58851. source: "./media/characters/gilirian/side.svg",
  58852. extra: 810/746,
  58853. bottom: 6/816
  58854. }
  58855. },
  58856. back: {
  58857. height: math.unit(2, "meters"),
  58858. weight: math.unit(120, "kg"),
  58859. name: "Back",
  58860. image: {
  58861. source: "./media/characters/gilirian/back.svg",
  58862. extra: 815/745,
  58863. bottom: 15/830
  58864. }
  58865. },
  58866. frontNsfw: {
  58867. height: math.unit(2, "meters"),
  58868. weight: math.unit(120, "kg"),
  58869. name: "Front (NSFW)",
  58870. image: {
  58871. source: "./media/characters/gilirian/front-nsfw.svg",
  58872. extra: 805/737,
  58873. bottom: 13/818
  58874. }
  58875. },
  58876. sideNsfw: {
  58877. height: math.unit(2, "meters"),
  58878. weight: math.unit(120, "kg"),
  58879. name: "Side (NSFW)",
  58880. image: {
  58881. source: "./media/characters/gilirian/side-nsfw.svg",
  58882. extra: 810/746,
  58883. bottom: 6/816
  58884. }
  58885. },
  58886. },
  58887. [
  58888. {
  58889. name: "Incognito",
  58890. height: math.unit(2, "meters"),
  58891. default: true
  58892. },
  58893. {
  58894. name: "Macro",
  58895. height: math.unit(250, "meters")
  58896. },
  58897. {
  58898. name: "Big Macro",
  58899. height: math.unit(1500, "meters")
  58900. },
  58901. {
  58902. name: "Mega",
  58903. height: math.unit(40, "km")
  58904. },
  58905. {
  58906. name: "Giga",
  58907. height: math.unit(300, "km")
  58908. },
  58909. {
  58910. name: "Extra Giga",
  58911. height: math.unit(5000, "km")
  58912. },
  58913. {
  58914. name: "Small Terra",
  58915. height: math.unit(10e3, "km")
  58916. },
  58917. {
  58918. name: "Terra",
  58919. height: math.unit(3e5, "km")
  58920. },
  58921. {
  58922. name: "Galactic",
  58923. height: math.unit(369950, "lightyears")
  58924. },
  58925. ]
  58926. ))
  58927. characterMakers.push(() => makeCharacter(
  58928. { name: "Tarken", species: ["t-rex", "kaiju", "deity"], tags: ["anthro"] },
  58929. {
  58930. front: {
  58931. height: math.unit(2.5, "meters"),
  58932. weight: math.unit(230, "lb"),
  58933. name: "Front",
  58934. image: {
  58935. source: "./media/characters/tarken/front.svg",
  58936. extra: 764/720,
  58937. bottom: 49/813
  58938. }
  58939. },
  58940. back: {
  58941. height: math.unit(2.5, "meters"),
  58942. weight: math.unit(230, "lb"),
  58943. name: "Back",
  58944. image: {
  58945. source: "./media/characters/tarken/back.svg",
  58946. extra: 756/720,
  58947. bottom: 35/791
  58948. }
  58949. },
  58950. frontNsfw: {
  58951. height: math.unit(2.5, "meters"),
  58952. weight: math.unit(230, "lb"),
  58953. name: "Front (NSFW)",
  58954. image: {
  58955. source: "./media/characters/tarken/front-nsfw.svg",
  58956. extra: 764/720,
  58957. bottom: 49/813
  58958. }
  58959. },
  58960. backNsfw: {
  58961. height: math.unit(2.5, "meters"),
  58962. weight: math.unit(230, "lb"),
  58963. name: "Back (NSFW)",
  58964. image: {
  58965. source: "./media/characters/tarken/back-nsfw.svg",
  58966. extra: 756/720,
  58967. bottom: 35/791
  58968. }
  58969. },
  58970. head: {
  58971. height: math.unit(2.22, "feet"),
  58972. name: "Head",
  58973. image: {
  58974. source: "./media/characters/tarken/head.svg"
  58975. }
  58976. },
  58977. tail: {
  58978. height: math.unit(5.25, "feet"),
  58979. name: "Tail",
  58980. image: {
  58981. source: "./media/characters/tarken/tail.svg"
  58982. }
  58983. },
  58984. dick: {
  58985. height: math.unit(1.95, "feet"),
  58986. name: "Dick",
  58987. image: {
  58988. source: "./media/characters/tarken/dick.svg"
  58989. }
  58990. },
  58991. hand: {
  58992. height: math.unit(1.78, "feet"),
  58993. name: "Hand",
  58994. image: {
  58995. source: "./media/characters/tarken/hand.svg"
  58996. }
  58997. },
  58998. beam: {
  58999. height: math.unit(1.5, "feet"),
  59000. name: "Beam",
  59001. image: {
  59002. source: "./media/characters/tarken/beam.svg"
  59003. }
  59004. },
  59005. },
  59006. [
  59007. {
  59008. name: "Original Size",
  59009. height: math.unit(2.5, "meters")
  59010. },
  59011. {
  59012. name: "Macro",
  59013. height: math.unit(150, "meters"),
  59014. default: true
  59015. },
  59016. {
  59017. name: "Macro+",
  59018. height: math.unit(300, "meters")
  59019. },
  59020. {
  59021. name: "Mega",
  59022. height: math.unit(2, "km")
  59023. },
  59024. {
  59025. name: "Mega+",
  59026. height: math.unit(35, "km")
  59027. },
  59028.  {
  59029. name: "Mega++",
  59030. height: math.unit(60, "km")
  59031. },
  59032. {
  59033. name: "Giga",
  59034. height: math.unit(200, "km")
  59035. },
  59036. {
  59037. name: "Giga+",
  59038. height: math.unit(2500, "km")
  59039. },
  59040. {
  59041. name: "Giga++",
  59042. height: math.unit(6600, "km")
  59043. },
  59044. {
  59045. name: "Terra",
  59046. height: math.unit(20000, "km")
  59047. },
  59048. {
  59049. name: "Terra+",
  59050. height: math.unit(300000, "km")
  59051. },
  59052. ]
  59053. ))
  59054. characterMakers.push(() => makeCharacter(
  59055. { name: "Otreus", species: ["magpie", "hippogriff", "deity"], tags: ["anthro"] },
  59056. {
  59057. magpie_dressed: {
  59058. height: math.unit(1.7, "meters"),
  59059. weight: math.unit(70, "kg"),
  59060. name: "Dressed",
  59061. image: {
  59062. source: "./media/characters/otreus/magpie-dressed.svg",
  59063. extra: 691/672,
  59064. bottom: 116/807
  59065. },
  59066. form: "magpie",
  59067. default: true
  59068. },
  59069. magpie_nude: {
  59070. height: math.unit(1.7, "meters"),
  59071. weight: math.unit(70, "kg"),
  59072. name: "Nude",
  59073. image: {
  59074. source: "./media/characters/otreus/magpie-nude.svg",
  59075. extra: 691/672,
  59076. bottom: 116/807
  59077. },
  59078. form: "magpie",
  59079. },
  59080. magpie_dressedLewd: {
  59081. height: math.unit(1.7, "meters"),
  59082. weight: math.unit(70, "kg"),
  59083. name: "Dressed (Lewd)",
  59084. image: {
  59085. source: "./media/characters/otreus/magpie-dressed-lewd.svg",
  59086. extra: 691/672,
  59087. bottom: 116/807
  59088. },
  59089. form: "magpie",
  59090. },
  59091. magpie_nudeLewd: {
  59092. height: math.unit(1.7, "meters"),
  59093. weight: math.unit(70, "kg"),
  59094. name: "Nude (Lewd)",
  59095. image: {
  59096. source: "./media/characters/otreus/magpie-nude-lewd.svg",
  59097. extra: 691/672,
  59098. bottom: 116/807
  59099. },
  59100. form: "magpie",
  59101. },
  59102. magpie_leftFoot: {
  59103. height: math.unit(1.58, "feet"),
  59104. name: "Left Foot",
  59105. image: {
  59106. source: "./media/characters/otreus/magpie-left-foot.svg"
  59107. },
  59108. form: "magpie",
  59109. },
  59110. magpie_rightFoot: {
  59111. height: math.unit(1.58, "feet"),
  59112. name: "Right Foot",
  59113. image: {
  59114. source: "./media/characters/otreus/magpie-right-foot.svg"
  59115. },
  59116. form: "magpie",
  59117. },
  59118. magpie_wingspan: {
  59119. height: math.unit(2, "meters"),
  59120. weight: math.unit(70, "kg"),
  59121. name: "Wingspan",
  59122. image: {
  59123. source: "./media/characters/otreus/magpie-wingspan.svg"
  59124. },
  59125. extraAttributes: {
  59126. "wingspan": {
  59127. name: "Wingspan",
  59128. power: 1,
  59129. type: "length",
  59130. base: math.unit(3.35, "meters")
  59131. },
  59132. },
  59133. form: "magpie",
  59134. },
  59135. hippogriff_dressed: {
  59136. height: math.unit(1.7, "meters"),
  59137. weight: math.unit(70, "kg"),
  59138. name: "Dressed",
  59139. image: {
  59140. source: "./media/characters/otreus/hippogriff-dressed.svg",
  59141. extra: 710/689,
  59142. bottom: 67/777
  59143. },
  59144. form: "hippogriff",
  59145. default: true
  59146. },
  59147. hippogriff_nude: {
  59148. height: math.unit(1.7, "meters"),
  59149. weight: math.unit(70, "kg"),
  59150. name: "Nude",
  59151. image: {
  59152. source: "./media/characters/otreus/hippogriff-nude.svg",
  59153. extra: 710/689,
  59154. bottom: 67/777
  59155. },
  59156. form: "hippogriff",
  59157. },
  59158. hippogriff_dressedLewd: {
  59159. height: math.unit(1.7, "meters"),
  59160. weight: math.unit(70, "kg"),
  59161. name: "Dressed (Lewd)",
  59162. image: {
  59163. source: "./media/characters/otreus/hippogriff-dressed-lewd.svg",
  59164. extra: 710/689,
  59165. bottom: 67/777
  59166. },
  59167. form: "hippogriff",
  59168. },
  59169. hippogriff_nudeLewd: {
  59170. height: math.unit(1.7, "meters"),
  59171. weight: math.unit(70, "kg"),
  59172. name: "Nude (Lewd)",
  59173. image: {
  59174. source: "./media/characters/otreus/hippogriff-nude-lewd.svg",
  59175. extra: 710/689,
  59176. bottom: 67/777
  59177. },
  59178. form: "hippogriff",
  59179. },
  59180. },
  59181. [
  59182. {
  59183. name: "Original Size",
  59184. height: math.unit(1.7, "meters"),
  59185. allForms: true
  59186. },
  59187. {
  59188. name: "Incognito Size",
  59189. height: math.unit(2, "meters"),
  59190. allForms: true
  59191. },
  59192. {
  59193. name: "Mega",
  59194. height: math.unit(2, "km"),
  59195. allForms: true
  59196. },
  59197. {
  59198. name: "Mega+",
  59199. height: math.unit(40, "km"),
  59200. allForms: true
  59201. },
  59202. {
  59203. name: "Giga",
  59204. height: math.unit(250, "km"),
  59205. allForms: true
  59206. },
  59207. {
  59208. name: "Giga+",
  59209. height: math.unit(3000, "km"),
  59210. allForms: true
  59211. },
  59212. {
  59213. name: "Terra",
  59214. height: math.unit(20000, "km"),
  59215. allForms: true
  59216. },
  59217. {
  59218. name: "Solar (Home Size)",
  59219. height: math.unit(3e6, "km"),
  59220. allForms: true,
  59221. default: true
  59222. },
  59223. ],
  59224. {
  59225. "magpie": {
  59226. name: "Magpie",
  59227. default: true
  59228. },
  59229. "hippogriff": {
  59230. name: "Hippogriff",
  59231. },
  59232. }
  59233. ))
  59234. characterMakers.push(() => makeCharacter(
  59235. { name: "Thalia", species: ["flying-fox", "fox", "deity"], tags: ["anthro"] },
  59236. {
  59237. frontDressed: {
  59238. height: math.unit(1.8, "meters"),
  59239. weight: math.unit(90, "kg"),
  59240. name: "Front (Dressed)",
  59241. image: {
  59242. source: "./media/characters/thalia/front-dressed.svg",
  59243. extra: 478/402,
  59244. bottom: 55/533
  59245. }
  59246. },
  59247. backDressed: {
  59248. height: math.unit(1.8, "meters"),
  59249. weight: math.unit(90, "kg"),
  59250. name: "Back (Dressed)",
  59251. image: {
  59252. source: "./media/characters/thalia/back-dressed.svg",
  59253. extra: 500/424,
  59254. bottom: 15/515
  59255. }
  59256. },
  59257. frontNude: {
  59258. height: math.unit(1.8, "meters"),
  59259. weight: math.unit(90, "kg"),
  59260. name: "Front (Nude)",
  59261. image: {
  59262. source: "./media/characters/thalia/front-nude.svg",
  59263. extra: 478/402,
  59264. bottom: 55/533
  59265. }
  59266. },
  59267. backNude: {
  59268. height: math.unit(1.8, "meters"),
  59269. weight: math.unit(90, "kg"),
  59270. name: "Back (Nude)",
  59271. image: {
  59272. source: "./media/characters/thalia/back-nude.svg",
  59273. extra: 500/424,
  59274. bottom: 15/515
  59275. }
  59276. },
  59277. },
  59278. [
  59279. {
  59280. name: "Incognito",
  59281. height: math.unit(3, "meters")
  59282. },
  59283. {
  59284. name: "Macro",
  59285. height: math.unit(500, "meters")
  59286. },
  59287. {
  59288. name: "Mega",
  59289. height: math.unit(5, "km")
  59290. },
  59291. {
  59292. name: "Mega+",
  59293. height: math.unit(30, "km")
  59294. },
  59295. {
  59296. name: "Giga",
  59297. height: math.unit(350, "km")
  59298. },
  59299. {
  59300. name: "Giga+",
  59301. height: math.unit(4000, "km")
  59302. },
  59303. {
  59304. name: "Terra",
  59305. height: math.unit(35000, "km")
  59306. },
  59307. {
  59308. name: "Original Size",
  59309. height: math.unit(130000, "km")
  59310. },
  59311. {
  59312. name: "Solar (Home Size)",
  59313. height: math.unit(4e6, "km"),
  59314. default: true
  59315. },
  59316. ]
  59317. ))
  59318. characterMakers.push(() => makeCharacter(
  59319. { name: "Shango", species: ["african-wild-dog", "deity"], tags: ["anthro"] },
  59320. {
  59321. front: {
  59322. height: math.unit(1.8, "meters"),
  59323. weight: math.unit(95, "kg"),
  59324. name: "Front",
  59325. image: {
  59326. source: "./media/characters/shango/front.svg",
  59327. extra: 1925/1774,
  59328. bottom: 67/1992
  59329. }
  59330. },
  59331. back: {
  59332. height: math.unit(1.8, "meters"),
  59333. weight: math.unit(95, "kg"),
  59334. name: "Back",
  59335. image: {
  59336. source: "./media/characters/shango/back.svg",
  59337. extra: 1915/1766,
  59338. bottom: 52/1967
  59339. }
  59340. },
  59341. frontLewd: {
  59342. height: math.unit(1.8, "meters"),
  59343. weight: math.unit(95, "kg"),
  59344. name: "Front (Lewd)",
  59345. image: {
  59346. source: "./media/characters/shango/front-lewd.svg",
  59347. extra: 1925/1774,
  59348. bottom: 67/1992
  59349. }
  59350. },
  59351. backLewd: {
  59352. height: math.unit(1.8, "meters"),
  59353. weight: math.unit(95, "kg"),
  59354. name: "Back (Lewd)",
  59355. image: {
  59356. source: "./media/characters/shango/back-lewd.svg",
  59357. extra: 1915/1766,
  59358. bottom: 52/1967
  59359. }
  59360. },
  59361. maw: {
  59362. height: math.unit(1.64, "feet"),
  59363. name: "Maw",
  59364. image: {
  59365. source: "./media/characters/shango/maw.svg"
  59366. }
  59367. },
  59368. dick: {
  59369. height: math.unit(2.14, "feet"),
  59370. name: "Dick",
  59371. image: {
  59372. source: "./media/characters/shango/dick.svg"
  59373. }
  59374. },
  59375. },
  59376. [
  59377. {
  59378. name: "Incognito",
  59379. height: math.unit(1.8, "meters")
  59380. },
  59381. {
  59382. name: "Home Size",
  59383. height: math.unit(60, "meters"),
  59384. default: true
  59385. },
  59386. {
  59387. name: "Macro",
  59388. height: math.unit(450, "meters")
  59389. },
  59390. {
  59391. name: "Mega",
  59392. height: math.unit(6, "km")
  59393. },
  59394. {
  59395. name: "Mega+",
  59396. height: math.unit(35, "km")
  59397. },
  59398. {
  59399. name: "Giga",
  59400. height: math.unit(500, "km")
  59401. },
  59402. {
  59403. name: "Giga+",
  59404. height: math.unit(5000, "km")
  59405. },
  59406. {
  59407. name: "Terra",
  59408. height: math.unit(60000, "km")
  59409. },
  59410. {
  59411. name: "Terra+",
  59412. height: math.unit(400000, "km")
  59413. },
  59414. ]
  59415. ))
  59416. characterMakers.push(() => makeCharacter(
  59417. { name: "Osiris (Gryphon)", species: ["gryphon", "snow-leopard", "peregrine-falcon", "deity"], tags: ["anthro"] },
  59418. {
  59419. front: {
  59420. height: math.unit(2, "meters"),
  59421. weight: math.unit(95, "kg"),
  59422. name: "Front",
  59423. image: {
  59424. source: "./media/characters/osiris-gryphon/front.svg",
  59425. extra: 1508/1313,
  59426. bottom: 87/1595
  59427. }
  59428. },
  59429. back: {
  59430. height: math.unit(2, "meters"),
  59431. weight: math.unit(95, "kg"),
  59432. name: "Back",
  59433. image: {
  59434. source: "./media/characters/osiris-gryphon/back.svg",
  59435. extra: 1436/1309,
  59436. bottom: 64/1500
  59437. }
  59438. },
  59439. frontLewd: {
  59440. height: math.unit(2, "meters"),
  59441. weight: math.unit(95, "kg"),
  59442. name: "Front-lewd",
  59443. image: {
  59444. source: "./media/characters/osiris-gryphon/front-lewd.svg",
  59445. extra: 1508/1313,
  59446. bottom: 87/1595
  59447. }
  59448. },
  59449. wing: {
  59450. height: math.unit(6.3333, "feet"),
  59451. name: "Wing",
  59452. image: {
  59453. source: "./media/characters/osiris-gryphon/wing.svg"
  59454. }
  59455. },
  59456. },
  59457. [
  59458. {
  59459. name: "Incognito",
  59460. height: math.unit(2, "meters")
  59461. },
  59462. {
  59463. name: "Home Size",
  59464. height: math.unit(30, "meters"),
  59465. default: true
  59466. },
  59467. {
  59468. name: "Macro",
  59469. height: math.unit(100, "meters")
  59470. },
  59471. {
  59472. name: "Macro+",
  59473. height: math.unit(350, "meters")
  59474. },
  59475. {
  59476. name: "Mega",
  59477. height: math.unit(40, "km")
  59478. },
  59479. {
  59480. name: "Giga",
  59481. height: math.unit(300, "km")
  59482. },
  59483. {
  59484. name: "Giga+",
  59485. height: math.unit(2000, "km")
  59486. },
  59487. {
  59488. name: "Terra",
  59489. height: math.unit(30000, "km")
  59490. },
  59491. ]
  59492. ))
  59493. characterMakers.push(() => makeCharacter(
  59494. { name: "Atlas (Dragon)", species: ["dragon", "deity"], tags: ["anthro"] },
  59495. {
  59496. front: {
  59497. height: math.unit(2.5, "meters"),
  59498. weight: math.unit(200, "kg"),
  59499. name: "Front",
  59500. image: {
  59501. source: "./media/characters/atlas-dragon/front.svg",
  59502. extra: 745/462,
  59503. bottom: 36/781
  59504. }
  59505. },
  59506. back: {
  59507. height: math.unit(2.5, "meters"),
  59508. weight: math.unit(200, "kg"),
  59509. name: "Back",
  59510. image: {
  59511. source: "./media/characters/atlas-dragon/back.svg",
  59512. extra: 848/822,
  59513. bottom: 57/905
  59514. }
  59515. },
  59516. frontLewd: {
  59517. height: math.unit(2.5, "meters"),
  59518. weight: math.unit(200, "kg"),
  59519. name: "Front (Lewd)",
  59520. image: {
  59521. source: "./media/characters/atlas-dragon/front-lewd.svg",
  59522. extra: 745/462,
  59523. bottom: 36/781
  59524. }
  59525. },
  59526. backLewd: {
  59527. height: math.unit(2.5, "meters"),
  59528. weight: math.unit(200, "kg"),
  59529. name: "Back (Lewd)",
  59530. image: {
  59531. source: "./media/characters/atlas-dragon/back-lewd.svg",
  59532. extra: 848/822,
  59533. bottom: 57/905
  59534. }
  59535. },
  59536. },
  59537. [
  59538. {
  59539. name: "Incognito",
  59540. height: math.unit(2.5, "meters")
  59541. },
  59542. {
  59543. name: "Small Macro",
  59544. height: math.unit(50, "meters")
  59545. },
  59546. {
  59547. name: "Macro",
  59548. height: math.unit(350, "meters")
  59549. },
  59550. {
  59551. name: "Mega",
  59552. height: math.unit(5.5, "kilometers")
  59553. },
  59554. {
  59555. name: "Mega+",
  59556. height: math.unit(50, "km")
  59557. },
  59558. {
  59559. name: "Giga",
  59560. height: math.unit(350, "km")
  59561. },
  59562. {
  59563. name: "Giga+",
  59564. height: math.unit(2000, "km")
  59565. },
  59566. {
  59567. name: "Giga++",
  59568. height: math.unit(6500, "km")
  59569. },
  59570. {
  59571. name: "Terra",
  59572. height: math.unit(30000, "km")
  59573. },
  59574. {
  59575. name: "Terra+",
  59576. height: math.unit(250000, "km")
  59577. },
  59578. {
  59579. name: "True Size",
  59580. height: math.unit(100, "multiverses"),
  59581. default: true
  59582. },
  59583. ]
  59584. ))
  59585. characterMakers.push(() => makeCharacter(
  59586. { name: "Chey", species: ["coyote", "deity"], tags: ["anthro"] },
  59587. {
  59588. front: {
  59589. height: math.unit(1.8, "m"),
  59590. weight: math.unit(120, "kg"),
  59591. name: "Front",
  59592. image: {
  59593. source: "./media/characters/chey/front.svg",
  59594. extra: 1359/1270,
  59595. bottom: 18/1377
  59596. }
  59597. },
  59598. arm: {
  59599. height: math.unit(2.05, "feet"),
  59600. name: "Arm",
  59601. image: {
  59602. source: "./media/characters/chey/arm.svg"
  59603. }
  59604. },
  59605. head: {
  59606. height: math.unit(1.89, "feet"),
  59607. name: "Head",
  59608. image: {
  59609. source: "./media/characters/chey/head.svg"
  59610. }
  59611. },
  59612. },
  59613. [
  59614. {
  59615. name: "Original Size",
  59616. height: math.unit(5, "cm")
  59617. },
  59618. {
  59619. name: "Incognito Size",
  59620. height: math.unit(2.4, "m")
  59621. },
  59622. {
  59623. name: "Home Size",
  59624. height: math.unit(200, "meters"),
  59625. default: true
  59626. },
  59627. {
  59628. name: "Mega",
  59629. height: math.unit(2, "km")
  59630. },
  59631. {
  59632. name: "Giga (Preferred Size)",
  59633. height: math.unit(2000, "km")
  59634. },
  59635. {
  59636. name: "Giga+",
  59637. height: math.unit(6000, "km")
  59638. },
  59639. {
  59640. name: "Terra",
  59641. height: math.unit(17000, "km")
  59642. },
  59643. {
  59644. name: "Terra+",
  59645. height: math.unit(75000, "km")
  59646. },
  59647. {
  59648. name: "Terra++",
  59649. height: math.unit(225000, "km")
  59650. },
  59651. ]
  59652. ))
  59653. characterMakers.push(() => makeCharacter(
  59654. { name: "Ragnarok", species: ["suicune"], tags: ["taur"] },
  59655. {
  59656. side: {
  59657. height: math.unit(7.8, "meters"),
  59658. name: "Side",
  59659. image: {
  59660. source: "./media/characters/ragnarok/side.svg",
  59661. extra: 725/621,
  59662. bottom: 72/797
  59663. }
  59664. },
  59665. },
  59666. [
  59667. {
  59668. name: "Normal",
  59669. height: math.unit(7.8, "meters"),
  59670. default: true
  59671. },
  59672. ]
  59673. ))
  59674. characterMakers.push(() => makeCharacter(
  59675. { name: "Nima", species: ["hyena", "shark", "deity"], tags: ["anthro"] },
  59676. {
  59677. hyena_front: {
  59678. height: math.unit(2.1, "meters"),
  59679. weight: math.unit(110, "kg"),
  59680. name: "Front",
  59681. image: {
  59682. source: "./media/characters/nima/hyena-front.svg",
  59683. extra: 1904/1796,
  59684. bottom: 67/1971
  59685. },
  59686. form: "hyena",
  59687. },
  59688. hyena_back: {
  59689. height: math.unit(2.1, "meters"),
  59690. weight: math.unit(110, "kg"),
  59691. name: "Back",
  59692. image: {
  59693. source: "./media/characters/nima/hyena-back.svg",
  59694. extra: 1964/1884,
  59695. bottom: 35/1999
  59696. },
  59697. form: "hyena",
  59698. },
  59699. shark_front: {
  59700. height: math.unit(1.95, "meters"),
  59701. weight: math.unit(110, "kg"),
  59702. name: "Front",
  59703. image: {
  59704. source: "./media/characters/nima/shark-front.svg",
  59705. extra: 2238/2013,
  59706. bottom: 0/223
  59707. },
  59708. form: "shark",
  59709. },
  59710. paw: {
  59711. height: math.unit(1, "feet"),
  59712. name: "Paw",
  59713. image: {
  59714. source: "./media/characters/nima/paw.svg"
  59715. }
  59716. },
  59717. circlet: {
  59718. height: math.unit(0.3, "feet"),
  59719. name: "Circlet",
  59720. image: {
  59721. source: "./media/characters/nima/circlet.svg"
  59722. }
  59723. },
  59724. necklace: {
  59725. height: math.unit(1.2, "feet"),
  59726. name: "Necklace",
  59727. image: {
  59728. source: "./media/characters/nima/necklace.svg"
  59729. }
  59730. },
  59731. bracelet: {
  59732. height: math.unit(0.51, "feet"),
  59733. name: "Bracelet",
  59734. image: {
  59735. source: "./media/characters/nima/bracelet.svg"
  59736. }
  59737. },
  59738. armband: {
  59739. height: math.unit(1.3, "feet"),
  59740. name: "Armband",
  59741. image: {
  59742. source: "./media/characters/nima/armband.svg"
  59743. }
  59744. },
  59745. },
  59746. [
  59747. {
  59748. name: "Incognito",
  59749. height: math.unit(2.1, "meters"),
  59750. allForms: true
  59751. },
  59752. {
  59753. name: "Small Macro",
  59754. height: math.unit(50, "meters"),
  59755. allForms: true
  59756. },
  59757. {
  59758. name: "Macro",
  59759. height: math.unit(200, "meters"),
  59760. allForms: true
  59761. },
  59762. {
  59763. name: "Mega",
  59764. height: math.unit(2.5, "km"),
  59765. allForms: true
  59766. },
  59767. {
  59768. name: "Mega+",
  59769. height: math.unit(30, "km"),
  59770. allForms: true
  59771. },
  59772. {
  59773. name: "Giga (Home Size)",
  59774. height: math.unit(400, "km"),
  59775. allForms: true,
  59776. default: true
  59777. },
  59778. {
  59779. name: "Giga+",
  59780. height: math.unit(2500, "km"),
  59781. allForms: true
  59782. },
  59783. {
  59784. name: "Giga++",
  59785. height: math.unit(8000, "km"),
  59786. allForms: true
  59787. },
  59788. {
  59789. name: "Terra",
  59790. height: math.unit(20000, "km"),
  59791. allForms: true
  59792. },
  59793. {
  59794. name: "Terra+",
  59795. height: math.unit(70000, "km"),
  59796. allForms: true
  59797. },
  59798. {
  59799. name: "Terra++",
  59800. height: math.unit(600000, "km"),
  59801. allForms: true
  59802. },
  59803. {
  59804. name: "Galactic",
  59805. height: math.unit(40, "galaxies"),
  59806. allForms: true
  59807. },
  59808. {
  59809. name: "Universal",
  59810. height: math.unit(40, "universes"),
  59811. allForms: true
  59812. },
  59813. ],
  59814. {
  59815. "hyena": {
  59816. name: "Hyena",
  59817. default: true
  59818. },
  59819. "shark": {
  59820. name: "Shark",
  59821. },
  59822. }
  59823. ))
  59824. characterMakers.push(() => makeCharacter(
  59825. { name: "Adelaide", species: ["deinonychus"], tags: ["anthro", "feral"] },
  59826. {
  59827. anthro_front: {
  59828. height: math.unit(1.5, "meters"),
  59829. name: "Front",
  59830. image: {
  59831. source: "./media/characters/adelaide/anthro-front.svg",
  59832. extra: 860/783,
  59833. bottom: 60/920
  59834. },
  59835. form: "anthro",
  59836. default: true
  59837. },
  59838. hand: {
  59839. height: math.unit(0.65, "feet"),
  59840. name: "Hand",
  59841. image: {
  59842. source: "./media/characters/adelaide/hand.svg"
  59843. },
  59844. form: "anthro"
  59845. },
  59846. foot: {
  59847. height: math.unit(1.38 * 259 / 314, "feet"),
  59848. name: "Foot",
  59849. image: {
  59850. source: "./media/characters/adelaide/foot.svg",
  59851. extra: 259/259,
  59852. bottom: 55/314
  59853. },
  59854. form: "anthro"
  59855. },
  59856. feather: {
  59857. height: math.unit(0.85, "feet"),
  59858. name: "Feather",
  59859. image: {
  59860. source: "./media/characters/adelaide/feather.svg"
  59861. },
  59862. form: "anthro"
  59863. },
  59864. feral_side: {
  59865. height: math.unit(1, "meters"),
  59866. name: "Side",
  59867. image: {
  59868. source: "./media/characters/adelaide/feral-side.svg",
  59869. extra: 550/467,
  59870. bottom: 37/587
  59871. },
  59872. form: "feral",
  59873. default: true
  59874. },
  59875. feral_hand: {
  59876. height: math.unit(0.58, "feet"),
  59877. name: "Hand",
  59878. image: {
  59879. source: "./media/characters/adelaide/hand.svg"
  59880. },
  59881. form: "feral"
  59882. },
  59883. feral_foot: {
  59884. height: math.unit(1.2 * 259 / 314, "feet"),
  59885. name: "Foot",
  59886. image: {
  59887. source: "./media/characters/adelaide/foot.svg",
  59888. extra: 259/259,
  59889. bottom: 55/314
  59890. },
  59891. form: "feral"
  59892. },
  59893. feral_feather: {
  59894. height: math.unit(0.63, "feet"),
  59895. name: "Feather",
  59896. image: {
  59897. source: "./media/characters/adelaide/feather.svg"
  59898. },
  59899. form: "feral"
  59900. },
  59901. },
  59902. [
  59903. {
  59904. name: "Normal",
  59905. height: math.unit(1.5, "meters"),
  59906. form: "anthro",
  59907. default: true
  59908. },
  59909. {
  59910. name: "Normal",
  59911. height: math.unit(1, "meters"),
  59912. form: "feral",
  59913. default: true
  59914. },
  59915. ],
  59916. {
  59917. "anthro": {
  59918. name: "Anthro",
  59919. default: true
  59920. },
  59921. "feral": {
  59922. name: "Feral",
  59923. },
  59924. }
  59925. ))
  59926. characterMakers.push(() => makeCharacter(
  59927. { name: "Goa", species: ["chocobo"], tags: ["taur"] },
  59928. {
  59929. front: {
  59930. height: math.unit(2.5, "meters"),
  59931. name: "Front",
  59932. image: {
  59933. source: "./media/characters/goa/front.svg",
  59934. extra: 1109/1013,
  59935. bottom: 150/1259
  59936. }
  59937. },
  59938. },
  59939. [
  59940. {
  59941. name: "Normal",
  59942. height: math.unit(2.5, "meters"),
  59943. default: true
  59944. },
  59945. ]
  59946. ))
  59947. characterMakers.push(() => makeCharacter(
  59948. { name: "Kiki (Weavile)", species: ["weavile"], tags: ["anthro"] },
  59949. {
  59950. front: {
  59951. height: math.unit(2, "meters"),
  59952. weight: math.unit(100, "kg"),
  59953. name: "Front",
  59954. image: {
  59955. source: "./media/characters/kiki-weavile/front.svg",
  59956. extra: 357/332,
  59957. bottom: 60/417
  59958. }
  59959. },
  59960. },
  59961. [
  59962. {
  59963. name: "Normal",
  59964. height: math.unit(2, "meters"),
  59965. default: true
  59966. },
  59967. ]
  59968. ))
  59969. characterMakers.push(() => makeCharacter(
  59970. { name: "Liza", species: ["stilio"], tags: ["taur"] },
  59971. {
  59972. side: {
  59973. height: math.unit(1.6, "meters"),
  59974. name: "Side",
  59975. image: {
  59976. source: "./media/characters/liza/side.svg",
  59977. extra: 943/915,
  59978. bottom: 72/1015
  59979. }
  59980. },
  59981. },
  59982. [
  59983. {
  59984. name: "Normal",
  59985. height: math.unit(1.6, "meters"),
  59986. default: true
  59987. },
  59988. ]
  59989. ))
  59990. characterMakers.push(() => makeCharacter(
  59991. { name: "Persephone Sweetbreath", species: ["hyena", "gnoll"], tags: ["taur"] },
  59992. {
  59993. side: {
  59994. height: math.unit(2.5, "meters"),
  59995. preyCapacity: math.unit(1, "people"),
  59996. name: "Side",
  59997. image: {
  59998. source: "./media/characters/persephone-sweetbreath/side.svg",
  59999. extra: 796/700,
  60000. bottom: 44/840
  60001. }
  60002. },
  60003. sideVore: {
  60004. height: math.unit(2.5, "meters"),
  60005. preyCapacity: math.unit(1, "people"),
  60006. name: "Side (Full)",
  60007. image: {
  60008. source: "./media/characters/persephone-sweetbreath/side-vore.svg",
  60009. extra: 796/700,
  60010. bottom: 44/840
  60011. }
  60012. },
  60013. },
  60014. [
  60015. {
  60016. name: "Normal",
  60017. height: math.unit(2.5, "meters"),
  60018. default: true
  60019. },
  60020. ]
  60021. ))
  60022. characterMakers.push(() => makeCharacter(
  60023. { name: "Pierce", species: ["dragon"], tags: ["feral"] },
  60024. {
  60025. front: {
  60026. height: math.unit(32, "meters"),
  60027. name: "Front",
  60028. image: {
  60029. source: "./media/characters/pierce/front.svg",
  60030. extra: 1695/1475,
  60031. bottom: 185/1880
  60032. }
  60033. },
  60034. side: {
  60035. height: math.unit(32, "meters"),
  60036. name: "Side",
  60037. image: {
  60038. source: "./media/characters/pierce/side.svg",
  60039. extra: 974/859,
  60040. bottom: 43/1017
  60041. }
  60042. },
  60043. frontWingless: {
  60044. height: math.unit(32, "meters"),
  60045. name: "Front (Wingless)",
  60046. image: {
  60047. source: "./media/characters/pierce/front-wingless.svg",
  60048. extra: 1695/1475,
  60049. bottom: 185/1880
  60050. }
  60051. },
  60052. sideWingless: {
  60053. height: math.unit(32, "meters"),
  60054. name: "Side (Wingless)",
  60055. image: {
  60056. source: "./media/characters/pierce/side-wingless.svg",
  60057. extra: 974/859,
  60058. bottom: 43/1017
  60059. }
  60060. },
  60061. maw: {
  60062. height: math.unit(19.3, "meters"),
  60063. name: "Maw",
  60064. image: {
  60065. source: "./media/characters/pierce/maw.svg"
  60066. }
  60067. },
  60068. },
  60069. [
  60070. {
  60071. name: "Small",
  60072. height: math.unit(8.5, "meters")
  60073. },
  60074. {
  60075. name: "Normal",
  60076. height: math.unit(32, "meters"),
  60077. default: true
  60078. },
  60079. ]
  60080. ))
  60081. characterMakers.push(() => makeCharacter(
  60082. { name: "Shira", species: ["cobra", "deity", "dragon"], tags: ["anthro"] },
  60083. {
  60084. front: {
  60085. height: math.unit(2.3, "meters"),
  60086. weight: math.unit(165, "kg"),
  60087. name: "Front",
  60088. image: {
  60089. source: "./media/characters/shira/front.svg",
  60090. extra: 924/919,
  60091. bottom: 17/941
  60092. },
  60093. form: "cobra",
  60094. default: true
  60095. },
  60096. back: {
  60097. height: math.unit(2.3, "meters"),
  60098. weight: math.unit(165, "kg"),
  60099. name: "Back",
  60100. image: {
  60101. source: "./media/characters/shira/back.svg",
  60102. extra: 928/922,
  60103. bottom: 18/946
  60104. },
  60105. form: "cobra"
  60106. },
  60107. frontLewd: {
  60108. height: math.unit(2.3, "meters"),
  60109. weight: math.unit(165, "kg"),
  60110. name: "Front (Lewd)",
  60111. image: {
  60112. source: "./media/characters/shira/front-lewd.svg",
  60113. extra: 924/919,
  60114. bottom: 17/941
  60115. },
  60116. form: "cobra"
  60117. },
  60118. backLewd: {
  60119. height: math.unit(2.3, "meters"),
  60120. weight: math.unit(165, "kg"),
  60121. name: "Back (Lewd)",
  60122. image: {
  60123. source: "./media/characters/shira/back-lewd.svg",
  60124. extra: 928/922,
  60125. bottom: 18/946
  60126. },
  60127. form: "cobra"
  60128. },
  60129. maw: {
  60130. height: math.unit(1.14, "feet"),
  60131. name: "Maw",
  60132. image: {
  60133. source: "./media/characters/shira/maw.svg"
  60134. },
  60135. form: "cobra"
  60136. },
  60137. magma_front: {
  60138. height: math.unit(2.3, "meters"),
  60139. weight: math.unit(165, "kg"),
  60140. name: "Front",
  60141. image: {
  60142. source: "./media/characters/shira/magma-front.svg",
  60143. extra: 1870/1693,
  60144. bottom: 24/1894
  60145. },
  60146. form: "magma",
  60147. },
  60148. magma_back: {
  60149. height: math.unit(2.3, "meters"),
  60150. weight: math.unit(165, "kg"),
  60151. name: "Back",
  60152. image: {
  60153. source: "./media/characters/shira/magma-back.svg",
  60154. extra: 1918/1756,
  60155. bottom: 46/1964
  60156. },
  60157. form: "magma",
  60158. },
  60159. },
  60160. [
  60161. {
  60162. name: "Incognito",
  60163. height: math.unit(2.3, "meters"),
  60164. allForms: true
  60165. },
  60166. {
  60167. name: "Home Size",
  60168. height: math.unit(150, "meters"),
  60169. default: true,
  60170. allForms: true
  60171. },
  60172. {
  60173. name: "Macro",
  60174. height: math.unit(2, "km"),
  60175. allForms: true
  60176. },
  60177. {
  60178. name: "Mega",
  60179. height: math.unit(30, "km"),
  60180. allForms: true
  60181. },
  60182. {
  60183. name: "Giga",
  60184. height: math.unit(450, "km"),
  60185. allForms: true
  60186. },
  60187. {
  60188. name: "Giga+",
  60189. height: math.unit(3000, "km"),
  60190. allForms: true
  60191. },
  60192. {
  60193. name: "Giga++",
  60194. height: math.unit(6000, "km"),
  60195. allForms: true
  60196. },
  60197. {
  60198. name: "Terra",
  60199. height: math.unit(80000, "km"),
  60200. allForms: true
  60201. },
  60202. {
  60203. name: "Terra+",
  60204. height: math.unit(350000, "km"),
  60205. allForms: true
  60206. },
  60207. {
  60208. name: "Solar",
  60209. height: math.unit(1e6, "km"),
  60210. allForms: true
  60211. },
  60212. ],
  60213. {
  60214. "cobra": {
  60215. name: "Cobra",
  60216. default: true
  60217. },
  60218. "magma": {
  60219. name: "Magma Dragon",
  60220. },
  60221. }
  60222. ))
  60223. characterMakers.push(() => makeCharacter(
  60224. { name: "Daxerios", species: ["wolf", "cerberus", "deity"], tags: ["anthro"] },
  60225. {
  60226. front: {
  60227. height: math.unit(2, "meters"),
  60228. weight: math.unit(160, "kg"),
  60229. name: "Front",
  60230. image: {
  60231. source: "./media/characters/daxerios/front.svg",
  60232. extra: 1334/1277,
  60233. bottom: 45/1379
  60234. }
  60235. },
  60236. frontLewd: {
  60237. height: math.unit(2, "meters"),
  60238. weight: math.unit(160, "kg"),
  60239. name: "Front (Lewd)",
  60240. image: {
  60241. source: "./media/characters/daxerios/front-lewd.svg",
  60242. extra: 1334/1277,
  60243. bottom: 45/1379
  60244. }
  60245. },
  60246. dick: {
  60247. height: math.unit(2.35, "feet"),
  60248. name: "Dick",
  60249. image: {
  60250. source: "./media/characters/daxerios/dick.svg"
  60251. }
  60252. },
  60253. },
  60254. [
  60255. {
  60256. name: "\"Small\"",
  60257. height: math.unit(5, "meters")
  60258. },
  60259. {
  60260. name: "Original Size",
  60261. height: math.unit(500, "meters"),
  60262. default: true
  60263. },
  60264. {
  60265. name: "Mega",
  60266. height: math.unit(2, "km")
  60267. },
  60268. {
  60269. name: "Mega+",
  60270. height: math.unit(35, "km")
  60271. },
  60272. {
  60273. name: "Giga",
  60274. height: math.unit(250, "km")
  60275. },
  60276. {
  60277. name: "Giga+",
  60278. height: math.unit(3000, "km")
  60279. },
  60280. {
  60281. name: "Terra",
  60282. height: math.unit(25000, "km")
  60283. },
  60284. {
  60285. name: "Terra+",
  60286. height: math.unit(300000, "km")
  60287. },
  60288. {
  60289. name: "Solar",
  60290. height: math.unit(1e6, "km")
  60291. },
  60292. ]
  60293. ))
  60294. characterMakers.push(() => makeCharacter(
  60295. { name: "Caveat", species: ["luxray", "plush"], tags: ["anthro"] },
  60296. {
  60297. front: {
  60298. height: math.unit(8 + 4/12, "feet"),
  60299. weight: math.unit(464, "lb"),
  60300. name: "Front",
  60301. image: {
  60302. source: "./media/characters/caveat/front.svg",
  60303. extra: 1861/1678,
  60304. bottom: 40/1901
  60305. }
  60306. },
  60307. },
  60308. [
  60309. {
  60310. name: "Normal",
  60311. height: math.unit(8 + 4/12, "feet"),
  60312. default: true
  60313. },
  60314. ]
  60315. ))
  60316. characterMakers.push(() => makeCharacter(
  60317. { name: "Centbair", species: ["kardox"], tags: ["anthro"] },
  60318. {
  60319. front: {
  60320. height: math.unit(12, "feet"),
  60321. weight: math.unit(1800, "lb"),
  60322. name: "Front",
  60323. image: {
  60324. source: "./media/characters/centbair/front.svg",
  60325. extra: 781/663,
  60326. bottom: 25/806
  60327. }
  60328. },
  60329. frontNsfw: {
  60330. height: math.unit(12, "feet"),
  60331. weight: math.unit(1800, "lb"),
  60332. name: "Front (NSFW)",
  60333. image: {
  60334. source: "./media/characters/centbair/front-nsfw.svg",
  60335. extra: 781/663,
  60336. bottom: 25/806
  60337. }
  60338. },
  60339. back: {
  60340. height: math.unit(12, "feet"),
  60341. weight: math.unit(1800, "lb"),
  60342. name: "Back",
  60343. image: {
  60344. source: "./media/characters/centbair/back.svg",
  60345. extra: 808/761,
  60346. bottom: 19/827
  60347. }
  60348. },
  60349. dick: {
  60350. height: math.unit(6.5, "feet"),
  60351. name: "Dick",
  60352. image: {
  60353. source: "./media/characters/centbair/dick.svg"
  60354. }
  60355. },
  60356. slit: {
  60357. height: math.unit(3.25, "feet"),
  60358. name: "Slit",
  60359. image: {
  60360. source: "./media/characters/centbair/slit.svg"
  60361. }
  60362. },
  60363. },
  60364. [
  60365. {
  60366. name: "Normal",
  60367. height: math.unit(12, "feet"),
  60368. default: true
  60369. },
  60370. ]
  60371. ))
  60372. characterMakers.push(() => makeCharacter(
  60373. { name: "Andy", species: ["tanuki"], tags: ["anthro"] },
  60374. {
  60375. front: {
  60376. height: math.unit(5 + 7/12, "feet"),
  60377. name: "Front",
  60378. image: {
  60379. source: "./media/characters/andy/front.svg",
  60380. extra: 634/588,
  60381. bottom: 36/670
  60382. },
  60383. extraAttributes: {
  60384. "pawLength": {
  60385. name: "Paw Length",
  60386. power: 1,
  60387. type: "length",
  60388. base: math.unit(1, "feet")
  60389. },
  60390. }
  60391. },
  60392. side: {
  60393. height: math.unit(5 + 7/12, "feet"),
  60394. name: "Side",
  60395. image: {
  60396. source: "./media/characters/andy/side.svg",
  60397. extra: 641/596,
  60398. bottom: 34/675
  60399. },
  60400. extraAttributes: {
  60401. "pawLength": {
  60402. name: "Paw Length",
  60403. power: 1,
  60404. type: "length",
  60405. base: math.unit(1, "feet")
  60406. },
  60407. }
  60408. },
  60409. back: {
  60410. height: math.unit(5 + 7/12, "feet"),
  60411. name: "Back",
  60412. image: {
  60413. source: "./media/characters/andy/back.svg",
  60414. extra: 618/583,
  60415. bottom: 39/657
  60416. },
  60417. extraAttributes: {
  60418. "pawLength": {
  60419. name: "Paw Length",
  60420. power: 1,
  60421. type: "length",
  60422. base: math.unit(1, "feet")
  60423. },
  60424. }
  60425. },
  60426. paw: {
  60427. height: math.unit(1.13, "feet"),
  60428. name: "Paw",
  60429. image: {
  60430. source: "./media/characters/andy/paw.svg"
  60431. }
  60432. },
  60433. },
  60434. [
  60435. {
  60436. name: "Micro",
  60437. height: math.unit(4, "inches")
  60438. },
  60439. {
  60440. name: "Normal",
  60441. height: math.unit(5 + 7/12, "feet"),
  60442. default: true
  60443. },
  60444. {
  60445. name: "Macro",
  60446. height: math.unit(390.42, "feet")
  60447. },
  60448. ]
  60449. ))
  60450. characterMakers.push(() => makeCharacter(
  60451. { name: "Vix Titan", species: ["fox", "demon"], tags: ["anthro"] },
  60452. {
  60453. front: {
  60454. height: math.unit(7, "feet"),
  60455. weight: math.unit(250, "lb"),
  60456. name: "Front",
  60457. image: {
  60458. source: "./media/characters/vix-titan/front.svg",
  60459. extra: 460/428,
  60460. bottom: 15/475
  60461. },
  60462. extraAttributes: {
  60463. "pawWidth": {
  60464. name: "Paw Width",
  60465. power: 1,
  60466. type: "length",
  60467. base: math.unit(0.75, "feet")
  60468. },
  60469. }
  60470. },
  60471. },
  60472. [
  60473. {
  60474. name: "Normal",
  60475. height: math.unit(7, "feet"),
  60476. default: true
  60477. },
  60478. {
  60479. name: "Giant",
  60480. height: math.unit(1500, "feet")
  60481. },
  60482. {
  60483. name: "Mega",
  60484. height: math.unit(10, "miles")
  60485. },
  60486. {
  60487. name: "Giga",
  60488. height: math.unit(150, "miles")
  60489. },
  60490. {
  60491. name: "Tera",
  60492. height: math.unit(144000, "miles")
  60493. },
  60494. ]
  60495. ))
  60496. characterMakers.push(() => makeCharacter(
  60497. { name: "Reiku", species: ["dragon"], tags: ["anthro"] },
  60498. {
  60499. front: {
  60500. height: math.unit(6 + 2/12, "feet"),
  60501. name: "Front",
  60502. image: {
  60503. source: "./media/characters/reiku/front.svg",
  60504. extra: 1910/1757,
  60505. bottom: 103/2013
  60506. },
  60507. extraAttributes: {
  60508. "thighThickness": {
  60509. name: "Thigh Thickness",
  60510. power: 1,
  60511. type: "length",
  60512. base: math.unit(1.12, "feet")
  60513. },
  60514. "assThickness": {
  60515. name: "Ass Thickness",
  60516. power: 1,
  60517. type: "length",
  60518. base: math.unit(1.12*2, "feet")
  60519. },
  60520. }
  60521. },
  60522. side: {
  60523. height: math.unit(6 + 2/12, "feet"),
  60524. name: "Side",
  60525. image: {
  60526. source: "./media/characters/reiku/side.svg",
  60527. extra: 1846/1748,
  60528. bottom: 99/1945
  60529. },
  60530. extraAttributes: {
  60531. "thighThickness": {
  60532. name: "Thigh Thickness",
  60533. power: 1,
  60534. type: "length",
  60535. base: math.unit(1.12, "feet")
  60536. },
  60537. "assThickness": {
  60538. name: "Ass Thickness",
  60539. power: 1,
  60540. type: "length",
  60541. base: math.unit(1.12*2, "feet")
  60542. },
  60543. }
  60544. },
  60545. back: {
  60546. height: math.unit(6 + 2/12, "feet"),
  60547. name: "Back",
  60548. image: {
  60549. source: "./media/characters/reiku/back.svg",
  60550. extra: 1941/1786,
  60551. bottom: 34/1975
  60552. },
  60553. extraAttributes: {
  60554. "thighThickness": {
  60555. name: "Thigh Thickness",
  60556. power: 1,
  60557. type: "length",
  60558. base: math.unit(1.12, "feet")
  60559. },
  60560. "assThickness": {
  60561. name: "Ass Thickness",
  60562. power: 1,
  60563. type: "length",
  60564. base: math.unit(1.12*2, "feet")
  60565. },
  60566. }
  60567. },
  60568. head: {
  60569. height: math.unit(1.8, "feet"),
  60570. name: "Head",
  60571. image: {
  60572. source: "./media/characters/reiku/head.svg"
  60573. }
  60574. },
  60575. tailTop: {
  60576. height: math.unit(8.4, "feet"),
  60577. name: "Tail (Top)",
  60578. image: {
  60579. source: "./media/characters/reiku/tail-top.svg"
  60580. }
  60581. },
  60582. tailBottom: {
  60583. height: math.unit(8.4, "feet"),
  60584. name: "Tail (Bottom)",
  60585. image: {
  60586. source: "./media/characters/reiku/tail-bottom.svg"
  60587. }
  60588. },
  60589. foot: {
  60590. height: math.unit(2.6, "feet"),
  60591. name: "Foot",
  60592. image: {
  60593. source: "./media/characters/reiku/foot.svg"
  60594. }
  60595. },
  60596. footCurled: {
  60597. height: math.unit(2.3, "feet"),
  60598. name: "Foot (Curled)",
  60599. image: {
  60600. source: "./media/characters/reiku/foot-curled.svg"
  60601. }
  60602. },
  60603. footSide: {
  60604. height: math.unit(1.26, "feet"),
  60605. name: "Foot (Side)",
  60606. image: {
  60607. source: "./media/characters/reiku/foot-side.svg"
  60608. }
  60609. },
  60610. },
  60611. [
  60612. {
  60613. name: "Normal",
  60614. height: math.unit(6 + 2/12, "feet"),
  60615. default: true
  60616. },
  60617. ]
  60618. ))
  60619. characterMakers.push(() => makeCharacter(
  60620. { name: "Cialda", species: ["zorgoia", "food"], tags: ["feral"] },
  60621. {
  60622. front: {
  60623. height: math.unit(7, "feet"),
  60624. weight: math.unit(500, "kg"),
  60625. name: "Front",
  60626. image: {
  60627. source: "./media/characters/cialda/front.svg",
  60628. extra: 912/745,
  60629. bottom: 55/967
  60630. }
  60631. },
  60632. },
  60633. [
  60634. {
  60635. name: "Normal",
  60636. height: math.unit(7, "feet"),
  60637. default: true
  60638. },
  60639. ]
  60640. ))
  60641. characterMakers.push(() => makeCharacter(
  60642. { name: "Darkkin", species: ["honey-badger", "behemoth"], tags: ["anthro"] },
  60643. {
  60644. side: {
  60645. height: math.unit(6, "feet"),
  60646. weight: math.unit(600, "lb"),
  60647. preyCapacity: math.unit(25, "liters"),
  60648. name: "Side",
  60649. image: {
  60650. source: "./media/characters/darkkin/side.svg",
  60651. extra: 1597/1447,
  60652. bottom: 101/1698
  60653. }
  60654. },
  60655. },
  60656. [
  60657. {
  60658. name: "Canon Height",
  60659. height: math.unit(568, "feet"),
  60660. default: true
  60661. },
  60662. ]
  60663. ))
  60664. characterMakers.push(() => makeCharacter(
  60665. { name: "Livnia", species: ["rattlesnake", "diamondback"], tags: ["naga"] },
  60666. {
  60667. front: {
  60668. height: math.unit(6, "feet"),
  60669. weight: math.unit(1500, "lb"),
  60670. preyCapacity: math.unit(3, "people"),
  60671. name: "Front",
  60672. image: {
  60673. source: "./media/characters/livnia/front.svg",
  60674. extra: 934/932,
  60675. bottom: 83/1017
  60676. }
  60677. },
  60678. back: {
  60679. height: math.unit(6, "feet"),
  60680. weight: math.unit(1500, "lb"),
  60681. preyCapacity: math.unit(3, "people"),
  60682. name: "Back",
  60683. image: {
  60684. source: "./media/characters/livnia/back.svg",
  60685. extra: 916/915,
  60686. bottom: 58/974
  60687. }
  60688. },
  60689. head: {
  60690. height: math.unit(1.53, "feet"),
  60691. name: "Head",
  60692. image: {
  60693. source: "./media/characters/livnia/head.svg"
  60694. }
  60695. },
  60696. maw: {
  60697. height: math.unit(0.78, "feet"),
  60698. name: "Maw",
  60699. image: {
  60700. source: "./media/characters/livnia/maw.svg"
  60701. }
  60702. },
  60703. genitals: {
  60704. height: math.unit(0.35, "feet"),
  60705. name: "Genitals",
  60706. image: {
  60707. source: "./media/characters/livnia/genitals.svg"
  60708. }
  60709. },
  60710. },
  60711. [
  60712. {
  60713. name: "Normal",
  60714. height: math.unit(1000, "feet"),
  60715. default: true
  60716. },
  60717. ]
  60718. ))
  60719. characterMakers.push(() => makeCharacter(
  60720. { name: "Hayaku", species: ["spidox"], tags: ["anthro"] },
  60721. {
  60722. front: {
  60723. height: math.unit(4, "feet"),
  60724. weight: math.unit(73, "lb"),
  60725. name: "Front",
  60726. image: {
  60727. source: "./media/characters/hayaku/front.svg",
  60728. extra: 1011/888,
  60729. bottom: 33/1044
  60730. }
  60731. },
  60732. back: {
  60733. height: math.unit(4, "feet"),
  60734. weight: math.unit(73, "lb"),
  60735. name: "Back",
  60736. image: {
  60737. source: "./media/characters/hayaku/back.svg",
  60738. extra: 1040/930,
  60739. bottom: 20/1060
  60740. }
  60741. },
  60742. },
  60743. [
  60744. {
  60745. name: "Normal",
  60746. height: math.unit(4, "feet"),
  60747. default: true
  60748. },
  60749. ]
  60750. ))
  60751. characterMakers.push(() => makeCharacter(
  60752. { name: "Athena Bryzant", species: ["gryphon"], tags: ["anthro"] },
  60753. {
  60754. front: {
  60755. height: math.unit(6 + 7/12, "feet"),
  60756. weight: math.unit(300, "lb"),
  60757. name: "Front",
  60758. image: {
  60759. source: "./media/characters/athena-bryzant/front.svg",
  60760. extra: 870/835,
  60761. bottom: 33/903
  60762. }
  60763. },
  60764. back: {
  60765. height: math.unit(6 + 7/12, "feet"),
  60766. weight: math.unit(300, "lb"),
  60767. name: "Back",
  60768. image: {
  60769. source: "./media/characters/athena-bryzant/back.svg",
  60770. extra: 858/823,
  60771. bottom: 30/888
  60772. }
  60773. },
  60774. head: {
  60775. height: math.unit(2.38, "feet"),
  60776. name: "Head",
  60777. image: {
  60778. source: "./media/characters/athena-bryzant/head.svg"
  60779. }
  60780. },
  60781. wings: {
  60782. height: math.unit(2.85, "feet"),
  60783. name: "Wings",
  60784. image: {
  60785. source: "./media/characters/athena-bryzant/wings.svg"
  60786. }
  60787. },
  60788. },
  60789. [
  60790. {
  60791. name: "Normal",
  60792. height: math.unit(6 + 7/12, "feet"),
  60793. default: true
  60794. },
  60795. {
  60796. name: "Big",
  60797. height: math.unit(8, "feet")
  60798. },
  60799. {
  60800. name: "Very Big",
  60801. height: math.unit(11, "feet")
  60802. },
  60803. ]
  60804. ))
  60805. characterMakers.push(() => makeCharacter(
  60806. { name: "Zel-Kesh", species: ["zorgoia", "demon"], tags: ["feral"] },
  60807. {
  60808. side: {
  60809. height: math.unit(3, "meters"),
  60810. weight: math.unit(7500, "kg"),
  60811. preyCapacity: math.unit(1e12, "people"),
  60812. name: "Side",
  60813. image: {
  60814. source: "./media/characters/zel-kesh/side.svg",
  60815. extra: 910/407,
  60816. bottom: 147/1057
  60817. }
  60818. },
  60819. },
  60820. [
  60821. {
  60822. name: "Normal",
  60823. height: math.unit(3, "meters"),
  60824. default: true
  60825. },
  60826. ]
  60827. ))
  60828. characterMakers.push(() => makeCharacter(
  60829. { name: "Kane (Fox)", species: ["fox", "deity"], tags: ["anthro"] },
  60830. {
  60831. front: {
  60832. height: math.unit(2, "meters"),
  60833. weight: math.unit(95, "kg"),
  60834. name: "Front",
  60835. image: {
  60836. source: "./media/characters/kane-fox/front.svg",
  60837. extra: 945/888,
  60838. bottom: 27/972
  60839. }
  60840. },
  60841. back: {
  60842. height: math.unit(2, "meters"),
  60843. weight: math.unit(95, "kg"),
  60844. name: "Back",
  60845. image: {
  60846. source: "./media/characters/kane-fox/back.svg",
  60847. extra: 959/914,
  60848. bottom: 15/974
  60849. }
  60850. },
  60851. frontLewd: {
  60852. height: math.unit(2, "meters"),
  60853. weight: math.unit(95, "kg"),
  60854. name: "Front (Lewd)",
  60855. image: {
  60856. source: "./media/characters/kane-fox/front-lewd.svg",
  60857. extra: 945/888,
  60858. bottom: 27/972
  60859. }
  60860. },
  60861. },
  60862. [
  60863. {
  60864. name: "Home Size",
  60865. height: math.unit(2, "meters"),
  60866. default: true
  60867. },
  60868. {
  60869. name: "Macro",
  60870. height: math.unit(200, "meters")
  60871. },
  60872. {
  60873. name: "Small Mega",
  60874. height: math.unit(3, "km")
  60875. },
  60876. {
  60877. name: "Mega",
  60878. height: math.unit(50, "km")
  60879. },
  60880. {
  60881. name: "Giga",
  60882. height: math.unit(200, "km")
  60883. },
  60884. {
  60885. name: "Giga+",
  60886. height: math.unit(2500, "km")
  60887. },
  60888. {
  60889. name: "Terra",
  60890. height: math.unit(70000, "km")
  60891. },
  60892. {
  60893. name: "Terra+",
  60894. height: math.unit(150000, "km")
  60895. },
  60896. {
  60897. name: "Terra++",
  60898. height: math.unit(400000, "km")
  60899. },
  60900. ]
  60901. ))
  60902. characterMakers.push(() => makeCharacter(
  60903. { name: "Ayranus", species: ["otter", "lion", "bat", "deity"], tags: ["anthro"] },
  60904. {
  60905. otter_front: {
  60906. height: math.unit(1.8, "meters"),
  60907. weight: math.unit(90, "kg"),
  60908. name: "Front",
  60909. image: {
  60910. source: "./media/characters/ayranus/otter-front.svg",
  60911. extra: 468/452,
  60912. bottom: 43/511
  60913. },
  60914. form: "otter",
  60915. },
  60916. otter_frontLewd: {
  60917. height: math.unit(1.8, "meters"),
  60918. weight: math.unit(90, "kg"),
  60919. name: "Front (Lewd)",
  60920. image: {
  60921. source: "./media/characters/ayranus/otter-front-lewd.svg",
  60922. extra: 468/452,
  60923. bottom: 43/511
  60924. },
  60925. form: "otter",
  60926. },
  60927. lionbat_front: {
  60928. height: math.unit(1.8, "meters"),
  60929. weight: math.unit(90, "kg"),
  60930. name: "Front (Lewd)",
  60931. image: {
  60932. source: "./media/characters/ayranus/lionbat-front-lewd.svg",
  60933. extra: 797/740,
  60934. bottom: 78/875
  60935. },
  60936. form: "lionbat",
  60937. },
  60938. paw: {
  60939. height: math.unit(1.5, "feet"),
  60940. name: "Paw",
  60941. image: {
  60942. source: "./media/characters/ayranus/paw.svg"
  60943. },
  60944. },
  60945. },
  60946. [
  60947. {
  60948. name: "Incognito",
  60949. height: math.unit(1.8, "meters"),
  60950. allForms: true
  60951. },
  60952. {
  60953. name: "Macro",
  60954. height: math.unit(60, "meters"),
  60955. allForms: true
  60956. },
  60957. {
  60958. name: "Macro+",
  60959. height: math.unit(200, "meters"),
  60960. allForms: true
  60961. },
  60962. {
  60963. name: "Mega",
  60964. height: math.unit(35, "km"),
  60965. allForms: true
  60966. },
  60967. {
  60968. name: "Giga",
  60969. height: math.unit(220, "km"),
  60970. allForms: true
  60971. },
  60972. {
  60973. name: "Giga+",
  60974. height: math.unit(1500, "km"),
  60975. allForms: true
  60976. },
  60977. {
  60978. name: "Terra",
  60979. height: math.unit(13000, "km"),
  60980. allForms: true
  60981. },
  60982. {
  60983. name: "Terra+",
  60984. height: math.unit(500000, "km"),
  60985. allForms: true
  60986. },
  60987. {
  60988. name: "Galactic",
  60989. height: math.unit(486080, "parsecs"),
  60990. default: true,
  60991. allForms: true
  60992. },
  60993. ],
  60994. {
  60995. "otter": {
  60996. name: "Otter",
  60997. default: true
  60998. },
  60999. "lionbat": {
  61000. name: "Lionbat",
  61001. },
  61002. }
  61003. ))
  61004. characterMakers.push(() => makeCharacter(
  61005. { name: "Proxy", species: ["kodiak-bear"], tags: ["anthro"] },
  61006. {
  61007. front: {
  61008. height: math.unit(7 + 4/12, "feet"),
  61009. weight: math.unit(400, "lb"),
  61010. name: "Front",
  61011. image: {
  61012. source: "./media/characters/proxy/front.svg",
  61013. extra: 1605/1542,
  61014. bottom: 55/1660
  61015. }
  61016. },
  61017. side: {
  61018. height: math.unit(7 + 4/12, "feet"),
  61019. weight: math.unit(400, "lb"),
  61020. name: "Side",
  61021. image: {
  61022. source: "./media/characters/proxy/side.svg",
  61023. extra: 794/759,
  61024. bottom: 6/800
  61025. }
  61026. },
  61027. hand: {
  61028. height: math.unit(1.54, "feet"),
  61029. name: "Hand",
  61030. image: {
  61031. source: "./media/characters/proxy/hand.svg"
  61032. }
  61033. },
  61034. paw: {
  61035. height: math.unit(1.53, "feet"),
  61036. name: "Paw",
  61037. image: {
  61038. source: "./media/characters/proxy/paw.svg"
  61039. }
  61040. },
  61041. maw: {
  61042. height: math.unit(1.9, "feet"),
  61043. name: "Maw",
  61044. image: {
  61045. source: "./media/characters/proxy/maw.svg"
  61046. }
  61047. },
  61048. },
  61049. [
  61050. {
  61051. name: "Normal",
  61052. height: math.unit(7 + 4/12, "feet"),
  61053. default: true
  61054. },
  61055. ]
  61056. ))
  61057. characterMakers.push(() => makeCharacter(
  61058. { name: "Crocozilla", species: ["crocodile"], tags: ["anthro"] },
  61059. {
  61060. front: {
  61061. height: math.unit(4, "meters"),
  61062. name: "Front",
  61063. image: {
  61064. source: "./media/characters/crocozilla/front.svg",
  61065. extra: 1790/1742,
  61066. bottom: 78/1868
  61067. }
  61068. },
  61069. },
  61070. [
  61071. {
  61072. name: "Normal",
  61073. height: math.unit(4, "meters"),
  61074. default: true
  61075. },
  61076. ]
  61077. ))
  61078. characterMakers.push(() => makeCharacter(
  61079. { name: "Kurz", species: ["alurean", "deity"], tags: ["anthro"] },
  61080. {
  61081. front: {
  61082. height: math.unit(1.8, "meters"),
  61083. weight: math.unit(120, "kg"),
  61084. name: "Front",
  61085. image: {
  61086. source: "./media/characters/kurz/front.svg",
  61087. extra: 1960/1824,
  61088. bottom: 41/2001
  61089. }
  61090. },
  61091. back: {
  61092. height: math.unit(1.8, "meters"),
  61093. weight: math.unit(120, "kg"),
  61094. name: "Back",
  61095. image: {
  61096. source: "./media/characters/kurz/back.svg",
  61097. extra: 1906/1787,
  61098. bottom: 60/1966
  61099. }
  61100. },
  61101. frontLewd: {
  61102. height: math.unit(1.8, "meters"),
  61103. weight: math.unit(120, "kg"),
  61104. name: "Front (Lewd)",
  61105. image: {
  61106. source: "./media/characters/kurz/front-lewd.svg",
  61107. extra: 1960/1824,
  61108. bottom: 41/2001
  61109. }
  61110. },
  61111. maw: {
  61112. height: math.unit(0.69, "meters"),
  61113. name: "Maw",
  61114. image: {
  61115. source: "./media/characters/kurz/maw.svg"
  61116. }
  61117. },
  61118. },
  61119. [
  61120. {
  61121. name: "Original Size",
  61122. height: math.unit(1.8, "meters")
  61123. },
  61124. {
  61125. name: "Incognito Size",
  61126. height: math.unit(2.4, "meters"),
  61127. default: true
  61128. },
  61129. {
  61130. name: "Macro",
  61131. height: math.unit(30, "meters")
  61132. },
  61133. {
  61134. name: "Macro+",
  61135. height: math.unit(250, "meters")
  61136. },
  61137. {
  61138. name: "Mega",
  61139. height: math.unit(2, "km")
  61140. },
  61141. {
  61142. name: "Mega+",
  61143. height: math.unit(35, "km")
  61144. },
  61145. {
  61146. name: "Mega++",
  61147. height: math.unit(75, "km")
  61148. },
  61149. {
  61150. name: "Giga",
  61151. height: math.unit(250, "km")
  61152. },
  61153. {
  61154. name: "Terra",
  61155. height: math.unit(15000, "km")
  61156. },
  61157. {
  61158. name: "Terra+",
  61159. height: math.unit(2250000, "km")
  61160. },
  61161. ]
  61162. ))
  61163. characterMakers.push(() => makeCharacter(
  61164. { name: "Nikita", species: ["werewolf"], tags: ["anthro"] },
  61165. {
  61166. front: {
  61167. height: math.unit(16 + 3/12, "feet"),
  61168. weight: math.unit(3575, "lb"),
  61169. name: "Front",
  61170. image: {
  61171. source: "./media/characters/nikita/front.svg",
  61172. extra: 1064/955,
  61173. bottom: 47/1111
  61174. }
  61175. },
  61176. },
  61177. [
  61178. {
  61179. name: "Normal",
  61180. height: math.unit(16 + 3/12, "feet"),
  61181. default: true
  61182. },
  61183. {
  61184. name: "Big",
  61185. height: math.unit(21, "feet")
  61186. },
  61187. {
  61188. name: "Biggest",
  61189. height: math.unit(50, "feet")
  61190. },
  61191. ]
  61192. ))
  61193. characterMakers.push(() => makeCharacter(
  61194. { name: "Kyara", species: ["wolf"], tags: ["anthro"] },
  61195. {
  61196. front: {
  61197. height: math.unit(1.92, "m"),
  61198. weight: math.unit(76, "kg"),
  61199. name: "Front",
  61200. image: {
  61201. source: "./media/characters/kyara/front.svg",
  61202. extra: 1550/1438,
  61203. bottom: 139/1689
  61204. }
  61205. },
  61206. back: {
  61207. height: math.unit(1.92, "m"),
  61208. weight: math.unit(76, "kg"),
  61209. name: "Back",
  61210. image: {
  61211. source: "./media/characters/kyara/back.svg",
  61212. extra: 1523/1427,
  61213. bottom: 83/1606
  61214. }
  61215. },
  61216. head: {
  61217. height: math.unit(1.22, "feet"),
  61218. name: "Head",
  61219. image: {
  61220. source: "./media/characters/kyara/head.svg"
  61221. }
  61222. },
  61223. maw: {
  61224. height: math.unit(0.73, "feet"),
  61225. name: "Maw",
  61226. image: {
  61227. source: "./media/characters/kyara/maw.svg"
  61228. }
  61229. },
  61230. paws: {
  61231. height: math.unit(0.95, "feet"),
  61232. name: "Paws",
  61233. image: {
  61234. source: "./media/characters/kyara/paws.svg"
  61235. }
  61236. },
  61237. },
  61238. [
  61239. {
  61240. name: "Normal",
  61241. height: math.unit(1.92, "meters"),
  61242. default: true
  61243. },
  61244. {
  61245. name: "Mini Macro",
  61246. height: math.unit(192, "meters")
  61247. },
  61248. {
  61249. name: "Macro",
  61250. height: math.unit(480, "meters")
  61251. },
  61252. {
  61253. name: "Mega Macro",
  61254. height: math.unit(1440, "meters")
  61255. },
  61256. ]
  61257. ))
  61258. characterMakers.push(() => makeCharacter(
  61259. { name: "Layla Amari", species: ["rabbit"], tags: ["anthro"] },
  61260. {
  61261. front: {
  61262. height: math.unit(6, "feet"),
  61263. weight: math.unit(160, "lbs"),
  61264. preyCapacity: math.unit(0.05, "people"),
  61265. name: "Front",
  61266. image: {
  61267. source: "./media/characters/layla-amari/front.svg",
  61268. extra: 1922/1723,
  61269. bottom: 90/2012
  61270. }
  61271. },
  61272. back: {
  61273. height: math.unit(6, "feet"),
  61274. weight: math.unit(160, "lbs"),
  61275. preyCapacity: math.unit(0.05, "people"),
  61276. name: "Back",
  61277. image: {
  61278. source: "./media/characters/layla-amari/back.svg",
  61279. extra: 1917/1718,
  61280. bottom: 50/1967
  61281. }
  61282. },
  61283. frontDressed: {
  61284. height: math.unit(6, "feet"),
  61285. weight: math.unit(160, "lbs"),
  61286. preyCapacity: math.unit(0.05, "people"),
  61287. name: "Front (Dressed)",
  61288. image: {
  61289. source: "./media/characters/layla-amari/front-dressed.svg",
  61290. extra: 1922/1723,
  61291. bottom: 90/2012
  61292. }
  61293. },
  61294. face: {
  61295. height: math.unit(0.93, "feet"),
  61296. name: "Face",
  61297. image: {
  61298. source: "./media/characters/layla-amari/face.svg"
  61299. }
  61300. },
  61301. hand: {
  61302. height: math.unit(0.66 , "feet"),
  61303. name: "Hand",
  61304. image: {
  61305. source: "./media/characters/layla-amari/hand.svg"
  61306. }
  61307. },
  61308. foot: {
  61309. height: math.unit(1, "feet"),
  61310. name: "Foot",
  61311. image: {
  61312. source: "./media/characters/layla-amari/foot.svg"
  61313. }
  61314. },
  61315. necklace: {
  61316. height: math.unit(0.32, "feet"),
  61317. name: "Necklace",
  61318. image: {
  61319. source: "./media/characters/layla-amari/necklace.svg"
  61320. }
  61321. },
  61322. nipple: {
  61323. height: math.unit(0.2, "feet"),
  61324. name: "Nipple",
  61325. image: {
  61326. source: "./media/characters/layla-amari/nipple.svg"
  61327. }
  61328. },
  61329. slit: {
  61330. height: math.unit(0.26, "feet"),
  61331. name: "Slit",
  61332. image: {
  61333. source: "./media/characters/layla-amari/slit.svg"
  61334. }
  61335. },
  61336. },
  61337. [
  61338. {
  61339. name: "Natural",
  61340. height: math.unit(825, "feet"),
  61341. default: true
  61342. },
  61343. {
  61344. name: "Enhanced",
  61345. height: math.unit(8250, "feet")
  61346. },
  61347. {
  61348. name: "Apparent Size",
  61349. height: math.unit(9.04363e+8, "meters")
  61350. },
  61351. ]
  61352. ))
  61353. characterMakers.push(() => makeCharacter(
  61354. { name: "Percy", species: ["magpie", "leopard", "gryphon"], tags: ["anthro"] },
  61355. {
  61356. front: {
  61357. height: math.unit(1.3, "meters"),
  61358. name: "Front",
  61359. image: {
  61360. source: "./media/characters/percy/front.svg",
  61361. extra: 1444/1289,
  61362. bottom: 54/1498
  61363. }
  61364. },
  61365. },
  61366. [
  61367. {
  61368. name: "Normal",
  61369. height: math.unit(1.3, "meters"),
  61370. default: true
  61371. },
  61372. ]
  61373. ))
  61374. characterMakers.push(() => makeCharacter(
  61375. { name: "Grev", species: ["tigrex"], tags: ["feral"] },
  61376. {
  61377. side: {
  61378. height: math.unit(10, "meters"),
  61379. name: "Side",
  61380. image: {
  61381. source: "./media/characters/grev/side.svg",
  61382. extra: 653/266,
  61383. bottom: 77/730
  61384. }
  61385. },
  61386. head: {
  61387. height: math.unit(16.2, "m"),
  61388. name: "Head",
  61389. image: {
  61390. source: "./media/characters/grev/head.svg"
  61391. }
  61392. },
  61393. dick: {
  61394. height: math.unit(2.8135932034, "m"),
  61395. name: "Dick",
  61396. image: {
  61397. source: "./media/characters/grev/dick.svg"
  61398. }
  61399. },
  61400. },
  61401. [
  61402. {
  61403. name: "Friend-Sized",
  61404. height: math.unit(80, "cm")
  61405. },
  61406. {
  61407. name: "Normal",
  61408. height: math.unit(10, "meters"),
  61409. default: true
  61410. },
  61411. {
  61412. name: "Macro",
  61413. height: math.unit(200, "meters")
  61414. },
  61415. ]
  61416. ))
  61417. characterMakers.push(() => makeCharacter(
  61418. { name: "Azuuca", species: ["catfish"], tags: ["anthro"] },
  61419. {
  61420. front: {
  61421. height: math.unit(19.75, "feet"),
  61422. weight: math.unit(20000, "lb"),
  61423. name: "Front",
  61424. image: {
  61425. source: "./media/characters/azuuca/front.svg",
  61426. extra: 1593/1511,
  61427. bottom: 55/1648
  61428. }
  61429. },
  61430. },
  61431. [
  61432. {
  61433. name: "Normal",
  61434. height: math.unit(19.75, "feet"),
  61435. default: true
  61436. },
  61437. ]
  61438. ))
  61439. characterMakers.push(() => makeCharacter(
  61440. { name: "Valuria", species: ["vesempress"], tags: ["anthro"] },
  61441. {
  61442. front: {
  61443. height: math.unit(15, "feet"),
  61444. weight: math.unit(1500, "lb"),
  61445. name: "Front",
  61446. image: {
  61447. source: "./media/characters/valuria/front.svg",
  61448. extra: 1588/1486,
  61449. bottom: 31/1619
  61450. }
  61451. },
  61452. },
  61453. [
  61454. {
  61455. name: "Normal",
  61456. height: math.unit(15, "feet"),
  61457. default: true
  61458. },
  61459. {
  61460. name: "Small",
  61461. height: math.unit(500, "feet")
  61462. },
  61463. {
  61464. name: "Macro",
  61465. height: math.unit(4000, "feet")
  61466. },
  61467. {
  61468. name: "Mega Macro",
  61469. height: math.unit(2000, "miles")
  61470. },
  61471. {
  61472. name: "Giga Macro",
  61473. height: math.unit(3e6, "miles")
  61474. },
  61475. ]
  61476. ))
  61477. characterMakers.push(() => makeCharacter(
  61478. { name: "Terigaia", species: ["gaelterranian"], tags: ["anthro"] },
  61479. {
  61480. front: {
  61481. height: math.unit(3500, "solarradii"),
  61482. name: "Front",
  61483. image: {
  61484. source: "./media/characters/terigaia/front.svg",
  61485. extra: 1531/1451,
  61486. bottom: 98/1629
  61487. }
  61488. },
  61489. },
  61490. [
  61491. {
  61492. name: "Normal",
  61493. height: math.unit(3500, "solarradii"),
  61494. default: true
  61495. },
  61496. ]
  61497. ))
  61498. characterMakers.push(() => makeCharacter(
  61499. { name: "Blair (Blaziken)", species: ["blaziken"], tags: ["anthro"] },
  61500. {
  61501. front: {
  61502. height: math.unit(9.34, "feet"),
  61503. weight: math.unit(600, "lb"),
  61504. name: "Front",
  61505. image: {
  61506. source: "./media/characters/blair-blaziken/front.svg",
  61507. extra: 1557/1462,
  61508. bottom: 55/1612
  61509. }
  61510. },
  61511. },
  61512. [
  61513. {
  61514. name: "Normal",
  61515. height: math.unit(9.34, "feet"),
  61516. default: true
  61517. },
  61518. ]
  61519. ))
  61520. characterMakers.push(() => makeCharacter(
  61521. { name: "Braxia", species: ["pistrogre", "human"], tags: ["anthro"] },
  61522. {
  61523. pistrogre_front: {
  61524. height: math.unit(10, "feet"),
  61525. weight: math.unit(10, "tons"),
  61526. name: "Front",
  61527. image: {
  61528. source: "./media/characters/braxia/pistrogre-front.svg",
  61529. extra: 1531/1334,
  61530. bottom: 114/1645
  61531. },
  61532. form: "pistrogre",
  61533. default: true
  61534. },
  61535. human_front: {
  61536. height: math.unit(10, "feet"),
  61537. weight: math.unit(10, "tons"),
  61538. name: "Front",
  61539. image: {
  61540. source: "./media/characters/braxia/human-front.svg",
  61541. extra: 1574/1501,
  61542. bottom: 37/1611
  61543. },
  61544. form: "human",
  61545. default: true
  61546. },
  61547. },
  61548. [
  61549. {
  61550. name: "Normal",
  61551. height: math.unit(10, "feet"),
  61552. default: true,
  61553. allForms: true
  61554. },
  61555. {
  61556. name: "Macro",
  61557. height: math.unit(1000, "feet"),
  61558. allForms: true
  61559. },
  61560. {
  61561. name: "Mega Macro",
  61562. height: math.unit(100, "miles"),
  61563. allForms: true
  61564. },
  61565. {
  61566. name: "Cosmic",
  61567. height: math.unit(1000000, "lightyears"),
  61568. allForms: true
  61569. },
  61570. {
  61571. name: "ϐѮԆԬӁꭍϞԢ",
  61572. height: math.unit(1000, "multiverses"),
  61573. allForms: true
  61574. },
  61575. ],
  61576. {
  61577. "pistrogre": {
  61578. name: "Pistrogre",
  61579. default: true
  61580. },
  61581. "human": {
  61582. name: "Human",
  61583. },
  61584. }
  61585. ))
  61586. characterMakers.push(() => makeCharacter(
  61587. { name: "Kiriga Yato", species: ["zorgoia"], tags: ["anthro"] },
  61588. {
  61589. front: {
  61590. height: math.unit(6 + 1/12, "feet"),
  61591. weight: math.unit(280, "lb"),
  61592. name: "Front",
  61593. image: {
  61594. source: "./media/characters/kiriga-yato/front.svg",
  61595. extra: 445/394,
  61596. bottom: 11/456
  61597. }
  61598. },
  61599. },
  61600. [
  61601. {
  61602. name: "Descended",
  61603. height: math.unit(3, "feet")
  61604. },
  61605. {
  61606. name: "Average",
  61607. height: math.unit(6 + 1/12, "feet"),
  61608. default: true
  61609. },
  61610. {
  61611. name: "Ascended",
  61612. height: math.unit(9 + 2/12, "feet")
  61613. },
  61614. ]
  61615. ))
  61616. characterMakers.push(() => makeCharacter(
  61617. { name: "Kylie", species: ["giraffe"], tags: ["anthro"] },
  61618. {
  61619. front: {
  61620. height: math.unit(6, "feet"),
  61621. weight: math.unit(150, "lb"),
  61622. name: "Front",
  61623. image: {
  61624. source: "./media/characters/kylie/front.svg",
  61625. extra: 1114/1046,
  61626. bottom: 65/1179
  61627. },
  61628. extraAttributes: {
  61629. "hoofSize": {
  61630. name: "Hoof Size",
  61631. power: 2,
  61632. type: "area",
  61633. base: math.unit(0.034, "m^2")
  61634. },
  61635. "footSize": {
  61636. name: "Foot Size",
  61637. power: 2,
  61638. type: "area",
  61639. base: math.unit(0.75, "m^2")
  61640. },
  61641. }
  61642. },
  61643. side: {
  61644. height: math.unit(6, "feet"),
  61645. weight: math.unit(150, "lb"),
  61646. name: "Side",
  61647. image: {
  61648. source: "./media/characters/kylie/side.svg",
  61649. extra: 1178/1110,
  61650. bottom: 21/1199
  61651. },
  61652. extraAttributes: {
  61653. "hoofSize": {
  61654. name: "Hoof Size",
  61655. power: 2,
  61656. type: "area",
  61657. base: math.unit(0.034, "m^2")
  61658. },
  61659. "footSize": {
  61660. name: "Foot Size",
  61661. power: 2,
  61662. type: "area",
  61663. base: math.unit(0.75, "m^2")
  61664. },
  61665. }
  61666. },
  61667. back: {
  61668. height: math.unit(6, "feet"),
  61669. weight: math.unit(150, "lb"),
  61670. name: "Back",
  61671. image: {
  61672. source: "./media/characters/kylie/back.svg",
  61673. extra: 1115/1047,
  61674. bottom: 66/1181
  61675. },
  61676. extraAttributes: {
  61677. "hoofSize": {
  61678. name: "Hoof Size",
  61679. power: 2,
  61680. type: "area",
  61681. base: math.unit(0.034, "m^2")
  61682. },
  61683. "footSize": {
  61684. name: "Foot Size",
  61685. power: 2,
  61686. type: "area",
  61687. base: math.unit(0.75, "m^2")
  61688. },
  61689. }
  61690. },
  61691. head: {
  61692. height: math.unit(1.85, "feet"),
  61693. name: "Head",
  61694. image: {
  61695. source: "./media/characters/kylie/head.svg"
  61696. }
  61697. },
  61698. },
  61699. [
  61700. {
  61701. name: "Normal",
  61702. height: math.unit(90, "meters"),
  61703. default: true
  61704. },
  61705. ]
  61706. ))
  61707. characterMakers.push(() => makeCharacter(
  61708. { name: "Sabado", species: ["suicune"], tags: ["anthro"] },
  61709. {
  61710. front: {
  61711. height: math.unit(245, "feet"),
  61712. weight: math.unit(400000, "lb"),
  61713. name: "Front",
  61714. image: {
  61715. source: "./media/characters/sabado/front.svg",
  61716. extra: 1309/1164,
  61717. bottom: 29/1338
  61718. }
  61719. },
  61720. },
  61721. [
  61722. {
  61723. name: "Normal",
  61724. height: math.unit(245, "feet"),
  61725. default: true
  61726. },
  61727. ]
  61728. ))
  61729. characterMakers.push(() => makeCharacter(
  61730. { name: "Zechal", species: ["shark", "dragon", "deity"], tags: ["anthro"] },
  61731. {
  61732. shark_front: {
  61733. height: math.unit(2, "meters"),
  61734. weight: math.unit(200, "kg"),
  61735. name: "Front",
  61736. image: {
  61737. source: "./media/characters/zechal/shark-front.svg",
  61738. extra: 969/925,
  61739. bottom: 74/1043
  61740. },
  61741. form: "shark",
  61742. },
  61743. shark_back: {
  61744. height: math.unit(2, "meters"),
  61745. weight: math.unit(200, "kg"),
  61746. name: "Back",
  61747. image: {
  61748. source: "./media/characters/zechal/shark-back.svg",
  61749. extra: 994/949,
  61750. bottom: 176/1170
  61751. },
  61752. form: "shark",
  61753. },
  61754. shark_frontLewd: {
  61755. height: math.unit(2, "meters"),
  61756. weight: math.unit(200, "kg"),
  61757. name: "Front (Lewd)",
  61758. image: {
  61759. source: "./media/characters/zechal/shark-front-lewd.svg",
  61760. extra: 969/925,
  61761. bottom: 74/1043
  61762. },
  61763. form: "shark",
  61764. },
  61765. shark_side: {
  61766. height: math.unit(1.56, "meters"),
  61767. weight: math.unit(200, "kg"),
  61768. name: "Side",
  61769. image: {
  61770. source: "./media/characters/zechal/shark-side.svg"
  61771. },
  61772. form: "shark",
  61773. },
  61774. dragon_front: {
  61775. height: math.unit(2, "meters"),
  61776. weight: math.unit(200, "kg"),
  61777. name: "Front",
  61778. image: {
  61779. source: "./media/characters/zechal/dragon-front.svg",
  61780. extra: 1041/925,
  61781. bottom: 74/1115
  61782. },
  61783. form: "dragon",
  61784. },
  61785. dragon_back: {
  61786. height: math.unit(2, "meters"),
  61787. weight: math.unit(200, "kg"),
  61788. name: "Back",
  61789. image: {
  61790. source: "./media/characters/zechal/dragon-back.svg",
  61791. extra: 1061/949,
  61792. bottom: 176/1237
  61793. },
  61794. form: "dragon",
  61795. },
  61796. dragon_frontLewd: {
  61797. height: math.unit(2, "meters"),
  61798. weight: math.unit(200, "kg"),
  61799. name: "Front (Lewd)",
  61800. image: {
  61801. source: "./media/characters/zechal/dragon-front-lewd.svg",
  61802. extra: 1041/925,
  61803. bottom: 74/1115
  61804. },
  61805. form: "dragon",
  61806. },
  61807. dragon_side: {
  61808. height: math.unit(1.56, "meters"),
  61809. weight: math.unit(200, "kg"),
  61810. name: "Side",
  61811. image: {
  61812. source: "./media/characters/zechal/dragon-side.svg"
  61813. },
  61814. form: "dragon",
  61815. },
  61816. foot: {
  61817. height: math.unit(0.5, "meters"),
  61818. name: "Foot",
  61819. image: {
  61820. source: "./media/characters/zechal/foot.svg"
  61821. }
  61822. },
  61823. sheathFront: {
  61824. height: math.unit(0.45, "meters"),
  61825. name: "Sheath (Front)",
  61826. image: {
  61827. source: "./media/characters/zechal/sheath-front.svg"
  61828. }
  61829. },
  61830. sheathSide: {
  61831. height: math.unit(0.45, "meters"),
  61832. name: "Sheath (Side)",
  61833. image: {
  61834. source: "./media/characters/zechal/sheath-side.svg"
  61835. }
  61836. },
  61837. },
  61838. [
  61839. {
  61840. name: "Incognito",
  61841. height: math.unit(2, "meters"),
  61842. allForms: true
  61843. },
  61844. {
  61845. name: "Small Rampage",
  61846. height: math.unit(25, "meters"),
  61847. allForms: true
  61848. },
  61849. {
  61850. name: "Home Size",
  61851. height: math.unit(250, "meters"),
  61852. allForms: true,
  61853. default: true
  61854. },
  61855. {
  61856. name: "Macro+",
  61857. height: math.unit(700, "meters"),
  61858. allForms: true
  61859. },
  61860. {
  61861. name: "Small Mega",
  61862. height: math.unit(3, "km"),
  61863. allForms: true
  61864. },
  61865. {
  61866. name: "Mega",
  61867. height: math.unit(15, "km"),
  61868. allForms: true
  61869. },
  61870. {
  61871. name: "Giga",
  61872. height: math.unit(300, "km"),
  61873. allForms: true
  61874. },
  61875. {
  61876. name: "Giga+",
  61877. height: math.unit(1750, "km"),
  61878. allForms: true
  61879. },
  61880. {
  61881. name: "Continental",
  61882. height: math.unit(5000, "km"),
  61883. allForms: true
  61884. },
  61885. {
  61886. name: "Terra",
  61887. height: math.unit(20000, "km"),
  61888. allForms: true
  61889. },
  61890. {
  61891. name: "Terra+",
  61892. height: math.unit(300000, "km"),
  61893. allForms: true
  61894. },
  61895. {
  61896. name: "Solar",
  61897. height: math.unit(40000000, "km"),
  61898. allForms: true
  61899. },
  61900. {
  61901. name: "Galactic",
  61902. height: math.unit(810133, "parsecs"),
  61903. allForms: true
  61904. },
  61905. {
  61906. name: "Universal",
  61907. height: math.unit(25, "universes"),
  61908. allForms: true
  61909. },
  61910. ],
  61911. {
  61912. "shark": {
  61913. name: "Shark",
  61914. default: true
  61915. },
  61916. "dragon": {
  61917. name: "Dragon",
  61918. },
  61919. }
  61920. ))
  61921. characterMakers.push(() => makeCharacter(
  61922. { name: "Sergis", species: ["komodo-dragon", "deity"], tags: ["anthro"] },
  61923. {
  61924. front: {
  61925. height: math.unit(2.2, "meters"),
  61926. weight: math.unit(150, "kg"),
  61927. name: "Front",
  61928. image: {
  61929. source: "./media/characters/sergis/front.svg",
  61930. extra: 1314/1312,
  61931. bottom: 112/1426
  61932. }
  61933. },
  61934. back: {
  61935. height: math.unit(2.2, "meters"),
  61936. weight: math.unit(150, "kg"),
  61937. name: "Back",
  61938. image: {
  61939. source: "./media/characters/sergis/back.svg",
  61940. extra: 1335/1333,
  61941. bottom: 19/1354
  61942. }
  61943. },
  61944. frontLewd: {
  61945. height: math.unit(2.2, "meters"),
  61946. weight: math.unit(150, "kg"),
  61947. name: "Front (Lewd)",
  61948. image: {
  61949. source: "./media/characters/sergis/front-lewd.svg",
  61950. extra: 1314/1312,
  61951. bottom: 112/1426
  61952. }
  61953. },
  61954. frontDressed: {
  61955. height: math.unit(2.2, "meters"),
  61956. weight: math.unit(150, "kg"),
  61957. name: "Front (Dressed)",
  61958. image: {
  61959. source: "./media/characters/sergis/front-dressed.svg",
  61960. extra: 1330/1328,
  61961. bottom: 95/1425
  61962. }
  61963. },
  61964. frontDressedLewd: {
  61965. height: math.unit(2.2, "meters"),
  61966. weight: math.unit(150, "kg"),
  61967. name: "Front (Dressed, Lewd)",
  61968. image: {
  61969. source: "./media/characters/sergis/front-dressed-lewd.svg",
  61970. extra: 1330/1328,
  61971. bottom: 95/1425
  61972. }
  61973. },
  61974. maw: {
  61975. height: math.unit(0.48, "meters"),
  61976. name: "Maw",
  61977. image: {
  61978. source: "./media/characters/sergis/maw.svg"
  61979. }
  61980. },
  61981. sheath: {
  61982. height: math.unit(0.38, "meters"),
  61983. name: "Sheath",
  61984. image: {
  61985. source: "./media/characters/sergis/sheath.svg"
  61986. }
  61987. },
  61988. },
  61989. [
  61990. {
  61991. name: "Incognito Size",
  61992. height: math.unit(2.2, "meters")
  61993. },
  61994. {
  61995. name: "Small Macro",
  61996. height: math.unit(40, "meters")
  61997. },
  61998. {
  61999. name: "Macro",
  62000. height: math.unit(150, "meters")
  62001. },
  62002. {
  62003. name: "Macro+",
  62004. height: math.unit(300, "meters")
  62005. },
  62006. {
  62007. name: "Mega",
  62008. height: math.unit(2.5, "km")
  62009. },
  62010. {
  62011. name: "Mega+",
  62012. height: math.unit(30, "km")
  62013. },
  62014. {
  62015. name: "Home Size",
  62016. height: math.unit(300, "km"),
  62017. default: true
  62018. },
  62019. {
  62020. name: "Giga+",
  62021. height: math.unit(1000, "km")
  62022. },
  62023. {
  62024. name: "Giga++",
  62025. height: math.unit(6000, "km")
  62026. },
  62027. {
  62028. name: "Terra",
  62029. height: math.unit(70000, "km")
  62030. },
  62031. {
  62032. name: "Terra+",
  62033. height: math.unit(200000, "km")
  62034. },
  62035. {
  62036. name: "Galactic",
  62037. height: math.unit(634200, "lightyears")
  62038. },
  62039. ]
  62040. ))
  62041. characterMakers.push(() => makeCharacter(
  62042. { name: "Spade", species: ["demon", "mouse"], tags: ["anthro"] },
  62043. {
  62044. standard: {
  62045. height: math.unit(1 + 5/12, "feet"),
  62046. name: "Standard",
  62047. image: {
  62048. source: "./media/characters/spade/standard.svg",
  62049. extra: 1794/1703,
  62050. bottom: 115/1909
  62051. }
  62052. },
  62053. disguised: {
  62054. height: math.unit(1 + 5/12, "feet"),
  62055. name: "Disguised",
  62056. image: {
  62057. source: "./media/characters/spade/disguised.svg",
  62058. extra: 1794/1700,
  62059. bottom: 98/1892
  62060. }
  62061. },
  62062. },
  62063. [
  62064. {
  62065. name: "Normal",
  62066. height: math.unit(1 + 5/12, "feet"),
  62067. default: true
  62068. },
  62069. ]
  62070. ))
  62071. characterMakers.push(() => makeCharacter(
  62072. { name: "Zeanlain", species: ["harpy-eagle"], tags: ["anthro"] },
  62073. {
  62074. frontNsfw: {
  62075. height: math.unit(5, "meters"),
  62076. weight: math.unit(2000, "kg"),
  62077. preyCapacity: math.unit(5, "people"),
  62078. name: "Front (NSFW)",
  62079. image: {
  62080. source: "./media/characters/zeanlain/front-nsfw.svg",
  62081. extra: 1087/938,
  62082. bottom: 93/1180
  62083. },
  62084. extraAttributes: {
  62085. "wingspan": {
  62086. name: "Wingspan",
  62087. power: 1,
  62088. type: "length",
  62089. base: math.unit(10, "meters")
  62090. },
  62091. "footSize": {
  62092. name: "Foot Size",
  62093. power: 1,
  62094. type: "length",
  62095. base: math.unit(0.68, "meters")
  62096. },
  62097. "cockLength": {
  62098. name: "Cock Length",
  62099. power: 1,
  62100. type: "length",
  62101. base: math.unit(1.69, "meters")
  62102. },
  62103. "ballVolume": {
  62104. name: "Ball Volume",
  62105. power: 3,
  62106. type: "volume",
  62107. base: math.unit(0.028, "m^3")
  62108. },
  62109. }
  62110. },
  62111. front: {
  62112. height: math.unit(5, "meters"),
  62113. weight: math.unit(2000, "kg"),
  62114. preyCapacity: math.unit(3, "people"),
  62115. name: "Front",
  62116. image: {
  62117. source: "./media/characters/zeanlain/front.svg",
  62118. extra: 1087/938,
  62119. bottom: 93/1180
  62120. },
  62121. extraAttributes: {
  62122. "wingspan": {
  62123. name: "Wingspan",
  62124. power: 1,
  62125. type: "length",
  62126. base: math.unit(10, "meters")
  62127. },
  62128. "footSize": {
  62129. name: "Foot Size",
  62130. power: 1,
  62131. type: "length",
  62132. base: math.unit(0.68, "meters")
  62133. },
  62134. }
  62135. },
  62136. },
  62137. [
  62138. {
  62139. name: "Normal",
  62140. height: math.unit(5, "meters"),
  62141. default: true
  62142. },
  62143. ]
  62144. ))
  62145. characterMakers.push(() => makeCharacter(
  62146. { name: "Airamis", species: ["aeromorph", "dragon"], tags: ["anthro"] },
  62147. {
  62148. front: {
  62149. height: math.unit(10, "meters"),
  62150. weight: math.unit(250000, "kg"),
  62151. name: "Front",
  62152. image: {
  62153. source: "./media/characters/airamis/front.svg",
  62154. extra: 865/835,
  62155. bottom: 13/878
  62156. }
  62157. },
  62158. },
  62159. [
  62160. {
  62161. name: "Normal",
  62162. height: math.unit(10, "meters"),
  62163. default: true
  62164. },
  62165. ]
  62166. ))
  62167. characterMakers.push(() => makeCharacter(
  62168. { name: "Corra Tourmaline", species: ["vaporeon"], tags: ["anthro"] },
  62169. {
  62170. front: {
  62171. height: math.unit(3 + 3/12, "feet"),
  62172. weight: math.unit(75, "lb"),
  62173. name: "Front",
  62174. image: {
  62175. source: "./media/characters/corra-tourmaline/front.svg",
  62176. extra: 1037/864,
  62177. bottom: 39/1076
  62178. }
  62179. },
  62180. back: {
  62181. height: math.unit(3 + 3/12, "feet"),
  62182. weight: math.unit(75, "lb"),
  62183. name: "Back",
  62184. image: {
  62185. source: "./media/characters/corra-tourmaline/back.svg",
  62186. extra: 1022/849,
  62187. bottom: 26/1048
  62188. }
  62189. },
  62190. dressed: {
  62191. height: math.unit(3 + 3/12, "feet"),
  62192. weight: math.unit(75, "lb"),
  62193. name: "Dressed",
  62194. image: {
  62195. source: "./media/characters/corra-tourmaline/dressed.svg",
  62196. extra: 1037/864,
  62197. bottom: 39/1076
  62198. }
  62199. },
  62200. beans: {
  62201. height: math.unit(0.37, "feet"),
  62202. name: "Beans",
  62203. image: {
  62204. source: "./media/characters/corra-tourmaline/beans.svg"
  62205. }
  62206. },
  62207. },
  62208. [
  62209. {
  62210. name: "Normal",
  62211. height: math.unit(3 + 3/12, "feet"),
  62212. default: true
  62213. },
  62214. {
  62215. name: "Macro",
  62216. height: math.unit(32, "feet")
  62217. },
  62218. ]
  62219. ))
  62220. characterMakers.push(() => makeCharacter(
  62221. { name: "Maki Kawa", species: ["sabertooth-tiger", "serval"], tags: ["anthro"] },
  62222. {
  62223. front: {
  62224. height: math.unit(6 + 2/12, "feet"),
  62225. weight: math.unit(203, "lb"),
  62226. name: "Front",
  62227. image: {
  62228. source: "./media/characters/maki-kawa/front.svg",
  62229. extra: 950/890,
  62230. bottom: 62/1012
  62231. }
  62232. },
  62233. back: {
  62234. height: math.unit(6 + 2/12, "feet"),
  62235. weight: math.unit(203, "lb"),
  62236. name: "Back",
  62237. image: {
  62238. source: "./media/characters/maki-kawa/back.svg",
  62239. extra: 953/878,
  62240. bottom: 49/1002
  62241. }
  62242. },
  62243. frontBarista: {
  62244. height: math.unit(6 + 2/12, "feet"),
  62245. weight: math.unit(203, "lb"),
  62246. name: "Front (Barista)",
  62247. image: {
  62248. source: "./media/characters/maki-kawa/front-barista.svg",
  62249. extra: 943/883,
  62250. bottom: 69/1012
  62251. }
  62252. },
  62253. backBarista: {
  62254. height: math.unit(6 + 2/12, "feet"),
  62255. weight: math.unit(203, "lb"),
  62256. name: "Back (Barista)",
  62257. image: {
  62258. source: "./media/characters/maki-kawa/back-barista.svg",
  62259. extra: 953/878,
  62260. bottom: 49/1002
  62261. }
  62262. },
  62263. frontWrestler: {
  62264. height: math.unit(6 + 2/12, "feet"),
  62265. weight: math.unit(203, "lb"),
  62266. name: "Front (Wrestler)",
  62267. image: {
  62268. source: "./media/characters/maki-kawa/front-wrestler.svg",
  62269. extra: 950/890,
  62270. bottom: 62/1012
  62271. }
  62272. },
  62273. backWrestler: {
  62274. height: math.unit(6 + 2/12, "feet"),
  62275. weight: math.unit(203, "lb"),
  62276. name: "Back (Wrestler)",
  62277. image: {
  62278. source: "./media/characters/maki-kawa/back-wrestler.svg",
  62279. extra: 953/878,
  62280. bottom: 49/1002
  62281. }
  62282. },
  62283. headFront: {
  62284. height: math.unit(1.64, "feet"),
  62285. name: "Head (Front)",
  62286. image: {
  62287. source: "./media/characters/maki-kawa/head-front.svg"
  62288. }
  62289. },
  62290. headSide: {
  62291. height: math.unit(1.59, "feet"),
  62292. name: "Head (Side)",
  62293. image: {
  62294. source: "./media/characters/maki-kawa/head-side.svg"
  62295. }
  62296. },
  62297. paw: {
  62298. height: math.unit(0.9, "feet"),
  62299. name: "Paw",
  62300. image: {
  62301. source: "./media/characters/maki-kawa/paw.svg"
  62302. }
  62303. },
  62304. },
  62305. [
  62306. {
  62307. name: "Normal",
  62308. height: math.unit(6 + 2/12, "feet"),
  62309. default: true
  62310. },
  62311. {
  62312. name: "Macro",
  62313. height: math.unit(617, "feet")
  62314. },
  62315. ]
  62316. ))
  62317. characterMakers.push(() => makeCharacter(
  62318. { name: "Lennox", species: ["wolf"], tags: ["anthro"] },
  62319. {
  62320. front: {
  62321. height: math.unit(10, "feet"),
  62322. weight: math.unit(1500, "lb"),
  62323. name: "Front",
  62324. image: {
  62325. source: "./media/characters/lennox/front.svg",
  62326. extra: 1623/1496,
  62327. bottom: 18/1641
  62328. }
  62329. },
  62330. back: {
  62331. height: math.unit(10, "feet"),
  62332. weight: math.unit(1500, "lb"),
  62333. name: "Back",
  62334. image: {
  62335. source: "./media/characters/lennox/back.svg",
  62336. extra: 1641/1481,
  62337. bottom: 13/1654
  62338. }
  62339. },
  62340. maw: {
  62341. height: math.unit(2.94, "feet"),
  62342. name: "Maw",
  62343. image: {
  62344. source: "./media/characters/lennox/maw.svg"
  62345. }
  62346. },
  62347. },
  62348. [
  62349. {
  62350. name: "Micro",
  62351. height: math.unit(1, "inch")
  62352. },
  62353. {
  62354. name: "Normal",
  62355. height: math.unit(10, "feet"),
  62356. default: true
  62357. },
  62358. {
  62359. name: "Macro",
  62360. height: math.unit(200, "feet")
  62361. },
  62362. ]
  62363. ))
  62364. characterMakers.push(() => makeCharacter(
  62365. { name: "Vyse Iron-Thunder", species: ["luxray", "shiny"], tags: ["anthro"] },
  62366. {
  62367. frontDressed: {
  62368. height: math.unit(15 + 7/12, "feet"),
  62369. weight: math.unit(5000, "lb"),
  62370. name: "Front (Dressed)",
  62371. image: {
  62372. source: "./media/characters/vyse-iron-thunder/front-dressed.svg",
  62373. extra: 1136/1023,
  62374. bottom: 51/1187
  62375. }
  62376. },
  62377. backDressed: {
  62378. height: math.unit(15 + 7/12, "feet"),
  62379. weight: math.unit(5000, "lb"),
  62380. name: "Back (Dressed)",
  62381. image: {
  62382. source: "./media/characters/vyse-iron-thunder/back-dressed.svg",
  62383. extra: 2359/2143,
  62384. bottom: 103/2462
  62385. }
  62386. },
  62387. front: {
  62388. height: math.unit(15 + 7/12, "feet"),
  62389. weight: math.unit(5000, "lb"),
  62390. name: "Front",
  62391. image: {
  62392. source: "./media/characters/vyse-iron-thunder/front.svg",
  62393. extra: 1136/1023,
  62394. bottom: 51/1187
  62395. }
  62396. },
  62397. hand: {
  62398. height: math.unit(2.36, "feet"),
  62399. name: "Hand",
  62400. image: {
  62401. source: "./media/characters/vyse-iron-thunder/hand.svg"
  62402. }
  62403. },
  62404. foot: {
  62405. height: math.unit(1.72, "feet"),
  62406. name: "Foot",
  62407. image: {
  62408. source: "./media/characters/vyse-iron-thunder/foot.svg"
  62409. }
  62410. },
  62411. mouth: {
  62412. height: math.unit(2, "feet"),
  62413. name: "Mouth",
  62414. image: {
  62415. source: "./media/characters/vyse-iron-thunder/mouth.svg"
  62416. }
  62417. },
  62418. eye: {
  62419. height: math.unit(0.58, "feet"),
  62420. name: "Eye",
  62421. image: {
  62422. source: "./media/characters/vyse-iron-thunder/eye.svg"
  62423. }
  62424. },
  62425. },
  62426. [
  62427. {
  62428. name: "Normal",
  62429. height: math.unit(15 + 7/12, "feet"),
  62430. default: true
  62431. },
  62432. {
  62433. name: "Macro",
  62434. height: math.unit(157, "feet")
  62435. },
  62436. {
  62437. name: "Macro+",
  62438. height: math.unit(1570, "feet")
  62439. },
  62440. {
  62441. name: "Macro++",
  62442. height: math.unit(15700, "feet")
  62443. },
  62444. {
  62445. name: "Macro+++",
  62446. height: math.unit(157000, "feet")
  62447. },
  62448. {
  62449. name: "Macro++++",
  62450. height: math.unit(1570000, "feet")
  62451. },
  62452. ]
  62453. ))
  62454. characterMakers.push(() => makeCharacter(
  62455. { name: "Moonbeam", species: ["latex", "wolf"], tags: ["feral"] },
  62456. {
  62457. side: {
  62458. height: math.unit(6, "feet"),
  62459. weight: math.unit(115, "lb"),
  62460. name: "Side",
  62461. image: {
  62462. source: "./media/characters/moonbeam/side.svg",
  62463. extra: 839/485,
  62464. bottom: 60/899
  62465. }
  62466. },
  62467. },
  62468. [
  62469. {
  62470. name: "Normal",
  62471. height: math.unit(6, "feet"),
  62472. default: true
  62473. },
  62474. ]
  62475. ))
  62476. characterMakers.push(() => makeCharacter(
  62477. { name: "Baltica", species: ["orca"], tags: ["anthro"] },
  62478. {
  62479. front: {
  62480. height: math.unit(3500, "miles"),
  62481. weight: math.unit(1659, "petatonnes"),
  62482. name: "Front",
  62483. image: {
  62484. source: "./media/characters/baltica/front.svg",
  62485. extra: 429/428,
  62486. bottom: 41/470
  62487. }
  62488. },
  62489. back: {
  62490. height: math.unit(3500, "miles"),
  62491. weight: math.unit(1659, "petatonnes"),
  62492. name: "Back",
  62493. image: {
  62494. source: "./media/characters/baltica/back.svg",
  62495. extra: 452/451,
  62496. bottom: 8/460
  62497. }
  62498. },
  62499. },
  62500. [
  62501. {
  62502. name: "Gigamacro",
  62503. height: math.unit(3500, "miles"),
  62504. default: true
  62505. },
  62506. ]
  62507. ))
  62508. characterMakers.push(() => makeCharacter(
  62509. { name: "Shadow (Wolf)", species: ["wolf", "demi"], tags: ["anthro"] },
  62510. {
  62511. front: {
  62512. height: math.unit(6 + 10/12, "feet"),
  62513. weight: math.unit(200, "lb"),
  62514. name: "Front",
  62515. image: {
  62516. source: "./media/characters/shadow-wolf/front.svg",
  62517. extra: 1931/1760,
  62518. bottom: 88/2019
  62519. }
  62520. },
  62521. },
  62522. [
  62523. {
  62524. name: "Normal",
  62525. height: math.unit(6 + 10/12, "feet"),
  62526. default: true
  62527. },
  62528. ]
  62529. ))
  62530. characterMakers.push(() => makeCharacter(
  62531. { name: "Quincy (Praying Mantis)", species: ["praying-mantis"], tags: ["anthro"] },
  62532. {
  62533. front: {
  62534. height: math.unit(5 + 10/12, "feet"),
  62535. name: "Front",
  62536. image: {
  62537. source: "./media/characters/quincy-praying-mantis/front.svg",
  62538. extra: 1055/891,
  62539. bottom: 92/1147
  62540. }
  62541. },
  62542. soles: {
  62543. height: math.unit(0.85, "feet"),
  62544. name: "Soles",
  62545. image: {
  62546. source: "./media/characters/quincy-praying-mantis/soles.svg",
  62547. extra: 429/324,
  62548. bottom: 89/518
  62549. },
  62550. extraAttributes: {
  62551. "shoeSize": {
  62552. name: "Shoe Size",
  62553. power: 1,
  62554. type: "length",
  62555. base: math.unit(23, "ShoeSizeMensUS"),
  62556. defaultUnit: "ShoeSizeMensUS"
  62557. },
  62558. }
  62559. },
  62560. foot: {
  62561. height: math.unit(0.72, "feet"),
  62562. name: "Foot",
  62563. image: {
  62564. source: "./media/characters/quincy-praying-mantis/foot.svg",
  62565. extra: 349/349,
  62566. bottom: 76/425
  62567. }
  62568. },
  62569. },
  62570. [
  62571. {
  62572. name: "Normal",
  62573. height: math.unit(5 + 10/12, "feet"),
  62574. default: true
  62575. },
  62576. ]
  62577. ))
  62578. characterMakers.push(() => makeCharacter(
  62579. { name: "Christopher Redwood", species: ["gray-wolf"], tags: ["anthro"] },
  62580. {
  62581. front: {
  62582. height: math.unit(6, "feet"),
  62583. name: "Front",
  62584. image: {
  62585. source: "./media/characters/christopher-redwood/front.svg",
  62586. extra: 1402/1341,
  62587. bottom: 23/1425
  62588. }
  62589. },
  62590. back: {
  62591. height: math.unit(6, "feet"),
  62592. name: "Back",
  62593. image: {
  62594. source: "./media/characters/christopher-redwood/back.svg",
  62595. extra: 1406/1345,
  62596. bottom: 36/1442
  62597. }
  62598. },
  62599. head: {
  62600. height: math.unit(1.685, "feet"),
  62601. name: "Head",
  62602. image: {
  62603. source: "./media/characters/christopher-redwood/head.svg"
  62604. }
  62605. },
  62606. },
  62607. [
  62608. {
  62609. name: "Normal",
  62610. height: math.unit(6, "feet"),
  62611. default: true
  62612. },
  62613. ]
  62614. ))
  62615. characterMakers.push(() => makeCharacter(
  62616. { name: "Kara (Fox)", species: ["fox"], tags: ["anthro"] },
  62617. {
  62618. front: {
  62619. height: math.unit(1.9, "meters"),
  62620. weight: math.unit(140, "lb"),
  62621. name: "Front",
  62622. image: {
  62623. source: "./media/characters/kara-fox/front.svg",
  62624. extra: 766/711,
  62625. bottom: 41/807
  62626. }
  62627. },
  62628. back: {
  62629. height: math.unit(1.9, "meters"),
  62630. weight: math.unit(140, "lb"),
  62631. name: "Back",
  62632. image: {
  62633. source: "./media/characters/kara-fox/back.svg",
  62634. extra: 766/596,
  62635. bottom: 29/795
  62636. }
  62637. },
  62638. maw: {
  62639. height: math.unit(0.78, "feet"),
  62640. name: "Maw",
  62641. image: {
  62642. source: "./media/characters/kara-fox/maw.svg"
  62643. }
  62644. },
  62645. pawpads: {
  62646. height: math.unit(0.96, "feet"),
  62647. name: "Pawpads",
  62648. image: {
  62649. source: "./media/characters/kara-fox/pawpads.svg"
  62650. }
  62651. },
  62652. },
  62653. [
  62654. {
  62655. name: "Normal",
  62656. height: math.unit(1.9, "meters"),
  62657. default: true
  62658. },
  62659. {
  62660. name: "Giantess",
  62661. height: math.unit(80, "meters")
  62662. },
  62663. ]
  62664. ))
  62665. characterMakers.push(() => makeCharacter(
  62666. { name: "Naomi (Espeon)", species: ["espeon"], tags: ["anthro"] },
  62667. {
  62668. front: {
  62669. height: math.unit(12, "feet"),
  62670. name: "Front",
  62671. image: {
  62672. source: "./media/characters/naomi-espeon/front.svg",
  62673. extra: 892/797,
  62674. bottom: 5/897
  62675. }
  62676. },
  62677. back: {
  62678. height: math.unit(12, "feet"),
  62679. name: "Back",
  62680. image: {
  62681. source: "./media/characters/naomi-espeon/back.svg",
  62682. extra: 890/785,
  62683. bottom: 12/902
  62684. }
  62685. },
  62686. },
  62687. [
  62688. {
  62689. name: "Normal",
  62690. height: math.unit(12, "feet"),
  62691. default: true
  62692. },
  62693. ]
  62694. ))
  62695. characterMakers.push(() => makeCharacter(
  62696. { name: "Asher Heulfyrn", species: ["skullwolf"], tags: ["anthro", "taur"] },
  62697. {
  62698. anthro_front: {
  62699. height: math.unit(8, "feet"),
  62700. weight: math.unit(625, "lb"),
  62701. name: "Front",
  62702. image: {
  62703. source: "./media/characters/asher-heulfyrn/anthro-front.svg",
  62704. extra: 638/574,
  62705. bottom: 73/711
  62706. },
  62707. form: "anthro",
  62708. default: true
  62709. },
  62710. anthro_back: {
  62711. height: math.unit(8, "feet"),
  62712. weight: math.unit(625, "lb"),
  62713. name: "Back",
  62714. image: {
  62715. source: "./media/characters/asher-heulfyrn/anthro-back.svg",
  62716. extra: 674/614,
  62717. bottom: 7/681
  62718. },
  62719. form: "anthro",
  62720. },
  62721. taur_side: {
  62722. height: math.unit(16, "feet"),
  62723. weight: math.unit(4.5, "tons"),
  62724. name: "Side",
  62725. image: {
  62726. source: "./media/characters/asher-heulfyrn/taur-side.svg",
  62727. extra: 704/646,
  62728. bottom: 132/836
  62729. },
  62730. form: "taur",
  62731. default: true
  62732. },
  62733. },
  62734. [
  62735. {
  62736. name: "Normal",
  62737. height: math.unit(8, "feet"),
  62738. default: true,
  62739. form: "anthro"
  62740. },
  62741. {
  62742. name: "Normal",
  62743. height: math.unit(16, "feet"),
  62744. default: true,
  62745. form: "taur"
  62746. },
  62747. ],
  62748. {
  62749. "anthro": {
  62750. name: "Anthro",
  62751. default: true
  62752. },
  62753. "taur": {
  62754. name: "Taur",
  62755. },
  62756. }
  62757. ))
  62758. characterMakers.push(() => makeCharacter(
  62759. { name: "Amelie", species: ["ferrin"], tags: ["anthro"] },
  62760. {
  62761. front: {
  62762. height: math.unit(190, "cm"),
  62763. weight: math.unit(110, "kg"),
  62764. name: "Front",
  62765. image: {
  62766. source: "./media/characters/amelie/front.svg",
  62767. extra: 530/442,
  62768. bottom: 35/565
  62769. }
  62770. },
  62771. },
  62772. [
  62773. {
  62774. name: "Normal",
  62775. height: math.unit(190, "cm"),
  62776. default: true
  62777. },
  62778. ]
  62779. ))
  62780. characterMakers.push(() => makeCharacter(
  62781. { name: "Valence", species: ["skulldragon"], tags: ["anthro"] },
  62782. {
  62783. front: {
  62784. height: math.unit(21, "feet"),
  62785. weight: math.unit(30000, "lb"),
  62786. name: "Front",
  62787. image: {
  62788. source: "./media/characters/valence/front.svg",
  62789. extra: 1430/1306,
  62790. bottom: 51/1481
  62791. }
  62792. },
  62793. },
  62794. [
  62795. {
  62796. name: "Normal",
  62797. height: math.unit(21, "feet"),
  62798. default: true
  62799. },
  62800. ]
  62801. ))
  62802. characterMakers.push(() => makeCharacter(
  62803. { name: "Aurora Adkins", species: ["rusty-spotted-cat"], tags: ["anthro"] },
  62804. {
  62805. front: {
  62806. height: math.unit(5 + 9/12, "feet"),
  62807. weight: math.unit(170, "lb"),
  62808. name: "Front",
  62809. image: {
  62810. source: "./media/characters/aurora-adkins/front.svg",
  62811. extra: 1141/1089,
  62812. bottom: 41/1182
  62813. }
  62814. },
  62815. },
  62816. [
  62817. {
  62818. name: "Tiny",
  62819. height: math.unit(7, "mm")
  62820. },
  62821. {
  62822. name: "Small",
  62823. height: math.unit(3.4, "inches")
  62824. },
  62825. {
  62826. name: "Normal",
  62827. height: math.unit(5 + 9/12, "feet"),
  62828. default: true
  62829. },
  62830. {
  62831. name: "Big",
  62832. height: math.unit(31, "feet")
  62833. },
  62834. {
  62835. name: "Giant",
  62836. height: math.unit(300, "feet")
  62837. },
  62838. ]
  62839. ))
  62840. characterMakers.push(() => makeCharacter(
  62841. { name: "Cyber", species: ["maned-wolf", "lynx", "deity"], tags: ["anthro"] },
  62842. {
  62843. front: {
  62844. height: math.unit(5 + 6/12, "feet"),
  62845. weight: math.unit(210, "lb"),
  62846. name: "Front",
  62847. image: {
  62848. source: "./media/characters/cyber/front.svg",
  62849. extra: 1968/1798,
  62850. bottom: 10/1978
  62851. },
  62852. extraAttributes: {
  62853. "shoeSize": {
  62854. name: "Shoe Size",
  62855. power: 1,
  62856. type: "length",
  62857. base: math.unit(30, "ShoeSizeMensUS")
  62858. },
  62859. }
  62860. },
  62861. },
  62862. [
  62863. {
  62864. name: "Normal",
  62865. height: math.unit(5 + 6/12, "feet"),
  62866. default: true
  62867. },
  62868. ]
  62869. ))
  62870. characterMakers.push(() => makeCharacter(
  62871. { name: "Sapphire Wairimea", species: ["elf"], tags: ["anthro"] },
  62872. {
  62873. front: {
  62874. height: math.unit(6 + 6/12, "feet"),
  62875. weight: math.unit(140, "lb"),
  62876. name: "Front",
  62877. image: {
  62878. source: "./media/characters/sapphire-wairimea/front.svg",
  62879. extra: 475/458,
  62880. bottom: 14/489
  62881. }
  62882. },
  62883. },
  62884. [
  62885. {
  62886. name: "Normal",
  62887. height: math.unit(6 + 6/12, "feet")
  62888. },
  62889. {
  62890. name: "Macro",
  62891. height: math.unit(132, "feet"),
  62892. default: true
  62893. },
  62894. ]
  62895. ))
  62896. characterMakers.push(() => makeCharacter(
  62897. { name: "Cirkazi", species: ["elf"], tags: ["anthro"] },
  62898. {
  62899. front: {
  62900. height: math.unit(1.6, "meters"),
  62901. weight: math.unit(100, "lb"),
  62902. name: "Front",
  62903. image: {
  62904. source: "./media/characters/cirkazi/front.svg",
  62905. extra: 489/477,
  62906. bottom: 0/489
  62907. }
  62908. },
  62909. },
  62910. [
  62911. {
  62912. name: "Normal",
  62913. height: math.unit(1.6, "meters")
  62914. },
  62915. {
  62916. name: "Macro",
  62917. height: math.unit(800, "feet"),
  62918. default: true
  62919. },
  62920. ]
  62921. ))
  62922. characterMakers.push(() => makeCharacter(
  62923. { name: "Corrin Cavelli", species: ["human"], tags: ["anthro"] },
  62924. {
  62925. front: {
  62926. height: math.unit(5 + 10/12, "feet"),
  62927. weight: math.unit(145, "lb"),
  62928. name: "Front",
  62929. image: {
  62930. source: "./media/characters/corrin-cavelli/front.svg",
  62931. extra: 483/464,
  62932. bottom: 6/489
  62933. }
  62934. },
  62935. },
  62936. [
  62937. {
  62938. name: "Human",
  62939. height: math.unit(5 + 10/12, "feet")
  62940. },
  62941. {
  62942. name: "Giant",
  62943. height: math.unit(210, "feet"),
  62944. default: true
  62945. },
  62946. ]
  62947. ))
  62948. characterMakers.push(() => makeCharacter(
  62949. { name: "Lori Lopez", species: ["human"], tags: ["anthro"] },
  62950. {
  62951. back: {
  62952. height: math.unit(5 + 6/12, "feet"),
  62953. weight: math.unit(115, "lb"),
  62954. name: "Back",
  62955. image: {
  62956. source: "./media/characters/lori-lopez/back.svg",
  62957. extra: 483/474,
  62958. bottom: 6/489
  62959. }
  62960. },
  62961. },
  62962. [
  62963. {
  62964. name: "Human",
  62965. height: math.unit(5 + 6/12, "feet")
  62966. },
  62967. {
  62968. name: "Macro",
  62969. height: math.unit(198, "feet"),
  62970. default: true
  62971. },
  62972. ]
  62973. ))
  62974. characterMakers.push(() => makeCharacter(
  62975. { name: "Sylvia Beauregard", species: ["human"], tags: ["anthro"] },
  62976. {
  62977. front: {
  62978. height: math.unit(6, "feet"),
  62979. weight: math.unit(220, "lb"),
  62980. name: "Front",
  62981. image: {
  62982. source: "./media/characters/sylvia-beauregard/front.svg",
  62983. extra: 483/479,
  62984. bottom: 6/489
  62985. }
  62986. },
  62987. },
  62988. [
  62989. {
  62990. name: "Macro",
  62991. height: math.unit(2071, "feet"),
  62992. default: true
  62993. },
  62994. ]
  62995. ))
  62996. characterMakers.push(() => makeCharacter(
  62997. { name: "Akiko Takahashi", species: ["human"], tags: ["anthro"] },
  62998. {
  62999. back: {
  63000. height: math.unit(5 + 6/12, "feet"),
  63001. weight: math.unit(160, "lb"),
  63002. name: "Back",
  63003. image: {
  63004. source: "./media/characters/akiko-takahashi/back.svg",
  63005. extra: 459/454,
  63006. bottom: 27/486
  63007. }
  63008. },
  63009. },
  63010. [
  63011. {
  63012. name: "Human",
  63013. height: math.unit(5 + 6/12, "feet")
  63014. },
  63015. {
  63016. name: "Macro",
  63017. height: math.unit(198, "feet"),
  63018. default: true
  63019. },
  63020. {
  63021. name: "Megamacro",
  63022. height: math.unit(7128, "feet")
  63023. },
  63024. ]
  63025. ))
  63026. characterMakers.push(() => makeCharacter(
  63027. { name: "Velvet Garza", species: ["human"], tags: ["anthro"] },
  63028. {
  63029. front: {
  63030. height: math.unit(6, "feet"),
  63031. weight: math.unit(140, "lb"),
  63032. name: "Front",
  63033. image: {
  63034. source: "./media/characters/velvet-garza/front.svg",
  63035. extra: 480/462,
  63036. bottom: 7/487
  63037. }
  63038. },
  63039. },
  63040. [
  63041. {
  63042. name: "Macro",
  63043. height: math.unit(37, "feet"),
  63044. default: true
  63045. },
  63046. ]
  63047. ))
  63048. characterMakers.push(() => makeCharacter(
  63049. { name: "Gaia", species: ["deity", "human"], tags: ["anthro"] },
  63050. {
  63051. front: {
  63052. height: math.unit(7 + 6/12, "feet"),
  63053. weight: math.unit(400, "lb"),
  63054. name: "Front",
  63055. image: {
  63056. source: "./media/characters/gaia/front.svg",
  63057. extra: 474/463,
  63058. bottom: 13/487
  63059. }
  63060. },
  63061. },
  63062. [
  63063. {
  63064. name: "MiniMacro",
  63065. height: math.unit(7 + 6/12, "feet")
  63066. },
  63067. {
  63068. name: "GigaMacro",
  63069. height: math.unit(14500, "feet"),
  63070. default: true
  63071. },
  63072. ]
  63073. ))
  63074. characterMakers.push(() => makeCharacter(
  63075. { name: "Tim", species: ["rabbit"], tags: ["anthro"] },
  63076. {
  63077. front: {
  63078. height: math.unit(6, "feet"),
  63079. weight: math.unit(150, "lb"),
  63080. name: "Front",
  63081. image: {
  63082. source: "./media/characters/tim/front.svg",
  63083. extra: 1878/1743,
  63084. bottom: 9/1887
  63085. }
  63086. },
  63087. frontDressed: {
  63088. height: math.unit(6, "feet"),
  63089. weight: math.unit(150, "lb"),
  63090. name: "Front (Dressed)",
  63091. image: {
  63092. source: "./media/characters/tim/front-dressed.svg",
  63093. extra: 1765/1485,
  63094. bottom: 48/1813
  63095. }
  63096. },
  63097. backDressed: {
  63098. height: math.unit(6, "feet"),
  63099. weight: math.unit(150, "lb"),
  63100. name: "Back (Dressed)",
  63101. image: {
  63102. source: "./media/characters/tim/back-dressed.svg",
  63103. extra: 1750/1465,
  63104. bottom: 25/1775
  63105. }
  63106. },
  63107. dick: {
  63108. height: math.unit(1.5, "feet"),
  63109. weight: math.unit(6, "lb"),
  63110. name: "Dick",
  63111. image: {
  63112. source: "./media/characters/tim/dick.svg"
  63113. }
  63114. },
  63115. hand: {
  63116. height: math.unit(0.522, "feet"),
  63117. name: "Hand",
  63118. image: {
  63119. source: "./media/characters/tim/hand.svg"
  63120. }
  63121. },
  63122. palm: {
  63123. height: math.unit(0.48, "feet"),
  63124. name: "Palm",
  63125. image: {
  63126. source: "./media/characters/tim/palm.svg"
  63127. }
  63128. },
  63129. paw: {
  63130. height: math.unit(0.9, "feet"),
  63131. name: "Paw",
  63132. image: {
  63133. source: "./media/characters/tim/paw.svg"
  63134. }
  63135. },
  63136. sole: {
  63137. height: math.unit(0.88, "feet"),
  63138. name: "Sole",
  63139. image: {
  63140. source: "./media/characters/tim/sole.svg"
  63141. }
  63142. },
  63143. },
  63144. [
  63145. {
  63146. name: "Macro",
  63147. height: math.unit(1000, "feet")
  63148. },
  63149. {
  63150. name: "Megamacro",
  63151. height: math.unit(10000, "feet"),
  63152. default: true
  63153. },
  63154. {
  63155. name: "Megamacro+",
  63156. height: math.unit(50000, "feet")
  63157. },
  63158. {
  63159. name: "Gigamacro",
  63160. height: math.unit(150000, "km")
  63161. },
  63162. ]
  63163. ))
  63164. characterMakers.push(() => makeCharacter(
  63165. { name: "Abel Delreoux", species: ["maine-coon"], tags: ["anthro"] },
  63166. {
  63167. front: {
  63168. height: math.unit(5 + 8/12, "feet"),
  63169. weight: math.unit(170, "lb"),
  63170. name: "Front",
  63171. image: {
  63172. source: "./media/characters/abel-delreoux/front.svg",
  63173. extra: 1615/1500,
  63174. bottom: 82/1697
  63175. }
  63176. },
  63177. back: {
  63178. height: math.unit(5 + 8/12, "feet"),
  63179. weight: math.unit(170, "lb"),
  63180. name: "Back",
  63181. image: {
  63182. source: "./media/characters/abel-delreoux/back.svg",
  63183. extra: 1644/1534,
  63184. bottom: 24/1668
  63185. }
  63186. },
  63187. casual: {
  63188. height: math.unit(5 + 8/12, "feet"),
  63189. weight: math.unit(170, "lb"),
  63190. name: "Casual",
  63191. image: {
  63192. source: "./media/characters/abel-delreoux/casual.svg",
  63193. extra: 1716/1598,
  63194. bottom: 29/1745
  63195. }
  63196. },
  63197. sleepy: {
  63198. height: math.unit(5 + 8/12, "feet"),
  63199. weight: math.unit(170, "lb"),
  63200. name: "Sleepy",
  63201. image: {
  63202. source: "./media/characters/abel-delreoux/sleepy.svg",
  63203. extra: 1649/1573,
  63204. bottom: 22/1671
  63205. }
  63206. },
  63207. fem: {
  63208. height: math.unit(5 + 8/12, "feet"),
  63209. weight: math.unit(170, "lb"),
  63210. name: "Fem",
  63211. image: {
  63212. source: "./media/characters/abel-delreoux/fem.svg",
  63213. extra: 1680/1564,
  63214. bottom: 17/1697
  63215. }
  63216. },
  63217. hand: {
  63218. height: math.unit(0.78, "feet"),
  63219. name: "Hand",
  63220. image: {
  63221. source: "./media/characters/abel-delreoux/hand.svg"
  63222. }
  63223. },
  63224. paw: {
  63225. height: math.unit(0.78, "feet"),
  63226. name: "Paw",
  63227. image: {
  63228. source: "./media/characters/abel-delreoux/paw.svg"
  63229. }
  63230. },
  63231. },
  63232. [
  63233. {
  63234. name: "Normal",
  63235. height: math.unit(5 + 8/12, "feet"),
  63236. default: true
  63237. },
  63238. ]
  63239. ))
  63240. characterMakers.push(() => makeCharacter(
  63241. { name: "Meus", species: ["phoenix"], tags: ["anthro"] },
  63242. {
  63243. front: {
  63244. height: math.unit(6, "feet"),
  63245. weight: math.unit(159, "lb"),
  63246. name: "Front",
  63247. image: {
  63248. source: "./media/characters/meus/front.svg",
  63249. extra: 938/843,
  63250. bottom: 37/975
  63251. }
  63252. },
  63253. back: {
  63254. height: math.unit(6, "feet"),
  63255. weight: math.unit(159, "lb"),
  63256. name: "Back",
  63257. image: {
  63258. source: "./media/characters/meus/back.svg",
  63259. extra: 967/873,
  63260. bottom: 12/979
  63261. }
  63262. },
  63263. },
  63264. [
  63265. {
  63266. name: "Micro",
  63267. height: math.unit(2, "inches")
  63268. },
  63269. {
  63270. name: "Mini",
  63271. height: math.unit(6, "inches")
  63272. },
  63273. {
  63274. name: "Normal",
  63275. height: math.unit(6, "feet"),
  63276. default: true
  63277. },
  63278. {
  63279. name: "Macro",
  63280. height: math.unit(84, "feet")
  63281. },
  63282. ]
  63283. ))
  63284. characterMakers.push(() => makeCharacter(
  63285. { name: "Yamato", species: ["kobold"], tags: ["anthro"] },
  63286. {
  63287. front: {
  63288. height: math.unit(60, "cm"),
  63289. weight: math.unit(18, "kg"),
  63290. name: "Front",
  63291. image: {
  63292. source: "./media/characters/yamato/front.svg",
  63293. extra: 733/688,
  63294. bottom: 29/762
  63295. }
  63296. },
  63297. },
  63298. [
  63299. {
  63300. name: "Micro",
  63301. height: math.unit(6, "cm")
  63302. },
  63303. {
  63304. name: "Normal",
  63305. height: math.unit(60, "cm"),
  63306. default: true
  63307. },
  63308. ]
  63309. ))
  63310. characterMakers.push(() => makeCharacter(
  63311. { name: "Barus", species: ["deity"], tags: ["anthro"] },
  63312. {
  63313. front: {
  63314. height: math.unit(9, "feet"),
  63315. weight: math.unit(518, "lb"),
  63316. name: "Front",
  63317. image: {
  63318. source: "./media/characters/barus/front.svg",
  63319. extra: 1877/1795,
  63320. bottom: 55/1932
  63321. }
  63322. },
  63323. },
  63324. [
  63325. {
  63326. name: "Base Height",
  63327. height: math.unit(9, "feet"),
  63328. default: true
  63329. },
  63330. {
  63331. name: "Large",
  63332. height: math.unit(18, "feet")
  63333. },
  63334. {
  63335. name: "Giant",
  63336. height: math.unit(100, "feet")
  63337. },
  63338. {
  63339. name: "Huge",
  63340. height: math.unit(500, "feet")
  63341. },
  63342. {
  63343. name: "Enormous",
  63344. height: math.unit(300, "meters")
  63345. },
  63346. {
  63347. name: "Deity Among Man",
  63348. height: math.unit(3000, "meters")
  63349. },
  63350. ]
  63351. ))
  63352. characterMakers.push(() => makeCharacter(
  63353. { name: "Yari", species: ["sergal"], tags: ["anthro"] },
  63354. {
  63355. front: {
  63356. height: math.unit(1.7, "meters"),
  63357. name: "Front",
  63358. image: {
  63359. source: "./media/characters/yari/front.svg",
  63360. extra: 1210/1125,
  63361. bottom: 283/1493
  63362. }
  63363. },
  63364. back: {
  63365. height: math.unit(1.7, "meters"),
  63366. name: "Back",
  63367. image: {
  63368. source: "./media/characters/yari/back.svg",
  63369. extra: 1240/1195,
  63370. bottom: 180/1420
  63371. }
  63372. },
  63373. head: {
  63374. height: math.unit(1.26, "feet"),
  63375. name: "Head",
  63376. image: {
  63377. source: "./media/characters/yari/head.svg"
  63378. }
  63379. },
  63380. },
  63381. [
  63382. {
  63383. name: "Nano",
  63384. height: math.unit(0.5, "mm")
  63385. },
  63386. {
  63387. name: "Micro",
  63388. height: math.unit(3, "inches")
  63389. },
  63390. {
  63391. name: "Short",
  63392. height: math.unit(1.5, "meters")
  63393. },
  63394. {
  63395. name: "Norm",
  63396. height: math.unit(1.7, "meters"),
  63397. default: true
  63398. },
  63399. ]
  63400. ))
  63401. characterMakers.push(() => makeCharacter(
  63402. { name: "Salem", species: ["mouse"], tags: ["anthro"] },
  63403. {
  63404. front: {
  63405. height: math.unit(5 + 2/12, "feet"),
  63406. weight: math.unit(110, "lb"),
  63407. name: "Front",
  63408. image: {
  63409. source: "./media/characters/salem/front.svg",
  63410. extra: 1895/1800,
  63411. bottom: 23/1918
  63412. }
  63413. },
  63414. back: {
  63415. height: math.unit(5 + 2/12, "feet"),
  63416. weight: math.unit(110, "lb"),
  63417. name: "Back",
  63418. image: {
  63419. source: "./media/characters/salem/back.svg",
  63420. extra: 1875/1802,
  63421. bottom: 20/1895
  63422. }
  63423. },
  63424. head: {
  63425. height: math.unit(1, "feet"),
  63426. name: "Head",
  63427. image: {
  63428. source: "./media/characters/salem/head.svg"
  63429. }
  63430. },
  63431. paw: {
  63432. height: math.unit(0.59, "feet"),
  63433. name: "Paw",
  63434. image: {
  63435. source: "./media/characters/salem/paw.svg"
  63436. }
  63437. },
  63438. beans: {
  63439. height: math.unit(0.66, "feet"),
  63440. name: "Beans",
  63441. image: {
  63442. source: "./media/characters/salem/beans.svg"
  63443. }
  63444. },
  63445. eye: {
  63446. height: math.unit(0.224, "feet"),
  63447. name: "Eye",
  63448. image: {
  63449. source: "./media/characters/salem/eye.svg"
  63450. }
  63451. },
  63452. semiferal: {
  63453. height: math.unit(2.3, "feet"),
  63454. name: "Semiferal",
  63455. image: {
  63456. source: "./media/characters/salem/semiferal.svg",
  63457. extra: 914/839,
  63458. bottom: 32/946
  63459. }
  63460. },
  63461. },
  63462. [
  63463. {
  63464. name: "Micro",
  63465. height: math.unit(4, "inches")
  63466. },
  63467. {
  63468. name: "Normal",
  63469. height: math.unit(5 + 2/12, "feet"),
  63470. default: true
  63471. },
  63472. {
  63473. name: "Macro",
  63474. height: math.unit(108, "feet")
  63475. },
  63476. {
  63477. name: "Macro+",
  63478. height: math.unit(1500, "feet")
  63479. },
  63480. ]
  63481. ))
  63482. characterMakers.push(() => makeCharacter(
  63483. { name: "Kii", species: ["dragon", "dog"], tags: ["anthro"] },
  63484. {
  63485. front: {
  63486. height: math.unit(7 + 6/12, "feet"),
  63487. weight: math.unit(600, "kg"),
  63488. preyCapacity: math.unit(10, "people"),
  63489. name: "Front",
  63490. image: {
  63491. source: "./media/characters/kii/front.svg",
  63492. extra: 3296/3087,
  63493. bottom: 130/3426
  63494. }
  63495. },
  63496. },
  63497. [
  63498. {
  63499. name: "Normal",
  63500. height: math.unit(7 + 6/12, "feet"),
  63501. default: true
  63502. },
  63503. ]
  63504. ))
  63505. characterMakers.push(() => makeCharacter(
  63506. { name: "Taffy", species: ["saltwater-crocodile"], tags: ["anthro"] },
  63507. {
  63508. front: {
  63509. height: math.unit(2, "meters"),
  63510. weight: math.unit(200, "lb"),
  63511. name: "Front",
  63512. image: {
  63513. source: "./media/characters/taffy/front.svg",
  63514. extra: 1666/1618,
  63515. bottom: 157/1823
  63516. }
  63517. },
  63518. back: {
  63519. height: math.unit(2, "meters"),
  63520. weight: math.unit(200, "lb"),
  63521. name: "Back",
  63522. image: {
  63523. source: "./media/characters/taffy/back.svg",
  63524. extra: 1635/1583,
  63525. bottom: 153/1788
  63526. }
  63527. },
  63528. },
  63529. [
  63530. {
  63531. name: "Normal",
  63532. height: math.unit(2, "meters"),
  63533. default: true
  63534. },
  63535. ]
  63536. ))
  63537. characterMakers.push(() => makeCharacter(
  63538. { name: "Barley", species: ["eastern-grey-kangaroo"], tags: ["anthro"] },
  63539. {
  63540. front: {
  63541. height: math.unit(1.55, "meters"),
  63542. weight: math.unit(60, "kg"),
  63543. name: "Front",
  63544. image: {
  63545. source: "./media/characters/barley/front.svg",
  63546. extra: 1520/1340,
  63547. bottom: 47/1567
  63548. }
  63549. },
  63550. back: {
  63551. height: math.unit(1.55, "meters"),
  63552. weight: math.unit(60, "kg"),
  63553. name: "Back",
  63554. image: {
  63555. source: "./media/characters/barley/back.svg",
  63556. extra: 1543/1341,
  63557. bottom: 12/1555
  63558. }
  63559. },
  63560. feet: {
  63561. height: math.unit(2.18, "feet"),
  63562. name: "Feet",
  63563. image: {
  63564. source: "./media/characters/barley/feet.svg"
  63565. }
  63566. },
  63567. },
  63568. [
  63569. {
  63570. name: "Normal",
  63571. height: math.unit(1.55, "meters"),
  63572. default: true
  63573. },
  63574. ]
  63575. ))
  63576. characterMakers.push(() => makeCharacter(
  63577. { name: "Lydia Lopez", species: ["shark"], tags: ["anthro"] },
  63578. {
  63579. dressed: {
  63580. height: math.unit(6, "feet"),
  63581. name: "Dressed",
  63582. image: {
  63583. source: "./media/characters/lydia-lopez/dressed.svg",
  63584. extra: 1319/1277,
  63585. bottom: 90/1409
  63586. }
  63587. },
  63588. nude: {
  63589. height: math.unit(6, "feet"),
  63590. name: "Nude",
  63591. image: {
  63592. source: "./media/characters/lydia-lopez/nude.svg",
  63593. extra: 1319/1277,
  63594. bottom: 90/1409
  63595. }
  63596. },
  63597. },
  63598. [
  63599. {
  63600. name: "Normal",
  63601. height: math.unit(6, "feet"),
  63602. default: true
  63603. },
  63604. {
  63605. name: "Maximum",
  63606. height: math.unit(2101, "feet")
  63607. },
  63608. ]
  63609. ))
  63610. characterMakers.push(() => makeCharacter(
  63611. { name: "Kira (Slime)", species: ["slime"], tags: ["goo"] },
  63612. {
  63613. front: {
  63614. height: math.unit(5 + 4/12, "feet"),
  63615. weight: math.unit(250, "lb"),
  63616. volume: math.unit(20, "gallons"),
  63617. name: "Front",
  63618. image: {
  63619. source: "./media/characters/kira-slime/front.svg",
  63620. extra: 442/403,
  63621. bottom: 18/460
  63622. }
  63623. },
  63624. frontNsfw: {
  63625. height: math.unit(5 + 4/12, "feet"),
  63626. weight: math.unit(250, "lb"),
  63627. volume: math.unit(20, "gallons"),
  63628. name: "Front (NSFW)",
  63629. image: {
  63630. source: "./media/characters/kira-slime/front-nsfw.svg",
  63631. extra: 442/403,
  63632. bottom: 18/460
  63633. }
  63634. },
  63635. },
  63636. [
  63637. {
  63638. name: "Droplet",
  63639. height: math.unit(0.0464452, "feet")
  63640. },
  63641. {
  63642. name: "Pint",
  63643. height: math.unit(0.9824, "feet")
  63644. },
  63645. {
  63646. name: "Bucket",
  63647. height: math.unit(2.83, "feet")
  63648. },
  63649. {
  63650. name: "Normal",
  63651. height: math.unit(5 + 4/12, "feet"),
  63652. default: true
  63653. },
  63654. {
  63655. name: "Tub",
  63656. height: math.unit(8.46614, "feet")
  63657. },
  63658. {
  63659. name: "Pool",
  63660. height: math.unit(31.1895, "feet")
  63661. },
  63662. {
  63663. name: "Pond",
  63664. height: math.unit(170.349, "feet")
  63665. },
  63666. {
  63667. name: "Lake",
  63668. height: math.unit(289334, "feet")
  63669. },
  63670. {
  63671. name: "Ocean",
  63672. height: math.unit(1.11940e+7, "feet")
  63673. },
  63674. ]
  63675. ))
  63676. characterMakers.push(() => makeCharacter(
  63677. { name: "Holiday", species: ["fennec-fox", "deer"], tags: ["anthro"] },
  63678. {
  63679. front: {
  63680. height: math.unit(5 + 6/12, "feet"),
  63681. weight: math.unit(120, "lb"),
  63682. name: "Front",
  63683. image: {
  63684. source: "./media/characters/holiday/front.svg",
  63685. extra: 456/403,
  63686. bottom: 4/460
  63687. }
  63688. },
  63689. back: {
  63690. height: math.unit(5 + 6/12, "feet"),
  63691. weight: math.unit(120, "lb"),
  63692. name: "Back",
  63693. image: {
  63694. source: "./media/characters/holiday/back.svg",
  63695. extra: 450/404,
  63696. bottom: 12/462
  63697. }
  63698. },
  63699. head: {
  63700. height: math.unit(2.3, "feet"),
  63701. name: "Head",
  63702. image: {
  63703. source: "./media/characters/holiday/head.svg"
  63704. }
  63705. },
  63706. },
  63707. [
  63708. {
  63709. name: "Normal",
  63710. height: math.unit(5 + 6/12, "feet"),
  63711. default: true
  63712. },
  63713. {
  63714. name: "Macro",
  63715. height: math.unit(6574.25, "feet")
  63716. },
  63717. ]
  63718. ))
  63719. characterMakers.push(() => makeCharacter(
  63720. { name: "Camina", species: ["latenivenatrix"], tags: ["anthro"] },
  63721. {
  63722. front: {
  63723. height: math.unit(6 + 2/12, "feet"),
  63724. weight: math.unit(200, "lb"),
  63725. name: "Front",
  63726. image: {
  63727. source: "./media/characters/camina/front.svg",
  63728. extra: 1048/985,
  63729. bottom: 30/1078
  63730. }
  63731. },
  63732. },
  63733. [
  63734. {
  63735. name: "Normal",
  63736. height: math.unit(6 + 2/12, "feet"),
  63737. default: true
  63738. },
  63739. ]
  63740. ))
  63741. //characters
  63742. function makeCharacters() {
  63743. const results = [];
  63744. characterMakers.forEach(character => {
  63745. results.push(character());
  63746. });
  63747. return results;
  63748. }